Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Common framework for low-level network console, dump, and debugger code |
| 3 | * |
| 4 | * Sep 8 2003 Matt Mackall <mpm@selenic.com> |
| 5 | * |
| 6 | * based on the netconsole code from: |
| 7 | * |
| 8 | * Copyright (C) 2001 Ingo Molnar <mingo@redhat.com> |
| 9 | * Copyright (C) 2002 Red Hat, Inc. |
| 10 | */ |
| 11 | |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 12 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 13 | |
Anton Vorontsov | bff3877 | 2009-07-08 11:10:56 -0700 | [diff] [blame] | 14 | #include <linux/moduleparam.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/netdevice.h> |
| 16 | #include <linux/etherdevice.h> |
| 17 | #include <linux/string.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 18 | #include <linux/if_arp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/inetdevice.h> |
| 20 | #include <linux/inet.h> |
| 21 | #include <linux/interrupt.h> |
| 22 | #include <linux/netpoll.h> |
| 23 | #include <linux/sched.h> |
| 24 | #include <linux/delay.h> |
| 25 | #include <linux/rcupdate.h> |
| 26 | #include <linux/workqueue.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 28 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <net/tcp.h> |
| 30 | #include <net/udp.h> |
| 31 | #include <asm/unaligned.h> |
David S. Miller | 9cbc1cb | 2009-06-15 03:02:23 -0700 | [diff] [blame] | 32 | #include <trace/events/napi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
| 34 | /* |
| 35 | * We maintain a small pool of fully-sized skbs, to make sure the |
| 36 | * message gets out even in extreme OOM situations. |
| 37 | */ |
| 38 | |
| 39 | #define MAX_UDP_CHUNK 1460 |
| 40 | #define MAX_SKBS 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Stephen Hemminger | a1bcfac | 2006-11-14 10:43:58 -0800 | [diff] [blame] | 42 | static struct sk_buff_head skb_pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | static atomic_t trapped; |
| 45 | |
Stephen Hemminger | 2bdfe0b | 2006-10-26 15:46:54 -0700 | [diff] [blame] | 46 | #define USEC_PER_POLL 50 |
David S. Miller | d9452e9 | 2008-03-04 12:28:49 -0800 | [diff] [blame] | 47 | #define NETPOLL_RX_ENABLED 1 |
| 48 | #define NETPOLL_RX_DROP 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | #define MAX_SKB_SIZE \ |
| 51 | (MAX_UDP_CHUNK + sizeof(struct udphdr) + \ |
| 52 | sizeof(struct iphdr) + sizeof(struct ethhdr)) |
| 53 | |
David S. Miller | 3578b0c | 2010-08-03 00:24:04 -0700 | [diff] [blame] | 54 | static void zap_completion_queue(void); |
Neil Horman | 068c6e9 | 2006-06-26 00:04:27 -0700 | [diff] [blame] | 55 | static void arp_reply(struct sk_buff *skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Anton Vorontsov | bff3877 | 2009-07-08 11:10:56 -0700 | [diff] [blame] | 57 | static unsigned int carrier_timeout = 4; |
| 58 | module_param(carrier_timeout, uint, 0644); |
| 59 | |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 60 | #define np_info(np, fmt, ...) \ |
| 61 | pr_info("%s: " fmt, np->name, ##__VA_ARGS__) |
| 62 | #define np_err(np, fmt, ...) \ |
| 63 | pr_err("%s: " fmt, np->name, ##__VA_ARGS__) |
| 64 | #define np_notice(np, fmt, ...) \ |
| 65 | pr_notice("%s: " fmt, np->name, ##__VA_ARGS__) |
| 66 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 67 | static void queue_process(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
David Howells | 4c1ac1b | 2006-12-05 14:37:56 +0000 | [diff] [blame] | 69 | struct netpoll_info *npinfo = |
| 70 | container_of(work, struct netpoll_info, tx_work.work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | struct sk_buff *skb; |
Ingo Molnar | 3640543 | 2006-12-12 17:20:42 +0100 | [diff] [blame] | 72 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Stephen Hemminger | 6c43ff1 | 2006-10-26 15:46:53 -0700 | [diff] [blame] | 74 | while ((skb = skb_dequeue(&npinfo->txq))) { |
| 75 | struct net_device *dev = skb->dev; |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 76 | const struct net_device_ops *ops = dev->netdev_ops; |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 77 | struct netdev_queue *txq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Stephen Hemminger | 6c43ff1 | 2006-10-26 15:46:53 -0700 | [diff] [blame] | 79 | if (!netif_device_present(dev) || !netif_running(dev)) { |
| 80 | __kfree_skb(skb); |
| 81 | continue; |
| 82 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 84 | txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb)); |
| 85 | |
Ingo Molnar | 3640543 | 2006-12-12 17:20:42 +0100 | [diff] [blame] | 86 | local_irq_save(flags); |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 87 | __netif_tx_lock(txq, smp_processor_id()); |
Tom Herbert | 73466498 | 2011-11-28 16:32:44 +0000 | [diff] [blame] | 88 | if (netif_xmit_frozen_or_stopped(txq) || |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 89 | ops->ndo_start_xmit(skb, dev) != NETDEV_TX_OK) { |
Stephen Hemminger | 6c43ff1 | 2006-10-26 15:46:53 -0700 | [diff] [blame] | 90 | skb_queue_head(&npinfo->txq, skb); |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 91 | __netif_tx_unlock(txq); |
Ingo Molnar | 3640543 | 2006-12-12 17:20:42 +0100 | [diff] [blame] | 92 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Jarek Poplawski | 25442ca | 2007-07-05 17:42:44 -0700 | [diff] [blame] | 94 | schedule_delayed_work(&npinfo->tx_work, HZ/10); |
Stephen Hemminger | 6c43ff1 | 2006-10-26 15:46:53 -0700 | [diff] [blame] | 95 | return; |
| 96 | } |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 97 | __netif_tx_unlock(txq); |
Ingo Molnar | 3640543 | 2006-12-12 17:20:42 +0100 | [diff] [blame] | 98 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | } |
| 100 | } |
| 101 | |
Al Viro | b51655b | 2006-11-14 21:40:42 -0800 | [diff] [blame] | 102 | static __sum16 checksum_udp(struct sk_buff *skb, struct udphdr *uh, |
| 103 | unsigned short ulen, __be32 saddr, __be32 daddr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | { |
Al Viro | d6f5493 | 2006-11-14 21:26:08 -0800 | [diff] [blame] | 105 | __wsum psum; |
Herbert Xu | fb286bb | 2005-11-10 13:01:24 -0800 | [diff] [blame] | 106 | |
Herbert Xu | 6047637 | 2007-04-09 11:59:39 -0700 | [diff] [blame] | 107 | if (uh->check == 0 || skb_csum_unnecessary(skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | return 0; |
| 109 | |
Herbert Xu | fb286bb | 2005-11-10 13:01:24 -0800 | [diff] [blame] | 110 | psum = csum_tcpudp_nofold(saddr, daddr, ulen, IPPROTO_UDP, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Patrick McHardy | 84fa793 | 2006-08-29 16:44:56 -0700 | [diff] [blame] | 112 | if (skb->ip_summed == CHECKSUM_COMPLETE && |
Al Viro | d3bc23e | 2006-11-14 21:24:49 -0800 | [diff] [blame] | 113 | !csum_fold(csum_add(psum, skb->csum))) |
Herbert Xu | fb286bb | 2005-11-10 13:01:24 -0800 | [diff] [blame] | 114 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
Herbert Xu | fb286bb | 2005-11-10 13:01:24 -0800 | [diff] [blame] | 116 | skb->csum = psum; |
| 117 | |
| 118 | return __skb_checksum_complete(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | /* |
| 122 | * Check whether delayed processing was scheduled for our NIC. If so, |
| 123 | * we attempt to grab the poll lock and use ->poll() to pump the card. |
| 124 | * If this fails, either we've recursed in ->poll() or it's already |
| 125 | * running on another CPU. |
| 126 | * |
| 127 | * Note: we don't mask interrupts with this lock because we're using |
| 128 | * trylock here and interrupts are already disabled in the softirq |
| 129 | * case. Further, we test the poll_owner to avoid recursion on UP |
| 130 | * systems where the lock doesn't exist. |
| 131 | * |
| 132 | * In cases where there is bi-directional communications, reading only |
| 133 | * one message at a time can lead to packets being dropped by the |
| 134 | * network adapter, forcing superfluous retries and possibly timeouts. |
| 135 | * Thus, we set our budget to greater than 1. |
| 136 | */ |
David S. Miller | 0a7606c | 2007-10-29 21:28:47 -0700 | [diff] [blame] | 137 | static int poll_one_napi(struct netpoll_info *npinfo, |
| 138 | struct napi_struct *napi, int budget) |
| 139 | { |
| 140 | int work; |
| 141 | |
| 142 | /* net_rx_action's ->poll() invocations and our's are |
| 143 | * synchronized by this test which is only made while |
| 144 | * holding the napi->poll_lock. |
| 145 | */ |
| 146 | if (!test_bit(NAPI_STATE_SCHED, &napi->state)) |
| 147 | return budget; |
| 148 | |
David S. Miller | d9452e9 | 2008-03-04 12:28:49 -0800 | [diff] [blame] | 149 | npinfo->rx_flags |= NETPOLL_RX_DROP; |
David S. Miller | 0a7606c | 2007-10-29 21:28:47 -0700 | [diff] [blame] | 150 | atomic_inc(&trapped); |
Neil Horman | 7b363e4 | 2008-12-09 23:22:26 -0800 | [diff] [blame] | 151 | set_bit(NAPI_STATE_NPSVC, &napi->state); |
David S. Miller | 0a7606c | 2007-10-29 21:28:47 -0700 | [diff] [blame] | 152 | |
| 153 | work = napi->poll(napi, budget); |
David S. Miller | 7d18f11 | 2009-05-21 23:30:09 -0700 | [diff] [blame] | 154 | trace_napi_poll(napi); |
David S. Miller | 0a7606c | 2007-10-29 21:28:47 -0700 | [diff] [blame] | 155 | |
Neil Horman | 7b363e4 | 2008-12-09 23:22:26 -0800 | [diff] [blame] | 156 | clear_bit(NAPI_STATE_NPSVC, &napi->state); |
David S. Miller | 0a7606c | 2007-10-29 21:28:47 -0700 | [diff] [blame] | 157 | atomic_dec(&trapped); |
David S. Miller | d9452e9 | 2008-03-04 12:28:49 -0800 | [diff] [blame] | 158 | npinfo->rx_flags &= ~NETPOLL_RX_DROP; |
David S. Miller | 0a7606c | 2007-10-29 21:28:47 -0700 | [diff] [blame] | 159 | |
| 160 | return budget - work; |
| 161 | } |
| 162 | |
Stephen Hemminger | 5106930 | 2007-11-19 19:18:11 -0800 | [diff] [blame] | 163 | static void poll_napi(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | { |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 165 | struct napi_struct *napi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | int budget = 16; |
| 167 | |
Neil Horman | f13d493 | 2010-10-19 07:04:26 +0000 | [diff] [blame] | 168 | list_for_each_entry(napi, &dev->napi_list, dev_list) { |
David S. Miller | 0a7606c | 2007-10-29 21:28:47 -0700 | [diff] [blame] | 169 | if (napi->poll_owner != smp_processor_id() && |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 170 | spin_trylock(&napi->poll_lock)) { |
Stephen Hemminger | 5106930 | 2007-11-19 19:18:11 -0800 | [diff] [blame] | 171 | budget = poll_one_napi(dev->npinfo, napi, budget); |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 172 | spin_unlock(&napi->poll_lock); |
David S. Miller | 0a7606c | 2007-10-29 21:28:47 -0700 | [diff] [blame] | 173 | |
| 174 | if (!budget) |
| 175 | break; |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 176 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
| 178 | } |
| 179 | |
Neil Horman | 068c6e9 | 2006-06-26 00:04:27 -0700 | [diff] [blame] | 180 | static void service_arp_queue(struct netpoll_info *npi) |
| 181 | { |
Stephen Hemminger | 5106930 | 2007-11-19 19:18:11 -0800 | [diff] [blame] | 182 | if (npi) { |
| 183 | struct sk_buff *skb; |
Neil Horman | 068c6e9 | 2006-06-26 00:04:27 -0700 | [diff] [blame] | 184 | |
Stephen Hemminger | 5106930 | 2007-11-19 19:18:11 -0800 | [diff] [blame] | 185 | while ((skb = skb_dequeue(&npi->arp_tx))) |
| 186 | arp_reply(skb); |
Neil Horman | 068c6e9 | 2006-06-26 00:04:27 -0700 | [diff] [blame] | 187 | } |
Neil Horman | 068c6e9 | 2006-06-26 00:04:27 -0700 | [diff] [blame] | 188 | } |
| 189 | |
Joe Perches | 234b921 | 2011-06-30 15:08:57 +0000 | [diff] [blame] | 190 | static void netpoll_poll_dev(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | { |
Pavel Emelyanov | 5e39273 | 2009-05-11 00:36:35 +0000 | [diff] [blame] | 192 | const struct net_device_ops *ops; |
Stephen Hemminger | 5106930 | 2007-11-19 19:18:11 -0800 | [diff] [blame] | 193 | |
Pavel Emelyanov | 5e39273 | 2009-05-11 00:36:35 +0000 | [diff] [blame] | 194 | if (!dev || !netif_running(dev)) |
| 195 | return; |
| 196 | |
| 197 | ops = dev->netdev_ops; |
| 198 | if (!ops->ndo_poll_controller) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | return; |
| 200 | |
| 201 | /* Process pending work on NIC */ |
Stephen Hemminger | d314774 | 2008-11-19 21:32:24 -0800 | [diff] [blame] | 202 | ops->ndo_poll_controller(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Stephen Hemminger | 5106930 | 2007-11-19 19:18:11 -0800 | [diff] [blame] | 204 | poll_napi(dev); |
| 205 | |
Amerigo Wang | 5a698af | 2011-02-17 23:43:34 +0000 | [diff] [blame] | 206 | if (dev->priv_flags & IFF_SLAVE) { |
| 207 | if (dev->npinfo) { |
| 208 | struct net_device *bond_dev = dev->master; |
| 209 | struct sk_buff *skb; |
| 210 | while ((skb = skb_dequeue(&dev->npinfo->arp_tx))) { |
| 211 | skb->dev = bond_dev; |
| 212 | skb_queue_tail(&bond_dev->npinfo->arp_tx, skb); |
| 213 | } |
| 214 | } |
| 215 | } |
| 216 | |
Stephen Hemminger | 5106930 | 2007-11-19 19:18:11 -0800 | [diff] [blame] | 217 | service_arp_queue(dev->npinfo); |
Neil Horman | 068c6e9 | 2006-06-26 00:04:27 -0700 | [diff] [blame] | 218 | |
David S. Miller | 3578b0c | 2010-08-03 00:24:04 -0700 | [diff] [blame] | 219 | zap_completion_queue(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | static void refill_skbs(void) |
| 223 | { |
| 224 | struct sk_buff *skb; |
| 225 | unsigned long flags; |
| 226 | |
Stephen Hemminger | a1bcfac | 2006-11-14 10:43:58 -0800 | [diff] [blame] | 227 | spin_lock_irqsave(&skb_pool.lock, flags); |
| 228 | while (skb_pool.qlen < MAX_SKBS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | skb = alloc_skb(MAX_SKB_SIZE, GFP_ATOMIC); |
| 230 | if (!skb) |
| 231 | break; |
| 232 | |
Stephen Hemminger | a1bcfac | 2006-11-14 10:43:58 -0800 | [diff] [blame] | 233 | __skb_queue_tail(&skb_pool, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | } |
Stephen Hemminger | a1bcfac | 2006-11-14 10:43:58 -0800 | [diff] [blame] | 235 | spin_unlock_irqrestore(&skb_pool.lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | } |
| 237 | |
David S. Miller | 3578b0c | 2010-08-03 00:24:04 -0700 | [diff] [blame] | 238 | static void zap_completion_queue(void) |
| 239 | { |
| 240 | unsigned long flags; |
| 241 | struct softnet_data *sd = &get_cpu_var(softnet_data); |
| 242 | |
| 243 | if (sd->completion_queue) { |
| 244 | struct sk_buff *clist; |
| 245 | |
| 246 | local_irq_save(flags); |
| 247 | clist = sd->completion_queue; |
| 248 | sd->completion_queue = NULL; |
| 249 | local_irq_restore(flags); |
| 250 | |
| 251 | while (clist != NULL) { |
| 252 | struct sk_buff *skb = clist; |
| 253 | clist = clist->next; |
| 254 | if (skb->destructor) { |
| 255 | atomic_inc(&skb->users); |
| 256 | dev_kfree_skb_any(skb); /* put this one back */ |
| 257 | } else { |
| 258 | __kfree_skb(skb); |
| 259 | } |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | put_cpu_var(softnet_data); |
| 264 | } |
| 265 | |
Stephen Hemminger | a1bcfac | 2006-11-14 10:43:58 -0800 | [diff] [blame] | 266 | static struct sk_buff *find_skb(struct netpoll *np, int len, int reserve) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | { |
Stephen Hemminger | a1bcfac | 2006-11-14 10:43:58 -0800 | [diff] [blame] | 268 | int count = 0; |
| 269 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
David S. Miller | 3578b0c | 2010-08-03 00:24:04 -0700 | [diff] [blame] | 271 | zap_completion_queue(); |
Stephen Hemminger | a1bcfac | 2006-11-14 10:43:58 -0800 | [diff] [blame] | 272 | refill_skbs(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | repeat: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
| 275 | skb = alloc_skb(len, GFP_ATOMIC); |
Stephen Hemminger | a1bcfac | 2006-11-14 10:43:58 -0800 | [diff] [blame] | 276 | if (!skb) |
| 277 | skb = skb_dequeue(&skb_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
| 279 | if (!skb) { |
Stephen Hemminger | a1bcfac | 2006-11-14 10:43:58 -0800 | [diff] [blame] | 280 | if (++count < 10) { |
Joe Perches | 2a49e00 | 2011-06-30 15:08:58 +0000 | [diff] [blame] | 281 | netpoll_poll_dev(np->dev); |
Stephen Hemminger | a1bcfac | 2006-11-14 10:43:58 -0800 | [diff] [blame] | 282 | goto repeat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | } |
Stephen Hemminger | a1bcfac | 2006-11-14 10:43:58 -0800 | [diff] [blame] | 284 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | atomic_set(&skb->users, 1); |
| 288 | skb_reserve(skb, reserve); |
| 289 | return skb; |
| 290 | } |
| 291 | |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 292 | static int netpoll_owner_active(struct net_device *dev) |
| 293 | { |
| 294 | struct napi_struct *napi; |
| 295 | |
| 296 | list_for_each_entry(napi, &dev->napi_list, dev_list) { |
| 297 | if (napi->poll_owner == smp_processor_id()) |
| 298 | return 1; |
| 299 | } |
| 300 | return 0; |
| 301 | } |
| 302 | |
Neil Horman | c2355e1 | 2010-10-13 16:01:49 +0000 | [diff] [blame] | 303 | void netpoll_send_skb_on_dev(struct netpoll *np, struct sk_buff *skb, |
| 304 | struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | { |
Stephen Hemminger | 2bdfe0b | 2006-10-26 15:46:54 -0700 | [diff] [blame] | 306 | int status = NETDEV_TX_BUSY; |
| 307 | unsigned long tries; |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 308 | const struct net_device_ops *ops = dev->netdev_ops; |
Herbert Xu | de85d99 | 2010-06-10 16:12:44 +0000 | [diff] [blame] | 309 | /* It is up to the caller to keep npinfo alive. */ |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 310 | struct netpoll_info *npinfo = np->dev->npinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 312 | if (!npinfo || !netif_running(dev) || !netif_device_present(dev)) { |
| 313 | __kfree_skb(skb); |
| 314 | return; |
| 315 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Stephen Hemminger | 2bdfe0b | 2006-10-26 15:46:54 -0700 | [diff] [blame] | 317 | /* don't get messages out of order, and no recursion */ |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 318 | if (skb_queue_len(&npinfo->txq) == 0 && !netpoll_owner_active(dev)) { |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 319 | struct netdev_queue *txq; |
Andrew Morton | a49f99f | 2006-12-11 17:24:46 -0800 | [diff] [blame] | 320 | unsigned long flags; |
| 321 | |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 322 | txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb)); |
| 323 | |
Andrew Morton | a49f99f | 2006-12-11 17:24:46 -0800 | [diff] [blame] | 324 | local_irq_save(flags); |
Stephen Hemminger | 0db3dc7 | 2007-06-27 00:39:42 -0700 | [diff] [blame] | 325 | /* try until next clock tick */ |
| 326 | for (tries = jiffies_to_usecs(1)/USEC_PER_POLL; |
| 327 | tries > 0; --tries) { |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 328 | if (__netif_tx_trylock(txq)) { |
Tom Herbert | 73466498 | 2011-11-28 16:32:44 +0000 | [diff] [blame] | 329 | if (!netif_xmit_stopped(txq)) { |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 330 | status = ops->ndo_start_xmit(skb, dev); |
Eric Dumazet | 08baf56 | 2009-05-25 22:58:01 -0700 | [diff] [blame] | 331 | if (status == NETDEV_TX_OK) |
| 332 | txq_trans_update(txq); |
| 333 | } |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 334 | __netif_tx_unlock(txq); |
Matt Mackall | f0d3459 | 2005-08-11 19:25:11 -0700 | [diff] [blame] | 335 | |
Andrew Morton | e37b8d9 | 2006-12-09 14:01:49 -0800 | [diff] [blame] | 336 | if (status == NETDEV_TX_OK) |
| 337 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | |
Andrew Morton | e37b8d9 | 2006-12-09 14:01:49 -0800 | [diff] [blame] | 339 | } |
Stephen Hemminger | 0db3dc7 | 2007-06-27 00:39:42 -0700 | [diff] [blame] | 340 | |
| 341 | /* tickle device maybe there is some cleanup */ |
Joe Perches | 2a49e00 | 2011-06-30 15:08:58 +0000 | [diff] [blame] | 342 | netpoll_poll_dev(np->dev); |
Stephen Hemminger | 0db3dc7 | 2007-06-27 00:39:42 -0700 | [diff] [blame] | 343 | |
| 344 | udelay(USEC_PER_POLL); |
Matt Mackall | 0db1d6f | 2005-08-11 19:25:54 -0700 | [diff] [blame] | 345 | } |
Dongdong Deng | 79b1bee | 2009-08-21 03:33:36 +0000 | [diff] [blame] | 346 | |
| 347 | WARN_ONCE(!irqs_disabled(), |
| 348 | "netpoll_send_skb(): %s enabled interrupts in poll (%pF)\n", |
| 349 | dev->name, ops->ndo_start_xmit); |
| 350 | |
Andrew Morton | a49f99f | 2006-12-11 17:24:46 -0800 | [diff] [blame] | 351 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
Stephen Hemminger | 2bdfe0b | 2006-10-26 15:46:54 -0700 | [diff] [blame] | 354 | if (status != NETDEV_TX_OK) { |
Stephen Hemminger | 5de4a47 | 2006-10-26 15:46:55 -0700 | [diff] [blame] | 355 | skb_queue_tail(&npinfo->txq, skb); |
David Howells | 4c1ac1b | 2006-12-05 14:37:56 +0000 | [diff] [blame] | 356 | schedule_delayed_work(&npinfo->tx_work,0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | } |
Neil Horman | c2355e1 | 2010-10-13 16:01:49 +0000 | [diff] [blame] | 359 | EXPORT_SYMBOL(netpoll_send_skb_on_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
| 361 | void netpoll_send_udp(struct netpoll *np, const char *msg, int len) |
| 362 | { |
| 363 | int total_len, eth_len, ip_len, udp_len; |
| 364 | struct sk_buff *skb; |
| 365 | struct udphdr *udph; |
| 366 | struct iphdr *iph; |
| 367 | struct ethhdr *eth; |
| 368 | |
| 369 | udp_len = len + sizeof(*udph); |
| 370 | ip_len = eth_len = udp_len + sizeof(*iph); |
| 371 | total_len = eth_len + ETH_HLEN + NET_IP_ALIGN; |
| 372 | |
| 373 | skb = find_skb(np, total_len, total_len - len); |
| 374 | if (!skb) |
| 375 | return; |
| 376 | |
Arnaldo Carvalho de Melo | 27d7ff4 | 2007-03-31 11:55:19 -0300 | [diff] [blame] | 377 | skb_copy_to_linear_data(skb, msg, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | skb->len += len; |
| 379 | |
Arnaldo Carvalho de Melo | 4bedb45 | 2007-03-13 14:28:48 -0300 | [diff] [blame] | 380 | skb_push(skb, sizeof(*udph)); |
| 381 | skb_reset_transport_header(skb); |
| 382 | udph = udp_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | udph->source = htons(np->local_port); |
| 384 | udph->dest = htons(np->remote_port); |
| 385 | udph->len = htons(udp_len); |
| 386 | udph->check = 0; |
Harvey Harrison | e7557af | 2009-03-28 15:38:31 +0000 | [diff] [blame] | 387 | udph->check = csum_tcpudp_magic(np->local_ip, |
| 388 | np->remote_ip, |
Chris Lalancette | 8e365ee | 2006-11-07 14:56:19 -0800 | [diff] [blame] | 389 | udp_len, IPPROTO_UDP, |
Joe Perches | 07f0757 | 2008-11-19 15:44:53 -0800 | [diff] [blame] | 390 | csum_partial(udph, udp_len, 0)); |
Chris Lalancette | 8e365ee | 2006-11-07 14:56:19 -0800 | [diff] [blame] | 391 | if (udph->check == 0) |
Al Viro | 5e57dff | 2006-11-20 18:08:13 -0800 | [diff] [blame] | 392 | udph->check = CSUM_MANGLED_0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
Arnaldo Carvalho de Melo | e2d1bca | 2007-04-10 20:46:21 -0700 | [diff] [blame] | 394 | skb_push(skb, sizeof(*iph)); |
| 395 | skb_reset_network_header(skb); |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 396 | iph = ip_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
| 398 | /* iph->version = 4; iph->ihl = 5; */ |
| 399 | put_unaligned(0x45, (unsigned char *)iph); |
| 400 | iph->tos = 0; |
| 401 | put_unaligned(htons(ip_len), &(iph->tot_len)); |
| 402 | iph->id = 0; |
| 403 | iph->frag_off = 0; |
| 404 | iph->ttl = 64; |
| 405 | iph->protocol = IPPROTO_UDP; |
| 406 | iph->check = 0; |
Harvey Harrison | e7557af | 2009-03-28 15:38:31 +0000 | [diff] [blame] | 407 | put_unaligned(np->local_ip, &(iph->saddr)); |
| 408 | put_unaligned(np->remote_ip, &(iph->daddr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl); |
| 410 | |
| 411 | eth = (struct ethhdr *) skb_push(skb, ETH_HLEN); |
Arnaldo Carvalho de Melo | 459a98e | 2007-03-19 15:30:44 -0700 | [diff] [blame] | 412 | skb_reset_mac_header(skb); |
Stephen Hemminger | 206daaf | 2006-10-19 23:58:23 -0700 | [diff] [blame] | 413 | skb->protocol = eth->h_proto = htons(ETH_P_IP); |
Stephen Hemminger | 0953864 | 2007-11-19 19:23:29 -0800 | [diff] [blame] | 414 | memcpy(eth->h_source, np->dev->dev_addr, ETH_ALEN); |
| 415 | memcpy(eth->h_dest, np->remote_mac, ETH_ALEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
| 417 | skb->dev = np->dev; |
| 418 | |
| 419 | netpoll_send_skb(np, skb); |
| 420 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 421 | EXPORT_SYMBOL(netpoll_send_udp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
| 423 | static void arp_reply(struct sk_buff *skb) |
| 424 | { |
Jeff Moyer | 115c1d6 | 2005-06-22 22:05:31 -0700 | [diff] [blame] | 425 | struct netpoll_info *npinfo = skb->dev->npinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | struct arphdr *arp; |
| 427 | unsigned char *arp_ptr; |
| 428 | int size, type = ARPOP_REPLY, ptype = ETH_P_ARP; |
Al Viro | 252e334 | 2006-11-14 20:48:11 -0800 | [diff] [blame] | 429 | __be32 sip, tip; |
Neil Horman | 47bbec0 | 2006-12-08 00:05:55 -0800 | [diff] [blame] | 430 | unsigned char *sha; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | struct sk_buff *send_skb; |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 432 | struct netpoll *np, *tmp; |
| 433 | unsigned long flags; |
Herbert Xu | ae64194 | 2011-11-18 02:20:04 +0000 | [diff] [blame] | 434 | int hlen, tlen; |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 435 | int hits = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 437 | if (list_empty(&npinfo->rx_np)) |
| 438 | return; |
| 439 | |
| 440 | /* Before checking the packet, we do some early |
| 441 | inspection whether this is interesting at all */ |
| 442 | spin_lock_irqsave(&npinfo->rx_lock, flags); |
| 443 | list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) { |
| 444 | if (np->dev == skb->dev) |
| 445 | hits++; |
| 446 | } |
| 447 | spin_unlock_irqrestore(&npinfo->rx_lock, flags); |
| 448 | |
| 449 | /* No netpoll struct is using this dev */ |
| 450 | if (!hits) |
Jeff Moyer | 115c1d6 | 2005-06-22 22:05:31 -0700 | [diff] [blame] | 451 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
| 453 | /* No arp on this interface */ |
| 454 | if (skb->dev->flags & IFF_NOARP) |
| 455 | return; |
| 456 | |
Pavel Emelyanov | 988b705 | 2008-03-03 12:20:57 -0800 | [diff] [blame] | 457 | if (!pskb_may_pull(skb, arp_hdr_len(skb->dev))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | return; |
| 459 | |
Arnaldo Carvalho de Melo | c1d2bbe | 2007-04-10 20:45:18 -0700 | [diff] [blame] | 460 | skb_reset_network_header(skb); |
Arnaldo Carvalho de Melo | badff6d | 2007-03-13 13:06:52 -0300 | [diff] [blame] | 461 | skb_reset_transport_header(skb); |
Arnaldo Carvalho de Melo | d0a92be | 2007-03-12 20:56:31 -0300 | [diff] [blame] | 462 | arp = arp_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | |
| 464 | if ((arp->ar_hrd != htons(ARPHRD_ETHER) && |
| 465 | arp->ar_hrd != htons(ARPHRD_IEEE802)) || |
| 466 | arp->ar_pro != htons(ETH_P_IP) || |
| 467 | arp->ar_op != htons(ARPOP_REQUEST)) |
| 468 | return; |
| 469 | |
Neil Horman | 47bbec0 | 2006-12-08 00:05:55 -0800 | [diff] [blame] | 470 | arp_ptr = (unsigned char *)(arp+1); |
| 471 | /* save the location of the src hw addr */ |
| 472 | sha = arp_ptr; |
| 473 | arp_ptr += skb->dev->addr_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | memcpy(&sip, arp_ptr, 4); |
Neil Horman | 47bbec0 | 2006-12-08 00:05:55 -0800 | [diff] [blame] | 475 | arp_ptr += 4; |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 476 | /* If we actually cared about dst hw addr, |
| 477 | it would get copied here */ |
Neil Horman | 47bbec0 | 2006-12-08 00:05:55 -0800 | [diff] [blame] | 478 | arp_ptr += skb->dev->addr_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | memcpy(&tip, arp_ptr, 4); |
| 480 | |
| 481 | /* Should we ignore arp? */ |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 482 | if (ipv4_is_loopback(tip) || ipv4_is_multicast(tip)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | return; |
| 484 | |
Pavel Emelyanov | 988b705 | 2008-03-03 12:20:57 -0800 | [diff] [blame] | 485 | size = arp_hdr_len(skb->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 487 | spin_lock_irqsave(&npinfo->rx_lock, flags); |
| 488 | list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) { |
| 489 | if (tip != np->local_ip) |
| 490 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | |
Herbert Xu | ae64194 | 2011-11-18 02:20:04 +0000 | [diff] [blame] | 492 | hlen = LL_RESERVED_SPACE(np->dev); |
| 493 | tlen = np->dev->needed_tailroom; |
| 494 | send_skb = find_skb(np, size + hlen + tlen, hlen); |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 495 | if (!send_skb) |
| 496 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 498 | skb_reset_network_header(send_skb); |
| 499 | arp = (struct arphdr *) skb_put(send_skb, size); |
| 500 | send_skb->dev = skb->dev; |
| 501 | send_skb->protocol = htons(ETH_P_ARP); |
| 502 | |
| 503 | /* Fill the device header for the ARP frame */ |
| 504 | if (dev_hard_header(send_skb, skb->dev, ptype, |
| 505 | sha, np->dev->dev_addr, |
| 506 | send_skb->len) < 0) { |
| 507 | kfree_skb(send_skb); |
| 508 | continue; |
| 509 | } |
| 510 | |
| 511 | /* |
| 512 | * Fill out the arp protocol part. |
| 513 | * |
| 514 | * we only support ethernet device type, |
| 515 | * which (according to RFC 1390) should |
| 516 | * always equal 1 (Ethernet). |
| 517 | */ |
| 518 | |
| 519 | arp->ar_hrd = htons(np->dev->type); |
| 520 | arp->ar_pro = htons(ETH_P_IP); |
| 521 | arp->ar_hln = np->dev->addr_len; |
| 522 | arp->ar_pln = 4; |
| 523 | arp->ar_op = htons(type); |
| 524 | |
| 525 | arp_ptr = (unsigned char *)(arp + 1); |
| 526 | memcpy(arp_ptr, np->dev->dev_addr, np->dev->addr_len); |
| 527 | arp_ptr += np->dev->addr_len; |
| 528 | memcpy(arp_ptr, &tip, 4); |
| 529 | arp_ptr += 4; |
| 530 | memcpy(arp_ptr, sha, np->dev->addr_len); |
| 531 | arp_ptr += np->dev->addr_len; |
| 532 | memcpy(arp_ptr, &sip, 4); |
| 533 | |
| 534 | netpoll_send_skb(np, send_skb); |
| 535 | |
| 536 | /* If there are several rx_hooks for the same address, |
| 537 | we're fine by sending a single reply */ |
| 538 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | } |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 540 | spin_unlock_irqrestore(&npinfo->rx_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | int __netpoll_rx(struct sk_buff *skb) |
| 544 | { |
| 545 | int proto, len, ulen; |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 546 | int hits = 0; |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 547 | const struct iphdr *iph; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | struct udphdr *uh; |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 549 | struct netpoll_info *npinfo = skb->dev->npinfo; |
| 550 | struct netpoll *np, *tmp; |
Neil Horman | 068c6e9 | 2006-06-26 00:04:27 -0700 | [diff] [blame] | 551 | |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 552 | if (list_empty(&npinfo->rx_np)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | goto out; |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 554 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | if (skb->dev->type != ARPHRD_ETHER) |
| 556 | goto out; |
| 557 | |
David S. Miller | d9452e9 | 2008-03-04 12:28:49 -0800 | [diff] [blame] | 558 | /* check if netpoll clients need ARP */ |
YOSHIFUJI Hideaki | 724800d | 2007-03-25 20:13:04 -0700 | [diff] [blame] | 559 | if (skb->protocol == htons(ETH_P_ARP) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | atomic_read(&trapped)) { |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 561 | skb_queue_tail(&npinfo->arp_tx, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | return 1; |
| 563 | } |
| 564 | |
| 565 | proto = ntohs(eth_hdr(skb)->h_proto); |
| 566 | if (proto != ETH_P_IP) |
| 567 | goto out; |
| 568 | if (skb->pkt_type == PACKET_OTHERHOST) |
| 569 | goto out; |
| 570 | if (skb_shared(skb)) |
| 571 | goto out; |
| 572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | if (!pskb_may_pull(skb, sizeof(struct iphdr))) |
| 574 | goto out; |
Eric Dumazet | e9278a4 | 2011-08-26 06:26:15 +0000 | [diff] [blame] | 575 | iph = (struct iphdr *)skb->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | if (iph->ihl < 5 || iph->version != 4) |
| 577 | goto out; |
| 578 | if (!pskb_may_pull(skb, iph->ihl*4)) |
| 579 | goto out; |
Eric Dumazet | e9278a4 | 2011-08-26 06:26:15 +0000 | [diff] [blame] | 580 | iph = (struct iphdr *)skb->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | if (ip_fast_csum((u8 *)iph, iph->ihl) != 0) |
| 582 | goto out; |
| 583 | |
| 584 | len = ntohs(iph->tot_len); |
| 585 | if (skb->len < len || len < iph->ihl*4) |
| 586 | goto out; |
| 587 | |
Aubrey.Li | 5e7d7fa | 2007-04-17 12:40:20 -0700 | [diff] [blame] | 588 | /* |
| 589 | * Our transport medium may have padded the buffer out. |
| 590 | * Now We trim to the true length of the frame. |
| 591 | */ |
| 592 | if (pskb_trim_rcsum(skb, len)) |
| 593 | goto out; |
| 594 | |
Eric Dumazet | e9278a4 | 2011-08-26 06:26:15 +0000 | [diff] [blame] | 595 | iph = (struct iphdr *)skb->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | if (iph->protocol != IPPROTO_UDP) |
| 597 | goto out; |
| 598 | |
| 599 | len -= iph->ihl*4; |
| 600 | uh = (struct udphdr *)(((char *)iph) + iph->ihl*4); |
| 601 | ulen = ntohs(uh->len); |
| 602 | |
| 603 | if (ulen != len) |
| 604 | goto out; |
Herbert Xu | fb286bb | 2005-11-10 13:01:24 -0800 | [diff] [blame] | 605 | if (checksum_udp(skb, uh, ulen, iph->saddr, iph->daddr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 608 | list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) { |
| 609 | if (np->local_ip && np->local_ip != iph->daddr) |
| 610 | continue; |
| 611 | if (np->remote_ip && np->remote_ip != iph->saddr) |
| 612 | continue; |
| 613 | if (np->local_port && np->local_port != ntohs(uh->dest)) |
| 614 | continue; |
| 615 | |
| 616 | np->rx_hook(np, ntohs(uh->source), |
| 617 | (char *)(uh+1), |
| 618 | ulen - sizeof(struct udphdr)); |
| 619 | hits++; |
| 620 | } |
| 621 | |
| 622 | if (!hits) |
| 623 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | |
| 625 | kfree_skb(skb); |
| 626 | return 1; |
| 627 | |
| 628 | out: |
| 629 | if (atomic_read(&trapped)) { |
| 630 | kfree_skb(skb); |
| 631 | return 1; |
| 632 | } |
| 633 | |
| 634 | return 0; |
| 635 | } |
| 636 | |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 637 | void netpoll_print_options(struct netpoll *np) |
| 638 | { |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 639 | np_info(np, "local port %d\n", np->local_port); |
| 640 | np_info(np, "local IP %pI4\n", &np->local_ip); |
| 641 | np_info(np, "interface '%s'\n", np->dev_name); |
| 642 | np_info(np, "remote port %d\n", np->remote_port); |
| 643 | np_info(np, "remote IP %pI4\n", &np->remote_ip); |
| 644 | np_info(np, "remote ethernet address %pM\n", np->remote_mac); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 645 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 646 | EXPORT_SYMBOL(netpoll_print_options); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | int netpoll_parse_options(struct netpoll *np, char *opt) |
| 649 | { |
| 650 | char *cur=opt, *delim; |
| 651 | |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 652 | if (*cur != '@') { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | if ((delim = strchr(cur, '@')) == NULL) |
| 654 | goto parse_failed; |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 655 | *delim = 0; |
| 656 | np->local_port = simple_strtol(cur, NULL, 10); |
| 657 | cur = delim; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | } |
| 659 | cur++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 661 | if (*cur != '/') { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | if ((delim = strchr(cur, '/')) == NULL) |
| 663 | goto parse_failed; |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 664 | *delim = 0; |
Harvey Harrison | e7557af | 2009-03-28 15:38:31 +0000 | [diff] [blame] | 665 | np->local_ip = in_aton(cur); |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 666 | cur = delim; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | } |
| 668 | cur++; |
| 669 | |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 670 | if (*cur != ',') { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | /* parse out dev name */ |
| 672 | if ((delim = strchr(cur, ',')) == NULL) |
| 673 | goto parse_failed; |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 674 | *delim = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | strlcpy(np->dev_name, cur, sizeof(np->dev_name)); |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 676 | cur = delim; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | } |
| 678 | cur++; |
| 679 | |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 680 | if (*cur != '@') { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | /* dst port */ |
| 682 | if ((delim = strchr(cur, '@')) == NULL) |
| 683 | goto parse_failed; |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 684 | *delim = 0; |
Amerigo Wang | 5fc05f8 | 2010-03-21 22:59:58 +0000 | [diff] [blame] | 685 | if (*cur == ' ' || *cur == '\t') |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 686 | np_info(np, "warning: whitespace is not allowed\n"); |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 687 | np->remote_port = simple_strtol(cur, NULL, 10); |
| 688 | cur = delim; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | } |
| 690 | cur++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
| 692 | /* dst ip */ |
| 693 | if ((delim = strchr(cur, '/')) == NULL) |
| 694 | goto parse_failed; |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 695 | *delim = 0; |
Harvey Harrison | e7557af | 2009-03-28 15:38:31 +0000 | [diff] [blame] | 696 | np->remote_ip = in_aton(cur); |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 697 | cur = delim + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 699 | if (*cur != 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | /* MAC address */ |
Alexey Dobriyan | 4940fc8 | 2011-05-07 23:00:07 +0000 | [diff] [blame] | 701 | if (!mac_pton(cur, np->remote_mac)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | goto parse_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | } |
| 704 | |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 705 | netpoll_print_options(np); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | |
| 707 | return 0; |
| 708 | |
| 709 | parse_failed: |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 710 | np_info(np, "couldn't parse config at '%s'!\n", cur); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | return -1; |
| 712 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 713 | EXPORT_SYMBOL(netpoll_parse_options); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | |
Herbert Xu | 8fdd95e | 2010-06-10 16:12:48 +0000 | [diff] [blame] | 715 | int __netpoll_setup(struct netpoll *np) |
| 716 | { |
| 717 | struct net_device *ndev = np->dev; |
| 718 | struct netpoll_info *npinfo; |
| 719 | const struct net_device_ops *ops; |
| 720 | unsigned long flags; |
| 721 | int err; |
| 722 | |
| 723 | if ((ndev->priv_flags & IFF_DISABLE_NETPOLL) || |
| 724 | !ndev->netdev_ops->ndo_poll_controller) { |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 725 | np_err(np, "%s doesn't support polling, aborting\n", |
| 726 | np->dev_name); |
Herbert Xu | 8fdd95e | 2010-06-10 16:12:48 +0000 | [diff] [blame] | 727 | err = -ENOTSUPP; |
| 728 | goto out; |
| 729 | } |
| 730 | |
| 731 | if (!ndev->npinfo) { |
| 732 | npinfo = kmalloc(sizeof(*npinfo), GFP_KERNEL); |
| 733 | if (!npinfo) { |
| 734 | err = -ENOMEM; |
| 735 | goto out; |
| 736 | } |
| 737 | |
| 738 | npinfo->rx_flags = 0; |
| 739 | INIT_LIST_HEAD(&npinfo->rx_np); |
| 740 | |
| 741 | spin_lock_init(&npinfo->rx_lock); |
| 742 | skb_queue_head_init(&npinfo->arp_tx); |
| 743 | skb_queue_head_init(&npinfo->txq); |
| 744 | INIT_DELAYED_WORK(&npinfo->tx_work, queue_process); |
| 745 | |
| 746 | atomic_set(&npinfo->refcnt, 1); |
| 747 | |
| 748 | ops = np->dev->netdev_ops; |
| 749 | if (ops->ndo_netpoll_setup) { |
| 750 | err = ops->ndo_netpoll_setup(ndev, npinfo); |
| 751 | if (err) |
| 752 | goto free_npinfo; |
| 753 | } |
| 754 | } else { |
| 755 | npinfo = ndev->npinfo; |
| 756 | atomic_inc(&npinfo->refcnt); |
| 757 | } |
| 758 | |
| 759 | npinfo->netpoll = np; |
| 760 | |
| 761 | if (np->rx_hook) { |
| 762 | spin_lock_irqsave(&npinfo->rx_lock, flags); |
| 763 | npinfo->rx_flags |= NETPOLL_RX_ENABLED; |
| 764 | list_add_tail(&np->rx, &npinfo->rx_np); |
| 765 | spin_unlock_irqrestore(&npinfo->rx_lock, flags); |
| 766 | } |
| 767 | |
| 768 | /* last thing to do is link it to the net device structure */ |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 769 | rcu_assign_pointer(ndev->npinfo, npinfo); |
Herbert Xu | 8fdd95e | 2010-06-10 16:12:48 +0000 | [diff] [blame] | 770 | |
| 771 | return 0; |
| 772 | |
| 773 | free_npinfo: |
| 774 | kfree(npinfo); |
| 775 | out: |
| 776 | return err; |
| 777 | } |
| 778 | EXPORT_SYMBOL_GPL(__netpoll_setup); |
| 779 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | int netpoll_setup(struct netpoll *np) |
| 781 | { |
| 782 | struct net_device *ndev = NULL; |
| 783 | struct in_device *in_dev; |
Stephen Hemminger | b41848b | 2006-10-26 15:46:52 -0700 | [diff] [blame] | 784 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | |
| 786 | if (np->dev_name) |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 787 | ndev = dev_get_by_name(&init_net, np->dev_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | if (!ndev) { |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 789 | np_err(np, "%s doesn't exist, aborting\n", np->dev_name); |
Stephen Hemminger | b41848b | 2006-10-26 15:46:52 -0700 | [diff] [blame] | 790 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | } |
| 792 | |
WANG Cong | 0c1ad04 | 2011-06-09 00:28:13 -0700 | [diff] [blame] | 793 | if (ndev->master) { |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 794 | np_err(np, "%s is a slave device, aborting\n", np->dev_name); |
Dan Carpenter | 83fe32d | 2011-06-11 18:55:22 -0700 | [diff] [blame] | 795 | err = -EBUSY; |
| 796 | goto put; |
WANG Cong | 0c1ad04 | 2011-06-09 00:28:13 -0700 | [diff] [blame] | 797 | } |
| 798 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | if (!netif_running(ndev)) { |
| 800 | unsigned long atmost, atleast; |
| 801 | |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 802 | np_info(np, "device %s not up yet, forcing it\n", np->dev_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 804 | rtnl_lock(); |
Stephen Hemminger | b41848b | 2006-10-26 15:46:52 -0700 | [diff] [blame] | 805 | err = dev_open(ndev); |
| 806 | rtnl_unlock(); |
| 807 | |
| 808 | if (err) { |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 809 | np_err(np, "failed to open %s\n", ndev->name); |
Herbert Xu | dbaa154 | 2010-06-10 16:12:46 +0000 | [diff] [blame] | 810 | goto put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | |
| 813 | atleast = jiffies + HZ/10; |
Anton Vorontsov | bff3877 | 2009-07-08 11:10:56 -0700 | [diff] [blame] | 814 | atmost = jiffies + carrier_timeout * HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | while (!netif_carrier_ok(ndev)) { |
| 816 | if (time_after(jiffies, atmost)) { |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 817 | np_notice(np, "timeout waiting for carrier\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | break; |
| 819 | } |
Anton Vorontsov | 1b614fb | 2009-07-08 20:09:44 -0700 | [diff] [blame] | 820 | msleep(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | /* If carrier appears to come up instantly, we don't |
| 824 | * trust it and pause so that we don't pump all our |
| 825 | * queued console messages into the bitbucket. |
| 826 | */ |
| 827 | |
| 828 | if (time_before(jiffies, atleast)) { |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 829 | np_notice(np, "carrier detect appears untrustworthy, waiting 4 seconds\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | msleep(4000); |
| 831 | } |
| 832 | } |
| 833 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | if (!np->local_ip) { |
| 835 | rcu_read_lock(); |
Herbert Xu | e5ed639 | 2005-10-03 14:35:55 -0700 | [diff] [blame] | 836 | in_dev = __in_dev_get_rcu(ndev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | |
| 838 | if (!in_dev || !in_dev->ifa_list) { |
| 839 | rcu_read_unlock(); |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 840 | np_err(np, "no IP address for %s, aborting\n", |
| 841 | np->dev_name); |
Stephen Hemminger | b41848b | 2006-10-26 15:46:52 -0700 | [diff] [blame] | 842 | err = -EDESTADDRREQ; |
Herbert Xu | dbaa154 | 2010-06-10 16:12:46 +0000 | [diff] [blame] | 843 | goto put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | } |
| 845 | |
Harvey Harrison | e7557af | 2009-03-28 15:38:31 +0000 | [diff] [blame] | 846 | np->local_ip = in_dev->ifa_list->ifa_local; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | rcu_read_unlock(); |
Joe Perches | e6ec26935 | 2012-01-29 15:50:43 +0000 | [diff] [blame^] | 848 | np_info(np, "local IP %pI4\n", &np->local_ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | } |
| 850 | |
Herbert Xu | dbaa154 | 2010-06-10 16:12:46 +0000 | [diff] [blame] | 851 | np->dev = ndev; |
| 852 | |
| 853 | /* fill up the skb queue */ |
| 854 | refill_skbs(); |
| 855 | |
| 856 | rtnl_lock(); |
Herbert Xu | 8fdd95e | 2010-06-10 16:12:48 +0000 | [diff] [blame] | 857 | err = __netpoll_setup(np); |
Herbert Xu | dbaa154 | 2010-06-10 16:12:46 +0000 | [diff] [blame] | 858 | rtnl_unlock(); |
Matt Mackall | 53fb95d | 2005-08-11 19:27:43 -0700 | [diff] [blame] | 859 | |
Herbert Xu | 8fdd95e | 2010-06-10 16:12:48 +0000 | [diff] [blame] | 860 | if (err) |
| 861 | goto put; |
| 862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | return 0; |
| 864 | |
Jiri Slaby | 21edbb2 | 2010-03-16 05:29:54 +0000 | [diff] [blame] | 865 | put: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | dev_put(ndev); |
Stephen Hemminger | b41848b | 2006-10-26 15:46:52 -0700 | [diff] [blame] | 867 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 869 | EXPORT_SYMBOL(netpoll_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | |
David S. Miller | c68b907 | 2006-11-14 20:40:49 -0800 | [diff] [blame] | 871 | static int __init netpoll_init(void) |
| 872 | { |
Stephen Hemminger | a1bcfac | 2006-11-14 10:43:58 -0800 | [diff] [blame] | 873 | skb_queue_head_init(&skb_pool); |
| 874 | return 0; |
| 875 | } |
| 876 | core_initcall(netpoll_init); |
| 877 | |
Herbert Xu | 8fdd95e | 2010-06-10 16:12:48 +0000 | [diff] [blame] | 878 | void __netpoll_cleanup(struct netpoll *np) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | { |
Jeff Moyer | fbeec2e | 2005-06-22 22:05:59 -0700 | [diff] [blame] | 880 | struct netpoll_info *npinfo; |
| 881 | unsigned long flags; |
| 882 | |
Herbert Xu | 8fdd95e | 2010-06-10 16:12:48 +0000 | [diff] [blame] | 883 | npinfo = np->dev->npinfo; |
| 884 | if (!npinfo) |
Herbert Xu | dbaa154 | 2010-06-10 16:12:46 +0000 | [diff] [blame] | 885 | return; |
Stephen Hemminger | 93ec2c7 | 2006-10-26 15:46:50 -0700 | [diff] [blame] | 886 | |
Herbert Xu | 8fdd95e | 2010-06-10 16:12:48 +0000 | [diff] [blame] | 887 | if (!list_empty(&npinfo->rx_np)) { |
| 888 | spin_lock_irqsave(&npinfo->rx_lock, flags); |
| 889 | list_del(&np->rx); |
| 890 | if (list_empty(&npinfo->rx_np)) |
| 891 | npinfo->rx_flags &= ~NETPOLL_RX_ENABLED; |
| 892 | spin_unlock_irqrestore(&npinfo->rx_lock, flags); |
Jeff Moyer | 115c1d6 | 2005-06-22 22:05:31 -0700 | [diff] [blame] | 893 | } |
Herbert Xu | dbaa154 | 2010-06-10 16:12:46 +0000 | [diff] [blame] | 894 | |
Herbert Xu | 8fdd95e | 2010-06-10 16:12:48 +0000 | [diff] [blame] | 895 | if (atomic_dec_and_test(&npinfo->refcnt)) { |
| 896 | const struct net_device_ops *ops; |
| 897 | |
| 898 | ops = np->dev->netdev_ops; |
| 899 | if (ops->ndo_netpoll_cleanup) |
| 900 | ops->ndo_netpoll_cleanup(np->dev); |
| 901 | |
Stephen Hemminger | a9b3cd7 | 2011-08-01 16:19:00 +0000 | [diff] [blame] | 902 | RCU_INIT_POINTER(np->dev->npinfo, NULL); |
Herbert Xu | 8fdd95e | 2010-06-10 16:12:48 +0000 | [diff] [blame] | 903 | |
Herbert Xu | dbaa154 | 2010-06-10 16:12:46 +0000 | [diff] [blame] | 904 | /* avoid racing with NAPI reading npinfo */ |
| 905 | synchronize_rcu_bh(); |
| 906 | |
| 907 | skb_queue_purge(&npinfo->arp_tx); |
| 908 | skb_queue_purge(&npinfo->txq); |
Tejun Heo | afe2c51 | 2010-12-14 16:21:17 +0100 | [diff] [blame] | 909 | cancel_delayed_work_sync(&npinfo->tx_work); |
Herbert Xu | dbaa154 | 2010-06-10 16:12:46 +0000 | [diff] [blame] | 910 | |
| 911 | /* clean after last, unfinished work */ |
| 912 | __skb_queue_purge(&npinfo->txq); |
| 913 | kfree(npinfo); |
| 914 | } |
Herbert Xu | 8fdd95e | 2010-06-10 16:12:48 +0000 | [diff] [blame] | 915 | } |
| 916 | EXPORT_SYMBOL_GPL(__netpoll_cleanup); |
| 917 | |
| 918 | void netpoll_cleanup(struct netpoll *np) |
| 919 | { |
| 920 | if (!np->dev) |
| 921 | return; |
| 922 | |
| 923 | rtnl_lock(); |
| 924 | __netpoll_cleanup(np); |
| 925 | rtnl_unlock(); |
Herbert Xu | dbaa154 | 2010-06-10 16:12:46 +0000 | [diff] [blame] | 926 | |
| 927 | dev_put(np->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | np->dev = NULL; |
| 929 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 930 | EXPORT_SYMBOL(netpoll_cleanup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | |
| 932 | int netpoll_trap(void) |
| 933 | { |
| 934 | return atomic_read(&trapped); |
| 935 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 936 | EXPORT_SYMBOL(netpoll_trap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | |
| 938 | void netpoll_set_trap(int trap) |
| 939 | { |
| 940 | if (trap) |
| 941 | atomic_inc(&trapped); |
| 942 | else |
| 943 | atomic_dec(&trapped); |
| 944 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | EXPORT_SYMBOL(netpoll_set_trap); |