blob: f28544b2f9af02b4dd2ebcfe5f9bf28a088e1f0d [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>
David Howells607ca462012-10-13 10:46:48 +01007#include <uapi/linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08009extern int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, u32 group, int echo);
10extern int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -080011extern void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid,
12 u32 group, struct nlmsghdr *nlh, gfp_t flags);
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080013extern void rtnl_set_sk_err(struct net *net, u32 group, int error);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014extern int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics);
Thomas Grafe3703b32006-11-27 09:27:07 -080015extern int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst,
David S. Miller87a50692012-07-10 05:06:14 -070016 u32 id, long expires, u32 error);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018extern void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change);
19
Stephen Hemminger6756ae42006-03-20 22:23:58 -080020/* RTNL is used as a global lock for all changes to network configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021extern void rtnl_lock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022extern void rtnl_unlock(void);
Stephen Hemminger6756ae42006-03-20 22:23:58 -080023extern int rtnl_trylock(void);
Patrick McHardyc9c10142008-04-23 22:10:48 -070024extern int rtnl_is_locked(void);
Paul E. McKenneya898def2010-02-22 17:04:49 -080025#ifdef CONFIG_PROVE_LOCKING
26extern int lockdep_rtnl_is_held(void);
27#endif /* #ifdef CONFIG_PROVE_LOCKING */
Stephen Hemminger6756ae42006-03-20 22:23:58 -080028
Eric Dumazeta6e0fc82010-09-08 14:15:32 -070029/**
30 * rcu_dereference_rtnl - rcu_dereference with debug checking
31 * @p: The pointer to read, prior to dereferencing
32 *
33 * Do an rcu_dereference(p), but check caller either holds rcu_read_lock()
David S. Miller29fa0602010-10-05 00:29:48 -070034 * or RTNL. Note : Please prefer rtnl_dereference() or rcu_dereference()
Eric Dumazeta6e0fc82010-09-08 14:15:32 -070035 */
36#define rcu_dereference_rtnl(p) \
Michal Hockod8bf4ca2011-07-08 14:39:41 +020037 rcu_dereference_check(p, lockdep_rtnl_is_held())
Eric Dumazeta6e0fc82010-09-08 14:15:32 -070038
Eric Dumazet7dff59e2010-09-15 11:07:15 +000039/**
David S. Miller29fa0602010-10-05 00:29:48 -070040 * rtnl_dereference - fetch RCU pointer when updates are prevented by RTNL
Eric Dumazet7dff59e2010-09-15 11:07:15 +000041 * @p: The pointer to read, prior to dereferencing
42 *
David S. Miller29fa0602010-10-05 00:29:48 -070043 * Return the value of the specified RCU-protected pointer, but omit
44 * both the smp_read_barrier_depends() and the ACCESS_ONCE(), because
45 * caller holds RTNL.
Eric Dumazet7dff59e2010-09-15 11:07:15 +000046 */
47#define rtnl_dereference(p) \
David S. Miller29fa0602010-10-05 00:29:48 -070048 rcu_dereference_protected(p, lockdep_rtnl_is_held())
Eric Dumazet7dff59e2010-09-15 11:07:15 +000049
Eric Dumazet24824a02010-10-02 06:11:55 +000050static inline struct netdev_queue *dev_ingress_queue(struct net_device *dev)
51{
52 return rtnl_dereference(dev->ingress_queue);
53}
54
55extern struct netdev_queue *dev_ingress_queue_create(struct net_device *dev);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057extern void rtnetlink_init(void);
Stephen Hemminger6756ae42006-03-20 22:23:58 -080058extern void __rtnl_unlock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#define ASSERT_RTNL() do { \
Patrick McHardyc9c10142008-04-23 22:10:48 -070061 if (unlikely(!rtnl_is_locked())) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 printk(KERN_ERR "RTNL: assertion failed at %s (%d)\n", \
63 __FILE__, __LINE__); \
64 dump_stack(); \
65 } \
66} while(0)
67
John Fastabend77162022012-04-15 06:43:56 +000068extern int ndo_dflt_fdb_dump(struct sk_buff *skb,
69 struct netlink_callback *cb,
70 struct net_device *dev,
71 int idx);
Vlad Yasevich090096b2013-03-06 15:39:42 +000072extern int ndo_dflt_fdb_add(struct ndmsg *ndm,
73 struct nlattr *tb[],
74 struct net_device *dev,
75 const unsigned char *addr,
76 u16 flags);
77extern int ndo_dflt_fdb_del(struct ndmsg *ndm,
78 struct nlattr *tb[],
79 struct net_device *dev,
80 const unsigned char *addr);
John Fastabend815cccb2012-10-24 08:13:09 +000081
82extern int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
83 struct net_device *dev, u16 mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#endif /* __LINUX_RTNETLINK_H */