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