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