blob: 90430b776ecef76ecb71b1ed4db964b541a382fc [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>
Williams, Mitch Aebc08a62010-02-10 01:44:05 +000038#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <linux/inet.h>
43#include <linux/netdevice.h>
44#include <net/ip.h>
45#include <net/protocol.h>
46#include <net/arp.h>
47#include <net/route.h>
48#include <net/udp.h>
49#include <net/sock.h>
50#include <net/pkt_sched.h>
Thomas Graf14c0b972006-08-04 03:38:38 -070051#include <net/fib_rules.h>
Thomas Grafe2849862007-03-22 11:48:11 -070052#include <net/rtnetlink.h>
Johannes Berg30ffee82009-07-10 09:51:35 +000053#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Eric Dumazete0d087a2009-11-07 01:26:17 -080055struct rtnl_link {
Thomas Grafe2849862007-03-22 11:48:11 -070056 rtnl_doit_func doit;
57 rtnl_dumpit_func dumpit;
Greg Rosec7ac8672011-06-10 01:27:09 +000058 rtnl_calcit_func calcit;
Thomas Grafe2849862007-03-22 11:48:11 -070059};
60
Stephen Hemminger6756ae42006-03-20 22:23:58 -080061static DEFINE_MUTEX(rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63void rtnl_lock(void)
64{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080065 mutex_lock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
Eric Dumazete0d087a2009-11-07 01:26:17 -080067EXPORT_SYMBOL(rtnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
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{
Herbert Xu58ec3b42008-10-07 15:50:03 -070076 /* This fellow will unlock it for us. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 netdev_run_todo();
78}
Eric Dumazete0d087a2009-11-07 01:26:17 -080079EXPORT_SYMBOL(rtnl_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Stephen Hemminger6756ae42006-03-20 22:23:58 -080081int rtnl_trylock(void)
82{
83 return mutex_trylock(&rtnl_mutex);
84}
Eric Dumazete0d087a2009-11-07 01:26:17 -080085EXPORT_SYMBOL(rtnl_trylock);
Stephen Hemminger6756ae42006-03-20 22:23:58 -080086
Patrick McHardyc9c10142008-04-23 22:10:48 -070087int rtnl_is_locked(void)
88{
89 return mutex_is_locked(&rtnl_mutex);
90}
Eric Dumazete0d087a2009-11-07 01:26:17 -080091EXPORT_SYMBOL(rtnl_is_locked);
Patrick McHardyc9c10142008-04-23 22:10:48 -070092
Paul E. McKenneya898def2010-02-22 17:04:49 -080093#ifdef CONFIG_PROVE_LOCKING
94int lockdep_rtnl_is_held(void)
95{
96 return lockdep_is_held(&rtnl_mutex);
97}
98EXPORT_SYMBOL(lockdep_rtnl_is_held);
99#endif /* #ifdef CONFIG_PROVE_LOCKING */
100
Patrick McHardy25239ce2010-04-26 16:02:05 +0200101static struct rtnl_link *rtnl_msg_handlers[RTNL_FAMILY_MAX + 1];
Thomas Grafe2849862007-03-22 11:48:11 -0700102
103static inline int rtm_msgindex(int msgtype)
104{
105 int msgindex = msgtype - RTM_BASE;
106
107 /*
108 * msgindex < 0 implies someone tried to register a netlink
109 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
110 * the message type has not been added to linux/rtnetlink.h
111 */
112 BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
113
114 return msgindex;
115}
116
117static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
118{
119 struct rtnl_link *tab;
120
Patrick McHardy25239ce2010-04-26 16:02:05 +0200121 if (protocol <= RTNL_FAMILY_MAX)
Patrick McHardy0f87b1d2010-04-13 05:03:17 +0000122 tab = rtnl_msg_handlers[protocol];
123 else
124 tab = NULL;
125
Thomas Graf51057f22007-03-22 21:41:06 -0700126 if (tab == NULL || tab[msgindex].doit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700127 tab = rtnl_msg_handlers[PF_UNSPEC];
128
Thomas Graf51057f22007-03-22 21:41:06 -0700129 return tab ? tab[msgindex].doit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700130}
131
132static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
133{
134 struct rtnl_link *tab;
135
Patrick McHardy25239ce2010-04-26 16:02:05 +0200136 if (protocol <= RTNL_FAMILY_MAX)
Patrick McHardy0f87b1d2010-04-13 05:03:17 +0000137 tab = rtnl_msg_handlers[protocol];
138 else
139 tab = NULL;
140
Thomas Graf51057f22007-03-22 21:41:06 -0700141 if (tab == NULL || tab[msgindex].dumpit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700142 tab = rtnl_msg_handlers[PF_UNSPEC];
143
Thomas Graf51057f22007-03-22 21:41:06 -0700144 return tab ? tab[msgindex].dumpit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700145}
146
Greg Rosec7ac8672011-06-10 01:27:09 +0000147static rtnl_calcit_func rtnl_get_calcit(int protocol, int msgindex)
148{
149 struct rtnl_link *tab;
150
151 if (protocol <= RTNL_FAMILY_MAX)
152 tab = rtnl_msg_handlers[protocol];
153 else
154 tab = NULL;
155
156 if (tab == NULL || tab[msgindex].calcit == NULL)
157 tab = rtnl_msg_handlers[PF_UNSPEC];
158
159 return tab ? tab[msgindex].calcit : NULL;
160}
161
Thomas Grafe2849862007-03-22 11:48:11 -0700162/**
163 * __rtnl_register - Register a rtnetlink message type
164 * @protocol: Protocol family or PF_UNSPEC
165 * @msgtype: rtnetlink message type
166 * @doit: Function pointer called for each request message
167 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
Greg Rosec7ac8672011-06-10 01:27:09 +0000168 * @calcit: Function pointer to calc size of dump message
Thomas Grafe2849862007-03-22 11:48:11 -0700169 *
170 * Registers the specified function pointers (at least one of them has
171 * to be non-NULL) to be called whenever a request message for the
172 * specified protocol family and message type is received.
173 *
174 * The special protocol family PF_UNSPEC may be used to define fallback
175 * function pointers for the case when no entry for the specific protocol
176 * family exists.
177 *
178 * Returns 0 on success or a negative error code.
179 */
180int __rtnl_register(int protocol, int msgtype,
Greg Rosec7ac8672011-06-10 01:27:09 +0000181 rtnl_doit_func doit, rtnl_dumpit_func dumpit,
182 rtnl_calcit_func calcit)
Thomas Grafe2849862007-03-22 11:48:11 -0700183{
184 struct rtnl_link *tab;
185 int msgindex;
186
Patrick McHardy25239ce2010-04-26 16:02:05 +0200187 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700188 msgindex = rtm_msgindex(msgtype);
189
190 tab = rtnl_msg_handlers[protocol];
191 if (tab == NULL) {
192 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
193 if (tab == NULL)
194 return -ENOBUFS;
195
196 rtnl_msg_handlers[protocol] = tab;
197 }
198
199 if (doit)
200 tab[msgindex].doit = doit;
201
202 if (dumpit)
203 tab[msgindex].dumpit = dumpit;
204
Greg Rosec7ac8672011-06-10 01:27:09 +0000205 if (calcit)
206 tab[msgindex].calcit = calcit;
207
Thomas Grafe2849862007-03-22 11:48:11 -0700208 return 0;
209}
Thomas Grafe2849862007-03-22 11:48:11 -0700210EXPORT_SYMBOL_GPL(__rtnl_register);
211
212/**
213 * rtnl_register - Register a rtnetlink message type
214 *
215 * Identical to __rtnl_register() but panics on failure. This is useful
216 * as failure of this function is very unlikely, it can only happen due
217 * to lack of memory when allocating the chain to store all message
218 * handlers for a protocol. Meant for use in init functions where lack
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300219 * of memory implies no sense in continuing.
Thomas Grafe2849862007-03-22 11:48:11 -0700220 */
221void rtnl_register(int protocol, int msgtype,
Greg Rosec7ac8672011-06-10 01:27:09 +0000222 rtnl_doit_func doit, rtnl_dumpit_func dumpit,
223 rtnl_calcit_func calcit)
Thomas Grafe2849862007-03-22 11:48:11 -0700224{
Greg Rosec7ac8672011-06-10 01:27:09 +0000225 if (__rtnl_register(protocol, msgtype, doit, dumpit, calcit) < 0)
Thomas Grafe2849862007-03-22 11:48:11 -0700226 panic("Unable to register rtnetlink message handler, "
227 "protocol = %d, message type = %d\n",
228 protocol, msgtype);
229}
Thomas Grafe2849862007-03-22 11:48:11 -0700230EXPORT_SYMBOL_GPL(rtnl_register);
231
232/**
233 * rtnl_unregister - Unregister a rtnetlink message type
234 * @protocol: Protocol family or PF_UNSPEC
235 * @msgtype: rtnetlink message type
236 *
237 * Returns 0 on success or a negative error code.
238 */
239int rtnl_unregister(int protocol, int msgtype)
240{
241 int msgindex;
242
Patrick McHardy25239ce2010-04-26 16:02:05 +0200243 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700244 msgindex = rtm_msgindex(msgtype);
245
246 if (rtnl_msg_handlers[protocol] == NULL)
247 return -ENOENT;
248
249 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
250 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
251
252 return 0;
253}
Thomas Grafe2849862007-03-22 11:48:11 -0700254EXPORT_SYMBOL_GPL(rtnl_unregister);
255
256/**
257 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
258 * @protocol : Protocol family or PF_UNSPEC
259 *
260 * Identical to calling rtnl_unregster() for all registered message types
261 * of a certain protocol family.
262 */
263void rtnl_unregister_all(int protocol)
264{
Patrick McHardy25239ce2010-04-26 16:02:05 +0200265 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700266
267 kfree(rtnl_msg_handlers[protocol]);
268 rtnl_msg_handlers[protocol] = NULL;
269}
Thomas Grafe2849862007-03-22 11:48:11 -0700270EXPORT_SYMBOL_GPL(rtnl_unregister_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Patrick McHardy38f7b872007-06-13 12:03:51 -0700272static LIST_HEAD(link_ops);
273
Eric Dumazetc63044f2011-12-13 11:38:00 +0000274static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
275{
276 const struct rtnl_link_ops *ops;
277
278 list_for_each_entry(ops, &link_ops, list) {
279 if (!strcmp(ops->kind, kind))
280 return ops;
281 }
282 return NULL;
283}
284
Patrick McHardy38f7b872007-06-13 12:03:51 -0700285/**
286 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
287 * @ops: struct rtnl_link_ops * to register
288 *
289 * The caller must hold the rtnl_mutex. This function should be used
290 * by drivers that create devices during module initialization. It
291 * must be called before registering the devices.
292 *
293 * Returns 0 on success or a negative error code.
294 */
295int __rtnl_link_register(struct rtnl_link_ops *ops)
296{
Eric Dumazetc63044f2011-12-13 11:38:00 +0000297 if (rtnl_link_ops_get(ops->kind))
298 return -EEXIST;
299
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700300 if (!ops->dellink)
Eric Dumazet23289a32009-10-27 07:06:36 +0000301 ops->dellink = unregister_netdevice_queue;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700302
Patrick McHardy38f7b872007-06-13 12:03:51 -0700303 list_add_tail(&ops->list, &link_ops);
304 return 0;
305}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700306EXPORT_SYMBOL_GPL(__rtnl_link_register);
307
308/**
309 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
310 * @ops: struct rtnl_link_ops * to register
311 *
312 * Returns 0 on success or a negative error code.
313 */
314int rtnl_link_register(struct rtnl_link_ops *ops)
315{
316 int err;
317
318 rtnl_lock();
319 err = __rtnl_link_register(ops);
320 rtnl_unlock();
321 return err;
322}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700323EXPORT_SYMBOL_GPL(rtnl_link_register);
324
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700325static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
326{
327 struct net_device *dev;
Eric Dumazet23289a32009-10-27 07:06:36 +0000328 LIST_HEAD(list_kill);
329
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700330 for_each_netdev(net, dev) {
Eric Dumazet23289a32009-10-27 07:06:36 +0000331 if (dev->rtnl_link_ops == ops)
332 ops->dellink(dev, &list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700333 }
Eric Dumazet23289a32009-10-27 07:06:36 +0000334 unregister_netdevice_many(&list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700335}
336
Patrick McHardy38f7b872007-06-13 12:03:51 -0700337/**
338 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
339 * @ops: struct rtnl_link_ops * to unregister
340 *
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700341 * The caller must hold the rtnl_mutex.
Patrick McHardy38f7b872007-06-13 12:03:51 -0700342 */
343void __rtnl_link_unregister(struct rtnl_link_ops *ops)
344{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700345 struct net *net;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700346
Eric W. Biederman881d9662007-09-17 11:56:21 -0700347 for_each_net(net) {
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700348 __rtnl_kill_links(net, ops);
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700349 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700350 list_del(&ops->list);
351}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700352EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
353
354/**
355 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
356 * @ops: struct rtnl_link_ops * to unregister
357 */
358void rtnl_link_unregister(struct rtnl_link_ops *ops)
359{
360 rtnl_lock();
361 __rtnl_link_unregister(ops);
362 rtnl_unlock();
363}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700364EXPORT_SYMBOL_GPL(rtnl_link_unregister);
365
Patrick McHardy38f7b872007-06-13 12:03:51 -0700366static size_t rtnl_link_get_size(const struct net_device *dev)
367{
368 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
369 size_t size;
370
371 if (!ops)
372 return 0;
373
Thomas Graf369cf772010-11-11 15:47:59 +0000374 size = nla_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
375 nla_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700376
377 if (ops->get_size)
378 /* IFLA_INFO_DATA + nested data */
Thomas Graf369cf772010-11-11 15:47:59 +0000379 size += nla_total_size(sizeof(struct nlattr)) +
Patrick McHardy38f7b872007-06-13 12:03:51 -0700380 ops->get_size(dev);
381
382 if (ops->get_xstats_size)
Thomas Graf369cf772010-11-11 15:47:59 +0000383 /* IFLA_INFO_XSTATS */
384 size += nla_total_size(ops->get_xstats_size(dev));
Patrick McHardy38f7b872007-06-13 12:03:51 -0700385
386 return size;
387}
388
Thomas Graff8ff1822010-11-16 04:30:14 +0000389static LIST_HEAD(rtnl_af_ops);
390
391static const struct rtnl_af_ops *rtnl_af_lookup(const int family)
392{
393 const struct rtnl_af_ops *ops;
394
395 list_for_each_entry(ops, &rtnl_af_ops, list) {
396 if (ops->family == family)
397 return ops;
398 }
399
400 return NULL;
401}
402
403/**
404 * __rtnl_af_register - Register rtnl_af_ops with rtnetlink.
405 * @ops: struct rtnl_af_ops * to register
406 *
407 * The caller must hold the rtnl_mutex.
408 *
409 * Returns 0 on success or a negative error code.
410 */
411int __rtnl_af_register(struct rtnl_af_ops *ops)
412{
413 list_add_tail(&ops->list, &rtnl_af_ops);
414 return 0;
415}
416EXPORT_SYMBOL_GPL(__rtnl_af_register);
417
418/**
419 * rtnl_af_register - Register rtnl_af_ops with rtnetlink.
420 * @ops: struct rtnl_af_ops * to register
421 *
422 * Returns 0 on success or a negative error code.
423 */
424int rtnl_af_register(struct rtnl_af_ops *ops)
425{
426 int err;
427
428 rtnl_lock();
429 err = __rtnl_af_register(ops);
430 rtnl_unlock();
431 return err;
432}
433EXPORT_SYMBOL_GPL(rtnl_af_register);
434
435/**
436 * __rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
437 * @ops: struct rtnl_af_ops * to unregister
438 *
439 * The caller must hold the rtnl_mutex.
440 */
441void __rtnl_af_unregister(struct rtnl_af_ops *ops)
442{
443 list_del(&ops->list);
444}
445EXPORT_SYMBOL_GPL(__rtnl_af_unregister);
446
447/**
448 * rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
449 * @ops: struct rtnl_af_ops * to unregister
450 */
451void rtnl_af_unregister(struct rtnl_af_ops *ops)
452{
453 rtnl_lock();
454 __rtnl_af_unregister(ops);
455 rtnl_unlock();
456}
457EXPORT_SYMBOL_GPL(rtnl_af_unregister);
458
459static size_t rtnl_link_get_af_size(const struct net_device *dev)
460{
461 struct rtnl_af_ops *af_ops;
462 size_t size;
463
464 /* IFLA_AF_SPEC */
465 size = nla_total_size(sizeof(struct nlattr));
466
467 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
468 if (af_ops->get_link_af_size) {
469 /* AF_* + nested data */
470 size += nla_total_size(sizeof(struct nlattr)) +
471 af_ops->get_link_af_size(dev);
472 }
473 }
474
475 return size;
476}
477
Patrick McHardy38f7b872007-06-13 12:03:51 -0700478static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
479{
480 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
481 struct nlattr *linkinfo, *data;
482 int err = -EMSGSIZE;
483
484 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
485 if (linkinfo == NULL)
486 goto out;
487
488 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
489 goto err_cancel_link;
490 if (ops->fill_xstats) {
491 err = ops->fill_xstats(skb, dev);
492 if (err < 0)
493 goto err_cancel_link;
494 }
495 if (ops->fill_info) {
496 data = nla_nest_start(skb, IFLA_INFO_DATA);
497 if (data == NULL)
498 goto err_cancel_link;
499 err = ops->fill_info(skb, dev);
500 if (err < 0)
501 goto err_cancel_data;
502 nla_nest_end(skb, data);
503 }
504
505 nla_nest_end(skb, linkinfo);
506 return 0;
507
508err_cancel_data:
509 nla_nest_cancel(skb, data);
510err_cancel_link:
511 nla_nest_cancel(skb, linkinfo);
512out:
513 return err;
514}
515
Thomas Grafdb46edc2005-05-03 14:29:39 -0700516static const int rtm_min[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Thomas Graff90a0a72005-05-03 14:29:00 -0700518 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
519 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
520 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
Thomas Graf14c0b972006-08-04 03:38:38 -0700521 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700522 [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
523 [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
524 [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
525 [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700526 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
527 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528};
529
Thomas Grafdb46edc2005-05-03 14:29:39 -0700530static const int rta_max[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Thomas Graff90a0a72005-05-03 14:29:00 -0700532 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
533 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
534 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
Thomas Graf14c0b972006-08-04 03:38:38 -0700535 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
Thomas Graff90a0a72005-05-03 14:29:00 -0700536 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
537 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
538 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
539 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540};
541
542void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
543{
544 struct rtattr *rta;
545 int size = RTA_LENGTH(attrlen);
546
Eric Dumazete0d087a2009-11-07 01:26:17 -0800547 rta = (struct rtattr *)skb_put(skb, RTA_ALIGN(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 rta->rta_type = attrtype;
549 rta->rta_len = size;
550 memcpy(RTA_DATA(rta), data, attrlen);
Patrick McHardyb3563c42005-06-28 12:54:43 -0700551 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800553EXPORT_SYMBOL(__rta_fill);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800555int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned group, int echo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800557 struct sock *rtnl = net->rtnl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 int err = 0;
559
Patrick McHardyac6d4392005-08-14 19:29:52 -0700560 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (echo)
562 atomic_inc(&skb->users);
563 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
564 if (echo)
565 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
566 return err;
567}
568
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800569int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
Thomas Graf2942e902006-08-15 00:30:25 -0700570{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800571 struct sock *rtnl = net->rtnl;
572
Thomas Graf2942e902006-08-15 00:30:25 -0700573 return nlmsg_unicast(rtnl, skb, pid);
574}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800575EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf2942e902006-08-15 00:30:25 -0700576
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800577void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
578 struct nlmsghdr *nlh, gfp_t flags)
Thomas Graf97676b62006-08-15 00:31:41 -0700579{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800580 struct sock *rtnl = net->rtnl;
Thomas Graf97676b62006-08-15 00:31:41 -0700581 int report = 0;
582
583 if (nlh)
584 report = nlmsg_report(nlh);
585
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800586 nlmsg_notify(rtnl, skb, pid, group, report, flags);
Thomas Graf97676b62006-08-15 00:31:41 -0700587}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800588EXPORT_SYMBOL(rtnl_notify);
Thomas Graf97676b62006-08-15 00:31:41 -0700589
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800590void rtnl_set_sk_err(struct net *net, u32 group, int error)
Thomas Graf97676b62006-08-15 00:31:41 -0700591{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800592 struct sock *rtnl = net->rtnl;
593
Thomas Graf97676b62006-08-15 00:31:41 -0700594 netlink_set_err(rtnl, 0, group, error);
595}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800596EXPORT_SYMBOL(rtnl_set_sk_err);
Thomas Graf97676b62006-08-15 00:31:41 -0700597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
599{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700600 struct nlattr *mx;
601 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Thomas Graf2d7202b2006-08-22 00:01:27 -0700603 mx = nla_nest_start(skb, RTA_METRICS);
604 if (mx == NULL)
605 return -ENOBUFS;
606
607 for (i = 0; i < RTAX_MAX; i++) {
608 if (metrics[i]) {
609 valid++;
610 NLA_PUT_U32(skb, i+1, metrics[i]);
611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
David S. Millera57d27f2006-08-22 22:20:14 -0700614 if (!valid) {
615 nla_nest_cancel(skb, mx);
616 return 0;
617 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700618
619 return nla_nest_end(skb, mx);
620
621nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700622 nla_nest_cancel(skb, mx);
623 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800625EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Thomas Grafe3703b32006-11-27 09:27:07 -0800627int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
628 u32 ts, u32 tsage, long expires, u32 error)
629{
630 struct rta_cacheinfo ci = {
631 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
632 .rta_used = dst->__use,
633 .rta_clntref = atomic_read(&(dst->__refcnt)),
634 .rta_error = error,
635 .rta_id = id,
636 .rta_ts = ts,
637 .rta_tsage = tsage,
638 };
639
640 if (expires)
641 ci.rta_expires = jiffies_to_clock_t(expires);
642
643 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
644}
Thomas Grafe3703b32006-11-27 09:27:07 -0800645EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
David S. Miller93b2d4a2008-02-17 18:35:07 -0800647static void set_operstate(struct net_device *dev, unsigned char transition)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800648{
649 unsigned char operstate = dev->operstate;
650
Eric Dumazete0d087a2009-11-07 01:26:17 -0800651 switch (transition) {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800652 case IF_OPER_UP:
653 if ((operstate == IF_OPER_DORMANT ||
654 operstate == IF_OPER_UNKNOWN) &&
655 !netif_dormant(dev))
656 operstate = IF_OPER_UP;
657 break;
658
659 case IF_OPER_DORMANT:
660 if (operstate == IF_OPER_UP ||
661 operstate == IF_OPER_UNKNOWN)
662 operstate = IF_OPER_DORMANT;
663 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700664 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800665
666 if (dev->operstate != operstate) {
667 write_lock_bh(&dev_base_lock);
668 dev->operstate = operstate;
669 write_unlock_bh(&dev_base_lock);
David S. Miller93b2d4a2008-02-17 18:35:07 -0800670 netdev_state_change(dev);
671 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800672}
673
Patrick McHardy3729d502010-02-26 06:34:54 +0000674static unsigned int rtnl_dev_combine_flags(const struct net_device *dev,
675 const struct ifinfomsg *ifm)
676{
677 unsigned int flags = ifm->ifi_flags;
678
679 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
680 if (ifm->ifi_change)
681 flags = (flags & ifm->ifi_change) |
682 (dev->flags & ~ifm->ifi_change);
683
684 return flags;
685}
686
Thomas Grafb60c5112006-08-04 23:05:34 -0700687static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000688 const struct rtnl_link_stats64 *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Thomas Grafb60c5112006-08-04 23:05:34 -0700690 a->rx_packets = b->rx_packets;
691 a->tx_packets = b->tx_packets;
692 a->rx_bytes = b->rx_bytes;
693 a->tx_bytes = b->tx_bytes;
694 a->rx_errors = b->rx_errors;
695 a->tx_errors = b->tx_errors;
696 a->rx_dropped = b->rx_dropped;
697 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Thomas Grafb60c5112006-08-04 23:05:34 -0700699 a->multicast = b->multicast;
700 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Thomas Grafb60c5112006-08-04 23:05:34 -0700702 a->rx_length_errors = b->rx_length_errors;
703 a->rx_over_errors = b->rx_over_errors;
704 a->rx_crc_errors = b->rx_crc_errors;
705 a->rx_frame_errors = b->rx_frame_errors;
706 a->rx_fifo_errors = b->rx_fifo_errors;
707 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Thomas Grafb60c5112006-08-04 23:05:34 -0700709 a->tx_aborted_errors = b->tx_aborted_errors;
710 a->tx_carrier_errors = b->tx_carrier_errors;
711 a->tx_fifo_errors = b->tx_fifo_errors;
712 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
713 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Thomas Grafb60c5112006-08-04 23:05:34 -0700715 a->rx_compressed = b->rx_compressed;
716 a->tx_compressed = b->tx_compressed;
Jan Engelhardt10708f32010-03-11 09:57:29 +0000717}
718
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000719static void copy_rtnl_link_stats64(void *v, const struct rtnl_link_stats64 *b)
Jan Engelhardt10708f32010-03-11 09:57:29 +0000720{
Eric Dumazetafdcba32010-08-23 07:14:36 +0000721 memcpy(v, b, sizeof(*b));
Jan Engelhardt10708f32010-03-11 09:57:29 +0000722}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Chris Wrightc02db8c2010-05-16 01:05:45 -0700724/* All VF info */
Greg Rose115c9b82012-02-21 16:54:48 -0500725static inline int rtnl_vfinfo_size(const struct net_device *dev,
726 u32 ext_filter_mask)
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000727{
Greg Rose115c9b82012-02-21 16:54:48 -0500728 if (dev->dev.parent && dev_is_pci(dev->dev.parent) &&
729 (ext_filter_mask & RTEXT_FILTER_VF)) {
Chris Wrightc02db8c2010-05-16 01:05:45 -0700730 int num_vfs = dev_num_vf(dev->dev.parent);
Scott Feldman045de012010-05-28 03:42:43 -0700731 size_t size = nla_total_size(sizeof(struct nlattr));
732 size += nla_total_size(num_vfs * sizeof(struct nlattr));
733 size += num_vfs *
734 (nla_total_size(sizeof(struct ifla_vf_mac)) +
735 nla_total_size(sizeof(struct ifla_vf_vlan)) +
Greg Rose5f8444a2011-10-08 03:05:24 +0000736 nla_total_size(sizeof(struct ifla_vf_tx_rate)) +
737 nla_total_size(sizeof(struct ifla_vf_spoofchk)));
Chris Wrightc02db8c2010-05-16 01:05:45 -0700738 return size;
739 } else
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000740 return 0;
741}
742
Scott Feldman57b61082010-05-17 22:49:55 -0700743static size_t rtnl_port_size(const struct net_device *dev)
744{
745 size_t port_size = nla_total_size(4) /* PORT_VF */
746 + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */
747 + nla_total_size(sizeof(struct ifla_port_vsi))
748 /* PORT_VSI_TYPE */
749 + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */
750 + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */
751 + nla_total_size(1) /* PROT_VDP_REQUEST */
752 + nla_total_size(2); /* PORT_VDP_RESPONSE */
753 size_t vf_ports_size = nla_total_size(sizeof(struct nlattr));
754 size_t vf_port_size = nla_total_size(sizeof(struct nlattr))
755 + port_size;
756 size_t port_self_size = nla_total_size(sizeof(struct nlattr))
757 + port_size;
758
759 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
760 return 0;
761 if (dev_num_vf(dev->dev.parent))
762 return port_self_size + vf_ports_size +
763 vf_port_size * dev_num_vf(dev->dev.parent);
764 else
765 return port_self_size;
766}
767
Greg Rose115c9b82012-02-21 16:54:48 -0500768static noinline size_t if_nlmsg_size(const struct net_device *dev,
769 u32 ext_filter_mask)
Thomas Graf339bf982006-11-10 14:10:15 -0800770{
771 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
772 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700773 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
Thomas Graf339bf982006-11-10 14:10:15 -0800774 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
775 + nla_total_size(sizeof(struct rtnl_link_ifmap))
776 + nla_total_size(sizeof(struct rtnl_link_stats))
Jan Engelhardtadcfe192010-03-27 17:15:29 -0700777 + nla_total_size(sizeof(struct rtnl_link_stats64))
Thomas Graf339bf982006-11-10 14:10:15 -0800778 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
779 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
780 + nla_total_size(4) /* IFLA_TXQLEN */
781 + nla_total_size(4) /* IFLA_WEIGHT */
782 + nla_total_size(4) /* IFLA_MTU */
783 + nla_total_size(4) /* IFLA_LINK */
784 + nla_total_size(4) /* IFLA_MASTER */
785 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700786 + nla_total_size(1) /* IFLA_LINKMODE */
Greg Rose115c9b82012-02-21 16:54:48 -0500787 + nla_total_size(ext_filter_mask
788 & RTEXT_FILTER_VF ? 4 : 0) /* IFLA_NUM_VF */
789 + rtnl_vfinfo_size(dev, ext_filter_mask) /* IFLA_VFINFO_LIST */
Scott Feldman57b61082010-05-17 22:49:55 -0700790 + rtnl_port_size(dev) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
Thomas Graff8ff1822010-11-16 04:30:14 +0000791 + rtnl_link_get_size(dev) /* IFLA_LINKINFO */
792 + rtnl_link_get_af_size(dev); /* IFLA_AF_SPEC */
Thomas Graf339bf982006-11-10 14:10:15 -0800793}
794
Scott Feldman57b61082010-05-17 22:49:55 -0700795static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev)
796{
797 struct nlattr *vf_ports;
798 struct nlattr *vf_port;
799 int vf;
800 int err;
801
802 vf_ports = nla_nest_start(skb, IFLA_VF_PORTS);
803 if (!vf_ports)
804 return -EMSGSIZE;
805
806 for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) {
807 vf_port = nla_nest_start(skb, IFLA_VF_PORT);
Scott Feldman8ca94182010-05-28 03:42:18 -0700808 if (!vf_port)
809 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700810 NLA_PUT_U32(skb, IFLA_PORT_VF, vf);
811 err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb);
Scott Feldman8ca94182010-05-28 03:42:18 -0700812 if (err == -EMSGSIZE)
813 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700814 if (err) {
Scott Feldman57b61082010-05-17 22:49:55 -0700815 nla_nest_cancel(skb, vf_port);
816 continue;
817 }
818 nla_nest_end(skb, vf_port);
819 }
820
821 nla_nest_end(skb, vf_ports);
822
823 return 0;
Scott Feldman8ca94182010-05-28 03:42:18 -0700824
825nla_put_failure:
826 nla_nest_cancel(skb, vf_ports);
827 return -EMSGSIZE;
Scott Feldman57b61082010-05-17 22:49:55 -0700828}
829
830static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev)
831{
832 struct nlattr *port_self;
833 int err;
834
835 port_self = nla_nest_start(skb, IFLA_PORT_SELF);
836 if (!port_self)
837 return -EMSGSIZE;
838
839 err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb);
840 if (err) {
841 nla_nest_cancel(skb, port_self);
Scott Feldman8ca94182010-05-28 03:42:18 -0700842 return (err == -EMSGSIZE) ? err : 0;
Scott Feldman57b61082010-05-17 22:49:55 -0700843 }
844
845 nla_nest_end(skb, port_self);
846
847 return 0;
848}
849
850static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev)
851{
852 int err;
853
854 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
855 return 0;
856
857 err = rtnl_port_self_fill(skb, dev);
858 if (err)
859 return err;
860
861 if (dev_num_vf(dev->dev.parent)) {
862 err = rtnl_vf_ports_fill(skb, dev);
863 if (err)
864 return err;
865 }
866
867 return 0;
868}
869
Thomas Grafb60c5112006-08-04 23:05:34 -0700870static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -0700871 int type, u32 pid, u32 seq, u32 change,
Greg Rose115c9b82012-02-21 16:54:48 -0500872 unsigned int flags, u32 ext_filter_mask)
Thomas Grafb60c5112006-08-04 23:05:34 -0700873{
874 struct ifinfomsg *ifm;
875 struct nlmsghdr *nlh;
Eric Dumazet28172732010-07-07 14:58:56 -0700876 struct rtnl_link_stats64 temp;
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000877 const struct rtnl_link_stats64 *stats;
Thomas Graff8ff1822010-11-16 04:30:14 +0000878 struct nlattr *attr, *af_spec;
879 struct rtnl_af_ops *af_ops;
Thomas Grafb60c5112006-08-04 23:05:34 -0700880
Eric Dumazet2907c352011-05-25 07:34:04 +0000881 ASSERT_RTNL();
Thomas Grafb60c5112006-08-04 23:05:34 -0700882 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
883 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800884 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700885
886 ifm = nlmsg_data(nlh);
887 ifm->ifi_family = AF_UNSPEC;
888 ifm->__ifi_pad = 0;
889 ifm->ifi_type = dev->type;
890 ifm->ifi_index = dev->ifindex;
891 ifm->ifi_flags = dev_get_flags(dev);
892 ifm->ifi_change = change;
893
894 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
895 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
Thomas Grafb60c5112006-08-04 23:05:34 -0700896 NLA_PUT_U8(skb, IFLA_OPERSTATE,
897 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
898 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
899 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
Vlad Dogarucbda10f2011-01-13 23:38:30 +0000900 NLA_PUT_U32(skb, IFLA_GROUP, dev->group);
Thomas Grafb60c5112006-08-04 23:05:34 -0700901
902 if (dev->ifindex != dev->iflink)
903 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
904
905 if (dev->master)
906 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
907
Patrick McHardyaf356af2009-09-04 06:41:18 +0000908 if (dev->qdisc)
909 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc->ops->id);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800910
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700911 if (dev->ifalias)
912 NLA_PUT_STRING(skb, IFLA_IFALIAS, dev->ifalias);
913
Stefan Rompfb00055a2006-03-20 17:09:11 -0800914 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 struct rtnl_link_ifmap map = {
916 .mem_start = dev->mem_start,
917 .mem_end = dev->mem_end,
918 .base_addr = dev->base_addr,
919 .irq = dev->irq,
920 .dma = dev->dma,
921 .port = dev->if_port,
922 };
Thomas Grafb60c5112006-08-04 23:05:34 -0700923 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
925
926 if (dev->addr_len) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700927 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
928 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 }
930
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700931 attr = nla_reserve(skb, IFLA_STATS,
932 sizeof(struct rtnl_link_stats));
933 if (attr == NULL)
934 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Eric Dumazet28172732010-07-07 14:58:56 -0700936 stats = dev_get_stats(dev, &temp);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700937 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Jan Engelhardt10708f32010-03-11 09:57:29 +0000939 attr = nla_reserve(skb, IFLA_STATS64,
940 sizeof(struct rtnl_link_stats64));
941 if (attr == NULL)
942 goto nla_put_failure;
Jan Engelhardt10708f32010-03-11 09:57:29 +0000943 copy_rtnl_link_stats64(nla_data(attr), stats);
944
Greg Rose115c9b82012-02-21 16:54:48 -0500945 if (dev->dev.parent && (ext_filter_mask & RTEXT_FILTER_VF))
Scott Feldman57b61082010-05-17 22:49:55 -0700946 NLA_PUT_U32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent));
947
Greg Rose115c9b82012-02-21 16:54:48 -0500948 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent
949 && (ext_filter_mask & RTEXT_FILTER_VF)) {
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000950 int i;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000951
Chris Wrightc02db8c2010-05-16 01:05:45 -0700952 struct nlattr *vfinfo, *vf;
953 int num_vfs = dev_num_vf(dev->dev.parent);
954
Chris Wrightc02db8c2010-05-16 01:05:45 -0700955 vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST);
956 if (!vfinfo)
957 goto nla_put_failure;
958 for (i = 0; i < num_vfs; i++) {
959 struct ifla_vf_info ivi;
960 struct ifla_vf_mac vf_mac;
961 struct ifla_vf_vlan vf_vlan;
962 struct ifla_vf_tx_rate vf_tx_rate;
Greg Rose5f8444a2011-10-08 03:05:24 +0000963 struct ifla_vf_spoofchk vf_spoofchk;
964
965 /*
966 * Not all SR-IOV capable drivers support the
967 * spoofcheck query. Preset to -1 so the user
968 * space tool can detect that the driver didn't
969 * report anything.
970 */
971 ivi.spoofchk = -1;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000972 if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi))
973 break;
Greg Rose5f8444a2011-10-08 03:05:24 +0000974 vf_mac.vf =
975 vf_vlan.vf =
976 vf_tx_rate.vf =
977 vf_spoofchk.vf = ivi.vf;
978
Chris Wrightc02db8c2010-05-16 01:05:45 -0700979 memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac));
980 vf_vlan.vlan = ivi.vlan;
981 vf_vlan.qos = ivi.qos;
982 vf_tx_rate.rate = ivi.tx_rate;
Greg Rose5f8444a2011-10-08 03:05:24 +0000983 vf_spoofchk.setting = ivi.spoofchk;
Chris Wrightc02db8c2010-05-16 01:05:45 -0700984 vf = nla_nest_start(skb, IFLA_VF_INFO);
985 if (!vf) {
986 nla_nest_cancel(skb, vfinfo);
987 goto nla_put_failure;
988 }
989 NLA_PUT(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac);
990 NLA_PUT(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan);
Greg Rose5f8444a2011-10-08 03:05:24 +0000991 NLA_PUT(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate),
992 &vf_tx_rate);
993 NLA_PUT(skb, IFLA_VF_SPOOFCHK, sizeof(vf_spoofchk),
994 &vf_spoofchk);
Chris Wrightc02db8c2010-05-16 01:05:45 -0700995 nla_nest_end(skb, vf);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000996 }
Chris Wrightc02db8c2010-05-16 01:05:45 -0700997 nla_nest_end(skb, vfinfo);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000998 }
Scott Feldman57b61082010-05-17 22:49:55 -0700999
1000 if (rtnl_port_fill(skb, dev))
1001 goto nla_put_failure;
1002
Patrick McHardy38f7b872007-06-13 12:03:51 -07001003 if (dev->rtnl_link_ops) {
1004 if (rtnl_link_fill(skb, dev) < 0)
1005 goto nla_put_failure;
1006 }
1007
Thomas Graff8ff1822010-11-16 04:30:14 +00001008 if (!(af_spec = nla_nest_start(skb, IFLA_AF_SPEC)))
1009 goto nla_put_failure;
1010
1011 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
1012 if (af_ops->fill_link_af) {
1013 struct nlattr *af;
1014 int err;
1015
1016 if (!(af = nla_nest_start(skb, af_ops->family)))
1017 goto nla_put_failure;
1018
1019 err = af_ops->fill_link_af(skb, dev);
1020
1021 /*
1022 * Caller may return ENODATA to indicate that there
1023 * was no data to be dumped. This is not an error, it
1024 * means we should trim the attribute header and
1025 * continue.
1026 */
1027 if (err == -ENODATA)
1028 nla_nest_cancel(skb, af);
1029 else if (err < 0)
1030 goto nla_put_failure;
1031
1032 nla_nest_end(skb, af);
1033 }
1034 }
1035
1036 nla_nest_end(skb, af_spec);
1037
Thomas Grafb60c5112006-08-04 23:05:34 -07001038 return nlmsg_end(skb, nlh);
1039
1040nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08001041 nlmsg_cancel(skb, nlh);
1042 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044
Thomas Grafb60c5112006-08-04 23:05:34 -07001045static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001047 struct net *net = sock_net(skb->sk);
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001048 int h, s_h;
1049 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 struct net_device *dev;
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001051 struct hlist_head *head;
1052 struct hlist_node *node;
Greg Rose115c9b82012-02-21 16:54:48 -05001053 struct nlattr *tb[IFLA_MAX+1];
1054 u32 ext_filter_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001056 s_h = cb->args[0];
1057 s_idx = cb->args[1];
1058
Eric Dumazete67f88d2011-04-27 22:56:07 +00001059 rcu_read_lock();
Thomas Graf4e985ad2011-06-21 03:11:20 +00001060 cb->seq = net->dev_base_seq;
1061
Eric Dumazeta4b64fb2012-03-04 12:32:10 +00001062 if (nlmsg_parse(cb->nlh, sizeof(struct rtgenmsg), tb, IFLA_MAX,
1063 ifla_policy) >= 0) {
Greg Rose115c9b82012-02-21 16:54:48 -05001064
Eric Dumazeta4b64fb2012-03-04 12:32:10 +00001065 if (tb[IFLA_EXT_MASK])
1066 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
1067 }
Greg Rose115c9b82012-02-21 16:54:48 -05001068
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001069 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
1070 idx = 0;
1071 head = &net->dev_index_head[h];
Eric Dumazete67f88d2011-04-27 22:56:07 +00001072 hlist_for_each_entry_rcu(dev, node, head, index_hlist) {
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001073 if (idx < s_idx)
1074 goto cont;
1075 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
1076 NETLINK_CB(cb->skb).pid,
1077 cb->nlh->nlmsg_seq, 0,
Greg Rose115c9b82012-02-21 16:54:48 -05001078 NLM_F_MULTI,
1079 ext_filter_mask) <= 0)
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001080 goto out;
Thomas Graf4e985ad2011-06-21 03:11:20 +00001081
1082 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Pavel Emelianov7562f872007-05-03 15:13:45 -07001083cont:
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001084 idx++;
1085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001087out:
Eric Dumazete67f88d2011-04-27 22:56:07 +00001088 rcu_read_unlock();
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001089 cb->args[1] = idx;
1090 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092 return skb->len;
1093}
1094
Pavel Emelianove7199282007-08-08 22:16:38 -07001095const struct nla_policy ifla_policy[IFLA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07001096 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
Patrick McHardy38f7b872007-06-13 12:03:51 -07001097 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1098 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
Thomas Graf5176f912006-08-26 20:13:18 -07001099 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -07001100 [IFLA_MTU] = { .type = NLA_U32 },
Thomas Graf76e87302008-02-19 16:12:08 -08001101 [IFLA_LINK] = { .type = NLA_U32 },
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001102 [IFLA_MASTER] = { .type = NLA_U32 },
Thomas Grafda5e0492006-08-10 21:17:37 -07001103 [IFLA_TXQLEN] = { .type = NLA_U32 },
1104 [IFLA_WEIGHT] = { .type = NLA_U32 },
1105 [IFLA_OPERSTATE] = { .type = NLA_U8 },
1106 [IFLA_LINKMODE] = { .type = NLA_U8 },
Thomas Graf76e87302008-02-19 16:12:08 -08001107 [IFLA_LINKINFO] = { .type = NLA_NESTED },
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001108 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001109 [IFLA_NET_NS_FD] = { .type = NLA_U32 },
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001110 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
Chris Wrightc02db8c2010-05-16 01:05:45 -07001111 [IFLA_VFINFO_LIST] = {. type = NLA_NESTED },
Scott Feldman57b61082010-05-17 22:49:55 -07001112 [IFLA_VF_PORTS] = { .type = NLA_NESTED },
1113 [IFLA_PORT_SELF] = { .type = NLA_NESTED },
Thomas Graff8ff1822010-11-16 04:30:14 +00001114 [IFLA_AF_SPEC] = { .type = NLA_NESTED },
Greg Rose115c9b82012-02-21 16:54:48 -05001115 [IFLA_EXT_MASK] = { .type = NLA_U32 },
Thomas Grafda5e0492006-08-10 21:17:37 -07001116};
Eric Dumazete0d087a2009-11-07 01:26:17 -08001117EXPORT_SYMBOL(ifla_policy);
Thomas Grafda5e0492006-08-10 21:17:37 -07001118
Patrick McHardy38f7b872007-06-13 12:03:51 -07001119static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
1120 [IFLA_INFO_KIND] = { .type = NLA_STRING },
1121 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
1122};
1123
Chris Wrightc02db8c2010-05-16 01:05:45 -07001124static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = {
1125 [IFLA_VF_INFO] = { .type = NLA_NESTED },
1126};
1127
1128static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
1129 [IFLA_VF_MAC] = { .type = NLA_BINARY,
1130 .len = sizeof(struct ifla_vf_mac) },
1131 [IFLA_VF_VLAN] = { .type = NLA_BINARY,
1132 .len = sizeof(struct ifla_vf_vlan) },
1133 [IFLA_VF_TX_RATE] = { .type = NLA_BINARY,
1134 .len = sizeof(struct ifla_vf_tx_rate) },
Greg Rose48752f62012-02-08 00:45:00 +00001135 [IFLA_VF_SPOOFCHK] = { .type = NLA_BINARY,
1136 .len = sizeof(struct ifla_vf_spoofchk) },
Chris Wrightc02db8c2010-05-16 01:05:45 -07001137};
1138
Scott Feldman57b61082010-05-17 22:49:55 -07001139static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = {
1140 [IFLA_PORT_VF] = { .type = NLA_U32 },
1141 [IFLA_PORT_PROFILE] = { .type = NLA_STRING,
1142 .len = PORT_PROFILE_MAX },
1143 [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY,
1144 .len = sizeof(struct ifla_port_vsi)},
1145 [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY,
1146 .len = PORT_UUID_MAX },
1147 [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING,
1148 .len = PORT_UUID_MAX },
1149 [IFLA_PORT_REQUEST] = { .type = NLA_U8, },
1150 [IFLA_PORT_RESPONSE] = { .type = NLA_U16, },
1151};
1152
Eric W. Biederman81adee42009-11-08 00:53:51 -08001153struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
1154{
1155 struct net *net;
1156 /* Examine the link attributes and figure out which
1157 * network namespace we are talking about.
1158 */
1159 if (tb[IFLA_NET_NS_PID])
1160 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001161 else if (tb[IFLA_NET_NS_FD])
1162 net = get_net_ns_by_fd(nla_get_u32(tb[IFLA_NET_NS_FD]));
Eric W. Biederman81adee42009-11-08 00:53:51 -08001163 else
1164 net = get_net(src_net);
1165 return net;
1166}
1167EXPORT_SYMBOL(rtnl_link_get_net);
1168
Thomas Graf1840bb12008-02-23 19:54:36 -08001169static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
1170{
1171 if (dev) {
1172 if (tb[IFLA_ADDRESS] &&
1173 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
1174 return -EINVAL;
1175
1176 if (tb[IFLA_BROADCAST] &&
1177 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
1178 return -EINVAL;
1179 }
1180
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001181 if (tb[IFLA_AF_SPEC]) {
1182 struct nlattr *af;
1183 int rem, err;
1184
1185 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1186 const struct rtnl_af_ops *af_ops;
1187
1188 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
1189 return -EAFNOSUPPORT;
1190
1191 if (!af_ops->set_link_af)
1192 return -EOPNOTSUPP;
1193
1194 if (af_ops->validate_link_af) {
Kurt Van Dijck6d3a9a62011-01-26 04:55:24 +00001195 err = af_ops->validate_link_af(dev, af);
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001196 if (err < 0)
1197 return err;
1198 }
1199 }
1200 }
1201
Thomas Graf1840bb12008-02-23 19:54:36 -08001202 return 0;
1203}
1204
Chris Wrightc02db8c2010-05-16 01:05:45 -07001205static int do_setvfinfo(struct net_device *dev, struct nlattr *attr)
1206{
1207 int rem, err = -EINVAL;
1208 struct nlattr *vf;
1209 const struct net_device_ops *ops = dev->netdev_ops;
1210
1211 nla_for_each_nested(vf, attr, rem) {
1212 switch (nla_type(vf)) {
1213 case IFLA_VF_MAC: {
1214 struct ifla_vf_mac *ivm;
1215 ivm = nla_data(vf);
1216 err = -EOPNOTSUPP;
1217 if (ops->ndo_set_vf_mac)
1218 err = ops->ndo_set_vf_mac(dev, ivm->vf,
1219 ivm->mac);
1220 break;
1221 }
1222 case IFLA_VF_VLAN: {
1223 struct ifla_vf_vlan *ivv;
1224 ivv = nla_data(vf);
1225 err = -EOPNOTSUPP;
1226 if (ops->ndo_set_vf_vlan)
1227 err = ops->ndo_set_vf_vlan(dev, ivv->vf,
1228 ivv->vlan,
1229 ivv->qos);
1230 break;
1231 }
1232 case IFLA_VF_TX_RATE: {
1233 struct ifla_vf_tx_rate *ivt;
1234 ivt = nla_data(vf);
1235 err = -EOPNOTSUPP;
1236 if (ops->ndo_set_vf_tx_rate)
1237 err = ops->ndo_set_vf_tx_rate(dev, ivt->vf,
1238 ivt->rate);
1239 break;
1240 }
Greg Rose5f8444a2011-10-08 03:05:24 +00001241 case IFLA_VF_SPOOFCHK: {
1242 struct ifla_vf_spoofchk *ivs;
1243 ivs = nla_data(vf);
1244 err = -EOPNOTSUPP;
1245 if (ops->ndo_set_vf_spoofchk)
1246 err = ops->ndo_set_vf_spoofchk(dev, ivs->vf,
1247 ivs->setting);
1248 break;
1249 }
Chris Wrightc02db8c2010-05-16 01:05:45 -07001250 default:
1251 err = -EINVAL;
1252 break;
1253 }
1254 if (err)
1255 break;
1256 }
1257 return err;
1258}
1259
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001260static int do_set_master(struct net_device *dev, int ifindex)
1261{
1262 struct net_device *master_dev;
1263 const struct net_device_ops *ops;
1264 int err;
1265
1266 if (dev->master) {
1267 if (dev->master->ifindex == ifindex)
1268 return 0;
1269 ops = dev->master->netdev_ops;
1270 if (ops->ndo_del_slave) {
1271 err = ops->ndo_del_slave(dev->master, dev);
1272 if (err)
1273 return err;
1274 } else {
1275 return -EOPNOTSUPP;
1276 }
1277 }
1278
1279 if (ifindex) {
1280 master_dev = __dev_get_by_index(dev_net(dev), ifindex);
1281 if (!master_dev)
1282 return -EINVAL;
1283 ops = master_dev->netdev_ops;
1284 if (ops->ndo_add_slave) {
1285 err = ops->ndo_add_slave(master_dev, dev);
1286 if (err)
1287 return err;
1288 } else {
1289 return -EOPNOTSUPP;
1290 }
1291 }
1292 return 0;
1293}
1294
Patrick McHardy0157f602007-06-13 12:03:36 -07001295static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
Patrick McHardy38f7b872007-06-13 12:03:51 -07001296 struct nlattr **tb, char *ifname, int modified)
Patrick McHardy0157f602007-06-13 12:03:36 -07001297{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001298 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001299 int send_addr_notify = 0;
Patrick McHardy0157f602007-06-13 12:03:36 -07001300 int err;
1301
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001302 if (tb[IFLA_NET_NS_PID] || tb[IFLA_NET_NS_FD]) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001303 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001304 if (IS_ERR(net)) {
1305 err = PTR_ERR(net);
1306 goto errout;
1307 }
1308 err = dev_change_net_namespace(dev, net, ifname);
1309 put_net(net);
1310 if (err)
1311 goto errout;
1312 modified = 1;
1313 }
1314
Patrick McHardy0157f602007-06-13 12:03:36 -07001315 if (tb[IFLA_MAP]) {
1316 struct rtnl_link_ifmap *u_map;
1317 struct ifmap k_map;
1318
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001319 if (!ops->ndo_set_config) {
Patrick McHardy0157f602007-06-13 12:03:36 -07001320 err = -EOPNOTSUPP;
1321 goto errout;
1322 }
1323
1324 if (!netif_device_present(dev)) {
1325 err = -ENODEV;
1326 goto errout;
1327 }
1328
1329 u_map = nla_data(tb[IFLA_MAP]);
1330 k_map.mem_start = (unsigned long) u_map->mem_start;
1331 k_map.mem_end = (unsigned long) u_map->mem_end;
1332 k_map.base_addr = (unsigned short) u_map->base_addr;
1333 k_map.irq = (unsigned char) u_map->irq;
1334 k_map.dma = (unsigned char) u_map->dma;
1335 k_map.port = (unsigned char) u_map->port;
1336
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001337 err = ops->ndo_set_config(dev, &k_map);
Patrick McHardy0157f602007-06-13 12:03:36 -07001338 if (err < 0)
1339 goto errout;
1340
1341 modified = 1;
1342 }
1343
1344 if (tb[IFLA_ADDRESS]) {
1345 struct sockaddr *sa;
1346 int len;
1347
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001348 if (!ops->ndo_set_mac_address) {
Patrick McHardy0157f602007-06-13 12:03:36 -07001349 err = -EOPNOTSUPP;
1350 goto errout;
1351 }
1352
1353 if (!netif_device_present(dev)) {
1354 err = -ENODEV;
1355 goto errout;
1356 }
1357
1358 len = sizeof(sa_family_t) + dev->addr_len;
1359 sa = kmalloc(len, GFP_KERNEL);
1360 if (!sa) {
1361 err = -ENOMEM;
1362 goto errout;
1363 }
1364 sa->sa_family = dev->type;
1365 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
1366 dev->addr_len);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001367 err = ops->ndo_set_mac_address(dev, sa);
Patrick McHardy0157f602007-06-13 12:03:36 -07001368 kfree(sa);
1369 if (err)
1370 goto errout;
1371 send_addr_notify = 1;
1372 modified = 1;
1373 }
1374
1375 if (tb[IFLA_MTU]) {
1376 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1377 if (err < 0)
1378 goto errout;
1379 modified = 1;
1380 }
1381
Vlad Dogarucbda10f2011-01-13 23:38:30 +00001382 if (tb[IFLA_GROUP]) {
1383 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
1384 modified = 1;
1385 }
1386
Patrick McHardy0157f602007-06-13 12:03:36 -07001387 /*
1388 * Interface selected by interface index but interface
1389 * name provided implies that a name change has been
1390 * requested.
1391 */
1392 if (ifm->ifi_index > 0 && ifname[0]) {
1393 err = dev_change_name(dev, ifname);
1394 if (err < 0)
1395 goto errout;
1396 modified = 1;
1397 }
1398
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001399 if (tb[IFLA_IFALIAS]) {
1400 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
1401 nla_len(tb[IFLA_IFALIAS]));
1402 if (err < 0)
1403 goto errout;
1404 modified = 1;
1405 }
1406
Patrick McHardy0157f602007-06-13 12:03:36 -07001407 if (tb[IFLA_BROADCAST]) {
1408 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
1409 send_addr_notify = 1;
1410 }
1411
1412 if (ifm->ifi_flags || ifm->ifi_change) {
Patrick McHardy3729d502010-02-26 06:34:54 +00001413 err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
Johannes Berg5f9021c2008-11-16 23:20:31 -08001414 if (err < 0)
1415 goto errout;
Patrick McHardy0157f602007-06-13 12:03:36 -07001416 }
1417
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001418 if (tb[IFLA_MASTER]) {
1419 err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER]));
1420 if (err)
1421 goto errout;
1422 modified = 1;
1423 }
1424
David S. Miller93b2d4a2008-02-17 18:35:07 -08001425 if (tb[IFLA_TXQLEN])
1426 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
Patrick McHardy0157f602007-06-13 12:03:36 -07001427
Patrick McHardy0157f602007-06-13 12:03:36 -07001428 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001429 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Patrick McHardy0157f602007-06-13 12:03:36 -07001430
1431 if (tb[IFLA_LINKMODE]) {
David S. Miller93b2d4a2008-02-17 18:35:07 -08001432 write_lock_bh(&dev_base_lock);
1433 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1434 write_unlock_bh(&dev_base_lock);
Patrick McHardy0157f602007-06-13 12:03:36 -07001435 }
1436
Chris Wrightc02db8c2010-05-16 01:05:45 -07001437 if (tb[IFLA_VFINFO_LIST]) {
1438 struct nlattr *attr;
1439 int rem;
1440 nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) {
David Howells253683b2010-05-21 02:25:27 +00001441 if (nla_type(attr) != IFLA_VF_INFO) {
1442 err = -EINVAL;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001443 goto errout;
David Howells253683b2010-05-21 02:25:27 +00001444 }
Chris Wrightc02db8c2010-05-16 01:05:45 -07001445 err = do_setvfinfo(dev, attr);
1446 if (err < 0)
1447 goto errout;
1448 modified = 1;
1449 }
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001450 }
Patrick McHardy0157f602007-06-13 12:03:36 -07001451 err = 0;
1452
Scott Feldman57b61082010-05-17 22:49:55 -07001453 if (tb[IFLA_VF_PORTS]) {
1454 struct nlattr *port[IFLA_PORT_MAX+1];
1455 struct nlattr *attr;
1456 int vf;
1457 int rem;
1458
1459 err = -EOPNOTSUPP;
1460 if (!ops->ndo_set_vf_port)
1461 goto errout;
1462
1463 nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) {
1464 if (nla_type(attr) != IFLA_VF_PORT)
1465 continue;
1466 err = nla_parse_nested(port, IFLA_PORT_MAX,
1467 attr, ifla_port_policy);
1468 if (err < 0)
1469 goto errout;
1470 if (!port[IFLA_PORT_VF]) {
1471 err = -EOPNOTSUPP;
1472 goto errout;
1473 }
1474 vf = nla_get_u32(port[IFLA_PORT_VF]);
1475 err = ops->ndo_set_vf_port(dev, vf, port);
1476 if (err < 0)
1477 goto errout;
1478 modified = 1;
1479 }
1480 }
1481 err = 0;
1482
1483 if (tb[IFLA_PORT_SELF]) {
1484 struct nlattr *port[IFLA_PORT_MAX+1];
1485
1486 err = nla_parse_nested(port, IFLA_PORT_MAX,
1487 tb[IFLA_PORT_SELF], ifla_port_policy);
1488 if (err < 0)
1489 goto errout;
1490
1491 err = -EOPNOTSUPP;
1492 if (ops->ndo_set_vf_port)
1493 err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port);
1494 if (err < 0)
1495 goto errout;
1496 modified = 1;
1497 }
Thomas Graff8ff1822010-11-16 04:30:14 +00001498
1499 if (tb[IFLA_AF_SPEC]) {
1500 struct nlattr *af;
1501 int rem;
1502
1503 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1504 const struct rtnl_af_ops *af_ops;
1505
1506 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001507 BUG();
Thomas Graff8ff1822010-11-16 04:30:14 +00001508
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001509 err = af_ops->set_link_af(dev, af);
Thomas Graff8ff1822010-11-16 04:30:14 +00001510 if (err < 0)
1511 goto errout;
1512
1513 modified = 1;
1514 }
1515 }
Scott Feldman57b61082010-05-17 22:49:55 -07001516 err = 0;
1517
Patrick McHardy0157f602007-06-13 12:03:36 -07001518errout:
1519 if (err < 0 && modified && net_ratelimit())
1520 printk(KERN_WARNING "A link change request failed with "
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001521 "some changes committed already. Interface %s may "
Patrick McHardy0157f602007-06-13 12:03:36 -07001522 "have been left with an inconsistent configuration, "
1523 "please check.\n", dev->name);
1524
1525 if (send_addr_notify)
1526 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Stefan Gulaf18da142012-01-26 11:01:06 +00001527
Patrick McHardy0157f602007-06-13 12:03:36 -07001528 return err;
1529}
1530
Thomas Grafda5e0492006-08-10 21:17:37 -07001531static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001533 struct net *net = sock_net(skb->sk);
Thomas Grafda5e0492006-08-10 21:17:37 -07001534 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -07001536 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -07001537 struct nlattr *tb[IFLA_MAX+1];
1538 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Thomas Grafda5e0492006-08-10 21:17:37 -07001540 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1541 if (err < 0)
1542 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Thomas Graf5176f912006-08-26 20:13:18 -07001544 if (tb[IFLA_IFNAME])
1545 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -07001546 else
1547 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -07001550 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -07001551 if (ifm->ifi_index > 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001552 dev = __dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -07001553 else if (tb[IFLA_IFNAME])
Eric Dumazeta3d12892009-10-21 10:59:31 +00001554 dev = __dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -07001555 else
1556 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Thomas Grafda5e0492006-08-10 21:17:37 -07001558 if (dev == NULL) {
1559 err = -ENODEV;
1560 goto errout;
1561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Eric Dumazete0d087a2009-11-07 01:26:17 -08001563 err = validate_linkmsg(dev, tb);
1564 if (err < 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001565 goto errout;
Thomas Grafda5e0492006-08-10 21:17:37 -07001566
Patrick McHardy38f7b872007-06-13 12:03:51 -07001567 err = do_setlink(dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -07001568errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 return err;
1570}
1571
Patrick McHardy38f7b872007-06-13 12:03:51 -07001572static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1573{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001574 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001575 const struct rtnl_link_ops *ops;
1576 struct net_device *dev;
1577 struct ifinfomsg *ifm;
1578 char ifname[IFNAMSIZ];
1579 struct nlattr *tb[IFLA_MAX+1];
1580 int err;
Eric Dumazet226bd342011-05-08 23:17:57 +00001581 LIST_HEAD(list_kill);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001582
1583 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1584 if (err < 0)
1585 return err;
1586
1587 if (tb[IFLA_IFNAME])
1588 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1589
1590 ifm = nlmsg_data(nlh);
1591 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001592 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001593 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001594 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001595 else
1596 return -EINVAL;
1597
1598 if (!dev)
1599 return -ENODEV;
1600
1601 ops = dev->rtnl_link_ops;
1602 if (!ops)
1603 return -EOPNOTSUPP;
1604
Eric Dumazet226bd342011-05-08 23:17:57 +00001605 ops->dellink(dev, &list_kill);
1606 unregister_netdevice_many(&list_kill);
1607 list_del(&list_kill);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001608 return 0;
1609}
1610
Patrick McHardy3729d502010-02-26 06:34:54 +00001611int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
1612{
1613 unsigned int old_flags;
1614 int err;
1615
1616 old_flags = dev->flags;
1617 if (ifm && (ifm->ifi_flags || ifm->ifi_change)) {
1618 err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
1619 if (err < 0)
1620 return err;
1621 }
1622
1623 dev->rtnl_link_state = RTNL_LINK_INITIALIZED;
1624 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1625
1626 __dev_notify_flags(dev, old_flags);
1627 return 0;
1628}
1629EXPORT_SYMBOL(rtnl_configure_link);
1630
Eric W. Biederman81adee42009-11-08 00:53:51 -08001631struct net_device *rtnl_create_link(struct net *src_net, struct net *net,
1632 char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[])
Pavel Emelianove7199282007-08-08 22:16:38 -07001633{
1634 int err;
1635 struct net_device *dev;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001636 unsigned int num_queues = 1;
1637 unsigned int real_num_queues = 1;
Pavel Emelianove7199282007-08-08 22:16:38 -07001638
Eric Dumazet2e59af32009-09-02 18:03:00 -07001639 if (ops->get_tx_queues) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001640 err = ops->get_tx_queues(src_net, tb, &num_queues,
Eric Dumazete0d087a2009-11-07 01:26:17 -08001641 &real_num_queues);
Eric Dumazet2e59af32009-09-02 18:03:00 -07001642 if (err)
1643 goto err;
1644 }
Pavel Emelianove7199282007-08-08 22:16:38 -07001645 err = -ENOMEM;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001646 dev = alloc_netdev_mq(ops->priv_size, ifname, ops->setup, num_queues);
Pavel Emelianove7199282007-08-08 22:16:38 -07001647 if (!dev)
1648 goto err;
1649
Eric W. Biederman81adee42009-11-08 00:53:51 -08001650 dev_net_set(dev, net);
1651 dev->rtnl_link_ops = ops;
Patrick McHardy3729d502010-02-26 06:34:54 +00001652 dev->rtnl_link_state = RTNL_LINK_INITIALIZING;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001653
Pavel Emelianove7199282007-08-08 22:16:38 -07001654 if (tb[IFLA_MTU])
1655 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
1656 if (tb[IFLA_ADDRESS])
1657 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1658 nla_len(tb[IFLA_ADDRESS]));
1659 if (tb[IFLA_BROADCAST])
1660 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1661 nla_len(tb[IFLA_BROADCAST]));
1662 if (tb[IFLA_TXQLEN])
1663 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1664 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001665 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001666 if (tb[IFLA_LINKMODE])
1667 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
Patrick McHardyffa934f2011-01-20 03:00:42 +00001668 if (tb[IFLA_GROUP])
1669 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001670
1671 return dev;
1672
Pavel Emelianove7199282007-08-08 22:16:38 -07001673err:
1674 return ERR_PTR(err);
1675}
Eric Dumazete0d087a2009-11-07 01:26:17 -08001676EXPORT_SYMBOL(rtnl_create_link);
Pavel Emelianove7199282007-08-08 22:16:38 -07001677
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001678static int rtnl_group_changelink(struct net *net, int group,
1679 struct ifinfomsg *ifm,
1680 struct nlattr **tb)
1681{
1682 struct net_device *dev;
1683 int err;
1684
1685 for_each_netdev(net, dev) {
1686 if (dev->group == group) {
1687 err = do_setlink(dev, ifm, tb, NULL, 0);
1688 if (err < 0)
1689 return err;
1690 }
1691 }
1692
1693 return 0;
1694}
1695
Patrick McHardy38f7b872007-06-13 12:03:51 -07001696static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1697{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001698 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001699 const struct rtnl_link_ops *ops;
1700 struct net_device *dev;
1701 struct ifinfomsg *ifm;
1702 char kind[MODULE_NAME_LEN];
1703 char ifname[IFNAMSIZ];
1704 struct nlattr *tb[IFLA_MAX+1];
1705 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1706 int err;
1707
Johannes Berg95a5afc2008-10-16 15:24:51 -07001708#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001709replay:
Thomas Graf8072f082007-07-31 14:13:50 -07001710#endif
Patrick McHardy38f7b872007-06-13 12:03:51 -07001711 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1712 if (err < 0)
1713 return err;
1714
1715 if (tb[IFLA_IFNAME])
1716 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1717 else
1718 ifname[0] = '\0';
1719
1720 ifm = nlmsg_data(nlh);
1721 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001722 dev = __dev_get_by_index(net, ifm->ifi_index);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001723 else {
1724 if (ifname[0])
1725 dev = __dev_get_by_name(net, ifname);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001726 else
1727 dev = NULL;
1728 }
Patrick McHardy38f7b872007-06-13 12:03:51 -07001729
Eric Dumazete0d087a2009-11-07 01:26:17 -08001730 err = validate_linkmsg(dev, tb);
1731 if (err < 0)
Thomas Graf1840bb12008-02-23 19:54:36 -08001732 return err;
1733
Patrick McHardy38f7b872007-06-13 12:03:51 -07001734 if (tb[IFLA_LINKINFO]) {
1735 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1736 tb[IFLA_LINKINFO], ifla_info_policy);
1737 if (err < 0)
1738 return err;
1739 } else
1740 memset(linkinfo, 0, sizeof(linkinfo));
1741
1742 if (linkinfo[IFLA_INFO_KIND]) {
1743 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1744 ops = rtnl_link_ops_get(kind);
1745 } else {
1746 kind[0] = '\0';
1747 ops = NULL;
1748 }
1749
1750 if (1) {
1751 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001752 struct net *dest_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001753
1754 if (ops) {
1755 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1756 err = nla_parse_nested(attr, ops->maxtype,
1757 linkinfo[IFLA_INFO_DATA],
1758 ops->policy);
1759 if (err < 0)
1760 return err;
1761 data = attr;
1762 }
1763 if (ops->validate) {
1764 err = ops->validate(tb, data);
1765 if (err < 0)
1766 return err;
1767 }
1768 }
1769
1770 if (dev) {
1771 int modified = 0;
1772
1773 if (nlh->nlmsg_flags & NLM_F_EXCL)
1774 return -EEXIST;
1775 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1776 return -EOPNOTSUPP;
1777
1778 if (linkinfo[IFLA_INFO_DATA]) {
1779 if (!ops || ops != dev->rtnl_link_ops ||
1780 !ops->changelink)
1781 return -EOPNOTSUPP;
1782
1783 err = ops->changelink(dev, tb, data);
1784 if (err < 0)
1785 return err;
1786 modified = 1;
1787 }
1788
1789 return do_setlink(dev, ifm, tb, ifname, modified);
1790 }
1791
Patrick McHardyffa934f2011-01-20 03:00:42 +00001792 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1793 if (ifm->ifi_index == 0 && tb[IFLA_GROUP])
1794 return rtnl_group_changelink(net,
1795 nla_get_u32(tb[IFLA_GROUP]),
1796 ifm, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001797 return -ENODEV;
Patrick McHardyffa934f2011-01-20 03:00:42 +00001798 }
Patrick McHardy38f7b872007-06-13 12:03:51 -07001799
Patrick McHardy3729d502010-02-26 06:34:54 +00001800 if (ifm->ifi_index)
Patrick McHardy38f7b872007-06-13 12:03:51 -07001801 return -EOPNOTSUPP;
Patrick McHardy0e068772007-07-11 19:42:31 -07001802 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
Patrick McHardy38f7b872007-06-13 12:03:51 -07001803 return -EOPNOTSUPP;
1804
1805 if (!ops) {
Johannes Berg95a5afc2008-10-16 15:24:51 -07001806#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001807 if (kind[0]) {
1808 __rtnl_unlock();
1809 request_module("rtnl-link-%s", kind);
1810 rtnl_lock();
1811 ops = rtnl_link_ops_get(kind);
1812 if (ops)
1813 goto replay;
1814 }
1815#endif
1816 return -EOPNOTSUPP;
1817 }
1818
1819 if (!ifname[0])
1820 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001821
Eric W. Biederman81adee42009-11-08 00:53:51 -08001822 dest_net = rtnl_link_get_net(net, tb);
Eric W. Biederman13ad1772011-01-29 14:57:22 +00001823 if (IS_ERR(dest_net))
1824 return PTR_ERR(dest_net);
1825
Eric W. Biederman81adee42009-11-08 00:53:51 -08001826 dev = rtnl_create_link(net, dest_net, ifname, ops, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001827
Pavel Emelianove7199282007-08-08 22:16:38 -07001828 if (IS_ERR(dev))
1829 err = PTR_ERR(dev);
1830 else if (ops->newlink)
Eric W. Biederman81adee42009-11-08 00:53:51 -08001831 err = ops->newlink(net, dev, tb, data);
Patrick McHardy2d85cba2007-07-11 19:42:13 -07001832 else
1833 err = register_netdevice(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001834
1835 if (err < 0 && !IS_ERR(dev))
Patrick McHardy38f7b872007-06-13 12:03:51 -07001836 free_netdev(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001837 if (err < 0)
Patrick McHardy3729d502010-02-26 06:34:54 +00001838 goto out;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001839
Patrick McHardy3729d502010-02-26 06:34:54 +00001840 err = rtnl_configure_link(dev, ifm);
1841 if (err < 0)
1842 unregister_netdevice(dev);
1843out:
Eric W. Biederman81adee42009-11-08 00:53:51 -08001844 put_net(dest_net);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001845 return err;
1846 }
1847}
1848
Thomas Grafb60c5112006-08-04 23:05:34 -07001849static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001850{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001851 struct net *net = sock_net(skb->sk);
Thomas Grafb60c5112006-08-04 23:05:34 -07001852 struct ifinfomsg *ifm;
Eric Dumazeta3d12892009-10-21 10:59:31 +00001853 char ifname[IFNAMSIZ];
Thomas Grafb60c5112006-08-04 23:05:34 -07001854 struct nlattr *tb[IFLA_MAX+1];
1855 struct net_device *dev = NULL;
1856 struct sk_buff *nskb;
Thomas Graf339bf982006-11-10 14:10:15 -08001857 int err;
Greg Rose115c9b82012-02-21 16:54:48 -05001858 u32 ext_filter_mask = 0;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001859
Thomas Grafb60c5112006-08-04 23:05:34 -07001860 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1861 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07001862 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07001863
Eric Dumazeta3d12892009-10-21 10:59:31 +00001864 if (tb[IFLA_IFNAME])
1865 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1866
Greg Rose115c9b82012-02-21 16:54:48 -05001867 if (tb[IFLA_EXT_MASK])
1868 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
1869
Thomas Grafb60c5112006-08-04 23:05:34 -07001870 ifm = nlmsg_data(nlh);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001871 if (ifm->ifi_index > 0)
1872 dev = __dev_get_by_index(net, ifm->ifi_index);
1873 else if (tb[IFLA_IFNAME])
1874 dev = __dev_get_by_name(net, ifname);
1875 else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001876 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07001877
Eric Dumazeta3d12892009-10-21 10:59:31 +00001878 if (dev == NULL)
1879 return -ENODEV;
1880
Greg Rose115c9b82012-02-21 16:54:48 -05001881 nskb = nlmsg_new(if_nlmsg_size(dev, ext_filter_mask), GFP_KERNEL);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001882 if (nskb == NULL)
1883 return -ENOBUFS;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001884
Patrick McHardy575c3e22007-05-22 17:00:49 -07001885 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
Greg Rose115c9b82012-02-21 16:54:48 -05001886 nlh->nlmsg_seq, 0, 0, ext_filter_mask);
Patrick McHardy26932562007-01-31 23:16:40 -08001887 if (err < 0) {
1888 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1889 WARN_ON(err == -EMSGSIZE);
1890 kfree_skb(nskb);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001891 } else
1892 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid);
Thomas Grafb60c5112006-08-04 23:05:34 -07001893
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001894 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001895}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001896
Greg Rose115c9b82012-02-21 16:54:48 -05001897static u16 rtnl_calcit(struct sk_buff *skb, struct nlmsghdr *nlh)
Greg Rosec7ac8672011-06-10 01:27:09 +00001898{
Greg Rose115c9b82012-02-21 16:54:48 -05001899 struct net *net = sock_net(skb->sk);
1900 struct net_device *dev;
1901 struct nlattr *tb[IFLA_MAX+1];
1902 u32 ext_filter_mask = 0;
1903 u16 min_ifinfo_dump_size = 0;
1904
Eric Dumazeta4b64fb2012-03-04 12:32:10 +00001905 if (nlmsg_parse(nlh, sizeof(struct rtgenmsg), tb, IFLA_MAX,
1906 ifla_policy) >= 0) {
1907 if (tb[IFLA_EXT_MASK])
1908 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
1909 }
Greg Rose115c9b82012-02-21 16:54:48 -05001910
1911 if (!ext_filter_mask)
1912 return NLMSG_GOODSIZE;
1913 /*
1914 * traverse the list of net devices and compute the minimum
1915 * buffer size based upon the filter mask.
1916 */
1917 list_for_each_entry(dev, &net->dev_base_head, dev_list) {
1918 min_ifinfo_dump_size = max_t(u16, min_ifinfo_dump_size,
1919 if_nlmsg_size(dev,
1920 ext_filter_mask));
1921 }
1922
Greg Rosec7ac8672011-06-10 01:27:09 +00001923 return min_ifinfo_dump_size;
1924}
1925
Adrian Bunk42bad1d2007-04-26 00:57:41 -07001926static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
1928 int idx;
1929 int s_idx = cb->family;
1930
1931 if (s_idx == 0)
1932 s_idx = 1;
Patrick McHardy25239ce2010-04-26 16:02:05 +02001933 for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 int type = cb->nlh->nlmsg_type-RTM_BASE;
1935 if (idx < s_idx || idx == PF_PACKET)
1936 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07001937 if (rtnl_msg_handlers[idx] == NULL ||
1938 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 continue;
1940 if (idx > s_idx)
1941 memset(&cb->args[0], 0, sizeof(cb->args));
Thomas Grafe2849862007-03-22 11:48:11 -07001942 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 break;
1944 }
1945 cb->family = idx;
1946
1947 return skb->len;
1948}
1949
1950void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1951{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001952 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001954 int err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00001955 size_t if_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Greg Rose115c9b82012-02-21 16:54:48 -05001957 skb = nlmsg_new((if_info_size = if_nlmsg_size(dev, 0)), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001958 if (skb == NULL)
1959 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Greg Rose115c9b82012-02-21 16:54:48 -05001961 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001962 if (err < 0) {
1963 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1964 WARN_ON(err == -EMSGSIZE);
1965 kfree_skb(skb);
1966 goto errout;
1967 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001968 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1969 return;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001970errout:
1971 if (err < 0)
Eric W. Biederman4b3da702007-11-19 22:27:40 -08001972 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973}
1974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975/* Protected by RTNL sempahore. */
1976static struct rtattr **rta_buf;
1977static int rtattr_max;
1978
1979/* Process one rtnetlink message. */
1980
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001981static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001983 struct net *net = sock_net(skb->sk);
Thomas Grafe2849862007-03-22 11:48:11 -07001984 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 int sz_idx, kind;
1986 int min_len;
1987 int family;
1988 int type;
Eric Dumazet2907c352011-05-25 07:34:04 +00001989 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07001993 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995 type -= RTM_BASE;
1996
1997 /* All the messages must have at least 1 byte length */
1998 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1999 return 0;
2000
Eric Dumazete0d087a2009-11-07 01:26:17 -08002001 family = ((struct rtgenmsg *)NLMSG_DATA(nlh))->rtgen_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 sz_idx = type>>2;
2003 kind = type&3;
2004
Eric Parisfd778462012-01-03 12:25:16 -05002005 if (kind != 2 && !capable(CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002006 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
David S. Millerb8f3ab42011-01-18 12:40:38 -08002008 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002009 struct sock *rtnl;
Thomas Grafe2849862007-03-22 11:48:11 -07002010 rtnl_dumpit_func dumpit;
Greg Rosec7ac8672011-06-10 01:27:09 +00002011 rtnl_calcit_func calcit;
2012 u16 min_dump_alloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Thomas Grafe2849862007-03-22 11:48:11 -07002014 dumpit = rtnl_get_dumpit(family, type);
2015 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07002016 return -EOPNOTSUPP;
Greg Rosec7ac8672011-06-10 01:27:09 +00002017 calcit = rtnl_get_calcit(family, type);
2018 if (calcit)
Greg Rose115c9b82012-02-21 16:54:48 -05002019 min_dump_alloc = calcit(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Eric Dumazet2907c352011-05-25 07:34:04 +00002021 __rtnl_unlock();
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002022 rtnl = net->rtnl;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002023 {
2024 struct netlink_dump_control c = {
2025 .dump = dumpit,
2026 .min_dump_alloc = min_dump_alloc,
2027 };
2028 err = netlink_dump_start(rtnl, skb, nlh, &c);
2029 }
Eric Dumazet2907c352011-05-25 07:34:04 +00002030 rtnl_lock();
2031 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 }
2033
2034 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
2035
2036 min_len = rtm_min[sz_idx];
2037 if (nlh->nlmsg_len < min_len)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002038 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
2040 if (nlh->nlmsg_len > min_len) {
2041 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
Eric Dumazete0d087a2009-11-07 01:26:17 -08002042 struct rtattr *attr = (void *)nlh + NLMSG_ALIGN(min_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044 while (RTA_OK(attr, attrlen)) {
2045 unsigned flavor = attr->rta_type;
2046 if (flavor) {
2047 if (flavor > rta_max[sz_idx])
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002048 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 rta_buf[flavor-1] = attr;
2050 }
2051 attr = RTA_NEXT(attr, attrlen);
2052 }
2053 }
2054
Thomas Grafe2849862007-03-22 11:48:11 -07002055 doit = rtnl_get_doit(family, type);
2056 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07002057 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002059 return doit(skb, nlh, (void *)&rta_buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060}
2061
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002062static void rtnetlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002064 rtnl_lock();
2065 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
2066 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067}
2068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
2070{
2071 struct net_device *dev = ptr;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002072
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 case NETDEV_UP:
2075 case NETDEV_DOWN:
Patrick McHardy10de05a2010-02-26 06:34:50 +00002076 case NETDEV_PRE_UP:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00002077 case NETDEV_POST_INIT:
2078 case NETDEV_REGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 case NETDEV_CHANGE:
Patrick McHardy755d0e72010-03-19 04:42:24 +00002080 case NETDEV_PRE_TYPE_CHANGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 case NETDEV_GOING_DOWN:
Patrick McHardya2835762010-02-26 06:34:51 +00002082 case NETDEV_UNREGISTER:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00002083 case NETDEV_UNREGISTER_BATCH:
Amerigo Wangac3d3f82011-05-19 23:06:32 +00002084 case NETDEV_RELEASE:
2085 case NETDEV_JOIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 break;
2087 default:
2088 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
2089 break;
2090 }
2091 return NOTIFY_DONE;
2092}
2093
2094static struct notifier_block rtnetlink_dev_notifier = {
2095 .notifier_call = rtnetlink_event,
2096};
2097
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002098
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002099static int __net_init rtnetlink_net_init(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002100{
2101 struct sock *sk;
2102 sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX,
Eric Dumazet2907c352011-05-25 07:34:04 +00002103 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002104 if (!sk)
2105 return -ENOMEM;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002106 net->rtnl = sk;
2107 return 0;
2108}
2109
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002110static void __net_exit rtnetlink_net_exit(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002111{
Denis V. Lunev775516b2008-01-18 23:55:19 -08002112 netlink_kernel_release(net->rtnl);
2113 net->rtnl = NULL;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002114}
2115
2116static struct pernet_operations rtnetlink_net_ops = {
2117 .init = rtnetlink_net_init,
2118 .exit = rtnetlink_net_exit,
2119};
2120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121void __init rtnetlink_init(void)
2122{
2123 int i;
2124
2125 rtattr_max = 0;
2126 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
2127 if (rta_max[i] > rtattr_max)
2128 rtattr_max = rta_max[i];
2129 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
2130 if (!rta_buf)
2131 panic("rtnetlink_init: cannot allocate rta_buf\n");
2132
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002133 if (register_pernet_subsys(&rtnetlink_net_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 panic("rtnetlink_init: cannot initialize rtnetlink\n");
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
2137 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07002138
Greg Rosec7ac8672011-06-10 01:27:09 +00002139 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink,
2140 rtnl_dump_ifinfo, rtnl_calcit);
2141 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL, NULL);
2142 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL, NULL);
2143 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07002144
Greg Rosec7ac8672011-06-10 01:27:09 +00002145 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all, NULL);
2146 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
2148