xref: /openbmc/linux/net/core/rtnetlink.c (revision 669f87ba)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * INET		An implementation of the TCP/IP protocol suite for the LINUX
31da177e4SLinus Torvalds  *		operating system.  INET is implemented using the  BSD Socket
41da177e4SLinus Torvalds  *		interface as the means of communication with the user level.
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  *		Routing netlink socket interface: protocol independent part.
71da177e4SLinus Torvalds  *
81da177e4SLinus Torvalds  * Authors:	Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
91da177e4SLinus Torvalds  *
101da177e4SLinus Torvalds  *		This program is free software; you can redistribute it and/or
111da177e4SLinus Torvalds  *		modify it under the terms of the GNU General Public License
121da177e4SLinus Torvalds  *		as published by the Free Software Foundation; either version
131da177e4SLinus Torvalds  *		2 of the License, or (at your option) any later version.
141da177e4SLinus Torvalds  *
151da177e4SLinus Torvalds  *	Fixes:
161da177e4SLinus Torvalds  *	Vitaly E. Lavrov		RTA_OK arithmetics was wrong.
171da177e4SLinus Torvalds  */
181da177e4SLinus Torvalds 
191da177e4SLinus Torvalds #include <linux/errno.h>
201da177e4SLinus Torvalds #include <linux/module.h>
211da177e4SLinus Torvalds #include <linux/types.h>
221da177e4SLinus Torvalds #include <linux/socket.h>
231da177e4SLinus Torvalds #include <linux/kernel.h>
241da177e4SLinus Torvalds #include <linux/timer.h>
251da177e4SLinus Torvalds #include <linux/string.h>
261da177e4SLinus Torvalds #include <linux/sockios.h>
271da177e4SLinus Torvalds #include <linux/net.h>
281da177e4SLinus Torvalds #include <linux/fcntl.h>
291da177e4SLinus Torvalds #include <linux/mm.h>
301da177e4SLinus Torvalds #include <linux/slab.h>
311da177e4SLinus Torvalds #include <linux/interrupt.h>
321da177e4SLinus Torvalds #include <linux/capability.h>
331da177e4SLinus Torvalds #include <linux/skbuff.h>
341da177e4SLinus Torvalds #include <linux/init.h>
351da177e4SLinus Torvalds #include <linux/security.h>
366756ae4bSStephen Hemminger #include <linux/mutex.h>
371823730fSThomas Graf #include <linux/if_addr.h>
38d8a5ec67SEric W. Biederman #include <linux/nsproxy.h>
391da177e4SLinus Torvalds 
401da177e4SLinus Torvalds #include <asm/uaccess.h>
411da177e4SLinus Torvalds #include <asm/system.h>
421da177e4SLinus Torvalds #include <asm/string.h>
431da177e4SLinus Torvalds 
441da177e4SLinus Torvalds #include <linux/inet.h>
451da177e4SLinus Torvalds #include <linux/netdevice.h>
461da177e4SLinus Torvalds #include <net/ip.h>
471da177e4SLinus Torvalds #include <net/protocol.h>
481da177e4SLinus Torvalds #include <net/arp.h>
491da177e4SLinus Torvalds #include <net/route.h>
501da177e4SLinus Torvalds #include <net/udp.h>
511da177e4SLinus Torvalds #include <net/sock.h>
521da177e4SLinus Torvalds #include <net/pkt_sched.h>
5314c0b97dSThomas Graf #include <net/fib_rules.h>
54e2849863SThomas Graf #include <net/rtnetlink.h>
551da177e4SLinus Torvalds 
56e2849863SThomas Graf struct rtnl_link
57e2849863SThomas Graf {
58e2849863SThomas Graf 	rtnl_doit_func		doit;
59e2849863SThomas Graf 	rtnl_dumpit_func	dumpit;
60e2849863SThomas Graf };
61e2849863SThomas Graf 
626756ae4bSStephen Hemminger static DEFINE_MUTEX(rtnl_mutex);
631da177e4SLinus Torvalds 
641da177e4SLinus Torvalds void rtnl_lock(void)
651da177e4SLinus Torvalds {
666756ae4bSStephen Hemminger 	mutex_lock(&rtnl_mutex);
671da177e4SLinus Torvalds }
681da177e4SLinus Torvalds 
696756ae4bSStephen Hemminger void __rtnl_unlock(void)
701da177e4SLinus Torvalds {
716756ae4bSStephen Hemminger 	mutex_unlock(&rtnl_mutex);
721da177e4SLinus Torvalds }
731da177e4SLinus Torvalds 
741da177e4SLinus Torvalds void rtnl_unlock(void)
751da177e4SLinus Torvalds {
766756ae4bSStephen Hemminger 	mutex_unlock(&rtnl_mutex);
771da177e4SLinus Torvalds 	netdev_run_todo();
781da177e4SLinus Torvalds }
791da177e4SLinus Torvalds 
806756ae4bSStephen Hemminger int rtnl_trylock(void)
816756ae4bSStephen Hemminger {
826756ae4bSStephen Hemminger 	return mutex_trylock(&rtnl_mutex);
836756ae4bSStephen Hemminger }
846756ae4bSStephen Hemminger 
8542bad1daSAdrian Bunk static struct rtnl_link *rtnl_msg_handlers[NPROTO];
86e2849863SThomas Graf 
87e2849863SThomas Graf static inline int rtm_msgindex(int msgtype)
88e2849863SThomas Graf {
89e2849863SThomas Graf 	int msgindex = msgtype - RTM_BASE;
90e2849863SThomas Graf 
91e2849863SThomas Graf 	/*
92e2849863SThomas Graf 	 * msgindex < 0 implies someone tried to register a netlink
93e2849863SThomas Graf 	 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
94e2849863SThomas Graf 	 * the message type has not been added to linux/rtnetlink.h
95e2849863SThomas Graf 	 */
96e2849863SThomas Graf 	BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
97e2849863SThomas Graf 
98e2849863SThomas Graf 	return msgindex;
99e2849863SThomas Graf }
100e2849863SThomas Graf 
101e2849863SThomas Graf static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
102e2849863SThomas Graf {
103e2849863SThomas Graf 	struct rtnl_link *tab;
104e2849863SThomas Graf 
105e2849863SThomas Graf 	tab = rtnl_msg_handlers[protocol];
10651057f2fSThomas Graf 	if (tab == NULL || tab[msgindex].doit == NULL)
107e2849863SThomas Graf 		tab = rtnl_msg_handlers[PF_UNSPEC];
108e2849863SThomas Graf 
10951057f2fSThomas Graf 	return tab ? tab[msgindex].doit : NULL;
110e2849863SThomas Graf }
111e2849863SThomas Graf 
112e2849863SThomas Graf static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
113e2849863SThomas Graf {
114e2849863SThomas Graf 	struct rtnl_link *tab;
115e2849863SThomas Graf 
116e2849863SThomas Graf 	tab = rtnl_msg_handlers[protocol];
11751057f2fSThomas Graf 	if (tab == NULL || tab[msgindex].dumpit == NULL)
118e2849863SThomas Graf 		tab = rtnl_msg_handlers[PF_UNSPEC];
119e2849863SThomas Graf 
12051057f2fSThomas Graf 	return tab ? tab[msgindex].dumpit : NULL;
121e2849863SThomas Graf }
122e2849863SThomas Graf 
123e2849863SThomas Graf /**
124e2849863SThomas Graf  * __rtnl_register - Register a rtnetlink message type
125e2849863SThomas Graf  * @protocol: Protocol family or PF_UNSPEC
126e2849863SThomas Graf  * @msgtype: rtnetlink message type
127e2849863SThomas Graf  * @doit: Function pointer called for each request message
128e2849863SThomas Graf  * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
129e2849863SThomas Graf  *
130e2849863SThomas Graf  * Registers the specified function pointers (at least one of them has
131e2849863SThomas Graf  * to be non-NULL) to be called whenever a request message for the
132e2849863SThomas Graf  * specified protocol family and message type is received.
133e2849863SThomas Graf  *
134e2849863SThomas Graf  * The special protocol family PF_UNSPEC may be used to define fallback
135e2849863SThomas Graf  * function pointers for the case when no entry for the specific protocol
136e2849863SThomas Graf  * family exists.
137e2849863SThomas Graf  *
138e2849863SThomas Graf  * Returns 0 on success or a negative error code.
139e2849863SThomas Graf  */
140e2849863SThomas Graf int __rtnl_register(int protocol, int msgtype,
141e2849863SThomas Graf 		    rtnl_doit_func doit, rtnl_dumpit_func dumpit)
142e2849863SThomas Graf {
143e2849863SThomas Graf 	struct rtnl_link *tab;
144e2849863SThomas Graf 	int msgindex;
145e2849863SThomas Graf 
146e2849863SThomas Graf 	BUG_ON(protocol < 0 || protocol >= NPROTO);
147e2849863SThomas Graf 	msgindex = rtm_msgindex(msgtype);
148e2849863SThomas Graf 
149e2849863SThomas Graf 	tab = rtnl_msg_handlers[protocol];
150e2849863SThomas Graf 	if (tab == NULL) {
151e2849863SThomas Graf 		tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
152e2849863SThomas Graf 		if (tab == NULL)
153e2849863SThomas Graf 			return -ENOBUFS;
154e2849863SThomas Graf 
155e2849863SThomas Graf 		rtnl_msg_handlers[protocol] = tab;
156e2849863SThomas Graf 	}
157e2849863SThomas Graf 
158e2849863SThomas Graf 	if (doit)
159e2849863SThomas Graf 		tab[msgindex].doit = doit;
160e2849863SThomas Graf 
161e2849863SThomas Graf 	if (dumpit)
162e2849863SThomas Graf 		tab[msgindex].dumpit = dumpit;
163e2849863SThomas Graf 
164e2849863SThomas Graf 	return 0;
165e2849863SThomas Graf }
166e2849863SThomas Graf 
167e2849863SThomas Graf EXPORT_SYMBOL_GPL(__rtnl_register);
168e2849863SThomas Graf 
169e2849863SThomas Graf /**
170e2849863SThomas Graf  * rtnl_register - Register a rtnetlink message type
171e2849863SThomas Graf  *
172e2849863SThomas Graf  * Identical to __rtnl_register() but panics on failure. This is useful
173e2849863SThomas Graf  * as failure of this function is very unlikely, it can only happen due
174e2849863SThomas Graf  * to lack of memory when allocating the chain to store all message
175e2849863SThomas Graf  * handlers for a protocol. Meant for use in init functions where lack
176e2849863SThomas Graf  * of memory implies no sense in continueing.
177e2849863SThomas Graf  */
178e2849863SThomas Graf void rtnl_register(int protocol, int msgtype,
179e2849863SThomas Graf 		   rtnl_doit_func doit, rtnl_dumpit_func dumpit)
180e2849863SThomas Graf {
181e2849863SThomas Graf 	if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0)
182e2849863SThomas Graf 		panic("Unable to register rtnetlink message handler, "
183e2849863SThomas Graf 		      "protocol = %d, message type = %d\n",
184e2849863SThomas Graf 		      protocol, msgtype);
185e2849863SThomas Graf }
186e2849863SThomas Graf 
187e2849863SThomas Graf EXPORT_SYMBOL_GPL(rtnl_register);
188e2849863SThomas Graf 
189e2849863SThomas Graf /**
190e2849863SThomas Graf  * rtnl_unregister - Unregister a rtnetlink message type
191e2849863SThomas Graf  * @protocol: Protocol family or PF_UNSPEC
192e2849863SThomas Graf  * @msgtype: rtnetlink message type
193e2849863SThomas Graf  *
194e2849863SThomas Graf  * Returns 0 on success or a negative error code.
195e2849863SThomas Graf  */
196e2849863SThomas Graf int rtnl_unregister(int protocol, int msgtype)
197e2849863SThomas Graf {
198e2849863SThomas Graf 	int msgindex;
199e2849863SThomas Graf 
200e2849863SThomas Graf 	BUG_ON(protocol < 0 || protocol >= NPROTO);
201e2849863SThomas Graf 	msgindex = rtm_msgindex(msgtype);
202e2849863SThomas Graf 
203e2849863SThomas Graf 	if (rtnl_msg_handlers[protocol] == NULL)
204e2849863SThomas Graf 		return -ENOENT;
205e2849863SThomas Graf 
206e2849863SThomas Graf 	rtnl_msg_handlers[protocol][msgindex].doit = NULL;
207e2849863SThomas Graf 	rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
208e2849863SThomas Graf 
209e2849863SThomas Graf 	return 0;
210e2849863SThomas Graf }
211e2849863SThomas Graf 
212e2849863SThomas Graf EXPORT_SYMBOL_GPL(rtnl_unregister);
213e2849863SThomas Graf 
214e2849863SThomas Graf /**
215e2849863SThomas Graf  * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
216e2849863SThomas Graf  * @protocol : Protocol family or PF_UNSPEC
217e2849863SThomas Graf  *
218e2849863SThomas Graf  * Identical to calling rtnl_unregster() for all registered message types
219e2849863SThomas Graf  * of a certain protocol family.
220e2849863SThomas Graf  */
221e2849863SThomas Graf void rtnl_unregister_all(int protocol)
222e2849863SThomas Graf {
223e2849863SThomas Graf 	BUG_ON(protocol < 0 || protocol >= NPROTO);
224e2849863SThomas Graf 
225e2849863SThomas Graf 	kfree(rtnl_msg_handlers[protocol]);
226e2849863SThomas Graf 	rtnl_msg_handlers[protocol] = NULL;
227e2849863SThomas Graf }
228e2849863SThomas Graf 
229e2849863SThomas Graf EXPORT_SYMBOL_GPL(rtnl_unregister_all);
2301da177e4SLinus Torvalds 
23138f7b870SPatrick McHardy static LIST_HEAD(link_ops);
23238f7b870SPatrick McHardy 
23338f7b870SPatrick McHardy /**
23438f7b870SPatrick McHardy  * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
23538f7b870SPatrick McHardy  * @ops: struct rtnl_link_ops * to register
23638f7b870SPatrick McHardy  *
23738f7b870SPatrick McHardy  * The caller must hold the rtnl_mutex. This function should be used
23838f7b870SPatrick McHardy  * by drivers that create devices during module initialization. It
23938f7b870SPatrick McHardy  * must be called before registering the devices.
24038f7b870SPatrick McHardy  *
24138f7b870SPatrick McHardy  * Returns 0 on success or a negative error code.
24238f7b870SPatrick McHardy  */
24338f7b870SPatrick McHardy int __rtnl_link_register(struct rtnl_link_ops *ops)
24438f7b870SPatrick McHardy {
2452d85cba2SPatrick McHardy 	if (!ops->dellink)
2462d85cba2SPatrick McHardy 		ops->dellink = unregister_netdevice;
2472d85cba2SPatrick McHardy 
24838f7b870SPatrick McHardy 	list_add_tail(&ops->list, &link_ops);
24938f7b870SPatrick McHardy 	return 0;
25038f7b870SPatrick McHardy }
25138f7b870SPatrick McHardy 
25238f7b870SPatrick McHardy EXPORT_SYMBOL_GPL(__rtnl_link_register);
25338f7b870SPatrick McHardy 
25438f7b870SPatrick McHardy /**
25538f7b870SPatrick McHardy  * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
25638f7b870SPatrick McHardy  * @ops: struct rtnl_link_ops * to register
25738f7b870SPatrick McHardy  *
25838f7b870SPatrick McHardy  * Returns 0 on success or a negative error code.
25938f7b870SPatrick McHardy  */
26038f7b870SPatrick McHardy int rtnl_link_register(struct rtnl_link_ops *ops)
26138f7b870SPatrick McHardy {
26238f7b870SPatrick McHardy 	int err;
26338f7b870SPatrick McHardy 
26438f7b870SPatrick McHardy 	rtnl_lock();
26538f7b870SPatrick McHardy 	err = __rtnl_link_register(ops);
26638f7b870SPatrick McHardy 	rtnl_unlock();
26738f7b870SPatrick McHardy 	return err;
26838f7b870SPatrick McHardy }
26938f7b870SPatrick McHardy 
27038f7b870SPatrick McHardy EXPORT_SYMBOL_GPL(rtnl_link_register);
27138f7b870SPatrick McHardy 
272669f87baSPavel Emelyanov static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
273669f87baSPavel Emelyanov {
274669f87baSPavel Emelyanov 	struct net_device *dev;
275669f87baSPavel Emelyanov restart:
276669f87baSPavel Emelyanov 	for_each_netdev(net, dev) {
277669f87baSPavel Emelyanov 		if (dev->rtnl_link_ops == ops) {
278669f87baSPavel Emelyanov 			ops->dellink(dev);
279669f87baSPavel Emelyanov 			goto restart;
280669f87baSPavel Emelyanov 		}
281669f87baSPavel Emelyanov 	}
282669f87baSPavel Emelyanov }
283669f87baSPavel Emelyanov 
284669f87baSPavel Emelyanov void rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
285669f87baSPavel Emelyanov {
286669f87baSPavel Emelyanov 	rtnl_lock();
287669f87baSPavel Emelyanov 	__rtnl_kill_links(net, ops);
288669f87baSPavel Emelyanov 	rtnl_unlock();
289669f87baSPavel Emelyanov }
290669f87baSPavel Emelyanov EXPORT_SYMBOL_GPL(rtnl_kill_links);
291669f87baSPavel Emelyanov 
29238f7b870SPatrick McHardy /**
29338f7b870SPatrick McHardy  * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
29438f7b870SPatrick McHardy  * @ops: struct rtnl_link_ops * to unregister
29538f7b870SPatrick McHardy  *
2962d85cba2SPatrick McHardy  * The caller must hold the rtnl_mutex.
29738f7b870SPatrick McHardy  */
29838f7b870SPatrick McHardy void __rtnl_link_unregister(struct rtnl_link_ops *ops)
29938f7b870SPatrick McHardy {
300881d966bSEric W. Biederman 	struct net *net;
3012d85cba2SPatrick McHardy 
302881d966bSEric W. Biederman 	for_each_net(net) {
303669f87baSPavel Emelyanov 		__rtnl_kill_links(net, ops);
304881d966bSEric W. Biederman 	}
30538f7b870SPatrick McHardy 	list_del(&ops->list);
30638f7b870SPatrick McHardy }
30738f7b870SPatrick McHardy 
30838f7b870SPatrick McHardy EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
30938f7b870SPatrick McHardy 
31038f7b870SPatrick McHardy /**
31138f7b870SPatrick McHardy  * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
31238f7b870SPatrick McHardy  * @ops: struct rtnl_link_ops * to unregister
31338f7b870SPatrick McHardy  */
31438f7b870SPatrick McHardy void rtnl_link_unregister(struct rtnl_link_ops *ops)
31538f7b870SPatrick McHardy {
31638f7b870SPatrick McHardy 	rtnl_lock();
31738f7b870SPatrick McHardy 	__rtnl_link_unregister(ops);
31838f7b870SPatrick McHardy 	rtnl_unlock();
31938f7b870SPatrick McHardy }
32038f7b870SPatrick McHardy 
32138f7b870SPatrick McHardy EXPORT_SYMBOL_GPL(rtnl_link_unregister);
32238f7b870SPatrick McHardy 
32338f7b870SPatrick McHardy static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
32438f7b870SPatrick McHardy {
32538f7b870SPatrick McHardy 	const struct rtnl_link_ops *ops;
32638f7b870SPatrick McHardy 
32738f7b870SPatrick McHardy 	list_for_each_entry(ops, &link_ops, list) {
32838f7b870SPatrick McHardy 		if (!strcmp(ops->kind, kind))
32938f7b870SPatrick McHardy 			return ops;
33038f7b870SPatrick McHardy 	}
33138f7b870SPatrick McHardy 	return NULL;
33238f7b870SPatrick McHardy }
33338f7b870SPatrick McHardy 
33438f7b870SPatrick McHardy static size_t rtnl_link_get_size(const struct net_device *dev)
33538f7b870SPatrick McHardy {
33638f7b870SPatrick McHardy 	const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
33738f7b870SPatrick McHardy 	size_t size;
33838f7b870SPatrick McHardy 
33938f7b870SPatrick McHardy 	if (!ops)
34038f7b870SPatrick McHardy 		return 0;
34138f7b870SPatrick McHardy 
34238f7b870SPatrick McHardy 	size = nlmsg_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
34338f7b870SPatrick McHardy 	       nlmsg_total_size(strlen(ops->kind) + 1);	 /* IFLA_INFO_KIND */
34438f7b870SPatrick McHardy 
34538f7b870SPatrick McHardy 	if (ops->get_size)
34638f7b870SPatrick McHardy 		/* IFLA_INFO_DATA + nested data */
34738f7b870SPatrick McHardy 		size += nlmsg_total_size(sizeof(struct nlattr)) +
34838f7b870SPatrick McHardy 			ops->get_size(dev);
34938f7b870SPatrick McHardy 
35038f7b870SPatrick McHardy 	if (ops->get_xstats_size)
35138f7b870SPatrick McHardy 		size += ops->get_xstats_size(dev);	/* IFLA_INFO_XSTATS */
35238f7b870SPatrick McHardy 
35338f7b870SPatrick McHardy 	return size;
35438f7b870SPatrick McHardy }
35538f7b870SPatrick McHardy 
35638f7b870SPatrick McHardy static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
35738f7b870SPatrick McHardy {
35838f7b870SPatrick McHardy 	const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
35938f7b870SPatrick McHardy 	struct nlattr *linkinfo, *data;
36038f7b870SPatrick McHardy 	int err = -EMSGSIZE;
36138f7b870SPatrick McHardy 
36238f7b870SPatrick McHardy 	linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
36338f7b870SPatrick McHardy 	if (linkinfo == NULL)
36438f7b870SPatrick McHardy 		goto out;
36538f7b870SPatrick McHardy 
36638f7b870SPatrick McHardy 	if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
36738f7b870SPatrick McHardy 		goto err_cancel_link;
36838f7b870SPatrick McHardy 	if (ops->fill_xstats) {
36938f7b870SPatrick McHardy 		err = ops->fill_xstats(skb, dev);
37038f7b870SPatrick McHardy 		if (err < 0)
37138f7b870SPatrick McHardy 			goto err_cancel_link;
37238f7b870SPatrick McHardy 	}
37338f7b870SPatrick McHardy 	if (ops->fill_info) {
37438f7b870SPatrick McHardy 		data = nla_nest_start(skb, IFLA_INFO_DATA);
37538f7b870SPatrick McHardy 		if (data == NULL)
37638f7b870SPatrick McHardy 			goto err_cancel_link;
37738f7b870SPatrick McHardy 		err = ops->fill_info(skb, dev);
37838f7b870SPatrick McHardy 		if (err < 0)
37938f7b870SPatrick McHardy 			goto err_cancel_data;
38038f7b870SPatrick McHardy 		nla_nest_end(skb, data);
38138f7b870SPatrick McHardy 	}
38238f7b870SPatrick McHardy 
38338f7b870SPatrick McHardy 	nla_nest_end(skb, linkinfo);
38438f7b870SPatrick McHardy 	return 0;
38538f7b870SPatrick McHardy 
38638f7b870SPatrick McHardy err_cancel_data:
38738f7b870SPatrick McHardy 	nla_nest_cancel(skb, data);
38838f7b870SPatrick McHardy err_cancel_link:
38938f7b870SPatrick McHardy 	nla_nest_cancel(skb, linkinfo);
39038f7b870SPatrick McHardy out:
39138f7b870SPatrick McHardy 	return err;
39238f7b870SPatrick McHardy }
39338f7b870SPatrick McHardy 
394db46edc6SThomas Graf static const int rtm_min[RTM_NR_FAMILIES] =
3951da177e4SLinus Torvalds {
396f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWLINK)]      = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
397f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWADDR)]      = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
398f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWROUTE)]     = NLMSG_LENGTH(sizeof(struct rtmsg)),
39914c0b97dSThomas Graf 	[RTM_FAM(RTM_NEWRULE)]      = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
400f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWQDISC)]     = NLMSG_LENGTH(sizeof(struct tcmsg)),
401f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWTCLASS)]    = NLMSG_LENGTH(sizeof(struct tcmsg)),
402f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWTFILTER)]   = NLMSG_LENGTH(sizeof(struct tcmsg)),
403f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWACTION)]    = NLMSG_LENGTH(sizeof(struct tcamsg)),
404f90a0a74SThomas Graf 	[RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
405f90a0a74SThomas Graf 	[RTM_FAM(RTM_GETANYCAST)]   = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
4061da177e4SLinus Torvalds };
4071da177e4SLinus Torvalds 
408db46edc6SThomas Graf static const int rta_max[RTM_NR_FAMILIES] =
4091da177e4SLinus Torvalds {
410f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWLINK)]      = IFLA_MAX,
411f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWADDR)]      = IFA_MAX,
412f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWROUTE)]     = RTA_MAX,
41314c0b97dSThomas Graf 	[RTM_FAM(RTM_NEWRULE)]      = FRA_MAX,
414f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWQDISC)]     = TCA_MAX,
415f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWTCLASS)]    = TCA_MAX,
416f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWTFILTER)]   = TCA_MAX,
417f90a0a74SThomas Graf 	[RTM_FAM(RTM_NEWACTION)]    = TCAA_MAX,
4181da177e4SLinus Torvalds };
4191da177e4SLinus Torvalds 
4201da177e4SLinus Torvalds void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
4211da177e4SLinus Torvalds {
4221da177e4SLinus Torvalds 	struct rtattr *rta;
4231da177e4SLinus Torvalds 	int size = RTA_LENGTH(attrlen);
4241da177e4SLinus Torvalds 
4251da177e4SLinus Torvalds 	rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
4261da177e4SLinus Torvalds 	rta->rta_type = attrtype;
4271da177e4SLinus Torvalds 	rta->rta_len = size;
4281da177e4SLinus Torvalds 	memcpy(RTA_DATA(rta), data, attrlen);
429b3563c4fSPatrick McHardy 	memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
4301da177e4SLinus Torvalds }
4311da177e4SLinus Torvalds 
43297c53cacSDenis V. Lunev int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned group, int echo)
4331da177e4SLinus Torvalds {
43497c53cacSDenis V. Lunev 	struct sock *rtnl = net->rtnl;
4351da177e4SLinus Torvalds 	int err = 0;
4361da177e4SLinus Torvalds 
437ac6d439dSPatrick McHardy 	NETLINK_CB(skb).dst_group = group;
4381da177e4SLinus Torvalds 	if (echo)
4391da177e4SLinus Torvalds 		atomic_inc(&skb->users);
4401da177e4SLinus Torvalds 	netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
4411da177e4SLinus Torvalds 	if (echo)
4421da177e4SLinus Torvalds 		err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
4431da177e4SLinus Torvalds 	return err;
4441da177e4SLinus Torvalds }
4451da177e4SLinus Torvalds 
44697c53cacSDenis V. Lunev int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
4472942e900SThomas Graf {
44897c53cacSDenis V. Lunev 	struct sock *rtnl = net->rtnl;
44997c53cacSDenis V. Lunev 
4502942e900SThomas Graf 	return nlmsg_unicast(rtnl, skb, pid);
4512942e900SThomas Graf }
4522942e900SThomas Graf 
45397c53cacSDenis V. Lunev int rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
45497676b6bSThomas Graf 		struct nlmsghdr *nlh, gfp_t flags)
45597676b6bSThomas Graf {
45697c53cacSDenis V. Lunev 	struct sock *rtnl = net->rtnl;
45797676b6bSThomas Graf 	int report = 0;
45897676b6bSThomas Graf 
45997676b6bSThomas Graf 	if (nlh)
46097676b6bSThomas Graf 		report = nlmsg_report(nlh);
46197676b6bSThomas Graf 
46297676b6bSThomas Graf 	return nlmsg_notify(rtnl, skb, pid, group, report, flags);
46397676b6bSThomas Graf }
46497676b6bSThomas Graf 
46597c53cacSDenis V. Lunev void rtnl_set_sk_err(struct net *net, u32 group, int error)
46697676b6bSThomas Graf {
46797c53cacSDenis V. Lunev 	struct sock *rtnl = net->rtnl;
46897c53cacSDenis V. Lunev 
46997676b6bSThomas Graf 	netlink_set_err(rtnl, 0, group, error);
47097676b6bSThomas Graf }
47197676b6bSThomas Graf 
4721da177e4SLinus Torvalds int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
4731da177e4SLinus Torvalds {
4742d7202bfSThomas Graf 	struct nlattr *mx;
4752d7202bfSThomas Graf 	int i, valid = 0;
4761da177e4SLinus Torvalds 
4772d7202bfSThomas Graf 	mx = nla_nest_start(skb, RTA_METRICS);
4782d7202bfSThomas Graf 	if (mx == NULL)
4792d7202bfSThomas Graf 		return -ENOBUFS;
4802d7202bfSThomas Graf 
4811da177e4SLinus Torvalds 	for (i = 0; i < RTAX_MAX; i++) {
4822d7202bfSThomas Graf 		if (metrics[i]) {
4832d7202bfSThomas Graf 			valid++;
4842d7202bfSThomas Graf 			NLA_PUT_U32(skb, i+1, metrics[i]);
4851da177e4SLinus Torvalds 		}
4862d7202bfSThomas Graf 	}
4871da177e4SLinus Torvalds 
488a57d27fcSDavid S. Miller 	if (!valid) {
489a57d27fcSDavid S. Miller 		nla_nest_cancel(skb, mx);
490a57d27fcSDavid S. Miller 		return 0;
491a57d27fcSDavid S. Miller 	}
4922d7202bfSThomas Graf 
4932d7202bfSThomas Graf 	return nla_nest_end(skb, mx);
4942d7202bfSThomas Graf 
4952d7202bfSThomas Graf nla_put_failure:
4962d7202bfSThomas Graf 	return nla_nest_cancel(skb, mx);
4971da177e4SLinus Torvalds }
4981da177e4SLinus Torvalds 
499e3703b3dSThomas Graf int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
500e3703b3dSThomas Graf 		       u32 ts, u32 tsage, long expires, u32 error)
501e3703b3dSThomas Graf {
502e3703b3dSThomas Graf 	struct rta_cacheinfo ci = {
503e3703b3dSThomas Graf 		.rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
504e3703b3dSThomas Graf 		.rta_used = dst->__use,
505e3703b3dSThomas Graf 		.rta_clntref = atomic_read(&(dst->__refcnt)),
506e3703b3dSThomas Graf 		.rta_error = error,
507e3703b3dSThomas Graf 		.rta_id =  id,
508e3703b3dSThomas Graf 		.rta_ts = ts,
509e3703b3dSThomas Graf 		.rta_tsage = tsage,
510e3703b3dSThomas Graf 	};
511e3703b3dSThomas Graf 
512e3703b3dSThomas Graf 	if (expires)
513e3703b3dSThomas Graf 		ci.rta_expires = jiffies_to_clock_t(expires);
514e3703b3dSThomas Graf 
515e3703b3dSThomas Graf 	return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
516e3703b3dSThomas Graf }
517e3703b3dSThomas Graf 
518e3703b3dSThomas Graf EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
5191da177e4SLinus Torvalds 
52093b2d4a2SDavid S. Miller static void set_operstate(struct net_device *dev, unsigned char transition)
521b00055aaSStefan Rompf {
522b00055aaSStefan Rompf 	unsigned char operstate = dev->operstate;
523b00055aaSStefan Rompf 
524b00055aaSStefan Rompf 	switch(transition) {
525b00055aaSStefan Rompf 	case IF_OPER_UP:
526b00055aaSStefan Rompf 		if ((operstate == IF_OPER_DORMANT ||
527b00055aaSStefan Rompf 		     operstate == IF_OPER_UNKNOWN) &&
528b00055aaSStefan Rompf 		    !netif_dormant(dev))
529b00055aaSStefan Rompf 			operstate = IF_OPER_UP;
530b00055aaSStefan Rompf 		break;
531b00055aaSStefan Rompf 
532b00055aaSStefan Rompf 	case IF_OPER_DORMANT:
533b00055aaSStefan Rompf 		if (operstate == IF_OPER_UP ||
534b00055aaSStefan Rompf 		    operstate == IF_OPER_UNKNOWN)
535b00055aaSStefan Rompf 			operstate = IF_OPER_DORMANT;
536b00055aaSStefan Rompf 		break;
5373ff50b79SStephen Hemminger 	}
538b00055aaSStefan Rompf 
539b00055aaSStefan Rompf 	if (dev->operstate != operstate) {
540b00055aaSStefan Rompf 		write_lock_bh(&dev_base_lock);
541b00055aaSStefan Rompf 		dev->operstate = operstate;
542b00055aaSStefan Rompf 		write_unlock_bh(&dev_base_lock);
543b00055aaSStefan Rompf 		netdev_state_change(dev);
54493b2d4a2SDavid S. Miller 	}
545b00055aaSStefan Rompf }
546b00055aaSStefan Rompf 
547b60c5115SThomas Graf static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
548b60c5115SThomas Graf 				 struct net_device_stats *b)
5491da177e4SLinus Torvalds {
550b60c5115SThomas Graf 	a->rx_packets = b->rx_packets;
551b60c5115SThomas Graf 	a->tx_packets = b->tx_packets;
552b60c5115SThomas Graf 	a->rx_bytes = b->rx_bytes;
553b60c5115SThomas Graf 	a->tx_bytes = b->tx_bytes;
554b60c5115SThomas Graf 	a->rx_errors = b->rx_errors;
555b60c5115SThomas Graf 	a->tx_errors = b->tx_errors;
556b60c5115SThomas Graf 	a->rx_dropped = b->rx_dropped;
557b60c5115SThomas Graf 	a->tx_dropped = b->tx_dropped;
558b60c5115SThomas Graf 
559b60c5115SThomas Graf 	a->multicast = b->multicast;
560b60c5115SThomas Graf 	a->collisions = b->collisions;
561b60c5115SThomas Graf 
562b60c5115SThomas Graf 	a->rx_length_errors = b->rx_length_errors;
563b60c5115SThomas Graf 	a->rx_over_errors = b->rx_over_errors;
564b60c5115SThomas Graf 	a->rx_crc_errors = b->rx_crc_errors;
565b60c5115SThomas Graf 	a->rx_frame_errors = b->rx_frame_errors;
566b60c5115SThomas Graf 	a->rx_fifo_errors = b->rx_fifo_errors;
567b60c5115SThomas Graf 	a->rx_missed_errors = b->rx_missed_errors;
568b60c5115SThomas Graf 
569b60c5115SThomas Graf 	a->tx_aborted_errors = b->tx_aborted_errors;
570b60c5115SThomas Graf 	a->tx_carrier_errors = b->tx_carrier_errors;
571b60c5115SThomas Graf 	a->tx_fifo_errors = b->tx_fifo_errors;
572b60c5115SThomas Graf 	a->tx_heartbeat_errors = b->tx_heartbeat_errors;
573b60c5115SThomas Graf 	a->tx_window_errors = b->tx_window_errors;
574b60c5115SThomas Graf 
575b60c5115SThomas Graf 	a->rx_compressed = b->rx_compressed;
576b60c5115SThomas Graf 	a->tx_compressed = b->tx_compressed;
577b60c5115SThomas Graf };
578b60c5115SThomas Graf 
57938f7b870SPatrick McHardy static inline size_t if_nlmsg_size(const struct net_device *dev)
580339bf98fSThomas Graf {
581339bf98fSThomas Graf 	return NLMSG_ALIGN(sizeof(struct ifinfomsg))
582339bf98fSThomas Graf 	       + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
583339bf98fSThomas Graf 	       + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
584339bf98fSThomas Graf 	       + nla_total_size(sizeof(struct rtnl_link_ifmap))
585339bf98fSThomas Graf 	       + nla_total_size(sizeof(struct rtnl_link_stats))
586339bf98fSThomas Graf 	       + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
587339bf98fSThomas Graf 	       + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
588339bf98fSThomas Graf 	       + nla_total_size(4) /* IFLA_TXQLEN */
589339bf98fSThomas Graf 	       + nla_total_size(4) /* IFLA_WEIGHT */
590339bf98fSThomas Graf 	       + nla_total_size(4) /* IFLA_MTU */
591339bf98fSThomas Graf 	       + nla_total_size(4) /* IFLA_LINK */
592339bf98fSThomas Graf 	       + nla_total_size(4) /* IFLA_MASTER */
593339bf98fSThomas Graf 	       + nla_total_size(1) /* IFLA_OPERSTATE */
59438f7b870SPatrick McHardy 	       + nla_total_size(1) /* IFLA_LINKMODE */
59538f7b870SPatrick McHardy 	       + rtnl_link_get_size(dev); /* IFLA_LINKINFO */
596339bf98fSThomas Graf }
597339bf98fSThomas Graf 
598b60c5115SThomas Graf static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
599575c3e2aSPatrick McHardy 			    int type, u32 pid, u32 seq, u32 change,
600575c3e2aSPatrick McHardy 			    unsigned int flags)
601b60c5115SThomas Graf {
602b60c5115SThomas Graf 	struct ifinfomsg *ifm;
6031da177e4SLinus Torvalds 	struct nlmsghdr *nlh;
6041da177e4SLinus Torvalds 
605b60c5115SThomas Graf 	nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
606b60c5115SThomas Graf 	if (nlh == NULL)
60726932566SPatrick McHardy 		return -EMSGSIZE;
6081da177e4SLinus Torvalds 
609b60c5115SThomas Graf 	ifm = nlmsg_data(nlh);
610b60c5115SThomas Graf 	ifm->ifi_family = AF_UNSPEC;
611b60c5115SThomas Graf 	ifm->__ifi_pad = 0;
612b60c5115SThomas Graf 	ifm->ifi_type = dev->type;
613b60c5115SThomas Graf 	ifm->ifi_index = dev->ifindex;
614b60c5115SThomas Graf 	ifm->ifi_flags = dev_get_flags(dev);
615b60c5115SThomas Graf 	ifm->ifi_change = change;
6161da177e4SLinus Torvalds 
617b60c5115SThomas Graf 	NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
618b60c5115SThomas Graf 	NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
619b60c5115SThomas Graf 	NLA_PUT_U8(skb, IFLA_OPERSTATE,
620b60c5115SThomas Graf 		   netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
621b60c5115SThomas Graf 	NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
622b60c5115SThomas Graf 	NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
6231da177e4SLinus Torvalds 
624b60c5115SThomas Graf 	if (dev->ifindex != dev->iflink)
625b60c5115SThomas Graf 		NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
6261da177e4SLinus Torvalds 
627b60c5115SThomas Graf 	if (dev->master)
628b60c5115SThomas Graf 		NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
629b60c5115SThomas Graf 
630b60c5115SThomas Graf 	if (dev->qdisc_sleeping)
631b60c5115SThomas Graf 		NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc_sleeping->ops->id);
632b00055aaSStefan Rompf 
633b00055aaSStefan Rompf 	if (1) {
6341da177e4SLinus Torvalds 		struct rtnl_link_ifmap map = {
6351da177e4SLinus Torvalds 			.mem_start   = dev->mem_start,
6361da177e4SLinus Torvalds 			.mem_end     = dev->mem_end,
6371da177e4SLinus Torvalds 			.base_addr   = dev->base_addr,
6381da177e4SLinus Torvalds 			.irq         = dev->irq,
6391da177e4SLinus Torvalds 			.dma         = dev->dma,
6401da177e4SLinus Torvalds 			.port        = dev->if_port,
6411da177e4SLinus Torvalds 		};
642b60c5115SThomas Graf 		NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
6431da177e4SLinus Torvalds 	}
6441da177e4SLinus Torvalds 
6451da177e4SLinus Torvalds 	if (dev->addr_len) {
646b60c5115SThomas Graf 		NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
647b60c5115SThomas Graf 		NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
6481da177e4SLinus Torvalds 	}
6491da177e4SLinus Torvalds 
6501da177e4SLinus Torvalds 	if (dev->get_stats) {
651b60c5115SThomas Graf 		struct net_device_stats *stats = dev->get_stats(dev);
6521da177e4SLinus Torvalds 		if (stats) {
653b60c5115SThomas Graf 			struct nlattr *attr;
6541da177e4SLinus Torvalds 
655b60c5115SThomas Graf 			attr = nla_reserve(skb, IFLA_STATS,
656b60c5115SThomas Graf 					   sizeof(struct rtnl_link_stats));
657b60c5115SThomas Graf 			if (attr == NULL)
658b60c5115SThomas Graf 				goto nla_put_failure;
659b60c5115SThomas Graf 
660b60c5115SThomas Graf 			copy_rtnl_link_stats(nla_data(attr), stats);
6611da177e4SLinus Torvalds 		}
6621da177e4SLinus Torvalds 	}
6631da177e4SLinus Torvalds 
66438f7b870SPatrick McHardy 	if (dev->rtnl_link_ops) {
66538f7b870SPatrick McHardy 		if (rtnl_link_fill(skb, dev) < 0)
66638f7b870SPatrick McHardy 			goto nla_put_failure;
66738f7b870SPatrick McHardy 	}
66838f7b870SPatrick McHardy 
669b60c5115SThomas Graf 	return nlmsg_end(skb, nlh);
670b60c5115SThomas Graf 
671b60c5115SThomas Graf nla_put_failure:
67226932566SPatrick McHardy 	nlmsg_cancel(skb, nlh);
67326932566SPatrick McHardy 	return -EMSGSIZE;
6741da177e4SLinus Torvalds }
6751da177e4SLinus Torvalds 
676b60c5115SThomas Graf static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
6771da177e4SLinus Torvalds {
6783b1e0a65SYOSHIFUJI Hideaki 	struct net *net = sock_net(skb->sk);
6791da177e4SLinus Torvalds 	int idx;
6801da177e4SLinus Torvalds 	int s_idx = cb->args[0];
6811da177e4SLinus Torvalds 	struct net_device *dev;
6821da177e4SLinus Torvalds 
6837562f876SPavel Emelianov 	idx = 0;
684881d966bSEric W. Biederman 	for_each_netdev(net, dev) {
6851da177e4SLinus Torvalds 		if (idx < s_idx)
6867562f876SPavel Emelianov 			goto cont;
687575c3e2aSPatrick McHardy 		if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
688b6544c0bSJamal Hadi Salim 				     NETLINK_CB(cb->skb).pid,
689b60c5115SThomas Graf 				     cb->nlh->nlmsg_seq, 0, NLM_F_MULTI) <= 0)
6901da177e4SLinus Torvalds 			break;
6917562f876SPavel Emelianov cont:
6927562f876SPavel Emelianov 		idx++;
6931da177e4SLinus Torvalds 	}
6941da177e4SLinus Torvalds 	cb->args[0] = idx;
6951da177e4SLinus Torvalds 
6961da177e4SLinus Torvalds 	return skb->len;
6971da177e4SLinus Torvalds }
6981da177e4SLinus Torvalds 
699e7199288SPavel Emelianov const struct nla_policy ifla_policy[IFLA_MAX+1] = {
7005176f91eSThomas Graf 	[IFLA_IFNAME]		= { .type = NLA_STRING, .len = IFNAMSIZ-1 },
70138f7b870SPatrick McHardy 	[IFLA_ADDRESS]		= { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
70238f7b870SPatrick McHardy 	[IFLA_BROADCAST]	= { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
7035176f91eSThomas Graf 	[IFLA_MAP]		= { .len = sizeof(struct rtnl_link_ifmap) },
704da5e0494SThomas Graf 	[IFLA_MTU]		= { .type = NLA_U32 },
70576e87306SThomas Graf 	[IFLA_LINK]		= { .type = NLA_U32 },
706da5e0494SThomas Graf 	[IFLA_TXQLEN]		= { .type = NLA_U32 },
707da5e0494SThomas Graf 	[IFLA_WEIGHT]		= { .type = NLA_U32 },
708da5e0494SThomas Graf 	[IFLA_OPERSTATE]	= { .type = NLA_U8 },
709da5e0494SThomas Graf 	[IFLA_LINKMODE]		= { .type = NLA_U8 },
71076e87306SThomas Graf 	[IFLA_LINKINFO]		= { .type = NLA_NESTED },
711d8a5ec67SEric W. Biederman 	[IFLA_NET_NS_PID]	= { .type = NLA_U32 },
712da5e0494SThomas Graf };
7131da177e4SLinus Torvalds 
71438f7b870SPatrick McHardy static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
71538f7b870SPatrick McHardy 	[IFLA_INFO_KIND]	= { .type = NLA_STRING },
71638f7b870SPatrick McHardy 	[IFLA_INFO_DATA]	= { .type = NLA_NESTED },
71738f7b870SPatrick McHardy };
71838f7b870SPatrick McHardy 
719d8a5ec67SEric W. Biederman static struct net *get_net_ns_by_pid(pid_t pid)
720d8a5ec67SEric W. Biederman {
721d8a5ec67SEric W. Biederman 	struct task_struct *tsk;
722d8a5ec67SEric W. Biederman 	struct net *net;
723d8a5ec67SEric W. Biederman 
724d8a5ec67SEric W. Biederman 	/* Lookup the network namespace */
725d8a5ec67SEric W. Biederman 	net = ERR_PTR(-ESRCH);
726d8a5ec67SEric W. Biederman 	rcu_read_lock();
727ceaa79c4SEric W. Biederman 	tsk = find_task_by_vpid(pid);
728d8a5ec67SEric W. Biederman 	if (tsk) {
729cf7b708cSPavel Emelyanov 		struct nsproxy *nsproxy;
730cf7b708cSPavel Emelyanov 		nsproxy = task_nsproxy(tsk);
731cf7b708cSPavel Emelyanov 		if (nsproxy)
732cf7b708cSPavel Emelyanov 			net = get_net(nsproxy->net_ns);
733d8a5ec67SEric W. Biederman 	}
734d8a5ec67SEric W. Biederman 	rcu_read_unlock();
735d8a5ec67SEric W. Biederman 	return net;
736d8a5ec67SEric W. Biederman }
737d8a5ec67SEric W. Biederman 
7381840bb13SThomas Graf static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
7391840bb13SThomas Graf {
7401840bb13SThomas Graf 	if (dev) {
7411840bb13SThomas Graf 		if (tb[IFLA_ADDRESS] &&
7421840bb13SThomas Graf 		    nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
7431840bb13SThomas Graf 			return -EINVAL;
7441840bb13SThomas Graf 
7451840bb13SThomas Graf 		if (tb[IFLA_BROADCAST] &&
7461840bb13SThomas Graf 		    nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
7471840bb13SThomas Graf 			return -EINVAL;
7481840bb13SThomas Graf 	}
7491840bb13SThomas Graf 
7501840bb13SThomas Graf 	return 0;
7511840bb13SThomas Graf }
7521840bb13SThomas Graf 
7530157f60cSPatrick McHardy static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
75438f7b870SPatrick McHardy 		      struct nlattr **tb, char *ifname, int modified)
7550157f60cSPatrick McHardy {
75638f7b870SPatrick McHardy 	int send_addr_notify = 0;
7570157f60cSPatrick McHardy 	int err;
7580157f60cSPatrick McHardy 
759d8a5ec67SEric W. Biederman 	if (tb[IFLA_NET_NS_PID]) {
760d8a5ec67SEric W. Biederman 		struct net *net;
761d8a5ec67SEric W. Biederman 		net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
762d8a5ec67SEric W. Biederman 		if (IS_ERR(net)) {
763d8a5ec67SEric W. Biederman 			err = PTR_ERR(net);
764d8a5ec67SEric W. Biederman 			goto errout;
765d8a5ec67SEric W. Biederman 		}
766d8a5ec67SEric W. Biederman 		err = dev_change_net_namespace(dev, net, ifname);
767d8a5ec67SEric W. Biederman 		put_net(net);
768d8a5ec67SEric W. Biederman 		if (err)
769d8a5ec67SEric W. Biederman 			goto errout;
770d8a5ec67SEric W. Biederman 		modified = 1;
771d8a5ec67SEric W. Biederman 	}
772d8a5ec67SEric W. Biederman 
7730157f60cSPatrick McHardy 	if (tb[IFLA_MAP]) {
7740157f60cSPatrick McHardy 		struct rtnl_link_ifmap *u_map;
7750157f60cSPatrick McHardy 		struct ifmap k_map;
7760157f60cSPatrick McHardy 
7770157f60cSPatrick McHardy 		if (!dev->set_config) {
7780157f60cSPatrick McHardy 			err = -EOPNOTSUPP;
7790157f60cSPatrick McHardy 			goto errout;
7800157f60cSPatrick McHardy 		}
7810157f60cSPatrick McHardy 
7820157f60cSPatrick McHardy 		if (!netif_device_present(dev)) {
7830157f60cSPatrick McHardy 			err = -ENODEV;
7840157f60cSPatrick McHardy 			goto errout;
7850157f60cSPatrick McHardy 		}
7860157f60cSPatrick McHardy 
7870157f60cSPatrick McHardy 		u_map = nla_data(tb[IFLA_MAP]);
7880157f60cSPatrick McHardy 		k_map.mem_start = (unsigned long) u_map->mem_start;
7890157f60cSPatrick McHardy 		k_map.mem_end = (unsigned long) u_map->mem_end;
7900157f60cSPatrick McHardy 		k_map.base_addr = (unsigned short) u_map->base_addr;
7910157f60cSPatrick McHardy 		k_map.irq = (unsigned char) u_map->irq;
7920157f60cSPatrick McHardy 		k_map.dma = (unsigned char) u_map->dma;
7930157f60cSPatrick McHardy 		k_map.port = (unsigned char) u_map->port;
7940157f60cSPatrick McHardy 
7950157f60cSPatrick McHardy 		err = dev->set_config(dev, &k_map);
7960157f60cSPatrick McHardy 		if (err < 0)
7970157f60cSPatrick McHardy 			goto errout;
7980157f60cSPatrick McHardy 
7990157f60cSPatrick McHardy 		modified = 1;
8000157f60cSPatrick McHardy 	}
8010157f60cSPatrick McHardy 
8020157f60cSPatrick McHardy 	if (tb[IFLA_ADDRESS]) {
8030157f60cSPatrick McHardy 		struct sockaddr *sa;
8040157f60cSPatrick McHardy 		int len;
8050157f60cSPatrick McHardy 
8060157f60cSPatrick McHardy 		if (!dev->set_mac_address) {
8070157f60cSPatrick McHardy 			err = -EOPNOTSUPP;
8080157f60cSPatrick McHardy 			goto errout;
8090157f60cSPatrick McHardy 		}
8100157f60cSPatrick McHardy 
8110157f60cSPatrick McHardy 		if (!netif_device_present(dev)) {
8120157f60cSPatrick McHardy 			err = -ENODEV;
8130157f60cSPatrick McHardy 			goto errout;
8140157f60cSPatrick McHardy 		}
8150157f60cSPatrick McHardy 
8160157f60cSPatrick McHardy 		len = sizeof(sa_family_t) + dev->addr_len;
8170157f60cSPatrick McHardy 		sa = kmalloc(len, GFP_KERNEL);
8180157f60cSPatrick McHardy 		if (!sa) {
8190157f60cSPatrick McHardy 			err = -ENOMEM;
8200157f60cSPatrick McHardy 			goto errout;
8210157f60cSPatrick McHardy 		}
8220157f60cSPatrick McHardy 		sa->sa_family = dev->type;
8230157f60cSPatrick McHardy 		memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
8240157f60cSPatrick McHardy 		       dev->addr_len);
8250157f60cSPatrick McHardy 		err = dev->set_mac_address(dev, sa);
8260157f60cSPatrick McHardy 		kfree(sa);
8270157f60cSPatrick McHardy 		if (err)
8280157f60cSPatrick McHardy 			goto errout;
8290157f60cSPatrick McHardy 		send_addr_notify = 1;
8300157f60cSPatrick McHardy 		modified = 1;
8310157f60cSPatrick McHardy 	}
8320157f60cSPatrick McHardy 
8330157f60cSPatrick McHardy 	if (tb[IFLA_MTU]) {
8340157f60cSPatrick McHardy 		err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
8350157f60cSPatrick McHardy 		if (err < 0)
8360157f60cSPatrick McHardy 			goto errout;
8370157f60cSPatrick McHardy 		modified = 1;
8380157f60cSPatrick McHardy 	}
8390157f60cSPatrick McHardy 
8400157f60cSPatrick McHardy 	/*
8410157f60cSPatrick McHardy 	 * Interface selected by interface index but interface
8420157f60cSPatrick McHardy 	 * name provided implies that a name change has been
8430157f60cSPatrick McHardy 	 * requested.
8440157f60cSPatrick McHardy 	 */
8450157f60cSPatrick McHardy 	if (ifm->ifi_index > 0 && ifname[0]) {
8460157f60cSPatrick McHardy 		err = dev_change_name(dev, ifname);
8470157f60cSPatrick McHardy 		if (err < 0)
8480157f60cSPatrick McHardy 			goto errout;
8490157f60cSPatrick McHardy 		modified = 1;
8500157f60cSPatrick McHardy 	}
8510157f60cSPatrick McHardy 
8520157f60cSPatrick McHardy 	if (tb[IFLA_BROADCAST]) {
8530157f60cSPatrick McHardy 		nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
8540157f60cSPatrick McHardy 		send_addr_notify = 1;
8550157f60cSPatrick McHardy 	}
8560157f60cSPatrick McHardy 
8570157f60cSPatrick McHardy 	if (ifm->ifi_flags || ifm->ifi_change) {
8580157f60cSPatrick McHardy 		unsigned int flags = ifm->ifi_flags;
8590157f60cSPatrick McHardy 
8600157f60cSPatrick McHardy 		/* bugwards compatibility: ifi_change == 0 is treated as ~0 */
8610157f60cSPatrick McHardy 		if (ifm->ifi_change)
8620157f60cSPatrick McHardy 			flags = (flags & ifm->ifi_change) |
8630157f60cSPatrick McHardy 				(dev->flags & ~ifm->ifi_change);
8640157f60cSPatrick McHardy 		dev_change_flags(dev, flags);
8650157f60cSPatrick McHardy 	}
8660157f60cSPatrick McHardy 
86793b2d4a2SDavid S. Miller 	if (tb[IFLA_TXQLEN])
8680157f60cSPatrick McHardy 		dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
8690157f60cSPatrick McHardy 
8700157f60cSPatrick McHardy 	if (tb[IFLA_OPERSTATE])
87193b2d4a2SDavid S. Miller 		set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
8720157f60cSPatrick McHardy 
8730157f60cSPatrick McHardy 	if (tb[IFLA_LINKMODE]) {
8740157f60cSPatrick McHardy 		write_lock_bh(&dev_base_lock);
8750157f60cSPatrick McHardy 		dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
87693b2d4a2SDavid S. Miller 		write_unlock_bh(&dev_base_lock);
8770157f60cSPatrick McHardy 	}
8780157f60cSPatrick McHardy 
8790157f60cSPatrick McHardy 	err = 0;
8800157f60cSPatrick McHardy 
8810157f60cSPatrick McHardy errout:
8820157f60cSPatrick McHardy 	if (err < 0 && modified && net_ratelimit())
8830157f60cSPatrick McHardy 		printk(KERN_WARNING "A link change request failed with "
8840157f60cSPatrick McHardy 		       "some changes comitted already. Interface %s may "
8850157f60cSPatrick McHardy 		       "have been left with an inconsistent configuration, "
8860157f60cSPatrick McHardy 		       "please check.\n", dev->name);
8870157f60cSPatrick McHardy 
8880157f60cSPatrick McHardy 	if (send_addr_notify)
8890157f60cSPatrick McHardy 		call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
8900157f60cSPatrick McHardy 	return err;
8910157f60cSPatrick McHardy }
8920157f60cSPatrick McHardy 
893da5e0494SThomas Graf static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
894da5e0494SThomas Graf {
8953b1e0a65SYOSHIFUJI Hideaki 	struct net *net = sock_net(skb->sk);
896da5e0494SThomas Graf 	struct ifinfomsg *ifm;
897da5e0494SThomas Graf 	struct net_device *dev;
8980157f60cSPatrick McHardy 	int err;
899da5e0494SThomas Graf 	struct nlattr *tb[IFLA_MAX+1];
9001da177e4SLinus Torvalds 	char ifname[IFNAMSIZ];
9011da177e4SLinus Torvalds 
902da5e0494SThomas Graf 	err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
903da5e0494SThomas Graf 	if (err < 0)
904da5e0494SThomas Graf 		goto errout;
9051da177e4SLinus Torvalds 
9065176f91eSThomas Graf 	if (tb[IFLA_IFNAME])
9075176f91eSThomas Graf 		nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
90878e5b891SPatrick McHardy 	else
90978e5b891SPatrick McHardy 		ifname[0] = '\0';
9101da177e4SLinus Torvalds 
9111da177e4SLinus Torvalds 	err = -EINVAL;
912da5e0494SThomas Graf 	ifm = nlmsg_data(nlh);
91351055be8SPatrick McHardy 	if (ifm->ifi_index > 0)
914881d966bSEric W. Biederman 		dev = dev_get_by_index(net, ifm->ifi_index);
915da5e0494SThomas Graf 	else if (tb[IFLA_IFNAME])
916881d966bSEric W. Biederman 		dev = dev_get_by_name(net, ifname);
917da5e0494SThomas Graf 	else
918da5e0494SThomas Graf 		goto errout;
9191da177e4SLinus Torvalds 
920da5e0494SThomas Graf 	if (dev == NULL) {
921da5e0494SThomas Graf 		err = -ENODEV;
922da5e0494SThomas Graf 		goto errout;
923da5e0494SThomas Graf 	}
9241da177e4SLinus Torvalds 
9251840bb13SThomas Graf 	if ((err = validate_linkmsg(dev, tb)) < 0)
926da5e0494SThomas Graf 		goto errout_dev;
927da5e0494SThomas Graf 
92838f7b870SPatrick McHardy 	err = do_setlink(dev, ifm, tb, ifname, 0);
929da5e0494SThomas Graf errout_dev:
9301da177e4SLinus Torvalds 	dev_put(dev);
931da5e0494SThomas Graf errout:
9321da177e4SLinus Torvalds 	return err;
9331da177e4SLinus Torvalds }
9341da177e4SLinus Torvalds 
93538f7b870SPatrick McHardy static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
93638f7b870SPatrick McHardy {
9373b1e0a65SYOSHIFUJI Hideaki 	struct net *net = sock_net(skb->sk);
93838f7b870SPatrick McHardy 	const struct rtnl_link_ops *ops;
93938f7b870SPatrick McHardy 	struct net_device *dev;
94038f7b870SPatrick McHardy 	struct ifinfomsg *ifm;
94138f7b870SPatrick McHardy 	char ifname[IFNAMSIZ];
94238f7b870SPatrick McHardy 	struct nlattr *tb[IFLA_MAX+1];
94338f7b870SPatrick McHardy 	int err;
94438f7b870SPatrick McHardy 
94538f7b870SPatrick McHardy 	err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
94638f7b870SPatrick McHardy 	if (err < 0)
94738f7b870SPatrick McHardy 		return err;
94838f7b870SPatrick McHardy 
94938f7b870SPatrick McHardy 	if (tb[IFLA_IFNAME])
95038f7b870SPatrick McHardy 		nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
95138f7b870SPatrick McHardy 
95238f7b870SPatrick McHardy 	ifm = nlmsg_data(nlh);
95338f7b870SPatrick McHardy 	if (ifm->ifi_index > 0)
954881d966bSEric W. Biederman 		dev = __dev_get_by_index(net, ifm->ifi_index);
95538f7b870SPatrick McHardy 	else if (tb[IFLA_IFNAME])
956881d966bSEric W. Biederman 		dev = __dev_get_by_name(net, ifname);
95738f7b870SPatrick McHardy 	else
95838f7b870SPatrick McHardy 		return -EINVAL;
95938f7b870SPatrick McHardy 
96038f7b870SPatrick McHardy 	if (!dev)
96138f7b870SPatrick McHardy 		return -ENODEV;
96238f7b870SPatrick McHardy 
96338f7b870SPatrick McHardy 	ops = dev->rtnl_link_ops;
96438f7b870SPatrick McHardy 	if (!ops)
96538f7b870SPatrick McHardy 		return -EOPNOTSUPP;
96638f7b870SPatrick McHardy 
96738f7b870SPatrick McHardy 	ops->dellink(dev);
96838f7b870SPatrick McHardy 	return 0;
96938f7b870SPatrick McHardy }
97038f7b870SPatrick McHardy 
971881d966bSEric W. Biederman struct net_device *rtnl_create_link(struct net *net, char *ifname,
972e7199288SPavel Emelianov 		const struct rtnl_link_ops *ops, struct nlattr *tb[])
973e7199288SPavel Emelianov {
974e7199288SPavel Emelianov 	int err;
975e7199288SPavel Emelianov 	struct net_device *dev;
976e7199288SPavel Emelianov 
977e7199288SPavel Emelianov 	err = -ENOMEM;
978e7199288SPavel Emelianov 	dev = alloc_netdev(ops->priv_size, ifname, ops->setup);
979e7199288SPavel Emelianov 	if (!dev)
980e7199288SPavel Emelianov 		goto err;
981e7199288SPavel Emelianov 
982e7199288SPavel Emelianov 	if (strchr(dev->name, '%')) {
983e7199288SPavel Emelianov 		err = dev_alloc_name(dev, dev->name);
984e7199288SPavel Emelianov 		if (err < 0)
985e7199288SPavel Emelianov 			goto err_free;
986e7199288SPavel Emelianov 	}
987e7199288SPavel Emelianov 
988c346dca1SYOSHIFUJI Hideaki 	dev_net_set(dev, net);
989e7199288SPavel Emelianov 	dev->rtnl_link_ops = ops;
990e7199288SPavel Emelianov 
991e7199288SPavel Emelianov 	if (tb[IFLA_MTU])
992e7199288SPavel Emelianov 		dev->mtu = nla_get_u32(tb[IFLA_MTU]);
993e7199288SPavel Emelianov 	if (tb[IFLA_ADDRESS])
994e7199288SPavel Emelianov 		memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
995e7199288SPavel Emelianov 				nla_len(tb[IFLA_ADDRESS]));
996e7199288SPavel Emelianov 	if (tb[IFLA_BROADCAST])
997e7199288SPavel Emelianov 		memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
998e7199288SPavel Emelianov 				nla_len(tb[IFLA_BROADCAST]));
999e7199288SPavel Emelianov 	if (tb[IFLA_TXQLEN])
1000e7199288SPavel Emelianov 		dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1001e7199288SPavel Emelianov 	if (tb[IFLA_OPERSTATE])
100293b2d4a2SDavid S. Miller 		set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
1003e7199288SPavel Emelianov 	if (tb[IFLA_LINKMODE])
1004e7199288SPavel Emelianov 		dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1005e7199288SPavel Emelianov 
1006e7199288SPavel Emelianov 	return dev;
1007e7199288SPavel Emelianov 
1008e7199288SPavel Emelianov err_free:
1009e7199288SPavel Emelianov 	free_netdev(dev);
1010e7199288SPavel Emelianov err:
1011e7199288SPavel Emelianov 	return ERR_PTR(err);
1012e7199288SPavel Emelianov }
1013e7199288SPavel Emelianov 
101438f7b870SPatrick McHardy static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
101538f7b870SPatrick McHardy {
10163b1e0a65SYOSHIFUJI Hideaki 	struct net *net = sock_net(skb->sk);
101738f7b870SPatrick McHardy 	const struct rtnl_link_ops *ops;
101838f7b870SPatrick McHardy 	struct net_device *dev;
101938f7b870SPatrick McHardy 	struct ifinfomsg *ifm;
102038f7b870SPatrick McHardy 	char kind[MODULE_NAME_LEN];
102138f7b870SPatrick McHardy 	char ifname[IFNAMSIZ];
102238f7b870SPatrick McHardy 	struct nlattr *tb[IFLA_MAX+1];
102338f7b870SPatrick McHardy 	struct nlattr *linkinfo[IFLA_INFO_MAX+1];
102438f7b870SPatrick McHardy 	int err;
102538f7b870SPatrick McHardy 
10268072f085SThomas Graf #ifdef CONFIG_KMOD
102738f7b870SPatrick McHardy replay:
10288072f085SThomas Graf #endif
102938f7b870SPatrick McHardy 	err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
103038f7b870SPatrick McHardy 	if (err < 0)
103138f7b870SPatrick McHardy 		return err;
103238f7b870SPatrick McHardy 
103338f7b870SPatrick McHardy 	if (tb[IFLA_IFNAME])
103438f7b870SPatrick McHardy 		nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
103538f7b870SPatrick McHardy 	else
103638f7b870SPatrick McHardy 		ifname[0] = '\0';
103738f7b870SPatrick McHardy 
103838f7b870SPatrick McHardy 	ifm = nlmsg_data(nlh);
103938f7b870SPatrick McHardy 	if (ifm->ifi_index > 0)
1040881d966bSEric W. Biederman 		dev = __dev_get_by_index(net, ifm->ifi_index);
104138f7b870SPatrick McHardy 	else if (ifname[0])
1042881d966bSEric W. Biederman 		dev = __dev_get_by_name(net, ifname);
104338f7b870SPatrick McHardy 	else
104438f7b870SPatrick McHardy 		dev = NULL;
104538f7b870SPatrick McHardy 
10461840bb13SThomas Graf 	if ((err = validate_linkmsg(dev, tb)) < 0)
10471840bb13SThomas Graf 		return err;
10481840bb13SThomas Graf 
104938f7b870SPatrick McHardy 	if (tb[IFLA_LINKINFO]) {
105038f7b870SPatrick McHardy 		err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
105138f7b870SPatrick McHardy 				       tb[IFLA_LINKINFO], ifla_info_policy);
105238f7b870SPatrick McHardy 		if (err < 0)
105338f7b870SPatrick McHardy 			return err;
105438f7b870SPatrick McHardy 	} else
105538f7b870SPatrick McHardy 		memset(linkinfo, 0, sizeof(linkinfo));
105638f7b870SPatrick McHardy 
105738f7b870SPatrick McHardy 	if (linkinfo[IFLA_INFO_KIND]) {
105838f7b870SPatrick McHardy 		nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
105938f7b870SPatrick McHardy 		ops = rtnl_link_ops_get(kind);
106038f7b870SPatrick McHardy 	} else {
106138f7b870SPatrick McHardy 		kind[0] = '\0';
106238f7b870SPatrick McHardy 		ops = NULL;
106338f7b870SPatrick McHardy 	}
106438f7b870SPatrick McHardy 
106538f7b870SPatrick McHardy 	if (1) {
106638f7b870SPatrick McHardy 		struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
106738f7b870SPatrick McHardy 
106838f7b870SPatrick McHardy 		if (ops) {
106938f7b870SPatrick McHardy 			if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
107038f7b870SPatrick McHardy 				err = nla_parse_nested(attr, ops->maxtype,
107138f7b870SPatrick McHardy 						       linkinfo[IFLA_INFO_DATA],
107238f7b870SPatrick McHardy 						       ops->policy);
107338f7b870SPatrick McHardy 				if (err < 0)
107438f7b870SPatrick McHardy 					return err;
107538f7b870SPatrick McHardy 				data = attr;
107638f7b870SPatrick McHardy 			}
107738f7b870SPatrick McHardy 			if (ops->validate) {
107838f7b870SPatrick McHardy 				err = ops->validate(tb, data);
107938f7b870SPatrick McHardy 				if (err < 0)
108038f7b870SPatrick McHardy 					return err;
108138f7b870SPatrick McHardy 			}
108238f7b870SPatrick McHardy 		}
108338f7b870SPatrick McHardy 
108438f7b870SPatrick McHardy 		if (dev) {
108538f7b870SPatrick McHardy 			int modified = 0;
108638f7b870SPatrick McHardy 
108738f7b870SPatrick McHardy 			if (nlh->nlmsg_flags & NLM_F_EXCL)
108838f7b870SPatrick McHardy 				return -EEXIST;
108938f7b870SPatrick McHardy 			if (nlh->nlmsg_flags & NLM_F_REPLACE)
109038f7b870SPatrick McHardy 				return -EOPNOTSUPP;
109138f7b870SPatrick McHardy 
109238f7b870SPatrick McHardy 			if (linkinfo[IFLA_INFO_DATA]) {
109338f7b870SPatrick McHardy 				if (!ops || ops != dev->rtnl_link_ops ||
109438f7b870SPatrick McHardy 				    !ops->changelink)
109538f7b870SPatrick McHardy 					return -EOPNOTSUPP;
109638f7b870SPatrick McHardy 
109738f7b870SPatrick McHardy 				err = ops->changelink(dev, tb, data);
109838f7b870SPatrick McHardy 				if (err < 0)
109938f7b870SPatrick McHardy 					return err;
110038f7b870SPatrick McHardy 				modified = 1;
110138f7b870SPatrick McHardy 			}
110238f7b870SPatrick McHardy 
110338f7b870SPatrick McHardy 			return do_setlink(dev, ifm, tb, ifname, modified);
110438f7b870SPatrick McHardy 		}
110538f7b870SPatrick McHardy 
110638f7b870SPatrick McHardy 		if (!(nlh->nlmsg_flags & NLM_F_CREATE))
110738f7b870SPatrick McHardy 			return -ENODEV;
110838f7b870SPatrick McHardy 
110938f7b870SPatrick McHardy 		if (ifm->ifi_index || ifm->ifi_flags || ifm->ifi_change)
111038f7b870SPatrick McHardy 			return -EOPNOTSUPP;
11110e06877cSPatrick McHardy 		if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
111238f7b870SPatrick McHardy 			return -EOPNOTSUPP;
111338f7b870SPatrick McHardy 
111438f7b870SPatrick McHardy 		if (!ops) {
111538f7b870SPatrick McHardy #ifdef CONFIG_KMOD
111638f7b870SPatrick McHardy 			if (kind[0]) {
111738f7b870SPatrick McHardy 				__rtnl_unlock();
111838f7b870SPatrick McHardy 				request_module("rtnl-link-%s", kind);
111938f7b870SPatrick McHardy 				rtnl_lock();
112038f7b870SPatrick McHardy 				ops = rtnl_link_ops_get(kind);
112138f7b870SPatrick McHardy 				if (ops)
112238f7b870SPatrick McHardy 					goto replay;
112338f7b870SPatrick McHardy 			}
112438f7b870SPatrick McHardy #endif
112538f7b870SPatrick McHardy 			return -EOPNOTSUPP;
112638f7b870SPatrick McHardy 		}
112738f7b870SPatrick McHardy 
112838f7b870SPatrick McHardy 		if (!ifname[0])
112938f7b870SPatrick McHardy 			snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
113038f7b870SPatrick McHardy 
1131881d966bSEric W. Biederman 		dev = rtnl_create_link(net, ifname, ops, tb);
113238f7b870SPatrick McHardy 
1133e7199288SPavel Emelianov 		if (IS_ERR(dev))
1134e7199288SPavel Emelianov 			err = PTR_ERR(dev);
1135e7199288SPavel Emelianov 		else if (ops->newlink)
113638f7b870SPatrick McHardy 			err = ops->newlink(dev, tb, data);
11372d85cba2SPatrick McHardy 		else
11382d85cba2SPatrick McHardy 			err = register_netdevice(dev);
1139e7199288SPavel Emelianov 
1140e7199288SPavel Emelianov 		if (err < 0 && !IS_ERR(dev))
114138f7b870SPatrick McHardy 			free_netdev(dev);
114238f7b870SPatrick McHardy 		return err;
114338f7b870SPatrick McHardy 	}
114438f7b870SPatrick McHardy }
114538f7b870SPatrick McHardy 
1146b60c5115SThomas Graf static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
1147711e2c33SJean Tourrilhes {
11483b1e0a65SYOSHIFUJI Hideaki 	struct net *net = sock_net(skb->sk);
1149b60c5115SThomas Graf 	struct ifinfomsg *ifm;
1150b60c5115SThomas Graf 	struct nlattr *tb[IFLA_MAX+1];
1151b60c5115SThomas Graf 	struct net_device *dev = NULL;
1152b60c5115SThomas Graf 	struct sk_buff *nskb;
1153339bf98fSThomas Graf 	int err;
1154711e2c33SJean Tourrilhes 
1155b60c5115SThomas Graf 	err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1156b60c5115SThomas Graf 	if (err < 0)
11579918f230SEric Sesterhenn 		return err;
1158b60c5115SThomas Graf 
1159b60c5115SThomas Graf 	ifm = nlmsg_data(nlh);
116051055be8SPatrick McHardy 	if (ifm->ifi_index > 0) {
1161881d966bSEric W. Biederman 		dev = dev_get_by_index(net, ifm->ifi_index);
1162b60c5115SThomas Graf 		if (dev == NULL)
1163711e2c33SJean Tourrilhes 			return -ENODEV;
1164b60c5115SThomas Graf 	} else
1165b60c5115SThomas Graf 		return -EINVAL;
1166b60c5115SThomas Graf 
116738f7b870SPatrick McHardy 	nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
1168b60c5115SThomas Graf 	if (nskb == NULL) {
1169b60c5115SThomas Graf 		err = -ENOBUFS;
1170b60c5115SThomas Graf 		goto errout;
1171b60c5115SThomas Graf 	}
1172711e2c33SJean Tourrilhes 
1173575c3e2aSPatrick McHardy 	err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1174575c3e2aSPatrick McHardy 			       nlh->nlmsg_seq, 0, 0);
117526932566SPatrick McHardy 	if (err < 0) {
117626932566SPatrick McHardy 		/* -EMSGSIZE implies BUG in if_nlmsg_size */
117726932566SPatrick McHardy 		WARN_ON(err == -EMSGSIZE);
117826932566SPatrick McHardy 		kfree_skb(nskb);
117926932566SPatrick McHardy 		goto errout;
118026932566SPatrick McHardy 	}
118197c53cacSDenis V. Lunev 	err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid);
1182b60c5115SThomas Graf errout:
1183711e2c33SJean Tourrilhes 	dev_put(dev);
1184b60c5115SThomas Graf 
1185711e2c33SJean Tourrilhes 	return err;
1186711e2c33SJean Tourrilhes }
1187711e2c33SJean Tourrilhes 
118842bad1daSAdrian Bunk static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
11891da177e4SLinus Torvalds {
11901da177e4SLinus Torvalds 	int idx;
11911da177e4SLinus Torvalds 	int s_idx = cb->family;
11921da177e4SLinus Torvalds 
11931da177e4SLinus Torvalds 	if (s_idx == 0)
11941da177e4SLinus Torvalds 		s_idx = 1;
11951da177e4SLinus Torvalds 	for (idx=1; idx<NPROTO; idx++) {
11961da177e4SLinus Torvalds 		int type = cb->nlh->nlmsg_type-RTM_BASE;
11971da177e4SLinus Torvalds 		if (idx < s_idx || idx == PF_PACKET)
11981da177e4SLinus Torvalds 			continue;
1199e2849863SThomas Graf 		if (rtnl_msg_handlers[idx] == NULL ||
1200e2849863SThomas Graf 		    rtnl_msg_handlers[idx][type].dumpit == NULL)
12011da177e4SLinus Torvalds 			continue;
12021da177e4SLinus Torvalds 		if (idx > s_idx)
12031da177e4SLinus Torvalds 			memset(&cb->args[0], 0, sizeof(cb->args));
1204e2849863SThomas Graf 		if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
12051da177e4SLinus Torvalds 			break;
12061da177e4SLinus Torvalds 	}
12071da177e4SLinus Torvalds 	cb->family = idx;
12081da177e4SLinus Torvalds 
12091da177e4SLinus Torvalds 	return skb->len;
12101da177e4SLinus Torvalds }
12111da177e4SLinus Torvalds 
12121da177e4SLinus Torvalds void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
12131da177e4SLinus Torvalds {
1214c346dca1SYOSHIFUJI Hideaki 	struct net *net = dev_net(dev);
12151da177e4SLinus Torvalds 	struct sk_buff *skb;
12160ec6d3f4SThomas Graf 	int err = -ENOBUFS;
12171da177e4SLinus Torvalds 
121838f7b870SPatrick McHardy 	skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
12190ec6d3f4SThomas Graf 	if (skb == NULL)
12200ec6d3f4SThomas Graf 		goto errout;
12211da177e4SLinus Torvalds 
1222575c3e2aSPatrick McHardy 	err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
122326932566SPatrick McHardy 	if (err < 0) {
122426932566SPatrick McHardy 		/* -EMSGSIZE implies BUG in if_nlmsg_size() */
122526932566SPatrick McHardy 		WARN_ON(err == -EMSGSIZE);
122626932566SPatrick McHardy 		kfree_skb(skb);
122726932566SPatrick McHardy 		goto errout;
122826932566SPatrick McHardy 	}
12294b3da706SEric W. Biederman 	err = rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
12300ec6d3f4SThomas Graf errout:
12310ec6d3f4SThomas Graf 	if (err < 0)
12324b3da706SEric W. Biederman 		rtnl_set_sk_err(net, RTNLGRP_LINK, err);
12331da177e4SLinus Torvalds }
12341da177e4SLinus Torvalds 
12351da177e4SLinus Torvalds /* Protected by RTNL sempahore.  */
12361da177e4SLinus Torvalds static struct rtattr **rta_buf;
12371da177e4SLinus Torvalds static int rtattr_max;
12381da177e4SLinus Torvalds 
12391da177e4SLinus Torvalds /* Process one rtnetlink message. */
12401da177e4SLinus Torvalds 
12411d00a4ebSThomas Graf static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
12421da177e4SLinus Torvalds {
12433b1e0a65SYOSHIFUJI Hideaki 	struct net *net = sock_net(skb->sk);
1244e2849863SThomas Graf 	rtnl_doit_func doit;
12451da177e4SLinus Torvalds 	int sz_idx, kind;
12461da177e4SLinus Torvalds 	int min_len;
12471da177e4SLinus Torvalds 	int family;
12481da177e4SLinus Torvalds 	int type;
12491c2d670fSPatrick McHardy 	int err;
12501da177e4SLinus Torvalds 
12511da177e4SLinus Torvalds 	type = nlh->nlmsg_type;
12521da177e4SLinus Torvalds 	if (type > RTM_MAX)
1253038890feSThomas Graf 		return -EOPNOTSUPP;
12541da177e4SLinus Torvalds 
12551da177e4SLinus Torvalds 	type -= RTM_BASE;
12561da177e4SLinus Torvalds 
12571da177e4SLinus Torvalds 	/* All the messages must have at least 1 byte length */
12581da177e4SLinus Torvalds 	if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
12591da177e4SLinus Torvalds 		return 0;
12601da177e4SLinus Torvalds 
12611da177e4SLinus Torvalds 	family = ((struct rtgenmsg*)NLMSG_DATA(nlh))->rtgen_family;
12621d00a4ebSThomas Graf 	if (family >= NPROTO)
12631d00a4ebSThomas Graf 		return -EAFNOSUPPORT;
12641da177e4SLinus Torvalds 
12651da177e4SLinus Torvalds 	sz_idx = type>>2;
12661da177e4SLinus Torvalds 	kind = type&3;
12671da177e4SLinus Torvalds 
12681d00a4ebSThomas Graf 	if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
12691d00a4ebSThomas Graf 		return -EPERM;
12701da177e4SLinus Torvalds 
12711da177e4SLinus Torvalds 	if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
127297c53cacSDenis V. Lunev 		struct sock *rtnl;
1273e2849863SThomas Graf 		rtnl_dumpit_func dumpit;
12741da177e4SLinus Torvalds 
1275e2849863SThomas Graf 		dumpit = rtnl_get_dumpit(family, type);
1276e2849863SThomas Graf 		if (dumpit == NULL)
1277038890feSThomas Graf 			return -EOPNOTSUPP;
12781da177e4SLinus Torvalds 
12791c2d670fSPatrick McHardy 		__rtnl_unlock();
128097c53cacSDenis V. Lunev 		rtnl = net->rtnl;
12811c2d670fSPatrick McHardy 		err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL);
12821c2d670fSPatrick McHardy 		rtnl_lock();
12831c2d670fSPatrick McHardy 		return err;
12841da177e4SLinus Torvalds 	}
12851da177e4SLinus Torvalds 
12861da177e4SLinus Torvalds 	memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
12871da177e4SLinus Torvalds 
12881da177e4SLinus Torvalds 	min_len = rtm_min[sz_idx];
12891da177e4SLinus Torvalds 	if (nlh->nlmsg_len < min_len)
12901d00a4ebSThomas Graf 		return -EINVAL;
12911da177e4SLinus Torvalds 
12921da177e4SLinus Torvalds 	if (nlh->nlmsg_len > min_len) {
12931da177e4SLinus Torvalds 		int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
12941da177e4SLinus Torvalds 		struct rtattr *attr = (void*)nlh + NLMSG_ALIGN(min_len);
12951da177e4SLinus Torvalds 
12961da177e4SLinus Torvalds 		while (RTA_OK(attr, attrlen)) {
12971da177e4SLinus Torvalds 			unsigned flavor = attr->rta_type;
12981da177e4SLinus Torvalds 			if (flavor) {
12991da177e4SLinus Torvalds 				if (flavor > rta_max[sz_idx])
13001d00a4ebSThomas Graf 					return -EINVAL;
13011da177e4SLinus Torvalds 				rta_buf[flavor-1] = attr;
13021da177e4SLinus Torvalds 			}
13031da177e4SLinus Torvalds 			attr = RTA_NEXT(attr, attrlen);
13041da177e4SLinus Torvalds 		}
13051da177e4SLinus Torvalds 	}
13061da177e4SLinus Torvalds 
1307e2849863SThomas Graf 	doit = rtnl_get_doit(family, type);
1308e2849863SThomas Graf 	if (doit == NULL)
1309038890feSThomas Graf 		return -EOPNOTSUPP;
13101da177e4SLinus Torvalds 
13111d00a4ebSThomas Graf 	return doit(skb, nlh, (void *)&rta_buf[0]);
13121da177e4SLinus Torvalds }
13131da177e4SLinus Torvalds 
1314cd40b7d3SDenis V. Lunev static void rtnetlink_rcv(struct sk_buff *skb)
13151da177e4SLinus Torvalds {
13161536cc0dSDenis V. Lunev 	rtnl_lock();
1317cd40b7d3SDenis V. Lunev 	netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
13181536cc0dSDenis V. Lunev 	rtnl_unlock();
13191da177e4SLinus Torvalds }
13201da177e4SLinus Torvalds 
13211da177e4SLinus Torvalds static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
13221da177e4SLinus Torvalds {
13231da177e4SLinus Torvalds 	struct net_device *dev = ptr;
1324e9dc8653SEric W. Biederman 
13251da177e4SLinus Torvalds 	switch (event) {
13261da177e4SLinus Torvalds 	case NETDEV_UNREGISTER:
13271da177e4SLinus Torvalds 		rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
13281da177e4SLinus Torvalds 		break;
13291da177e4SLinus Torvalds 	case NETDEV_REGISTER:
13301da177e4SLinus Torvalds 		rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
13311da177e4SLinus Torvalds 		break;
13321da177e4SLinus Torvalds 	case NETDEV_UP:
13331da177e4SLinus Torvalds 	case NETDEV_DOWN:
13341da177e4SLinus Torvalds 		rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
13351da177e4SLinus Torvalds 		break;
13361da177e4SLinus Torvalds 	case NETDEV_CHANGE:
13371da177e4SLinus Torvalds 	case NETDEV_GOING_DOWN:
13381da177e4SLinus Torvalds 		break;
13391da177e4SLinus Torvalds 	default:
13401da177e4SLinus Torvalds 		rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
13411da177e4SLinus Torvalds 		break;
13421da177e4SLinus Torvalds 	}
13431da177e4SLinus Torvalds 	return NOTIFY_DONE;
13441da177e4SLinus Torvalds }
13451da177e4SLinus Torvalds 
13461da177e4SLinus Torvalds static struct notifier_block rtnetlink_dev_notifier = {
13471da177e4SLinus Torvalds 	.notifier_call	= rtnetlink_event,
13481da177e4SLinus Torvalds };
13491da177e4SLinus Torvalds 
135097c53cacSDenis V. Lunev 
135197c53cacSDenis V. Lunev static int rtnetlink_net_init(struct net *net)
135297c53cacSDenis V. Lunev {
135397c53cacSDenis V. Lunev 	struct sock *sk;
135497c53cacSDenis V. Lunev 	sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX,
135597c53cacSDenis V. Lunev 				   rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
135697c53cacSDenis V. Lunev 	if (!sk)
135797c53cacSDenis V. Lunev 		return -ENOMEM;
135897c53cacSDenis V. Lunev 	net->rtnl = sk;
135997c53cacSDenis V. Lunev 	return 0;
136097c53cacSDenis V. Lunev }
136197c53cacSDenis V. Lunev 
136297c53cacSDenis V. Lunev static void rtnetlink_net_exit(struct net *net)
136397c53cacSDenis V. Lunev {
1364b7c6ba6eSDenis V. Lunev 	netlink_kernel_release(net->rtnl);
136597c53cacSDenis V. Lunev 	net->rtnl = NULL;
136697c53cacSDenis V. Lunev }
136797c53cacSDenis V. Lunev 
136897c53cacSDenis V. Lunev static struct pernet_operations rtnetlink_net_ops = {
136997c53cacSDenis V. Lunev 	.init = rtnetlink_net_init,
137097c53cacSDenis V. Lunev 	.exit = rtnetlink_net_exit,
137197c53cacSDenis V. Lunev };
137297c53cacSDenis V. Lunev 
13731da177e4SLinus Torvalds void __init rtnetlink_init(void)
13741da177e4SLinus Torvalds {
13751da177e4SLinus Torvalds 	int i;
13761da177e4SLinus Torvalds 
13771da177e4SLinus Torvalds 	rtattr_max = 0;
13781da177e4SLinus Torvalds 	for (i = 0; i < ARRAY_SIZE(rta_max); i++)
13791da177e4SLinus Torvalds 		if (rta_max[i] > rtattr_max)
13801da177e4SLinus Torvalds 			rtattr_max = rta_max[i];
13811da177e4SLinus Torvalds 	rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
13821da177e4SLinus Torvalds 	if (!rta_buf)
13831da177e4SLinus Torvalds 		panic("rtnetlink_init: cannot allocate rta_buf\n");
13841da177e4SLinus Torvalds 
138597c53cacSDenis V. Lunev 	if (register_pernet_subsys(&rtnetlink_net_ops))
13861da177e4SLinus Torvalds 		panic("rtnetlink_init: cannot initialize rtnetlink\n");
138797c53cacSDenis V. Lunev 
13881da177e4SLinus Torvalds 	netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
13891da177e4SLinus Torvalds 	register_netdevice_notifier(&rtnetlink_dev_notifier);
1390340d17fcSThomas Graf 
1391340d17fcSThomas Graf 	rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo);
1392340d17fcSThomas Graf 	rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL);
139338f7b870SPatrick McHardy 	rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL);
139438f7b870SPatrick McHardy 	rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL);
1395687ad8ccSThomas Graf 
1396687ad8ccSThomas Graf 	rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all);
1397687ad8ccSThomas Graf 	rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all);
13981da177e4SLinus Torvalds }
13991da177e4SLinus Torvalds 
14001da177e4SLinus Torvalds EXPORT_SYMBOL(__rta_fill);
14011da177e4SLinus Torvalds EXPORT_SYMBOL(rtnetlink_put_metrics);
14021da177e4SLinus Torvalds EXPORT_SYMBOL(rtnl_lock);
14036756ae4bSStephen Hemminger EXPORT_SYMBOL(rtnl_trylock);
14041da177e4SLinus Torvalds EXPORT_SYMBOL(rtnl_unlock);
14052942e900SThomas Graf EXPORT_SYMBOL(rtnl_unicast);
140697676b6bSThomas Graf EXPORT_SYMBOL(rtnl_notify);
140797676b6bSThomas Graf EXPORT_SYMBOL(rtnl_set_sk_err);
1408e7199288SPavel Emelianov EXPORT_SYMBOL(rtnl_create_link);
1409e7199288SPavel Emelianov EXPORT_SYMBOL(ifla_policy);
1410