blob: a798fc6f2aa1180c35158cea6ef0684f0cafbe35 [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)) +
734 nla_total_size(sizeof(struct ifla_vf_tx_rate)));
Chris Wrightc02db8c2010-05-16 01:05:45 -0700735 return size;
736 } else
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000737 return 0;
738}
739
Scott Feldman57b61082010-05-17 22:49:55 -0700740static size_t rtnl_port_size(const struct net_device *dev)
741{
742 size_t port_size = nla_total_size(4) /* PORT_VF */
743 + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */
744 + nla_total_size(sizeof(struct ifla_port_vsi))
745 /* PORT_VSI_TYPE */
746 + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */
747 + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */
748 + nla_total_size(1) /* PROT_VDP_REQUEST */
749 + nla_total_size(2); /* PORT_VDP_RESPONSE */
750 size_t vf_ports_size = nla_total_size(sizeof(struct nlattr));
751 size_t vf_port_size = nla_total_size(sizeof(struct nlattr))
752 + port_size;
753 size_t port_self_size = nla_total_size(sizeof(struct nlattr))
754 + port_size;
755
756 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
757 return 0;
758 if (dev_num_vf(dev->dev.parent))
759 return port_self_size + vf_ports_size +
760 vf_port_size * dev_num_vf(dev->dev.parent);
761 else
762 return port_self_size;
763}
764
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000765static noinline size_t if_nlmsg_size(const struct net_device *dev)
Thomas Graf339bf982006-11-10 14:10:15 -0800766{
767 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
768 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700769 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
Thomas Graf339bf982006-11-10 14:10:15 -0800770 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
771 + nla_total_size(sizeof(struct rtnl_link_ifmap))
772 + nla_total_size(sizeof(struct rtnl_link_stats))
Jan Engelhardtadcfe192010-03-27 17:15:29 -0700773 + nla_total_size(sizeof(struct rtnl_link_stats64))
Thomas Graf339bf982006-11-10 14:10:15 -0800774 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
775 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
776 + nla_total_size(4) /* IFLA_TXQLEN */
777 + nla_total_size(4) /* IFLA_WEIGHT */
778 + nla_total_size(4) /* IFLA_MTU */
779 + nla_total_size(4) /* IFLA_LINK */
780 + nla_total_size(4) /* IFLA_MASTER */
781 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700782 + nla_total_size(1) /* IFLA_LINKMODE */
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000783 + nla_total_size(4) /* IFLA_NUM_VF */
Chris Wrightc02db8c2010-05-16 01:05:45 -0700784 + rtnl_vfinfo_size(dev) /* IFLA_VFINFO_LIST */
Scott Feldman57b61082010-05-17 22:49:55 -0700785 + rtnl_port_size(dev) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
Thomas Graff8ff1822010-11-16 04:30:14 +0000786 + rtnl_link_get_size(dev) /* IFLA_LINKINFO */
787 + rtnl_link_get_af_size(dev); /* IFLA_AF_SPEC */
Thomas Graf339bf982006-11-10 14:10:15 -0800788}
789
Scott Feldman57b61082010-05-17 22:49:55 -0700790static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev)
791{
792 struct nlattr *vf_ports;
793 struct nlattr *vf_port;
794 int vf;
795 int err;
796
797 vf_ports = nla_nest_start(skb, IFLA_VF_PORTS);
798 if (!vf_ports)
799 return -EMSGSIZE;
800
801 for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) {
802 vf_port = nla_nest_start(skb, IFLA_VF_PORT);
Scott Feldman8ca94182010-05-28 03:42:18 -0700803 if (!vf_port)
804 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700805 NLA_PUT_U32(skb, IFLA_PORT_VF, vf);
806 err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb);
Scott Feldman8ca94182010-05-28 03:42:18 -0700807 if (err == -EMSGSIZE)
808 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700809 if (err) {
Scott Feldman57b61082010-05-17 22:49:55 -0700810 nla_nest_cancel(skb, vf_port);
811 continue;
812 }
813 nla_nest_end(skb, vf_port);
814 }
815
816 nla_nest_end(skb, vf_ports);
817
818 return 0;
Scott Feldman8ca94182010-05-28 03:42:18 -0700819
820nla_put_failure:
821 nla_nest_cancel(skb, vf_ports);
822 return -EMSGSIZE;
Scott Feldman57b61082010-05-17 22:49:55 -0700823}
824
825static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev)
826{
827 struct nlattr *port_self;
828 int err;
829
830 port_self = nla_nest_start(skb, IFLA_PORT_SELF);
831 if (!port_self)
832 return -EMSGSIZE;
833
834 err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb);
835 if (err) {
836 nla_nest_cancel(skb, port_self);
Scott Feldman8ca94182010-05-28 03:42:18 -0700837 return (err == -EMSGSIZE) ? err : 0;
Scott Feldman57b61082010-05-17 22:49:55 -0700838 }
839
840 nla_nest_end(skb, port_self);
841
842 return 0;
843}
844
845static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev)
846{
847 int err;
848
849 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
850 return 0;
851
852 err = rtnl_port_self_fill(skb, dev);
853 if (err)
854 return err;
855
856 if (dev_num_vf(dev->dev.parent)) {
857 err = rtnl_vf_ports_fill(skb, dev);
858 if (err)
859 return err;
860 }
861
862 return 0;
863}
864
Thomas Grafb60c5112006-08-04 23:05:34 -0700865static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -0700866 int type, u32 pid, u32 seq, u32 change,
867 unsigned int flags)
Thomas Grafb60c5112006-08-04 23:05:34 -0700868{
869 struct ifinfomsg *ifm;
870 struct nlmsghdr *nlh;
Eric Dumazet28172732010-07-07 14:58:56 -0700871 struct rtnl_link_stats64 temp;
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000872 const struct rtnl_link_stats64 *stats;
Thomas Graff8ff1822010-11-16 04:30:14 +0000873 struct nlattr *attr, *af_spec;
874 struct rtnl_af_ops *af_ops;
Thomas Grafb60c5112006-08-04 23:05:34 -0700875
Eric Dumazet2907c352011-05-25 07:34:04 +0000876 ASSERT_RTNL();
Thomas Grafb60c5112006-08-04 23:05:34 -0700877 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
878 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800879 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700880
881 ifm = nlmsg_data(nlh);
882 ifm->ifi_family = AF_UNSPEC;
883 ifm->__ifi_pad = 0;
884 ifm->ifi_type = dev->type;
885 ifm->ifi_index = dev->ifindex;
886 ifm->ifi_flags = dev_get_flags(dev);
887 ifm->ifi_change = change;
888
889 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
890 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
Thomas Grafb60c5112006-08-04 23:05:34 -0700891 NLA_PUT_U8(skb, IFLA_OPERSTATE,
892 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
893 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
894 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
Vlad Dogarucbda10f2011-01-13 23:38:30 +0000895 NLA_PUT_U32(skb, IFLA_GROUP, dev->group);
Thomas Grafb60c5112006-08-04 23:05:34 -0700896
897 if (dev->ifindex != dev->iflink)
898 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
899
900 if (dev->master)
901 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
902
Patrick McHardyaf356af2009-09-04 06:41:18 +0000903 if (dev->qdisc)
904 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc->ops->id);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800905
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700906 if (dev->ifalias)
907 NLA_PUT_STRING(skb, IFLA_IFALIAS, dev->ifalias);
908
Stefan Rompfb00055a2006-03-20 17:09:11 -0800909 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 struct rtnl_link_ifmap map = {
911 .mem_start = dev->mem_start,
912 .mem_end = dev->mem_end,
913 .base_addr = dev->base_addr,
914 .irq = dev->irq,
915 .dma = dev->dma,
916 .port = dev->if_port,
917 };
Thomas Grafb60c5112006-08-04 23:05:34 -0700918 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
920
921 if (dev->addr_len) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700922 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
923 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
925
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700926 attr = nla_reserve(skb, IFLA_STATS,
927 sizeof(struct rtnl_link_stats));
928 if (attr == NULL)
929 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Eric Dumazet28172732010-07-07 14:58:56 -0700931 stats = dev_get_stats(dev, &temp);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700932 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Jan Engelhardt10708f32010-03-11 09:57:29 +0000934 attr = nla_reserve(skb, IFLA_STATS64,
935 sizeof(struct rtnl_link_stats64));
936 if (attr == NULL)
937 goto nla_put_failure;
Jan Engelhardt10708f32010-03-11 09:57:29 +0000938 copy_rtnl_link_stats64(nla_data(attr), stats);
939
Scott Feldman57b61082010-05-17 22:49:55 -0700940 if (dev->dev.parent)
941 NLA_PUT_U32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent));
942
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000943 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent) {
944 int i;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000945
Chris Wrightc02db8c2010-05-16 01:05:45 -0700946 struct nlattr *vfinfo, *vf;
947 int num_vfs = dev_num_vf(dev->dev.parent);
948
Chris Wrightc02db8c2010-05-16 01:05:45 -0700949 vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST);
950 if (!vfinfo)
951 goto nla_put_failure;
952 for (i = 0; i < num_vfs; i++) {
953 struct ifla_vf_info ivi;
954 struct ifla_vf_mac vf_mac;
955 struct ifla_vf_vlan vf_vlan;
956 struct ifla_vf_tx_rate vf_tx_rate;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000957 if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi))
958 break;
Chris Wrightc02db8c2010-05-16 01:05:45 -0700959 vf_mac.vf = vf_vlan.vf = vf_tx_rate.vf = ivi.vf;
960 memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac));
961 vf_vlan.vlan = ivi.vlan;
962 vf_vlan.qos = ivi.qos;
963 vf_tx_rate.rate = ivi.tx_rate;
964 vf = nla_nest_start(skb, IFLA_VF_INFO);
965 if (!vf) {
966 nla_nest_cancel(skb, vfinfo);
967 goto nla_put_failure;
968 }
969 NLA_PUT(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac);
970 NLA_PUT(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan);
971 NLA_PUT(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate), &vf_tx_rate);
972 nla_nest_end(skb, vf);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000973 }
Chris Wrightc02db8c2010-05-16 01:05:45 -0700974 nla_nest_end(skb, vfinfo);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000975 }
Scott Feldman57b61082010-05-17 22:49:55 -0700976
977 if (rtnl_port_fill(skb, dev))
978 goto nla_put_failure;
979
Patrick McHardy38f7b872007-06-13 12:03:51 -0700980 if (dev->rtnl_link_ops) {
981 if (rtnl_link_fill(skb, dev) < 0)
982 goto nla_put_failure;
983 }
984
Thomas Graff8ff1822010-11-16 04:30:14 +0000985 if (!(af_spec = nla_nest_start(skb, IFLA_AF_SPEC)))
986 goto nla_put_failure;
987
988 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
989 if (af_ops->fill_link_af) {
990 struct nlattr *af;
991 int err;
992
993 if (!(af = nla_nest_start(skb, af_ops->family)))
994 goto nla_put_failure;
995
996 err = af_ops->fill_link_af(skb, dev);
997
998 /*
999 * Caller may return ENODATA to indicate that there
1000 * was no data to be dumped. This is not an error, it
1001 * means we should trim the attribute header and
1002 * continue.
1003 */
1004 if (err == -ENODATA)
1005 nla_nest_cancel(skb, af);
1006 else if (err < 0)
1007 goto nla_put_failure;
1008
1009 nla_nest_end(skb, af);
1010 }
1011 }
1012
1013 nla_nest_end(skb, af_spec);
1014
Thomas Grafb60c5112006-08-04 23:05:34 -07001015 return nlmsg_end(skb, nlh);
1016
1017nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08001018 nlmsg_cancel(skb, nlh);
1019 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
Thomas Grafb60c5112006-08-04 23:05:34 -07001022static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001024 struct net *net = sock_net(skb->sk);
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001025 int h, s_h;
1026 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 struct net_device *dev;
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001028 struct hlist_head *head;
1029 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001031 s_h = cb->args[0];
1032 s_idx = cb->args[1];
1033
Eric Dumazete67f88d2011-04-27 22:56:07 +00001034 rcu_read_lock();
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001035 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
1036 idx = 0;
1037 head = &net->dev_index_head[h];
Eric Dumazete67f88d2011-04-27 22:56:07 +00001038 hlist_for_each_entry_rcu(dev, node, head, index_hlist) {
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001039 if (idx < s_idx)
1040 goto cont;
1041 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
1042 NETLINK_CB(cb->skb).pid,
1043 cb->nlh->nlmsg_seq, 0,
1044 NLM_F_MULTI) <= 0)
1045 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001046cont:
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001047 idx++;
1048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001050out:
Eric Dumazete67f88d2011-04-27 22:56:07 +00001051 rcu_read_unlock();
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001052 cb->args[1] = idx;
1053 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 return skb->len;
1056}
1057
Pavel Emelianove7199282007-08-08 22:16:38 -07001058const struct nla_policy ifla_policy[IFLA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07001059 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
Patrick McHardy38f7b872007-06-13 12:03:51 -07001060 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1061 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
Thomas Graf5176f912006-08-26 20:13:18 -07001062 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -07001063 [IFLA_MTU] = { .type = NLA_U32 },
Thomas Graf76e87302008-02-19 16:12:08 -08001064 [IFLA_LINK] = { .type = NLA_U32 },
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001065 [IFLA_MASTER] = { .type = NLA_U32 },
Thomas Grafda5e0492006-08-10 21:17:37 -07001066 [IFLA_TXQLEN] = { .type = NLA_U32 },
1067 [IFLA_WEIGHT] = { .type = NLA_U32 },
1068 [IFLA_OPERSTATE] = { .type = NLA_U8 },
1069 [IFLA_LINKMODE] = { .type = NLA_U8 },
Thomas Graf76e87302008-02-19 16:12:08 -08001070 [IFLA_LINKINFO] = { .type = NLA_NESTED },
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001071 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001072 [IFLA_NET_NS_FD] = { .type = NLA_U32 },
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001073 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
Chris Wrightc02db8c2010-05-16 01:05:45 -07001074 [IFLA_VFINFO_LIST] = {. type = NLA_NESTED },
Scott Feldman57b61082010-05-17 22:49:55 -07001075 [IFLA_VF_PORTS] = { .type = NLA_NESTED },
1076 [IFLA_PORT_SELF] = { .type = NLA_NESTED },
Thomas Graff8ff1822010-11-16 04:30:14 +00001077 [IFLA_AF_SPEC] = { .type = NLA_NESTED },
Thomas Grafda5e0492006-08-10 21:17:37 -07001078};
Eric Dumazete0d087a2009-11-07 01:26:17 -08001079EXPORT_SYMBOL(ifla_policy);
Thomas Grafda5e0492006-08-10 21:17:37 -07001080
Patrick McHardy38f7b872007-06-13 12:03:51 -07001081static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
1082 [IFLA_INFO_KIND] = { .type = NLA_STRING },
1083 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
1084};
1085
Chris Wrightc02db8c2010-05-16 01:05:45 -07001086static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = {
1087 [IFLA_VF_INFO] = { .type = NLA_NESTED },
1088};
1089
1090static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
1091 [IFLA_VF_MAC] = { .type = NLA_BINARY,
1092 .len = sizeof(struct ifla_vf_mac) },
1093 [IFLA_VF_VLAN] = { .type = NLA_BINARY,
1094 .len = sizeof(struct ifla_vf_vlan) },
1095 [IFLA_VF_TX_RATE] = { .type = NLA_BINARY,
1096 .len = sizeof(struct ifla_vf_tx_rate) },
1097};
1098
Scott Feldman57b61082010-05-17 22:49:55 -07001099static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = {
1100 [IFLA_PORT_VF] = { .type = NLA_U32 },
1101 [IFLA_PORT_PROFILE] = { .type = NLA_STRING,
1102 .len = PORT_PROFILE_MAX },
1103 [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY,
1104 .len = sizeof(struct ifla_port_vsi)},
1105 [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY,
1106 .len = PORT_UUID_MAX },
1107 [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING,
1108 .len = PORT_UUID_MAX },
1109 [IFLA_PORT_REQUEST] = { .type = NLA_U8, },
1110 [IFLA_PORT_RESPONSE] = { .type = NLA_U16, },
1111};
1112
Eric W. Biederman81adee42009-11-08 00:53:51 -08001113struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
1114{
1115 struct net *net;
1116 /* Examine the link attributes and figure out which
1117 * network namespace we are talking about.
1118 */
1119 if (tb[IFLA_NET_NS_PID])
1120 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001121 else if (tb[IFLA_NET_NS_FD])
1122 net = get_net_ns_by_fd(nla_get_u32(tb[IFLA_NET_NS_FD]));
Eric W. Biederman81adee42009-11-08 00:53:51 -08001123 else
1124 net = get_net(src_net);
1125 return net;
1126}
1127EXPORT_SYMBOL(rtnl_link_get_net);
1128
Thomas Graf1840bb12008-02-23 19:54:36 -08001129static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
1130{
1131 if (dev) {
1132 if (tb[IFLA_ADDRESS] &&
1133 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
1134 return -EINVAL;
1135
1136 if (tb[IFLA_BROADCAST] &&
1137 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
1138 return -EINVAL;
1139 }
1140
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001141 if (tb[IFLA_AF_SPEC]) {
1142 struct nlattr *af;
1143 int rem, err;
1144
1145 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1146 const struct rtnl_af_ops *af_ops;
1147
1148 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
1149 return -EAFNOSUPPORT;
1150
1151 if (!af_ops->set_link_af)
1152 return -EOPNOTSUPP;
1153
1154 if (af_ops->validate_link_af) {
Kurt Van Dijck6d3a9a62011-01-26 04:55:24 +00001155 err = af_ops->validate_link_af(dev, af);
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001156 if (err < 0)
1157 return err;
1158 }
1159 }
1160 }
1161
Thomas Graf1840bb12008-02-23 19:54:36 -08001162 return 0;
1163}
1164
Chris Wrightc02db8c2010-05-16 01:05:45 -07001165static int do_setvfinfo(struct net_device *dev, struct nlattr *attr)
1166{
1167 int rem, err = -EINVAL;
1168 struct nlattr *vf;
1169 const struct net_device_ops *ops = dev->netdev_ops;
1170
1171 nla_for_each_nested(vf, attr, rem) {
1172 switch (nla_type(vf)) {
1173 case IFLA_VF_MAC: {
1174 struct ifla_vf_mac *ivm;
1175 ivm = nla_data(vf);
1176 err = -EOPNOTSUPP;
1177 if (ops->ndo_set_vf_mac)
1178 err = ops->ndo_set_vf_mac(dev, ivm->vf,
1179 ivm->mac);
1180 break;
1181 }
1182 case IFLA_VF_VLAN: {
1183 struct ifla_vf_vlan *ivv;
1184 ivv = nla_data(vf);
1185 err = -EOPNOTSUPP;
1186 if (ops->ndo_set_vf_vlan)
1187 err = ops->ndo_set_vf_vlan(dev, ivv->vf,
1188 ivv->vlan,
1189 ivv->qos);
1190 break;
1191 }
1192 case IFLA_VF_TX_RATE: {
1193 struct ifla_vf_tx_rate *ivt;
1194 ivt = nla_data(vf);
1195 err = -EOPNOTSUPP;
1196 if (ops->ndo_set_vf_tx_rate)
1197 err = ops->ndo_set_vf_tx_rate(dev, ivt->vf,
1198 ivt->rate);
1199 break;
1200 }
1201 default:
1202 err = -EINVAL;
1203 break;
1204 }
1205 if (err)
1206 break;
1207 }
1208 return err;
1209}
1210
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001211static int do_set_master(struct net_device *dev, int ifindex)
1212{
1213 struct net_device *master_dev;
1214 const struct net_device_ops *ops;
1215 int err;
1216
1217 if (dev->master) {
1218 if (dev->master->ifindex == ifindex)
1219 return 0;
1220 ops = dev->master->netdev_ops;
1221 if (ops->ndo_del_slave) {
1222 err = ops->ndo_del_slave(dev->master, dev);
1223 if (err)
1224 return err;
1225 } else {
1226 return -EOPNOTSUPP;
1227 }
1228 }
1229
1230 if (ifindex) {
1231 master_dev = __dev_get_by_index(dev_net(dev), ifindex);
1232 if (!master_dev)
1233 return -EINVAL;
1234 ops = master_dev->netdev_ops;
1235 if (ops->ndo_add_slave) {
1236 err = ops->ndo_add_slave(master_dev, dev);
1237 if (err)
1238 return err;
1239 } else {
1240 return -EOPNOTSUPP;
1241 }
1242 }
1243 return 0;
1244}
1245
Patrick McHardy0157f602007-06-13 12:03:36 -07001246static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
Patrick McHardy38f7b872007-06-13 12:03:51 -07001247 struct nlattr **tb, char *ifname, int modified)
Patrick McHardy0157f602007-06-13 12:03:36 -07001248{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001249 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001250 int send_addr_notify = 0;
Patrick McHardy0157f602007-06-13 12:03:36 -07001251 int err;
1252
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001253 if (tb[IFLA_NET_NS_PID] || tb[IFLA_NET_NS_FD]) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001254 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001255 if (IS_ERR(net)) {
1256 err = PTR_ERR(net);
1257 goto errout;
1258 }
1259 err = dev_change_net_namespace(dev, net, ifname);
1260 put_net(net);
1261 if (err)
1262 goto errout;
1263 modified = 1;
1264 }
1265
Patrick McHardy0157f602007-06-13 12:03:36 -07001266 if (tb[IFLA_MAP]) {
1267 struct rtnl_link_ifmap *u_map;
1268 struct ifmap k_map;
1269
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001270 if (!ops->ndo_set_config) {
Patrick McHardy0157f602007-06-13 12:03:36 -07001271 err = -EOPNOTSUPP;
1272 goto errout;
1273 }
1274
1275 if (!netif_device_present(dev)) {
1276 err = -ENODEV;
1277 goto errout;
1278 }
1279
1280 u_map = nla_data(tb[IFLA_MAP]);
1281 k_map.mem_start = (unsigned long) u_map->mem_start;
1282 k_map.mem_end = (unsigned long) u_map->mem_end;
1283 k_map.base_addr = (unsigned short) u_map->base_addr;
1284 k_map.irq = (unsigned char) u_map->irq;
1285 k_map.dma = (unsigned char) u_map->dma;
1286 k_map.port = (unsigned char) u_map->port;
1287
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001288 err = ops->ndo_set_config(dev, &k_map);
Patrick McHardy0157f602007-06-13 12:03:36 -07001289 if (err < 0)
1290 goto errout;
1291
1292 modified = 1;
1293 }
1294
1295 if (tb[IFLA_ADDRESS]) {
1296 struct sockaddr *sa;
1297 int len;
1298
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001299 if (!ops->ndo_set_mac_address) {
Patrick McHardy0157f602007-06-13 12:03:36 -07001300 err = -EOPNOTSUPP;
1301 goto errout;
1302 }
1303
1304 if (!netif_device_present(dev)) {
1305 err = -ENODEV;
1306 goto errout;
1307 }
1308
1309 len = sizeof(sa_family_t) + dev->addr_len;
1310 sa = kmalloc(len, GFP_KERNEL);
1311 if (!sa) {
1312 err = -ENOMEM;
1313 goto errout;
1314 }
1315 sa->sa_family = dev->type;
1316 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
1317 dev->addr_len);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001318 err = ops->ndo_set_mac_address(dev, sa);
Patrick McHardy0157f602007-06-13 12:03:36 -07001319 kfree(sa);
1320 if (err)
1321 goto errout;
1322 send_addr_notify = 1;
1323 modified = 1;
1324 }
1325
1326 if (tb[IFLA_MTU]) {
1327 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1328 if (err < 0)
1329 goto errout;
1330 modified = 1;
1331 }
1332
Vlad Dogarucbda10f2011-01-13 23:38:30 +00001333 if (tb[IFLA_GROUP]) {
1334 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
1335 modified = 1;
1336 }
1337
Patrick McHardy0157f602007-06-13 12:03:36 -07001338 /*
1339 * Interface selected by interface index but interface
1340 * name provided implies that a name change has been
1341 * requested.
1342 */
1343 if (ifm->ifi_index > 0 && ifname[0]) {
1344 err = dev_change_name(dev, ifname);
1345 if (err < 0)
1346 goto errout;
1347 modified = 1;
1348 }
1349
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001350 if (tb[IFLA_IFALIAS]) {
1351 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
1352 nla_len(tb[IFLA_IFALIAS]));
1353 if (err < 0)
1354 goto errout;
1355 modified = 1;
1356 }
1357
Patrick McHardy0157f602007-06-13 12:03:36 -07001358 if (tb[IFLA_BROADCAST]) {
1359 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
1360 send_addr_notify = 1;
1361 }
1362
1363 if (ifm->ifi_flags || ifm->ifi_change) {
Patrick McHardy3729d502010-02-26 06:34:54 +00001364 err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
Johannes Berg5f9021c2008-11-16 23:20:31 -08001365 if (err < 0)
1366 goto errout;
Patrick McHardy0157f602007-06-13 12:03:36 -07001367 }
1368
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001369 if (tb[IFLA_MASTER]) {
1370 err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER]));
1371 if (err)
1372 goto errout;
1373 modified = 1;
1374 }
1375
David S. Miller93b2d4a2008-02-17 18:35:07 -08001376 if (tb[IFLA_TXQLEN])
1377 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
Patrick McHardy0157f602007-06-13 12:03:36 -07001378
Patrick McHardy0157f602007-06-13 12:03:36 -07001379 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001380 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Patrick McHardy0157f602007-06-13 12:03:36 -07001381
1382 if (tb[IFLA_LINKMODE]) {
David S. Miller93b2d4a2008-02-17 18:35:07 -08001383 write_lock_bh(&dev_base_lock);
1384 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1385 write_unlock_bh(&dev_base_lock);
Patrick McHardy0157f602007-06-13 12:03:36 -07001386 }
1387
Chris Wrightc02db8c2010-05-16 01:05:45 -07001388 if (tb[IFLA_VFINFO_LIST]) {
1389 struct nlattr *attr;
1390 int rem;
1391 nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) {
David Howells253683b2010-05-21 02:25:27 +00001392 if (nla_type(attr) != IFLA_VF_INFO) {
1393 err = -EINVAL;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001394 goto errout;
David Howells253683b2010-05-21 02:25:27 +00001395 }
Chris Wrightc02db8c2010-05-16 01:05:45 -07001396 err = do_setvfinfo(dev, attr);
1397 if (err < 0)
1398 goto errout;
1399 modified = 1;
1400 }
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001401 }
Patrick McHardy0157f602007-06-13 12:03:36 -07001402 err = 0;
1403
Scott Feldman57b61082010-05-17 22:49:55 -07001404 if (tb[IFLA_VF_PORTS]) {
1405 struct nlattr *port[IFLA_PORT_MAX+1];
1406 struct nlattr *attr;
1407 int vf;
1408 int rem;
1409
1410 err = -EOPNOTSUPP;
1411 if (!ops->ndo_set_vf_port)
1412 goto errout;
1413
1414 nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) {
1415 if (nla_type(attr) != IFLA_VF_PORT)
1416 continue;
1417 err = nla_parse_nested(port, IFLA_PORT_MAX,
1418 attr, ifla_port_policy);
1419 if (err < 0)
1420 goto errout;
1421 if (!port[IFLA_PORT_VF]) {
1422 err = -EOPNOTSUPP;
1423 goto errout;
1424 }
1425 vf = nla_get_u32(port[IFLA_PORT_VF]);
1426 err = ops->ndo_set_vf_port(dev, vf, port);
1427 if (err < 0)
1428 goto errout;
1429 modified = 1;
1430 }
1431 }
1432 err = 0;
1433
1434 if (tb[IFLA_PORT_SELF]) {
1435 struct nlattr *port[IFLA_PORT_MAX+1];
1436
1437 err = nla_parse_nested(port, IFLA_PORT_MAX,
1438 tb[IFLA_PORT_SELF], ifla_port_policy);
1439 if (err < 0)
1440 goto errout;
1441
1442 err = -EOPNOTSUPP;
1443 if (ops->ndo_set_vf_port)
1444 err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port);
1445 if (err < 0)
1446 goto errout;
1447 modified = 1;
1448 }
Thomas Graff8ff1822010-11-16 04:30:14 +00001449
1450 if (tb[IFLA_AF_SPEC]) {
1451 struct nlattr *af;
1452 int rem;
1453
1454 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1455 const struct rtnl_af_ops *af_ops;
1456
1457 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001458 BUG();
Thomas Graff8ff1822010-11-16 04:30:14 +00001459
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001460 err = af_ops->set_link_af(dev, af);
Thomas Graff8ff1822010-11-16 04:30:14 +00001461 if (err < 0)
1462 goto errout;
1463
1464 modified = 1;
1465 }
1466 }
Scott Feldman57b61082010-05-17 22:49:55 -07001467 err = 0;
1468
Patrick McHardy0157f602007-06-13 12:03:36 -07001469errout:
1470 if (err < 0 && modified && net_ratelimit())
1471 printk(KERN_WARNING "A link change request failed with "
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001472 "some changes committed already. Interface %s may "
Patrick McHardy0157f602007-06-13 12:03:36 -07001473 "have been left with an inconsistent configuration, "
1474 "please check.\n", dev->name);
1475
1476 if (send_addr_notify)
1477 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
1478 return err;
1479}
1480
Thomas Grafda5e0492006-08-10 21:17:37 -07001481static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001483 struct net *net = sock_net(skb->sk);
Thomas Grafda5e0492006-08-10 21:17:37 -07001484 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -07001486 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -07001487 struct nlattr *tb[IFLA_MAX+1];
1488 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Thomas Grafda5e0492006-08-10 21:17:37 -07001490 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1491 if (err < 0)
1492 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Thomas Graf5176f912006-08-26 20:13:18 -07001494 if (tb[IFLA_IFNAME])
1495 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -07001496 else
1497 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -07001500 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -07001501 if (ifm->ifi_index > 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001502 dev = __dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -07001503 else if (tb[IFLA_IFNAME])
Eric Dumazeta3d12892009-10-21 10:59:31 +00001504 dev = __dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -07001505 else
1506 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Thomas Grafda5e0492006-08-10 21:17:37 -07001508 if (dev == NULL) {
1509 err = -ENODEV;
1510 goto errout;
1511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Eric Dumazete0d087a2009-11-07 01:26:17 -08001513 err = validate_linkmsg(dev, tb);
1514 if (err < 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001515 goto errout;
Thomas Grafda5e0492006-08-10 21:17:37 -07001516
Patrick McHardy38f7b872007-06-13 12:03:51 -07001517 err = do_setlink(dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -07001518errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 return err;
1520}
1521
Patrick McHardy38f7b872007-06-13 12:03:51 -07001522static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1523{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001524 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001525 const struct rtnl_link_ops *ops;
1526 struct net_device *dev;
1527 struct ifinfomsg *ifm;
1528 char ifname[IFNAMSIZ];
1529 struct nlattr *tb[IFLA_MAX+1];
1530 int err;
Eric Dumazet226bd342011-05-08 23:17:57 +00001531 LIST_HEAD(list_kill);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001532
1533 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1534 if (err < 0)
1535 return err;
1536
1537 if (tb[IFLA_IFNAME])
1538 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1539
1540 ifm = nlmsg_data(nlh);
1541 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001542 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001543 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001544 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001545 else
1546 return -EINVAL;
1547
1548 if (!dev)
1549 return -ENODEV;
1550
1551 ops = dev->rtnl_link_ops;
1552 if (!ops)
1553 return -EOPNOTSUPP;
1554
Eric Dumazet226bd342011-05-08 23:17:57 +00001555 ops->dellink(dev, &list_kill);
1556 unregister_netdevice_many(&list_kill);
1557 list_del(&list_kill);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001558 return 0;
1559}
1560
Patrick McHardy3729d502010-02-26 06:34:54 +00001561int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
1562{
1563 unsigned int old_flags;
1564 int err;
1565
1566 old_flags = dev->flags;
1567 if (ifm && (ifm->ifi_flags || ifm->ifi_change)) {
1568 err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
1569 if (err < 0)
1570 return err;
1571 }
1572
1573 dev->rtnl_link_state = RTNL_LINK_INITIALIZED;
1574 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1575
1576 __dev_notify_flags(dev, old_flags);
1577 return 0;
1578}
1579EXPORT_SYMBOL(rtnl_configure_link);
1580
Eric W. Biederman81adee42009-11-08 00:53:51 -08001581struct net_device *rtnl_create_link(struct net *src_net, struct net *net,
1582 char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[])
Pavel Emelianove7199282007-08-08 22:16:38 -07001583{
1584 int err;
1585 struct net_device *dev;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001586 unsigned int num_queues = 1;
1587 unsigned int real_num_queues = 1;
Pavel Emelianove7199282007-08-08 22:16:38 -07001588
Eric Dumazet2e59af32009-09-02 18:03:00 -07001589 if (ops->get_tx_queues) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001590 err = ops->get_tx_queues(src_net, tb, &num_queues,
Eric Dumazete0d087a2009-11-07 01:26:17 -08001591 &real_num_queues);
Eric Dumazet2e59af32009-09-02 18:03:00 -07001592 if (err)
1593 goto err;
1594 }
Pavel Emelianove7199282007-08-08 22:16:38 -07001595 err = -ENOMEM;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001596 dev = alloc_netdev_mq(ops->priv_size, ifname, ops->setup, num_queues);
Pavel Emelianove7199282007-08-08 22:16:38 -07001597 if (!dev)
1598 goto err;
1599
Eric W. Biederman81adee42009-11-08 00:53:51 -08001600 dev_net_set(dev, net);
1601 dev->rtnl_link_ops = ops;
Patrick McHardy3729d502010-02-26 06:34:54 +00001602 dev->rtnl_link_state = RTNL_LINK_INITIALIZING;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001603 dev->real_num_tx_queues = real_num_queues;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001604
Pavel Emelianove7199282007-08-08 22:16:38 -07001605 if (tb[IFLA_MTU])
1606 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
1607 if (tb[IFLA_ADDRESS])
1608 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1609 nla_len(tb[IFLA_ADDRESS]));
1610 if (tb[IFLA_BROADCAST])
1611 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1612 nla_len(tb[IFLA_BROADCAST]));
1613 if (tb[IFLA_TXQLEN])
1614 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1615 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001616 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001617 if (tb[IFLA_LINKMODE])
1618 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
Patrick McHardyffa934f2011-01-20 03:00:42 +00001619 if (tb[IFLA_GROUP])
1620 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001621
1622 return dev;
1623
Pavel Emelianove7199282007-08-08 22:16:38 -07001624err:
1625 return ERR_PTR(err);
1626}
Eric Dumazete0d087a2009-11-07 01:26:17 -08001627EXPORT_SYMBOL(rtnl_create_link);
Pavel Emelianove7199282007-08-08 22:16:38 -07001628
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001629static int rtnl_group_changelink(struct net *net, int group,
1630 struct ifinfomsg *ifm,
1631 struct nlattr **tb)
1632{
1633 struct net_device *dev;
1634 int err;
1635
1636 for_each_netdev(net, dev) {
1637 if (dev->group == group) {
1638 err = do_setlink(dev, ifm, tb, NULL, 0);
1639 if (err < 0)
1640 return err;
1641 }
1642 }
1643
1644 return 0;
1645}
1646
Patrick McHardy38f7b872007-06-13 12:03:51 -07001647static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1648{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001649 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001650 const struct rtnl_link_ops *ops;
1651 struct net_device *dev;
1652 struct ifinfomsg *ifm;
1653 char kind[MODULE_NAME_LEN];
1654 char ifname[IFNAMSIZ];
1655 struct nlattr *tb[IFLA_MAX+1];
1656 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1657 int err;
1658
Johannes Berg95a5afc2008-10-16 15:24:51 -07001659#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001660replay:
Thomas Graf8072f082007-07-31 14:13:50 -07001661#endif
Patrick McHardy38f7b872007-06-13 12:03:51 -07001662 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1663 if (err < 0)
1664 return err;
1665
1666 if (tb[IFLA_IFNAME])
1667 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1668 else
1669 ifname[0] = '\0';
1670
1671 ifm = nlmsg_data(nlh);
1672 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001673 dev = __dev_get_by_index(net, ifm->ifi_index);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001674 else {
1675 if (ifname[0])
1676 dev = __dev_get_by_name(net, ifname);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001677 else
1678 dev = NULL;
1679 }
Patrick McHardy38f7b872007-06-13 12:03:51 -07001680
Eric Dumazete0d087a2009-11-07 01:26:17 -08001681 err = validate_linkmsg(dev, tb);
1682 if (err < 0)
Thomas Graf1840bb12008-02-23 19:54:36 -08001683 return err;
1684
Patrick McHardy38f7b872007-06-13 12:03:51 -07001685 if (tb[IFLA_LINKINFO]) {
1686 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1687 tb[IFLA_LINKINFO], ifla_info_policy);
1688 if (err < 0)
1689 return err;
1690 } else
1691 memset(linkinfo, 0, sizeof(linkinfo));
1692
1693 if (linkinfo[IFLA_INFO_KIND]) {
1694 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1695 ops = rtnl_link_ops_get(kind);
1696 } else {
1697 kind[0] = '\0';
1698 ops = NULL;
1699 }
1700
1701 if (1) {
1702 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001703 struct net *dest_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001704
1705 if (ops) {
1706 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1707 err = nla_parse_nested(attr, ops->maxtype,
1708 linkinfo[IFLA_INFO_DATA],
1709 ops->policy);
1710 if (err < 0)
1711 return err;
1712 data = attr;
1713 }
1714 if (ops->validate) {
1715 err = ops->validate(tb, data);
1716 if (err < 0)
1717 return err;
1718 }
1719 }
1720
1721 if (dev) {
1722 int modified = 0;
1723
1724 if (nlh->nlmsg_flags & NLM_F_EXCL)
1725 return -EEXIST;
1726 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1727 return -EOPNOTSUPP;
1728
1729 if (linkinfo[IFLA_INFO_DATA]) {
1730 if (!ops || ops != dev->rtnl_link_ops ||
1731 !ops->changelink)
1732 return -EOPNOTSUPP;
1733
1734 err = ops->changelink(dev, tb, data);
1735 if (err < 0)
1736 return err;
1737 modified = 1;
1738 }
1739
1740 return do_setlink(dev, ifm, tb, ifname, modified);
1741 }
1742
Patrick McHardyffa934f2011-01-20 03:00:42 +00001743 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1744 if (ifm->ifi_index == 0 && tb[IFLA_GROUP])
1745 return rtnl_group_changelink(net,
1746 nla_get_u32(tb[IFLA_GROUP]),
1747 ifm, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001748 return -ENODEV;
Patrick McHardyffa934f2011-01-20 03:00:42 +00001749 }
Patrick McHardy38f7b872007-06-13 12:03:51 -07001750
Patrick McHardy3729d502010-02-26 06:34:54 +00001751 if (ifm->ifi_index)
Patrick McHardy38f7b872007-06-13 12:03:51 -07001752 return -EOPNOTSUPP;
Patrick McHardy0e068772007-07-11 19:42:31 -07001753 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
Patrick McHardy38f7b872007-06-13 12:03:51 -07001754 return -EOPNOTSUPP;
1755
1756 if (!ops) {
Johannes Berg95a5afc2008-10-16 15:24:51 -07001757#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001758 if (kind[0]) {
1759 __rtnl_unlock();
1760 request_module("rtnl-link-%s", kind);
1761 rtnl_lock();
1762 ops = rtnl_link_ops_get(kind);
1763 if (ops)
1764 goto replay;
1765 }
1766#endif
1767 return -EOPNOTSUPP;
1768 }
1769
1770 if (!ifname[0])
1771 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001772
Eric W. Biederman81adee42009-11-08 00:53:51 -08001773 dest_net = rtnl_link_get_net(net, tb);
Eric W. Biederman13ad1772011-01-29 14:57:22 +00001774 if (IS_ERR(dest_net))
1775 return PTR_ERR(dest_net);
1776
Eric W. Biederman81adee42009-11-08 00:53:51 -08001777 dev = rtnl_create_link(net, dest_net, ifname, ops, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001778
Pavel Emelianove7199282007-08-08 22:16:38 -07001779 if (IS_ERR(dev))
1780 err = PTR_ERR(dev);
1781 else if (ops->newlink)
Eric W. Biederman81adee42009-11-08 00:53:51 -08001782 err = ops->newlink(net, dev, tb, data);
Patrick McHardy2d85cba2007-07-11 19:42:13 -07001783 else
1784 err = register_netdevice(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001785
1786 if (err < 0 && !IS_ERR(dev))
Patrick McHardy38f7b872007-06-13 12:03:51 -07001787 free_netdev(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001788 if (err < 0)
Patrick McHardy3729d502010-02-26 06:34:54 +00001789 goto out;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001790
Patrick McHardy3729d502010-02-26 06:34:54 +00001791 err = rtnl_configure_link(dev, ifm);
1792 if (err < 0)
1793 unregister_netdevice(dev);
1794out:
Eric W. Biederman81adee42009-11-08 00:53:51 -08001795 put_net(dest_net);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001796 return err;
1797 }
1798}
1799
Thomas Grafb60c5112006-08-04 23:05:34 -07001800static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001801{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001802 struct net *net = sock_net(skb->sk);
Thomas Grafb60c5112006-08-04 23:05:34 -07001803 struct ifinfomsg *ifm;
Eric Dumazeta3d12892009-10-21 10:59:31 +00001804 char ifname[IFNAMSIZ];
Thomas Grafb60c5112006-08-04 23:05:34 -07001805 struct nlattr *tb[IFLA_MAX+1];
1806 struct net_device *dev = NULL;
1807 struct sk_buff *nskb;
Thomas Graf339bf982006-11-10 14:10:15 -08001808 int err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001809
Thomas Grafb60c5112006-08-04 23:05:34 -07001810 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1811 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07001812 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07001813
Eric Dumazeta3d12892009-10-21 10:59:31 +00001814 if (tb[IFLA_IFNAME])
1815 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1816
Thomas Grafb60c5112006-08-04 23:05:34 -07001817 ifm = nlmsg_data(nlh);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001818 if (ifm->ifi_index > 0)
1819 dev = __dev_get_by_index(net, ifm->ifi_index);
1820 else if (tb[IFLA_IFNAME])
1821 dev = __dev_get_by_name(net, ifname);
1822 else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001823 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07001824
Eric Dumazeta3d12892009-10-21 10:59:31 +00001825 if (dev == NULL)
1826 return -ENODEV;
1827
Patrick McHardy38f7b872007-06-13 12:03:51 -07001828 nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001829 if (nskb == NULL)
1830 return -ENOBUFS;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001831
Patrick McHardy575c3e22007-05-22 17:00:49 -07001832 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1833 nlh->nlmsg_seq, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001834 if (err < 0) {
1835 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1836 WARN_ON(err == -EMSGSIZE);
1837 kfree_skb(nskb);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001838 } else
1839 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid);
Thomas Grafb60c5112006-08-04 23:05:34 -07001840
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001841 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001842}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001843
Greg Rosec7ac8672011-06-10 01:27:09 +00001844static u16 rtnl_calcit(struct sk_buff *skb)
1845{
1846 return min_ifinfo_dump_size;
1847}
1848
Adrian Bunk42bad1d2007-04-26 00:57:41 -07001849static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
1851 int idx;
1852 int s_idx = cb->family;
1853
1854 if (s_idx == 0)
1855 s_idx = 1;
Patrick McHardy25239ce2010-04-26 16:02:05 +02001856 for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 int type = cb->nlh->nlmsg_type-RTM_BASE;
1858 if (idx < s_idx || idx == PF_PACKET)
1859 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07001860 if (rtnl_msg_handlers[idx] == NULL ||
1861 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 continue;
1863 if (idx > s_idx)
1864 memset(&cb->args[0], 0, sizeof(cb->args));
Thomas Grafe2849862007-03-22 11:48:11 -07001865 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 break;
1867 }
1868 cb->family = idx;
1869
1870 return skb->len;
1871}
1872
1873void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1874{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001875 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001877 int err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00001878 size_t if_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Greg Rosec7ac8672011-06-10 01:27:09 +00001880 skb = nlmsg_new((if_info_size = if_nlmsg_size(dev)), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001881 if (skb == NULL)
1882 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Greg Rosec7ac8672011-06-10 01:27:09 +00001884 min_ifinfo_dump_size = max_t(u16, if_info_size, min_ifinfo_dump_size);
1885
Patrick McHardy575c3e22007-05-22 17:00:49 -07001886 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
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(skb);
1891 goto errout;
1892 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001893 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1894 return;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001895errout:
1896 if (err < 0)
Eric W. Biederman4b3da702007-11-19 22:27:40 -08001897 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898}
1899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900/* Protected by RTNL sempahore. */
1901static struct rtattr **rta_buf;
1902static int rtattr_max;
1903
1904/* Process one rtnetlink message. */
1905
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001906static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001908 struct net *net = sock_net(skb->sk);
Thomas Grafe2849862007-03-22 11:48:11 -07001909 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 int sz_idx, kind;
1911 int min_len;
1912 int family;
1913 int type;
Eric Dumazet2907c352011-05-25 07:34:04 +00001914 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07001918 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920 type -= RTM_BASE;
1921
1922 /* All the messages must have at least 1 byte length */
1923 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1924 return 0;
1925
Eric Dumazete0d087a2009-11-07 01:26:17 -08001926 family = ((struct rtgenmsg *)NLMSG_DATA(nlh))->rtgen_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 sz_idx = type>>2;
1928 kind = type&3;
1929
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001930 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
1931 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
David S. Millerb8f3ab42011-01-18 12:40:38 -08001933 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001934 struct sock *rtnl;
Thomas Grafe2849862007-03-22 11:48:11 -07001935 rtnl_dumpit_func dumpit;
Greg Rosec7ac8672011-06-10 01:27:09 +00001936 rtnl_calcit_func calcit;
1937 u16 min_dump_alloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Thomas Grafe2849862007-03-22 11:48:11 -07001939 dumpit = rtnl_get_dumpit(family, type);
1940 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001941 return -EOPNOTSUPP;
Greg Rosec7ac8672011-06-10 01:27:09 +00001942 calcit = rtnl_get_calcit(family, type);
1943 if (calcit)
1944 min_dump_alloc = calcit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Eric Dumazet2907c352011-05-25 07:34:04 +00001946 __rtnl_unlock();
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001947 rtnl = net->rtnl;
Greg Rosec7ac8672011-06-10 01:27:09 +00001948 err = netlink_dump_start(rtnl, skb, nlh, dumpit,
1949 NULL, min_dump_alloc);
Eric Dumazet2907c352011-05-25 07:34:04 +00001950 rtnl_lock();
1951 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 }
1953
1954 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
1955
1956 min_len = rtm_min[sz_idx];
1957 if (nlh->nlmsg_len < min_len)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001958 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960 if (nlh->nlmsg_len > min_len) {
1961 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
Eric Dumazete0d087a2009-11-07 01:26:17 -08001962 struct rtattr *attr = (void *)nlh + NLMSG_ALIGN(min_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 while (RTA_OK(attr, attrlen)) {
1965 unsigned flavor = attr->rta_type;
1966 if (flavor) {
1967 if (flavor > rta_max[sz_idx])
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001968 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 rta_buf[flavor-1] = attr;
1970 }
1971 attr = RTA_NEXT(attr, attrlen);
1972 }
1973 }
1974
Thomas Grafe2849862007-03-22 11:48:11 -07001975 doit = rtnl_get_doit(family, type);
1976 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001977 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001979 return doit(skb, nlh, (void *)&rta_buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980}
1981
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001982static void rtnetlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001984 rtnl_lock();
1985 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
1986 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987}
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
1990{
1991 struct net_device *dev = ptr;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 case NETDEV_UP:
1995 case NETDEV_DOWN:
Patrick McHardy10de05a2010-02-26 06:34:50 +00001996 case NETDEV_PRE_UP:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00001997 case NETDEV_POST_INIT:
1998 case NETDEV_REGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 case NETDEV_CHANGE:
Patrick McHardy755d0e72010-03-19 04:42:24 +00002000 case NETDEV_PRE_TYPE_CHANGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 case NETDEV_GOING_DOWN:
Patrick McHardya2835762010-02-26 06:34:51 +00002002 case NETDEV_UNREGISTER:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00002003 case NETDEV_UNREGISTER_BATCH:
Amerigo Wangac3d3f82011-05-19 23:06:32 +00002004 case NETDEV_RELEASE:
2005 case NETDEV_JOIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 break;
2007 default:
2008 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
2009 break;
2010 }
2011 return NOTIFY_DONE;
2012}
2013
2014static struct notifier_block rtnetlink_dev_notifier = {
2015 .notifier_call = rtnetlink_event,
2016};
2017
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002018
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002019static int __net_init rtnetlink_net_init(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002020{
2021 struct sock *sk;
2022 sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX,
Eric Dumazet2907c352011-05-25 07:34:04 +00002023 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002024 if (!sk)
2025 return -ENOMEM;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002026 net->rtnl = sk;
2027 return 0;
2028}
2029
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002030static void __net_exit rtnetlink_net_exit(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002031{
Denis V. Lunev775516b2008-01-18 23:55:19 -08002032 netlink_kernel_release(net->rtnl);
2033 net->rtnl = NULL;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002034}
2035
2036static struct pernet_operations rtnetlink_net_ops = {
2037 .init = rtnetlink_net_init,
2038 .exit = rtnetlink_net_exit,
2039};
2040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041void __init rtnetlink_init(void)
2042{
2043 int i;
2044
2045 rtattr_max = 0;
2046 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
2047 if (rta_max[i] > rtattr_max)
2048 rtattr_max = rta_max[i];
2049 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
2050 if (!rta_buf)
2051 panic("rtnetlink_init: cannot allocate rta_buf\n");
2052
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002053 if (register_pernet_subsys(&rtnetlink_net_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 panic("rtnetlink_init: cannot initialize rtnetlink\n");
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
2057 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07002058
Greg Rosec7ac8672011-06-10 01:27:09 +00002059 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink,
2060 rtnl_dump_ifinfo, rtnl_calcit);
2061 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL, NULL);
2062 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL, NULL);
2063 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07002064
Greg Rosec7ac8672011-06-10 01:27:09 +00002065 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all, NULL);
2066 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067}
2068