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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/moduleparam.h>
15 #include <linux/kernel.h>
16 #include <linux/netdevice.h>
17 #include <linux/etherdevice.h>
18 #include <linux/string.h>
19 #include <linux/if_arp.h>
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>
28 #include <linux/slab.h>
29 #include <linux/export.h>
30 #include <linux/if_vlan.h>
33 #include <net/addrconf.h>
34 #include <net/ndisc.h>
35 #include <net/ip6_checksum.h>
36 #include <asm/unaligned.h>
37 #include <trace/events/napi.h>
40 * We maintain a small pool of fully-sized skbs, to make sure the
41 * message gets out even in extreme OOM situations.
44 #define MAX_UDP_CHUNK 1460
47 static struct sk_buff_head skb_pool
;
49 static atomic_t trapped
;
51 DEFINE_STATIC_SRCU(netpoll_srcu
);
53 #define USEC_PER_POLL 50
54 #define NETPOLL_RX_ENABLED 1
55 #define NETPOLL_RX_DROP 2
57 #define MAX_SKB_SIZE \
58 (sizeof(struct ethhdr) + \
59 sizeof(struct iphdr) + \
60 sizeof(struct udphdr) + \
63 static void zap_completion_queue(void);
64 static void netpoll_neigh_reply(struct sk_buff
*skb
, struct netpoll_info
*npinfo
);
65 static void netpoll_async_cleanup(struct work_struct
*work
);
67 static unsigned int carrier_timeout
= 4;
68 module_param(carrier_timeout
, uint
, 0644);
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__)
77 static void queue_process(struct work_struct
*work
)
79 struct netpoll_info
*npinfo
=
80 container_of(work
, struct netpoll_info
, tx_work
.work
);
84 while ((skb
= skb_dequeue(&npinfo
->txq
))) {
85 struct net_device
*dev
= skb
->dev
;
86 const struct net_device_ops
*ops
= dev
->netdev_ops
;
87 struct netdev_queue
*txq
;
89 if (!netif_device_present(dev
) || !netif_running(dev
)) {
94 txq
= netdev_get_tx_queue(dev
, skb_get_queue_mapping(skb
));
96 local_irq_save(flags
);
97 __netif_tx_lock(txq
, smp_processor_id());
98 if (netif_xmit_frozen_or_stopped(txq
) ||
99 ops
->ndo_start_xmit(skb
, dev
) != NETDEV_TX_OK
) {
100 skb_queue_head(&npinfo
->txq
, skb
);
101 __netif_tx_unlock(txq
);
102 local_irq_restore(flags
);
104 schedule_delayed_work(&npinfo
->tx_work
, HZ
/10);
107 __netif_tx_unlock(txq
);
108 local_irq_restore(flags
);
112 static __sum16
checksum_udp(struct sk_buff
*skb
, struct udphdr
*uh
,
113 unsigned short ulen
, __be32 saddr
, __be32 daddr
)
117 if (uh
->check
== 0 || skb_csum_unnecessary(skb
))
120 psum
= csum_tcpudp_nofold(saddr
, daddr
, ulen
, IPPROTO_UDP
, 0);
122 if (skb
->ip_summed
== CHECKSUM_COMPLETE
&&
123 !csum_fold(csum_add(psum
, skb
->csum
)))
128 return __skb_checksum_complete(skb
);
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.
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.
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.
147 static int poll_one_napi(struct netpoll_info
*npinfo
,
148 struct napi_struct
*napi
, int budget
)
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.
156 if (!test_bit(NAPI_STATE_SCHED
, &napi
->state
))
159 npinfo
->rx_flags
|= NETPOLL_RX_DROP
;
160 atomic_inc(&trapped
);
161 set_bit(NAPI_STATE_NPSVC
, &napi
->state
);
163 work
= napi
->poll(napi
, budget
);
164 trace_napi_poll(napi
);
166 clear_bit(NAPI_STATE_NPSVC
, &napi
->state
);
167 atomic_dec(&trapped
);
168 npinfo
->rx_flags
&= ~NETPOLL_RX_DROP
;
170 return budget
- work
;
173 static void poll_napi(struct net_device
*dev
)
175 struct napi_struct
*napi
;
178 list_for_each_entry(napi
, &dev
->napi_list
, dev_list
) {
179 if (napi
->poll_owner
!= smp_processor_id() &&
180 spin_trylock(&napi
->poll_lock
)) {
181 budget
= poll_one_napi(rcu_dereference_bh(dev
->npinfo
),
183 spin_unlock(&napi
->poll_lock
);
191 static void service_neigh_queue(struct netpoll_info
*npi
)
196 while ((skb
= skb_dequeue(&npi
->neigh_tx
)))
197 netpoll_neigh_reply(skb
, npi
);
201 static void netpoll_poll_dev(struct net_device
*dev
)
203 const struct net_device_ops
*ops
;
204 struct netpoll_info
*ni
= rcu_dereference_bh(dev
->npinfo
);
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
210 if (down_trylock(&ni
->dev_lock
))
213 if (!netif_running(dev
)) {
218 ops
= dev
->netdev_ops
;
219 if (!ops
->ndo_poll_controller
) {
224 /* Process pending work on NIC */
225 ops
->ndo_poll_controller(dev
);
231 if (dev
->flags
& IFF_SLAVE
) {
233 struct net_device
*bond_dev
;
235 struct netpoll_info
*bond_ni
;
237 bond_dev
= netdev_master_upper_dev_get_rcu(dev
);
238 bond_ni
= rcu_dereference_bh(bond_dev
->npinfo
);
239 while ((skb
= skb_dequeue(&ni
->neigh_tx
))) {
241 skb_queue_tail(&bond_ni
->neigh_tx
, skb
);
246 service_neigh_queue(ni
);
248 zap_completion_queue();
251 void netpoll_rx_disable(struct net_device
*dev
)
253 struct netpoll_info
*ni
;
256 idx
= srcu_read_lock(&netpoll_srcu
);
257 ni
= srcu_dereference(dev
->npinfo
, &netpoll_srcu
);
260 srcu_read_unlock(&netpoll_srcu
, idx
);
262 EXPORT_SYMBOL(netpoll_rx_disable
);
264 void netpoll_rx_enable(struct net_device
*dev
)
266 struct netpoll_info
*ni
;
268 ni
= rcu_dereference(dev
->npinfo
);
273 EXPORT_SYMBOL(netpoll_rx_enable
);
275 static void refill_skbs(void)
280 spin_lock_irqsave(&skb_pool
.lock
, flags
);
281 while (skb_pool
.qlen
< MAX_SKBS
) {
282 skb
= alloc_skb(MAX_SKB_SIZE
, GFP_ATOMIC
);
286 __skb_queue_tail(&skb_pool
, skb
);
288 spin_unlock_irqrestore(&skb_pool
.lock
, flags
);
291 static void zap_completion_queue(void)
294 struct softnet_data
*sd
= &get_cpu_var(softnet_data
);
296 if (sd
->completion_queue
) {
297 struct sk_buff
*clist
;
299 local_irq_save(flags
);
300 clist
= sd
->completion_queue
;
301 sd
->completion_queue
= NULL
;
302 local_irq_restore(flags
);
304 while (clist
!= NULL
) {
305 struct sk_buff
*skb
= clist
;
307 if (skb
->destructor
) {
308 atomic_inc(&skb
->users
);
309 dev_kfree_skb_any(skb
); /* put this one back */
316 put_cpu_var(softnet_data
);
319 static struct sk_buff
*find_skb(struct netpoll
*np
, int len
, int reserve
)
324 zap_completion_queue();
328 skb
= alloc_skb(len
, GFP_ATOMIC
);
330 skb
= skb_dequeue(&skb_pool
);
334 netpoll_poll_dev(np
->dev
);
340 atomic_set(&skb
->users
, 1);
341 skb_reserve(skb
, reserve
);
345 static int netpoll_owner_active(struct net_device
*dev
)
347 struct napi_struct
*napi
;
349 list_for_each_entry(napi
, &dev
->napi_list
, dev_list
) {
350 if (napi
->poll_owner
== smp_processor_id())
356 /* call with IRQ disabled */
357 void netpoll_send_skb_on_dev(struct netpoll
*np
, struct sk_buff
*skb
,
358 struct net_device
*dev
)
360 int status
= NETDEV_TX_BUSY
;
362 const struct net_device_ops
*ops
= dev
->netdev_ops
;
363 /* It is up to the caller to keep npinfo alive. */
364 struct netpoll_info
*npinfo
;
366 WARN_ON_ONCE(!irqs_disabled());
368 npinfo
= rcu_dereference_bh(np
->dev
->npinfo
);
369 if (!npinfo
|| !netif_running(dev
) || !netif_device_present(dev
)) {
374 /* don't get messages out of order, and no recursion */
375 if (skb_queue_len(&npinfo
->txq
) == 0 && !netpoll_owner_active(dev
)) {
376 struct netdev_queue
*txq
;
378 txq
= netdev_pick_tx(dev
, skb
);
380 /* try until next clock tick */
381 for (tries
= jiffies_to_usecs(1)/USEC_PER_POLL
;
382 tries
> 0; --tries
) {
383 if (__netif_tx_trylock(txq
)) {
384 if (!netif_xmit_stopped(txq
)) {
385 if (vlan_tx_tag_present(skb
) &&
386 !vlan_hw_offload_capable(netif_skb_features(skb
),
388 skb
= __vlan_put_tag(skb
, skb
->vlan_proto
, vlan_tx_tag_get(skb
));
394 status
= ops
->ndo_start_xmit(skb
, dev
);
395 if (status
== NETDEV_TX_OK
)
396 txq_trans_update(txq
);
398 __netif_tx_unlock(txq
);
400 if (status
== NETDEV_TX_OK
)
405 /* tickle device maybe there is some cleanup */
406 netpoll_poll_dev(np
->dev
);
408 udelay(USEC_PER_POLL
);
411 WARN_ONCE(!irqs_disabled(),
412 "netpoll_send_skb_on_dev(): %s enabled interrupts in poll (%pF)\n",
413 dev
->name
, ops
->ndo_start_xmit
);
417 if (status
!= NETDEV_TX_OK
) {
418 skb_queue_tail(&npinfo
->txq
, skb
);
419 schedule_delayed_work(&npinfo
->tx_work
,0);
422 EXPORT_SYMBOL(netpoll_send_skb_on_dev
);
424 void netpoll_send_udp(struct netpoll
*np
, const char *msg
, int len
)
426 int total_len
, ip_len
, udp_len
;
431 static atomic_t ip_ident
;
432 struct ipv6hdr
*ip6h
;
434 udp_len
= len
+ sizeof(*udph
);
436 ip_len
= udp_len
+ sizeof(*ip6h
);
438 ip_len
= udp_len
+ sizeof(*iph
);
440 total_len
= ip_len
+ LL_RESERVED_SPACE(np
->dev
);
442 skb
= find_skb(np
, total_len
+ np
->dev
->needed_tailroom
,
447 skb_copy_to_linear_data(skb
, msg
, len
);
450 skb_push(skb
, sizeof(*udph
));
451 skb_reset_transport_header(skb
);
453 udph
->source
= htons(np
->local_port
);
454 udph
->dest
= htons(np
->remote_port
);
455 udph
->len
= htons(udp_len
);
459 udph
->check
= csum_ipv6_magic(&np
->local_ip
.in6
,
461 udp_len
, IPPROTO_UDP
,
462 csum_partial(udph
, udp_len
, 0));
463 if (udph
->check
== 0)
464 udph
->check
= CSUM_MANGLED_0
;
466 skb_push(skb
, sizeof(*ip6h
));
467 skb_reset_network_header(skb
);
468 ip6h
= ipv6_hdr(skb
);
470 /* ip6h->version = 6; ip6h->priority = 0; */
471 put_unaligned(0x60, (unsigned char *)ip6h
);
472 ip6h
->flow_lbl
[0] = 0;
473 ip6h
->flow_lbl
[1] = 0;
474 ip6h
->flow_lbl
[2] = 0;
476 ip6h
->payload_len
= htons(sizeof(struct udphdr
) + len
);
477 ip6h
->nexthdr
= IPPROTO_UDP
;
478 ip6h
->hop_limit
= 32;
479 ip6h
->saddr
= np
->local_ip
.in6
;
480 ip6h
->daddr
= np
->remote_ip
.in6
;
482 eth
= (struct ethhdr
*) skb_push(skb
, ETH_HLEN
);
483 skb_reset_mac_header(skb
);
484 skb
->protocol
= eth
->h_proto
= htons(ETH_P_IPV6
);
487 udph
->check
= csum_tcpudp_magic(np
->local_ip
.ip
,
489 udp_len
, IPPROTO_UDP
,
490 csum_partial(udph
, udp_len
, 0));
491 if (udph
->check
== 0)
492 udph
->check
= CSUM_MANGLED_0
;
494 skb_push(skb
, sizeof(*iph
));
495 skb_reset_network_header(skb
);
498 /* iph->version = 4; iph->ihl = 5; */
499 put_unaligned(0x45, (unsigned char *)iph
);
501 put_unaligned(htons(ip_len
), &(iph
->tot_len
));
502 iph
->id
= htons(atomic_inc_return(&ip_ident
));
505 iph
->protocol
= IPPROTO_UDP
;
507 put_unaligned(np
->local_ip
.ip
, &(iph
->saddr
));
508 put_unaligned(np
->remote_ip
.ip
, &(iph
->daddr
));
509 iph
->check
= ip_fast_csum((unsigned char *)iph
, iph
->ihl
);
511 eth
= (struct ethhdr
*) skb_push(skb
, ETH_HLEN
);
512 skb_reset_mac_header(skb
);
513 skb
->protocol
= eth
->h_proto
= htons(ETH_P_IP
);
516 memcpy(eth
->h_source
, np
->dev
->dev_addr
, ETH_ALEN
);
517 memcpy(eth
->h_dest
, np
->remote_mac
, ETH_ALEN
);
521 netpoll_send_skb(np
, skb
);
523 EXPORT_SYMBOL(netpoll_send_udp
);
525 static void netpoll_neigh_reply(struct sk_buff
*skb
, struct netpoll_info
*npinfo
)
527 int size
, type
= ARPOP_REPLY
;
530 struct sk_buff
*send_skb
;
531 struct netpoll
*np
, *tmp
;
536 if (list_empty(&npinfo
->rx_np
))
539 /* Before checking the packet, we do some early
540 inspection whether this is interesting at all */
541 spin_lock_irqsave(&npinfo
->rx_lock
, flags
);
542 list_for_each_entry_safe(np
, tmp
, &npinfo
->rx_np
, rx
) {
543 if (np
->dev
== skb
->dev
)
546 spin_unlock_irqrestore(&npinfo
->rx_lock
, flags
);
548 /* No netpoll struct is using this dev */
552 proto
= ntohs(eth_hdr(skb
)->h_proto
);
553 if (proto
== ETH_P_IP
) {
555 unsigned char *arp_ptr
;
556 /* No arp on this interface */
557 if (skb
->dev
->flags
& IFF_NOARP
)
560 if (!pskb_may_pull(skb
, arp_hdr_len(skb
->dev
)))
563 skb_reset_network_header(skb
);
564 skb_reset_transport_header(skb
);
567 if ((arp
->ar_hrd
!= htons(ARPHRD_ETHER
) &&
568 arp
->ar_hrd
!= htons(ARPHRD_IEEE802
)) ||
569 arp
->ar_pro
!= htons(ETH_P_IP
) ||
570 arp
->ar_op
!= htons(ARPOP_REQUEST
))
573 arp_ptr
= (unsigned char *)(arp
+1);
574 /* save the location of the src hw addr */
576 arp_ptr
+= skb
->dev
->addr_len
;
577 memcpy(&sip
, arp_ptr
, 4);
579 /* If we actually cared about dst hw addr,
580 it would get copied here */
581 arp_ptr
+= skb
->dev
->addr_len
;
582 memcpy(&tip
, arp_ptr
, 4);
584 /* Should we ignore arp? */
585 if (ipv4_is_loopback(tip
) || ipv4_is_multicast(tip
))
588 size
= arp_hdr_len(skb
->dev
);
590 spin_lock_irqsave(&npinfo
->rx_lock
, flags
);
591 list_for_each_entry_safe(np
, tmp
, &npinfo
->rx_np
, rx
) {
592 if (tip
!= np
->local_ip
.ip
)
595 hlen
= LL_RESERVED_SPACE(np
->dev
);
596 tlen
= np
->dev
->needed_tailroom
;
597 send_skb
= find_skb(np
, size
+ hlen
+ tlen
, hlen
);
601 skb_reset_network_header(send_skb
);
602 arp
= (struct arphdr
*) skb_put(send_skb
, size
);
603 send_skb
->dev
= skb
->dev
;
604 send_skb
->protocol
= htons(ETH_P_ARP
);
606 /* Fill the device header for the ARP frame */
607 if (dev_hard_header(send_skb
, skb
->dev
, ETH_P_ARP
,
608 sha
, np
->dev
->dev_addr
,
609 send_skb
->len
) < 0) {
615 * Fill out the arp protocol part.
617 * we only support ethernet device type,
618 * which (according to RFC 1390) should
619 * always equal 1 (Ethernet).
622 arp
->ar_hrd
= htons(np
->dev
->type
);
623 arp
->ar_pro
= htons(ETH_P_IP
);
624 arp
->ar_hln
= np
->dev
->addr_len
;
626 arp
->ar_op
= htons(type
);
628 arp_ptr
= (unsigned char *)(arp
+ 1);
629 memcpy(arp_ptr
, np
->dev
->dev_addr
, np
->dev
->addr_len
);
630 arp_ptr
+= np
->dev
->addr_len
;
631 memcpy(arp_ptr
, &tip
, 4);
633 memcpy(arp_ptr
, sha
, np
->dev
->addr_len
);
634 arp_ptr
+= np
->dev
->addr_len
;
635 memcpy(arp_ptr
, &sip
, 4);
637 netpoll_send_skb(np
, send_skb
);
639 /* If there are several rx_hooks for the same address,
640 we're fine by sending a single reply */
643 spin_unlock_irqrestore(&npinfo
->rx_lock
, flags
);
644 } else if( proto
== ETH_P_IPV6
) {
645 #if IS_ENABLED(CONFIG_IPV6)
649 struct icmp6hdr
*icmp6h
;
650 const struct in6_addr
*saddr
;
651 const struct in6_addr
*daddr
;
652 struct inet6_dev
*in6_dev
= NULL
;
653 struct in6_addr
*target
;
655 in6_dev
= in6_dev_get(skb
->dev
);
656 if (!in6_dev
|| !in6_dev
->cnf
.accept_ra
)
659 if (!pskb_may_pull(skb
, skb
->len
))
662 msg
= (struct nd_msg
*)skb_transport_header(skb
);
664 __skb_push(skb
, skb
->data
- skb_transport_header(skb
));
666 if (ipv6_hdr(skb
)->hop_limit
!= 255)
668 if (msg
->icmph
.icmp6_code
!= 0)
670 if (msg
->icmph
.icmp6_type
!= NDISC_NEIGHBOUR_SOLICITATION
)
673 saddr
= &ipv6_hdr(skb
)->saddr
;
674 daddr
= &ipv6_hdr(skb
)->daddr
;
676 size
= sizeof(struct icmp6hdr
) + sizeof(struct in6_addr
);
678 spin_lock_irqsave(&npinfo
->rx_lock
, flags
);
679 list_for_each_entry_safe(np
, tmp
, &npinfo
->rx_np
, rx
) {
680 if (!ipv6_addr_equal(daddr
, &np
->local_ip
.in6
))
683 hlen
= LL_RESERVED_SPACE(np
->dev
);
684 tlen
= np
->dev
->needed_tailroom
;
685 send_skb
= find_skb(np
, size
+ hlen
+ tlen
, hlen
);
689 send_skb
->protocol
= htons(ETH_P_IPV6
);
690 send_skb
->dev
= skb
->dev
;
692 skb_reset_network_header(send_skb
);
693 hdr
= (struct ipv6hdr
*) skb_put(send_skb
, sizeof(struct ipv6hdr
));
694 *(__be32
*)hdr
= htonl(0x60000000);
695 hdr
->payload_len
= htons(size
);
696 hdr
->nexthdr
= IPPROTO_ICMPV6
;
697 hdr
->hop_limit
= 255;
701 icmp6h
= (struct icmp6hdr
*) skb_put(send_skb
, sizeof(struct icmp6hdr
));
702 icmp6h
->icmp6_type
= NDISC_NEIGHBOUR_ADVERTISEMENT
;
703 icmp6h
->icmp6_router
= 0;
704 icmp6h
->icmp6_solicited
= 1;
706 target
= (struct in6_addr
*) skb_put(send_skb
, sizeof(struct in6_addr
));
707 *target
= msg
->target
;
708 icmp6h
->icmp6_cksum
= csum_ipv6_magic(saddr
, daddr
, size
,
713 if (dev_hard_header(send_skb
, skb
->dev
, ETH_P_IPV6
,
714 lladdr
, np
->dev
->dev_addr
,
715 send_skb
->len
) < 0) {
720 netpoll_send_skb(np
, send_skb
);
722 /* If there are several rx_hooks for the same address,
723 we're fine by sending a single reply */
726 spin_unlock_irqrestore(&npinfo
->rx_lock
, flags
);
731 static bool pkt_is_ns(struct sk_buff
*skb
)
736 if (skb
->protocol
!= htons(ETH_P_ARP
))
738 if (!pskb_may_pull(skb
, sizeof(struct ipv6hdr
) + sizeof(struct nd_msg
)))
741 msg
= (struct nd_msg
*)skb_transport_header(skb
);
742 __skb_push(skb
, skb
->data
- skb_transport_header(skb
));
745 if (hdr
->nexthdr
!= IPPROTO_ICMPV6
)
747 if (hdr
->hop_limit
!= 255)
749 if (msg
->icmph
.icmp6_code
!= 0)
751 if (msg
->icmph
.icmp6_type
!= NDISC_NEIGHBOUR_SOLICITATION
)
757 int __netpoll_rx(struct sk_buff
*skb
, struct netpoll_info
*npinfo
)
759 int proto
, len
, ulen
;
761 const struct iphdr
*iph
;
763 struct netpoll
*np
, *tmp
;
765 if (list_empty(&npinfo
->rx_np
))
768 if (skb
->dev
->type
!= ARPHRD_ETHER
)
771 /* check if netpoll clients need ARP */
772 if (skb
->protocol
== htons(ETH_P_ARP
) && atomic_read(&trapped
)) {
773 skb_queue_tail(&npinfo
->neigh_tx
, skb
);
775 } else if (pkt_is_ns(skb
) && atomic_read(&trapped
)) {
776 skb_queue_tail(&npinfo
->neigh_tx
, skb
);
780 if (skb
->protocol
== cpu_to_be16(ETH_P_8021Q
)) {
781 skb
= vlan_untag(skb
);
786 proto
= ntohs(eth_hdr(skb
)->h_proto
);
787 if (proto
!= ETH_P_IP
&& proto
!= ETH_P_IPV6
)
789 if (skb
->pkt_type
== PACKET_OTHERHOST
)
794 if (proto
== ETH_P_IP
) {
795 if (!pskb_may_pull(skb
, sizeof(struct iphdr
)))
797 iph
= (struct iphdr
*)skb
->data
;
798 if (iph
->ihl
< 5 || iph
->version
!= 4)
800 if (!pskb_may_pull(skb
, iph
->ihl
*4))
802 iph
= (struct iphdr
*)skb
->data
;
803 if (ip_fast_csum((u8
*)iph
, iph
->ihl
) != 0)
806 len
= ntohs(iph
->tot_len
);
807 if (skb
->len
< len
|| len
< iph
->ihl
*4)
811 * Our transport medium may have padded the buffer out.
812 * Now We trim to the true length of the frame.
814 if (pskb_trim_rcsum(skb
, len
))
817 iph
= (struct iphdr
*)skb
->data
;
818 if (iph
->protocol
!= IPPROTO_UDP
)
822 uh
= (struct udphdr
*)(((char *)iph
) + iph
->ihl
*4);
823 ulen
= ntohs(uh
->len
);
827 if (checksum_udp(skb
, uh
, ulen
, iph
->saddr
, iph
->daddr
))
829 list_for_each_entry_safe(np
, tmp
, &npinfo
->rx_np
, rx
) {
830 if (np
->local_ip
.ip
&& np
->local_ip
.ip
!= iph
->daddr
)
832 if (np
->remote_ip
.ip
&& np
->remote_ip
.ip
!= iph
->saddr
)
834 if (np
->local_port
&& np
->local_port
!= ntohs(uh
->dest
))
837 np
->rx_hook(np
, ntohs(uh
->source
),
839 ulen
- sizeof(struct udphdr
));
843 #if IS_ENABLED(CONFIG_IPV6)
844 const struct ipv6hdr
*ip6h
;
846 if (!pskb_may_pull(skb
, sizeof(struct ipv6hdr
)))
848 ip6h
= (struct ipv6hdr
*)skb
->data
;
849 if (ip6h
->version
!= 6)
851 len
= ntohs(ip6h
->payload_len
);
854 if (len
+ sizeof(struct ipv6hdr
) > skb
->len
)
856 if (pskb_trim_rcsum(skb
, len
+ sizeof(struct ipv6hdr
)))
858 ip6h
= ipv6_hdr(skb
);
859 if (!pskb_may_pull(skb
, sizeof(struct udphdr
)))
862 ulen
= ntohs(uh
->len
);
863 if (ulen
!= skb
->len
)
865 if (udp6_csum_init(skb
, uh
, IPPROTO_UDP
))
867 list_for_each_entry_safe(np
, tmp
, &npinfo
->rx_np
, rx
) {
868 if (!ipv6_addr_equal(&np
->local_ip
.in6
, &ip6h
->daddr
))
870 if (!ipv6_addr_equal(&np
->remote_ip
.in6
, &ip6h
->saddr
))
872 if (np
->local_port
&& np
->local_port
!= ntohs(uh
->dest
))
875 np
->rx_hook(np
, ntohs(uh
->source
),
877 ulen
- sizeof(struct udphdr
));
890 if (atomic_read(&trapped
)) {
898 void netpoll_print_options(struct netpoll
*np
)
900 np_info(np
, "local port %d\n", np
->local_port
);
902 np_info(np
, "local IPv6 address %pI6c\n", &np
->local_ip
.in6
);
904 np_info(np
, "local IPv4 address %pI4\n", &np
->local_ip
.ip
);
905 np_info(np
, "interface '%s'\n", np
->dev_name
);
906 np_info(np
, "remote port %d\n", np
->remote_port
);
908 np_info(np
, "remote IPv6 address %pI6c\n", &np
->remote_ip
.in6
);
910 np_info(np
, "remote IPv4 address %pI4\n", &np
->remote_ip
.ip
);
911 np_info(np
, "remote ethernet address %pM\n", np
->remote_mac
);
913 EXPORT_SYMBOL(netpoll_print_options
);
915 static int netpoll_parse_ip_addr(const char *str
, union inet_addr
*addr
)
919 if (!strchr(str
, ':') &&
920 in4_pton(str
, -1, (void *)addr
, -1, &end
) > 0) {
924 if (in6_pton(str
, -1, addr
->in6
.s6_addr
, -1, &end
) > 0) {
925 #if IS_ENABLED(CONFIG_IPV6)
935 int netpoll_parse_options(struct netpoll
*np
, char *opt
)
937 char *cur
=opt
, *delim
;
941 if ((delim
= strchr(cur
, '@')) == NULL
)
944 if (kstrtou16(cur
, 10, &np
->local_port
))
951 if ((delim
= strchr(cur
, '/')) == NULL
)
954 ipv6
= netpoll_parse_ip_addr(cur
, &np
->local_ip
);
958 np
->ipv6
= (bool)ipv6
;
964 /* parse out dev name */
965 if ((delim
= strchr(cur
, ',')) == NULL
)
968 strlcpy(np
->dev_name
, cur
, sizeof(np
->dev_name
));
975 if ((delim
= strchr(cur
, '@')) == NULL
)
978 if (*cur
== ' ' || *cur
== '\t')
979 np_info(np
, "warning: whitespace is not allowed\n");
980 if (kstrtou16(cur
, 10, &np
->remote_port
))
987 if ((delim
= strchr(cur
, '/')) == NULL
)
990 ipv6
= netpoll_parse_ip_addr(cur
, &np
->remote_ip
);
993 else if (np
->ipv6
!= (bool)ipv6
)
996 np
->ipv6
= (bool)ipv6
;
1001 if (!mac_pton(cur
, np
->remote_mac
))
1005 netpoll_print_options(np
);
1010 np_info(np
, "couldn't parse config at '%s'!\n", cur
);
1013 EXPORT_SYMBOL(netpoll_parse_options
);
1015 int __netpoll_setup(struct netpoll
*np
, struct net_device
*ndev
, gfp_t gfp
)
1017 struct netpoll_info
*npinfo
;
1018 const struct net_device_ops
*ops
;
1019 unsigned long flags
;
1023 strlcpy(np
->dev_name
, ndev
->name
, IFNAMSIZ
);
1024 INIT_WORK(&np
->cleanup_work
, netpoll_async_cleanup
);
1026 if ((ndev
->priv_flags
& IFF_DISABLE_NETPOLL
) ||
1027 !ndev
->netdev_ops
->ndo_poll_controller
) {
1028 np_err(np
, "%s doesn't support polling, aborting\n",
1034 if (!ndev
->npinfo
) {
1035 npinfo
= kmalloc(sizeof(*npinfo
), gfp
);
1041 npinfo
->rx_flags
= 0;
1042 INIT_LIST_HEAD(&npinfo
->rx_np
);
1044 spin_lock_init(&npinfo
->rx_lock
);
1045 sema_init(&npinfo
->dev_lock
, 1);
1046 skb_queue_head_init(&npinfo
->neigh_tx
);
1047 skb_queue_head_init(&npinfo
->txq
);
1048 INIT_DELAYED_WORK(&npinfo
->tx_work
, queue_process
);
1050 atomic_set(&npinfo
->refcnt
, 1);
1052 ops
= np
->dev
->netdev_ops
;
1053 if (ops
->ndo_netpoll_setup
) {
1054 err
= ops
->ndo_netpoll_setup(ndev
, npinfo
, gfp
);
1059 npinfo
= rtnl_dereference(ndev
->npinfo
);
1060 atomic_inc(&npinfo
->refcnt
);
1063 npinfo
->netpoll
= np
;
1066 spin_lock_irqsave(&npinfo
->rx_lock
, flags
);
1067 npinfo
->rx_flags
|= NETPOLL_RX_ENABLED
;
1068 list_add_tail(&np
->rx
, &npinfo
->rx_np
);
1069 spin_unlock_irqrestore(&npinfo
->rx_lock
, flags
);
1072 /* last thing to do is link it to the net device structure */
1073 rcu_assign_pointer(ndev
->npinfo
, npinfo
);
1082 EXPORT_SYMBOL_GPL(__netpoll_setup
);
1084 int netpoll_setup(struct netpoll
*np
)
1086 struct net_device
*ndev
= NULL
;
1087 struct in_device
*in_dev
;
1092 struct net
*net
= current
->nsproxy
->net_ns
;
1093 ndev
= __dev_get_by_name(net
, np
->dev_name
);
1096 np_err(np
, "%s doesn't exist, aborting\n", np
->dev_name
);
1102 if (netdev_master_upper_dev_get(ndev
)) {
1103 np_err(np
, "%s is a slave device, aborting\n", np
->dev_name
);
1108 if (!netif_running(ndev
)) {
1109 unsigned long atmost
, atleast
;
1111 np_info(np
, "device %s not up yet, forcing it\n", np
->dev_name
);
1113 err
= dev_open(ndev
);
1116 np_err(np
, "failed to open %s\n", ndev
->name
);
1121 atleast
= jiffies
+ HZ
/10;
1122 atmost
= jiffies
+ carrier_timeout
* HZ
;
1123 while (!netif_carrier_ok(ndev
)) {
1124 if (time_after(jiffies
, atmost
)) {
1125 np_notice(np
, "timeout waiting for carrier\n");
1131 /* If carrier appears to come up instantly, we don't
1132 * trust it and pause so that we don't pump all our
1133 * queued console messages into the bitbucket.
1136 if (time_before(jiffies
, atleast
)) {
1137 np_notice(np
, "carrier detect appears untrustworthy, waiting 4 seconds\n");
1143 if (!np
->local_ip
.ip
) {
1145 in_dev
= __in_dev_get_rtnl(ndev
);
1147 if (!in_dev
|| !in_dev
->ifa_list
) {
1148 np_err(np
, "no IP address for %s, aborting\n",
1150 err
= -EDESTADDRREQ
;
1154 np
->local_ip
.ip
= in_dev
->ifa_list
->ifa_local
;
1155 np_info(np
, "local IP %pI4\n", &np
->local_ip
.ip
);
1157 #if IS_ENABLED(CONFIG_IPV6)
1158 struct inet6_dev
*idev
;
1160 err
= -EDESTADDRREQ
;
1161 idev
= __in6_dev_get(ndev
);
1163 struct inet6_ifaddr
*ifp
;
1165 read_lock_bh(&idev
->lock
);
1166 list_for_each_entry(ifp
, &idev
->addr_list
, if_list
) {
1167 if (ipv6_addr_type(&ifp
->addr
) & IPV6_ADDR_LINKLOCAL
)
1169 np
->local_ip
.in6
= ifp
->addr
;
1173 read_unlock_bh(&idev
->lock
);
1176 np_err(np
, "no IPv6 address for %s, aborting\n",
1180 np_info(np
, "local IPv6 %pI6c\n", &np
->local_ip
.in6
);
1182 np_err(np
, "IPv6 is not supported %s, aborting\n",
1190 /* fill up the skb queue */
1193 err
= __netpoll_setup(np
, ndev
, GFP_KERNEL
);
1206 EXPORT_SYMBOL(netpoll_setup
);
1208 static int __init
netpoll_init(void)
1210 skb_queue_head_init(&skb_pool
);
1213 core_initcall(netpoll_init
);
1215 static void rcu_cleanup_netpoll_info(struct rcu_head
*rcu_head
)
1217 struct netpoll_info
*npinfo
=
1218 container_of(rcu_head
, struct netpoll_info
, rcu
);
1220 skb_queue_purge(&npinfo
->neigh_tx
);
1221 skb_queue_purge(&npinfo
->txq
);
1223 /* we can't call cancel_delayed_work_sync here, as we are in softirq */
1224 cancel_delayed_work(&npinfo
->tx_work
);
1226 /* clean after last, unfinished work */
1227 __skb_queue_purge(&npinfo
->txq
);
1228 /* now cancel it again */
1229 cancel_delayed_work(&npinfo
->tx_work
);
1233 void __netpoll_cleanup(struct netpoll
*np
)
1235 struct netpoll_info
*npinfo
;
1236 unsigned long flags
;
1238 /* rtnl_dereference would be preferable here but
1239 * rcu_cleanup_netpoll path can put us in here safely without
1240 * holding the rtnl, so plain rcu_dereference it is
1242 npinfo
= rtnl_dereference(np
->dev
->npinfo
);
1246 if (!list_empty(&npinfo
->rx_np
)) {
1247 spin_lock_irqsave(&npinfo
->rx_lock
, flags
);
1249 if (list_empty(&npinfo
->rx_np
))
1250 npinfo
->rx_flags
&= ~NETPOLL_RX_ENABLED
;
1251 spin_unlock_irqrestore(&npinfo
->rx_lock
, flags
);
1254 synchronize_srcu(&netpoll_srcu
);
1256 if (atomic_dec_and_test(&npinfo
->refcnt
)) {
1257 const struct net_device_ops
*ops
;
1259 ops
= np
->dev
->netdev_ops
;
1260 if (ops
->ndo_netpoll_cleanup
)
1261 ops
->ndo_netpoll_cleanup(np
->dev
);
1263 rcu_assign_pointer(np
->dev
->npinfo
, NULL
);
1264 call_rcu_bh(&npinfo
->rcu
, rcu_cleanup_netpoll_info
);
1267 EXPORT_SYMBOL_GPL(__netpoll_cleanup
);
1269 static void netpoll_async_cleanup(struct work_struct
*work
)
1271 struct netpoll
*np
= container_of(work
, struct netpoll
, cleanup_work
);
1274 __netpoll_cleanup(np
);
1279 void __netpoll_free_async(struct netpoll
*np
)
1281 schedule_work(&np
->cleanup_work
);
1283 EXPORT_SYMBOL_GPL(__netpoll_free_async
);
1285 void netpoll_cleanup(struct netpoll
*np
)
1291 __netpoll_cleanup(np
);
1297 EXPORT_SYMBOL(netpoll_cleanup
);
1299 int netpoll_trap(void)
1301 return atomic_read(&trapped
);
1303 EXPORT_SYMBOL(netpoll_trap
);
1305 void netpoll_set_trap(int trap
)
1308 atomic_inc(&trapped
);
1310 atomic_dec(&trapped
);
1312 EXPORT_SYMBOL(netpoll_set_trap
);