blob: 6bd073688f68d8675332b92c9d0020afbac49c3f [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);
Cong Wangb7394d22013-01-07 20:52:39 +000058static void netpoll_neigh_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
Neil Hormanf13d4932010-10-19 07:04:26 +0000171 list_for_each_entry(napi, &dev->napi_list, dev_list) {
David S. Miller0a7606c2007-10-29 21:28:47 -0700172 if (napi->poll_owner != smp_processor_id() &&
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700173 spin_trylock(&napi->poll_lock)) {
Amerigo Wang28996562012-08-10 01:24:42 +0000174 budget = poll_one_napi(rcu_dereference_bh(dev->npinfo),
175 napi, budget);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700176 spin_unlock(&napi->poll_lock);
David S. Miller0a7606c2007-10-29 21:28:47 -0700177
Amerigo Wang072a9c42012-08-24 21:41:11 +0000178 if (!budget)
David S. Miller0a7606c2007-10-29 21:28:47 -0700179 break;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182}
183
Cong Wangb7394d22013-01-07 20:52:39 +0000184static void service_neigh_queue(struct netpoll_info *npi)
Neil Horman068c6e92006-06-26 00:04:27 -0700185{
Stephen Hemminger51069302007-11-19 19:18:11 -0800186 if (npi) {
187 struct sk_buff *skb;
Neil Horman068c6e92006-06-26 00:04:27 -0700188
Cong Wangb7394d22013-01-07 20:52:39 +0000189 while ((skb = skb_dequeue(&npi->neigh_tx)))
190 netpoll_neigh_reply(skb, npi);
Neil Horman068c6e92006-06-26 00:04:27 -0700191 }
Neil Horman068c6e92006-06-26 00:04:27 -0700192}
193
Joe Perches234b9212011-06-30 15:08:57 +0000194static void netpoll_poll_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Pavel Emelyanov5e392732009-05-11 00:36:35 +0000196 const struct net_device_ops *ops;
Amerigo Wang28996562012-08-10 01:24:42 +0000197 struct netpoll_info *ni = rcu_dereference_bh(dev->npinfo);
Stephen Hemminger51069302007-11-19 19:18:11 -0800198
Pavel Emelyanov5e392732009-05-11 00:36:35 +0000199 if (!dev || !netif_running(dev))
200 return;
201
202 ops = dev->netdev_ops;
203 if (!ops->ndo_poll_controller)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return;
205
206 /* Process pending work on NIC */
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800207 ops->ndo_poll_controller(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Stephen Hemminger51069302007-11-19 19:18:11 -0800209 poll_napi(dev);
210
Eric Dumazet58e05f32012-02-14 10:11:59 +0000211 if (dev->flags & IFF_SLAVE) {
Amerigo Wang28996562012-08-10 01:24:42 +0000212 if (ni) {
Jiri Pirko49bd8fb2013-01-03 22:48:55 +0000213 struct net_device *bond_dev;
Amerigo Wang5a698af2011-02-17 23:43:34 +0000214 struct sk_buff *skb;
Jiri Pirko49bd8fb2013-01-03 22:48:55 +0000215 struct netpoll_info *bond_ni;
216
217 bond_dev = netdev_master_upper_dev_get_rcu(dev);
218 bond_ni = rcu_dereference_bh(bond_dev->npinfo);
Cong Wangb7394d22013-01-07 20:52:39 +0000219 while ((skb = skb_dequeue(&ni->neigh_tx))) {
Amerigo Wang5a698af2011-02-17 23:43:34 +0000220 skb->dev = bond_dev;
Cong Wangb7394d22013-01-07 20:52:39 +0000221 skb_queue_tail(&bond_ni->neigh_tx, skb);
Amerigo Wang5a698af2011-02-17 23:43:34 +0000222 }
223 }
224 }
225
Cong Wangb7394d22013-01-07 20:52:39 +0000226 service_neigh_queue(ni);
Neil Horman068c6e92006-06-26 00:04:27 -0700227
David S. Miller3578b0c2010-08-03 00:24:04 -0700228 zap_completion_queue();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
231static void refill_skbs(void)
232{
233 struct sk_buff *skb;
234 unsigned long flags;
235
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800236 spin_lock_irqsave(&skb_pool.lock, flags);
237 while (skb_pool.qlen < MAX_SKBS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 skb = alloc_skb(MAX_SKB_SIZE, GFP_ATOMIC);
239 if (!skb)
240 break;
241
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800242 __skb_queue_tail(&skb_pool, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800244 spin_unlock_irqrestore(&skb_pool.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
David S. Miller3578b0c2010-08-03 00:24:04 -0700247static void zap_completion_queue(void)
248{
249 unsigned long flags;
250 struct softnet_data *sd = &get_cpu_var(softnet_data);
251
252 if (sd->completion_queue) {
253 struct sk_buff *clist;
254
255 local_irq_save(flags);
256 clist = sd->completion_queue;
257 sd->completion_queue = NULL;
258 local_irq_restore(flags);
259
260 while (clist != NULL) {
261 struct sk_buff *skb = clist;
262 clist = clist->next;
263 if (skb->destructor) {
264 atomic_inc(&skb->users);
265 dev_kfree_skb_any(skb); /* put this one back */
266 } else {
267 __kfree_skb(skb);
268 }
269 }
270 }
271
272 put_cpu_var(softnet_data);
273}
274
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800275static struct sk_buff *find_skb(struct netpoll *np, int len, int reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800277 int count = 0;
278 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
David S. Miller3578b0c2010-08-03 00:24:04 -0700280 zap_completion_queue();
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800281 refill_skbs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282repeat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 skb = alloc_skb(len, GFP_ATOMIC);
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800285 if (!skb)
286 skb = skb_dequeue(&skb_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 if (!skb) {
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800289 if (++count < 10) {
Joe Perches2a49e002011-06-30 15:08:58 +0000290 netpoll_poll_dev(np->dev);
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800291 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800293 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295
296 atomic_set(&skb->users, 1);
297 skb_reserve(skb, reserve);
298 return skb;
299}
300
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700301static int netpoll_owner_active(struct net_device *dev)
302{
303 struct napi_struct *napi;
304
305 list_for_each_entry(napi, &dev->napi_list, dev_list) {
306 if (napi->poll_owner == smp_processor_id())
307 return 1;
308 }
309 return 0;
310}
311
Amerigo Wang28996562012-08-10 01:24:42 +0000312/* call with IRQ disabled */
Neil Hormanc2355e12010-10-13 16:01:49 +0000313void netpoll_send_skb_on_dev(struct netpoll *np, struct sk_buff *skb,
314 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700316 int status = NETDEV_TX_BUSY;
317 unsigned long tries;
Stephen Hemminger00829822008-11-20 20:14:53 -0800318 const struct net_device_ops *ops = dev->netdev_ops;
Herbert Xude85d992010-06-10 16:12:44 +0000319 /* It is up to the caller to keep npinfo alive. */
Amerigo Wang28996562012-08-10 01:24:42 +0000320 struct netpoll_info *npinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Amerigo Wang28996562012-08-10 01:24:42 +0000322 WARN_ON_ONCE(!irqs_disabled());
323
324 npinfo = rcu_dereference_bh(np->dev->npinfo);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900325 if (!npinfo || !netif_running(dev) || !netif_device_present(dev)) {
326 __kfree_skb(skb);
327 return;
328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700330 /* don't get messages out of order, and no recursion */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700331 if (skb_queue_len(&npinfo->txq) == 0 && !netpoll_owner_active(dev)) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700332 struct netdev_queue *txq;
Andrew Mortona49f99f2006-12-11 17:24:46 -0800333
Amerigo Wang8c4c49d2012-09-17 20:16:31 +0000334 txq = netdev_pick_tx(dev, skb);
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700335
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700336 /* try until next clock tick */
337 for (tries = jiffies_to_usecs(1)/USEC_PER_POLL;
338 tries > 0; --tries) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700339 if (__netif_tx_trylock(txq)) {
Tom Herbert734664982011-11-28 16:32:44 +0000340 if (!netif_xmit_stopped(txq)) {
Amerigo Wang689971b2012-08-10 01:24:49 +0000341 if (vlan_tx_tag_present(skb) &&
342 !(netif_skb_features(skb) & NETIF_F_HW_VLAN_TX)) {
343 skb = __vlan_put_tag(skb, vlan_tx_tag_get(skb));
344 if (unlikely(!skb))
345 break;
346 skb->vlan_tci = 0;
347 }
348
Stephen Hemminger00829822008-11-20 20:14:53 -0800349 status = ops->ndo_start_xmit(skb, dev);
Eric Dumazet08baf562009-05-25 22:58:01 -0700350 if (status == NETDEV_TX_OK)
351 txq_trans_update(txq);
352 }
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700353 __netif_tx_unlock(txq);
Matt Mackallf0d34592005-08-11 19:25:11 -0700354
Andrew Mortone37b8d92006-12-09 14:01:49 -0800355 if (status == NETDEV_TX_OK)
356 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Andrew Mortone37b8d92006-12-09 14:01:49 -0800358 }
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700359
360 /* tickle device maybe there is some cleanup */
Joe Perches2a49e002011-06-30 15:08:58 +0000361 netpoll_poll_dev(np->dev);
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700362
363 udelay(USEC_PER_POLL);
Matt Mackall0db1d6f2005-08-11 19:25:54 -0700364 }
Dongdong Deng79b1bee2009-08-21 03:33:36 +0000365
366 WARN_ONCE(!irqs_disabled(),
Amerigo Wang28996562012-08-10 01:24:42 +0000367 "netpoll_send_skb_on_dev(): %s enabled interrupts in poll (%pF)\n",
Dongdong Deng79b1bee2009-08-21 03:33:36 +0000368 dev->name, ops->ndo_start_xmit);
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700372 if (status != NETDEV_TX_OK) {
Stephen Hemminger5de4a472006-10-26 15:46:55 -0700373 skb_queue_tail(&npinfo->txq, skb);
David Howells4c1ac1b2006-12-05 14:37:56 +0000374 schedule_delayed_work(&npinfo->tx_work,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
Neil Hormanc2355e12010-10-13 16:01:49 +0000377EXPORT_SYMBOL(netpoll_send_skb_on_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379void netpoll_send_udp(struct netpoll *np, const char *msg, int len)
380{
Eric Dumazet954fba02012-06-12 19:30:21 +0000381 int total_len, ip_len, udp_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 struct sk_buff *skb;
383 struct udphdr *udph;
384 struct iphdr *iph;
385 struct ethhdr *eth;
Eric Dumazetee130402012-08-24 01:47:26 +0000386 static atomic_t ip_ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 udp_len = len + sizeof(*udph);
Cong Wangb7394d22013-01-07 20:52:39 +0000389 if (!np->ipv6)
390 ip_len = udp_len + sizeof(*iph);
391
Eric Dumazet954fba02012-06-12 19:30:21 +0000392 total_len = ip_len + LL_RESERVED_SPACE(np->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Eric Dumazet954fba02012-06-12 19:30:21 +0000394 skb = find_skb(np, total_len + np->dev->needed_tailroom,
395 total_len - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (!skb)
397 return;
398
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300399 skb_copy_to_linear_data(skb, msg, len);
Eric Dumazet954fba02012-06-12 19:30:21 +0000400 skb_put(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300402 skb_push(skb, sizeof(*udph));
403 skb_reset_transport_header(skb);
404 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 udph->source = htons(np->local_port);
406 udph->dest = htons(np->remote_port);
407 udph->len = htons(udp_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Cong Wangb7394d22013-01-07 20:52:39 +0000409 if (!np->ipv6) {
410 udph->check = 0;
411 udph->check = csum_tcpudp_magic(np->local_ip.ip,
412 np->remote_ip.ip,
413 udp_len, IPPROTO_UDP,
414 csum_partial(udph, udp_len, 0));
415 if (udph->check == 0)
416 udph->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Cong Wangb7394d22013-01-07 20:52:39 +0000418 skb_push(skb, sizeof(*iph));
419 skb_reset_network_header(skb);
420 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Cong Wangb7394d22013-01-07 20:52:39 +0000422 /* 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 = htons(atomic_inc_return(&ip_ident));
427 iph->frag_off = 0;
428 iph->ttl = 64;
429 iph->protocol = IPPROTO_UDP;
430 iph->check = 0;
431 put_unaligned(np->local_ip.ip, &(iph->saddr));
432 put_unaligned(np->remote_ip.ip, &(iph->daddr));
433 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
434
435 eth = (struct ethhdr *) skb_push(skb, ETH_HLEN);
436 skb_reset_mac_header(skb);
437 skb->protocol = eth->h_proto = htons(ETH_P_IP);
438 }
439
Stephen Hemminger09538642007-11-19 19:23:29 -0800440 memcpy(eth->h_source, np->dev->dev_addr, ETH_ALEN);
441 memcpy(eth->h_dest, np->remote_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 skb->dev = np->dev;
444
445 netpoll_send_skb(np, skb);
446}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000447EXPORT_SYMBOL(netpoll_send_udp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Cong Wangb7394d22013-01-07 20:52:39 +0000449static void netpoll_neigh_reply(struct sk_buff *skb, struct netpoll_info *npinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 struct arphdr *arp;
452 unsigned char *arp_ptr;
453 int size, type = ARPOP_REPLY, ptype = ETH_P_ARP;
Al Viro252e33462006-11-14 20:48:11 -0800454 __be32 sip, tip;
Neil Horman47bbec02006-12-08 00:05:55 -0800455 unsigned char *sha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 struct sk_buff *send_skb;
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000457 struct netpoll *np, *tmp;
458 unsigned long flags;
Herbert Xuae641942011-11-18 02:20:04 +0000459 int hlen, tlen;
Cong Wangb7394d22013-01-07 20:52:39 +0000460 int hits = 0, proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000462 if (list_empty(&npinfo->rx_np))
463 return;
464
465 /* Before checking the packet, we do some early
466 inspection whether this is interesting at all */
467 spin_lock_irqsave(&npinfo->rx_lock, flags);
468 list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) {
469 if (np->dev == skb->dev)
470 hits++;
471 }
472 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
473
474 /* No netpoll struct is using this dev */
475 if (!hits)
Jeff Moyer115c1d62005-06-22 22:05:31 -0700476 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Cong Wangb7394d22013-01-07 20:52:39 +0000478 proto = ntohs(eth_hdr(skb)->h_proto);
479 if (proto == ETH_P_IP) {
480 /* No arp on this interface */
481 if (skb->dev->flags & IFF_NOARP)
482 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Cong Wangb7394d22013-01-07 20:52:39 +0000484 if (!pskb_may_pull(skb, arp_hdr_len(skb->dev)))
485 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Cong Wangb7394d22013-01-07 20:52:39 +0000487 skb_reset_network_header(skb);
488 skb_reset_transport_header(skb);
489 arp = arp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Cong Wangb7394d22013-01-07 20:52:39 +0000491 if ((arp->ar_hrd != htons(ARPHRD_ETHER) &&
492 arp->ar_hrd != htons(ARPHRD_IEEE802)) ||
493 arp->ar_pro != htons(ETH_P_IP) ||
494 arp->ar_op != htons(ARPOP_REQUEST))
495 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Cong Wangb7394d22013-01-07 20:52:39 +0000497 arp_ptr = (unsigned char *)(arp+1);
498 /* save the location of the src hw addr */
499 sha = arp_ptr;
500 arp_ptr += skb->dev->addr_len;
501 memcpy(&sip, arp_ptr, 4);
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000502 arp_ptr += 4;
Cong Wangb7394d22013-01-07 20:52:39 +0000503 /* If we actually cared about dst hw addr,
504 it would get copied here */
505 arp_ptr += skb->dev->addr_len;
506 memcpy(&tip, arp_ptr, 4);
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000507
Cong Wangb7394d22013-01-07 20:52:39 +0000508 /* Should we ignore arp? */
509 if (ipv4_is_loopback(tip) || ipv4_is_multicast(tip))
510 return;
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000511
Cong Wangb7394d22013-01-07 20:52:39 +0000512 size = arp_hdr_len(skb->dev);
513
514 spin_lock_irqsave(&npinfo->rx_lock, flags);
515 list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) {
516 if (tip != np->local_ip.ip)
517 continue;
518
519 hlen = LL_RESERVED_SPACE(np->dev);
520 tlen = np->dev->needed_tailroom;
521 send_skb = find_skb(np, size + hlen + tlen, hlen);
522 if (!send_skb)
523 continue;
524
525 skb_reset_network_header(send_skb);
526 arp = (struct arphdr *) skb_put(send_skb, size);
527 send_skb->dev = skb->dev;
528 send_skb->protocol = htons(ETH_P_ARP);
529
530 /* Fill the device header for the ARP frame */
531 if (dev_hard_header(send_skb, skb->dev, ptype,
532 sha, np->dev->dev_addr,
533 send_skb->len) < 0) {
534 kfree_skb(send_skb);
535 continue;
536 }
537
538 /*
539 * Fill out the arp protocol part.
540 *
541 * we only support ethernet device type,
542 * which (according to RFC 1390) should
543 * always equal 1 (Ethernet).
544 */
545
546 arp->ar_hrd = htons(np->dev->type);
547 arp->ar_pro = htons(ETH_P_IP);
548 arp->ar_hln = np->dev->addr_len;
549 arp->ar_pln = 4;
550 arp->ar_op = htons(type);
551
552 arp_ptr = (unsigned char *)(arp + 1);
553 memcpy(arp_ptr, np->dev->dev_addr, np->dev->addr_len);
554 arp_ptr += np->dev->addr_len;
555 memcpy(arp_ptr, &tip, 4);
556 arp_ptr += 4;
557 memcpy(arp_ptr, sha, np->dev->addr_len);
558 arp_ptr += np->dev->addr_len;
559 memcpy(arp_ptr, &sip, 4);
560
561 netpoll_send_skb(np, send_skb);
562
563 /* If there are several rx_hooks for the same address,
564 we're fine by sending a single reply */
565 break;
566 }
567 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
Amerigo Wang57c5d462012-08-10 01:24:40 +0000571int __netpoll_rx(struct sk_buff *skb, struct netpoll_info *npinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
573 int proto, len, ulen;
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000574 int hits = 0;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000575 const struct iphdr *iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 struct udphdr *uh;
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000577 struct netpoll *np, *tmp;
Neil Horman068c6e92006-06-26 00:04:27 -0700578
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000579 if (list_empty(&npinfo->rx_np))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 goto out;
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (skb->dev->type != ARPHRD_ETHER)
583 goto out;
584
David S. Millerd9452e92008-03-04 12:28:49 -0800585 /* check if netpoll clients need ARP */
YOSHIFUJI Hideaki724800d2007-03-25 20:13:04 -0700586 if (skb->protocol == htons(ETH_P_ARP) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 atomic_read(&trapped)) {
Cong Wangb7394d22013-01-07 20:52:39 +0000588 skb_queue_tail(&npinfo->neigh_tx, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return 1;
590 }
591
Amerigo Wang689971b2012-08-10 01:24:49 +0000592 if (skb->protocol == cpu_to_be16(ETH_P_8021Q)) {
593 skb = vlan_untag(skb);
594 if (unlikely(!skb))
595 goto out;
596 }
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 proto = ntohs(eth_hdr(skb)->h_proto);
Cong Wangb7394d22013-01-07 20:52:39 +0000599 if (proto != ETH_P_IP && proto != ETH_P_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 goto out;
601 if (skb->pkt_type == PACKET_OTHERHOST)
602 goto out;
603 if (skb_shared(skb))
604 goto out;
605
Cong Wangb7394d22013-01-07 20:52:39 +0000606 if (proto == ETH_P_IP) {
607 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
608 goto out;
609 iph = (struct iphdr *)skb->data;
610 if (iph->ihl < 5 || iph->version != 4)
611 goto out;
612 if (!pskb_may_pull(skb, iph->ihl*4))
613 goto out;
614 iph = (struct iphdr *)skb->data;
615 if (ip_fast_csum((u8 *)iph, iph->ihl) != 0)
616 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Cong Wangb7394d22013-01-07 20:52:39 +0000618 len = ntohs(iph->tot_len);
619 if (skb->len < len || len < iph->ihl*4)
620 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Cong Wangb7394d22013-01-07 20:52:39 +0000622 /*
623 * Our transport medium may have padded the buffer out.
624 * Now We trim to the true length of the frame.
625 */
626 if (pskb_trim_rcsum(skb, len))
627 goto out;
Aubrey.Li5e7d7fa2007-04-17 12:40:20 -0700628
Cong Wangb7394d22013-01-07 20:52:39 +0000629 iph = (struct iphdr *)skb->data;
630 if (iph->protocol != IPPROTO_UDP)
631 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Cong Wangb7394d22013-01-07 20:52:39 +0000633 len -= iph->ihl*4;
634 uh = (struct udphdr *)(((char *)iph) + iph->ihl*4);
635 ulen = ntohs(uh->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Cong Wangb7394d22013-01-07 20:52:39 +0000637 if (ulen != len)
638 goto out;
639 if (checksum_udp(skb, uh, ulen, iph->saddr, iph->daddr))
640 goto out;
641 list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) {
642 if (np->local_ip.ip && np->local_ip.ip != iph->daddr)
643 continue;
644 if (np->remote_ip.ip && np->remote_ip.ip != iph->saddr)
645 continue;
646 if (np->local_port && np->local_port != ntohs(uh->dest))
647 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Cong Wangb7394d22013-01-07 20:52:39 +0000649 np->rx_hook(np, ntohs(uh->source),
650 (char *)(uh+1),
651 ulen - sizeof(struct udphdr));
652 hits++;
653 }
Daniel Borkmann508e14b2010-01-12 14:27:30 +0000654 }
655
656 if (!hits)
657 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 kfree_skb(skb);
660 return 1;
661
662out:
663 if (atomic_read(&trapped)) {
664 kfree_skb(skb);
665 return 1;
666 }
667
668 return 0;
669}
670
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700671void netpoll_print_options(struct netpoll *np)
672{
Joe Perchese6ec269352012-01-29 15:50:43 +0000673 np_info(np, "local port %d\n", np->local_port);
Cong Wangb7394d22013-01-07 20:52:39 +0000674 if (!np->ipv6)
675 np_info(np, "local IPv4 address %pI4\n", &np->local_ip.ip);
Joe Perchese6ec269352012-01-29 15:50:43 +0000676 np_info(np, "interface '%s'\n", np->dev_name);
677 np_info(np, "remote port %d\n", np->remote_port);
Cong Wangb7394d22013-01-07 20:52:39 +0000678 if (!np->ipv6)
679 np_info(np, "remote IPv4 address %pI4\n", &np->remote_ip.ip);
Joe Perchese6ec269352012-01-29 15:50:43 +0000680 np_info(np, "remote ethernet address %pM\n", np->remote_mac);
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700681}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000682EXPORT_SYMBOL(netpoll_print_options);
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700683
Cong Wangb7394d22013-01-07 20:52:39 +0000684static int netpoll_parse_ip_addr(const char *str, union inet_addr *addr)
685{
686 const char *end;
687
688 if (!strchr(str, ':') &&
689 in4_pton(str, -1, (void *)addr, -1, &end) > 0) {
690 if (!*end)
691 return 0;
692 }
693 if (in6_pton(str, -1, addr->in6.s6_addr, -1, &end) > 0) {
694#if IS_ENABLED(CONFIG_IPV6)
695 if (!*end)
696 return 1;
697#else
698 return -1;
699#endif
700 }
701 return -1;
702}
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704int netpoll_parse_options(struct netpoll *np, char *opt)
705{
706 char *cur=opt, *delim;
Cong Wangb7394d22013-01-07 20:52:39 +0000707 int ipv6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
David S. Millerc68b9072006-11-14 20:40:49 -0800709 if (*cur != '@') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if ((delim = strchr(cur, '@')) == NULL)
711 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800712 *delim = 0;
Abhijit Pawar4b5511e2012-12-09 23:12:28 +0000713 if (kstrtou16(cur, 10, &np->local_port))
714 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800715 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
717 cur++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
David S. Millerc68b9072006-11-14 20:40:49 -0800719 if (*cur != '/') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if ((delim = strchr(cur, '/')) == NULL)
721 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800722 *delim = 0;
Cong Wangb7394d22013-01-07 20:52:39 +0000723 ipv6 = netpoll_parse_ip_addr(cur, &np->local_ip);
724 if (ipv6 < 0)
725 goto parse_failed;
726 else
727 np->ipv6 = (bool)ipv6;
David S. Millerc68b9072006-11-14 20:40:49 -0800728 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730 cur++;
731
David S. Millerc68b9072006-11-14 20:40:49 -0800732 if (*cur != ',') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 /* parse out dev name */
734 if ((delim = strchr(cur, ',')) == NULL)
735 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800736 *delim = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 strlcpy(np->dev_name, cur, sizeof(np->dev_name));
David S. Millerc68b9072006-11-14 20:40:49 -0800738 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
740 cur++;
741
David S. Millerc68b9072006-11-14 20:40:49 -0800742 if (*cur != '@') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 /* dst port */
744 if ((delim = strchr(cur, '@')) == NULL)
745 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800746 *delim = 0;
Amerigo Wang5fc05f82010-03-21 22:59:58 +0000747 if (*cur == ' ' || *cur == '\t')
Joe Perchese6ec269352012-01-29 15:50:43 +0000748 np_info(np, "warning: whitespace is not allowed\n");
Abhijit Pawar4b5511e2012-12-09 23:12:28 +0000749 if (kstrtou16(cur, 10, &np->remote_port))
750 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800751 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753 cur++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 /* dst ip */
756 if ((delim = strchr(cur, '/')) == NULL)
757 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800758 *delim = 0;
Cong Wangb7394d22013-01-07 20:52:39 +0000759 ipv6 = netpoll_parse_ip_addr(cur, &np->remote_ip);
760 if (ipv6 < 0)
761 goto parse_failed;
762 else if (np->ipv6 != (bool)ipv6)
763 goto parse_failed;
764 else
765 np->ipv6 = (bool)ipv6;
David S. Millerc68b9072006-11-14 20:40:49 -0800766 cur = delim + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
David S. Millerc68b9072006-11-14 20:40:49 -0800768 if (*cur != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 /* MAC address */
Alexey Dobriyan4940fc82011-05-07 23:00:07 +0000770 if (!mac_pton(cur, np->remote_mac))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 goto parse_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700774 netpoll_print_options(np);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 return 0;
777
778 parse_failed:
Joe Perchese6ec269352012-01-29 15:50:43 +0000779 np_info(np, "couldn't parse config at '%s'!\n", cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return -1;
781}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000782EXPORT_SYMBOL(netpoll_parse_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Amerigo Wang47be03a22012-08-10 01:24:37 +0000784int __netpoll_setup(struct netpoll *np, struct net_device *ndev, gfp_t gfp)
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000785{
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000786 struct netpoll_info *npinfo;
787 const struct net_device_ops *ops;
788 unsigned long flags;
789 int err;
790
Jiri Pirko30fdd8a02012-07-17 05:22:35 +0000791 np->dev = ndev;
792 strlcpy(np->dev_name, ndev->name, IFNAMSIZ);
793
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000794 if ((ndev->priv_flags & IFF_DISABLE_NETPOLL) ||
795 !ndev->netdev_ops->ndo_poll_controller) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000796 np_err(np, "%s doesn't support polling, aborting\n",
797 np->dev_name);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000798 err = -ENOTSUPP;
799 goto out;
800 }
801
802 if (!ndev->npinfo) {
Amerigo Wang47be03a22012-08-10 01:24:37 +0000803 npinfo = kmalloc(sizeof(*npinfo), gfp);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000804 if (!npinfo) {
805 err = -ENOMEM;
806 goto out;
807 }
808
809 npinfo->rx_flags = 0;
810 INIT_LIST_HEAD(&npinfo->rx_np);
811
812 spin_lock_init(&npinfo->rx_lock);
Cong Wangb7394d22013-01-07 20:52:39 +0000813 skb_queue_head_init(&npinfo->neigh_tx);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000814 skb_queue_head_init(&npinfo->txq);
815 INIT_DELAYED_WORK(&npinfo->tx_work, queue_process);
816
817 atomic_set(&npinfo->refcnt, 1);
818
819 ops = np->dev->netdev_ops;
820 if (ops->ndo_netpoll_setup) {
Amerigo Wang47be03a22012-08-10 01:24:37 +0000821 err = ops->ndo_netpoll_setup(ndev, npinfo, gfp);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000822 if (err)
823 goto free_npinfo;
824 }
825 } else {
826 npinfo = ndev->npinfo;
827 atomic_inc(&npinfo->refcnt);
828 }
829
830 npinfo->netpoll = np;
831
832 if (np->rx_hook) {
833 spin_lock_irqsave(&npinfo->rx_lock, flags);
834 npinfo->rx_flags |= NETPOLL_RX_ENABLED;
835 list_add_tail(&np->rx, &npinfo->rx_np);
836 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
837 }
838
839 /* last thing to do is link it to the net device structure */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000840 rcu_assign_pointer(ndev->npinfo, npinfo);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000841
842 return 0;
843
844free_npinfo:
845 kfree(npinfo);
846out:
847 return err;
848}
849EXPORT_SYMBOL_GPL(__netpoll_setup);
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851int netpoll_setup(struct netpoll *np)
852{
853 struct net_device *ndev = NULL;
854 struct in_device *in_dev;
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700855 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 if (np->dev_name)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700858 ndev = dev_get_by_name(&init_net, np->dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (!ndev) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000860 np_err(np, "%s doesn't exist, aborting\n", np->dev_name);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700861 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
863
Jiri Pirko49bd8fb2013-01-03 22:48:55 +0000864 if (netdev_master_upper_dev_get(ndev)) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000865 np_err(np, "%s is a slave device, aborting\n", np->dev_name);
Dan Carpenter83fe32d2011-06-11 18:55:22 -0700866 err = -EBUSY;
867 goto put;
WANG Cong0c1ad042011-06-09 00:28:13 -0700868 }
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (!netif_running(ndev)) {
871 unsigned long atmost, atleast;
872
Joe Perchese6ec269352012-01-29 15:50:43 +0000873 np_info(np, "device %s not up yet, forcing it\n", np->dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800875 rtnl_lock();
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700876 err = dev_open(ndev);
877 rtnl_unlock();
878
879 if (err) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000880 np_err(np, "failed to open %s\n", ndev->name);
Herbert Xudbaa1542010-06-10 16:12:46 +0000881 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 atleast = jiffies + HZ/10;
Anton Vorontsovbff38772009-07-08 11:10:56 -0700885 atmost = jiffies + carrier_timeout * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 while (!netif_carrier_ok(ndev)) {
887 if (time_after(jiffies, atmost)) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000888 np_notice(np, "timeout waiting for carrier\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 break;
890 }
Anton Vorontsov1b614fb2009-07-08 20:09:44 -0700891 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893
894 /* If carrier appears to come up instantly, we don't
895 * trust it and pause so that we don't pump all our
896 * queued console messages into the bitbucket.
897 */
898
899 if (time_before(jiffies, atleast)) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000900 np_notice(np, "carrier detect appears untrustworthy, waiting 4 seconds\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 msleep(4000);
902 }
903 }
904
Cong Wangb7394d22013-01-07 20:52:39 +0000905 if (!np->local_ip.ip) {
906 if (!np->ipv6) {
907 rcu_read_lock();
908 in_dev = __in_dev_get_rcu(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Cong Wangb7394d22013-01-07 20:52:39 +0000910
911 if (!in_dev || !in_dev->ifa_list) {
912 rcu_read_unlock();
913 np_err(np, "no IP address for %s, aborting\n",
914 np->dev_name);
915 err = -EDESTADDRREQ;
916 goto put;
917 }
918
919 np->local_ip.ip = in_dev->ifa_list->ifa_local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 rcu_read_unlock();
Cong Wangb7394d22013-01-07 20:52:39 +0000921 np_info(np, "local IP %pI4\n", &np->local_ip.ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
924
Herbert Xudbaa1542010-06-10 16:12:46 +0000925 /* fill up the skb queue */
926 refill_skbs();
927
928 rtnl_lock();
Amerigo Wang47be03a22012-08-10 01:24:37 +0000929 err = __netpoll_setup(np, ndev, GFP_KERNEL);
Herbert Xudbaa1542010-06-10 16:12:46 +0000930 rtnl_unlock();
Matt Mackall53fb95d2005-08-11 19:27:43 -0700931
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000932 if (err)
933 goto put;
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return 0;
936
Jiri Slaby21edbb22010-03-16 05:29:54 +0000937put:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 dev_put(ndev);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700939 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000941EXPORT_SYMBOL(netpoll_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
David S. Millerc68b9072006-11-14 20:40:49 -0800943static int __init netpoll_init(void)
944{
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800945 skb_queue_head_init(&skb_pool);
946 return 0;
947}
948core_initcall(netpoll_init);
949
Amerigo Wang38e6bc12012-08-10 01:24:38 +0000950static void rcu_cleanup_netpoll_info(struct rcu_head *rcu_head)
951{
952 struct netpoll_info *npinfo =
953 container_of(rcu_head, struct netpoll_info, rcu);
954
Cong Wangb7394d22013-01-07 20:52:39 +0000955 skb_queue_purge(&npinfo->neigh_tx);
Amerigo Wang38e6bc12012-08-10 01:24:38 +0000956 skb_queue_purge(&npinfo->txq);
957
958 /* we can't call cancel_delayed_work_sync here, as we are in softirq */
959 cancel_delayed_work(&npinfo->tx_work);
960
961 /* clean after last, unfinished work */
962 __skb_queue_purge(&npinfo->txq);
963 /* now cancel it again */
964 cancel_delayed_work(&npinfo->tx_work);
965 kfree(npinfo);
966}
967
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000968void __netpoll_cleanup(struct netpoll *np)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700970 struct netpoll_info *npinfo;
971 unsigned long flags;
972
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000973 npinfo = np->dev->npinfo;
974 if (!npinfo)
Herbert Xudbaa1542010-06-10 16:12:46 +0000975 return;
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700976
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000977 if (!list_empty(&npinfo->rx_np)) {
978 spin_lock_irqsave(&npinfo->rx_lock, flags);
979 list_del(&np->rx);
980 if (list_empty(&npinfo->rx_np))
981 npinfo->rx_flags &= ~NETPOLL_RX_ENABLED;
982 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
Jeff Moyer115c1d62005-06-22 22:05:31 -0700983 }
Herbert Xudbaa1542010-06-10 16:12:46 +0000984
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000985 if (atomic_dec_and_test(&npinfo->refcnt)) {
986 const struct net_device_ops *ops;
987
988 ops = np->dev->netdev_ops;
989 if (ops->ndo_netpoll_cleanup)
990 ops->ndo_netpoll_cleanup(np->dev);
991
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000992 RCU_INIT_POINTER(np->dev->npinfo, NULL);
Amerigo Wang38e6bc12012-08-10 01:24:38 +0000993 call_rcu_bh(&npinfo->rcu, rcu_cleanup_netpoll_info);
Herbert Xudbaa1542010-06-10 16:12:46 +0000994 }
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000995}
996EXPORT_SYMBOL_GPL(__netpoll_cleanup);
997
Amerigo Wang38e6bc12012-08-10 01:24:38 +0000998static void rcu_cleanup_netpoll(struct rcu_head *rcu_head)
999{
1000 struct netpoll *np = container_of(rcu_head, struct netpoll, rcu);
1001
1002 __netpoll_cleanup(np);
1003 kfree(np);
1004}
1005
1006void __netpoll_free_rcu(struct netpoll *np)
1007{
1008 call_rcu_bh(&np->rcu, rcu_cleanup_netpoll);
1009}
1010EXPORT_SYMBOL_GPL(__netpoll_free_rcu);
1011
Herbert Xu8fdd95e2010-06-10 16:12:48 +00001012void netpoll_cleanup(struct netpoll *np)
1013{
1014 if (!np->dev)
1015 return;
1016
1017 rtnl_lock();
1018 __netpoll_cleanup(np);
1019 rtnl_unlock();
Herbert Xudbaa1542010-06-10 16:12:46 +00001020
1021 dev_put(np->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 np->dev = NULL;
1023}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +00001024EXPORT_SYMBOL(netpoll_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026int netpoll_trap(void)
1027{
1028 return atomic_read(&trapped);
1029}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +00001030EXPORT_SYMBOL(netpoll_trap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032void netpoll_set_trap(int trap)
1033{
1034 if (trap)
1035 atomic_inc(&trapped);
1036 else
1037 atomic_dec(&trapped);
1038}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039EXPORT_SYMBOL(netpoll_set_trap);