blob: e170179cc66fe4fbeb2cdc9907ec1a7c5a43a207 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Routing netlink socket interface: protocol independent part.
7 *
8 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 *
15 * Fixes:
16 * Vitaly E. Lavrov RTA_OK arithmetics was wrong.
17 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/errno.h>
20#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/socket.h>
23#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/timer.h>
25#include <linux/string.h>
26#include <linux/sockios.h>
27#include <linux/net.h>
28#include <linux/fcntl.h>
29#include <linux/mm.h>
30#include <linux/slab.h>
31#include <linux/interrupt.h>
32#include <linux/capability.h>
33#include <linux/skbuff.h>
34#include <linux/init.h>
35#include <linux/security.h>
Stephen Hemminger6756ae42006-03-20 22:23:58 -080036#include <linux/mutex.h>
Thomas Graf18237302006-08-04 23:04:54 -070037#include <linux/if_addr.h>
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +020038#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <asm/uaccess.h>
41#include <asm/system.h>
42#include <asm/string.h>
43
44#include <linux/inet.h>
45#include <linux/netdevice.h>
46#include <net/ip.h>
47#include <net/protocol.h>
48#include <net/arp.h>
49#include <net/route.h>
50#include <net/udp.h>
51#include <net/sock.h>
52#include <net/pkt_sched.h>
Thomas Graf14c0b972006-08-04 03:38:38 -070053#include <net/fib_rules.h>
Thomas Grafe2849862007-03-22 11:48:11 -070054#include <net/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Thomas Grafe2849862007-03-22 11:48:11 -070056struct rtnl_link
57{
58 rtnl_doit_func doit;
59 rtnl_dumpit_func dumpit;
60};
61
Stephen Hemminger6756ae42006-03-20 22:23:58 -080062static DEFINE_MUTEX(rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64void rtnl_lock(void)
65{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080066 mutex_lock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
Stephen Hemminger6756ae42006-03-20 22:23:58 -080069void __rtnl_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080071 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
Stephen Hemminger6756ae42006-03-20 22:23:58 -080073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074void rtnl_unlock(void)
75{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080076 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 netdev_run_todo();
78}
79
Stephen Hemminger6756ae42006-03-20 22:23:58 -080080int rtnl_trylock(void)
81{
82 return mutex_trylock(&rtnl_mutex);
83}
84
Adrian Bunk42bad1d2007-04-26 00:57:41 -070085static struct rtnl_link *rtnl_msg_handlers[NPROTO];
Thomas Grafe2849862007-03-22 11:48:11 -070086
87static inline int rtm_msgindex(int msgtype)
88{
89 int msgindex = msgtype - RTM_BASE;
90
91 /*
92 * msgindex < 0 implies someone tried to register a netlink
93 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
94 * the message type has not been added to linux/rtnetlink.h
95 */
96 BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
97
98 return msgindex;
99}
100
101static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
102{
103 struct rtnl_link *tab;
104
105 tab = rtnl_msg_handlers[protocol];
Thomas Graf51057f22007-03-22 21:41:06 -0700106 if (tab == NULL || tab[msgindex].doit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700107 tab = rtnl_msg_handlers[PF_UNSPEC];
108
Thomas Graf51057f22007-03-22 21:41:06 -0700109 return tab ? tab[msgindex].doit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700110}
111
112static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
113{
114 struct rtnl_link *tab;
115
116 tab = rtnl_msg_handlers[protocol];
Thomas Graf51057f22007-03-22 21:41:06 -0700117 if (tab == NULL || tab[msgindex].dumpit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700118 tab = rtnl_msg_handlers[PF_UNSPEC];
119
Thomas Graf51057f22007-03-22 21:41:06 -0700120 return tab ? tab[msgindex].dumpit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700121}
122
123/**
124 * __rtnl_register - Register a rtnetlink message type
125 * @protocol: Protocol family or PF_UNSPEC
126 * @msgtype: rtnetlink message type
127 * @doit: Function pointer called for each request message
128 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
129 *
130 * Registers the specified function pointers (at least one of them has
131 * to be non-NULL) to be called whenever a request message for the
132 * specified protocol family and message type is received.
133 *
134 * The special protocol family PF_UNSPEC may be used to define fallback
135 * function pointers for the case when no entry for the specific protocol
136 * family exists.
137 *
138 * Returns 0 on success or a negative error code.
139 */
140int __rtnl_register(int protocol, int msgtype,
141 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
142{
143 struct rtnl_link *tab;
144 int msgindex;
145
146 BUG_ON(protocol < 0 || protocol >= NPROTO);
147 msgindex = rtm_msgindex(msgtype);
148
149 tab = rtnl_msg_handlers[protocol];
150 if (tab == NULL) {
151 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
152 if (tab == NULL)
153 return -ENOBUFS;
154
155 rtnl_msg_handlers[protocol] = tab;
156 }
157
158 if (doit)
159 tab[msgindex].doit = doit;
160
161 if (dumpit)
162 tab[msgindex].dumpit = dumpit;
163
164 return 0;
165}
166
167EXPORT_SYMBOL_GPL(__rtnl_register);
168
169/**
170 * rtnl_register - Register a rtnetlink message type
171 *
172 * Identical to __rtnl_register() but panics on failure. This is useful
173 * as failure of this function is very unlikely, it can only happen due
174 * to lack of memory when allocating the chain to store all message
175 * handlers for a protocol. Meant for use in init functions where lack
176 * of memory implies no sense in continueing.
177 */
178void rtnl_register(int protocol, int msgtype,
179 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
180{
181 if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0)
182 panic("Unable to register rtnetlink message handler, "
183 "protocol = %d, message type = %d\n",
184 protocol, msgtype);
185}
186
187EXPORT_SYMBOL_GPL(rtnl_register);
188
189/**
190 * rtnl_unregister - Unregister a rtnetlink message type
191 * @protocol: Protocol family or PF_UNSPEC
192 * @msgtype: rtnetlink message type
193 *
194 * Returns 0 on success or a negative error code.
195 */
196int rtnl_unregister(int protocol, int msgtype)
197{
198 int msgindex;
199
200 BUG_ON(protocol < 0 || protocol >= NPROTO);
201 msgindex = rtm_msgindex(msgtype);
202
203 if (rtnl_msg_handlers[protocol] == NULL)
204 return -ENOENT;
205
206 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
207 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
208
209 return 0;
210}
211
212EXPORT_SYMBOL_GPL(rtnl_unregister);
213
214/**
215 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
216 * @protocol : Protocol family or PF_UNSPEC
217 *
218 * Identical to calling rtnl_unregster() for all registered message types
219 * of a certain protocol family.
220 */
221void rtnl_unregister_all(int protocol)
222{
223 BUG_ON(protocol < 0 || protocol >= NPROTO);
224
225 kfree(rtnl_msg_handlers[protocol]);
226 rtnl_msg_handlers[protocol] = NULL;
227}
228
229EXPORT_SYMBOL_GPL(rtnl_unregister_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Patrick McHardy38f7b872007-06-13 12:03:51 -0700231static LIST_HEAD(link_ops);
232
233/**
234 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
235 * @ops: struct rtnl_link_ops * to register
236 *
237 * The caller must hold the rtnl_mutex. This function should be used
238 * by drivers that create devices during module initialization. It
239 * must be called before registering the devices.
240 *
241 * Returns 0 on success or a negative error code.
242 */
243int __rtnl_link_register(struct rtnl_link_ops *ops)
244{
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700245 if (!ops->dellink)
246 ops->dellink = unregister_netdevice;
247
Patrick McHardy38f7b872007-06-13 12:03:51 -0700248 list_add_tail(&ops->list, &link_ops);
249 return 0;
250}
251
252EXPORT_SYMBOL_GPL(__rtnl_link_register);
253
254/**
255 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
256 * @ops: struct rtnl_link_ops * to register
257 *
258 * Returns 0 on success or a negative error code.
259 */
260int rtnl_link_register(struct rtnl_link_ops *ops)
261{
262 int err;
263
264 rtnl_lock();
265 err = __rtnl_link_register(ops);
266 rtnl_unlock();
267 return err;
268}
269
270EXPORT_SYMBOL_GPL(rtnl_link_register);
271
272/**
273 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
274 * @ops: struct rtnl_link_ops * to unregister
275 *
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700276 * The caller must hold the rtnl_mutex.
Patrick McHardy38f7b872007-06-13 12:03:51 -0700277 */
278void __rtnl_link_unregister(struct rtnl_link_ops *ops)
279{
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700280 struct net_device *dev, *n;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700281 struct net *net;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700282
Eric W. Biederman881d9662007-09-17 11:56:21 -0700283 for_each_net(net) {
Patrick McHardy68365452008-01-20 17:25:14 -0800284restart:
Eric W. Biederman881d9662007-09-17 11:56:21 -0700285 for_each_netdev_safe(net, dev, n) {
Patrick McHardy68365452008-01-20 17:25:14 -0800286 if (dev->rtnl_link_ops == ops) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700287 ops->dellink(dev);
Patrick McHardy68365452008-01-20 17:25:14 -0800288 goto restart;
289 }
Eric W. Biederman881d9662007-09-17 11:56:21 -0700290 }
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700291 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700292 list_del(&ops->list);
293}
294
295EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
296
297/**
298 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
299 * @ops: struct rtnl_link_ops * to unregister
300 */
301void rtnl_link_unregister(struct rtnl_link_ops *ops)
302{
303 rtnl_lock();
304 __rtnl_link_unregister(ops);
305 rtnl_unlock();
306}
307
308EXPORT_SYMBOL_GPL(rtnl_link_unregister);
309
310static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
311{
312 const struct rtnl_link_ops *ops;
313
314 list_for_each_entry(ops, &link_ops, list) {
315 if (!strcmp(ops->kind, kind))
316 return ops;
317 }
318 return NULL;
319}
320
321static size_t rtnl_link_get_size(const struct net_device *dev)
322{
323 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
324 size_t size;
325
326 if (!ops)
327 return 0;
328
329 size = nlmsg_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
330 nlmsg_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
331
332 if (ops->get_size)
333 /* IFLA_INFO_DATA + nested data */
334 size += nlmsg_total_size(sizeof(struct nlattr)) +
335 ops->get_size(dev);
336
337 if (ops->get_xstats_size)
338 size += ops->get_xstats_size(dev); /* IFLA_INFO_XSTATS */
339
340 return size;
341}
342
343static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
344{
345 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
346 struct nlattr *linkinfo, *data;
347 int err = -EMSGSIZE;
348
349 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
350 if (linkinfo == NULL)
351 goto out;
352
353 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
354 goto err_cancel_link;
355 if (ops->fill_xstats) {
356 err = ops->fill_xstats(skb, dev);
357 if (err < 0)
358 goto err_cancel_link;
359 }
360 if (ops->fill_info) {
361 data = nla_nest_start(skb, IFLA_INFO_DATA);
362 if (data == NULL)
363 goto err_cancel_link;
364 err = ops->fill_info(skb, dev);
365 if (err < 0)
366 goto err_cancel_data;
367 nla_nest_end(skb, data);
368 }
369
370 nla_nest_end(skb, linkinfo);
371 return 0;
372
373err_cancel_data:
374 nla_nest_cancel(skb, data);
375err_cancel_link:
376 nla_nest_cancel(skb, linkinfo);
377out:
378 return err;
379}
380
Thomas Grafdb46edc2005-05-03 14:29:39 -0700381static const int rtm_min[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Thomas Graff90a0a72005-05-03 14:29:00 -0700383 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
384 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
385 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
Thomas Graf14c0b972006-08-04 03:38:38 -0700386 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700387 [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
388 [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
389 [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
390 [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700391 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
392 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393};
394
Thomas Grafdb46edc2005-05-03 14:29:39 -0700395static const int rta_max[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Thomas Graff90a0a72005-05-03 14:29:00 -0700397 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
398 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
399 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
Thomas Graf14c0b972006-08-04 03:38:38 -0700400 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
Thomas Graff90a0a72005-05-03 14:29:00 -0700401 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
402 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
403 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
404 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405};
406
407void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
408{
409 struct rtattr *rta;
410 int size = RTA_LENGTH(attrlen);
411
412 rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
413 rta->rta_type = attrtype;
414 rta->rta_len = size;
415 memcpy(RTA_DATA(rta), data, attrlen);
Patrick McHardyb3563c42005-06-28 12:54:43 -0700416 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800419int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned group, int echo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800421 struct sock *rtnl = net->rtnl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 int err = 0;
423
Patrick McHardyac6d4392005-08-14 19:29:52 -0700424 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (echo)
426 atomic_inc(&skb->users);
427 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
428 if (echo)
429 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
430 return err;
431}
432
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800433int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
Thomas Graf2942e902006-08-15 00:30:25 -0700434{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800435 struct sock *rtnl = net->rtnl;
436
Thomas Graf2942e902006-08-15 00:30:25 -0700437 return nlmsg_unicast(rtnl, skb, pid);
438}
439
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800440int rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
Thomas Graf97676b62006-08-15 00:31:41 -0700441 struct nlmsghdr *nlh, gfp_t flags)
442{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800443 struct sock *rtnl = net->rtnl;
Thomas Graf97676b62006-08-15 00:31:41 -0700444 int report = 0;
445
446 if (nlh)
447 report = nlmsg_report(nlh);
448
449 return nlmsg_notify(rtnl, skb, pid, group, report, flags);
450}
451
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800452void rtnl_set_sk_err(struct net *net, u32 group, int error)
Thomas Graf97676b62006-08-15 00:31:41 -0700453{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800454 struct sock *rtnl = net->rtnl;
455
Thomas Graf97676b62006-08-15 00:31:41 -0700456 netlink_set_err(rtnl, 0, group, error);
457}
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
460{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700461 struct nlattr *mx;
462 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Thomas Graf2d7202b2006-08-22 00:01:27 -0700464 mx = nla_nest_start(skb, RTA_METRICS);
465 if (mx == NULL)
466 return -ENOBUFS;
467
468 for (i = 0; i < RTAX_MAX; i++) {
469 if (metrics[i]) {
470 valid++;
471 NLA_PUT_U32(skb, i+1, metrics[i]);
472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
David S. Millera57d27f2006-08-22 22:20:14 -0700475 if (!valid) {
476 nla_nest_cancel(skb, mx);
477 return 0;
478 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700479
480 return nla_nest_end(skb, mx);
481
482nla_put_failure:
483 return nla_nest_cancel(skb, mx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Thomas Grafe3703b32006-11-27 09:27:07 -0800486int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
487 u32 ts, u32 tsage, long expires, u32 error)
488{
489 struct rta_cacheinfo ci = {
490 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
491 .rta_used = dst->__use,
492 .rta_clntref = atomic_read(&(dst->__refcnt)),
493 .rta_error = error,
494 .rta_id = id,
495 .rta_ts = ts,
496 .rta_tsage = tsage,
497 };
498
499 if (expires)
500 ci.rta_expires = jiffies_to_clock_t(expires);
501
502 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
503}
504
505EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
David S. Miller93b2d4a2008-02-17 18:35:07 -0800507static void set_operstate(struct net_device *dev, unsigned char transition)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800508{
509 unsigned char operstate = dev->operstate;
510
511 switch(transition) {
512 case IF_OPER_UP:
513 if ((operstate == IF_OPER_DORMANT ||
514 operstate == IF_OPER_UNKNOWN) &&
515 !netif_dormant(dev))
516 operstate = IF_OPER_UP;
517 break;
518
519 case IF_OPER_DORMANT:
520 if (operstate == IF_OPER_UP ||
521 operstate == IF_OPER_UNKNOWN)
522 operstate = IF_OPER_DORMANT;
523 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700524 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800525
526 if (dev->operstate != operstate) {
527 write_lock_bh(&dev_base_lock);
528 dev->operstate = operstate;
529 write_unlock_bh(&dev_base_lock);
David S. Miller93b2d4a2008-02-17 18:35:07 -0800530 netdev_state_change(dev);
531 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800532}
533
Thomas Grafb60c5112006-08-04 23:05:34 -0700534static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
535 struct net_device_stats *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Thomas Grafb60c5112006-08-04 23:05:34 -0700537 a->rx_packets = b->rx_packets;
538 a->tx_packets = b->tx_packets;
539 a->rx_bytes = b->rx_bytes;
540 a->tx_bytes = b->tx_bytes;
541 a->rx_errors = b->rx_errors;
542 a->tx_errors = b->tx_errors;
543 a->rx_dropped = b->rx_dropped;
544 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Thomas Grafb60c5112006-08-04 23:05:34 -0700546 a->multicast = b->multicast;
547 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Thomas Grafb60c5112006-08-04 23:05:34 -0700549 a->rx_length_errors = b->rx_length_errors;
550 a->rx_over_errors = b->rx_over_errors;
551 a->rx_crc_errors = b->rx_crc_errors;
552 a->rx_frame_errors = b->rx_frame_errors;
553 a->rx_fifo_errors = b->rx_fifo_errors;
554 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Thomas Grafb60c5112006-08-04 23:05:34 -0700556 a->tx_aborted_errors = b->tx_aborted_errors;
557 a->tx_carrier_errors = b->tx_carrier_errors;
558 a->tx_fifo_errors = b->tx_fifo_errors;
559 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
560 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Thomas Grafb60c5112006-08-04 23:05:34 -0700562 a->rx_compressed = b->rx_compressed;
563 a->tx_compressed = b->tx_compressed;
564};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Patrick McHardy38f7b872007-06-13 12:03:51 -0700566static inline size_t if_nlmsg_size(const struct net_device *dev)
Thomas Graf339bf982006-11-10 14:10:15 -0800567{
568 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
569 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
570 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
571 + nla_total_size(sizeof(struct rtnl_link_ifmap))
572 + nla_total_size(sizeof(struct rtnl_link_stats))
573 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
574 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
575 + nla_total_size(4) /* IFLA_TXQLEN */
576 + nla_total_size(4) /* IFLA_WEIGHT */
577 + nla_total_size(4) /* IFLA_MTU */
578 + nla_total_size(4) /* IFLA_LINK */
579 + nla_total_size(4) /* IFLA_MASTER */
580 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700581 + nla_total_size(1) /* IFLA_LINKMODE */
582 + rtnl_link_get_size(dev); /* IFLA_LINKINFO */
Thomas Graf339bf982006-11-10 14:10:15 -0800583}
584
Thomas Grafb60c5112006-08-04 23:05:34 -0700585static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -0700586 int type, u32 pid, u32 seq, u32 change,
587 unsigned int flags)
Thomas Grafb60c5112006-08-04 23:05:34 -0700588{
589 struct ifinfomsg *ifm;
590 struct nlmsghdr *nlh;
591
592 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
593 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800594 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700595
596 ifm = nlmsg_data(nlh);
597 ifm->ifi_family = AF_UNSPEC;
598 ifm->__ifi_pad = 0;
599 ifm->ifi_type = dev->type;
600 ifm->ifi_index = dev->ifindex;
601 ifm->ifi_flags = dev_get_flags(dev);
602 ifm->ifi_change = change;
603
604 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
605 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
Thomas Grafb60c5112006-08-04 23:05:34 -0700606 NLA_PUT_U8(skb, IFLA_OPERSTATE,
607 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
608 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
609 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
610
611 if (dev->ifindex != dev->iflink)
612 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
613
614 if (dev->master)
615 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
616
617 if (dev->qdisc_sleeping)
618 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc_sleeping->ops->id);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800619
620 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 struct rtnl_link_ifmap map = {
622 .mem_start = dev->mem_start,
623 .mem_end = dev->mem_end,
624 .base_addr = dev->base_addr,
625 .irq = dev->irq,
626 .dma = dev->dma,
627 .port = dev->if_port,
628 };
Thomas Grafb60c5112006-08-04 23:05:34 -0700629 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
631
632 if (dev->addr_len) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700633 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
634 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
636
637 if (dev->get_stats) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700638 struct net_device_stats *stats = dev->get_stats(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (stats) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700640 struct nlattr *attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Thomas Grafb60c5112006-08-04 23:05:34 -0700642 attr = nla_reserve(skb, IFLA_STATS,
643 sizeof(struct rtnl_link_stats));
644 if (attr == NULL)
645 goto nla_put_failure;
646
647 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Patrick McHardy38f7b872007-06-13 12:03:51 -0700651 if (dev->rtnl_link_ops) {
652 if (rtnl_link_fill(skb, dev) < 0)
653 goto nla_put_failure;
654 }
655
Thomas Grafb60c5112006-08-04 23:05:34 -0700656 return nlmsg_end(skb, nlh);
657
658nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800659 nlmsg_cancel(skb, nlh);
660 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
Thomas Grafb60c5112006-08-04 23:05:34 -0700663static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700665 struct net *net = skb->sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 int idx;
667 int s_idx = cb->args[0];
668 struct net_device *dev;
669
Pavel Emelianov7562f872007-05-03 15:13:45 -0700670 idx = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700671 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (idx < s_idx)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700673 goto cont;
Patrick McHardy575c3e22007-05-22 17:00:49 -0700674 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
Thomas Grafb60c5112006-08-04 23:05:34 -0700675 NETLINK_CB(cb->skb).pid,
676 cb->nlh->nlmsg_seq, 0, NLM_F_MULTI) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 break;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700678cont:
679 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 cb->args[0] = idx;
682
683 return skb->len;
684}
685
Pavel Emelianove7199282007-08-08 22:16:38 -0700686const struct nla_policy ifla_policy[IFLA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -0700687 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
Patrick McHardy38f7b872007-06-13 12:03:51 -0700688 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
689 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
Thomas Graf5176f912006-08-26 20:13:18 -0700690 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -0700691 [IFLA_MTU] = { .type = NLA_U32 },
Thomas Graf76e87302008-02-19 16:12:08 -0800692 [IFLA_LINK] = { .type = NLA_U32 },
Thomas Grafda5e0492006-08-10 21:17:37 -0700693 [IFLA_TXQLEN] = { .type = NLA_U32 },
694 [IFLA_WEIGHT] = { .type = NLA_U32 },
695 [IFLA_OPERSTATE] = { .type = NLA_U8 },
696 [IFLA_LINKMODE] = { .type = NLA_U8 },
Thomas Graf76e87302008-02-19 16:12:08 -0800697 [IFLA_LINKINFO] = { .type = NLA_NESTED },
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200698 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
Thomas Grafda5e0492006-08-10 21:17:37 -0700699};
700
Patrick McHardy38f7b872007-06-13 12:03:51 -0700701static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
702 [IFLA_INFO_KIND] = { .type = NLA_STRING },
703 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
704};
705
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200706static struct net *get_net_ns_by_pid(pid_t pid)
707{
708 struct task_struct *tsk;
709 struct net *net;
710
711 /* Lookup the network namespace */
712 net = ERR_PTR(-ESRCH);
713 rcu_read_lock();
Eric W. Biedermanceaa79c42007-10-26 22:56:12 -0700714 tsk = find_task_by_vpid(pid);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200715 if (tsk) {
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700716 struct nsproxy *nsproxy;
717 nsproxy = task_nsproxy(tsk);
718 if (nsproxy)
719 net = get_net(nsproxy->net_ns);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200720 }
721 rcu_read_unlock();
722 return net;
723}
724
Patrick McHardy0157f602007-06-13 12:03:36 -0700725static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
Patrick McHardy38f7b872007-06-13 12:03:51 -0700726 struct nlattr **tb, char *ifname, int modified)
Patrick McHardy0157f602007-06-13 12:03:36 -0700727{
Patrick McHardy38f7b872007-06-13 12:03:51 -0700728 int send_addr_notify = 0;
Patrick McHardy0157f602007-06-13 12:03:36 -0700729 int err;
730
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200731 if (tb[IFLA_NET_NS_PID]) {
732 struct net *net;
733 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
734 if (IS_ERR(net)) {
735 err = PTR_ERR(net);
736 goto errout;
737 }
738 err = dev_change_net_namespace(dev, net, ifname);
739 put_net(net);
740 if (err)
741 goto errout;
742 modified = 1;
743 }
744
Patrick McHardy0157f602007-06-13 12:03:36 -0700745 if (tb[IFLA_MAP]) {
746 struct rtnl_link_ifmap *u_map;
747 struct ifmap k_map;
748
749 if (!dev->set_config) {
750 err = -EOPNOTSUPP;
751 goto errout;
752 }
753
754 if (!netif_device_present(dev)) {
755 err = -ENODEV;
756 goto errout;
757 }
758
759 u_map = nla_data(tb[IFLA_MAP]);
760 k_map.mem_start = (unsigned long) u_map->mem_start;
761 k_map.mem_end = (unsigned long) u_map->mem_end;
762 k_map.base_addr = (unsigned short) u_map->base_addr;
763 k_map.irq = (unsigned char) u_map->irq;
764 k_map.dma = (unsigned char) u_map->dma;
765 k_map.port = (unsigned char) u_map->port;
766
767 err = dev->set_config(dev, &k_map);
768 if (err < 0)
769 goto errout;
770
771 modified = 1;
772 }
773
774 if (tb[IFLA_ADDRESS]) {
775 struct sockaddr *sa;
776 int len;
777
778 if (!dev->set_mac_address) {
779 err = -EOPNOTSUPP;
780 goto errout;
781 }
782
783 if (!netif_device_present(dev)) {
784 err = -ENODEV;
785 goto errout;
786 }
787
788 len = sizeof(sa_family_t) + dev->addr_len;
789 sa = kmalloc(len, GFP_KERNEL);
790 if (!sa) {
791 err = -ENOMEM;
792 goto errout;
793 }
794 sa->sa_family = dev->type;
795 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
796 dev->addr_len);
797 err = dev->set_mac_address(dev, sa);
798 kfree(sa);
799 if (err)
800 goto errout;
801 send_addr_notify = 1;
802 modified = 1;
803 }
804
805 if (tb[IFLA_MTU]) {
806 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
807 if (err < 0)
808 goto errout;
809 modified = 1;
810 }
811
812 /*
813 * Interface selected by interface index but interface
814 * name provided implies that a name change has been
815 * requested.
816 */
817 if (ifm->ifi_index > 0 && ifname[0]) {
818 err = dev_change_name(dev, ifname);
819 if (err < 0)
820 goto errout;
821 modified = 1;
822 }
823
824 if (tb[IFLA_BROADCAST]) {
825 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
826 send_addr_notify = 1;
827 }
828
829 if (ifm->ifi_flags || ifm->ifi_change) {
830 unsigned int flags = ifm->ifi_flags;
831
832 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
833 if (ifm->ifi_change)
834 flags = (flags & ifm->ifi_change) |
835 (dev->flags & ~ifm->ifi_change);
836 dev_change_flags(dev, flags);
837 }
838
David S. Miller93b2d4a2008-02-17 18:35:07 -0800839 if (tb[IFLA_TXQLEN])
840 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
Patrick McHardy0157f602007-06-13 12:03:36 -0700841
Patrick McHardy0157f602007-06-13 12:03:36 -0700842 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -0800843 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Patrick McHardy0157f602007-06-13 12:03:36 -0700844
845 if (tb[IFLA_LINKMODE]) {
David S. Miller93b2d4a2008-02-17 18:35:07 -0800846 write_lock_bh(&dev_base_lock);
847 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
848 write_unlock_bh(&dev_base_lock);
Patrick McHardy0157f602007-06-13 12:03:36 -0700849 }
850
851 err = 0;
852
853errout:
854 if (err < 0 && modified && net_ratelimit())
855 printk(KERN_WARNING "A link change request failed with "
856 "some changes comitted already. Interface %s may "
857 "have been left with an inconsistent configuration, "
858 "please check.\n", dev->name);
859
860 if (send_addr_notify)
861 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
862 return err;
863}
864
Thomas Grafda5e0492006-08-10 21:17:37 -0700865static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700867 struct net *net = skb->sk->sk_net;
Thomas Grafda5e0492006-08-10 21:17:37 -0700868 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -0700870 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -0700871 struct nlattr *tb[IFLA_MAX+1];
872 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Thomas Grafda5e0492006-08-10 21:17:37 -0700874 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
875 if (err < 0)
876 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Thomas Graf5176f912006-08-26 20:13:18 -0700878 if (tb[IFLA_IFNAME])
879 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -0700880 else
881 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -0700884 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -0700885 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700886 dev = dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -0700887 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -0700888 dev = dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -0700889 else
890 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Thomas Grafda5e0492006-08-10 21:17:37 -0700892 if (dev == NULL) {
893 err = -ENODEV;
894 goto errout;
895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Thomas Grafda5e0492006-08-10 21:17:37 -0700897 if (tb[IFLA_ADDRESS] &&
898 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
899 goto errout_dev;
900
901 if (tb[IFLA_BROADCAST] &&
902 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
903 goto errout_dev;
904
Patrick McHardy38f7b872007-06-13 12:03:51 -0700905 err = do_setlink(dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -0700906errout_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 dev_put(dev);
Thomas Grafda5e0492006-08-10 21:17:37 -0700908errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return err;
910}
911
Patrick McHardy38f7b872007-06-13 12:03:51 -0700912static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
913{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700914 struct net *net = skb->sk->sk_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -0700915 const struct rtnl_link_ops *ops;
916 struct net_device *dev;
917 struct ifinfomsg *ifm;
918 char ifname[IFNAMSIZ];
919 struct nlattr *tb[IFLA_MAX+1];
920 int err;
921
922 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
923 if (err < 0)
924 return err;
925
926 if (tb[IFLA_IFNAME])
927 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
928
929 ifm = nlmsg_data(nlh);
930 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700931 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -0700932 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -0700933 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -0700934 else
935 return -EINVAL;
936
937 if (!dev)
938 return -ENODEV;
939
940 ops = dev->rtnl_link_ops;
941 if (!ops)
942 return -EOPNOTSUPP;
943
944 ops->dellink(dev);
945 return 0;
946}
947
Eric W. Biederman881d9662007-09-17 11:56:21 -0700948struct net_device *rtnl_create_link(struct net *net, char *ifname,
Pavel Emelianove7199282007-08-08 22:16:38 -0700949 const struct rtnl_link_ops *ops, struct nlattr *tb[])
950{
951 int err;
952 struct net_device *dev;
953
954 err = -ENOMEM;
955 dev = alloc_netdev(ops->priv_size, ifname, ops->setup);
956 if (!dev)
957 goto err;
958
959 if (strchr(dev->name, '%')) {
960 err = dev_alloc_name(dev, dev->name);
961 if (err < 0)
962 goto err_free;
963 }
964
Eric W. Biederman881d9662007-09-17 11:56:21 -0700965 dev->nd_net = net;
Pavel Emelianove7199282007-08-08 22:16:38 -0700966 dev->rtnl_link_ops = ops;
967
968 if (tb[IFLA_MTU])
969 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
970 if (tb[IFLA_ADDRESS])
971 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
972 nla_len(tb[IFLA_ADDRESS]));
973 if (tb[IFLA_BROADCAST])
974 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
975 nla_len(tb[IFLA_BROADCAST]));
976 if (tb[IFLA_TXQLEN])
977 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
978 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -0800979 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Pavel Emelianove7199282007-08-08 22:16:38 -0700980 if (tb[IFLA_LINKMODE])
981 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
982
983 return dev;
984
985err_free:
986 free_netdev(dev);
987err:
988 return ERR_PTR(err);
989}
990
Patrick McHardy38f7b872007-06-13 12:03:51 -0700991static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
992{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700993 struct net *net = skb->sk->sk_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -0700994 const struct rtnl_link_ops *ops;
995 struct net_device *dev;
996 struct ifinfomsg *ifm;
997 char kind[MODULE_NAME_LEN];
998 char ifname[IFNAMSIZ];
999 struct nlattr *tb[IFLA_MAX+1];
1000 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1001 int err;
1002
Thomas Graf8072f082007-07-31 14:13:50 -07001003#ifdef CONFIG_KMOD
Patrick McHardy38f7b872007-06-13 12:03:51 -07001004replay:
Thomas Graf8072f082007-07-31 14:13:50 -07001005#endif
Patrick McHardy38f7b872007-06-13 12:03:51 -07001006 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1007 if (err < 0)
1008 return err;
1009
1010 if (tb[IFLA_IFNAME])
1011 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1012 else
1013 ifname[0] = '\0';
1014
1015 ifm = nlmsg_data(nlh);
1016 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001017 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001018 else if (ifname[0])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001019 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001020 else
1021 dev = NULL;
1022
1023 if (tb[IFLA_LINKINFO]) {
1024 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1025 tb[IFLA_LINKINFO], ifla_info_policy);
1026 if (err < 0)
1027 return err;
1028 } else
1029 memset(linkinfo, 0, sizeof(linkinfo));
1030
1031 if (linkinfo[IFLA_INFO_KIND]) {
1032 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1033 ops = rtnl_link_ops_get(kind);
1034 } else {
1035 kind[0] = '\0';
1036 ops = NULL;
1037 }
1038
1039 if (1) {
1040 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
1041
1042 if (ops) {
1043 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1044 err = nla_parse_nested(attr, ops->maxtype,
1045 linkinfo[IFLA_INFO_DATA],
1046 ops->policy);
1047 if (err < 0)
1048 return err;
1049 data = attr;
1050 }
1051 if (ops->validate) {
1052 err = ops->validate(tb, data);
1053 if (err < 0)
1054 return err;
1055 }
1056 }
1057
1058 if (dev) {
1059 int modified = 0;
1060
1061 if (nlh->nlmsg_flags & NLM_F_EXCL)
1062 return -EEXIST;
1063 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1064 return -EOPNOTSUPP;
1065
1066 if (linkinfo[IFLA_INFO_DATA]) {
1067 if (!ops || ops != dev->rtnl_link_ops ||
1068 !ops->changelink)
1069 return -EOPNOTSUPP;
1070
1071 err = ops->changelink(dev, tb, data);
1072 if (err < 0)
1073 return err;
1074 modified = 1;
1075 }
1076
1077 return do_setlink(dev, ifm, tb, ifname, modified);
1078 }
1079
1080 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
1081 return -ENODEV;
1082
1083 if (ifm->ifi_index || ifm->ifi_flags || ifm->ifi_change)
1084 return -EOPNOTSUPP;
Patrick McHardy0e068772007-07-11 19:42:31 -07001085 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
Patrick McHardy38f7b872007-06-13 12:03:51 -07001086 return -EOPNOTSUPP;
1087
1088 if (!ops) {
1089#ifdef CONFIG_KMOD
1090 if (kind[0]) {
1091 __rtnl_unlock();
1092 request_module("rtnl-link-%s", kind);
1093 rtnl_lock();
1094 ops = rtnl_link_ops_get(kind);
1095 if (ops)
1096 goto replay;
1097 }
1098#endif
1099 return -EOPNOTSUPP;
1100 }
1101
1102 if (!ifname[0])
1103 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001104
Eric W. Biederman881d9662007-09-17 11:56:21 -07001105 dev = rtnl_create_link(net, ifname, ops, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001106
Pavel Emelianove7199282007-08-08 22:16:38 -07001107 if (IS_ERR(dev))
1108 err = PTR_ERR(dev);
1109 else if (ops->newlink)
Patrick McHardy2d85cba2007-07-11 19:42:13 -07001110 err = ops->newlink(dev, tb, data);
1111 else
1112 err = register_netdevice(dev);
Pavel Emelianove7199282007-08-08 22:16:38 -07001113
1114 if (err < 0 && !IS_ERR(dev))
Patrick McHardy38f7b872007-06-13 12:03:51 -07001115 free_netdev(dev);
1116 return err;
1117 }
1118}
1119
Thomas Grafb60c5112006-08-04 23:05:34 -07001120static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001121{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001122 struct net *net = skb->sk->sk_net;
Thomas Grafb60c5112006-08-04 23:05:34 -07001123 struct ifinfomsg *ifm;
1124 struct nlattr *tb[IFLA_MAX+1];
1125 struct net_device *dev = NULL;
1126 struct sk_buff *nskb;
Thomas Graf339bf982006-11-10 14:10:15 -08001127 int err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001128
Thomas Grafb60c5112006-08-04 23:05:34 -07001129 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1130 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07001131 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07001132
1133 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -07001134 if (ifm->ifi_index > 0) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001135 dev = dev_get_by_index(net, ifm->ifi_index);
Thomas Grafb60c5112006-08-04 23:05:34 -07001136 if (dev == NULL)
1137 return -ENODEV;
1138 } else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001139 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07001140
Patrick McHardy38f7b872007-06-13 12:03:51 -07001141 nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Thomas Grafb60c5112006-08-04 23:05:34 -07001142 if (nskb == NULL) {
1143 err = -ENOBUFS;
1144 goto errout;
1145 }
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001146
Patrick McHardy575c3e22007-05-22 17:00:49 -07001147 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1148 nlh->nlmsg_seq, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001149 if (err < 0) {
1150 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1151 WARN_ON(err == -EMSGSIZE);
1152 kfree_skb(nskb);
1153 goto errout;
1154 }
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001155 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid);
Thomas Grafb60c5112006-08-04 23:05:34 -07001156errout:
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001157 dev_put(dev);
Thomas Grafb60c5112006-08-04 23:05:34 -07001158
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001159 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001160}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001161
Adrian Bunk42bad1d2007-04-26 00:57:41 -07001162static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
1164 int idx;
1165 int s_idx = cb->family;
1166
1167 if (s_idx == 0)
1168 s_idx = 1;
1169 for (idx=1; idx<NPROTO; idx++) {
1170 int type = cb->nlh->nlmsg_type-RTM_BASE;
1171 if (idx < s_idx || idx == PF_PACKET)
1172 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07001173 if (rtnl_msg_handlers[idx] == NULL ||
1174 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 continue;
1176 if (idx > s_idx)
1177 memset(&cb->args[0], 0, sizeof(cb->args));
Thomas Grafe2849862007-03-22 11:48:11 -07001178 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 break;
1180 }
1181 cb->family = idx;
1182
1183 return skb->len;
1184}
1185
1186void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1187{
Eric W. Biederman4b3da702007-11-19 22:27:40 -08001188 struct net *net = dev->nd_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001190 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Patrick McHardy38f7b872007-06-13 12:03:51 -07001192 skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001193 if (skb == NULL)
1194 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Patrick McHardy575c3e22007-05-22 17:00:49 -07001196 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001197 if (err < 0) {
1198 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1199 WARN_ON(err == -EMSGSIZE);
1200 kfree_skb(skb);
1201 goto errout;
1202 }
Eric W. Biederman4b3da702007-11-19 22:27:40 -08001203 err = rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001204errout:
1205 if (err < 0)
Eric W. Biederman4b3da702007-11-19 22:27:40 -08001206 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207}
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209/* Protected by RTNL sempahore. */
1210static struct rtattr **rta_buf;
1211static int rtattr_max;
1212
1213/* Process one rtnetlink message. */
1214
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001215static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001217 struct net *net = skb->sk->sk_net;
Thomas Grafe2849862007-03-22 11:48:11 -07001218 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 int sz_idx, kind;
1220 int min_len;
1221 int family;
1222 int type;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001223 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07001227 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 type -= RTM_BASE;
1230
1231 /* All the messages must have at least 1 byte length */
1232 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1233 return 0;
1234
1235 family = ((struct rtgenmsg*)NLMSG_DATA(nlh))->rtgen_family;
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001236 if (family >= NPROTO)
1237 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 sz_idx = type>>2;
1240 kind = type&3;
1241
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001242 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
1243 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001246 struct sock *rtnl;
Thomas Grafe2849862007-03-22 11:48:11 -07001247 rtnl_dumpit_func dumpit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Thomas Grafe2849862007-03-22 11:48:11 -07001249 dumpit = rtnl_get_dumpit(family, type);
1250 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001251 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001253 __rtnl_unlock();
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001254 rtnl = net->rtnl;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001255 err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL);
1256 rtnl_lock();
1257 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
1259
1260 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
1261
1262 min_len = rtm_min[sz_idx];
1263 if (nlh->nlmsg_len < min_len)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001264 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 if (nlh->nlmsg_len > min_len) {
1267 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
1268 struct rtattr *attr = (void*)nlh + NLMSG_ALIGN(min_len);
1269
1270 while (RTA_OK(attr, attrlen)) {
1271 unsigned flavor = attr->rta_type;
1272 if (flavor) {
1273 if (flavor > rta_max[sz_idx])
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001274 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 rta_buf[flavor-1] = attr;
1276 }
1277 attr = RTA_NEXT(attr, attrlen);
1278 }
1279 }
1280
Thomas Grafe2849862007-03-22 11:48:11 -07001281 doit = rtnl_get_doit(family, type);
1282 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001283 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001285 return doit(skb, nlh, (void *)&rta_buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
1287
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001288static void rtnetlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001290 rtnl_lock();
1291 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
1292 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293}
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
1296{
1297 struct net_device *dev = ptr;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 switch (event) {
1300 case NETDEV_UNREGISTER:
1301 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
1302 break;
1303 case NETDEV_REGISTER:
1304 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1305 break;
1306 case NETDEV_UP:
1307 case NETDEV_DOWN:
1308 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
1309 break;
1310 case NETDEV_CHANGE:
1311 case NETDEV_GOING_DOWN:
1312 break;
1313 default:
1314 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1315 break;
1316 }
1317 return NOTIFY_DONE;
1318}
1319
1320static struct notifier_block rtnetlink_dev_notifier = {
1321 .notifier_call = rtnetlink_event,
1322};
1323
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001324
1325static int rtnetlink_net_init(struct net *net)
1326{
1327 struct sock *sk;
1328 sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX,
1329 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
1330 if (!sk)
1331 return -ENOMEM;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001332 net->rtnl = sk;
1333 return 0;
1334}
1335
1336static void rtnetlink_net_exit(struct net *net)
1337{
Denis V. Lunev775516b2008-01-18 23:55:19 -08001338 netlink_kernel_release(net->rtnl);
1339 net->rtnl = NULL;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001340}
1341
1342static struct pernet_operations rtnetlink_net_ops = {
1343 .init = rtnetlink_net_init,
1344 .exit = rtnetlink_net_exit,
1345};
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347void __init rtnetlink_init(void)
1348{
1349 int i;
1350
1351 rtattr_max = 0;
1352 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
1353 if (rta_max[i] > rtattr_max)
1354 rtattr_max = rta_max[i];
1355 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
1356 if (!rta_buf)
1357 panic("rtnetlink_init: cannot allocate rta_buf\n");
1358
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001359 if (register_pernet_subsys(&rtnetlink_net_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 panic("rtnetlink_init: cannot initialize rtnetlink\n");
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
1363 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07001364
1365 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo);
1366 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001367 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL);
1368 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07001369
1370 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all);
1371 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372}
1373
1374EXPORT_SYMBOL(__rta_fill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376EXPORT_SYMBOL(rtnl_lock);
Stephen Hemminger6756ae42006-03-20 22:23:58 -08001377EXPORT_SYMBOL(rtnl_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378EXPORT_SYMBOL(rtnl_unlock);
Thomas Graf2942e902006-08-15 00:30:25 -07001379EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf97676b62006-08-15 00:31:41 -07001380EXPORT_SYMBOL(rtnl_notify);
1381EXPORT_SYMBOL(rtnl_set_sk_err);
Pavel Emelianove7199282007-08-08 22:16:38 -07001382EXPORT_SYMBOL(rtnl_create_link);
1383EXPORT_SYMBOL(ifla_policy);