blob: dea59c8eec54d69792271877cb34c09fba2c1cce [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_RTNETLINK_H
2#define __LINUX_RTNETLINK_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
Stephen Hemminger6756ae42006-03-20 22:23:58 -08005#include <linux/mutex.h>
Andy Whitcroft3b42a962010-11-15 06:01:59 +00006#include <linux/netdevice.h>
Cong Wang200b9162014-05-12 15:11:20 -07007#include <linux/wait.h>
David Howells607ca462012-10-13 10:46:48 +01008#include <uapi/linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080010extern int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, u32 group, int echo);
11extern int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -080012extern void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid,
13 u32 group, struct nlmsghdr *nlh, gfp_t flags);
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080014extern void rtnl_set_sk_err(struct net *net, u32 group, int error);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015extern int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics);
Thomas Grafe3703b32006-11-27 09:27:07 -080016extern int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst,
David S. Miller87a50692012-07-10 05:06:14 -070017 u32 id, long expires, u32 error);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Alexei Starovoitov7f294052013-10-23 16:02:42 -070019void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change, gfp_t flags);
Mahesh Bandewar395eea62014-12-03 13:46:24 -080020struct sk_buff *rtmsg_ifinfo_build_skb(int type, struct net_device *dev,
Vlad Yasevich3d3ea5a2017-05-27 10:14:34 -040021 unsigned change, u32 event,
22 gfp_t flags);
Mahesh Bandewar395eea62014-12-03 13:46:24 -080023void rtmsg_ifinfo_send(struct sk_buff *skb, struct net_device *dev,
24 gfp_t flags);
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Stephen Hemminger6756ae42006-03-20 22:23:58 -080027/* RTNL is used as a global lock for all changes to network configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028extern void rtnl_lock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029extern void rtnl_unlock(void);
Stephen Hemminger6756ae42006-03-20 22:23:58 -080030extern int rtnl_trylock(void);
Patrick McHardyc9c10142008-04-23 22:10:48 -070031extern int rtnl_is_locked(void);
Cong Wang200b9162014-05-12 15:11:20 -070032
33extern wait_queue_head_t netdev_unregistering_wq;
34extern struct mutex net_mutex;
35
Paul E. McKenneya898def2010-02-22 17:04:49 -080036#ifdef CONFIG_PROVE_LOCKING
Yaowei Bai0cbf3342015-10-08 21:29:02 +080037extern bool lockdep_rtnl_is_held(void);
John Fastabend85328242013-11-26 06:33:52 +000038#else
Yaowei Bai0cbf3342015-10-08 21:29:02 +080039static inline bool lockdep_rtnl_is_held(void)
John Fastabend85328242013-11-26 06:33:52 +000040{
Yaowei Bai0cbf3342015-10-08 21:29:02 +080041 return true;
John Fastabend85328242013-11-26 06:33:52 +000042}
Paul E. McKenneya898def2010-02-22 17:04:49 -080043#endif /* #ifdef CONFIG_PROVE_LOCKING */
Stephen Hemminger6756ae42006-03-20 22:23:58 -080044
Eric Dumazeta6e0fc82010-09-08 14:15:32 -070045/**
46 * rcu_dereference_rtnl - rcu_dereference with debug checking
47 * @p: The pointer to read, prior to dereferencing
48 *
49 * Do an rcu_dereference(p), but check caller either holds rcu_read_lock()
David S. Miller29fa0602010-10-05 00:29:48 -070050 * or RTNL. Note : Please prefer rtnl_dereference() or rcu_dereference()
Eric Dumazeta6e0fc82010-09-08 14:15:32 -070051 */
52#define rcu_dereference_rtnl(p) \
Michal Hockod8bf4ca2011-07-08 14:39:41 +020053 rcu_dereference_check(p, lockdep_rtnl_is_held())
Eric Dumazeta6e0fc82010-09-08 14:15:32 -070054
Eric Dumazet7dff59e2010-09-15 11:07:15 +000055/**
John Fastabend331b7292014-09-12 20:08:20 -070056 * rcu_dereference_bh_rtnl - rcu_dereference_bh with debug checking
57 * @p: The pointer to read, prior to dereference
58 *
59 * Do an rcu_dereference_bh(p), but check caller either holds rcu_read_lock_bh()
60 * or RTNL. Note : Please prefer rtnl_dereference() or rcu_dereference_bh()
61 */
62#define rcu_dereference_bh_rtnl(p) \
63 rcu_dereference_bh_check(p, lockdep_rtnl_is_held())
64
65/**
David S. Miller29fa0602010-10-05 00:29:48 -070066 * rtnl_dereference - fetch RCU pointer when updates are prevented by RTNL
Eric Dumazet7dff59e2010-09-15 11:07:15 +000067 * @p: The pointer to read, prior to dereferencing
68 *
David S. Miller29fa0602010-10-05 00:29:48 -070069 * Return the value of the specified RCU-protected pointer, but omit
70 * both the smp_read_barrier_depends() and the ACCESS_ONCE(), because
71 * caller holds RTNL.
Eric Dumazet7dff59e2010-09-15 11:07:15 +000072 */
73#define rtnl_dereference(p) \
David S. Miller29fa0602010-10-05 00:29:48 -070074 rcu_dereference_protected(p, lockdep_rtnl_is_held())
Eric Dumazet7dff59e2010-09-15 11:07:15 +000075
Eric Dumazet24824a02010-10-02 06:11:55 +000076static inline struct netdev_queue *dev_ingress_queue(struct net_device *dev)
77{
78 return rtnl_dereference(dev->ingress_queue);
79}
80
Daniel Borkmann45771392015-04-10 23:07:54 +020081struct netdev_queue *dev_ingress_queue_create(struct net_device *dev);
82
Pablo Neira1cf519002015-05-13 18:19:37 +020083#ifdef CONFIG_NET_INGRESS
Daniel Borkmann45771392015-04-10 23:07:54 +020084void net_inc_ingress_queue(void);
85void net_dec_ingress_queue(void);
Daniel Borkmann45771392015-04-10 23:07:54 +020086#endif
Eric Dumazet24824a02010-10-02 06:11:55 +000087
Daniel Borkmann1f211a12016-01-07 22:29:47 +010088#ifdef CONFIG_NET_EGRESS
89void net_inc_egress_queue(void);
90void net_dec_egress_queue(void);
91#endif
92
Eric Dumazet1b5c5492016-06-13 20:21:50 -070093void rtnetlink_init(void);
94void __rtnl_unlock(void);
95void rtnl_kfree_skbs(struct sk_buff *head, struct sk_buff *tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97#define ASSERT_RTNL() do { \
Patrick McHardyc9c10142008-04-23 22:10:48 -070098 if (unlikely(!rtnl_is_locked())) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 printk(KERN_ERR "RTNL: assertion failed at %s (%d)\n", \
100 __FILE__, __LINE__); \
101 dump_stack(); \
102 } \
103} while(0)
104
John Fastabend77162022012-04-15 06:43:56 +0000105extern int ndo_dflt_fdb_dump(struct sk_buff *skb,
106 struct netlink_callback *cb,
107 struct net_device *dev,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -0400108 struct net_device *filter_dev,
Roopa Prabhud2976532016-08-30 21:56:45 -0700109 int *idx);
Vlad Yasevich090096b2013-03-06 15:39:42 +0000110extern int ndo_dflt_fdb_add(struct ndmsg *ndm,
111 struct nlattr *tb[],
112 struct net_device *dev,
113 const unsigned char *addr,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100114 u16 vid,
115 u16 flags);
Vlad Yasevich090096b2013-03-06 15:39:42 +0000116extern int ndo_dflt_fdb_del(struct ndmsg *ndm,
117 struct nlattr *tb[],
118 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100119 const unsigned char *addr,
120 u16 vid);
John Fastabend815cccb2012-10-24 08:13:09 +0000121
122extern int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
Scott Feldman2c3c0312014-11-28 14:34:25 +0100123 struct net_device *dev, u16 mode,
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700124 u32 flags, u32 mask, int nlflags,
125 u32 filter_mask,
126 int (*vlan_fill)(struct sk_buff *skb,
127 struct net_device *dev,
128 u32 filter_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#endif /* __LINUX_RTNETLINK_H */