blob: 167bae7bdfa45cc255cdf9c22b986c1fffe8f9d5 [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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Stephen Hemminger6756ae42006-03-20 22:23:58 -080021/* RTNL is used as a global lock for all changes to network configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022extern void rtnl_lock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023extern void rtnl_unlock(void);
Stephen Hemminger6756ae42006-03-20 22:23:58 -080024extern int rtnl_trylock(void);
Patrick McHardyc9c10142008-04-23 22:10:48 -070025extern int rtnl_is_locked(void);
Cong Wang200b9162014-05-12 15:11:20 -070026
27extern wait_queue_head_t netdev_unregistering_wq;
28extern struct mutex net_mutex;
29
Paul E. McKenneya898def2010-02-22 17:04:49 -080030#ifdef CONFIG_PROVE_LOCKING
31extern int lockdep_rtnl_is_held(void);
John Fastabend85328242013-11-26 06:33:52 +000032#else
33static inline int lockdep_rtnl_is_held(void)
34{
35 return 1;
36}
Paul E. McKenneya898def2010-02-22 17:04:49 -080037#endif /* #ifdef CONFIG_PROVE_LOCKING */
Stephen Hemminger6756ae42006-03-20 22:23:58 -080038
Eric Dumazeta6e0fc82010-09-08 14:15:32 -070039/**
40 * rcu_dereference_rtnl - rcu_dereference with debug checking
41 * @p: The pointer to read, prior to dereferencing
42 *
43 * Do an rcu_dereference(p), but check caller either holds rcu_read_lock()
David S. Miller29fa0602010-10-05 00:29:48 -070044 * or RTNL. Note : Please prefer rtnl_dereference() or rcu_dereference()
Eric Dumazeta6e0fc82010-09-08 14:15:32 -070045 */
46#define rcu_dereference_rtnl(p) \
Michal Hockod8bf4ca2011-07-08 14:39:41 +020047 rcu_dereference_check(p, lockdep_rtnl_is_held())
Eric Dumazeta6e0fc82010-09-08 14:15:32 -070048
Eric Dumazet7dff59e2010-09-15 11:07:15 +000049/**
David S. Miller29fa0602010-10-05 00:29:48 -070050 * rtnl_dereference - fetch RCU pointer when updates are prevented by RTNL
Eric Dumazet7dff59e2010-09-15 11:07:15 +000051 * @p: The pointer to read, prior to dereferencing
52 *
David S. Miller29fa0602010-10-05 00:29:48 -070053 * Return the value of the specified RCU-protected pointer, but omit
54 * both the smp_read_barrier_depends() and the ACCESS_ONCE(), because
55 * caller holds RTNL.
Eric Dumazet7dff59e2010-09-15 11:07:15 +000056 */
57#define rtnl_dereference(p) \
David S. Miller29fa0602010-10-05 00:29:48 -070058 rcu_dereference_protected(p, lockdep_rtnl_is_held())
Eric Dumazet7dff59e2010-09-15 11:07:15 +000059
Eric Dumazet24824a02010-10-02 06:11:55 +000060static inline struct netdev_queue *dev_ingress_queue(struct net_device *dev)
61{
62 return rtnl_dereference(dev->ingress_queue);
63}
64
65extern struct netdev_queue *dev_ingress_queue_create(struct net_device *dev);
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067extern void rtnetlink_init(void);
Stephen Hemminger6756ae42006-03-20 22:23:58 -080068extern void __rtnl_unlock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#define ASSERT_RTNL() do { \
Patrick McHardyc9c10142008-04-23 22:10:48 -070071 if (unlikely(!rtnl_is_locked())) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 printk(KERN_ERR "RTNL: assertion failed at %s (%d)\n", \
73 __FILE__, __LINE__); \
74 dump_stack(); \
75 } \
76} while(0)
77
John Fastabend77162022012-04-15 06:43:56 +000078extern int ndo_dflt_fdb_dump(struct sk_buff *skb,
79 struct netlink_callback *cb,
80 struct net_device *dev,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -040081 struct net_device *filter_dev,
John Fastabend77162022012-04-15 06:43:56 +000082 int idx);
Vlad Yasevich090096b2013-03-06 15:39:42 +000083extern int ndo_dflt_fdb_add(struct ndmsg *ndm,
84 struct nlattr *tb[],
85 struct net_device *dev,
86 const unsigned char *addr,
87 u16 flags);
88extern int ndo_dflt_fdb_del(struct ndmsg *ndm,
89 struct nlattr *tb[],
90 struct net_device *dev,
91 const unsigned char *addr);
John Fastabend815cccb2012-10-24 08:13:09 +000092
93extern int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
94 struct net_device *dev, u16 mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#endif /* __LINUX_RTNETLINK_H */