rtnetlink.h 4.2 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
L
Linus Torvalds 已提交
2 3 4 5
#ifndef __LINUX_RTNETLINK_H
#define __LINUX_RTNETLINK_H


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

11 12
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);
13 14
extern void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid,
			u32 group, struct nlmsghdr *nlh, gfp_t flags);
15
extern void rtnl_set_sk_err(struct net *net, u32 group, int error);
L
Linus Torvalds 已提交
16
extern int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics);
17
extern int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst,
18
			      u32 id, long expires, u32 error);
L
Linus Torvalds 已提交
19

20
void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change, gfp_t flags);
21
void rtmsg_ifinfo_newnet(int type, struct net_device *dev, unsigned int change,
22
			 gfp_t flags, int *new_nsid, int new_ifindex);
23
struct sk_buff *rtmsg_ifinfo_build_skb(int type, struct net_device *dev,
24
				       unsigned change, u32 event,
25 26
				       gfp_t flags, int *new_nsid,
				       int new_ifindex);
27 28 29
void rtmsg_ifinfo_send(struct sk_buff *skb, struct net_device *dev,
		       gfp_t flags);

L
Linus Torvalds 已提交
30

31
/* RTNL is used as a global lock for all changes to network configuration  */
L
Linus Torvalds 已提交
32 33
extern void rtnl_lock(void);
extern void rtnl_unlock(void);
34
extern int rtnl_trylock(void);
35
extern int rtnl_is_locked(void);
36 37 38 39

extern wait_queue_head_t netdev_unregistering_wq;
extern struct mutex net_mutex;

40
#ifdef CONFIG_PROVE_LOCKING
41
extern bool lockdep_rtnl_is_held(void);
42
#else
43
static inline bool lockdep_rtnl_is_held(void)
44
{
45
	return true;
46
}
47
#endif /* #ifdef CONFIG_PROVE_LOCKING */
48

49 50 51 52 53
/**
 * 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 已提交
54
 * or RTNL. Note : Please prefer rtnl_dereference() or rcu_dereference()
55 56
 */
#define rcu_dereference_rtnl(p)					\
57
	rcu_dereference_check(p, lockdep_rtnl_is_held())
58

J
John Fastabend 已提交
59 60 61 62 63 64 65 66 67 68
/**
 * rcu_dereference_bh_rtnl - rcu_dereference_bh with debug checking
 * @p: The pointer to read, prior to dereference
 *
 * Do an rcu_dereference_bh(p), but check caller either holds rcu_read_lock_bh()
 * or RTNL. Note : Please prefer rtnl_dereference() or rcu_dereference_bh()
 */
#define rcu_dereference_bh_rtnl(p)				\
	rcu_dereference_bh_check(p, lockdep_rtnl_is_held())

E
Eric Dumazet 已提交
69
/**
D
David S. Miller 已提交
70
 * rtnl_dereference - fetch RCU pointer when updates are prevented by RTNL
E
Eric Dumazet 已提交
71 72
 * @p: The pointer to read, prior to dereferencing
 *
D
David S. Miller 已提交
73
 * Return the value of the specified RCU-protected pointer, but omit
74
 * both the smp_read_barrier_depends() and the READ_ONCE(), because
D
David S. Miller 已提交
75
 * caller holds RTNL.
E
Eric Dumazet 已提交
76 77
 */
#define rtnl_dereference(p)					\
D
David S. Miller 已提交
78
	rcu_dereference_protected(p, lockdep_rtnl_is_held())
E
Eric Dumazet 已提交
79

80 81 82 83 84
static inline struct netdev_queue *dev_ingress_queue(struct net_device *dev)
{
	return rtnl_dereference(dev->ingress_queue);
}

85 86
struct netdev_queue *dev_ingress_queue_create(struct net_device *dev);

87
#ifdef CONFIG_NET_INGRESS
88 89 90
void net_inc_ingress_queue(void);
void net_dec_ingress_queue(void);
#endif
91

D
Daniel Borkmann 已提交
92 93 94 95 96
#ifdef CONFIG_NET_EGRESS
void net_inc_egress_queue(void);
void net_dec_egress_queue(void);
#endif

97 98 99
void rtnetlink_init(void);
void __rtnl_unlock(void);
void rtnl_kfree_skbs(struct sk_buff *head, struct sk_buff *tail);
L
Linus Torvalds 已提交
100

101 102 103
#define ASSERT_RTNL() \
	WARN_ONCE(!rtnl_is_locked(), \
		  "RTNL: assertion failed at %s (%d)\n", __FILE__,  __LINE__)
L
Linus Torvalds 已提交
104

105 106 107
extern int ndo_dflt_fdb_dump(struct sk_buff *skb,
			     struct netlink_callback *cb,
			     struct net_device *dev,
108
			     struct net_device *filter_dev,
109
			     int *idx);
110 111 112 113
extern int ndo_dflt_fdb_add(struct ndmsg *ndm,
			    struct nlattr *tb[],
			    struct net_device *dev,
			    const unsigned char *addr,
114 115
			    u16 vid,
			    u16 flags);
116 117 118
extern int ndo_dflt_fdb_del(struct ndmsg *ndm,
			    struct nlattr *tb[],
			    struct net_device *dev,
119 120
			    const unsigned char *addr,
			    u16 vid);
121 122

extern int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
123
				   struct net_device *dev, u16 mode,
124 125 126 127 128
				   u32 flags, u32 mask, int nlflags,
				   u32 filter_mask,
				   int (*vlan_fill)(struct sk_buff *skb,
						    struct net_device *dev,
						    u32 filter_mask));
L
Linus Torvalds 已提交
129
#endif	/* __LINUX_RTNETLINK_H */