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