blob: 9083e82bdae506d4a0cedc1d8eb385870d62b0dd [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>
41#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <linux/inet.h>
44#include <linux/netdevice.h>
45#include <net/ip.h>
46#include <net/protocol.h>
47#include <net/arp.h>
48#include <net/route.h>
49#include <net/udp.h>
50#include <net/sock.h>
51#include <net/pkt_sched.h>
Thomas Graf14c0b972006-08-04 03:38:38 -070052#include <net/fib_rules.h>
Thomas Grafe2849862007-03-22 11:48:11 -070053#include <net/rtnetlink.h>
Johannes Berg30ffee82009-07-10 09:51:35 +000054#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Eric Dumazete0d087a2009-11-07 01:26:17 -080056struct rtnl_link {
Thomas Grafe2849862007-03-22 11:48:11 -070057 rtnl_doit_func doit;
58 rtnl_dumpit_func dumpit;
Greg Rosec7ac8672011-06-10 01:27:09 +000059 rtnl_calcit_func calcit;
Thomas Grafe2849862007-03-22 11:48:11 -070060};
61
Stephen Hemminger6756ae42006-03-20 22:23:58 -080062static DEFINE_MUTEX(rtnl_mutex);
Greg Rosec7ac8672011-06-10 01:27:09 +000063static u16 min_ifinfo_dump_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65void rtnl_lock(void)
66{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080067 mutex_lock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
Eric Dumazete0d087a2009-11-07 01:26:17 -080069EXPORT_SYMBOL(rtnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Stephen Hemminger6756ae42006-03-20 22:23:58 -080071void __rtnl_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080073 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
Stephen Hemminger6756ae42006-03-20 22:23:58 -080075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076void rtnl_unlock(void)
77{
Herbert Xu58ec3b42008-10-07 15:50:03 -070078 /* This fellow will unlock it for us. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 netdev_run_todo();
80}
Eric Dumazete0d087a2009-11-07 01:26:17 -080081EXPORT_SYMBOL(rtnl_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Stephen Hemminger6756ae42006-03-20 22:23:58 -080083int rtnl_trylock(void)
84{
85 return mutex_trylock(&rtnl_mutex);
86}
Eric Dumazete0d087a2009-11-07 01:26:17 -080087EXPORT_SYMBOL(rtnl_trylock);
Stephen Hemminger6756ae42006-03-20 22:23:58 -080088
Patrick McHardyc9c10142008-04-23 22:10:48 -070089int rtnl_is_locked(void)
90{
91 return mutex_is_locked(&rtnl_mutex);
92}
Eric Dumazete0d087a2009-11-07 01:26:17 -080093EXPORT_SYMBOL(rtnl_is_locked);
Patrick McHardyc9c10142008-04-23 22:10:48 -070094
Paul E. McKenneya898def2010-02-22 17:04:49 -080095#ifdef CONFIG_PROVE_LOCKING
96int lockdep_rtnl_is_held(void)
97{
98 return lockdep_is_held(&rtnl_mutex);
99}
100EXPORT_SYMBOL(lockdep_rtnl_is_held);
101#endif /* #ifdef CONFIG_PROVE_LOCKING */
102
Patrick McHardy25239ce2010-04-26 16:02:05 +0200103static struct rtnl_link *rtnl_msg_handlers[RTNL_FAMILY_MAX + 1];
Thomas Grafe2849862007-03-22 11:48:11 -0700104
105static inline int rtm_msgindex(int msgtype)
106{
107 int msgindex = msgtype - RTM_BASE;
108
109 /*
110 * msgindex < 0 implies someone tried to register a netlink
111 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
112 * the message type has not been added to linux/rtnetlink.h
113 */
114 BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
115
116 return msgindex;
117}
118
119static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
120{
121 struct rtnl_link *tab;
122
Patrick McHardy25239ce2010-04-26 16:02:05 +0200123 if (protocol <= RTNL_FAMILY_MAX)
Patrick McHardy0f87b1d2010-04-13 05:03:17 +0000124 tab = rtnl_msg_handlers[protocol];
125 else
126 tab = NULL;
127
Thomas Graf51057f22007-03-22 21:41:06 -0700128 if (tab == NULL || tab[msgindex].doit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700129 tab = rtnl_msg_handlers[PF_UNSPEC];
130
Thomas Graf51057f22007-03-22 21:41:06 -0700131 return tab ? tab[msgindex].doit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700132}
133
134static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
135{
136 struct rtnl_link *tab;
137
Patrick McHardy25239ce2010-04-26 16:02:05 +0200138 if (protocol <= RTNL_FAMILY_MAX)
Patrick McHardy0f87b1d2010-04-13 05:03:17 +0000139 tab = rtnl_msg_handlers[protocol];
140 else
141 tab = NULL;
142
Thomas Graf51057f22007-03-22 21:41:06 -0700143 if (tab == NULL || tab[msgindex].dumpit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700144 tab = rtnl_msg_handlers[PF_UNSPEC];
145
Thomas Graf51057f22007-03-22 21:41:06 -0700146 return tab ? tab[msgindex].dumpit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700147}
148
Greg Rosec7ac8672011-06-10 01:27:09 +0000149static rtnl_calcit_func rtnl_get_calcit(int protocol, int msgindex)
150{
151 struct rtnl_link *tab;
152
153 if (protocol <= RTNL_FAMILY_MAX)
154 tab = rtnl_msg_handlers[protocol];
155 else
156 tab = NULL;
157
158 if (tab == NULL || tab[msgindex].calcit == NULL)
159 tab = rtnl_msg_handlers[PF_UNSPEC];
160
161 return tab ? tab[msgindex].calcit : NULL;
162}
163
Thomas Grafe2849862007-03-22 11:48:11 -0700164/**
165 * __rtnl_register - Register a rtnetlink message type
166 * @protocol: Protocol family or PF_UNSPEC
167 * @msgtype: rtnetlink message type
168 * @doit: Function pointer called for each request message
169 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
Greg Rosec7ac8672011-06-10 01:27:09 +0000170 * @calcit: Function pointer to calc size of dump message
Thomas Grafe2849862007-03-22 11:48:11 -0700171 *
172 * Registers the specified function pointers (at least one of them has
173 * to be non-NULL) to be called whenever a request message for the
174 * specified protocol family and message type is received.
175 *
176 * The special protocol family PF_UNSPEC may be used to define fallback
177 * function pointers for the case when no entry for the specific protocol
178 * family exists.
179 *
180 * Returns 0 on success or a negative error code.
181 */
182int __rtnl_register(int protocol, int msgtype,
Greg Rosec7ac8672011-06-10 01:27:09 +0000183 rtnl_doit_func doit, rtnl_dumpit_func dumpit,
184 rtnl_calcit_func calcit)
Thomas Grafe2849862007-03-22 11:48:11 -0700185{
186 struct rtnl_link *tab;
187 int msgindex;
188
Patrick McHardy25239ce2010-04-26 16:02:05 +0200189 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700190 msgindex = rtm_msgindex(msgtype);
191
192 tab = rtnl_msg_handlers[protocol];
193 if (tab == NULL) {
194 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
195 if (tab == NULL)
196 return -ENOBUFS;
197
198 rtnl_msg_handlers[protocol] = tab;
199 }
200
201 if (doit)
202 tab[msgindex].doit = doit;
203
204 if (dumpit)
205 tab[msgindex].dumpit = dumpit;
206
Greg Rosec7ac8672011-06-10 01:27:09 +0000207 if (calcit)
208 tab[msgindex].calcit = calcit;
209
Thomas Grafe2849862007-03-22 11:48:11 -0700210 return 0;
211}
Thomas Grafe2849862007-03-22 11:48:11 -0700212EXPORT_SYMBOL_GPL(__rtnl_register);
213
214/**
215 * rtnl_register - Register a rtnetlink message type
216 *
217 * Identical to __rtnl_register() but panics on failure. This is useful
218 * as failure of this function is very unlikely, it can only happen due
219 * to lack of memory when allocating the chain to store all message
220 * handlers for a protocol. Meant for use in init functions where lack
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300221 * of memory implies no sense in continuing.
Thomas Grafe2849862007-03-22 11:48:11 -0700222 */
223void rtnl_register(int protocol, int msgtype,
Greg Rosec7ac8672011-06-10 01:27:09 +0000224 rtnl_doit_func doit, rtnl_dumpit_func dumpit,
225 rtnl_calcit_func calcit)
Thomas Grafe2849862007-03-22 11:48:11 -0700226{
Greg Rosec7ac8672011-06-10 01:27:09 +0000227 if (__rtnl_register(protocol, msgtype, doit, dumpit, calcit) < 0)
Thomas Grafe2849862007-03-22 11:48:11 -0700228 panic("Unable to register rtnetlink message handler, "
229 "protocol = %d, message type = %d\n",
230 protocol, msgtype);
231}
Thomas Grafe2849862007-03-22 11:48:11 -0700232EXPORT_SYMBOL_GPL(rtnl_register);
233
234/**
235 * rtnl_unregister - Unregister a rtnetlink message type
236 * @protocol: Protocol family or PF_UNSPEC
237 * @msgtype: rtnetlink message type
238 *
239 * Returns 0 on success or a negative error code.
240 */
241int rtnl_unregister(int protocol, int msgtype)
242{
243 int msgindex;
244
Patrick McHardy25239ce2010-04-26 16:02:05 +0200245 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700246 msgindex = rtm_msgindex(msgtype);
247
248 if (rtnl_msg_handlers[protocol] == NULL)
249 return -ENOENT;
250
251 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
252 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
253
254 return 0;
255}
Thomas Grafe2849862007-03-22 11:48:11 -0700256EXPORT_SYMBOL_GPL(rtnl_unregister);
257
258/**
259 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
260 * @protocol : Protocol family or PF_UNSPEC
261 *
262 * Identical to calling rtnl_unregster() for all registered message types
263 * of a certain protocol family.
264 */
265void rtnl_unregister_all(int protocol)
266{
Patrick McHardy25239ce2010-04-26 16:02:05 +0200267 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700268
269 kfree(rtnl_msg_handlers[protocol]);
270 rtnl_msg_handlers[protocol] = NULL;
271}
Thomas Grafe2849862007-03-22 11:48:11 -0700272EXPORT_SYMBOL_GPL(rtnl_unregister_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Patrick McHardy38f7b872007-06-13 12:03:51 -0700274static LIST_HEAD(link_ops);
275
276/**
277 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
278 * @ops: struct rtnl_link_ops * to register
279 *
280 * The caller must hold the rtnl_mutex. This function should be used
281 * by drivers that create devices during module initialization. It
282 * must be called before registering the devices.
283 *
284 * Returns 0 on success or a negative error code.
285 */
286int __rtnl_link_register(struct rtnl_link_ops *ops)
287{
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700288 if (!ops->dellink)
Eric Dumazet23289a32009-10-27 07:06:36 +0000289 ops->dellink = unregister_netdevice_queue;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700290
Patrick McHardy38f7b872007-06-13 12:03:51 -0700291 list_add_tail(&ops->list, &link_ops);
292 return 0;
293}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700294EXPORT_SYMBOL_GPL(__rtnl_link_register);
295
296/**
297 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
298 * @ops: struct rtnl_link_ops * to register
299 *
300 * Returns 0 on success or a negative error code.
301 */
302int rtnl_link_register(struct rtnl_link_ops *ops)
303{
304 int err;
305
306 rtnl_lock();
307 err = __rtnl_link_register(ops);
308 rtnl_unlock();
309 return err;
310}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700311EXPORT_SYMBOL_GPL(rtnl_link_register);
312
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700313static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
314{
315 struct net_device *dev;
Eric Dumazet23289a32009-10-27 07:06:36 +0000316 LIST_HEAD(list_kill);
317
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700318 for_each_netdev(net, dev) {
Eric Dumazet23289a32009-10-27 07:06:36 +0000319 if (dev->rtnl_link_ops == ops)
320 ops->dellink(dev, &list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700321 }
Eric Dumazet23289a32009-10-27 07:06:36 +0000322 unregister_netdevice_many(&list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700323}
324
Patrick McHardy38f7b872007-06-13 12:03:51 -0700325/**
326 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
327 * @ops: struct rtnl_link_ops * to unregister
328 *
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700329 * The caller must hold the rtnl_mutex.
Patrick McHardy38f7b872007-06-13 12:03:51 -0700330 */
331void __rtnl_link_unregister(struct rtnl_link_ops *ops)
332{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700333 struct net *net;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700334
Eric W. Biederman881d9662007-09-17 11:56:21 -0700335 for_each_net(net) {
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700336 __rtnl_kill_links(net, ops);
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700337 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700338 list_del(&ops->list);
339}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700340EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
341
342/**
343 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
344 * @ops: struct rtnl_link_ops * to unregister
345 */
346void rtnl_link_unregister(struct rtnl_link_ops *ops)
347{
348 rtnl_lock();
349 __rtnl_link_unregister(ops);
350 rtnl_unlock();
351}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700352EXPORT_SYMBOL_GPL(rtnl_link_unregister);
353
354static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
355{
356 const struct rtnl_link_ops *ops;
357
358 list_for_each_entry(ops, &link_ops, list) {
359 if (!strcmp(ops->kind, kind))
360 return ops;
361 }
362 return NULL;
363}
364
365static size_t rtnl_link_get_size(const struct net_device *dev)
366{
367 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
368 size_t size;
369
370 if (!ops)
371 return 0;
372
Thomas Graf369cf772010-11-11 15:47:59 +0000373 size = nla_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
374 nla_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700375
376 if (ops->get_size)
377 /* IFLA_INFO_DATA + nested data */
Thomas Graf369cf772010-11-11 15:47:59 +0000378 size += nla_total_size(sizeof(struct nlattr)) +
Patrick McHardy38f7b872007-06-13 12:03:51 -0700379 ops->get_size(dev);
380
381 if (ops->get_xstats_size)
Thomas Graf369cf772010-11-11 15:47:59 +0000382 /* IFLA_INFO_XSTATS */
383 size += nla_total_size(ops->get_xstats_size(dev));
Patrick McHardy38f7b872007-06-13 12:03:51 -0700384
385 return size;
386}
387
Thomas Graff8ff1822010-11-16 04:30:14 +0000388static LIST_HEAD(rtnl_af_ops);
389
390static const struct rtnl_af_ops *rtnl_af_lookup(const int family)
391{
392 const struct rtnl_af_ops *ops;
393
394 list_for_each_entry(ops, &rtnl_af_ops, list) {
395 if (ops->family == family)
396 return ops;
397 }
398
399 return NULL;
400}
401
402/**
403 * __rtnl_af_register - Register rtnl_af_ops with rtnetlink.
404 * @ops: struct rtnl_af_ops * to register
405 *
406 * The caller must hold the rtnl_mutex.
407 *
408 * Returns 0 on success or a negative error code.
409 */
410int __rtnl_af_register(struct rtnl_af_ops *ops)
411{
412 list_add_tail(&ops->list, &rtnl_af_ops);
413 return 0;
414}
415EXPORT_SYMBOL_GPL(__rtnl_af_register);
416
417/**
418 * rtnl_af_register - Register rtnl_af_ops with rtnetlink.
419 * @ops: struct rtnl_af_ops * to register
420 *
421 * Returns 0 on success or a negative error code.
422 */
423int rtnl_af_register(struct rtnl_af_ops *ops)
424{
425 int err;
426
427 rtnl_lock();
428 err = __rtnl_af_register(ops);
429 rtnl_unlock();
430 return err;
431}
432EXPORT_SYMBOL_GPL(rtnl_af_register);
433
434/**
435 * __rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
436 * @ops: struct rtnl_af_ops * to unregister
437 *
438 * The caller must hold the rtnl_mutex.
439 */
440void __rtnl_af_unregister(struct rtnl_af_ops *ops)
441{
442 list_del(&ops->list);
443}
444EXPORT_SYMBOL_GPL(__rtnl_af_unregister);
445
446/**
447 * rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
448 * @ops: struct rtnl_af_ops * to unregister
449 */
450void rtnl_af_unregister(struct rtnl_af_ops *ops)
451{
452 rtnl_lock();
453 __rtnl_af_unregister(ops);
454 rtnl_unlock();
455}
456EXPORT_SYMBOL_GPL(rtnl_af_unregister);
457
458static size_t rtnl_link_get_af_size(const struct net_device *dev)
459{
460 struct rtnl_af_ops *af_ops;
461 size_t size;
462
463 /* IFLA_AF_SPEC */
464 size = nla_total_size(sizeof(struct nlattr));
465
466 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
467 if (af_ops->get_link_af_size) {
468 /* AF_* + nested data */
469 size += nla_total_size(sizeof(struct nlattr)) +
470 af_ops->get_link_af_size(dev);
471 }
472 }
473
474 return size;
475}
476
Patrick McHardy38f7b872007-06-13 12:03:51 -0700477static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
478{
479 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
480 struct nlattr *linkinfo, *data;
481 int err = -EMSGSIZE;
482
483 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
484 if (linkinfo == NULL)
485 goto out;
486
487 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
488 goto err_cancel_link;
489 if (ops->fill_xstats) {
490 err = ops->fill_xstats(skb, dev);
491 if (err < 0)
492 goto err_cancel_link;
493 }
494 if (ops->fill_info) {
495 data = nla_nest_start(skb, IFLA_INFO_DATA);
496 if (data == NULL)
497 goto err_cancel_link;
498 err = ops->fill_info(skb, dev);
499 if (err < 0)
500 goto err_cancel_data;
501 nla_nest_end(skb, data);
502 }
503
504 nla_nest_end(skb, linkinfo);
505 return 0;
506
507err_cancel_data:
508 nla_nest_cancel(skb, data);
509err_cancel_link:
510 nla_nest_cancel(skb, linkinfo);
511out:
512 return err;
513}
514
Thomas Grafdb46edc2005-05-03 14:29:39 -0700515static const int rtm_min[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Thomas Graff90a0a72005-05-03 14:29:00 -0700517 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
518 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
519 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
Thomas Graf14c0b972006-08-04 03:38:38 -0700520 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700521 [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
522 [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
523 [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
524 [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700525 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
526 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527};
528
Thomas Grafdb46edc2005-05-03 14:29:39 -0700529static const int rta_max[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Thomas Graff90a0a72005-05-03 14:29:00 -0700531 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
532 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
533 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
Thomas Graf14c0b972006-08-04 03:38:38 -0700534 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
Thomas Graff90a0a72005-05-03 14:29:00 -0700535 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
536 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
537 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
538 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539};
540
541void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
542{
543 struct rtattr *rta;
544 int size = RTA_LENGTH(attrlen);
545
Eric Dumazete0d087a2009-11-07 01:26:17 -0800546 rta = (struct rtattr *)skb_put(skb, RTA_ALIGN(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 rta->rta_type = attrtype;
548 rta->rta_len = size;
549 memcpy(RTA_DATA(rta), data, attrlen);
Patrick McHardyb3563c42005-06-28 12:54:43 -0700550 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800552EXPORT_SYMBOL(__rta_fill);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800554int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned group, int echo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800556 struct sock *rtnl = net->rtnl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 int err = 0;
558
Patrick McHardyac6d4392005-08-14 19:29:52 -0700559 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (echo)
561 atomic_inc(&skb->users);
562 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
563 if (echo)
564 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
565 return err;
566}
567
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800568int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
Thomas Graf2942e902006-08-15 00:30:25 -0700569{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800570 struct sock *rtnl = net->rtnl;
571
Thomas Graf2942e902006-08-15 00:30:25 -0700572 return nlmsg_unicast(rtnl, skb, pid);
573}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800574EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf2942e902006-08-15 00:30:25 -0700575
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800576void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
577 struct nlmsghdr *nlh, gfp_t flags)
Thomas Graf97676b62006-08-15 00:31:41 -0700578{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800579 struct sock *rtnl = net->rtnl;
Thomas Graf97676b62006-08-15 00:31:41 -0700580 int report = 0;
581
582 if (nlh)
583 report = nlmsg_report(nlh);
584
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800585 nlmsg_notify(rtnl, skb, pid, group, report, flags);
Thomas Graf97676b62006-08-15 00:31:41 -0700586}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800587EXPORT_SYMBOL(rtnl_notify);
Thomas Graf97676b62006-08-15 00:31:41 -0700588
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800589void rtnl_set_sk_err(struct net *net, u32 group, int error)
Thomas Graf97676b62006-08-15 00:31:41 -0700590{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800591 struct sock *rtnl = net->rtnl;
592
Thomas Graf97676b62006-08-15 00:31:41 -0700593 netlink_set_err(rtnl, 0, group, error);
594}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800595EXPORT_SYMBOL(rtnl_set_sk_err);
Thomas Graf97676b62006-08-15 00:31:41 -0700596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
598{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700599 struct nlattr *mx;
600 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Thomas Graf2d7202b2006-08-22 00:01:27 -0700602 mx = nla_nest_start(skb, RTA_METRICS);
603 if (mx == NULL)
604 return -ENOBUFS;
605
606 for (i = 0; i < RTAX_MAX; i++) {
607 if (metrics[i]) {
608 valid++;
609 NLA_PUT_U32(skb, i+1, metrics[i]);
610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
David S. Millera57d27f2006-08-22 22:20:14 -0700613 if (!valid) {
614 nla_nest_cancel(skb, mx);
615 return 0;
616 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700617
618 return nla_nest_end(skb, mx);
619
620nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700621 nla_nest_cancel(skb, mx);
622 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800624EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Thomas Grafe3703b32006-11-27 09:27:07 -0800626int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
627 u32 ts, u32 tsage, long expires, u32 error)
628{
629 struct rta_cacheinfo ci = {
630 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
631 .rta_used = dst->__use,
632 .rta_clntref = atomic_read(&(dst->__refcnt)),
633 .rta_error = error,
634 .rta_id = id,
635 .rta_ts = ts,
636 .rta_tsage = tsage,
637 };
638
639 if (expires)
640 ci.rta_expires = jiffies_to_clock_t(expires);
641
642 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
643}
Thomas Grafe3703b32006-11-27 09:27:07 -0800644EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
David S. Miller93b2d4a2008-02-17 18:35:07 -0800646static void set_operstate(struct net_device *dev, unsigned char transition)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800647{
648 unsigned char operstate = dev->operstate;
649
Eric Dumazete0d087a2009-11-07 01:26:17 -0800650 switch (transition) {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800651 case IF_OPER_UP:
652 if ((operstate == IF_OPER_DORMANT ||
653 operstate == IF_OPER_UNKNOWN) &&
654 !netif_dormant(dev))
655 operstate = IF_OPER_UP;
656 break;
657
658 case IF_OPER_DORMANT:
659 if (operstate == IF_OPER_UP ||
660 operstate == IF_OPER_UNKNOWN)
661 operstate = IF_OPER_DORMANT;
662 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700663 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800664
665 if (dev->operstate != operstate) {
666 write_lock_bh(&dev_base_lock);
667 dev->operstate = operstate;
668 write_unlock_bh(&dev_base_lock);
David S. Miller93b2d4a2008-02-17 18:35:07 -0800669 netdev_state_change(dev);
670 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800671}
672
Patrick McHardy3729d502010-02-26 06:34:54 +0000673static unsigned int rtnl_dev_combine_flags(const struct net_device *dev,
674 const struct ifinfomsg *ifm)
675{
676 unsigned int flags = ifm->ifi_flags;
677
678 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
679 if (ifm->ifi_change)
680 flags = (flags & ifm->ifi_change) |
681 (dev->flags & ~ifm->ifi_change);
682
683 return flags;
684}
685
Thomas Grafb60c5112006-08-04 23:05:34 -0700686static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000687 const struct rtnl_link_stats64 *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
Thomas Grafb60c5112006-08-04 23:05:34 -0700689 a->rx_packets = b->rx_packets;
690 a->tx_packets = b->tx_packets;
691 a->rx_bytes = b->rx_bytes;
692 a->tx_bytes = b->tx_bytes;
693 a->rx_errors = b->rx_errors;
694 a->tx_errors = b->tx_errors;
695 a->rx_dropped = b->rx_dropped;
696 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Thomas Grafb60c5112006-08-04 23:05:34 -0700698 a->multicast = b->multicast;
699 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Thomas Grafb60c5112006-08-04 23:05:34 -0700701 a->rx_length_errors = b->rx_length_errors;
702 a->rx_over_errors = b->rx_over_errors;
703 a->rx_crc_errors = b->rx_crc_errors;
704 a->rx_frame_errors = b->rx_frame_errors;
705 a->rx_fifo_errors = b->rx_fifo_errors;
706 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Thomas Grafb60c5112006-08-04 23:05:34 -0700708 a->tx_aborted_errors = b->tx_aborted_errors;
709 a->tx_carrier_errors = b->tx_carrier_errors;
710 a->tx_fifo_errors = b->tx_fifo_errors;
711 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
712 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Thomas Grafb60c5112006-08-04 23:05:34 -0700714 a->rx_compressed = b->rx_compressed;
715 a->tx_compressed = b->tx_compressed;
Jan Engelhardt10708f32010-03-11 09:57:29 +0000716}
717
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000718static void copy_rtnl_link_stats64(void *v, const struct rtnl_link_stats64 *b)
Jan Engelhardt10708f32010-03-11 09:57:29 +0000719{
Eric Dumazetafdcba32010-08-23 07:14:36 +0000720 memcpy(v, b, sizeof(*b));
Jan Engelhardt10708f32010-03-11 09:57:29 +0000721}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Chris Wrightc02db8c2010-05-16 01:05:45 -0700723/* All VF info */
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000724static inline int rtnl_vfinfo_size(const struct net_device *dev)
725{
Chris Wrightc02db8c2010-05-16 01:05:45 -0700726 if (dev->dev.parent && dev_is_pci(dev->dev.parent)) {
727
728 int num_vfs = dev_num_vf(dev->dev.parent);
Scott Feldman045de012010-05-28 03:42:43 -0700729 size_t size = nla_total_size(sizeof(struct nlattr));
730 size += nla_total_size(num_vfs * sizeof(struct nlattr));
731 size += num_vfs *
732 (nla_total_size(sizeof(struct ifla_vf_mac)) +
733 nla_total_size(sizeof(struct ifla_vf_vlan)) +
Greg Rose5f8444a2011-10-08 03:05:24 +0000734 nla_total_size(sizeof(struct ifla_vf_tx_rate)) +
735 nla_total_size(sizeof(struct ifla_vf_spoofchk)));
Chris Wrightc02db8c2010-05-16 01:05:45 -0700736 return size;
737 } else
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000738 return 0;
739}
740
Scott Feldman57b61082010-05-17 22:49:55 -0700741static size_t rtnl_port_size(const struct net_device *dev)
742{
743 size_t port_size = nla_total_size(4) /* PORT_VF */
744 + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */
745 + nla_total_size(sizeof(struct ifla_port_vsi))
746 /* PORT_VSI_TYPE */
747 + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */
748 + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */
749 + nla_total_size(1) /* PROT_VDP_REQUEST */
750 + nla_total_size(2); /* PORT_VDP_RESPONSE */
751 size_t vf_ports_size = nla_total_size(sizeof(struct nlattr));
752 size_t vf_port_size = nla_total_size(sizeof(struct nlattr))
753 + port_size;
754 size_t port_self_size = nla_total_size(sizeof(struct nlattr))
755 + port_size;
756
757 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
758 return 0;
759 if (dev_num_vf(dev->dev.parent))
760 return port_self_size + vf_ports_size +
761 vf_port_size * dev_num_vf(dev->dev.parent);
762 else
763 return port_self_size;
764}
765
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000766static noinline size_t if_nlmsg_size(const struct net_device *dev)
Thomas Graf339bf982006-11-10 14:10:15 -0800767{
768 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
769 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700770 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
Thomas Graf339bf982006-11-10 14:10:15 -0800771 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
772 + nla_total_size(sizeof(struct rtnl_link_ifmap))
773 + nla_total_size(sizeof(struct rtnl_link_stats))
Jan Engelhardtadcfe192010-03-27 17:15:29 -0700774 + nla_total_size(sizeof(struct rtnl_link_stats64))
Thomas Graf339bf982006-11-10 14:10:15 -0800775 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
776 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
777 + nla_total_size(4) /* IFLA_TXQLEN */
778 + nla_total_size(4) /* IFLA_WEIGHT */
779 + nla_total_size(4) /* IFLA_MTU */
780 + nla_total_size(4) /* IFLA_LINK */
781 + nla_total_size(4) /* IFLA_MASTER */
782 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700783 + nla_total_size(1) /* IFLA_LINKMODE */
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000784 + nla_total_size(4) /* IFLA_NUM_VF */
Chris Wrightc02db8c2010-05-16 01:05:45 -0700785 + rtnl_vfinfo_size(dev) /* IFLA_VFINFO_LIST */
Scott Feldman57b61082010-05-17 22:49:55 -0700786 + rtnl_port_size(dev) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
Thomas Graff8ff1822010-11-16 04:30:14 +0000787 + rtnl_link_get_size(dev) /* IFLA_LINKINFO */
788 + rtnl_link_get_af_size(dev); /* IFLA_AF_SPEC */
Thomas Graf339bf982006-11-10 14:10:15 -0800789}
790
Scott Feldman57b61082010-05-17 22:49:55 -0700791static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev)
792{
793 struct nlattr *vf_ports;
794 struct nlattr *vf_port;
795 int vf;
796 int err;
797
798 vf_ports = nla_nest_start(skb, IFLA_VF_PORTS);
799 if (!vf_ports)
800 return -EMSGSIZE;
801
802 for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) {
803 vf_port = nla_nest_start(skb, IFLA_VF_PORT);
Scott Feldman8ca94182010-05-28 03:42:18 -0700804 if (!vf_port)
805 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700806 NLA_PUT_U32(skb, IFLA_PORT_VF, vf);
807 err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb);
Scott Feldman8ca94182010-05-28 03:42:18 -0700808 if (err == -EMSGSIZE)
809 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700810 if (err) {
Scott Feldman57b61082010-05-17 22:49:55 -0700811 nla_nest_cancel(skb, vf_port);
812 continue;
813 }
814 nla_nest_end(skb, vf_port);
815 }
816
817 nla_nest_end(skb, vf_ports);
818
819 return 0;
Scott Feldman8ca94182010-05-28 03:42:18 -0700820
821nla_put_failure:
822 nla_nest_cancel(skb, vf_ports);
823 return -EMSGSIZE;
Scott Feldman57b61082010-05-17 22:49:55 -0700824}
825
826static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev)
827{
828 struct nlattr *port_self;
829 int err;
830
831 port_self = nla_nest_start(skb, IFLA_PORT_SELF);
832 if (!port_self)
833 return -EMSGSIZE;
834
835 err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb);
836 if (err) {
837 nla_nest_cancel(skb, port_self);
Scott Feldman8ca94182010-05-28 03:42:18 -0700838 return (err == -EMSGSIZE) ? err : 0;
Scott Feldman57b61082010-05-17 22:49:55 -0700839 }
840
841 nla_nest_end(skb, port_self);
842
843 return 0;
844}
845
846static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev)
847{
848 int err;
849
850 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
851 return 0;
852
853 err = rtnl_port_self_fill(skb, dev);
854 if (err)
855 return err;
856
857 if (dev_num_vf(dev->dev.parent)) {
858 err = rtnl_vf_ports_fill(skb, dev);
859 if (err)
860 return err;
861 }
862
863 return 0;
864}
865
Thomas Grafb60c5112006-08-04 23:05:34 -0700866static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -0700867 int type, u32 pid, u32 seq, u32 change,
868 unsigned int flags)
Thomas Grafb60c5112006-08-04 23:05:34 -0700869{
870 struct ifinfomsg *ifm;
871 struct nlmsghdr *nlh;
Eric Dumazet28172732010-07-07 14:58:56 -0700872 struct rtnl_link_stats64 temp;
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000873 const struct rtnl_link_stats64 *stats;
Thomas Graff8ff1822010-11-16 04:30:14 +0000874 struct nlattr *attr, *af_spec;
875 struct rtnl_af_ops *af_ops;
Thomas Grafb60c5112006-08-04 23:05:34 -0700876
Eric Dumazet2907c352011-05-25 07:34:04 +0000877 ASSERT_RTNL();
Thomas Grafb60c5112006-08-04 23:05:34 -0700878 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
879 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800880 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700881
882 ifm = nlmsg_data(nlh);
883 ifm->ifi_family = AF_UNSPEC;
884 ifm->__ifi_pad = 0;
885 ifm->ifi_type = dev->type;
886 ifm->ifi_index = dev->ifindex;
887 ifm->ifi_flags = dev_get_flags(dev);
888 ifm->ifi_change = change;
889
890 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
891 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
Thomas Grafb60c5112006-08-04 23:05:34 -0700892 NLA_PUT_U8(skb, IFLA_OPERSTATE,
893 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
894 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
895 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
Vlad Dogarucbda10f2011-01-13 23:38:30 +0000896 NLA_PUT_U32(skb, IFLA_GROUP, dev->group);
Thomas Grafb60c5112006-08-04 23:05:34 -0700897
898 if (dev->ifindex != dev->iflink)
899 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
900
901 if (dev->master)
902 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
903
Patrick McHardyaf356af2009-09-04 06:41:18 +0000904 if (dev->qdisc)
905 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc->ops->id);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800906
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700907 if (dev->ifalias)
908 NLA_PUT_STRING(skb, IFLA_IFALIAS, dev->ifalias);
909
Stefan Rompfb00055a2006-03-20 17:09:11 -0800910 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 struct rtnl_link_ifmap map = {
912 .mem_start = dev->mem_start,
913 .mem_end = dev->mem_end,
914 .base_addr = dev->base_addr,
915 .irq = dev->irq,
916 .dma = dev->dma,
917 .port = dev->if_port,
918 };
Thomas Grafb60c5112006-08-04 23:05:34 -0700919 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
921
922 if (dev->addr_len) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700923 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
924 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
926
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700927 attr = nla_reserve(skb, IFLA_STATS,
928 sizeof(struct rtnl_link_stats));
929 if (attr == NULL)
930 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Eric Dumazet28172732010-07-07 14:58:56 -0700932 stats = dev_get_stats(dev, &temp);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700933 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Jan Engelhardt10708f32010-03-11 09:57:29 +0000935 attr = nla_reserve(skb, IFLA_STATS64,
936 sizeof(struct rtnl_link_stats64));
937 if (attr == NULL)
938 goto nla_put_failure;
Jan Engelhardt10708f32010-03-11 09:57:29 +0000939 copy_rtnl_link_stats64(nla_data(attr), stats);
940
Scott Feldman57b61082010-05-17 22:49:55 -0700941 if (dev->dev.parent)
942 NLA_PUT_U32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent));
943
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000944 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent) {
945 int i;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000946
Chris Wrightc02db8c2010-05-16 01:05:45 -0700947 struct nlattr *vfinfo, *vf;
948 int num_vfs = dev_num_vf(dev->dev.parent);
949
Chris Wrightc02db8c2010-05-16 01:05:45 -0700950 vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST);
951 if (!vfinfo)
952 goto nla_put_failure;
953 for (i = 0; i < num_vfs; i++) {
954 struct ifla_vf_info ivi;
955 struct ifla_vf_mac vf_mac;
956 struct ifla_vf_vlan vf_vlan;
957 struct ifla_vf_tx_rate vf_tx_rate;
Greg Rose5f8444a2011-10-08 03:05:24 +0000958 struct ifla_vf_spoofchk vf_spoofchk;
959
960 /*
961 * Not all SR-IOV capable drivers support the
962 * spoofcheck query. Preset to -1 so the user
963 * space tool can detect that the driver didn't
964 * report anything.
965 */
966 ivi.spoofchk = -1;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000967 if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi))
968 break;
Greg Rose5f8444a2011-10-08 03:05:24 +0000969 vf_mac.vf =
970 vf_vlan.vf =
971 vf_tx_rate.vf =
972 vf_spoofchk.vf = ivi.vf;
973
Chris Wrightc02db8c2010-05-16 01:05:45 -0700974 memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac));
975 vf_vlan.vlan = ivi.vlan;
976 vf_vlan.qos = ivi.qos;
977 vf_tx_rate.rate = ivi.tx_rate;
Greg Rose5f8444a2011-10-08 03:05:24 +0000978 vf_spoofchk.setting = ivi.spoofchk;
Chris Wrightc02db8c2010-05-16 01:05:45 -0700979 vf = nla_nest_start(skb, IFLA_VF_INFO);
980 if (!vf) {
981 nla_nest_cancel(skb, vfinfo);
982 goto nla_put_failure;
983 }
984 NLA_PUT(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac);
985 NLA_PUT(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan);
Greg Rose5f8444a2011-10-08 03:05:24 +0000986 NLA_PUT(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate),
987 &vf_tx_rate);
988 NLA_PUT(skb, IFLA_VF_SPOOFCHK, sizeof(vf_spoofchk),
989 &vf_spoofchk);
Chris Wrightc02db8c2010-05-16 01:05:45 -0700990 nla_nest_end(skb, vf);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000991 }
Chris Wrightc02db8c2010-05-16 01:05:45 -0700992 nla_nest_end(skb, vfinfo);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000993 }
Scott Feldman57b61082010-05-17 22:49:55 -0700994
995 if (rtnl_port_fill(skb, dev))
996 goto nla_put_failure;
997
Patrick McHardy38f7b872007-06-13 12:03:51 -0700998 if (dev->rtnl_link_ops) {
999 if (rtnl_link_fill(skb, dev) < 0)
1000 goto nla_put_failure;
1001 }
1002
Thomas Graff8ff1822010-11-16 04:30:14 +00001003 if (!(af_spec = nla_nest_start(skb, IFLA_AF_SPEC)))
1004 goto nla_put_failure;
1005
1006 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
1007 if (af_ops->fill_link_af) {
1008 struct nlattr *af;
1009 int err;
1010
1011 if (!(af = nla_nest_start(skb, af_ops->family)))
1012 goto nla_put_failure;
1013
1014 err = af_ops->fill_link_af(skb, dev);
1015
1016 /*
1017 * Caller may return ENODATA to indicate that there
1018 * was no data to be dumped. This is not an error, it
1019 * means we should trim the attribute header and
1020 * continue.
1021 */
1022 if (err == -ENODATA)
1023 nla_nest_cancel(skb, af);
1024 else if (err < 0)
1025 goto nla_put_failure;
1026
1027 nla_nest_end(skb, af);
1028 }
1029 }
1030
1031 nla_nest_end(skb, af_spec);
1032
Thomas Grafb60c5112006-08-04 23:05:34 -07001033 return nlmsg_end(skb, nlh);
1034
1035nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08001036 nlmsg_cancel(skb, nlh);
1037 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
Thomas Grafb60c5112006-08-04 23:05:34 -07001040static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001042 struct net *net = sock_net(skb->sk);
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001043 int h, s_h;
1044 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 struct net_device *dev;
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001046 struct hlist_head *head;
1047 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001049 s_h = cb->args[0];
1050 s_idx = cb->args[1];
1051
Eric Dumazete67f88d2011-04-27 22:56:07 +00001052 rcu_read_lock();
Thomas Graf4e985ad2011-06-21 03:11:20 +00001053 cb->seq = net->dev_base_seq;
1054
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001055 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
1056 idx = 0;
1057 head = &net->dev_index_head[h];
Eric Dumazete67f88d2011-04-27 22:56:07 +00001058 hlist_for_each_entry_rcu(dev, node, head, index_hlist) {
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001059 if (idx < s_idx)
1060 goto cont;
1061 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
1062 NETLINK_CB(cb->skb).pid,
1063 cb->nlh->nlmsg_seq, 0,
1064 NLM_F_MULTI) <= 0)
1065 goto out;
Thomas Graf4e985ad2011-06-21 03:11:20 +00001066
1067 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Pavel Emelianov7562f872007-05-03 15:13:45 -07001068cont:
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001069 idx++;
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001072out:
Eric Dumazete67f88d2011-04-27 22:56:07 +00001073 rcu_read_unlock();
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001074 cb->args[1] = idx;
1075 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 return skb->len;
1078}
1079
Pavel Emelianove7199282007-08-08 22:16:38 -07001080const struct nla_policy ifla_policy[IFLA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07001081 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
Patrick McHardy38f7b872007-06-13 12:03:51 -07001082 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1083 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
Thomas Graf5176f912006-08-26 20:13:18 -07001084 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -07001085 [IFLA_MTU] = { .type = NLA_U32 },
Thomas Graf76e87302008-02-19 16:12:08 -08001086 [IFLA_LINK] = { .type = NLA_U32 },
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001087 [IFLA_MASTER] = { .type = NLA_U32 },
Thomas Grafda5e0492006-08-10 21:17:37 -07001088 [IFLA_TXQLEN] = { .type = NLA_U32 },
1089 [IFLA_WEIGHT] = { .type = NLA_U32 },
1090 [IFLA_OPERSTATE] = { .type = NLA_U8 },
1091 [IFLA_LINKMODE] = { .type = NLA_U8 },
Thomas Graf76e87302008-02-19 16:12:08 -08001092 [IFLA_LINKINFO] = { .type = NLA_NESTED },
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001093 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001094 [IFLA_NET_NS_FD] = { .type = NLA_U32 },
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001095 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
Chris Wrightc02db8c2010-05-16 01:05:45 -07001096 [IFLA_VFINFO_LIST] = {. type = NLA_NESTED },
Scott Feldman57b61082010-05-17 22:49:55 -07001097 [IFLA_VF_PORTS] = { .type = NLA_NESTED },
1098 [IFLA_PORT_SELF] = { .type = NLA_NESTED },
Thomas Graff8ff1822010-11-16 04:30:14 +00001099 [IFLA_AF_SPEC] = { .type = NLA_NESTED },
Thomas Grafda5e0492006-08-10 21:17:37 -07001100};
Eric Dumazete0d087a2009-11-07 01:26:17 -08001101EXPORT_SYMBOL(ifla_policy);
Thomas Grafda5e0492006-08-10 21:17:37 -07001102
Patrick McHardy38f7b872007-06-13 12:03:51 -07001103static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
1104 [IFLA_INFO_KIND] = { .type = NLA_STRING },
1105 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
1106};
1107
Chris Wrightc02db8c2010-05-16 01:05:45 -07001108static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = {
1109 [IFLA_VF_INFO] = { .type = NLA_NESTED },
1110};
1111
1112static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
1113 [IFLA_VF_MAC] = { .type = NLA_BINARY,
1114 .len = sizeof(struct ifla_vf_mac) },
1115 [IFLA_VF_VLAN] = { .type = NLA_BINARY,
1116 .len = sizeof(struct ifla_vf_vlan) },
1117 [IFLA_VF_TX_RATE] = { .type = NLA_BINARY,
1118 .len = sizeof(struct ifla_vf_tx_rate) },
1119};
1120
Scott Feldman57b61082010-05-17 22:49:55 -07001121static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = {
1122 [IFLA_PORT_VF] = { .type = NLA_U32 },
1123 [IFLA_PORT_PROFILE] = { .type = NLA_STRING,
1124 .len = PORT_PROFILE_MAX },
1125 [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY,
1126 .len = sizeof(struct ifla_port_vsi)},
1127 [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY,
1128 .len = PORT_UUID_MAX },
1129 [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING,
1130 .len = PORT_UUID_MAX },
1131 [IFLA_PORT_REQUEST] = { .type = NLA_U8, },
1132 [IFLA_PORT_RESPONSE] = { .type = NLA_U16, },
1133};
1134
Eric W. Biederman81adee42009-11-08 00:53:51 -08001135struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
1136{
1137 struct net *net;
1138 /* Examine the link attributes and figure out which
1139 * network namespace we are talking about.
1140 */
1141 if (tb[IFLA_NET_NS_PID])
1142 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001143 else if (tb[IFLA_NET_NS_FD])
1144 net = get_net_ns_by_fd(nla_get_u32(tb[IFLA_NET_NS_FD]));
Eric W. Biederman81adee42009-11-08 00:53:51 -08001145 else
1146 net = get_net(src_net);
1147 return net;
1148}
1149EXPORT_SYMBOL(rtnl_link_get_net);
1150
Thomas Graf1840bb12008-02-23 19:54:36 -08001151static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
1152{
1153 if (dev) {
1154 if (tb[IFLA_ADDRESS] &&
1155 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
1156 return -EINVAL;
1157
1158 if (tb[IFLA_BROADCAST] &&
1159 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
1160 return -EINVAL;
1161 }
1162
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001163 if (tb[IFLA_AF_SPEC]) {
1164 struct nlattr *af;
1165 int rem, err;
1166
1167 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1168 const struct rtnl_af_ops *af_ops;
1169
1170 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
1171 return -EAFNOSUPPORT;
1172
1173 if (!af_ops->set_link_af)
1174 return -EOPNOTSUPP;
1175
1176 if (af_ops->validate_link_af) {
Kurt Van Dijck6d3a9a62011-01-26 04:55:24 +00001177 err = af_ops->validate_link_af(dev, af);
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001178 if (err < 0)
1179 return err;
1180 }
1181 }
1182 }
1183
Thomas Graf1840bb12008-02-23 19:54:36 -08001184 return 0;
1185}
1186
Chris Wrightc02db8c2010-05-16 01:05:45 -07001187static int do_setvfinfo(struct net_device *dev, struct nlattr *attr)
1188{
1189 int rem, err = -EINVAL;
1190 struct nlattr *vf;
1191 const struct net_device_ops *ops = dev->netdev_ops;
1192
1193 nla_for_each_nested(vf, attr, rem) {
1194 switch (nla_type(vf)) {
1195 case IFLA_VF_MAC: {
1196 struct ifla_vf_mac *ivm;
1197 ivm = nla_data(vf);
1198 err = -EOPNOTSUPP;
1199 if (ops->ndo_set_vf_mac)
1200 err = ops->ndo_set_vf_mac(dev, ivm->vf,
1201 ivm->mac);
1202 break;
1203 }
1204 case IFLA_VF_VLAN: {
1205 struct ifla_vf_vlan *ivv;
1206 ivv = nla_data(vf);
1207 err = -EOPNOTSUPP;
1208 if (ops->ndo_set_vf_vlan)
1209 err = ops->ndo_set_vf_vlan(dev, ivv->vf,
1210 ivv->vlan,
1211 ivv->qos);
1212 break;
1213 }
1214 case IFLA_VF_TX_RATE: {
1215 struct ifla_vf_tx_rate *ivt;
1216 ivt = nla_data(vf);
1217 err = -EOPNOTSUPP;
1218 if (ops->ndo_set_vf_tx_rate)
1219 err = ops->ndo_set_vf_tx_rate(dev, ivt->vf,
1220 ivt->rate);
1221 break;
1222 }
Greg Rose5f8444a2011-10-08 03:05:24 +00001223 case IFLA_VF_SPOOFCHK: {
1224 struct ifla_vf_spoofchk *ivs;
1225 ivs = nla_data(vf);
1226 err = -EOPNOTSUPP;
1227 if (ops->ndo_set_vf_spoofchk)
1228 err = ops->ndo_set_vf_spoofchk(dev, ivs->vf,
1229 ivs->setting);
1230 break;
1231 }
Chris Wrightc02db8c2010-05-16 01:05:45 -07001232 default:
1233 err = -EINVAL;
1234 break;
1235 }
1236 if (err)
1237 break;
1238 }
1239 return err;
1240}
1241
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001242static int do_set_master(struct net_device *dev, int ifindex)
1243{
1244 struct net_device *master_dev;
1245 const struct net_device_ops *ops;
1246 int err;
1247
1248 if (dev->master) {
1249 if (dev->master->ifindex == ifindex)
1250 return 0;
1251 ops = dev->master->netdev_ops;
1252 if (ops->ndo_del_slave) {
1253 err = ops->ndo_del_slave(dev->master, dev);
1254 if (err)
1255 return err;
1256 } else {
1257 return -EOPNOTSUPP;
1258 }
1259 }
1260
1261 if (ifindex) {
1262 master_dev = __dev_get_by_index(dev_net(dev), ifindex);
1263 if (!master_dev)
1264 return -EINVAL;
1265 ops = master_dev->netdev_ops;
1266 if (ops->ndo_add_slave) {
1267 err = ops->ndo_add_slave(master_dev, dev);
1268 if (err)
1269 return err;
1270 } else {
1271 return -EOPNOTSUPP;
1272 }
1273 }
1274 return 0;
1275}
1276
Patrick McHardy0157f602007-06-13 12:03:36 -07001277static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
Patrick McHardy38f7b872007-06-13 12:03:51 -07001278 struct nlattr **tb, char *ifname, int modified)
Patrick McHardy0157f602007-06-13 12:03:36 -07001279{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001280 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001281 int send_addr_notify = 0;
Patrick McHardy0157f602007-06-13 12:03:36 -07001282 int err;
1283
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001284 if (tb[IFLA_NET_NS_PID] || tb[IFLA_NET_NS_FD]) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001285 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001286 if (IS_ERR(net)) {
1287 err = PTR_ERR(net);
1288 goto errout;
1289 }
1290 err = dev_change_net_namespace(dev, net, ifname);
1291 put_net(net);
1292 if (err)
1293 goto errout;
1294 modified = 1;
1295 }
1296
Patrick McHardy0157f602007-06-13 12:03:36 -07001297 if (tb[IFLA_MAP]) {
1298 struct rtnl_link_ifmap *u_map;
1299 struct ifmap k_map;
1300
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001301 if (!ops->ndo_set_config) {
Patrick McHardy0157f602007-06-13 12:03:36 -07001302 err = -EOPNOTSUPP;
1303 goto errout;
1304 }
1305
1306 if (!netif_device_present(dev)) {
1307 err = -ENODEV;
1308 goto errout;
1309 }
1310
1311 u_map = nla_data(tb[IFLA_MAP]);
1312 k_map.mem_start = (unsigned long) u_map->mem_start;
1313 k_map.mem_end = (unsigned long) u_map->mem_end;
1314 k_map.base_addr = (unsigned short) u_map->base_addr;
1315 k_map.irq = (unsigned char) u_map->irq;
1316 k_map.dma = (unsigned char) u_map->dma;
1317 k_map.port = (unsigned char) u_map->port;
1318
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001319 err = ops->ndo_set_config(dev, &k_map);
Patrick McHardy0157f602007-06-13 12:03:36 -07001320 if (err < 0)
1321 goto errout;
1322
1323 modified = 1;
1324 }
1325
1326 if (tb[IFLA_ADDRESS]) {
1327 struct sockaddr *sa;
1328 int len;
1329
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001330 if (!ops->ndo_set_mac_address) {
Patrick McHardy0157f602007-06-13 12:03:36 -07001331 err = -EOPNOTSUPP;
1332 goto errout;
1333 }
1334
1335 if (!netif_device_present(dev)) {
1336 err = -ENODEV;
1337 goto errout;
1338 }
1339
1340 len = sizeof(sa_family_t) + dev->addr_len;
1341 sa = kmalloc(len, GFP_KERNEL);
1342 if (!sa) {
1343 err = -ENOMEM;
1344 goto errout;
1345 }
1346 sa->sa_family = dev->type;
1347 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
1348 dev->addr_len);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001349 err = ops->ndo_set_mac_address(dev, sa);
Patrick McHardy0157f602007-06-13 12:03:36 -07001350 kfree(sa);
1351 if (err)
1352 goto errout;
1353 send_addr_notify = 1;
1354 modified = 1;
1355 }
1356
1357 if (tb[IFLA_MTU]) {
1358 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1359 if (err < 0)
1360 goto errout;
1361 modified = 1;
1362 }
1363
Vlad Dogarucbda10f2011-01-13 23:38:30 +00001364 if (tb[IFLA_GROUP]) {
1365 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
1366 modified = 1;
1367 }
1368
Patrick McHardy0157f602007-06-13 12:03:36 -07001369 /*
1370 * Interface selected by interface index but interface
1371 * name provided implies that a name change has been
1372 * requested.
1373 */
1374 if (ifm->ifi_index > 0 && ifname[0]) {
1375 err = dev_change_name(dev, ifname);
1376 if (err < 0)
1377 goto errout;
1378 modified = 1;
1379 }
1380
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001381 if (tb[IFLA_IFALIAS]) {
1382 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
1383 nla_len(tb[IFLA_IFALIAS]));
1384 if (err < 0)
1385 goto errout;
1386 modified = 1;
1387 }
1388
Patrick McHardy0157f602007-06-13 12:03:36 -07001389 if (tb[IFLA_BROADCAST]) {
1390 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
1391 send_addr_notify = 1;
1392 }
1393
1394 if (ifm->ifi_flags || ifm->ifi_change) {
Patrick McHardy3729d502010-02-26 06:34:54 +00001395 err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
Johannes Berg5f9021c2008-11-16 23:20:31 -08001396 if (err < 0)
1397 goto errout;
Patrick McHardy0157f602007-06-13 12:03:36 -07001398 }
1399
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001400 if (tb[IFLA_MASTER]) {
1401 err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER]));
1402 if (err)
1403 goto errout;
1404 modified = 1;
1405 }
1406
David S. Miller93b2d4a2008-02-17 18:35:07 -08001407 if (tb[IFLA_TXQLEN])
1408 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
Patrick McHardy0157f602007-06-13 12:03:36 -07001409
Patrick McHardy0157f602007-06-13 12:03:36 -07001410 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001411 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Patrick McHardy0157f602007-06-13 12:03:36 -07001412
1413 if (tb[IFLA_LINKMODE]) {
David S. Miller93b2d4a2008-02-17 18:35:07 -08001414 write_lock_bh(&dev_base_lock);
1415 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1416 write_unlock_bh(&dev_base_lock);
Patrick McHardy0157f602007-06-13 12:03:36 -07001417 }
1418
Chris Wrightc02db8c2010-05-16 01:05:45 -07001419 if (tb[IFLA_VFINFO_LIST]) {
1420 struct nlattr *attr;
1421 int rem;
1422 nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) {
David Howells253683b2010-05-21 02:25:27 +00001423 if (nla_type(attr) != IFLA_VF_INFO) {
1424 err = -EINVAL;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001425 goto errout;
David Howells253683b2010-05-21 02:25:27 +00001426 }
Chris Wrightc02db8c2010-05-16 01:05:45 -07001427 err = do_setvfinfo(dev, attr);
1428 if (err < 0)
1429 goto errout;
1430 modified = 1;
1431 }
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001432 }
Patrick McHardy0157f602007-06-13 12:03:36 -07001433 err = 0;
1434
Scott Feldman57b61082010-05-17 22:49:55 -07001435 if (tb[IFLA_VF_PORTS]) {
1436 struct nlattr *port[IFLA_PORT_MAX+1];
1437 struct nlattr *attr;
1438 int vf;
1439 int rem;
1440
1441 err = -EOPNOTSUPP;
1442 if (!ops->ndo_set_vf_port)
1443 goto errout;
1444
1445 nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) {
1446 if (nla_type(attr) != IFLA_VF_PORT)
1447 continue;
1448 err = nla_parse_nested(port, IFLA_PORT_MAX,
1449 attr, ifla_port_policy);
1450 if (err < 0)
1451 goto errout;
1452 if (!port[IFLA_PORT_VF]) {
1453 err = -EOPNOTSUPP;
1454 goto errout;
1455 }
1456 vf = nla_get_u32(port[IFLA_PORT_VF]);
1457 err = ops->ndo_set_vf_port(dev, vf, port);
1458 if (err < 0)
1459 goto errout;
1460 modified = 1;
1461 }
1462 }
1463 err = 0;
1464
1465 if (tb[IFLA_PORT_SELF]) {
1466 struct nlattr *port[IFLA_PORT_MAX+1];
1467
1468 err = nla_parse_nested(port, IFLA_PORT_MAX,
1469 tb[IFLA_PORT_SELF], ifla_port_policy);
1470 if (err < 0)
1471 goto errout;
1472
1473 err = -EOPNOTSUPP;
1474 if (ops->ndo_set_vf_port)
1475 err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port);
1476 if (err < 0)
1477 goto errout;
1478 modified = 1;
1479 }
Thomas Graff8ff1822010-11-16 04:30:14 +00001480
1481 if (tb[IFLA_AF_SPEC]) {
1482 struct nlattr *af;
1483 int rem;
1484
1485 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1486 const struct rtnl_af_ops *af_ops;
1487
1488 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001489 BUG();
Thomas Graff8ff1822010-11-16 04:30:14 +00001490
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001491 err = af_ops->set_link_af(dev, af);
Thomas Graff8ff1822010-11-16 04:30:14 +00001492 if (err < 0)
1493 goto errout;
1494
1495 modified = 1;
1496 }
1497 }
Scott Feldman57b61082010-05-17 22:49:55 -07001498 err = 0;
1499
Patrick McHardy0157f602007-06-13 12:03:36 -07001500errout:
1501 if (err < 0 && modified && net_ratelimit())
1502 printk(KERN_WARNING "A link change request failed with "
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001503 "some changes committed already. Interface %s may "
Patrick McHardy0157f602007-06-13 12:03:36 -07001504 "have been left with an inconsistent configuration, "
1505 "please check.\n", dev->name);
1506
1507 if (send_addr_notify)
1508 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
1509 return err;
1510}
1511
Thomas Grafda5e0492006-08-10 21:17:37 -07001512static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001514 struct net *net = sock_net(skb->sk);
Thomas Grafda5e0492006-08-10 21:17:37 -07001515 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -07001517 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -07001518 struct nlattr *tb[IFLA_MAX+1];
1519 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Thomas Grafda5e0492006-08-10 21:17:37 -07001521 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1522 if (err < 0)
1523 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Thomas Graf5176f912006-08-26 20:13:18 -07001525 if (tb[IFLA_IFNAME])
1526 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -07001527 else
1528 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -07001531 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -07001532 if (ifm->ifi_index > 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001533 dev = __dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -07001534 else if (tb[IFLA_IFNAME])
Eric Dumazeta3d12892009-10-21 10:59:31 +00001535 dev = __dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -07001536 else
1537 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Thomas Grafda5e0492006-08-10 21:17:37 -07001539 if (dev == NULL) {
1540 err = -ENODEV;
1541 goto errout;
1542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Eric Dumazete0d087a2009-11-07 01:26:17 -08001544 err = validate_linkmsg(dev, tb);
1545 if (err < 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001546 goto errout;
Thomas Grafda5e0492006-08-10 21:17:37 -07001547
Patrick McHardy38f7b872007-06-13 12:03:51 -07001548 err = do_setlink(dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -07001549errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 return err;
1551}
1552
Patrick McHardy38f7b872007-06-13 12:03:51 -07001553static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1554{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001555 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001556 const struct rtnl_link_ops *ops;
1557 struct net_device *dev;
1558 struct ifinfomsg *ifm;
1559 char ifname[IFNAMSIZ];
1560 struct nlattr *tb[IFLA_MAX+1];
1561 int err;
Eric Dumazet226bd342011-05-08 23:17:57 +00001562 LIST_HEAD(list_kill);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001563
1564 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1565 if (err < 0)
1566 return err;
1567
1568 if (tb[IFLA_IFNAME])
1569 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1570
1571 ifm = nlmsg_data(nlh);
1572 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001573 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001574 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001575 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001576 else
1577 return -EINVAL;
1578
1579 if (!dev)
1580 return -ENODEV;
1581
1582 ops = dev->rtnl_link_ops;
1583 if (!ops)
1584 return -EOPNOTSUPP;
1585
Eric Dumazet226bd342011-05-08 23:17:57 +00001586 ops->dellink(dev, &list_kill);
1587 unregister_netdevice_many(&list_kill);
1588 list_del(&list_kill);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001589 return 0;
1590}
1591
Patrick McHardy3729d502010-02-26 06:34:54 +00001592int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
1593{
1594 unsigned int old_flags;
1595 int err;
1596
1597 old_flags = dev->flags;
1598 if (ifm && (ifm->ifi_flags || ifm->ifi_change)) {
1599 err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
1600 if (err < 0)
1601 return err;
1602 }
1603
1604 dev->rtnl_link_state = RTNL_LINK_INITIALIZED;
1605 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1606
1607 __dev_notify_flags(dev, old_flags);
1608 return 0;
1609}
1610EXPORT_SYMBOL(rtnl_configure_link);
1611
Eric W. Biederman81adee42009-11-08 00:53:51 -08001612struct net_device *rtnl_create_link(struct net *src_net, struct net *net,
1613 char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[])
Pavel Emelianove7199282007-08-08 22:16:38 -07001614{
1615 int err;
1616 struct net_device *dev;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001617 unsigned int num_queues = 1;
1618 unsigned int real_num_queues = 1;
Pavel Emelianove7199282007-08-08 22:16:38 -07001619
Eric Dumazet2e59af32009-09-02 18:03:00 -07001620 if (ops->get_tx_queues) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001621 err = ops->get_tx_queues(src_net, tb, &num_queues,
Eric Dumazete0d087a2009-11-07 01:26:17 -08001622 &real_num_queues);
Eric Dumazet2e59af32009-09-02 18:03:00 -07001623 if (err)
1624 goto err;
1625 }
Pavel Emelianove7199282007-08-08 22:16:38 -07001626 err = -ENOMEM;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001627 dev = alloc_netdev_mq(ops->priv_size, ifname, ops->setup, num_queues);
Pavel Emelianove7199282007-08-08 22:16:38 -07001628 if (!dev)
1629 goto err;
1630
Eric W. Biederman81adee42009-11-08 00:53:51 -08001631 dev_net_set(dev, net);
1632 dev->rtnl_link_ops = ops;
Patrick McHardy3729d502010-02-26 06:34:54 +00001633 dev->rtnl_link_state = RTNL_LINK_INITIALIZING;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001634
Pavel Emelianove7199282007-08-08 22:16:38 -07001635 if (tb[IFLA_MTU])
1636 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
1637 if (tb[IFLA_ADDRESS])
1638 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1639 nla_len(tb[IFLA_ADDRESS]));
1640 if (tb[IFLA_BROADCAST])
1641 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1642 nla_len(tb[IFLA_BROADCAST]));
1643 if (tb[IFLA_TXQLEN])
1644 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1645 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001646 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001647 if (tb[IFLA_LINKMODE])
1648 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
Patrick McHardyffa934f2011-01-20 03:00:42 +00001649 if (tb[IFLA_GROUP])
1650 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001651
1652 return dev;
1653
Pavel Emelianove7199282007-08-08 22:16:38 -07001654err:
1655 return ERR_PTR(err);
1656}
Eric Dumazete0d087a2009-11-07 01:26:17 -08001657EXPORT_SYMBOL(rtnl_create_link);
Pavel Emelianove7199282007-08-08 22:16:38 -07001658
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001659static int rtnl_group_changelink(struct net *net, int group,
1660 struct ifinfomsg *ifm,
1661 struct nlattr **tb)
1662{
1663 struct net_device *dev;
1664 int err;
1665
1666 for_each_netdev(net, dev) {
1667 if (dev->group == group) {
1668 err = do_setlink(dev, ifm, tb, NULL, 0);
1669 if (err < 0)
1670 return err;
1671 }
1672 }
1673
1674 return 0;
1675}
1676
Patrick McHardy38f7b872007-06-13 12:03:51 -07001677static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1678{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001679 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001680 const struct rtnl_link_ops *ops;
1681 struct net_device *dev;
1682 struct ifinfomsg *ifm;
1683 char kind[MODULE_NAME_LEN];
1684 char ifname[IFNAMSIZ];
1685 struct nlattr *tb[IFLA_MAX+1];
1686 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1687 int err;
1688
Johannes Berg95a5afc2008-10-16 15:24:51 -07001689#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001690replay:
Thomas Graf8072f082007-07-31 14:13:50 -07001691#endif
Patrick McHardy38f7b872007-06-13 12:03:51 -07001692 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1693 if (err < 0)
1694 return err;
1695
1696 if (tb[IFLA_IFNAME])
1697 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1698 else
1699 ifname[0] = '\0';
1700
1701 ifm = nlmsg_data(nlh);
1702 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001703 dev = __dev_get_by_index(net, ifm->ifi_index);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001704 else {
1705 if (ifname[0])
1706 dev = __dev_get_by_name(net, ifname);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001707 else
1708 dev = NULL;
1709 }
Patrick McHardy38f7b872007-06-13 12:03:51 -07001710
Eric Dumazete0d087a2009-11-07 01:26:17 -08001711 err = validate_linkmsg(dev, tb);
1712 if (err < 0)
Thomas Graf1840bb12008-02-23 19:54:36 -08001713 return err;
1714
Patrick McHardy38f7b872007-06-13 12:03:51 -07001715 if (tb[IFLA_LINKINFO]) {
1716 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1717 tb[IFLA_LINKINFO], ifla_info_policy);
1718 if (err < 0)
1719 return err;
1720 } else
1721 memset(linkinfo, 0, sizeof(linkinfo));
1722
1723 if (linkinfo[IFLA_INFO_KIND]) {
1724 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1725 ops = rtnl_link_ops_get(kind);
1726 } else {
1727 kind[0] = '\0';
1728 ops = NULL;
1729 }
1730
1731 if (1) {
1732 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001733 struct net *dest_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001734
1735 if (ops) {
1736 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1737 err = nla_parse_nested(attr, ops->maxtype,
1738 linkinfo[IFLA_INFO_DATA],
1739 ops->policy);
1740 if (err < 0)
1741 return err;
1742 data = attr;
1743 }
1744 if (ops->validate) {
1745 err = ops->validate(tb, data);
1746 if (err < 0)
1747 return err;
1748 }
1749 }
1750
1751 if (dev) {
1752 int modified = 0;
1753
1754 if (nlh->nlmsg_flags & NLM_F_EXCL)
1755 return -EEXIST;
1756 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1757 return -EOPNOTSUPP;
1758
1759 if (linkinfo[IFLA_INFO_DATA]) {
1760 if (!ops || ops != dev->rtnl_link_ops ||
1761 !ops->changelink)
1762 return -EOPNOTSUPP;
1763
1764 err = ops->changelink(dev, tb, data);
1765 if (err < 0)
1766 return err;
1767 modified = 1;
1768 }
1769
1770 return do_setlink(dev, ifm, tb, ifname, modified);
1771 }
1772
Patrick McHardyffa934f2011-01-20 03:00:42 +00001773 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1774 if (ifm->ifi_index == 0 && tb[IFLA_GROUP])
1775 return rtnl_group_changelink(net,
1776 nla_get_u32(tb[IFLA_GROUP]),
1777 ifm, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001778 return -ENODEV;
Patrick McHardyffa934f2011-01-20 03:00:42 +00001779 }
Patrick McHardy38f7b872007-06-13 12:03:51 -07001780
Patrick McHardy3729d502010-02-26 06:34:54 +00001781 if (ifm->ifi_index)
Patrick McHardy38f7b872007-06-13 12:03:51 -07001782 return -EOPNOTSUPP;
Patrick McHardy0e068772007-07-11 19:42:31 -07001783 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
Patrick McHardy38f7b872007-06-13 12:03:51 -07001784 return -EOPNOTSUPP;
1785
1786 if (!ops) {
Johannes Berg95a5afc2008-10-16 15:24:51 -07001787#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001788 if (kind[0]) {
1789 __rtnl_unlock();
1790 request_module("rtnl-link-%s", kind);
1791 rtnl_lock();
1792 ops = rtnl_link_ops_get(kind);
1793 if (ops)
1794 goto replay;
1795 }
1796#endif
1797 return -EOPNOTSUPP;
1798 }
1799
1800 if (!ifname[0])
1801 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001802
Eric W. Biederman81adee42009-11-08 00:53:51 -08001803 dest_net = rtnl_link_get_net(net, tb);
Eric W. Biederman13ad1772011-01-29 14:57:22 +00001804 if (IS_ERR(dest_net))
1805 return PTR_ERR(dest_net);
1806
Eric W. Biederman81adee42009-11-08 00:53:51 -08001807 dev = rtnl_create_link(net, dest_net, ifname, ops, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001808
Pavel Emelianove7199282007-08-08 22:16:38 -07001809 if (IS_ERR(dev))
1810 err = PTR_ERR(dev);
1811 else if (ops->newlink)
Eric W. Biederman81adee42009-11-08 00:53:51 -08001812 err = ops->newlink(net, dev, tb, data);
Patrick McHardy2d85cba2007-07-11 19:42:13 -07001813 else
1814 err = register_netdevice(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001815
1816 if (err < 0 && !IS_ERR(dev))
Patrick McHardy38f7b872007-06-13 12:03:51 -07001817 free_netdev(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001818 if (err < 0)
Patrick McHardy3729d502010-02-26 06:34:54 +00001819 goto out;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001820
Patrick McHardy3729d502010-02-26 06:34:54 +00001821 err = rtnl_configure_link(dev, ifm);
1822 if (err < 0)
1823 unregister_netdevice(dev);
1824out:
Eric W. Biederman81adee42009-11-08 00:53:51 -08001825 put_net(dest_net);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001826 return err;
1827 }
1828}
1829
Thomas Grafb60c5112006-08-04 23:05:34 -07001830static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001831{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001832 struct net *net = sock_net(skb->sk);
Thomas Grafb60c5112006-08-04 23:05:34 -07001833 struct ifinfomsg *ifm;
Eric Dumazeta3d12892009-10-21 10:59:31 +00001834 char ifname[IFNAMSIZ];
Thomas Grafb60c5112006-08-04 23:05:34 -07001835 struct nlattr *tb[IFLA_MAX+1];
1836 struct net_device *dev = NULL;
1837 struct sk_buff *nskb;
Thomas Graf339bf982006-11-10 14:10:15 -08001838 int err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001839
Thomas Grafb60c5112006-08-04 23:05:34 -07001840 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1841 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07001842 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07001843
Eric Dumazeta3d12892009-10-21 10:59:31 +00001844 if (tb[IFLA_IFNAME])
1845 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1846
Thomas Grafb60c5112006-08-04 23:05:34 -07001847 ifm = nlmsg_data(nlh);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001848 if (ifm->ifi_index > 0)
1849 dev = __dev_get_by_index(net, ifm->ifi_index);
1850 else if (tb[IFLA_IFNAME])
1851 dev = __dev_get_by_name(net, ifname);
1852 else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001853 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07001854
Eric Dumazeta3d12892009-10-21 10:59:31 +00001855 if (dev == NULL)
1856 return -ENODEV;
1857
Patrick McHardy38f7b872007-06-13 12:03:51 -07001858 nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001859 if (nskb == NULL)
1860 return -ENOBUFS;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001861
Patrick McHardy575c3e22007-05-22 17:00:49 -07001862 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1863 nlh->nlmsg_seq, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001864 if (err < 0) {
1865 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1866 WARN_ON(err == -EMSGSIZE);
1867 kfree_skb(nskb);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001868 } else
1869 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid);
Thomas Grafb60c5112006-08-04 23:05:34 -07001870
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001871 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001872}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001873
Greg Rosec7ac8672011-06-10 01:27:09 +00001874static u16 rtnl_calcit(struct sk_buff *skb)
1875{
1876 return min_ifinfo_dump_size;
1877}
1878
Adrian Bunk42bad1d2007-04-26 00:57:41 -07001879static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
1881 int idx;
1882 int s_idx = cb->family;
1883
1884 if (s_idx == 0)
1885 s_idx = 1;
Patrick McHardy25239ce2010-04-26 16:02:05 +02001886 for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 int type = cb->nlh->nlmsg_type-RTM_BASE;
1888 if (idx < s_idx || idx == PF_PACKET)
1889 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07001890 if (rtnl_msg_handlers[idx] == NULL ||
1891 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 continue;
1893 if (idx > s_idx)
1894 memset(&cb->args[0], 0, sizeof(cb->args));
Thomas Grafe2849862007-03-22 11:48:11 -07001895 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 break;
1897 }
1898 cb->family = idx;
1899
1900 return skb->len;
1901}
1902
1903void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1904{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001905 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001907 int err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00001908 size_t if_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Greg Rosec7ac8672011-06-10 01:27:09 +00001910 skb = nlmsg_new((if_info_size = if_nlmsg_size(dev)), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001911 if (skb == NULL)
1912 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Greg Rosec7ac8672011-06-10 01:27:09 +00001914 min_ifinfo_dump_size = max_t(u16, if_info_size, min_ifinfo_dump_size);
1915
Patrick McHardy575c3e22007-05-22 17:00:49 -07001916 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001917 if (err < 0) {
1918 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1919 WARN_ON(err == -EMSGSIZE);
1920 kfree_skb(skb);
1921 goto errout;
1922 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001923 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1924 return;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001925errout:
1926 if (err < 0)
Eric W. Biederman4b3da702007-11-19 22:27:40 -08001927 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928}
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930/* Protected by RTNL sempahore. */
1931static struct rtattr **rta_buf;
1932static int rtattr_max;
1933
1934/* Process one rtnetlink message. */
1935
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001936static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001938 struct net *net = sock_net(skb->sk);
Thomas Grafe2849862007-03-22 11:48:11 -07001939 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 int sz_idx, kind;
1941 int min_len;
1942 int family;
1943 int type;
Eric Dumazet2907c352011-05-25 07:34:04 +00001944 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07001948 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 type -= RTM_BASE;
1951
1952 /* All the messages must have at least 1 byte length */
1953 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1954 return 0;
1955
Eric Dumazete0d087a2009-11-07 01:26:17 -08001956 family = ((struct rtgenmsg *)NLMSG_DATA(nlh))->rtgen_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 sz_idx = type>>2;
1958 kind = type&3;
1959
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001960 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
1961 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
David S. Millerb8f3ab42011-01-18 12:40:38 -08001963 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001964 struct sock *rtnl;
Thomas Grafe2849862007-03-22 11:48:11 -07001965 rtnl_dumpit_func dumpit;
Greg Rosec7ac8672011-06-10 01:27:09 +00001966 rtnl_calcit_func calcit;
1967 u16 min_dump_alloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Thomas Grafe2849862007-03-22 11:48:11 -07001969 dumpit = rtnl_get_dumpit(family, type);
1970 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001971 return -EOPNOTSUPP;
Greg Rosec7ac8672011-06-10 01:27:09 +00001972 calcit = rtnl_get_calcit(family, type);
1973 if (calcit)
1974 min_dump_alloc = calcit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Eric Dumazet2907c352011-05-25 07:34:04 +00001976 __rtnl_unlock();
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001977 rtnl = net->rtnl;
Greg Rosec7ac8672011-06-10 01:27:09 +00001978 err = netlink_dump_start(rtnl, skb, nlh, dumpit,
1979 NULL, min_dump_alloc);
Eric Dumazet2907c352011-05-25 07:34:04 +00001980 rtnl_lock();
1981 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 }
1983
1984 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
1985
1986 min_len = rtm_min[sz_idx];
1987 if (nlh->nlmsg_len < min_len)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001988 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990 if (nlh->nlmsg_len > min_len) {
1991 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
Eric Dumazete0d087a2009-11-07 01:26:17 -08001992 struct rtattr *attr = (void *)nlh + NLMSG_ALIGN(min_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 while (RTA_OK(attr, attrlen)) {
1995 unsigned flavor = attr->rta_type;
1996 if (flavor) {
1997 if (flavor > rta_max[sz_idx])
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001998 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 rta_buf[flavor-1] = attr;
2000 }
2001 attr = RTA_NEXT(attr, attrlen);
2002 }
2003 }
2004
Thomas Grafe2849862007-03-22 11:48:11 -07002005 doit = rtnl_get_doit(family, type);
2006 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07002007 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002009 return doit(skb, nlh, (void *)&rta_buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010}
2011
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002012static void rtnetlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002014 rtnl_lock();
2015 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
2016 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017}
2018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
2020{
2021 struct net_device *dev = ptr;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 case NETDEV_UP:
2025 case NETDEV_DOWN:
Patrick McHardy10de05a2010-02-26 06:34:50 +00002026 case NETDEV_PRE_UP:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00002027 case NETDEV_POST_INIT:
2028 case NETDEV_REGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 case NETDEV_CHANGE:
Patrick McHardy755d0e72010-03-19 04:42:24 +00002030 case NETDEV_PRE_TYPE_CHANGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 case NETDEV_GOING_DOWN:
Patrick McHardya2835762010-02-26 06:34:51 +00002032 case NETDEV_UNREGISTER:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00002033 case NETDEV_UNREGISTER_BATCH:
Amerigo Wangac3d3f82011-05-19 23:06:32 +00002034 case NETDEV_RELEASE:
2035 case NETDEV_JOIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 break;
2037 default:
2038 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
2039 break;
2040 }
2041 return NOTIFY_DONE;
2042}
2043
2044static struct notifier_block rtnetlink_dev_notifier = {
2045 .notifier_call = rtnetlink_event,
2046};
2047
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002048
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002049static int __net_init rtnetlink_net_init(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002050{
2051 struct sock *sk;
2052 sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX,
Eric Dumazet2907c352011-05-25 07:34:04 +00002053 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002054 if (!sk)
2055 return -ENOMEM;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002056 net->rtnl = sk;
2057 return 0;
2058}
2059
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002060static void __net_exit rtnetlink_net_exit(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002061{
Denis V. Lunev775516b2008-01-18 23:55:19 -08002062 netlink_kernel_release(net->rtnl);
2063 net->rtnl = NULL;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002064}
2065
2066static struct pernet_operations rtnetlink_net_ops = {
2067 .init = rtnetlink_net_init,
2068 .exit = rtnetlink_net_exit,
2069};
2070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071void __init rtnetlink_init(void)
2072{
2073 int i;
2074
2075 rtattr_max = 0;
2076 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
2077 if (rta_max[i] > rtattr_max)
2078 rtattr_max = rta_max[i];
2079 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
2080 if (!rta_buf)
2081 panic("rtnetlink_init: cannot allocate rta_buf\n");
2082
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002083 if (register_pernet_subsys(&rtnetlink_net_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 panic("rtnetlink_init: cannot initialize rtnetlink\n");
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
2087 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07002088
Greg Rosec7ac8672011-06-10 01:27:09 +00002089 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink,
2090 rtnl_dump_ifinfo, rtnl_calcit);
2091 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL, NULL);
2092 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL, NULL);
2093 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07002094
Greg Rosec7ac8672011-06-10 01:27:09 +00002095 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all, NULL);
2096 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097}
2098