Merge branch 'x86-x32-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / net / core / netpoll.c
CommitLineData
1da177e4
LT
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
e6ec2693
JP
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
bff38771 14#include <linux/moduleparam.h>
4cd5773a 15#include <linux/kernel.h>
1da177e4
LT
16#include <linux/netdevice.h>
17#include <linux/etherdevice.h>
18#include <linux/string.h>
14c85021 19#include <linux/if_arp.h>
1da177e4
LT
20#include <linux/inetdevice.h>
21#include <linux/inet.h>
22#include <linux/interrupt.h>
23#include <linux/netpoll.h>
24#include <linux/sched.h>
25#include <linux/delay.h>
26#include <linux/rcupdate.h>
27#include <linux/workqueue.h>
5a0e3ad6 28#include <linux/slab.h>
bc3b2d7f 29#include <linux/export.h>
689971b4 30#include <linux/if_vlan.h>
1da177e4
LT
31#include <net/tcp.h>
32#include <net/udp.h>
b3d936f3
CW
33#include <net/addrconf.h>
34#include <net/ndisc.h>
35#include <net/ip6_checksum.h>
1da177e4 36#include <asm/unaligned.h>
9cbc1cb8 37#include <trace/events/napi.h>
1da177e4
LT
38
39/*
40 * We maintain a small pool of fully-sized skbs, to make sure the
41 * message gets out even in extreme OOM situations.
42 */
43
44#define MAX_UDP_CHUNK 1460
45#define MAX_SKBS 32
1da177e4 46
a1bcfacd 47static struct sk_buff_head skb_pool;
1da177e4
LT
48
49static atomic_t trapped;
50
7f9421c2 51DEFINE_STATIC_SRCU(netpoll_srcu);
ca99ca14 52
2bdfe0ba 53#define USEC_PER_POLL 50
d9452e9f
DM
54#define NETPOLL_RX_ENABLED 1
55#define NETPOLL_RX_DROP 2
1da177e4 56
6f706245
JP
57#define MAX_SKB_SIZE \
58 (sizeof(struct ethhdr) + \
59 sizeof(struct iphdr) + \
60 sizeof(struct udphdr) + \
61 MAX_UDP_CHUNK)
1da177e4 62
3578b0c8 63static void zap_completion_queue(void);
b7394d24 64static void netpoll_neigh_reply(struct sk_buff *skb, struct netpoll_info *npinfo);
2cde6acd 65static void netpoll_async_cleanup(struct work_struct *work);
1da177e4 66
bff38771
AV
67static unsigned int carrier_timeout = 4;
68module_param(carrier_timeout, uint, 0644);
69
e6ec2693
JP
70#define np_info(np, fmt, ...) \
71 pr_info("%s: " fmt, np->name, ##__VA_ARGS__)
72#define np_err(np, fmt, ...) \
73 pr_err("%s: " fmt, np->name, ##__VA_ARGS__)
74#define np_notice(np, fmt, ...) \
75 pr_notice("%s: " fmt, np->name, ##__VA_ARGS__)
76
c4028958 77static void queue_process(struct work_struct *work)
1da177e4 78{
4c1ac1b4
DH
79 struct netpoll_info *npinfo =
80 container_of(work, struct netpoll_info, tx_work.work);
1da177e4 81 struct sk_buff *skb;
3640543d 82 unsigned long flags;
1da177e4 83
6c43ff18
SH
84 while ((skb = skb_dequeue(&npinfo->txq))) {
85 struct net_device *dev = skb->dev;
00829823 86 const struct net_device_ops *ops = dev->netdev_ops;
fd2ea0a7 87 struct netdev_queue *txq;
1da177e4 88
6c43ff18
SH
89 if (!netif_device_present(dev) || !netif_running(dev)) {
90 __kfree_skb(skb);
91 continue;
92 }
1da177e4 93
fd2ea0a7
DM
94 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
95
3640543d 96 local_irq_save(flags);
fd2ea0a7 97 __netif_tx_lock(txq, smp_processor_id());
73466498 98 if (netif_xmit_frozen_or_stopped(txq) ||
00829823 99 ops->ndo_start_xmit(skb, dev) != NETDEV_TX_OK) {
6c43ff18 100 skb_queue_head(&npinfo->txq, skb);
fd2ea0a7 101 __netif_tx_unlock(txq);
3640543d 102 local_irq_restore(flags);
1da177e4 103
25442caf 104 schedule_delayed_work(&npinfo->tx_work, HZ/10);
6c43ff18
SH
105 return;
106 }
fd2ea0a7 107 __netif_tx_unlock(txq);
3640543d 108 local_irq_restore(flags);
1da177e4 109 }
1da177e4
LT
110}
111
b51655b9
AV
112static __sum16 checksum_udp(struct sk_buff *skb, struct udphdr *uh,
113 unsigned short ulen, __be32 saddr, __be32 daddr)
1da177e4 114{
d6f5493c 115 __wsum psum;
fb286bb2 116
60476372 117 if (uh->check == 0 || skb_csum_unnecessary(skb))
1da177e4
LT
118 return 0;
119
fb286bb2
HX
120 psum = csum_tcpudp_nofold(saddr, daddr, ulen, IPPROTO_UDP, 0);
121
84fa7933 122 if (skb->ip_summed == CHECKSUM_COMPLETE &&
d3bc23e7 123 !csum_fold(csum_add(psum, skb->csum)))
fb286bb2 124 return 0;
1da177e4 125
fb286bb2 126 skb->csum = psum;
1da177e4 127
fb286bb2 128 return __skb_checksum_complete(skb);
1da177e4
LT
129}
130
131/*
132 * Check whether delayed processing was scheduled for our NIC. If so,
133 * we attempt to grab the poll lock and use ->poll() to pump the card.
134 * If this fails, either we've recursed in ->poll() or it's already
135 * running on another CPU.
136 *
137 * Note: we don't mask interrupts with this lock because we're using
138 * trylock here and interrupts are already disabled in the softirq
139 * case. Further, we test the poll_owner to avoid recursion on UP
140 * systems where the lock doesn't exist.
141 *
142 * In cases where there is bi-directional communications, reading only
143 * one message at a time can lead to packets being dropped by the
144 * network adapter, forcing superfluous retries and possibly timeouts.
145 * Thus, we set our budget to greater than 1.
146 */
0a7606c1
DM
147static int poll_one_napi(struct netpoll_info *npinfo,
148 struct napi_struct *napi, int budget)
149{
150 int work;
151
152 /* net_rx_action's ->poll() invocations and our's are
153 * synchronized by this test which is only made while
154 * holding the napi->poll_lock.
155 */
156 if (!test_bit(NAPI_STATE_SCHED, &napi->state))
157 return budget;
158
d9452e9f 159 npinfo->rx_flags |= NETPOLL_RX_DROP;
0a7606c1 160 atomic_inc(&trapped);
7b363e44 161 set_bit(NAPI_STATE_NPSVC, &napi->state);
0a7606c1
DM
162
163 work = napi->poll(napi, budget);
7d18f114 164 trace_napi_poll(napi);
0a7606c1 165
7b363e44 166 clear_bit(NAPI_STATE_NPSVC, &napi->state);
0a7606c1 167 atomic_dec(&trapped);
d9452e9f 168 npinfo->rx_flags &= ~NETPOLL_RX_DROP;
0a7606c1
DM
169
170 return budget - work;
171}
172
5106930b 173static void poll_napi(struct net_device *dev)
1da177e4 174{
bea3348e 175 struct napi_struct *napi;
1da177e4
LT
176 int budget = 16;
177
f13d493d 178 list_for_each_entry(napi, &dev->napi_list, dev_list) {
0a7606c1 179 if (napi->poll_owner != smp_processor_id() &&
bea3348e 180 spin_trylock(&napi->poll_lock)) {
2899656b
AW
181 budget = poll_one_napi(rcu_dereference_bh(dev->npinfo),
182 napi, budget);
bea3348e 183 spin_unlock(&napi->poll_lock);
0a7606c1 184
072a9c48 185 if (!budget)
0a7606c1 186 break;
bea3348e 187 }
1da177e4
LT
188 }
189}
190
b7394d24 191static void service_neigh_queue(struct netpoll_info *npi)
068c6e98 192{
5106930b
SH
193 if (npi) {
194 struct sk_buff *skb;
068c6e98 195
b7394d24
CW
196 while ((skb = skb_dequeue(&npi->neigh_tx)))
197 netpoll_neigh_reply(skb, npi);
068c6e98 198 }
068c6e98
NH
199}
200
234b921d 201static void netpoll_poll_dev(struct net_device *dev)
1da177e4 202{
5e392739 203 const struct net_device_ops *ops;
2899656b 204 struct netpoll_info *ni = rcu_dereference_bh(dev->npinfo);
5106930b 205
ca99ca14
NH
206 /* Don't do any rx activity if the dev_lock mutex is held
207 * the dev_open/close paths use this to block netpoll activity
208 * while changing device state
209 */
a3dbbc2b 210 if (down_trylock(&ni->dev_lock))
ca99ca14
NH
211 return;
212
959d5fde 213 if (!netif_running(dev)) {
bd7c4b60 214 up(&ni->dev_lock);
5e392739 215 return;
959d5fde 216 }
5e392739
PE
217
218 ops = dev->netdev_ops;
959d5fde 219 if (!ops->ndo_poll_controller) {
bd7c4b60 220 up(&ni->dev_lock);
1da177e4 221 return;
959d5fde 222 }
1da177e4
LT
223
224 /* Process pending work on NIC */
d314774c 225 ops->ndo_poll_controller(dev);
5106930b
SH
226
227 poll_napi(dev);
1da177e4 228
bd7c4b60 229 up(&ni->dev_lock);
ca99ca14 230
58e05f35 231 if (dev->flags & IFF_SLAVE) {
2899656b 232 if (ni) {
49bd8fb0 233 struct net_device *bond_dev;
5a698af5 234 struct sk_buff *skb;
49bd8fb0
JP
235 struct netpoll_info *bond_ni;
236
237 bond_dev = netdev_master_upper_dev_get_rcu(dev);
238 bond_ni = rcu_dereference_bh(bond_dev->npinfo);
b7394d24 239 while ((skb = skb_dequeue(&ni->neigh_tx))) {
5a698af5 240 skb->dev = bond_dev;
b7394d24 241 skb_queue_tail(&bond_ni->neigh_tx, skb);
5a698af5
AW
242 }
243 }
244 }
245
b7394d24 246 service_neigh_queue(ni);
068c6e98 247
3578b0c8 248 zap_completion_queue();
1da177e4
LT
249}
250
da6e378b 251void netpoll_rx_disable(struct net_device *dev)
ca99ca14
NH
252{
253 struct netpoll_info *ni;
254 int idx;
255 might_sleep();
256 idx = srcu_read_lock(&netpoll_srcu);
257 ni = srcu_dereference(dev->npinfo, &netpoll_srcu);
258 if (ni)
bd7c4b60 259 down(&ni->dev_lock);
ca99ca14 260 srcu_read_unlock(&netpoll_srcu, idx);
ca99ca14
NH
261}
262EXPORT_SYMBOL(netpoll_rx_disable);
263
264void netpoll_rx_enable(struct net_device *dev)
265{
266 struct netpoll_info *ni;
267 rcu_read_lock();
268 ni = rcu_dereference(dev->npinfo);
269 if (ni)
bd7c4b60 270 up(&ni->dev_lock);
ca99ca14
NH
271 rcu_read_unlock();
272}
273EXPORT_SYMBOL(netpoll_rx_enable);
274
1da177e4
LT
275static void refill_skbs(void)
276{
277 struct sk_buff *skb;
278 unsigned long flags;
279
a1bcfacd
SH
280 spin_lock_irqsave(&skb_pool.lock, flags);
281 while (skb_pool.qlen < MAX_SKBS) {
1da177e4
LT
282 skb = alloc_skb(MAX_SKB_SIZE, GFP_ATOMIC);
283 if (!skb)
284 break;
285
a1bcfacd 286 __skb_queue_tail(&skb_pool, skb);
1da177e4 287 }
a1bcfacd 288 spin_unlock_irqrestore(&skb_pool.lock, flags);
1da177e4
LT
289}
290
3578b0c8
DM
291static void zap_completion_queue(void)
292{
293 unsigned long flags;
294 struct softnet_data *sd = &get_cpu_var(softnet_data);
295
296 if (sd->completion_queue) {
297 struct sk_buff *clist;
298
299 local_irq_save(flags);
300 clist = sd->completion_queue;
301 sd->completion_queue = NULL;
302 local_irq_restore(flags);
303
304 while (clist != NULL) {
305 struct sk_buff *skb = clist;
306 clist = clist->next;
307 if (skb->destructor) {
308 atomic_inc(&skb->users);
309 dev_kfree_skb_any(skb); /* put this one back */
310 } else {
311 __kfree_skb(skb);
312 }
313 }
314 }
315
316 put_cpu_var(softnet_data);
317}
318
a1bcfacd 319static struct sk_buff *find_skb(struct netpoll *np, int len, int reserve)
1da177e4 320{
a1bcfacd
SH
321 int count = 0;
322 struct sk_buff *skb;
1da177e4 323
3578b0c8 324 zap_completion_queue();
a1bcfacd 325 refill_skbs();
1da177e4 326repeat:
1da177e4
LT
327
328 skb = alloc_skb(len, GFP_ATOMIC);
a1bcfacd
SH
329 if (!skb)
330 skb = skb_dequeue(&skb_pool);
1da177e4
LT
331
332 if (!skb) {
a1bcfacd 333 if (++count < 10) {
2a49e001 334 netpoll_poll_dev(np->dev);
a1bcfacd 335 goto repeat;
1da177e4 336 }
a1bcfacd 337 return NULL;
1da177e4
LT
338 }
339
340 atomic_set(&skb->users, 1);
341 skb_reserve(skb, reserve);
342 return skb;
343}
344
bea3348e
SH
345static int netpoll_owner_active(struct net_device *dev)
346{
347 struct napi_struct *napi;
348
349 list_for_each_entry(napi, &dev->napi_list, dev_list) {
350 if (napi->poll_owner == smp_processor_id())
351 return 1;
352 }
353 return 0;
354}
355
2899656b 356/* call with IRQ disabled */
c2355e1a
NH
357void netpoll_send_skb_on_dev(struct netpoll *np, struct sk_buff *skb,
358 struct net_device *dev)
1da177e4 359{
2bdfe0ba
SH
360 int status = NETDEV_TX_BUSY;
361 unsigned long tries;
00829823 362 const struct net_device_ops *ops = dev->netdev_ops;
de85d99e 363 /* It is up to the caller to keep npinfo alive. */
2899656b 364 struct netpoll_info *npinfo;
2bdfe0ba 365
2899656b
AW
366 WARN_ON_ONCE(!irqs_disabled());
367
368 npinfo = rcu_dereference_bh(np->dev->npinfo);
4ec93edb
YH
369 if (!npinfo || !netif_running(dev) || !netif_device_present(dev)) {
370 __kfree_skb(skb);
371 return;
372 }
2bdfe0ba
SH
373
374 /* don't get messages out of order, and no recursion */
bea3348e 375 if (skb_queue_len(&npinfo->txq) == 0 && !netpoll_owner_active(dev)) {
fd2ea0a7 376 struct netdev_queue *txq;
a49f99ff 377
f663dd9a 378 txq = netdev_pick_tx(dev, skb, NULL);
fd2ea0a7 379
0db3dc73
SH
380 /* try until next clock tick */
381 for (tries = jiffies_to_usecs(1)/USEC_PER_POLL;
382 tries > 0; --tries) {
fd2ea0a7 383 if (__netif_tx_trylock(txq)) {
73466498 384 if (!netif_xmit_stopped(txq)) {
689971b4 385 if (vlan_tx_tag_present(skb) &&
86a9bad3
PM
386 !vlan_hw_offload_capable(netif_skb_features(skb),
387 skb->vlan_proto)) {
388 skb = __vlan_put_tag(skb, skb->vlan_proto, vlan_tx_tag_get(skb));
aca5f58f
DM
389 if (unlikely(!skb)) {
390 /* This is actually a packet drop, but we
391 * don't want the code at the end of this
392 * function to try and re-queue a NULL skb.
393 */
394 status = NETDEV_TX_OK;
395 goto unlock_txq;
396 }
689971b4
AW
397 skb->vlan_tci = 0;
398 }
399
00829823 400 status = ops->ndo_start_xmit(skb, dev);
08baf561
ED
401 if (status == NETDEV_TX_OK)
402 txq_trans_update(txq);
403 }
aca5f58f 404 unlock_txq:
fd2ea0a7 405 __netif_tx_unlock(txq);
e37b8d93
AM
406
407 if (status == NETDEV_TX_OK)
408 break;
409
e37b8d93 410 }
0db3dc73
SH
411
412 /* tickle device maybe there is some cleanup */
2a49e001 413 netpoll_poll_dev(np->dev);
0db3dc73
SH
414
415 udelay(USEC_PER_POLL);
0db1d6fc 416 }
79b1bee8
DD
417
418 WARN_ONCE(!irqs_disabled(),
2899656b 419 "netpoll_send_skb_on_dev(): %s enabled interrupts in poll (%pF)\n",
79b1bee8
DD
420 dev->name, ops->ndo_start_xmit);
421
1da177e4 422 }
1da177e4 423
2bdfe0ba 424 if (status != NETDEV_TX_OK) {
5de4a473 425 skb_queue_tail(&npinfo->txq, skb);
4c1ac1b4 426 schedule_delayed_work(&npinfo->tx_work,0);
1da177e4 427 }
1da177e4 428}
c2355e1a 429EXPORT_SYMBOL(netpoll_send_skb_on_dev);
1da177e4
LT
430
431void netpoll_send_udp(struct netpoll *np, const char *msg, int len)
432{
954fba02 433 int total_len, ip_len, udp_len;
1da177e4
LT
434 struct sk_buff *skb;
435 struct udphdr *udph;
436 struct iphdr *iph;
437 struct ethhdr *eth;
ee130409 438 static atomic_t ip_ident;
b3d936f3 439 struct ipv6hdr *ip6h;
1da177e4
LT
440
441 udp_len = len + sizeof(*udph);
b3d936f3
CW
442 if (np->ipv6)
443 ip_len = udp_len + sizeof(*ip6h);
444 else
b7394d24
CW
445 ip_len = udp_len + sizeof(*iph);
446
954fba02 447 total_len = ip_len + LL_RESERVED_SPACE(np->dev);
1da177e4 448
954fba02
ED
449 skb = find_skb(np, total_len + np->dev->needed_tailroom,
450 total_len - len);
1da177e4
LT
451 if (!skb)
452 return;
453
27d7ff46 454 skb_copy_to_linear_data(skb, msg, len);
954fba02 455 skb_put(skb, len);
1da177e4 456
4bedb452
ACM
457 skb_push(skb, sizeof(*udph));
458 skb_reset_transport_header(skb);
459 udph = udp_hdr(skb);
1da177e4
LT
460 udph->source = htons(np->local_port);
461 udph->dest = htons(np->remote_port);
462 udph->len = htons(udp_len);
b7394d24 463
b3d936f3
CW
464 if (np->ipv6) {
465 udph->check = 0;
466 udph->check = csum_ipv6_magic(&np->local_ip.in6,
467 &np->remote_ip.in6,
468 udp_len, IPPROTO_UDP,
469 csum_partial(udph, udp_len, 0));
470 if (udph->check == 0)
471 udph->check = CSUM_MANGLED_0;
472
473 skb_push(skb, sizeof(*ip6h));
474 skb_reset_network_header(skb);
475 ip6h = ipv6_hdr(skb);
476
477 /* ip6h->version = 6; ip6h->priority = 0; */
478 put_unaligned(0x60, (unsigned char *)ip6h);
479 ip6h->flow_lbl[0] = 0;
480 ip6h->flow_lbl[1] = 0;
481 ip6h->flow_lbl[2] = 0;
482
483 ip6h->payload_len = htons(sizeof(struct udphdr) + len);
484 ip6h->nexthdr = IPPROTO_UDP;
485 ip6h->hop_limit = 32;
486 ip6h->saddr = np->local_ip.in6;
487 ip6h->daddr = np->remote_ip.in6;
488
489 eth = (struct ethhdr *) skb_push(skb, ETH_HLEN);
490 skb_reset_mac_header(skb);
491 skb->protocol = eth->h_proto = htons(ETH_P_IPV6);
492 } else {
b7394d24
CW
493 udph->check = 0;
494 udph->check = csum_tcpudp_magic(np->local_ip.ip,
495 np->remote_ip.ip,
496 udp_len, IPPROTO_UDP,
497 csum_partial(udph, udp_len, 0));
498 if (udph->check == 0)
499 udph->check = CSUM_MANGLED_0;
500
501 skb_push(skb, sizeof(*iph));
502 skb_reset_network_header(skb);
503 iph = ip_hdr(skb);
504
505 /* iph->version = 4; iph->ihl = 5; */
506 put_unaligned(0x45, (unsigned char *)iph);
507 iph->tos = 0;
508 put_unaligned(htons(ip_len), &(iph->tot_len));
509 iph->id = htons(atomic_inc_return(&ip_ident));
510 iph->frag_off = 0;
511 iph->ttl = 64;
512 iph->protocol = IPPROTO_UDP;
513 iph->check = 0;
514 put_unaligned(np->local_ip.ip, &(iph->saddr));
515 put_unaligned(np->remote_ip.ip, &(iph->daddr));
516 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
517
518 eth = (struct ethhdr *) skb_push(skb, ETH_HLEN);
519 skb_reset_mac_header(skb);
520 skb->protocol = eth->h_proto = htons(ETH_P_IP);
521 }
522
c62326ab
JP
523 ether_addr_copy(eth->h_source, np->dev->dev_addr);
524 ether_addr_copy(eth->h_dest, np->remote_mac);
1da177e4
LT
525
526 skb->dev = np->dev;
527
528 netpoll_send_skb(np, skb);
529}
9e34a5b5 530EXPORT_SYMBOL(netpoll_send_udp);
1da177e4 531
b7394d24 532static void netpoll_neigh_reply(struct sk_buff *skb, struct netpoll_info *npinfo)
1da177e4 533{
b3d936f3 534 int size, type = ARPOP_REPLY;
252e3346 535 __be32 sip, tip;
47bbec02 536 unsigned char *sha;
1da177e4 537 struct sk_buff *send_skb;
508e14b4
DB
538 struct netpoll *np, *tmp;
539 unsigned long flags;
ae641949 540 int hlen, tlen;
b7394d24 541 int hits = 0, proto;
508e14b4
DB
542
543 if (list_empty(&npinfo->rx_np))
544 return;
545
546 /* Before checking the packet, we do some early
547 inspection whether this is interesting at all */
548 spin_lock_irqsave(&npinfo->rx_lock, flags);
549 list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) {
550 if (np->dev == skb->dev)
551 hits++;
552 }
553 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
1da177e4 554
508e14b4
DB
555 /* No netpoll struct is using this dev */
556 if (!hits)
115c1d6e 557 return;
1da177e4 558
b7394d24 559 proto = ntohs(eth_hdr(skb)->h_proto);
b0dd663b 560 if (proto == ETH_P_ARP) {
b3d936f3
CW
561 struct arphdr *arp;
562 unsigned char *arp_ptr;
b7394d24
CW
563 /* No arp on this interface */
564 if (skb->dev->flags & IFF_NOARP)
565 return;
1da177e4 566
b7394d24
CW
567 if (!pskb_may_pull(skb, arp_hdr_len(skb->dev)))
568 return;
1da177e4 569
b7394d24
CW
570 skb_reset_network_header(skb);
571 skb_reset_transport_header(skb);
572 arp = arp_hdr(skb);
1da177e4 573
b7394d24
CW
574 if ((arp->ar_hrd != htons(ARPHRD_ETHER) &&
575 arp->ar_hrd != htons(ARPHRD_IEEE802)) ||
576 arp->ar_pro != htons(ETH_P_IP) ||
577 arp->ar_op != htons(ARPOP_REQUEST))
578 return;
1da177e4 579
b7394d24
CW
580 arp_ptr = (unsigned char *)(arp+1);
581 /* save the location of the src hw addr */
582 sha = arp_ptr;
583 arp_ptr += skb->dev->addr_len;
584 memcpy(&sip, arp_ptr, 4);
585 arp_ptr += 4;
586 /* If we actually cared about dst hw addr,
587 it would get copied here */
588 arp_ptr += skb->dev->addr_len;
589 memcpy(&tip, arp_ptr, 4);
1da177e4 590
b7394d24
CW
591 /* Should we ignore arp? */
592 if (ipv4_is_loopback(tip) || ipv4_is_multicast(tip))
593 return;
1da177e4 594
b7394d24 595 size = arp_hdr_len(skb->dev);
1da177e4 596
b7394d24
CW
597 spin_lock_irqsave(&npinfo->rx_lock, flags);
598 list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) {
599 if (tip != np->local_ip.ip)
600 continue;
601
602 hlen = LL_RESERVED_SPACE(np->dev);
603 tlen = np->dev->needed_tailroom;
604 send_skb = find_skb(np, size + hlen + tlen, hlen);
605 if (!send_skb)
606 continue;
607
608 skb_reset_network_header(send_skb);
609 arp = (struct arphdr *) skb_put(send_skb, size);
610 send_skb->dev = skb->dev;
611 send_skb->protocol = htons(ETH_P_ARP);
612
613 /* Fill the device header for the ARP frame */
b3d936f3 614 if (dev_hard_header(send_skb, skb->dev, ETH_P_ARP,
b7394d24
CW
615 sha, np->dev->dev_addr,
616 send_skb->len) < 0) {
617 kfree_skb(send_skb);
618 continue;
619 }
1da177e4 620
b7394d24
CW
621 /*
622 * Fill out the arp protocol part.
623 *
624 * we only support ethernet device type,
625 * which (according to RFC 1390) should
626 * always equal 1 (Ethernet).
627 */
628
629 arp->ar_hrd = htons(np->dev->type);
630 arp->ar_pro = htons(ETH_P_IP);
631 arp->ar_hln = np->dev->addr_len;
632 arp->ar_pln = 4;
633 arp->ar_op = htons(type);
634
635 arp_ptr = (unsigned char *)(arp + 1);
636 memcpy(arp_ptr, np->dev->dev_addr, np->dev->addr_len);
637 arp_ptr += np->dev->addr_len;
638 memcpy(arp_ptr, &tip, 4);
639 arp_ptr += 4;
640 memcpy(arp_ptr, sha, np->dev->addr_len);
641 arp_ptr += np->dev->addr_len;
642 memcpy(arp_ptr, &sip, 4);
643
644 netpoll_send_skb(np, send_skb);
645
8fb479a4
AQ
646 /* If there are several rx_skb_hooks for the same
647 * address we're fine by sending a single reply
648 */
b7394d24 649 break;
508e14b4 650 }
b7394d24 651 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
b3d936f3
CW
652 } else if( proto == ETH_P_IPV6) {
653#if IS_ENABLED(CONFIG_IPV6)
654 struct nd_msg *msg;
655 u8 *lladdr = NULL;
656 struct ipv6hdr *hdr;
657 struct icmp6hdr *icmp6h;
658 const struct in6_addr *saddr;
659 const struct in6_addr *daddr;
660 struct inet6_dev *in6_dev = NULL;
661 struct in6_addr *target;
662
663 in6_dev = in6_dev_get(skb->dev);
664 if (!in6_dev || !in6_dev->cnf.accept_ra)
665 return;
666
667 if (!pskb_may_pull(skb, skb->len))
668 return;
669
670 msg = (struct nd_msg *)skb_transport_header(skb);
671
672 __skb_push(skb, skb->data - skb_transport_header(skb));
673
674 if (ipv6_hdr(skb)->hop_limit != 255)
675 return;
676 if (msg->icmph.icmp6_code != 0)
677 return;
678 if (msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION)
679 return;
680
681 saddr = &ipv6_hdr(skb)->saddr;
682 daddr = &ipv6_hdr(skb)->daddr;
683
684 size = sizeof(struct icmp6hdr) + sizeof(struct in6_addr);
685
686 spin_lock_irqsave(&npinfo->rx_lock, flags);
687 list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) {
faeed828 688 if (!ipv6_addr_equal(daddr, &np->local_ip.in6))
b3d936f3
CW
689 continue;
690
691 hlen = LL_RESERVED_SPACE(np->dev);
692 tlen = np->dev->needed_tailroom;
693 send_skb = find_skb(np, size + hlen + tlen, hlen);
694 if (!send_skb)
695 continue;
696
697 send_skb->protocol = htons(ETH_P_IPV6);
698 send_skb->dev = skb->dev;
699
700 skb_reset_network_header(send_skb);
00f97da1 701 hdr = (struct ipv6hdr *) skb_put(send_skb, sizeof(struct ipv6hdr));
b3d936f3 702 *(__be32*)hdr = htonl(0x60000000);
b3d936f3
CW
703 hdr->payload_len = htons(size);
704 hdr->nexthdr = IPPROTO_ICMPV6;
705 hdr->hop_limit = 255;
706 hdr->saddr = *saddr;
707 hdr->daddr = *daddr;
708
00f97da1 709 icmp6h = (struct icmp6hdr *) skb_put(send_skb, sizeof(struct icmp6hdr));
b3d936f3
CW
710 icmp6h->icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
711 icmp6h->icmp6_router = 0;
712 icmp6h->icmp6_solicited = 1;
00f97da1
AW
713
714 target = (struct in6_addr *) skb_put(send_skb, sizeof(struct in6_addr));
b3d936f3
CW
715 *target = msg->target;
716 icmp6h->icmp6_cksum = csum_ipv6_magic(saddr, daddr, size,
717 IPPROTO_ICMPV6,
718 csum_partial(icmp6h,
719 size, 0));
720
721 if (dev_hard_header(send_skb, skb->dev, ETH_P_IPV6,
722 lladdr, np->dev->dev_addr,
723 send_skb->len) < 0) {
724 kfree_skb(send_skb);
725 continue;
726 }
727
728 netpoll_send_skb(np, send_skb);
729
8fb479a4
AQ
730 /* If there are several rx_skb_hooks for the same
731 * address, we're fine by sending a single reply
732 */
b3d936f3
CW
733 break;
734 }
735 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
736#endif
508e14b4 737 }
1da177e4
LT
738}
739
b3d936f3
CW
740static bool pkt_is_ns(struct sk_buff *skb)
741{
742 struct nd_msg *msg;
743 struct ipv6hdr *hdr;
744
745 if (skb->protocol != htons(ETH_P_ARP))
746 return false;
747 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr) + sizeof(struct nd_msg)))
748 return false;
749
750 msg = (struct nd_msg *)skb_transport_header(skb);
751 __skb_push(skb, skb->data - skb_transport_header(skb));
752 hdr = ipv6_hdr(skb);
753
754 if (hdr->nexthdr != IPPROTO_ICMPV6)
755 return false;
756 if (hdr->hop_limit != 255)
757 return false;
758 if (msg->icmph.icmp6_code != 0)
759 return false;
760 if (msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION)
761 return false;
762
763 return true;
764}
765
57c5d461 766int __netpoll_rx(struct sk_buff *skb, struct netpoll_info *npinfo)
1da177e4 767{
8fb479a4
AQ
768 int proto, len, ulen, data_len;
769 int hits = 0, offset;
b71d1d42 770 const struct iphdr *iph;
1da177e4 771 struct udphdr *uh;
508e14b4 772 struct netpoll *np, *tmp;
8fb479a4 773 uint16_t source;
068c6e98 774
508e14b4 775 if (list_empty(&npinfo->rx_np))
1da177e4 776 goto out;
508e14b4 777
1da177e4
LT
778 if (skb->dev->type != ARPHRD_ETHER)
779 goto out;
780
d9452e9f 781 /* check if netpoll clients need ARP */
b3d936f3
CW
782 if (skb->protocol == htons(ETH_P_ARP) && atomic_read(&trapped)) {
783 skb_queue_tail(&npinfo->neigh_tx, skb);
784 return 1;
785 } else if (pkt_is_ns(skb) && atomic_read(&trapped)) {
b7394d24 786 skb_queue_tail(&npinfo->neigh_tx, skb);
1da177e4
LT
787 return 1;
788 }
789
689971b4
AW
790 if (skb->protocol == cpu_to_be16(ETH_P_8021Q)) {
791 skb = vlan_untag(skb);
792 if (unlikely(!skb))
793 goto out;
794 }
795
1da177e4 796 proto = ntohs(eth_hdr(skb)->h_proto);
b7394d24 797 if (proto != ETH_P_IP && proto != ETH_P_IPV6)
1da177e4
LT
798 goto out;
799 if (skb->pkt_type == PACKET_OTHERHOST)
800 goto out;
801 if (skb_shared(skb))
802 goto out;
803
b7394d24
CW
804 if (proto == ETH_P_IP) {
805 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
806 goto out;
807 iph = (struct iphdr *)skb->data;
808 if (iph->ihl < 5 || iph->version != 4)
809 goto out;
810 if (!pskb_may_pull(skb, iph->ihl*4))
811 goto out;
812 iph = (struct iphdr *)skb->data;
813 if (ip_fast_csum((u8 *)iph, iph->ihl) != 0)
814 goto out;
5e7d7fa5 815
b7394d24
CW
816 len = ntohs(iph->tot_len);
817 if (skb->len < len || len < iph->ihl*4)
818 goto out;
1da177e4 819
b7394d24
CW
820 /*
821 * Our transport medium may have padded the buffer out.
822 * Now We trim to the true length of the frame.
823 */
824 if (pskb_trim_rcsum(skb, len))
825 goto out;
1da177e4 826
b7394d24
CW
827 iph = (struct iphdr *)skb->data;
828 if (iph->protocol != IPPROTO_UDP)
829 goto out;
1da177e4 830
b7394d24
CW
831 len -= iph->ihl*4;
832 uh = (struct udphdr *)(((char *)iph) + iph->ihl*4);
8fb479a4 833 offset = (unsigned char *)(uh + 1) - skb->data;
b7394d24 834 ulen = ntohs(uh->len);
8fb479a4
AQ
835 data_len = skb->len - offset;
836 source = ntohs(uh->source);
508e14b4 837
b7394d24
CW
838 if (ulen != len)
839 goto out;
840 if (checksum_udp(skb, uh, ulen, iph->saddr, iph->daddr))
841 goto out;
842 list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) {
843 if (np->local_ip.ip && np->local_ip.ip != iph->daddr)
844 continue;
845 if (np->remote_ip.ip && np->remote_ip.ip != iph->saddr)
846 continue;
847 if (np->local_port && np->local_port != ntohs(uh->dest))
848 continue;
849
8fb479a4 850 np->rx_skb_hook(np, source, skb, offset, data_len);
b7394d24
CW
851 hits++;
852 }
b3d936f3
CW
853 } else {
854#if IS_ENABLED(CONFIG_IPV6)
855 const struct ipv6hdr *ip6h;
856
857 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
858 goto out;
859 ip6h = (struct ipv6hdr *)skb->data;
860 if (ip6h->version != 6)
861 goto out;
862 len = ntohs(ip6h->payload_len);
863 if (!len)
864 goto out;
865 if (len + sizeof(struct ipv6hdr) > skb->len)
866 goto out;
867 if (pskb_trim_rcsum(skb, len + sizeof(struct ipv6hdr)))
868 goto out;
869 ip6h = ipv6_hdr(skb);
870 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
871 goto out;
872 uh = udp_hdr(skb);
8fb479a4 873 offset = (unsigned char *)(uh + 1) - skb->data;
b3d936f3 874 ulen = ntohs(uh->len);
8fb479a4
AQ
875 data_len = skb->len - offset;
876 source = ntohs(uh->source);
b3d936f3
CW
877 if (ulen != skb->len)
878 goto out;
879 if (udp6_csum_init(skb, uh, IPPROTO_UDP))
880 goto out;
881 list_for_each_entry_safe(np, tmp, &npinfo->rx_np, rx) {
faeed828 882 if (!ipv6_addr_equal(&np->local_ip.in6, &ip6h->daddr))
b3d936f3 883 continue;
faeed828 884 if (!ipv6_addr_equal(&np->remote_ip.in6, &ip6h->saddr))
b3d936f3
CW
885 continue;
886 if (np->local_port && np->local_port != ntohs(uh->dest))
887 continue;
888
8fb479a4 889 np->rx_skb_hook(np, source, skb, offset, data_len);
b3d936f3
CW
890 hits++;
891 }
892#endif
508e14b4
DB
893 }
894
895 if (!hits)
896 goto out;
1da177e4
LT
897
898 kfree_skb(skb);
899 return 1;
900
901out:
902 if (atomic_read(&trapped)) {
903 kfree_skb(skb);
904 return 1;
905 }
906
907 return 0;
908}
909
0bcc1816
SS
910void netpoll_print_options(struct netpoll *np)
911{
e6ec2693 912 np_info(np, "local port %d\n", np->local_port);
b3d936f3
CW
913 if (np->ipv6)
914 np_info(np, "local IPv6 address %pI6c\n", &np->local_ip.in6);
915 else
b7394d24 916 np_info(np, "local IPv4 address %pI4\n", &np->local_ip.ip);
e6ec2693
JP
917 np_info(np, "interface '%s'\n", np->dev_name);
918 np_info(np, "remote port %d\n", np->remote_port);
b3d936f3
CW
919 if (np->ipv6)
920 np_info(np, "remote IPv6 address %pI6c\n", &np->remote_ip.in6);
921 else
b7394d24 922 np_info(np, "remote IPv4 address %pI4\n", &np->remote_ip.ip);
e6ec2693 923 np_info(np, "remote ethernet address %pM\n", np->remote_mac);
0bcc1816 924}
9e34a5b5 925EXPORT_SYMBOL(netpoll_print_options);
0bcc1816 926
b7394d24
CW
927static int netpoll_parse_ip_addr(const char *str, union inet_addr *addr)
928{
929 const char *end;
930
931 if (!strchr(str, ':') &&
932 in4_pton(str, -1, (void *)addr, -1, &end) > 0) {
933 if (!*end)
934 return 0;
935 }
936 if (in6_pton(str, -1, addr->in6.s6_addr, -1, &end) > 0) {
937#if IS_ENABLED(CONFIG_IPV6)
938 if (!*end)
939 return 1;
940#else
941 return -1;
942#endif
943 }
944 return -1;
945}
946
1da177e4
LT
947int netpoll_parse_options(struct netpoll *np, char *opt)
948{
949 char *cur=opt, *delim;
b7394d24 950 int ipv6;
1da177e4 951
c68b9070 952 if (*cur != '@') {
1da177e4
LT
953 if ((delim = strchr(cur, '@')) == NULL)
954 goto parse_failed;
c68b9070 955 *delim = 0;
4b5511eb
AP
956 if (kstrtou16(cur, 10, &np->local_port))
957 goto parse_failed;
c68b9070 958 cur = delim;
1da177e4
LT
959 }
960 cur++;
1da177e4 961
c68b9070 962 if (*cur != '/') {
1da177e4
LT
963 if ((delim = strchr(cur, '/')) == NULL)
964 goto parse_failed;
c68b9070 965 *delim = 0;
b7394d24
CW
966 ipv6 = netpoll_parse_ip_addr(cur, &np->local_ip);
967 if (ipv6 < 0)
968 goto parse_failed;
969 else
970 np->ipv6 = (bool)ipv6;
c68b9070 971 cur = delim;
1da177e4
LT
972 }
973 cur++;
974
c68b9070 975 if (*cur != ',') {
1da177e4
LT
976 /* parse out dev name */
977 if ((delim = strchr(cur, ',')) == NULL)
978 goto parse_failed;
c68b9070 979 *delim = 0;
1da177e4 980 strlcpy(np->dev_name, cur, sizeof(np->dev_name));
c68b9070 981 cur = delim;
1da177e4
LT
982 }
983 cur++;
984
c68b9070 985 if (*cur != '@') {
1da177e4
LT
986 /* dst port */
987 if ((delim = strchr(cur, '@')) == NULL)
988 goto parse_failed;
c68b9070 989 *delim = 0;
5fc05f87 990 if (*cur == ' ' || *cur == '\t')
e6ec2693 991 np_info(np, "warning: whitespace is not allowed\n");
4b5511eb
AP
992 if (kstrtou16(cur, 10, &np->remote_port))
993 goto parse_failed;
c68b9070 994 cur = delim;
1da177e4
LT
995 }
996 cur++;
1da177e4
LT
997
998 /* dst ip */
999 if ((delim = strchr(cur, '/')) == NULL)
1000 goto parse_failed;
c68b9070 1001 *delim = 0;
b7394d24
CW
1002 ipv6 = netpoll_parse_ip_addr(cur, &np->remote_ip);
1003 if (ipv6 < 0)
1004 goto parse_failed;
1005 else if (np->ipv6 != (bool)ipv6)
1006 goto parse_failed;
1007 else
1008 np->ipv6 = (bool)ipv6;
c68b9070 1009 cur = delim + 1;
1da177e4 1010
c68b9070 1011 if (*cur != 0) {
1da177e4 1012 /* MAC address */
4940fc88 1013 if (!mac_pton(cur, np->remote_mac))
1da177e4 1014 goto parse_failed;
1da177e4
LT
1015 }
1016
0bcc1816 1017 netpoll_print_options(np);
1da177e4
LT
1018
1019 return 0;
1020
1021 parse_failed:
e6ec2693 1022 np_info(np, "couldn't parse config at '%s'!\n", cur);
1da177e4
LT
1023 return -1;
1024}
9e34a5b5 1025EXPORT_SYMBOL(netpoll_parse_options);
1da177e4 1026
47be03a2 1027int __netpoll_setup(struct netpoll *np, struct net_device *ndev, gfp_t gfp)
1da177e4 1028{
115c1d6e 1029 struct netpoll_info *npinfo;
4247e161 1030 const struct net_device_ops *ops;
fbeec2e1 1031 unsigned long flags;
b41848b6 1032 int err;
1da177e4 1033
30fdd8a0
JP
1034 np->dev = ndev;
1035 strlcpy(np->dev_name, ndev->name, IFNAMSIZ);
2cde6acd 1036 INIT_WORK(&np->cleanup_work, netpoll_async_cleanup);
30fdd8a0 1037
8fdd95ec
HX
1038 if ((ndev->priv_flags & IFF_DISABLE_NETPOLL) ||
1039 !ndev->netdev_ops->ndo_poll_controller) {
e6ec2693
JP
1040 np_err(np, "%s doesn't support polling, aborting\n",
1041 np->dev_name);
8fdd95ec
HX
1042 err = -ENOTSUPP;
1043 goto out;
1044 }
1045
1046 if (!ndev->npinfo) {
47be03a2 1047 npinfo = kmalloc(sizeof(*npinfo), gfp);
8fdd95ec
HX
1048 if (!npinfo) {
1049 err = -ENOMEM;
1050 goto out;
1051 }
1052
1053 npinfo->rx_flags = 0;
1054 INIT_LIST_HEAD(&npinfo->rx_np);
1055
1056 spin_lock_init(&npinfo->rx_lock);
bd7c4b60 1057 sema_init(&npinfo->dev_lock, 1);
b7394d24 1058 skb_queue_head_init(&npinfo->neigh_tx);
8fdd95ec
HX
1059 skb_queue_head_init(&npinfo->txq);
1060 INIT_DELAYED_WORK(&npinfo->tx_work, queue_process);
1061
1062 atomic_set(&npinfo->refcnt, 1);
1063
1064 ops = np->dev->netdev_ops;
1065 if (ops->ndo_netpoll_setup) {
47be03a2 1066 err = ops->ndo_netpoll_setup(ndev, npinfo, gfp);
8fdd95ec
HX
1067 if (err)
1068 goto free_npinfo;
1069 }
1070 } else {
0790bbb6 1071 npinfo = rtnl_dereference(ndev->npinfo);
8fdd95ec
HX
1072 atomic_inc(&npinfo->refcnt);
1073 }
1074
1075 npinfo->netpoll = np;
1076
8fb479a4 1077 if (np->rx_skb_hook) {
8fdd95ec
HX
1078 spin_lock_irqsave(&npinfo->rx_lock, flags);
1079 npinfo->rx_flags |= NETPOLL_RX_ENABLED;
1080 list_add_tail(&np->rx, &npinfo->rx_np);
1081 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
1082 }
1083
1084 /* last thing to do is link it to the net device structure */
cf778b00 1085 rcu_assign_pointer(ndev->npinfo, npinfo);
8fdd95ec
HX
1086
1087 return 0;
1088
1089free_npinfo:
1090 kfree(npinfo);
1091out:
1092 return err;
1093}
1094EXPORT_SYMBOL_GPL(__netpoll_setup);
1095
1096int netpoll_setup(struct netpoll *np)
1097{
1098 struct net_device *ndev = NULL;
1099 struct in_device *in_dev;
1100 int err;
1101
f92d3180 1102 rtnl_lock();
556e6256
CW
1103 if (np->dev_name) {
1104 struct net *net = current->nsproxy->net_ns;
1105 ndev = __dev_get_by_name(net, np->dev_name);
1106 }
1da177e4 1107 if (!ndev) {
e6ec2693 1108 np_err(np, "%s doesn't exist, aborting\n", np->dev_name);
f92d3180
CW
1109 err = -ENODEV;
1110 goto unlock;
1da177e4 1111 }
5bd30d39 1112 dev_hold(ndev);
1da177e4 1113
49bd8fb0 1114 if (netdev_master_upper_dev_get(ndev)) {
e6ec2693 1115 np_err(np, "%s is a slave device, aborting\n", np->dev_name);
83fe32de
DC
1116 err = -EBUSY;
1117 goto put;
0c1ad04a
WC
1118 }
1119
1da177e4
LT
1120 if (!netif_running(ndev)) {
1121 unsigned long atmost, atleast;
1122
e6ec2693 1123 np_info(np, "device %s not up yet, forcing it\n", np->dev_name);
1da177e4 1124
b41848b6 1125 err = dev_open(ndev);
b41848b6
SH
1126
1127 if (err) {
e6ec2693 1128 np_err(np, "failed to open %s\n", ndev->name);
dbaa1541 1129 goto put;
1da177e4 1130 }
1da177e4 1131
f92d3180 1132 rtnl_unlock();
1da177e4 1133 atleast = jiffies + HZ/10;
bff38771 1134 atmost = jiffies + carrier_timeout * HZ;
1da177e4
LT
1135 while (!netif_carrier_ok(ndev)) {
1136 if (time_after(jiffies, atmost)) {
e6ec2693 1137 np_notice(np, "timeout waiting for carrier\n");
1da177e4
LT
1138 break;
1139 }
1b614fb9 1140 msleep(1);
1da177e4
LT
1141 }
1142
1143 /* If carrier appears to come up instantly, we don't
1144 * trust it and pause so that we don't pump all our
1145 * queued console messages into the bitbucket.
1146 */
1147
1148 if (time_before(jiffies, atleast)) {
e6ec2693 1149 np_notice(np, "carrier detect appears untrustworthy, waiting 4 seconds\n");
1da177e4
LT
1150 msleep(4000);
1151 }
f92d3180 1152 rtnl_lock();
1da177e4
LT
1153 }
1154
b7394d24
CW
1155 if (!np->local_ip.ip) {
1156 if (!np->ipv6) {
f92d3180 1157 in_dev = __in_dev_get_rtnl(ndev);
b7394d24
CW
1158
1159 if (!in_dev || !in_dev->ifa_list) {
b7394d24
CW
1160 np_err(np, "no IP address for %s, aborting\n",
1161 np->dev_name);
1162 err = -EDESTADDRREQ;
1163 goto put;
1164 }
1165
1166 np->local_ip.ip = in_dev->ifa_list->ifa_local;
b7394d24 1167 np_info(np, "local IP %pI4\n", &np->local_ip.ip);
b3d936f3
CW
1168 } else {
1169#if IS_ENABLED(CONFIG_IPV6)
1170 struct inet6_dev *idev;
1171
1172 err = -EDESTADDRREQ;
b3d936f3
CW
1173 idev = __in6_dev_get(ndev);
1174 if (idev) {
1175 struct inet6_ifaddr *ifp;
1176
1177 read_lock_bh(&idev->lock);
1178 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1179 if (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)
1180 continue;
1181 np->local_ip.in6 = ifp->addr;
1182 err = 0;
1183 break;
1184 }
1185 read_unlock_bh(&idev->lock);
1186 }
b3d936f3
CW
1187 if (err) {
1188 np_err(np, "no IPv6 address for %s, aborting\n",
1189 np->dev_name);
1190 goto put;
1191 } else
1192 np_info(np, "local IPv6 %pI6c\n", &np->local_ip.in6);
1193#else
1194 np_err(np, "IPv6 is not supported %s, aborting\n",
1195 np->dev_name);
e39363a9 1196 err = -EINVAL;
b3d936f3
CW
1197 goto put;
1198#endif
1da177e4 1199 }
1da177e4
LT
1200 }
1201
dbaa1541
HX
1202 /* fill up the skb queue */
1203 refill_skbs();
1204
47be03a2 1205 err = __netpoll_setup(np, ndev, GFP_KERNEL);
8fdd95ec
HX
1206 if (err)
1207 goto put;
1208
f92d3180 1209 rtnl_unlock();
1da177e4
LT
1210 return 0;
1211
21edbb22 1212put:
1da177e4 1213 dev_put(ndev);
f92d3180
CW
1214unlock:
1215 rtnl_unlock();
b41848b6 1216 return err;
1da177e4 1217}
9e34a5b5 1218EXPORT_SYMBOL(netpoll_setup);
1da177e4 1219
c68b9070
DM
1220static int __init netpoll_init(void)
1221{
a1bcfacd
SH
1222 skb_queue_head_init(&skb_pool);
1223 return 0;
1224}
1225core_initcall(netpoll_init);
1226
38e6bc18
AW
1227static void rcu_cleanup_netpoll_info(struct rcu_head *rcu_head)
1228{
1229 struct netpoll_info *npinfo =
1230 container_of(rcu_head, struct netpoll_info, rcu);
1231
b7394d24 1232 skb_queue_purge(&npinfo->neigh_tx);
38e6bc18
AW
1233 skb_queue_purge(&npinfo->txq);
1234
1235 /* we can't call cancel_delayed_work_sync here, as we are in softirq */
1236 cancel_delayed_work(&npinfo->tx_work);
1237
1238 /* clean after last, unfinished work */
1239 __skb_queue_purge(&npinfo->txq);
1240 /* now cancel it again */
1241 cancel_delayed_work(&npinfo->tx_work);
1242 kfree(npinfo);
1243}
1244
8fdd95ec 1245void __netpoll_cleanup(struct netpoll *np)
1da177e4 1246{
fbeec2e1
JM
1247 struct netpoll_info *npinfo;
1248 unsigned long flags;
1249
0790bbb6
NH
1250 /* rtnl_dereference would be preferable here but
1251 * rcu_cleanup_netpoll path can put us in here safely without
1252 * holding the rtnl, so plain rcu_dereference it is
1253 */
1254 npinfo = rtnl_dereference(np->dev->npinfo);
8fdd95ec 1255 if (!npinfo)
dbaa1541 1256 return;
93ec2c72 1257
8fdd95ec
HX
1258 if (!list_empty(&npinfo->rx_np)) {
1259 spin_lock_irqsave(&npinfo->rx_lock, flags);
1260 list_del(&np->rx);
1261 if (list_empty(&npinfo->rx_np))
1262 npinfo->rx_flags &= ~NETPOLL_RX_ENABLED;
1263 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
1264 }
de85d99e 1265
ca99ca14
NH
1266 synchronize_srcu(&netpoll_srcu);
1267
8fdd95ec
HX
1268 if (atomic_dec_and_test(&npinfo->refcnt)) {
1269 const struct net_device_ops *ops;
de85d99e 1270
8fdd95ec
HX
1271 ops = np->dev->netdev_ops;
1272 if (ops->ndo_netpoll_cleanup)
1273 ops->ndo_netpoll_cleanup(np->dev);
de85d99e 1274
2cde6acd 1275 rcu_assign_pointer(np->dev->npinfo, NULL);
38e6bc18
AW
1276 call_rcu_bh(&npinfo->rcu, rcu_cleanup_netpoll_info);
1277 }
1278}
1279EXPORT_SYMBOL_GPL(__netpoll_cleanup);
de85d99e 1280
2cde6acd 1281static void netpoll_async_cleanup(struct work_struct *work)
38e6bc18 1282{
2cde6acd 1283 struct netpoll *np = container_of(work, struct netpoll, cleanup_work);
93ec2c72 1284
2cde6acd 1285 rtnl_lock();
38e6bc18 1286 __netpoll_cleanup(np);
2cde6acd 1287 rtnl_unlock();
38e6bc18
AW
1288 kfree(np);
1289}
93ec2c72 1290
2cde6acd 1291void __netpoll_free_async(struct netpoll *np)
38e6bc18 1292{
2cde6acd 1293 schedule_work(&np->cleanup_work);
8fdd95ec 1294}
2cde6acd 1295EXPORT_SYMBOL_GPL(__netpoll_free_async);
fbeec2e1 1296
8fdd95ec
HX
1297void netpoll_cleanup(struct netpoll *np)
1298{
8fdd95ec 1299 rtnl_lock();
d0fe8c88
NA
1300 if (!np->dev)
1301 goto out;
8fdd95ec 1302 __netpoll_cleanup(np);
8fdd95ec 1303 dev_put(np->dev);
1da177e4 1304 np->dev = NULL;
d0fe8c88
NA
1305out:
1306 rtnl_unlock();
1da177e4 1307}
9e34a5b5 1308EXPORT_SYMBOL(netpoll_cleanup);
1da177e4
LT
1309
1310int netpoll_trap(void)
1311{
1312 return atomic_read(&trapped);
1313}
9e34a5b5 1314EXPORT_SYMBOL(netpoll_trap);
1da177e4
LT
1315
1316void netpoll_set_trap(int trap)
1317{
1318 if (trap)
1319 atomic_inc(&trapped);
1320 else
1321 atomic_dec(&trapped);
1322}
1da177e4 1323EXPORT_SYMBOL(netpoll_set_trap);
This page took 3.234065 seconds and 5 git commands to generate.