blob: e9e231215865bd6218abd37c320784ab3976235e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Mackall53fb95d2005-08-11 19:27:43 -070012#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/list.h>
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015struct netpoll {
16 struct net_device *dev;
WANG Cong0e34e932010-05-06 00:47:21 -070017 struct net_device *real_dev;
Stephen Hemmingerbf6bce72006-10-26 15:46:56 -070018 char dev_name[IFNAMSIZ];
19 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 void (*rx_hook)(struct netpoll *, int, char *, int);
Stephen Hemminger5de4a472006-10-26 15:46:55 -070021
Harvey Harrisone7557af2009-03-28 15:38:31 +000022 __be32 local_ip, remote_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 u16 local_port, remote_port;
Stephen Hemminger09538642007-11-19 19:23:29 -080024 u8 remote_mac[ETH_ALEN];
Daniel Borkmann508e14b2010-01-12 14:27:30 +000025
26 struct list_head rx; /* rx_np list element */
Jeff Moyer115c1d62005-06-22 22:05:31 -070027};
28
29struct netpoll_info {
Stephen Hemminger93ec2c72006-10-26 15:46:50 -070030 atomic_t refcnt;
Daniel Borkmann508e14b2010-01-12 14:27:30 +000031
David S. Millerd9452e92008-03-04 12:28:49 -080032 int rx_flags;
Jeff Moyerfbeec2e2005-06-22 22:05:59 -070033 spinlock_t rx_lock;
Daniel Borkmann508e14b2010-01-12 14:27:30 +000034 struct list_head rx_np; /* netpolls that registered an rx_hook */
35
Neil Horman068c6e92006-06-26 00:04:27 -070036 struct sk_buff_head arp_tx; /* list of arp requests to reply to */
Stephen Hemmingerb6cd27e2006-10-26 15:46:51 -070037 struct sk_buff_head txq;
Daniel Borkmann508e14b2010-01-12 14:27:30 +000038
David Howells6d5aefb2006-12-05 19:36:26 +000039 struct delayed_work tx_work;
WANG Cong0e34e932010-05-06 00:47:21 -070040
41 struct netpoll *netpoll;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042};
43
WANG Cong0e34e932010-05-06 00:47:21 -070044void netpoll_poll_dev(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045void netpoll_poll(struct netpoll *np);
46void netpoll_send_udp(struct netpoll *np, const char *msg, int len);
Satyam Sharma0bcc1812007-08-10 15:35:05 -070047void netpoll_print_options(struct netpoll *np);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048int netpoll_parse_options(struct netpoll *np, char *opt);
49int netpoll_setup(struct netpoll *np);
50int netpoll_trap(void);
51void netpoll_set_trap(int trap);
52void netpoll_cleanup(struct netpoll *np);
53int __netpoll_rx(struct sk_buff *skb);
WANG Cong0e34e932010-05-06 00:47:21 -070054void netpoll_send_skb(struct netpoll *np, struct sk_buff *skb);
Stephen Hemminger5de4a472006-10-26 15:46:55 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#ifdef CONFIG_NETPOLL
David S. Millerffb27362010-05-06 01:20:10 -070058static inline bool netpoll_rx(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Jeff Moyer115c1d62005-06-22 22:05:31 -070060 struct netpoll_info *npinfo = skb->dev->npinfo;
Jeff Moyerfbeec2e2005-06-22 22:05:59 -070061 unsigned long flags;
David S. Millerffb27362010-05-06 01:20:10 -070062 bool ret = false;
Jeff Moyer115c1d62005-06-22 22:05:31 -070063
Daniel Borkmann508e14b2010-01-12 14:27:30 +000064 if (!npinfo || (list_empty(&npinfo->rx_np) && !npinfo->rx_flags))
David S. Millerffb27362010-05-06 01:20:10 -070065 return false;
Jeff Moyer115c1d62005-06-22 22:05:31 -070066
Jeff Moyerfbeec2e2005-06-22 22:05:59 -070067 spin_lock_irqsave(&npinfo->rx_lock, flags);
David S. Millerd9452e92008-03-04 12:28:49 -080068 /* check rx_flags again with the lock held */
69 if (npinfo->rx_flags && __netpoll_rx(skb))
David S. Millerffb27362010-05-06 01:20:10 -070070 ret = true;
Jeff Moyerfbeec2e2005-06-22 22:05:59 -070071 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
72
73 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
Herbert Xud1c76af2009-03-16 10:50:02 -070076static inline int netpoll_rx_on(struct sk_buff *skb)
77{
78 struct netpoll_info *npinfo = skb->dev->npinfo;
79
Daniel Borkmann508e14b2010-01-12 14:27:30 +000080 return npinfo && (!list_empty(&npinfo->rx_np) || npinfo->rx_flags);
Herbert Xud1c76af2009-03-16 10:50:02 -070081}
82
Stephen Hemmingerbea33482007-10-03 16:41:36 -070083static inline int netpoll_receive_skb(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Stephen Hemmingerbea33482007-10-03 16:41:36 -070085 if (!list_empty(&skb->dev->napi_list))
86 return netpoll_rx(skb);
87 return 0;
88}
89
90static inline void *netpoll_poll_lock(struct napi_struct *napi)
91{
92 struct net_device *dev = napi->dev;
93
Matt Mackall53fb95d2005-08-11 19:27:43 -070094 rcu_read_lock(); /* deal with race on ->npinfo */
Stephen Hemmingerbea33482007-10-03 16:41:36 -070095 if (dev && dev->npinfo) {
96 spin_lock(&napi->poll_lock);
97 napi->poll_owner = smp_processor_id();
98 return napi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
Matt Mackall53fb95d2005-08-11 19:27:43 -0700100 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
Matt Mackall53fb95d2005-08-11 19:27:43 -0700103static inline void netpoll_poll_unlock(void *have)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700105 struct napi_struct *napi = have;
Matt Mackall53fb95d2005-08-11 19:27:43 -0700106
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700107 if (napi) {
108 napi->poll_owner = -1;
109 spin_unlock(&napi->poll_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
Matt Mackall53fb95d2005-08-11 19:27:43 -0700111 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
114#else
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700115static inline int netpoll_rx(struct sk_buff *skb)
116{
117 return 0;
118}
Herbert Xud1c76af2009-03-16 10:50:02 -0700119static inline int netpoll_rx_on(struct sk_buff *skb)
120{
121 return 0;
122}
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700123static inline int netpoll_receive_skb(struct sk_buff *skb)
124{
125 return 0;
126}
127static inline void *netpoll_poll_lock(struct napi_struct *napi)
128{
129 return NULL;
130}
131static inline void netpoll_poll_unlock(void *have)
132{
133}
134static inline void netpoll_netdev_init(struct net_device *dev)
135{
136}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#endif
138
139#endif