Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Common code for low-level network console, dump, and debugger code |
| 3 | * |
| 4 | * Derived from netconsole, kgdb-over-ethernet, and netdump patches |
| 5 | */ |
| 6 | |
| 7 | #ifndef _LINUX_NETPOLL_H |
| 8 | #define _LINUX_NETPOLL_H |
| 9 | |
| 10 | #include <linux/netdevice.h> |
| 11 | #include <linux/interrupt.h> |
Matt Mackall | 53fb95d | 2005-08-11 19:27:43 -0700 | [diff] [blame] | 12 | #include <linux/rcupdate.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/list.h> |
| 14 | |
Cong Wang | b7394d2 | 2013-01-07 20:52:39 +0000 | [diff] [blame] | 15 | union inet_addr { |
| 16 | __u32 all[4]; |
| 17 | __be32 ip; |
| 18 | __be32 ip6[4]; |
| 19 | struct in_addr in; |
| 20 | struct in6_addr in6; |
| 21 | }; |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | struct netpoll { |
| 24 | struct net_device *dev; |
Stephen Hemminger | bf6bce7 | 2006-10-26 15:46:56 -0700 | [diff] [blame] | 25 | char dev_name[IFNAMSIZ]; |
| 26 | const char *name; |
Stephen Hemminger | 5de4a47 | 2006-10-26 15:46:55 -0700 | [diff] [blame] | 27 | |
Cong Wang | b7394d2 | 2013-01-07 20:52:39 +0000 | [diff] [blame] | 28 | union inet_addr local_ip, remote_ip; |
| 29 | bool ipv6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | u16 local_port, remote_port; |
Stephen Hemminger | 0953864 | 2007-11-19 19:23:29 -0800 | [diff] [blame] | 31 | u8 remote_mac[ETH_ALEN]; |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 32 | |
Neil Horman | 2cde6ac | 2013-02-11 10:25:30 +0000 | [diff] [blame] | 33 | struct work_struct cleanup_work; |
Jeff Moyer | 115c1d6 | 2005-06-22 22:05:31 -0700 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | struct netpoll_info { |
Stephen Hemminger | 93ec2c7 | 2006-10-26 15:46:50 -0700 | [diff] [blame] | 37 | atomic_t refcnt; |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 38 | |
Neil Horman | bd7c4b6 | 2013-04-30 05:35:05 +0000 | [diff] [blame] | 39 | struct semaphore dev_lock; |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 40 | |
Stephen Hemminger | b6cd27e | 2006-10-26 15:46:51 -0700 | [diff] [blame] | 41 | struct sk_buff_head txq; |
Daniel Borkmann | 508e14b | 2010-01-12 14:27:30 +0000 | [diff] [blame] | 42 | |
David Howells | 6d5aefb | 2006-12-05 19:36:26 +0000 | [diff] [blame] | 43 | struct delayed_work tx_work; |
WANG Cong | 0e34e93 | 2010-05-06 00:47:21 -0700 | [diff] [blame] | 44 | |
| 45 | struct netpoll *netpoll; |
Amerigo Wang | 38e6bc1 | 2012-08-10 01:24:38 +0000 | [diff] [blame] | 46 | struct rcu_head rcu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | }; |
| 48 | |
Neil Horman | ca99ca1 | 2013-02-05 08:05:43 +0000 | [diff] [blame] | 49 | #ifdef CONFIG_NETPOLL |
Eric W. Biederman | 66b5552 | 2014-03-27 15:39:03 -0700 | [diff] [blame] | 50 | extern void netpoll_poll_disable(struct net_device *dev); |
| 51 | extern void netpoll_poll_enable(struct net_device *dev); |
Neil Horman | ca99ca1 | 2013-02-05 08:05:43 +0000 | [diff] [blame] | 52 | #else |
Eric W. Biederman | 66b5552 | 2014-03-27 15:39:03 -0700 | [diff] [blame] | 53 | static inline void netpoll_poll_disable(struct net_device *dev) { return; } |
| 54 | static inline void netpoll_poll_enable(struct net_device *dev) { return; } |
Neil Horman | ca99ca1 | 2013-02-05 08:05:43 +0000 | [diff] [blame] | 55 | #endif |
| 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | void netpoll_send_udp(struct netpoll *np, const char *msg, int len); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 58 | void netpoll_print_options(struct netpoll *np); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | int netpoll_parse_options(struct netpoll *np, char *opt); |
Eric W. Biederman | a8779ec | 2014-03-27 15:36:38 -0700 | [diff] [blame] | 60 | int __netpoll_setup(struct netpoll *np, struct net_device *ndev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | int netpoll_setup(struct netpoll *np); |
Herbert Xu | 8fdd95e | 2010-06-10 16:12:48 +0000 | [diff] [blame] | 62 | void __netpoll_cleanup(struct netpoll *np); |
Neil Horman | 2cde6ac | 2013-02-11 10:25:30 +0000 | [diff] [blame] | 63 | void __netpoll_free_async(struct netpoll *np); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | void netpoll_cleanup(struct netpoll *np); |
Neil Horman | c2355e1 | 2010-10-13 16:01:49 +0000 | [diff] [blame] | 65 | void netpoll_send_skb_on_dev(struct netpoll *np, struct sk_buff *skb, |
| 66 | struct net_device *dev); |
| 67 | static inline void netpoll_send_skb(struct netpoll *np, struct sk_buff *skb) |
| 68 | { |
Amerigo Wang | 2899656 | 2012-08-10 01:24:42 +0000 | [diff] [blame] | 69 | unsigned long flags; |
| 70 | local_irq_save(flags); |
Neil Horman | c2355e1 | 2010-10-13 16:01:49 +0000 | [diff] [blame] | 71 | netpoll_send_skb_on_dev(np, skb, np->dev); |
Amerigo Wang | 2899656 | 2012-08-10 01:24:42 +0000 | [diff] [blame] | 72 | local_irq_restore(flags); |
Neil Horman | c2355e1 | 2010-10-13 16:01:49 +0000 | [diff] [blame] | 73 | } |
| 74 | |
Eric W. Biederman | e1bd4d3 | 2014-03-14 20:50:58 -0700 | [diff] [blame] | 75 | #ifdef CONFIG_NETPOLL |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 76 | static inline void *netpoll_poll_lock(struct napi_struct *napi) |
| 77 | { |
| 78 | struct net_device *dev = napi->dev; |
| 79 | |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 80 | if (dev && dev->npinfo) { |
| 81 | spin_lock(&napi->poll_lock); |
| 82 | napi->poll_owner = smp_processor_id(); |
| 83 | return napi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } |
Matt Mackall | 53fb95d | 2005-08-11 19:27:43 -0700 | [diff] [blame] | 85 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | } |
| 87 | |
Matt Mackall | 53fb95d | 2005-08-11 19:27:43 -0700 | [diff] [blame] | 88 | static inline void netpoll_poll_unlock(void *have) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 90 | struct napi_struct *napi = have; |
Matt Mackall | 53fb95d | 2005-08-11 19:27:43 -0700 | [diff] [blame] | 91 | |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 92 | if (napi) { |
| 93 | napi->poll_owner = -1; |
| 94 | spin_unlock(&napi->poll_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | } |
| 97 | |
Amerigo Wang | 77ab8a5 | 2012-08-10 01:24:46 +0000 | [diff] [blame] | 98 | static inline bool netpoll_tx_running(struct net_device *dev) |
Herbert Xu | c18370f | 2010-06-10 16:12:49 +0000 | [diff] [blame] | 99 | { |
| 100 | return irqs_disabled(); |
| 101 | } |
| 102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | #else |
Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 104 | static inline void *netpoll_poll_lock(struct napi_struct *napi) |
| 105 | { |
| 106 | return NULL; |
| 107 | } |
| 108 | static inline void netpoll_poll_unlock(void *have) |
| 109 | { |
| 110 | } |
| 111 | static inline void netpoll_netdev_init(struct net_device *dev) |
| 112 | { |
| 113 | } |
Amerigo Wang | 77ab8a5 | 2012-08-10 01:24:46 +0000 | [diff] [blame] | 114 | static inline bool netpoll_tx_running(struct net_device *dev) |
Herbert Xu | c18370f | 2010-06-10 16:12:49 +0000 | [diff] [blame] | 115 | { |
Amerigo Wang | 77ab8a5 | 2012-08-10 01:24:46 +0000 | [diff] [blame] | 116 | return false; |
Herbert Xu | c18370f | 2010-06-10 16:12:49 +0000 | [diff] [blame] | 117 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | #endif |
| 119 | |
| 120 | #endif |