rtnetlink.h 2.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
#ifndef __LINUX_RTNETLINK_H
#define __LINUX_RTNETLINK_H


5
#include <linux/mutex.h>
6
#include <linux/netdevice.h>
7
#include <uapi/linux/rtnetlink.h>
L
Linus Torvalds 已提交
8

9 10
extern int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, u32 group, int echo);
extern int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid);
11 12
extern void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid,
			u32 group, struct nlmsghdr *nlh, gfp_t flags);
13
extern void rtnl_set_sk_err(struct net *net, u32 group, int error);
L
Linus Torvalds 已提交
14
extern int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics);
15
extern int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst,
16
			      u32 id, long expires, u32 error);
L
Linus Torvalds 已提交
17 18 19

extern void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change);

20
/* RTNL is used as a global lock for all changes to network configuration  */
L
Linus Torvalds 已提交
21 22
extern void rtnl_lock(void);
extern void rtnl_unlock(void);
23
extern int rtnl_trylock(void);
24
extern int rtnl_is_locked(void);
25 26 27
#ifdef CONFIG_PROVE_LOCKING
extern int lockdep_rtnl_is_held(void);
#endif /* #ifdef CONFIG_PROVE_LOCKING */
28

29 30 31 32 33
/**
 * rcu_dereference_rtnl - rcu_dereference with debug checking
 * @p: The pointer to read, prior to dereferencing
 *
 * Do an rcu_dereference(p), but check caller either holds rcu_read_lock()
D
David S. Miller 已提交
34
 * or RTNL. Note : Please prefer rtnl_dereference() or rcu_dereference()
35 36
 */
#define rcu_dereference_rtnl(p)					\
37
	rcu_dereference_check(p, lockdep_rtnl_is_held())
38

E
Eric Dumazet 已提交
39
/**
D
David S. Miller 已提交
40
 * rtnl_dereference - fetch RCU pointer when updates are prevented by RTNL
E
Eric Dumazet 已提交
41 42
 * @p: The pointer to read, prior to dereferencing
 *
D
David S. Miller 已提交
43 44 45
 * Return the value of the specified RCU-protected pointer, but omit
 * both the smp_read_barrier_depends() and the ACCESS_ONCE(), because
 * caller holds RTNL.
E
Eric Dumazet 已提交
46 47
 */
#define rtnl_dereference(p)					\
D
David S. Miller 已提交
48
	rcu_dereference_protected(p, lockdep_rtnl_is_held())
E
Eric Dumazet 已提交
49

50 51 52 53 54 55 56
static inline struct netdev_queue *dev_ingress_queue(struct net_device *dev)
{
	return rtnl_dereference(dev->ingress_queue);
}

extern struct netdev_queue *dev_ingress_queue_create(struct net_device *dev);

L
Linus Torvalds 已提交
57
extern void rtnetlink_init(void);
58
extern void __rtnl_unlock(void);
L
Linus Torvalds 已提交
59 60

#define ASSERT_RTNL() do { \
61
	if (unlikely(!rtnl_is_locked())) { \
L
Linus Torvalds 已提交
62 63 64 65 66 67
		printk(KERN_ERR "RTNL: assertion failed at %s (%d)\n", \
		       __FILE__,  __LINE__); \
		dump_stack(); \
	} \
} while(0)

68 69 70 71
extern int ndo_dflt_fdb_dump(struct sk_buff *skb,
			     struct netlink_callback *cb,
			     struct net_device *dev,
			     int idx);
L
Linus Torvalds 已提交
72
#endif	/* __LINUX_RTNETLINK_H */