blob: 346b1eb83a1f0336ed1e9dcf4f5905b733022dff [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Perchese6ec269352012-01-29 15:50:43 +000012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Anton Vorontsovbff38772009-07-08 11:10:56 -070014#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/netdevice.h>
16#include <linux/etherdevice.h>
17#include <linux/string.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020018#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#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 Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040028#include <linux/export.h>
Amerigo Wang689971b2012-08-10 01:24:49 +000029#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <net/tcp.h>
31#include <net/udp.h>
32#include <asm/unaligned.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -070033#include <trace/events/napi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
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 Torvalds1da177e2005-04-16 15:20:36 -070042
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -080043static struct sk_buff_head skb_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45static atomic_t trapped;
46
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -070047#define USEC_PER_POLL 50
David S. Millerd9452e92008-03-04 12:28:49 -080048#define NETPOLL_RX_ENABLED 1
49#define NETPOLL_RX_DROP 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Joe Perches6f706242012-01-29 15:50:44 +000051#define MAX_SKB_SIZE \
52 (sizeof(struct ethhdr) + \
53 sizeof(struct iphdr) + \
54 sizeof(struct udphdr) + \
55 MAX_UDP_CHUNK)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
David S. Miller3578b0c2010-08-03 00:24:04 -070057static void zap_completion_queue(void);
Amerigo Wang28996562012-08-10 01:24:42 +000058static void netpoll_arp_reply(struct sk_buff *skb, struct netpoll_info *npinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Anton Vorontsovbff38772009-07-08 11:10:56 -070060static unsigned int carrier_timeout = 4;
61module_param(carrier_timeout, uint, 0644);
62
Joe Perchese6ec269352012-01-29 15:50:43 +000063#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 Howellsc4028952006-11-22 14:57:56 +000070static void queue_process(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
David Howells4c1ac1b2006-12-05 14:37:56 +000072 struct netpoll_info *npinfo =
73 container_of(work, struct netpoll_info, tx_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 struct sk_buff *skb;
Ingo Molnar36405432006-12-12 17:20:42 +010075 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Stephen Hemminger6c43ff12006-10-26 15:46:53 -070077 while ((skb = skb_dequeue(&npinfo->txq))) {
78 struct net_device *dev = skb->dev;
Stephen Hemminger00829822008-11-20 20:14:53 -080079 const struct net_device_ops *ops = dev->netdev_ops;
David S. Millerfd2ea0a2008-07-17 01:56:23 -070080 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Stephen Hemminger6c43ff12006-10-26 15:46:53 -070082 if (!netif_device_present(dev) || !netif_running(dev)) {
83 __kfree_skb(skb);
84 continue;
85 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
David S. Millerfd2ea0a2008-07-17 01:56:23 -070087 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
88
Ingo Molnar36405432006-12-12 17:20:42 +010089 local_irq_save(flags);
David S. Millerfd2ea0a2008-07-17 01:56:23 -070090 __netif_tx_lock(txq, smp_processor_id());
Tom Herbert734664982011-11-28 16:32:44 +000091 if (netif_xmit_frozen_or_stopped(txq) ||
Stephen Hemminger00829822008-11-20 20:14:53 -080092 ops->ndo_start_xmit(skb, dev) != NETDEV_TX_OK) {
Stephen Hemminger6c43ff12006-10-26 15:46:53 -070093 skb_queue_head(&npinfo->txq, skb);
David S. Millerfd2ea0a2008-07-17 01:56:23 -070094 __netif_tx_unlock(txq);
Ingo Molnar36405432006-12-12 17:20:42 +010095 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Jarek Poplawski25442ca2007-07-05 17:42:44 -070097 schedule_delayed_work(&npinfo->tx_work, HZ/10);
Stephen Hemminger6c43ff12006-10-26 15:46:53 -070098 return;
99 }
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700100 __netif_tx_unlock(txq);
Ingo Molnar36405432006-12-12 17:20:42 +0100101 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
103}
104
Al Virob51655b2006-11-14 21:40:42 -0800105static __sum16 checksum_udp(struct sk_buff *skb, struct udphdr *uh,
106 unsigned short ulen, __be32 saddr, __be32 daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Al Virod6f5493c2006-11-14 21:26:08 -0800108 __wsum psum;
Herbert Xufb286bb2005-11-10 13:01:24 -0800109
Herbert Xu60476372007-04-09 11:59:39 -0700110 if (uh->check == 0 || skb_csum_unnecessary(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return 0;
112
Herbert Xufb286bb2005-11-10 13:01:24 -0800113 psum = csum_tcpudp_nofold(saddr, daddr, ulen, IPPROTO_UDP, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Patrick McHardy84fa7932006-08-29 16:44:56 -0700115 if (skb->ip_summed == CHECKSUM_COMPLETE &&
Al Virod3bc23e2006-11-14 21:24:49 -0800116 !csum_fold(csum_add(psum, skb->csum)))
Herbert Xufb286bb2005-11-10 13:01:24 -0800117 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Herbert Xufb286bb2005-11-10 13:01:24 -0800119 skb->csum = psum;
120
121 return __skb_checksum_complete(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
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. Miller0a7606c2007-10-29 21:28:47 -0700140static 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. Millerd9452e92008-03-04 12:28:49 -0800152 npinfo->rx_flags |= NETPOLL_RX_DROP;
David S. Miller0a7606c2007-10-29 21:28:47 -0700153 atomic_inc(&trapped);
Neil Horman7b363e42008-12-09 23:22:26 -0800154 set_bit(NAPI_STATE_NPSVC, &napi->state);
David S. Miller0a7606c2007-10-29 21:28:47 -0700155
156 work = napi->poll(napi, budget);
David S. Miller7d18f112009-05-21 23:30:09 -0700157 trace_napi_poll(napi);
David S. Miller0a7606c2007-10-29 21:28:47 -0700158
Neil Horman7b363e42008-12-09 23:22:26 -0800159 clear_bit(NAPI_STATE_NPSVC, &napi->state);
David S. Miller0a7606c2007-10-29 21:28:47 -0700160 atomic_dec(&trapped);
David S. Millerd9452e92008-03-04 12:28:49 -0800161 npinfo->rx_flags &= ~NETPOLL_RX_DROP;
David S. Miller0a7606c2007-10-29 21:28:47 -0700162
163 return budget - work;
164}
165
Stephen Hemminger51069302007-11-19 19:18:11 -0800166static void poll_napi(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700168 struct napi_struct *napi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 int budget = 16;
170
Amerigo Wang6bdb7fe2012-08-10 01:24:50 +0000171 WARN_ON_ONCE(!irqs_disabled());
172
Neil Hormanf13d4932010-10-19 07:04:26 +0000173 list_for_each_entry(napi, &dev->napi_list, dev_list) {
Amerigo Wang6bdb7fe2012-08-10 01:24:50 +0000174 local_irq_enable();
David S. Miller0a7606c2007-10-29 21:28:47 -0700175 if (napi->poll_owner != smp_processor_id() &&
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700176 spin_trylock(&napi->poll_lock)) {
Amerigo Wang6bdb7fe2012-08-10 01:24:50 +0000177 rcu_read_lock_bh();
Amerigo Wang28996562012-08-10 01:24:42 +0000178 budget = poll_one_napi(rcu_dereference_bh(dev->npinfo),
179 napi, budget);
Amerigo Wang6bdb7fe2012-08-10 01:24:50 +0000180 rcu_read_unlock_bh();
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700181 spin_unlock(&napi->poll_lock);
David S. Miller0a7606c2007-10-29 21:28:47 -0700182
Amerigo Wang6bdb7fe2012-08-10 01:24:50 +0000183 if (!budget) {
184 local_irq_disable();
David S. Miller0a7606c2007-10-29 21:28:47 -0700185 break;
Amerigo Wang6bdb7fe2012-08-10 01:24:50 +0000186 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700187 }
Amerigo Wang6bdb7fe2012-08-10 01:24:50 +0000188 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190}
191
Neil Horman068c6e92006-06-26 00:04:27 -0700192static void service_arp_queue(struct netpoll_info *npi)
193{
Stephen Hemminger51069302007-11-19 19:18:11 -0800194 if (npi) {
195 struct sk_buff *skb;
Neil Horman068c6e92006-06-26 00:04:27 -0700196
Stephen Hemminger51069302007-11-19 19:18:11 -0800197 while ((skb = skb_dequeue(&npi->arp_tx)))
Amerigo Wang28996562012-08-10 01:24:42 +0000198 netpoll_arp_reply(skb, npi);
Neil Horman068c6e92006-06-26 00:04:27 -0700199 }
Neil Horman068c6e92006-06-26 00:04:27 -0700200}
201
Joe Perches234b9212011-06-30 15:08:57 +0000202static void netpoll_poll_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Pavel Emelyanov5e392732009-05-11 00:36:35 +0000204 const struct net_device_ops *ops;
Amerigo Wang28996562012-08-10 01:24:42 +0000205 struct netpoll_info *ni = rcu_dereference_bh(dev->npinfo);
Stephen Hemminger51069302007-11-19 19:18:11 -0800206
Pavel Emelyanov5e392732009-05-11 00:36:35 +0000207 if (!dev || !netif_running(dev))
208 return;
209
210 ops = dev->netdev_ops;
211 if (!ops->ndo_poll_controller)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return;
213
214 /* Process pending work on NIC */
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800215 ops->ndo_poll_controller(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Stephen Hemminger51069302007-11-19 19:18:11 -0800217 poll_napi(dev);
218
Eric Dumazet58e05f32012-02-14 10:11:59 +0000219 if (dev->flags & IFF_SLAVE) {
Amerigo Wang28996562012-08-10 01:24:42 +0000220 if (ni) {
Amerigo Wang5a698af2011-02-17 23:43:34 +0000221 struct net_device *bond_dev = dev->master;
222 struct sk_buff *skb;
Amerigo Wang28996562012-08-10 01:24:42 +0000223 struct netpoll_info *bond_ni = rcu_dereference_bh(bond_dev->npinfo);
224 while ((skb = skb_dequeue(&ni->arp_tx))) {
Amerigo Wang5a698af2011-02-17 23:43:34 +0000225 skb->dev = bond_dev;
Amerigo Wang28996562012-08-10 01:24:42 +0000226 skb_queue_tail(&bond_ni->arp_tx, skb);
Amerigo Wang5a698af2011-02-17 23:43:34 +0000227 }
228 }
229 }
230
Amerigo Wang28996562012-08-10 01:24:42 +0000231 service_arp_queue(ni);
Neil Horman068c6e92006-06-26 00:04:27 -0700232
David S. Miller3578b0c2010-08-03 00:24:04 -0700233 zap_completion_queue();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236static void refill_skbs(void)
237{
238 struct sk_buff *skb;
239 unsigned long flags;
240
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800241 spin_lock_irqsave(&skb_pool.lock, flags);
242 while (skb_pool.qlen < MAX_SKBS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 skb = alloc_skb(MAX_SKB_SIZE, GFP_ATOMIC);
244 if (!skb)
245 break;
246
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800247 __skb_queue_tail(&skb_pool, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800249 spin_unlock_irqrestore(&skb_pool.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
David S. Miller3578b0c2010-08-03 00:24:04 -0700252static void zap_completion_queue(void)
253{
254 unsigned long flags;
255 struct softnet_data *sd = &get_cpu_var(softnet_data);
256
257 if (sd->completion_queue) {
258 struct sk_buff *clist;
259
260 local_irq_save(flags);
261 clist = sd->completion_queue;
262 sd->completion_queue = NULL;
263 local_irq_restore(flags);
264
265 while (clist != NULL) {
266 struct sk_buff *skb = clist;
267 clist = clist->next;
268 if (skb->destructor) {
269 atomic_inc(&skb->users);
270 dev_kfree_skb_any(skb); /* put this one back */
271 } else {
272 __kfree_skb(skb);
273 }
274 }
275 }
276
277 put_cpu_var(softnet_data);
278}
279
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800280static struct sk_buff *find_skb(struct netpoll *np, int len, int reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800282 int count = 0;
283 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
David S. Miller3578b0c2010-08-03 00:24:04 -0700285 zap_completion_queue();
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800286 refill_skbs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287repeat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 skb = alloc_skb(len, GFP_ATOMIC);
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800290 if (!skb)
291 skb = skb_dequeue(&skb_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 if (!skb) {
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800294 if (++count < 10) {
Joe Perches2a49e002011-06-30 15:08:58 +0000295 netpoll_poll_dev(np->dev);
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800296 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800298 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300
301 atomic_set(&skb->users, 1);
302 skb_reserve(skb, reserve);
303 return skb;
304}
305
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700306static int netpoll_owner_active(struct net_device *dev)
307{
308 struct napi_struct *napi;
309
310 list_for_each_entry(napi, &dev->napi_list, dev_list) {
311 if (napi->poll_owner == smp_processor_id())
312 return 1;
313 }
314 return 0;
315}
316
Amerigo Wang28996562012-08-10 01:24:42 +0000317/* call with IRQ disabled */
Neil Hormanc2355e12010-10-13 16:01:49 +0000318void netpoll_send_skb_on_dev(struct netpoll *np, struct sk_buff *skb,
319 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700321 int status = NETDEV_TX_BUSY;
322 unsigned long tries;
Stephen Hemminger00829822008-11-20 20:14:53 -0800323 const struct net_device_ops *ops = dev->netdev_ops;
Herbert Xude85d992010-06-10 16:12:44 +0000324 /* It is up to the caller to keep npinfo alive. */
Amerigo Wang28996562012-08-10 01:24:42 +0000325 struct netpoll_info *npinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Amerigo Wang28996562012-08-10 01:24:42 +0000327 WARN_ON_ONCE(!irqs_disabled());
328
329 npinfo = rcu_dereference_bh(np->dev->npinfo);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900330 if (!npinfo || !netif_running(dev) || !netif_device_present(dev)) {
331 __kfree_skb(skb);
332 return;
333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700335 /* don't get messages out of order, and no recursion */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700336 if (skb_queue_len(&npinfo->txq) == 0 && !netpoll_owner_active(dev)) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700337 struct netdev_queue *txq;
Andrew Mortona49f99f2006-12-11 17:24:46 -0800338
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700339 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
340
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700341 /* try until next clock tick */
342 for (tries = jiffies_to_usecs(1)/USEC_PER_POLL;
343 tries > 0; --tries) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700344 if (__netif_tx_trylock(txq)) {
Tom Herbert734664982011-11-28 16:32:44 +0000345 if (!netif_xmit_stopped(txq)) {
Amerigo Wang689971b2012-08-10 01:24:49 +0000346 if (vlan_tx_tag_present(skb) &&
347 !(netif_skb_features(skb) & NETIF_F_HW_VLAN_TX)) {
348 skb = __vlan_put_tag(skb, vlan_tx_tag_get(skb));
349 if (unlikely(!skb))
350 break;
351 skb->vlan_tci = 0;
352 }
353
Stephen Hemminger00829822008-11-20 20:14:53 -0800354 status = ops->ndo_start_xmit(skb, dev);
Eric Dumazet08baf562009-05-25 22:58:01 -0700355 if (status == NETDEV_TX_OK)
356 txq_trans_update(txq);
357 }
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700358 __netif_tx_unlock(txq);
Matt Mackallf0d34592005-08-11 19:25:11 -0700359
Andrew Mortone37b8d92006-12-09 14:01:49 -0800360 if (status == NETDEV_TX_OK)
361 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Andrew Mortone37b8d92006-12-09 14:01:49 -0800363 }
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700364
365 /* tickle device maybe there is some cleanup */
Joe Perches2a49e002011-06-30 15:08:58 +0000366 netpoll_poll_dev(np->dev);
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700367
368 udelay(USEC_PER_POLL);
Matt Mackall0db1d6f2005-08-11 19:25:54 -0700369 }
Dongdong Deng79b1bee2009-08-21 03:33:36 +0000370
371 WARN_ONCE(!irqs_disabled(),
Amerigo Wang28996562012-08-10 01:24:42 +0000372 "netpoll_send_skb_on_dev(): %s enabled interrupts in poll (%pF)\n",
Dongdong Deng79b1bee2009-08-21 03:33:36 +0000373 dev->name, ops->ndo_start_xmit);
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700377 if (status != NETDEV_TX_OK) {
Stephen Hemminger5de4a472006-10-26 15:46:55 -0700378 skb_queue_tail(&npinfo->txq, skb);
David Howells4c1ac1b2006-12-05 14:37:56 +0000379 schedule_delayed_work(&npinfo->tx_work,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
Neil Hormanc2355e12010-10-13 16:01:49 +0000382EXPORT_SYMBOL(netpoll_send_skb_on_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384void netpoll_send_udp(struct netpoll *np, const char *msg, int len)
385{
Eric Dumazet954fba02012-06-12 19:30:21 +0000386 int total_len, ip_len, udp_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 struct sk_buff *skb;
388 struct udphdr *udph;
389 struct iphdr *iph;
390 struct ethhdr *eth;
391
392 udp_len = len + sizeof(*udph);
Eric Dumazet954fba02012-06-12 19:30:21 +0000393 ip_len = udp_len + sizeof(*iph);
394 total_len = ip_len + LL_RESERVED_SPACE(np->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Eric Dumazet954fba02012-06-12 19:30:21 +0000396 skb = find_skb(np, total_len + np->dev->needed_tailroom,
397 total_len - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (!skb)
399 return;
400
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300401 skb_copy_to_linear_data(skb, msg, len);
Eric Dumazet954fba02012-06-12 19:30:21 +0000402 skb_put(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300404 skb_push(skb, sizeof(*udph));
405 skb_reset_transport_header(skb);
406 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 udph->source = htons(np->local_port);
408 udph->dest = htons(np->remote_port);
409 udph->len = htons(udp_len);
410 udph->check = 0;
Harvey Harrisone7557af2009-03-28 15:38:31 +0000411 udph->check = csum_tcpudp_magic(np->local_ip,
412 np->remote_ip,
Chris Lalancette8e365ee2006-11-07 14:56:19 -0800413 udp_len, IPPROTO_UDP,
Joe Perches07f07572008-11-19 15:44:53 -0800414 csum_partial(udph, udp_len, 0));
Chris Lalancette8e365ee2006-11-07 14:56:19 -0800415 if (udph->check == 0)
Al Viro5e57dff2006-11-20 18:08:13 -0800416 udph->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700418 skb_push(skb, sizeof(*iph));
419 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700420 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /* iph->version = 4; iph->ihl = 5; */
423 put_unaligned(0x45, (unsigned char *)iph);
424 iph->tos = 0;
425 put_unaligned(htons(ip_len), &(iph->tot_len));
426 iph->id = 0;
427 iph->frag_off = 0;
428 iph->ttl = 64;
429 iph->protocol = IPPROTO_UDP;
430 iph->check = 0;
Harvey Harrisone7557af2009-03-28 15:38:31 +0000431 put_unaligned(np->local_ip, &(iph->saddr));
432 put_unaligned(np->remote_ip, &(iph->daddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
434
435 eth = (struct ethhdr *) skb_push(skb, ETH_HLEN);
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700436 skb_reset_mac_header(skb);
Stephen Hemminger206daaf2006-10-19 23:58:23 -0700437 skb->protocol = eth->h_proto = htons(ETH_P_IP);
Stephen Hemminger09538642007-11-19 19:23:29 -0800438 memcpy(eth->h_source, np->dev->dev_addr, ETH_ALEN);
439 memcpy(eth->h_dest, np->remote_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 skb->dev = np->dev;
442
443 netpoll_send_skb(np, skb);
444}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000445EXPORT_SYMBOL(netpoll_send_udp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Amerigo Wang28996562012-08-10 01:24:42 +0000447static void netpoll_arp_reply(struct sk_buff *skb, struct netpoll_info *npinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 struct arphdr *arp;
450 unsigned char *arp_ptr;
451 int size, type = ARPOP_REPLY, ptype = ETH_P_ARP;
Al Viro252e33462006-11-14 20:48:11 -0800452 __be32 sip, tip;
Neil Horman47bbec02006-12-08 00:05:55 -0800453 unsigned char *sha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 struct sk_buff *send_skb;
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000455 struct netpoll *np, *tmp;
456 unsigned long flags;
Herbert Xuae641942011-11-18 02:20:04 +0000457 int hlen, tlen;
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000458 int hits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000460 if (list_empty(&npinfo->rx_np))
461 return;
462
463 /* Before checking the packet, we do some early
464 inspection whether this is interesting at all */
465 spin_lock_irqsave(&npinfo->rx_lock, flags);
466 list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) {
467 if (np->dev == skb->dev)
468 hits++;
469 }
470 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
471
472 /* No netpoll struct is using this dev */
473 if (!hits)
Jeff Moyer115c1d62005-06-22 22:05:31 -0700474 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 /* No arp on this interface */
477 if (skb->dev->flags & IFF_NOARP)
478 return;
479
Pavel Emelyanov988b7052008-03-03 12:20:57 -0800480 if (!pskb_may_pull(skb, arp_hdr_len(skb->dev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return;
482
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700483 skb_reset_network_header(skb);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300484 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300485 arp = arp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 if ((arp->ar_hrd != htons(ARPHRD_ETHER) &&
488 arp->ar_hrd != htons(ARPHRD_IEEE802)) ||
489 arp->ar_pro != htons(ETH_P_IP) ||
490 arp->ar_op != htons(ARPOP_REQUEST))
491 return;
492
Neil Horman47bbec02006-12-08 00:05:55 -0800493 arp_ptr = (unsigned char *)(arp+1);
494 /* save the location of the src hw addr */
495 sha = arp_ptr;
496 arp_ptr += skb->dev->addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 memcpy(&sip, arp_ptr, 4);
Neil Horman47bbec02006-12-08 00:05:55 -0800498 arp_ptr += 4;
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000499 /* If we actually cared about dst hw addr,
500 it would get copied here */
Neil Horman47bbec02006-12-08 00:05:55 -0800501 arp_ptr += skb->dev->addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 memcpy(&tip, arp_ptr, 4);
503
504 /* Should we ignore arp? */
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000505 if (ipv4_is_loopback(tip) || ipv4_is_multicast(tip))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return;
507
Pavel Emelyanov988b7052008-03-03 12:20:57 -0800508 size = arp_hdr_len(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000510 spin_lock_irqsave(&npinfo->rx_lock, flags);
511 list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) {
512 if (tip != np->local_ip)
513 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Herbert Xuae641942011-11-18 02:20:04 +0000515 hlen = LL_RESERVED_SPACE(np->dev);
516 tlen = np->dev->needed_tailroom;
517 send_skb = find_skb(np, size + hlen + tlen, hlen);
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000518 if (!send_skb)
519 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000521 skb_reset_network_header(send_skb);
522 arp = (struct arphdr *) skb_put(send_skb, size);
523 send_skb->dev = skb->dev;
524 send_skb->protocol = htons(ETH_P_ARP);
525
526 /* Fill the device header for the ARP frame */
527 if (dev_hard_header(send_skb, skb->dev, ptype,
528 sha, np->dev->dev_addr,
529 send_skb->len) < 0) {
530 kfree_skb(send_skb);
531 continue;
532 }
533
534 /*
535 * Fill out the arp protocol part.
536 *
537 * we only support ethernet device type,
538 * which (according to RFC 1390) should
539 * always equal 1 (Ethernet).
540 */
541
542 arp->ar_hrd = htons(np->dev->type);
543 arp->ar_pro = htons(ETH_P_IP);
544 arp->ar_hln = np->dev->addr_len;
545 arp->ar_pln = 4;
546 arp->ar_op = htons(type);
547
548 arp_ptr = (unsigned char *)(arp + 1);
549 memcpy(arp_ptr, np->dev->dev_addr, np->dev->addr_len);
550 arp_ptr += np->dev->addr_len;
551 memcpy(arp_ptr, &tip, 4);
552 arp_ptr += 4;
553 memcpy(arp_ptr, sha, np->dev->addr_len);
554 arp_ptr += np->dev->addr_len;
555 memcpy(arp_ptr, &sip, 4);
556
557 netpoll_send_skb(np, send_skb);
558
559 /* If there are several rx_hooks for the same address,
560 we're fine by sending a single reply */
561 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000563 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Amerigo Wang57c5d462012-08-10 01:24:40 +0000566int __netpoll_rx(struct sk_buff *skb, struct netpoll_info *npinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 int proto, len, ulen;
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000569 int hits = 0;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000570 const struct iphdr *iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 struct udphdr *uh;
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000572 struct netpoll *np, *tmp;
Neil Horman068c6e92006-06-26 00:04:27 -0700573
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000574 if (list_empty(&npinfo->rx_np))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 goto out;
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (skb->dev->type != ARPHRD_ETHER)
578 goto out;
579
David S. Millerd9452e92008-03-04 12:28:49 -0800580 /* check if netpoll clients need ARP */
YOSHIFUJI Hideaki724800d2007-03-25 20:13:04 -0700581 if (skb->protocol == htons(ETH_P_ARP) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 atomic_read(&trapped)) {
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000583 skb_queue_tail(&npinfo->arp_tx, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return 1;
585 }
586
Amerigo Wang689971b2012-08-10 01:24:49 +0000587 if (skb->protocol == cpu_to_be16(ETH_P_8021Q)) {
588 skb = vlan_untag(skb);
589 if (unlikely(!skb))
590 goto out;
591 }
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 proto = ntohs(eth_hdr(skb)->h_proto);
594 if (proto != ETH_P_IP)
595 goto out;
596 if (skb->pkt_type == PACKET_OTHERHOST)
597 goto out;
598 if (skb_shared(skb))
599 goto out;
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
602 goto out;
Eric Dumazete9278a42011-08-26 06:26:15 +0000603 iph = (struct iphdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (iph->ihl < 5 || iph->version != 4)
605 goto out;
606 if (!pskb_may_pull(skb, iph->ihl*4))
607 goto out;
Eric Dumazete9278a42011-08-26 06:26:15 +0000608 iph = (struct iphdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (ip_fast_csum((u8 *)iph, iph->ihl) != 0)
610 goto out;
611
612 len = ntohs(iph->tot_len);
613 if (skb->len < len || len < iph->ihl*4)
614 goto out;
615
Aubrey.Li5e7d7fa2007-04-17 12:40:20 -0700616 /*
617 * Our transport medium may have padded the buffer out.
618 * Now We trim to the true length of the frame.
619 */
620 if (pskb_trim_rcsum(skb, len))
621 goto out;
622
Eric Dumazete9278a42011-08-26 06:26:15 +0000623 iph = (struct iphdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (iph->protocol != IPPROTO_UDP)
625 goto out;
626
627 len -= iph->ihl*4;
628 uh = (struct udphdr *)(((char *)iph) + iph->ihl*4);
629 ulen = ntohs(uh->len);
630
631 if (ulen != len)
632 goto out;
Herbert Xufb286bb2005-11-10 13:01:24 -0800633 if (checksum_udp(skb, uh, ulen, iph->saddr, iph->daddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000636 list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) {
637 if (np->local_ip && np->local_ip != iph->daddr)
638 continue;
639 if (np->remote_ip && np->remote_ip != iph->saddr)
640 continue;
641 if (np->local_port && np->local_port != ntohs(uh->dest))
642 continue;
643
644 np->rx_hook(np, ntohs(uh->source),
645 (char *)(uh+1),
646 ulen - sizeof(struct udphdr));
647 hits++;
648 }
649
650 if (!hits)
651 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 kfree_skb(skb);
654 return 1;
655
656out:
657 if (atomic_read(&trapped)) {
658 kfree_skb(skb);
659 return 1;
660 }
661
662 return 0;
663}
664
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700665void netpoll_print_options(struct netpoll *np)
666{
Joe Perchese6ec269352012-01-29 15:50:43 +0000667 np_info(np, "local port %d\n", np->local_port);
668 np_info(np, "local IP %pI4\n", &np->local_ip);
669 np_info(np, "interface '%s'\n", np->dev_name);
670 np_info(np, "remote port %d\n", np->remote_port);
671 np_info(np, "remote IP %pI4\n", &np->remote_ip);
672 np_info(np, "remote ethernet address %pM\n", np->remote_mac);
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700673}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000674EXPORT_SYMBOL(netpoll_print_options);
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676int netpoll_parse_options(struct netpoll *np, char *opt)
677{
678 char *cur=opt, *delim;
679
David S. Millerc68b9072006-11-14 20:40:49 -0800680 if (*cur != '@') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if ((delim = strchr(cur, '@')) == NULL)
682 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800683 *delim = 0;
684 np->local_port = simple_strtol(cur, NULL, 10);
685 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687 cur++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
David S. Millerc68b9072006-11-14 20:40:49 -0800689 if (*cur != '/') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if ((delim = strchr(cur, '/')) == NULL)
691 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800692 *delim = 0;
Harvey Harrisone7557af2009-03-28 15:38:31 +0000693 np->local_ip = in_aton(cur);
David S. Millerc68b9072006-11-14 20:40:49 -0800694 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696 cur++;
697
David S. Millerc68b9072006-11-14 20:40:49 -0800698 if (*cur != ',') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 /* parse out dev name */
700 if ((delim = strchr(cur, ',')) == NULL)
701 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800702 *delim = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 strlcpy(np->dev_name, cur, sizeof(np->dev_name));
David S. Millerc68b9072006-11-14 20:40:49 -0800704 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
706 cur++;
707
David S. Millerc68b9072006-11-14 20:40:49 -0800708 if (*cur != '@') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 /* dst port */
710 if ((delim = strchr(cur, '@')) == NULL)
711 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800712 *delim = 0;
Amerigo Wang5fc05f82010-03-21 22:59:58 +0000713 if (*cur == ' ' || *cur == '\t')
Joe Perchese6ec269352012-01-29 15:50:43 +0000714 np_info(np, "warning: whitespace is not allowed\n");
David S. Millerc68b9072006-11-14 20:40:49 -0800715 np->remote_port = simple_strtol(cur, NULL, 10);
716 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
718 cur++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 /* dst ip */
721 if ((delim = strchr(cur, '/')) == NULL)
722 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800723 *delim = 0;
Harvey Harrisone7557af2009-03-28 15:38:31 +0000724 np->remote_ip = in_aton(cur);
David S. Millerc68b9072006-11-14 20:40:49 -0800725 cur = delim + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
David S. Millerc68b9072006-11-14 20:40:49 -0800727 if (*cur != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 /* MAC address */
Alexey Dobriyan4940fc82011-05-07 23:00:07 +0000729 if (!mac_pton(cur, np->remote_mac))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 goto parse_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
732
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700733 netpoll_print_options(np);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 return 0;
736
737 parse_failed:
Joe Perchese6ec269352012-01-29 15:50:43 +0000738 np_info(np, "couldn't parse config at '%s'!\n", cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return -1;
740}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000741EXPORT_SYMBOL(netpoll_parse_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Amerigo Wang47be03a22012-08-10 01:24:37 +0000743int __netpoll_setup(struct netpoll *np, struct net_device *ndev, gfp_t gfp)
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000744{
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000745 struct netpoll_info *npinfo;
746 const struct net_device_ops *ops;
747 unsigned long flags;
748 int err;
749
Jiri Pirko30fdd8a02012-07-17 05:22:35 +0000750 np->dev = ndev;
751 strlcpy(np->dev_name, ndev->name, IFNAMSIZ);
752
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000753 if ((ndev->priv_flags & IFF_DISABLE_NETPOLL) ||
754 !ndev->netdev_ops->ndo_poll_controller) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000755 np_err(np, "%s doesn't support polling, aborting\n",
756 np->dev_name);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000757 err = -ENOTSUPP;
758 goto out;
759 }
760
761 if (!ndev->npinfo) {
Amerigo Wang47be03a22012-08-10 01:24:37 +0000762 npinfo = kmalloc(sizeof(*npinfo), gfp);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000763 if (!npinfo) {
764 err = -ENOMEM;
765 goto out;
766 }
767
768 npinfo->rx_flags = 0;
769 INIT_LIST_HEAD(&npinfo->rx_np);
770
771 spin_lock_init(&npinfo->rx_lock);
772 skb_queue_head_init(&npinfo->arp_tx);
773 skb_queue_head_init(&npinfo->txq);
774 INIT_DELAYED_WORK(&npinfo->tx_work, queue_process);
775
776 atomic_set(&npinfo->refcnt, 1);
777
778 ops = np->dev->netdev_ops;
779 if (ops->ndo_netpoll_setup) {
Amerigo Wang47be03a22012-08-10 01:24:37 +0000780 err = ops->ndo_netpoll_setup(ndev, npinfo, gfp);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000781 if (err)
782 goto free_npinfo;
783 }
784 } else {
785 npinfo = ndev->npinfo;
786 atomic_inc(&npinfo->refcnt);
787 }
788
789 npinfo->netpoll = np;
790
791 if (np->rx_hook) {
792 spin_lock_irqsave(&npinfo->rx_lock, flags);
793 npinfo->rx_flags |= NETPOLL_RX_ENABLED;
794 list_add_tail(&np->rx, &npinfo->rx_np);
795 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
796 }
797
798 /* last thing to do is link it to the net device structure */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000799 rcu_assign_pointer(ndev->npinfo, npinfo);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000800
801 return 0;
802
803free_npinfo:
804 kfree(npinfo);
805out:
806 return err;
807}
808EXPORT_SYMBOL_GPL(__netpoll_setup);
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810int netpoll_setup(struct netpoll *np)
811{
812 struct net_device *ndev = NULL;
813 struct in_device *in_dev;
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700814 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 if (np->dev_name)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700817 ndev = dev_get_by_name(&init_net, np->dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (!ndev) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000819 np_err(np, "%s doesn't exist, aborting\n", np->dev_name);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700820 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822
WANG Cong0c1ad042011-06-09 00:28:13 -0700823 if (ndev->master) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000824 np_err(np, "%s is a slave device, aborting\n", np->dev_name);
Dan Carpenter83fe32d2011-06-11 18:55:22 -0700825 err = -EBUSY;
826 goto put;
WANG Cong0c1ad042011-06-09 00:28:13 -0700827 }
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 if (!netif_running(ndev)) {
830 unsigned long atmost, atleast;
831
Joe Perchese6ec269352012-01-29 15:50:43 +0000832 np_info(np, "device %s not up yet, forcing it\n", np->dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800834 rtnl_lock();
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700835 err = dev_open(ndev);
836 rtnl_unlock();
837
838 if (err) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000839 np_err(np, "failed to open %s\n", ndev->name);
Herbert Xudbaa1542010-06-10 16:12:46 +0000840 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 atleast = jiffies + HZ/10;
Anton Vorontsovbff38772009-07-08 11:10:56 -0700844 atmost = jiffies + carrier_timeout * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 while (!netif_carrier_ok(ndev)) {
846 if (time_after(jiffies, atmost)) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000847 np_notice(np, "timeout waiting for carrier\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 break;
849 }
Anton Vorontsov1b614fb2009-07-08 20:09:44 -0700850 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852
853 /* If carrier appears to come up instantly, we don't
854 * trust it and pause so that we don't pump all our
855 * queued console messages into the bitbucket.
856 */
857
858 if (time_before(jiffies, atleast)) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000859 np_notice(np, "carrier detect appears untrustworthy, waiting 4 seconds\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 msleep(4000);
861 }
862 }
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (!np->local_ip) {
865 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -0700866 in_dev = __in_dev_get_rcu(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 if (!in_dev || !in_dev->ifa_list) {
869 rcu_read_unlock();
Joe Perchese6ec269352012-01-29 15:50:43 +0000870 np_err(np, "no IP address for %s, aborting\n",
871 np->dev_name);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700872 err = -EDESTADDRREQ;
Herbert Xudbaa1542010-06-10 16:12:46 +0000873 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875
Harvey Harrisone7557af2009-03-28 15:38:31 +0000876 np->local_ip = in_dev->ifa_list->ifa_local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 rcu_read_unlock();
Joe Perchese6ec269352012-01-29 15:50:43 +0000878 np_info(np, "local IP %pI4\n", &np->local_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
880
Herbert Xudbaa1542010-06-10 16:12:46 +0000881 /* fill up the skb queue */
882 refill_skbs();
883
884 rtnl_lock();
Amerigo Wang47be03a22012-08-10 01:24:37 +0000885 err = __netpoll_setup(np, ndev, GFP_KERNEL);
Herbert Xudbaa1542010-06-10 16:12:46 +0000886 rtnl_unlock();
Matt Mackall53fb95d2005-08-11 19:27:43 -0700887
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000888 if (err)
889 goto put;
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return 0;
892
Jiri Slaby21edbb22010-03-16 05:29:54 +0000893put:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 dev_put(ndev);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700895 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000897EXPORT_SYMBOL(netpoll_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
David S. Millerc68b9072006-11-14 20:40:49 -0800899static int __init netpoll_init(void)
900{
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800901 skb_queue_head_init(&skb_pool);
902 return 0;
903}
904core_initcall(netpoll_init);
905
Amerigo Wang38e6bc12012-08-10 01:24:38 +0000906static void rcu_cleanup_netpoll_info(struct rcu_head *rcu_head)
907{
908 struct netpoll_info *npinfo =
909 container_of(rcu_head, struct netpoll_info, rcu);
910
911 skb_queue_purge(&npinfo->arp_tx);
912 skb_queue_purge(&npinfo->txq);
913
914 /* we can't call cancel_delayed_work_sync here, as we are in softirq */
915 cancel_delayed_work(&npinfo->tx_work);
916
917 /* clean after last, unfinished work */
918 __skb_queue_purge(&npinfo->txq);
919 /* now cancel it again */
920 cancel_delayed_work(&npinfo->tx_work);
921 kfree(npinfo);
922}
923
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000924void __netpoll_cleanup(struct netpoll *np)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700926 struct netpoll_info *npinfo;
927 unsigned long flags;
928
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000929 npinfo = np->dev->npinfo;
930 if (!npinfo)
Herbert Xudbaa1542010-06-10 16:12:46 +0000931 return;
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700932
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000933 if (!list_empty(&npinfo->rx_np)) {
934 spin_lock_irqsave(&npinfo->rx_lock, flags);
935 list_del(&np->rx);
936 if (list_empty(&npinfo->rx_np))
937 npinfo->rx_flags &= ~NETPOLL_RX_ENABLED;
938 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
Jeff Moyer115c1d62005-06-22 22:05:31 -0700939 }
Herbert Xudbaa1542010-06-10 16:12:46 +0000940
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000941 if (atomic_dec_and_test(&npinfo->refcnt)) {
942 const struct net_device_ops *ops;
943
944 ops = np->dev->netdev_ops;
945 if (ops->ndo_netpoll_cleanup)
946 ops->ndo_netpoll_cleanup(np->dev);
947
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000948 RCU_INIT_POINTER(np->dev->npinfo, NULL);
Amerigo Wang38e6bc12012-08-10 01:24:38 +0000949 call_rcu_bh(&npinfo->rcu, rcu_cleanup_netpoll_info);
Herbert Xudbaa1542010-06-10 16:12:46 +0000950 }
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000951}
952EXPORT_SYMBOL_GPL(__netpoll_cleanup);
953
Amerigo Wang38e6bc12012-08-10 01:24:38 +0000954static void rcu_cleanup_netpoll(struct rcu_head *rcu_head)
955{
956 struct netpoll *np = container_of(rcu_head, struct netpoll, rcu);
957
958 __netpoll_cleanup(np);
959 kfree(np);
960}
961
962void __netpoll_free_rcu(struct netpoll *np)
963{
964 call_rcu_bh(&np->rcu, rcu_cleanup_netpoll);
965}
966EXPORT_SYMBOL_GPL(__netpoll_free_rcu);
967
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000968void netpoll_cleanup(struct netpoll *np)
969{
970 if (!np->dev)
971 return;
972
973 rtnl_lock();
974 __netpoll_cleanup(np);
975 rtnl_unlock();
Herbert Xudbaa1542010-06-10 16:12:46 +0000976
977 dev_put(np->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 np->dev = NULL;
979}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000980EXPORT_SYMBOL(netpoll_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982int netpoll_trap(void)
983{
984 return atomic_read(&trapped);
985}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000986EXPORT_SYMBOL(netpoll_trap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988void netpoll_set_trap(int trap)
989{
990 if (trap)
991 atomic_inc(&trapped);
992 else
993 atomic_dec(&trapped);
994}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995EXPORT_SYMBOL(netpoll_set_trap);