2 * Common framework for low-level network console, dump, and debugger code
4 * Sep 8 2003 Matt Mackall <mpm@selenic.com>
6 * based on the netconsole code from:
8 * Copyright (C) 2001 Ingo Molnar <mingo@redhat.com>
9 * Copyright (C) 2002 Red Hat, Inc.
12 #include <linux/netdevice.h>
13 #include <linux/etherdevice.h>
14 #include <linux/string.h>
15 #include <linux/if_arp.h>
16 #include <linux/inetdevice.h>
17 #include <linux/inet.h>
18 #include <linux/interrupt.h>
19 #include <linux/netpoll.h>
20 #include <linux/sched.h>
21 #include <linux/delay.h>
22 #include <linux/rcupdate.h>
23 #include <linux/workqueue.h>
26 #include <asm/unaligned.h>
29 * We maintain a small pool of fully-sized skbs, to make sure the
30 * message gets out even in extreme OOM situations.
33 #define MAX_UDP_CHUNK 1460
35 #define MAX_QUEUE_DEPTH (MAX_SKBS / 2)
37 static struct sk_buff_head skb_pool
;
39 static atomic_t trapped
;
41 #define USEC_PER_POLL 50
42 #define NETPOLL_RX_ENABLED 1
43 #define NETPOLL_RX_DROP 2
45 #define MAX_SKB_SIZE \
46 (MAX_UDP_CHUNK + sizeof(struct udphdr) + \
47 sizeof(struct iphdr) + sizeof(struct ethhdr))
49 static void zap_completion_queue(void);
50 static void arp_reply(struct sk_buff
*skb
);
52 static void queue_process(struct work_struct
*work
)
54 struct netpoll_info
*npinfo
=
55 container_of(work
, struct netpoll_info
, tx_work
.work
);
59 while ((skb
= skb_dequeue(&npinfo
->txq
))) {
60 struct net_device
*dev
= skb
->dev
;
62 if (!netif_device_present(dev
) || !netif_running(dev
)) {
67 local_irq_save(flags
);
69 if ((netif_queue_stopped(dev
) ||
70 netif_subqueue_stopped(dev
, skb
)) ||
71 dev
->hard_start_xmit(skb
, dev
) != NETDEV_TX_OK
) {
72 skb_queue_head(&npinfo
->txq
, skb
);
74 local_irq_restore(flags
);
76 schedule_delayed_work(&npinfo
->tx_work
, HZ
/10);
80 local_irq_restore(flags
);
84 static __sum16
checksum_udp(struct sk_buff
*skb
, struct udphdr
*uh
,
85 unsigned short ulen
, __be32 saddr
, __be32 daddr
)
89 if (uh
->check
== 0 || skb_csum_unnecessary(skb
))
92 psum
= csum_tcpudp_nofold(saddr
, daddr
, ulen
, IPPROTO_UDP
, 0);
94 if (skb
->ip_summed
== CHECKSUM_COMPLETE
&&
95 !csum_fold(csum_add(psum
, skb
->csum
)))
100 return __skb_checksum_complete(skb
);
104 * Check whether delayed processing was scheduled for our NIC. If so,
105 * we attempt to grab the poll lock and use ->poll() to pump the card.
106 * If this fails, either we've recursed in ->poll() or it's already
107 * running on another CPU.
109 * Note: we don't mask interrupts with this lock because we're using
110 * trylock here and interrupts are already disabled in the softirq
111 * case. Further, we test the poll_owner to avoid recursion on UP
112 * systems where the lock doesn't exist.
114 * In cases where there is bi-directional communications, reading only
115 * one message at a time can lead to packets being dropped by the
116 * network adapter, forcing superfluous retries and possibly timeouts.
117 * Thus, we set our budget to greater than 1.
119 static int poll_one_napi(struct netpoll_info
*npinfo
,
120 struct napi_struct
*napi
, int budget
)
124 /* net_rx_action's ->poll() invocations and our's are
125 * synchronized by this test which is only made while
126 * holding the napi->poll_lock.
128 if (!test_bit(NAPI_STATE_SCHED
, &napi
->state
))
131 npinfo
->rx_flags
|= NETPOLL_RX_DROP
;
132 atomic_inc(&trapped
);
134 work
= napi
->poll(napi
, budget
);
136 atomic_dec(&trapped
);
137 npinfo
->rx_flags
&= ~NETPOLL_RX_DROP
;
139 return budget
- work
;
142 static void poll_napi(struct net_device
*dev
)
144 struct napi_struct
*napi
;
147 list_for_each_entry(napi
, &dev
->napi_list
, dev_list
) {
148 if (napi
->poll_owner
!= smp_processor_id() &&
149 spin_trylock(&napi
->poll_lock
)) {
150 budget
= poll_one_napi(dev
->npinfo
, napi
, budget
);
151 spin_unlock(&napi
->poll_lock
);
159 static void service_arp_queue(struct netpoll_info
*npi
)
164 while ((skb
= skb_dequeue(&npi
->arp_tx
)))
169 void netpoll_poll(struct netpoll
*np
)
171 struct net_device
*dev
= np
->dev
;
173 if (!dev
|| !netif_running(dev
) || !dev
->poll_controller
)
176 /* Process pending work on NIC */
177 dev
->poll_controller(dev
);
181 service_arp_queue(dev
->npinfo
);
183 zap_completion_queue();
186 static void refill_skbs(void)
191 spin_lock_irqsave(&skb_pool
.lock
, flags
);
192 while (skb_pool
.qlen
< MAX_SKBS
) {
193 skb
= alloc_skb(MAX_SKB_SIZE
, GFP_ATOMIC
);
197 __skb_queue_tail(&skb_pool
, skb
);
199 spin_unlock_irqrestore(&skb_pool
.lock
, flags
);
202 static void zap_completion_queue(void)
205 struct softnet_data
*sd
= &get_cpu_var(softnet_data
);
207 if (sd
->completion_queue
) {
208 struct sk_buff
*clist
;
210 local_irq_save(flags
);
211 clist
= sd
->completion_queue
;
212 sd
->completion_queue
= NULL
;
213 local_irq_restore(flags
);
215 while (clist
!= NULL
) {
216 struct sk_buff
*skb
= clist
;
218 if (skb
->destructor
) {
219 atomic_inc(&skb
->users
);
220 dev_kfree_skb_any(skb
); /* put this one back */
227 put_cpu_var(softnet_data
);
230 static struct sk_buff
*find_skb(struct netpoll
*np
, int len
, int reserve
)
235 zap_completion_queue();
239 skb
= alloc_skb(len
, GFP_ATOMIC
);
241 skb
= skb_dequeue(&skb_pool
);
251 atomic_set(&skb
->users
, 1);
252 skb_reserve(skb
, reserve
);
256 static int netpoll_owner_active(struct net_device
*dev
)
258 struct napi_struct
*napi
;
260 list_for_each_entry(napi
, &dev
->napi_list
, dev_list
) {
261 if (napi
->poll_owner
== smp_processor_id())
267 static void netpoll_send_skb(struct netpoll
*np
, struct sk_buff
*skb
)
269 int status
= NETDEV_TX_BUSY
;
271 struct net_device
*dev
= np
->dev
;
272 struct netpoll_info
*npinfo
= np
->dev
->npinfo
;
274 if (!npinfo
|| !netif_running(dev
) || !netif_device_present(dev
)) {
279 /* don't get messages out of order, and no recursion */
280 if (skb_queue_len(&npinfo
->txq
) == 0 && !netpoll_owner_active(dev
)) {
283 local_irq_save(flags
);
284 /* try until next clock tick */
285 for (tries
= jiffies_to_usecs(1)/USEC_PER_POLL
;
286 tries
> 0; --tries
) {
287 if (netif_tx_trylock(dev
)) {
288 if (!netif_queue_stopped(dev
) &&
289 !netif_subqueue_stopped(dev
, skb
))
290 status
= dev
->hard_start_xmit(skb
, dev
);
291 netif_tx_unlock(dev
);
293 if (status
== NETDEV_TX_OK
)
298 /* tickle device maybe there is some cleanup */
301 udelay(USEC_PER_POLL
);
303 local_irq_restore(flags
);
306 if (status
!= NETDEV_TX_OK
) {
307 skb_queue_tail(&npinfo
->txq
, skb
);
308 schedule_delayed_work(&npinfo
->tx_work
,0);
312 void netpoll_send_udp(struct netpoll
*np
, const char *msg
, int len
)
314 int total_len
, eth_len
, ip_len
, udp_len
;
320 udp_len
= len
+ sizeof(*udph
);
321 ip_len
= eth_len
= udp_len
+ sizeof(*iph
);
322 total_len
= eth_len
+ ETH_HLEN
+ NET_IP_ALIGN
;
324 skb
= find_skb(np
, total_len
, total_len
- len
);
328 skb_copy_to_linear_data(skb
, msg
, len
);
331 skb_push(skb
, sizeof(*udph
));
332 skb_reset_transport_header(skb
);
334 udph
->source
= htons(np
->local_port
);
335 udph
->dest
= htons(np
->remote_port
);
336 udph
->len
= htons(udp_len
);
338 udph
->check
= csum_tcpudp_magic(htonl(np
->local_ip
),
339 htonl(np
->remote_ip
),
340 udp_len
, IPPROTO_UDP
,
341 csum_partial((unsigned char *)udph
, udp_len
, 0));
342 if (udph
->check
== 0)
343 udph
->check
= CSUM_MANGLED_0
;
345 skb_push(skb
, sizeof(*iph
));
346 skb_reset_network_header(skb
);
349 /* iph->version = 4; iph->ihl = 5; */
350 put_unaligned(0x45, (unsigned char *)iph
);
352 put_unaligned(htons(ip_len
), &(iph
->tot_len
));
356 iph
->protocol
= IPPROTO_UDP
;
358 put_unaligned(htonl(np
->local_ip
), &(iph
->saddr
));
359 put_unaligned(htonl(np
->remote_ip
), &(iph
->daddr
));
360 iph
->check
= ip_fast_csum((unsigned char *)iph
, iph
->ihl
);
362 eth
= (struct ethhdr
*) skb_push(skb
, ETH_HLEN
);
363 skb_reset_mac_header(skb
);
364 skb
->protocol
= eth
->h_proto
= htons(ETH_P_IP
);
365 memcpy(eth
->h_source
, np
->dev
->dev_addr
, ETH_ALEN
);
366 memcpy(eth
->h_dest
, np
->remote_mac
, ETH_ALEN
);
370 netpoll_send_skb(np
, skb
);
373 static void arp_reply(struct sk_buff
*skb
)
375 struct netpoll_info
*npinfo
= skb
->dev
->npinfo
;
377 unsigned char *arp_ptr
;
378 int size
, type
= ARPOP_REPLY
, ptype
= ETH_P_ARP
;
381 struct sk_buff
*send_skb
;
382 struct netpoll
*np
= NULL
;
384 if (npinfo
->rx_np
&& npinfo
->rx_np
->dev
== skb
->dev
)
389 /* No arp on this interface */
390 if (skb
->dev
->flags
& IFF_NOARP
)
393 if (!pskb_may_pull(skb
, (sizeof(struct arphdr
) +
394 (2 * skb
->dev
->addr_len
) +
398 skb_reset_network_header(skb
);
399 skb_reset_transport_header(skb
);
402 if ((arp
->ar_hrd
!= htons(ARPHRD_ETHER
) &&
403 arp
->ar_hrd
!= htons(ARPHRD_IEEE802
)) ||
404 arp
->ar_pro
!= htons(ETH_P_IP
) ||
405 arp
->ar_op
!= htons(ARPOP_REQUEST
))
408 arp_ptr
= (unsigned char *)(arp
+1);
409 /* save the location of the src hw addr */
411 arp_ptr
+= skb
->dev
->addr_len
;
412 memcpy(&sip
, arp_ptr
, 4);
414 /* if we actually cared about dst hw addr, it would get copied here */
415 arp_ptr
+= skb
->dev
->addr_len
;
416 memcpy(&tip
, arp_ptr
, 4);
418 /* Should we ignore arp? */
419 if (tip
!= htonl(np
->local_ip
) ||
420 ipv4_is_loopback(tip
) || ipv4_is_multicast(tip
))
423 size
= sizeof(struct arphdr
) + 2 * (skb
->dev
->addr_len
+ 4);
424 send_skb
= find_skb(np
, size
+ LL_RESERVED_SPACE(np
->dev
),
425 LL_RESERVED_SPACE(np
->dev
));
430 skb_reset_network_header(send_skb
);
431 arp
= (struct arphdr
*) skb_put(send_skb
, size
);
432 send_skb
->dev
= skb
->dev
;
433 send_skb
->protocol
= htons(ETH_P_ARP
);
435 /* Fill the device header for the ARP frame */
436 if (dev_hard_header(send_skb
, skb
->dev
, ptype
,
437 sha
, np
->dev
->dev_addr
,
438 send_skb
->len
) < 0) {
444 * Fill out the arp protocol part.
446 * we only support ethernet device type,
447 * which (according to RFC 1390) should always equal 1 (Ethernet).
450 arp
->ar_hrd
= htons(np
->dev
->type
);
451 arp
->ar_pro
= htons(ETH_P_IP
);
452 arp
->ar_hln
= np
->dev
->addr_len
;
454 arp
->ar_op
= htons(type
);
456 arp_ptr
=(unsigned char *)(arp
+ 1);
457 memcpy(arp_ptr
, np
->dev
->dev_addr
, np
->dev
->addr_len
);
458 arp_ptr
+= np
->dev
->addr_len
;
459 memcpy(arp_ptr
, &tip
, 4);
461 memcpy(arp_ptr
, sha
, np
->dev
->addr_len
);
462 arp_ptr
+= np
->dev
->addr_len
;
463 memcpy(arp_ptr
, &sip
, 4);
465 netpoll_send_skb(np
, send_skb
);
468 int __netpoll_rx(struct sk_buff
*skb
)
470 int proto
, len
, ulen
;
473 struct netpoll_info
*npi
= skb
->dev
->npinfo
;
474 struct netpoll
*np
= npi
->rx_np
;
478 if (skb
->dev
->type
!= ARPHRD_ETHER
)
481 /* check if netpoll clients need ARP */
482 if (skb
->protocol
== htons(ETH_P_ARP
) &&
483 atomic_read(&trapped
)) {
484 skb_queue_tail(&npi
->arp_tx
, skb
);
488 proto
= ntohs(eth_hdr(skb
)->h_proto
);
489 if (proto
!= ETH_P_IP
)
491 if (skb
->pkt_type
== PACKET_OTHERHOST
)
496 iph
= (struct iphdr
*)skb
->data
;
497 if (!pskb_may_pull(skb
, sizeof(struct iphdr
)))
499 if (iph
->ihl
< 5 || iph
->version
!= 4)
501 if (!pskb_may_pull(skb
, iph
->ihl
*4))
503 if (ip_fast_csum((u8
*)iph
, iph
->ihl
) != 0)
506 len
= ntohs(iph
->tot_len
);
507 if (skb
->len
< len
|| len
< iph
->ihl
*4)
511 * Our transport medium may have padded the buffer out.
512 * Now We trim to the true length of the frame.
514 if (pskb_trim_rcsum(skb
, len
))
517 if (iph
->protocol
!= IPPROTO_UDP
)
521 uh
= (struct udphdr
*)(((char *)iph
) + iph
->ihl
*4);
522 ulen
= ntohs(uh
->len
);
526 if (checksum_udp(skb
, uh
, ulen
, iph
->saddr
, iph
->daddr
))
528 if (np
->local_ip
&& np
->local_ip
!= ntohl(iph
->daddr
))
530 if (np
->remote_ip
&& np
->remote_ip
!= ntohl(iph
->saddr
))
532 if (np
->local_port
&& np
->local_port
!= ntohs(uh
->dest
))
535 np
->rx_hook(np
, ntohs(uh
->source
),
537 ulen
- sizeof(struct udphdr
));
543 if (atomic_read(&trapped
)) {
551 void netpoll_print_options(struct netpoll
*np
)
553 DECLARE_MAC_BUF(mac
);
554 printk(KERN_INFO
"%s: local port %d\n",
555 np
->name
, np
->local_port
);
556 printk(KERN_INFO
"%s: local IP %d.%d.%d.%d\n",
557 np
->name
, HIPQUAD(np
->local_ip
));
558 printk(KERN_INFO
"%s: interface %s\n",
559 np
->name
, np
->dev_name
);
560 printk(KERN_INFO
"%s: remote port %d\n",
561 np
->name
, np
->remote_port
);
562 printk(KERN_INFO
"%s: remote IP %d.%d.%d.%d\n",
563 np
->name
, HIPQUAD(np
->remote_ip
));
564 printk(KERN_INFO
"%s: remote ethernet address %s\n",
565 np
->name
, print_mac(mac
, np
->remote_mac
));
568 int netpoll_parse_options(struct netpoll
*np
, char *opt
)
570 char *cur
=opt
, *delim
;
573 if ((delim
= strchr(cur
, '@')) == NULL
)
576 np
->local_port
= simple_strtol(cur
, NULL
, 10);
582 if ((delim
= strchr(cur
, '/')) == NULL
)
585 np
->local_ip
= ntohl(in_aton(cur
));
591 /* parse out dev name */
592 if ((delim
= strchr(cur
, ',')) == NULL
)
595 strlcpy(np
->dev_name
, cur
, sizeof(np
->dev_name
));
602 if ((delim
= strchr(cur
, '@')) == NULL
)
605 np
->remote_port
= simple_strtol(cur
, NULL
, 10);
611 if ((delim
= strchr(cur
, '/')) == NULL
)
614 np
->remote_ip
= ntohl(in_aton(cur
));
619 if ((delim
= strchr(cur
, ':')) == NULL
)
622 np
->remote_mac
[0] = simple_strtol(cur
, NULL
, 16);
624 if ((delim
= strchr(cur
, ':')) == NULL
)
627 np
->remote_mac
[1] = simple_strtol(cur
, NULL
, 16);
629 if ((delim
= strchr(cur
, ':')) == NULL
)
632 np
->remote_mac
[2] = simple_strtol(cur
, NULL
, 16);
634 if ((delim
= strchr(cur
, ':')) == NULL
)
637 np
->remote_mac
[3] = simple_strtol(cur
, NULL
, 16);
639 if ((delim
= strchr(cur
, ':')) == NULL
)
642 np
->remote_mac
[4] = simple_strtol(cur
, NULL
, 16);
644 np
->remote_mac
[5] = simple_strtol(cur
, NULL
, 16);
647 netpoll_print_options(np
);
652 printk(KERN_INFO
"%s: couldn't parse config at %s!\n",
657 int netpoll_setup(struct netpoll
*np
)
659 struct net_device
*ndev
= NULL
;
660 struct in_device
*in_dev
;
661 struct netpoll_info
*npinfo
;
666 ndev
= dev_get_by_name(&init_net
, np
->dev_name
);
668 printk(KERN_ERR
"%s: %s doesn't exist, aborting.\n",
669 np
->name
, np
->dev_name
);
675 npinfo
= kmalloc(sizeof(*npinfo
), GFP_KERNEL
);
681 npinfo
->rx_flags
= 0;
682 npinfo
->rx_np
= NULL
;
684 spin_lock_init(&npinfo
->rx_lock
);
685 skb_queue_head_init(&npinfo
->arp_tx
);
686 skb_queue_head_init(&npinfo
->txq
);
687 INIT_DELAYED_WORK(&npinfo
->tx_work
, queue_process
);
689 atomic_set(&npinfo
->refcnt
, 1);
691 npinfo
= ndev
->npinfo
;
692 atomic_inc(&npinfo
->refcnt
);
695 if (!ndev
->poll_controller
) {
696 printk(KERN_ERR
"%s: %s doesn't support polling, aborting.\n",
697 np
->name
, np
->dev_name
);
702 if (!netif_running(ndev
)) {
703 unsigned long atmost
, atleast
;
705 printk(KERN_INFO
"%s: device %s not up yet, forcing it\n",
706 np
->name
, np
->dev_name
);
709 err
= dev_open(ndev
);
713 printk(KERN_ERR
"%s: failed to open %s\n",
714 np
->name
, ndev
->name
);
718 atleast
= jiffies
+ HZ
/10;
719 atmost
= jiffies
+ 4*HZ
;
720 while (!netif_carrier_ok(ndev
)) {
721 if (time_after(jiffies
, atmost
)) {
723 "%s: timeout waiting for carrier\n",
730 /* If carrier appears to come up instantly, we don't
731 * trust it and pause so that we don't pump all our
732 * queued console messages into the bitbucket.
735 if (time_before(jiffies
, atleast
)) {
736 printk(KERN_NOTICE
"%s: carrier detect appears"
737 " untrustworthy, waiting 4 seconds\n",
745 in_dev
= __in_dev_get_rcu(ndev
);
747 if (!in_dev
|| !in_dev
->ifa_list
) {
749 printk(KERN_ERR
"%s: no IP address for %s, aborting\n",
750 np
->name
, np
->dev_name
);
755 np
->local_ip
= ntohl(in_dev
->ifa_list
->ifa_local
);
757 printk(KERN_INFO
"%s: local IP %d.%d.%d.%d\n",
758 np
->name
, HIPQUAD(np
->local_ip
));
762 spin_lock_irqsave(&npinfo
->rx_lock
, flags
);
763 npinfo
->rx_flags
|= NETPOLL_RX_ENABLED
;
765 spin_unlock_irqrestore(&npinfo
->rx_lock
, flags
);
768 /* fill up the skb queue */
771 /* last thing to do is link it to the net device structure */
772 ndev
->npinfo
= npinfo
;
774 /* avoid racing with NAPI reading npinfo */
787 static int __init
netpoll_init(void)
789 skb_queue_head_init(&skb_pool
);
792 core_initcall(netpoll_init
);
794 void netpoll_cleanup(struct netpoll
*np
)
796 struct netpoll_info
*npinfo
;
800 npinfo
= np
->dev
->npinfo
;
802 if (npinfo
->rx_np
== np
) {
803 spin_lock_irqsave(&npinfo
->rx_lock
, flags
);
804 npinfo
->rx_np
= NULL
;
805 npinfo
->rx_flags
&= ~NETPOLL_RX_ENABLED
;
806 spin_unlock_irqrestore(&npinfo
->rx_lock
, flags
);
809 if (atomic_dec_and_test(&npinfo
->refcnt
)) {
810 skb_queue_purge(&npinfo
->arp_tx
);
811 skb_queue_purge(&npinfo
->txq
);
812 cancel_rearming_delayed_work(&npinfo
->tx_work
);
814 /* clean after last, unfinished work */
815 __skb_queue_purge(&npinfo
->txq
);
817 np
->dev
->npinfo
= NULL
;
827 int netpoll_trap(void)
829 return atomic_read(&trapped
);
832 void netpoll_set_trap(int trap
)
835 atomic_inc(&trapped
);
837 atomic_dec(&trapped
);
840 EXPORT_SYMBOL(netpoll_set_trap
);
841 EXPORT_SYMBOL(netpoll_trap
);
842 EXPORT_SYMBOL(netpoll_print_options
);
843 EXPORT_SYMBOL(netpoll_parse_options
);
844 EXPORT_SYMBOL(netpoll_setup
);
845 EXPORT_SYMBOL(netpoll_cleanup
);
846 EXPORT_SYMBOL(netpoll_send_udp
);
847 EXPORT_SYMBOL(netpoll_poll
);