xref: /openbmc/linux/include/net/rtnetlink.h (revision 97a47facf3468fb6ebd697324fc2a7245755c417)
1e2849863SThomas Graf #ifndef __NET_RTNETLINK_H
2e2849863SThomas Graf #define __NET_RTNETLINK_H
3e2849863SThomas Graf 
4e2849863SThomas Graf #include <linux/rtnetlink.h>
5e2849863SThomas Graf #include <net/netlink.h>
6e2849863SThomas Graf 
7661d2967SThomas Graf typedef int (*rtnl_doit_func)(struct sk_buff *, struct nlmsghdr *);
8e2849863SThomas Graf typedef int (*rtnl_dumpit_func)(struct sk_buff *, struct netlink_callback *);
9115c9b81SGreg Rose typedef u16 (*rtnl_calcit_func)(struct sk_buff *, struct nlmsghdr *);
10e2849863SThomas Graf 
11efb48ccfSJoe Perches int __rtnl_register(int protocol, int msgtype,
12efb48ccfSJoe Perches 		    rtnl_doit_func, rtnl_dumpit_func, rtnl_calcit_func);
13efb48ccfSJoe Perches void rtnl_register(int protocol, int msgtype,
14efb48ccfSJoe Perches 		   rtnl_doit_func, rtnl_dumpit_func, rtnl_calcit_func);
15efb48ccfSJoe Perches int rtnl_unregister(int protocol, int msgtype);
16efb48ccfSJoe Perches void rtnl_unregister_all(int protocol);
17e2849863SThomas Graf 
183a6c2b41SPatrick McHardy static inline int rtnl_msg_family(const struct nlmsghdr *nlh)
19c454673dSThomas Graf {
20c454673dSThomas Graf 	if (nlmsg_len(nlh) >= sizeof(struct rtgenmsg))
21c454673dSThomas Graf 		return ((struct rtgenmsg *) nlmsg_data(nlh))->rtgen_family;
22c454673dSThomas Graf 	else
23c454673dSThomas Graf 		return AF_UNSPEC;
24c454673dSThomas Graf }
25c454673dSThomas Graf 
2638f7b870SPatrick McHardy /**
2738f7b870SPatrick McHardy  *	struct rtnl_link_ops - rtnetlink link operations
2838f7b870SPatrick McHardy  *
2938f7b870SPatrick McHardy  *	@list: Used internally
3038f7b870SPatrick McHardy  *	@kind: Identifier
3138f7b870SPatrick McHardy  *	@maxtype: Highest device specific netlink attribute number
3238f7b870SPatrick McHardy  *	@policy: Netlink policy for device specific attribute validation
3338f7b870SPatrick McHardy  *	@validate: Optional validation function for netlink/changelink parameters
3438f7b870SPatrick McHardy  *	@priv_size: sizeof net_device private space
3538f7b870SPatrick McHardy  *	@setup: net_device setup function
3638f7b870SPatrick McHardy  *	@newlink: Function for configuring and registering a new device
3738f7b870SPatrick McHardy  *	@changelink: Function for changing parameters of an existing device
3838f7b870SPatrick McHardy  *	@dellink: Function to remove a device
3938f7b870SPatrick McHardy  *	@get_size: Function to calculate required room for dumping device
4038f7b870SPatrick McHardy  *		   specific netlink attributes
4138f7b870SPatrick McHardy  *	@fill_info: Function to dump device specific netlink attributes
429b17876fSstephen hemminger  *	@get_xstats_size: Function to calculate required room for dumping device
4338f7b870SPatrick McHardy  *			  specific statistics
4438f7b870SPatrick McHardy  *	@fill_xstats: Function to dump device specific statistics
45d40156aaSJiri Pirko  *	@get_num_tx_queues: Function to determine number of transmit queues
46d40156aaSJiri Pirko  *			    to create when creating a new device.
47d40156aaSJiri Pirko  *	@get_num_rx_queues: Function to determine number of receive queues
48d40156aaSJiri Pirko  *			    to create when creating a new device.
49d37512a2SNicolas Dichtel  *	@get_link_net: Function to get the i/o netns of the device
50*97a47facSNikolay Aleksandrov  *	@get_linkxstats_size: Function to calculate the required room for
51*97a47facSNikolay Aleksandrov  *			      dumping device-specific extended link stats
52*97a47facSNikolay Aleksandrov  *	@fill_linkxstats: Function to dump device-specific extended link stats
5338f7b870SPatrick McHardy  */
5438f7b870SPatrick McHardy struct rtnl_link_ops {
5538f7b870SPatrick McHardy 	struct list_head	list;
5638f7b870SPatrick McHardy 
5738f7b870SPatrick McHardy 	const char		*kind;
5838f7b870SPatrick McHardy 
5938f7b870SPatrick McHardy 	size_t			priv_size;
6038f7b870SPatrick McHardy 	void			(*setup)(struct net_device *dev);
6138f7b870SPatrick McHardy 
6238f7b870SPatrick McHardy 	int			maxtype;
6338f7b870SPatrick McHardy 	const struct nla_policy	*policy;
6438f7b870SPatrick McHardy 	int			(*validate)(struct nlattr *tb[],
6538f7b870SPatrick McHardy 					    struct nlattr *data[]);
6638f7b870SPatrick McHardy 
6781adee47SEric W. Biederman 	int			(*newlink)(struct net *src_net,
6881adee47SEric W. Biederman 					   struct net_device *dev,
6938f7b870SPatrick McHardy 					   struct nlattr *tb[],
7038f7b870SPatrick McHardy 					   struct nlattr *data[]);
7138f7b870SPatrick McHardy 	int			(*changelink)(struct net_device *dev,
7238f7b870SPatrick McHardy 					      struct nlattr *tb[],
7338f7b870SPatrick McHardy 					      struct nlattr *data[]);
7423289a37SEric Dumazet 	void			(*dellink)(struct net_device *dev,
7523289a37SEric Dumazet 					   struct list_head *head);
7638f7b870SPatrick McHardy 
7738f7b870SPatrick McHardy 	size_t			(*get_size)(const struct net_device *dev);
7838f7b870SPatrick McHardy 	int			(*fill_info)(struct sk_buff *skb,
7938f7b870SPatrick McHardy 					     const struct net_device *dev);
8038f7b870SPatrick McHardy 
8138f7b870SPatrick McHardy 	size_t			(*get_xstats_size)(const struct net_device *dev);
8238f7b870SPatrick McHardy 	int			(*fill_xstats)(struct sk_buff *skb,
8338f7b870SPatrick McHardy 					       const struct net_device *dev);
84d40156aaSJiri Pirko 	unsigned int		(*get_num_tx_queues)(void);
85d40156aaSJiri Pirko 	unsigned int		(*get_num_rx_queues)(void);
86ba7d49b1SJiri Pirko 
87ba7d49b1SJiri Pirko 	int			slave_maxtype;
88ba7d49b1SJiri Pirko 	const struct nla_policy	*slave_policy;
89ba7d49b1SJiri Pirko 	int			(*slave_validate)(struct nlattr *tb[],
90ba7d49b1SJiri Pirko 						  struct nlattr *data[]);
91ba7d49b1SJiri Pirko 	int			(*slave_changelink)(struct net_device *dev,
92ba7d49b1SJiri Pirko 						    struct net_device *slave_dev,
93ba7d49b1SJiri Pirko 						    struct nlattr *tb[],
94ba7d49b1SJiri Pirko 						    struct nlattr *data[]);
95ba7d49b1SJiri Pirko 	size_t			(*get_slave_size)(const struct net_device *dev,
96ba7d49b1SJiri Pirko 						  const struct net_device *slave_dev);
97ba7d49b1SJiri Pirko 	int			(*fill_slave_info)(struct sk_buff *skb,
98ba7d49b1SJiri Pirko 						   const struct net_device *dev,
99ba7d49b1SJiri Pirko 						   const struct net_device *slave_dev);
100d37512a2SNicolas Dichtel 	struct net		*(*get_link_net)(const struct net_device *dev);
101*97a47facSNikolay Aleksandrov 	size_t			(*get_linkxstats_size)(const struct net_device *dev);
102*97a47facSNikolay Aleksandrov 	int			(*fill_linkxstats)(struct sk_buff *skb,
103*97a47facSNikolay Aleksandrov 						   const struct net_device *dev,
104*97a47facSNikolay Aleksandrov 						   int *prividx);
10538f7b870SPatrick McHardy };
10638f7b870SPatrick McHardy 
107efb48ccfSJoe Perches int __rtnl_link_register(struct rtnl_link_ops *ops);
108efb48ccfSJoe Perches void __rtnl_link_unregister(struct rtnl_link_ops *ops);
10938f7b870SPatrick McHardy 
110efb48ccfSJoe Perches int rtnl_link_register(struct rtnl_link_ops *ops);
111efb48ccfSJoe Perches void rtnl_link_unregister(struct rtnl_link_ops *ops);
11238f7b870SPatrick McHardy 
113f8ff182cSThomas Graf /**
114f8ff182cSThomas Graf  * 	struct rtnl_af_ops - rtnetlink address family operations
115f8ff182cSThomas Graf  *
116f8ff182cSThomas Graf  *	@list: Used internally
117f8ff182cSThomas Graf  * 	@family: Address family
118f8ff182cSThomas Graf  * 	@fill_link_af: Function to fill IFLA_AF_SPEC with address family
119f8ff182cSThomas Graf  * 		       specific netlink attributes.
120f8ff182cSThomas Graf  * 	@get_link_af_size: Function to calculate size of address family specific
1219b17876fSstephen hemminger  * 			   netlink attributes.
122cf7afbfeSThomas Graf  *	@validate_link_af: Validate a IFLA_AF_SPEC attribute, must check attr
123cf7afbfeSThomas Graf  *			   for invalid configuration settings.
124cf7afbfeSThomas Graf  * 	@set_link_af: Function to parse a IFLA_AF_SPEC attribute and modify
125f8ff182cSThomas Graf  *		      net_device accordingly.
126f8ff182cSThomas Graf  */
127f8ff182cSThomas Graf struct rtnl_af_ops {
128f8ff182cSThomas Graf 	struct list_head	list;
129f8ff182cSThomas Graf 	int			family;
130f8ff182cSThomas Graf 
131f8ff182cSThomas Graf 	int			(*fill_link_af)(struct sk_buff *skb,
132d5566fd7SSowmini Varadhan 						const struct net_device *dev,
133d5566fd7SSowmini Varadhan 						u32 ext_filter_mask);
134b1974ed0SArad, Ronen 	size_t			(*get_link_af_size)(const struct net_device *dev,
135b1974ed0SArad, Ronen 						    u32 ext_filter_mask);
136f8ff182cSThomas Graf 
137cf7afbfeSThomas Graf 	int			(*validate_link_af)(const struct net_device *dev,
138cf7afbfeSThomas Graf 						    const struct nlattr *attr);
139cf7afbfeSThomas Graf 	int			(*set_link_af)(struct net_device *dev,
140f8ff182cSThomas Graf 					       const struct nlattr *attr);
141f8ff182cSThomas Graf };
142f8ff182cSThomas Graf 
143efb48ccfSJoe Perches void __rtnl_af_unregister(struct rtnl_af_ops *ops);
144f8ff182cSThomas Graf 
1453678a9d8Sstephen hemminger void rtnl_af_register(struct rtnl_af_ops *ops);
146efb48ccfSJoe Perches void rtnl_af_unregister(struct rtnl_af_ops *ops);
147f8ff182cSThomas Graf 
148efb48ccfSJoe Perches struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[]);
14978ebb0d0SThomas Graf struct net_device *rtnl_create_link(struct net *net, const char *ifname,
1505517750fSTom Gundersen 				    unsigned char name_assign_type,
151efb48ccfSJoe Perches 				    const struct rtnl_link_ops *ops,
152efb48ccfSJoe Perches 				    struct nlattr *tb[]);
153614732eaSThomas Graf int rtnl_delete_link(struct net_device *dev);
154efb48ccfSJoe Perches int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm);
155f8ff182cSThomas Graf 
156f7b12606SJiri Pirko int rtnl_nla_parse_ifla(struct nlattr **tb, const struct nlattr *head, int len);
157e7199288SPavel Emelianov 
15838f7b870SPatrick McHardy #define MODULE_ALIAS_RTNL_LINK(kind) MODULE_ALIAS("rtnl-link-" kind)
15938f7b870SPatrick McHardy 
160e2849863SThomas Graf #endif
161