blob: 0514cc36ac3449affc014501d657f592d00b22c2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef __LINUX_RTNETLINK_H
3#define __LINUX_RTNETLINK_H
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Stephen Hemminger6756ae42006-03-20 22:23:58 -08006#include <linux/mutex.h>
Andy Whitcroft3b42a962010-11-15 06:01:59 +00007#include <linux/netdevice.h>
Cong Wang200b9162014-05-12 15:11:20 -07008#include <linux/wait.h>
David Howells607ca462012-10-13 10:46:48 +01009#include <uapi/linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080011extern int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, u32 group, int echo);
12extern int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -080013extern void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid,
14 u32 group, struct nlmsghdr *nlh, gfp_t flags);
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080015extern void rtnl_set_sk_err(struct net *net, u32 group, int error);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016extern int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics);
Thomas Grafe3703b32006-11-27 09:27:07 -080017extern int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst,
David S. Miller87a50692012-07-10 05:06:14 -070018 u32 id, long expires, u32 error);
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Alexei Starovoitov7f294052013-10-23 16:02:42 -070020void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change, gfp_t flags);
Nicolas Dichtel6621dd22017-10-03 13:53:23 +020021void rtmsg_ifinfo_newnet(int type, struct net_device *dev, unsigned int change,
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010022 gfp_t flags, int *new_nsid, int new_ifindex);
Mahesh Bandewar395eea62014-12-03 13:46:24 -080023struct sk_buff *rtmsg_ifinfo_build_skb(int type, struct net_device *dev,
Vlad Yasevich3d3ea5a2017-05-27 10:14:34 -040024 unsigned change, u32 event,
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010025 gfp_t flags, int *new_nsid,
26 int new_ifindex);
Mahesh Bandewar395eea62014-12-03 13:46:24 -080027void rtmsg_ifinfo_send(struct sk_buff *skb, struct net_device *dev,
28 gfp_t flags);
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Stephen Hemminger6756ae42006-03-20 22:23:58 -080031/* RTNL is used as a global lock for all changes to network configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032extern void rtnl_lock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033extern void rtnl_unlock(void);
Stephen Hemminger6756ae42006-03-20 22:23:58 -080034extern int rtnl_trylock(void);
Patrick McHardyc9c10142008-04-23 22:10:48 -070035extern int rtnl_is_locked(void);
Cong Wang200b9162014-05-12 15:11:20 -070036
37extern wait_queue_head_t netdev_unregistering_wq;
38extern struct mutex net_mutex;
39
Paul E. McKenneya898def2010-02-22 17:04:49 -080040#ifdef CONFIG_PROVE_LOCKING
Yaowei Bai0cbf3342015-10-08 21:29:02 +080041extern bool lockdep_rtnl_is_held(void);
John Fastabend85328242013-11-26 06:33:52 +000042#else
Yaowei Bai0cbf3342015-10-08 21:29:02 +080043static inline bool lockdep_rtnl_is_held(void)
John Fastabend85328242013-11-26 06:33:52 +000044{
Yaowei Bai0cbf3342015-10-08 21:29:02 +080045 return true;
John Fastabend85328242013-11-26 06:33:52 +000046}
Paul E. McKenneya898def2010-02-22 17:04:49 -080047#endif /* #ifdef CONFIG_PROVE_LOCKING */
Stephen Hemminger6756ae42006-03-20 22:23:58 -080048
Eric Dumazeta6e0fc82010-09-08 14:15:32 -070049/**
50 * rcu_dereference_rtnl - rcu_dereference with debug checking
51 * @p: The pointer to read, prior to dereferencing
52 *
53 * Do an rcu_dereference(p), but check caller either holds rcu_read_lock()
David S. Miller29fa0602010-10-05 00:29:48 -070054 * or RTNL. Note : Please prefer rtnl_dereference() or rcu_dereference()
Eric Dumazeta6e0fc82010-09-08 14:15:32 -070055 */
56#define rcu_dereference_rtnl(p) \
Michal Hockod8bf4ca2011-07-08 14:39:41 +020057 rcu_dereference_check(p, lockdep_rtnl_is_held())
Eric Dumazeta6e0fc82010-09-08 14:15:32 -070058
Eric Dumazet7dff59e2010-09-15 11:07:15 +000059/**
John Fastabend331b7292014-09-12 20:08:20 -070060 * rcu_dereference_bh_rtnl - rcu_dereference_bh with debug checking
61 * @p: The pointer to read, prior to dereference
62 *
63 * Do an rcu_dereference_bh(p), but check caller either holds rcu_read_lock_bh()
64 * or RTNL. Note : Please prefer rtnl_dereference() or rcu_dereference_bh()
65 */
66#define rcu_dereference_bh_rtnl(p) \
67 rcu_dereference_bh_check(p, lockdep_rtnl_is_held())
68
69/**
David S. Miller29fa0602010-10-05 00:29:48 -070070 * rtnl_dereference - fetch RCU pointer when updates are prevented by RTNL
Eric Dumazet7dff59e2010-09-15 11:07:15 +000071 * @p: The pointer to read, prior to dereferencing
72 *
David S. Miller29fa0602010-10-05 00:29:48 -070073 * Return the value of the specified RCU-protected pointer, but omit
Mark Rutland14cd5d42017-10-23 14:07:17 -070074 * both the smp_read_barrier_depends() and the READ_ONCE(), because
David S. Miller29fa0602010-10-05 00:29:48 -070075 * caller holds RTNL.
Eric Dumazet7dff59e2010-09-15 11:07:15 +000076 */
77#define rtnl_dereference(p) \
David S. Miller29fa0602010-10-05 00:29:48 -070078 rcu_dereference_protected(p, lockdep_rtnl_is_held())
Eric Dumazet7dff59e2010-09-15 11:07:15 +000079
Eric Dumazet24824a02010-10-02 06:11:55 +000080static inline struct netdev_queue *dev_ingress_queue(struct net_device *dev)
81{
82 return rtnl_dereference(dev->ingress_queue);
83}
84
Daniel Borkmann45771392015-04-10 23:07:54 +020085struct netdev_queue *dev_ingress_queue_create(struct net_device *dev);
86
Pablo Neira1cf519002015-05-13 18:19:37 +020087#ifdef CONFIG_NET_INGRESS
Daniel Borkmann45771392015-04-10 23:07:54 +020088void net_inc_ingress_queue(void);
89void net_dec_ingress_queue(void);
Daniel Borkmann45771392015-04-10 23:07:54 +020090#endif
Eric Dumazet24824a02010-10-02 06:11:55 +000091
Daniel Borkmann1f211a12016-01-07 22:29:47 +010092#ifdef CONFIG_NET_EGRESS
93void net_inc_egress_queue(void);
94void net_dec_egress_queue(void);
95#endif
96
Eric Dumazet1b5c5492016-06-13 20:21:50 -070097void rtnetlink_init(void);
98void __rtnl_unlock(void);
99void rtnl_kfree_skbs(struct sk_buff *head, struct sk_buff *tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Leon Romanovsky66364bd2017-12-21 11:40:04 +0200101#define ASSERT_RTNL() \
102 WARN_ONCE(!rtnl_is_locked(), \
103 "RTNL: assertion failed at %s (%d)\n", __FILE__, __LINE__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
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 */