blob: f3a112ec86d524d733f010a92519d83aac18a3e4 [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>
John Fastabend77162022012-04-15 06:43:56 +000038#include <linux/if_bridge.h>
Williams, Mitch Aebc08a62010-02-10 01:44:05 +000039#include <linux/pci.h>
John Fastabend77162022012-04-15 06:43:56 +000040#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <linux/inet.h>
45#include <linux/netdevice.h>
46#include <net/ip.h>
47#include <net/protocol.h>
48#include <net/arp.h>
49#include <net/route.h>
50#include <net/udp.h>
51#include <net/sock.h>
52#include <net/pkt_sched.h>
Thomas Graf14c0b972006-08-04 03:38:38 -070053#include <net/fib_rules.h>
Thomas Grafe2849862007-03-22 11:48:11 -070054#include <net/rtnetlink.h>
Johannes Berg30ffee82009-07-10 09:51:35 +000055#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Eric Dumazete0d087a2009-11-07 01:26:17 -080057struct rtnl_link {
Thomas Grafe2849862007-03-22 11:48:11 -070058 rtnl_doit_func doit;
59 rtnl_dumpit_func dumpit;
Greg Rosec7ac8672011-06-10 01:27:09 +000060 rtnl_calcit_func calcit;
Thomas Grafe2849862007-03-22 11:48:11 -070061};
62
Stephen Hemminger6756ae42006-03-20 22:23:58 -080063static DEFINE_MUTEX(rtnl_mutex);
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
Hans Zhangc80bbea2012-10-22 22:21:23 +0000131 return tab[msgindex].doit;
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
Hans Zhangc80bbea2012-10-22 22:21:23 +0000146 return tab[msgindex].dumpit;
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
Hans Zhangc80bbea2012-10-22 22:21:23 +0000161 return tab[msgindex].calcit;
Greg Rosec7ac8672011-06-10 01:27:09 +0000162}
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
Eric Dumazetc63044f2011-12-13 11:38:00 +0000276static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
277{
278 const struct rtnl_link_ops *ops;
279
280 list_for_each_entry(ops, &link_ops, list) {
281 if (!strcmp(ops->kind, kind))
282 return ops;
283 }
284 return NULL;
285}
286
Patrick McHardy38f7b872007-06-13 12:03:51 -0700287/**
288 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
289 * @ops: struct rtnl_link_ops * to register
290 *
291 * The caller must hold the rtnl_mutex. This function should be used
292 * by drivers that create devices during module initialization. It
293 * must be called before registering the devices.
294 *
295 * Returns 0 on success or a negative error code.
296 */
297int __rtnl_link_register(struct rtnl_link_ops *ops)
298{
Eric Dumazetc63044f2011-12-13 11:38:00 +0000299 if (rtnl_link_ops_get(ops->kind))
300 return -EEXIST;
301
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700302 if (!ops->dellink)
Eric Dumazet23289a32009-10-27 07:06:36 +0000303 ops->dellink = unregister_netdevice_queue;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700304
Patrick McHardy38f7b872007-06-13 12:03:51 -0700305 list_add_tail(&ops->list, &link_ops);
306 return 0;
307}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700308EXPORT_SYMBOL_GPL(__rtnl_link_register);
309
310/**
311 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
312 * @ops: struct rtnl_link_ops * to register
313 *
314 * Returns 0 on success or a negative error code.
315 */
316int rtnl_link_register(struct rtnl_link_ops *ops)
317{
318 int err;
319
320 rtnl_lock();
321 err = __rtnl_link_register(ops);
322 rtnl_unlock();
323 return err;
324}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700325EXPORT_SYMBOL_GPL(rtnl_link_register);
326
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700327static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
328{
329 struct net_device *dev;
Eric Dumazet23289a32009-10-27 07:06:36 +0000330 LIST_HEAD(list_kill);
331
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700332 for_each_netdev(net, dev) {
Eric Dumazet23289a32009-10-27 07:06:36 +0000333 if (dev->rtnl_link_ops == ops)
334 ops->dellink(dev, &list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700335 }
Eric Dumazet23289a32009-10-27 07:06:36 +0000336 unregister_netdevice_many(&list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700337}
338
Patrick McHardy38f7b872007-06-13 12:03:51 -0700339/**
340 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
341 * @ops: struct rtnl_link_ops * to unregister
342 *
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700343 * The caller must hold the rtnl_mutex.
Patrick McHardy38f7b872007-06-13 12:03:51 -0700344 */
345void __rtnl_link_unregister(struct rtnl_link_ops *ops)
346{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700347 struct net *net;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700348
Eric W. Biederman881d9662007-09-17 11:56:21 -0700349 for_each_net(net) {
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700350 __rtnl_kill_links(net, ops);
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700351 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700352 list_del(&ops->list);
353}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700354EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
355
356/**
357 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
358 * @ops: struct rtnl_link_ops * to unregister
359 */
360void rtnl_link_unregister(struct rtnl_link_ops *ops)
361{
362 rtnl_lock();
363 __rtnl_link_unregister(ops);
364 rtnl_unlock();
365}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700366EXPORT_SYMBOL_GPL(rtnl_link_unregister);
367
Patrick McHardy38f7b872007-06-13 12:03:51 -0700368static size_t rtnl_link_get_size(const struct net_device *dev)
369{
370 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
371 size_t size;
372
373 if (!ops)
374 return 0;
375
Thomas Graf369cf772010-11-11 15:47:59 +0000376 size = nla_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
377 nla_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700378
379 if (ops->get_size)
380 /* IFLA_INFO_DATA + nested data */
Thomas Graf369cf772010-11-11 15:47:59 +0000381 size += nla_total_size(sizeof(struct nlattr)) +
Patrick McHardy38f7b872007-06-13 12:03:51 -0700382 ops->get_size(dev);
383
384 if (ops->get_xstats_size)
Thomas Graf369cf772010-11-11 15:47:59 +0000385 /* IFLA_INFO_XSTATS */
386 size += nla_total_size(ops->get_xstats_size(dev));
Patrick McHardy38f7b872007-06-13 12:03:51 -0700387
388 return size;
389}
390
Thomas Graff8ff1822010-11-16 04:30:14 +0000391static LIST_HEAD(rtnl_af_ops);
392
393static const struct rtnl_af_ops *rtnl_af_lookup(const int family)
394{
395 const struct rtnl_af_ops *ops;
396
397 list_for_each_entry(ops, &rtnl_af_ops, list) {
398 if (ops->family == family)
399 return ops;
400 }
401
402 return NULL;
403}
404
405/**
406 * __rtnl_af_register - Register rtnl_af_ops with rtnetlink.
407 * @ops: struct rtnl_af_ops * to register
408 *
409 * The caller must hold the rtnl_mutex.
410 *
411 * Returns 0 on success or a negative error code.
412 */
413int __rtnl_af_register(struct rtnl_af_ops *ops)
414{
415 list_add_tail(&ops->list, &rtnl_af_ops);
416 return 0;
417}
418EXPORT_SYMBOL_GPL(__rtnl_af_register);
419
420/**
421 * rtnl_af_register - Register rtnl_af_ops with rtnetlink.
422 * @ops: struct rtnl_af_ops * to register
423 *
424 * Returns 0 on success or a negative error code.
425 */
426int rtnl_af_register(struct rtnl_af_ops *ops)
427{
428 int err;
429
430 rtnl_lock();
431 err = __rtnl_af_register(ops);
432 rtnl_unlock();
433 return err;
434}
435EXPORT_SYMBOL_GPL(rtnl_af_register);
436
437/**
438 * __rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
439 * @ops: struct rtnl_af_ops * to unregister
440 *
441 * The caller must hold the rtnl_mutex.
442 */
443void __rtnl_af_unregister(struct rtnl_af_ops *ops)
444{
445 list_del(&ops->list);
446}
447EXPORT_SYMBOL_GPL(__rtnl_af_unregister);
448
449/**
450 * rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
451 * @ops: struct rtnl_af_ops * to unregister
452 */
453void rtnl_af_unregister(struct rtnl_af_ops *ops)
454{
455 rtnl_lock();
456 __rtnl_af_unregister(ops);
457 rtnl_unlock();
458}
459EXPORT_SYMBOL_GPL(rtnl_af_unregister);
460
461static size_t rtnl_link_get_af_size(const struct net_device *dev)
462{
463 struct rtnl_af_ops *af_ops;
464 size_t size;
465
466 /* IFLA_AF_SPEC */
467 size = nla_total_size(sizeof(struct nlattr));
468
469 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
470 if (af_ops->get_link_af_size) {
471 /* AF_* + nested data */
472 size += nla_total_size(sizeof(struct nlattr)) +
473 af_ops->get_link_af_size(dev);
474 }
475 }
476
477 return size;
478}
479
Patrick McHardy38f7b872007-06-13 12:03:51 -0700480static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
481{
482 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
483 struct nlattr *linkinfo, *data;
484 int err = -EMSGSIZE;
485
486 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
487 if (linkinfo == NULL)
488 goto out;
489
490 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
491 goto err_cancel_link;
492 if (ops->fill_xstats) {
493 err = ops->fill_xstats(skb, dev);
494 if (err < 0)
495 goto err_cancel_link;
496 }
497 if (ops->fill_info) {
498 data = nla_nest_start(skb, IFLA_INFO_DATA);
499 if (data == NULL)
500 goto err_cancel_link;
501 err = ops->fill_info(skb, dev);
502 if (err < 0)
503 goto err_cancel_data;
504 nla_nest_end(skb, data);
505 }
506
507 nla_nest_end(skb, linkinfo);
508 return 0;
509
510err_cancel_data:
511 nla_nest_cancel(skb, data);
512err_cancel_link:
513 nla_nest_cancel(skb, linkinfo);
514out:
515 return err;
516}
517
Thomas Grafdb46edc2005-05-03 14:29:39 -0700518static const int rtm_min[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Thomas Graff90a0a72005-05-03 14:29:00 -0700520 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
521 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
522 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
Thomas Graf14c0b972006-08-04 03:38:38 -0700523 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700524 [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
525 [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
526 [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
527 [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700528 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
529 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530};
531
Thomas Grafdb46edc2005-05-03 14:29:39 -0700532static const int rta_max[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Thomas Graff90a0a72005-05-03 14:29:00 -0700534 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
535 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
536 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
Thomas Graf14c0b972006-08-04 03:38:38 -0700537 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
Thomas Graff90a0a72005-05-03 14:29:00 -0700538 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
539 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
540 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
541 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542};
543
Eric Dumazet95c96172012-04-15 05:58:06 +0000544int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned int group, int echo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800546 struct sock *rtnl = net->rtnl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 int err = 0;
548
Patrick McHardyac6d4392005-08-14 19:29:52 -0700549 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (echo)
551 atomic_inc(&skb->users);
552 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
553 if (echo)
554 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
555 return err;
556}
557
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800558int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
Thomas Graf2942e902006-08-15 00:30:25 -0700559{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800560 struct sock *rtnl = net->rtnl;
561
Thomas Graf2942e902006-08-15 00:30:25 -0700562 return nlmsg_unicast(rtnl, skb, pid);
563}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800564EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf2942e902006-08-15 00:30:25 -0700565
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800566void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
567 struct nlmsghdr *nlh, gfp_t flags)
Thomas Graf97676b62006-08-15 00:31:41 -0700568{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800569 struct sock *rtnl = net->rtnl;
Thomas Graf97676b62006-08-15 00:31:41 -0700570 int report = 0;
571
572 if (nlh)
573 report = nlmsg_report(nlh);
574
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800575 nlmsg_notify(rtnl, skb, pid, group, report, flags);
Thomas Graf97676b62006-08-15 00:31:41 -0700576}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800577EXPORT_SYMBOL(rtnl_notify);
Thomas Graf97676b62006-08-15 00:31:41 -0700578
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800579void rtnl_set_sk_err(struct net *net, u32 group, int error)
Thomas Graf97676b62006-08-15 00:31:41 -0700580{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800581 struct sock *rtnl = net->rtnl;
582
Thomas Graf97676b62006-08-15 00:31:41 -0700583 netlink_set_err(rtnl, 0, group, error);
584}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800585EXPORT_SYMBOL(rtnl_set_sk_err);
Thomas Graf97676b62006-08-15 00:31:41 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
588{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700589 struct nlattr *mx;
590 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Thomas Graf2d7202b2006-08-22 00:01:27 -0700592 mx = nla_nest_start(skb, RTA_METRICS);
593 if (mx == NULL)
594 return -ENOBUFS;
595
596 for (i = 0; i < RTAX_MAX; i++) {
597 if (metrics[i]) {
598 valid++;
David S. Millera6574342012-04-01 20:12:00 -0400599 if (nla_put_u32(skb, i+1, metrics[i]))
600 goto nla_put_failure;
Thomas Graf2d7202b2006-08-22 00:01:27 -0700601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
David S. Millera57d27f2006-08-22 22:20:14 -0700604 if (!valid) {
605 nla_nest_cancel(skb, mx);
606 return 0;
607 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700608
609 return nla_nest_end(skb, mx);
610
611nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700612 nla_nest_cancel(skb, mx);
613 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800615EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Thomas Grafe3703b32006-11-27 09:27:07 -0800617int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
David S. Miller87a50692012-07-10 05:06:14 -0700618 long expires, u32 error)
Thomas Grafe3703b32006-11-27 09:27:07 -0800619{
620 struct rta_cacheinfo ci = {
Eric Dumazeta399a802012-08-08 21:13:53 +0000621 .rta_lastuse = jiffies_delta_to_clock_t(jiffies - dst->lastuse),
Thomas Grafe3703b32006-11-27 09:27:07 -0800622 .rta_used = dst->__use,
623 .rta_clntref = atomic_read(&(dst->__refcnt)),
624 .rta_error = error,
625 .rta_id = id,
Thomas Grafe3703b32006-11-27 09:27:07 -0800626 };
627
Li Wei82539472012-07-29 16:01:30 +0000628 if (expires) {
629 unsigned long clock;
Thomas Grafe3703b32006-11-27 09:27:07 -0800630
Li Wei82539472012-07-29 16:01:30 +0000631 clock = jiffies_to_clock_t(abs(expires));
632 clock = min_t(unsigned long, clock, INT_MAX);
633 ci.rta_expires = (expires > 0) ? clock : -clock;
634 }
Thomas Grafe3703b32006-11-27 09:27:07 -0800635 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
636}
Thomas Grafe3703b32006-11-27 09:27:07 -0800637EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
David S. Miller93b2d4a2008-02-17 18:35:07 -0800639static void set_operstate(struct net_device *dev, unsigned char transition)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800640{
641 unsigned char operstate = dev->operstate;
642
Eric Dumazete0d087a2009-11-07 01:26:17 -0800643 switch (transition) {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800644 case IF_OPER_UP:
645 if ((operstate == IF_OPER_DORMANT ||
646 operstate == IF_OPER_UNKNOWN) &&
647 !netif_dormant(dev))
648 operstate = IF_OPER_UP;
649 break;
650
651 case IF_OPER_DORMANT:
652 if (operstate == IF_OPER_UP ||
653 operstate == IF_OPER_UNKNOWN)
654 operstate = IF_OPER_DORMANT;
655 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700656 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800657
658 if (dev->operstate != operstate) {
659 write_lock_bh(&dev_base_lock);
660 dev->operstate = operstate;
661 write_unlock_bh(&dev_base_lock);
David S. Miller93b2d4a2008-02-17 18:35:07 -0800662 netdev_state_change(dev);
663 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800664}
665
Jiri Bencb1beb682012-07-27 02:58:22 +0000666static unsigned int rtnl_dev_get_flags(const struct net_device *dev)
667{
668 return (dev->flags & ~(IFF_PROMISC | IFF_ALLMULTI)) |
669 (dev->gflags & (IFF_PROMISC | IFF_ALLMULTI));
670}
671
Patrick McHardy3729d502010-02-26 06:34:54 +0000672static unsigned int rtnl_dev_combine_flags(const struct net_device *dev,
673 const struct ifinfomsg *ifm)
674{
675 unsigned int flags = ifm->ifi_flags;
676
677 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
678 if (ifm->ifi_change)
679 flags = (flags & ifm->ifi_change) |
Jiri Bencb1beb682012-07-27 02:58:22 +0000680 (rtnl_dev_get_flags(dev) & ~ifm->ifi_change);
Patrick McHardy3729d502010-02-26 06:34:54 +0000681
682 return flags;
683}
684
Thomas Grafb60c5112006-08-04 23:05:34 -0700685static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000686 const struct rtnl_link_stats64 *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Thomas Grafb60c5112006-08-04 23:05:34 -0700688 a->rx_packets = b->rx_packets;
689 a->tx_packets = b->tx_packets;
690 a->rx_bytes = b->rx_bytes;
691 a->tx_bytes = b->tx_bytes;
692 a->rx_errors = b->rx_errors;
693 a->tx_errors = b->tx_errors;
694 a->rx_dropped = b->rx_dropped;
695 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Thomas Grafb60c5112006-08-04 23:05:34 -0700697 a->multicast = b->multicast;
698 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Thomas Grafb60c5112006-08-04 23:05:34 -0700700 a->rx_length_errors = b->rx_length_errors;
701 a->rx_over_errors = b->rx_over_errors;
702 a->rx_crc_errors = b->rx_crc_errors;
703 a->rx_frame_errors = b->rx_frame_errors;
704 a->rx_fifo_errors = b->rx_fifo_errors;
705 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Thomas Grafb60c5112006-08-04 23:05:34 -0700707 a->tx_aborted_errors = b->tx_aborted_errors;
708 a->tx_carrier_errors = b->tx_carrier_errors;
709 a->tx_fifo_errors = b->tx_fifo_errors;
710 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
711 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Thomas Grafb60c5112006-08-04 23:05:34 -0700713 a->rx_compressed = b->rx_compressed;
714 a->tx_compressed = b->tx_compressed;
Jan Engelhardt10708f32010-03-11 09:57:29 +0000715}
716
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000717static void copy_rtnl_link_stats64(void *v, const struct rtnl_link_stats64 *b)
Jan Engelhardt10708f32010-03-11 09:57:29 +0000718{
Eric Dumazetafdcba32010-08-23 07:14:36 +0000719 memcpy(v, b, sizeof(*b));
Jan Engelhardt10708f32010-03-11 09:57:29 +0000720}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Chris Wrightc02db8c2010-05-16 01:05:45 -0700722/* All VF info */
Greg Rose115c9b82012-02-21 16:54:48 -0500723static inline int rtnl_vfinfo_size(const struct net_device *dev,
724 u32 ext_filter_mask)
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000725{
Greg Rose115c9b82012-02-21 16:54:48 -0500726 if (dev->dev.parent && dev_is_pci(dev->dev.parent) &&
727 (ext_filter_mask & RTEXT_FILTER_VF)) {
Chris Wrightc02db8c2010-05-16 01:05:45 -0700728 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
Greg Rose115c9b82012-02-21 16:54:48 -0500766static noinline size_t if_nlmsg_size(const struct net_device *dev,
767 u32 ext_filter_mask)
Thomas Graf339bf982006-11-10 14:10:15 -0800768{
769 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
770 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700771 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
Thomas Graf339bf982006-11-10 14:10:15 -0800772 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
773 + nla_total_size(sizeof(struct rtnl_link_ifmap))
774 + nla_total_size(sizeof(struct rtnl_link_stats))
Jan Engelhardtadcfe192010-03-27 17:15:29 -0700775 + nla_total_size(sizeof(struct rtnl_link_stats64))
Thomas Graf339bf982006-11-10 14:10:15 -0800776 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
777 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
778 + nla_total_size(4) /* IFLA_TXQLEN */
779 + nla_total_size(4) /* IFLA_WEIGHT */
780 + nla_total_size(4) /* IFLA_MTU */
781 + nla_total_size(4) /* IFLA_LINK */
782 + nla_total_size(4) /* IFLA_MASTER */
Jiri Pirko9a572472012-12-27 23:49:39 +0000783 + nla_total_size(1) /* IFLA_CARRIER */
Ben Greearedbc0bb2012-03-29 12:51:30 +0000784 + nla_total_size(4) /* IFLA_PROMISCUITY */
Jiri Pirko76ff5cc2012-07-20 02:28:48 +0000785 + nla_total_size(4) /* IFLA_NUM_TX_QUEUES */
786 + nla_total_size(4) /* IFLA_NUM_RX_QUEUES */
Thomas Graf339bf982006-11-10 14:10:15 -0800787 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700788 + nla_total_size(1) /* IFLA_LINKMODE */
Greg Rose115c9b82012-02-21 16:54:48 -0500789 + nla_total_size(ext_filter_mask
790 & RTEXT_FILTER_VF ? 4 : 0) /* IFLA_NUM_VF */
791 + rtnl_vfinfo_size(dev, ext_filter_mask) /* IFLA_VFINFO_LIST */
Scott Feldman57b61082010-05-17 22:49:55 -0700792 + rtnl_port_size(dev) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
Thomas Graff8ff1822010-11-16 04:30:14 +0000793 + rtnl_link_get_size(dev) /* IFLA_LINKINFO */
794 + rtnl_link_get_af_size(dev); /* IFLA_AF_SPEC */
Thomas Graf339bf982006-11-10 14:10:15 -0800795}
796
Scott Feldman57b61082010-05-17 22:49:55 -0700797static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev)
798{
799 struct nlattr *vf_ports;
800 struct nlattr *vf_port;
801 int vf;
802 int err;
803
804 vf_ports = nla_nest_start(skb, IFLA_VF_PORTS);
805 if (!vf_ports)
806 return -EMSGSIZE;
807
808 for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) {
809 vf_port = nla_nest_start(skb, IFLA_VF_PORT);
Scott Feldman8ca94182010-05-28 03:42:18 -0700810 if (!vf_port)
811 goto nla_put_failure;
David S. Millera6574342012-04-01 20:12:00 -0400812 if (nla_put_u32(skb, IFLA_PORT_VF, vf))
813 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700814 err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb);
Scott Feldman8ca94182010-05-28 03:42:18 -0700815 if (err == -EMSGSIZE)
816 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700817 if (err) {
Scott Feldman57b61082010-05-17 22:49:55 -0700818 nla_nest_cancel(skb, vf_port);
819 continue;
820 }
821 nla_nest_end(skb, vf_port);
822 }
823
824 nla_nest_end(skb, vf_ports);
825
826 return 0;
Scott Feldman8ca94182010-05-28 03:42:18 -0700827
828nla_put_failure:
829 nla_nest_cancel(skb, vf_ports);
830 return -EMSGSIZE;
Scott Feldman57b61082010-05-17 22:49:55 -0700831}
832
833static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev)
834{
835 struct nlattr *port_self;
836 int err;
837
838 port_self = nla_nest_start(skb, IFLA_PORT_SELF);
839 if (!port_self)
840 return -EMSGSIZE;
841
842 err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb);
843 if (err) {
844 nla_nest_cancel(skb, port_self);
Scott Feldman8ca94182010-05-28 03:42:18 -0700845 return (err == -EMSGSIZE) ? err : 0;
Scott Feldman57b61082010-05-17 22:49:55 -0700846 }
847
848 nla_nest_end(skb, port_self);
849
850 return 0;
851}
852
853static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev)
854{
855 int err;
856
857 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
858 return 0;
859
860 err = rtnl_port_self_fill(skb, dev);
861 if (err)
862 return err;
863
864 if (dev_num_vf(dev->dev.parent)) {
865 err = rtnl_vf_ports_fill(skb, dev);
866 if (err)
867 return err;
868 }
869
870 return 0;
871}
872
Thomas Grafb60c5112006-08-04 23:05:34 -0700873static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -0700874 int type, u32 pid, u32 seq, u32 change,
Greg Rose115c9b82012-02-21 16:54:48 -0500875 unsigned int flags, u32 ext_filter_mask)
Thomas Grafb60c5112006-08-04 23:05:34 -0700876{
877 struct ifinfomsg *ifm;
878 struct nlmsghdr *nlh;
Eric Dumazet28172732010-07-07 14:58:56 -0700879 struct rtnl_link_stats64 temp;
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000880 const struct rtnl_link_stats64 *stats;
Thomas Graff8ff1822010-11-16 04:30:14 +0000881 struct nlattr *attr, *af_spec;
882 struct rtnl_af_ops *af_ops;
Jiri Pirko898e5062013-01-03 22:48:52 +0000883 struct net_device *upper_dev = netdev_master_upper_dev_get(dev);
Thomas Grafb60c5112006-08-04 23:05:34 -0700884
Eric Dumazet2907c352011-05-25 07:34:04 +0000885 ASSERT_RTNL();
Thomas Grafb60c5112006-08-04 23:05:34 -0700886 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
887 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800888 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700889
890 ifm = nlmsg_data(nlh);
891 ifm->ifi_family = AF_UNSPEC;
892 ifm->__ifi_pad = 0;
893 ifm->ifi_type = dev->type;
894 ifm->ifi_index = dev->ifindex;
895 ifm->ifi_flags = dev_get_flags(dev);
896 ifm->ifi_change = change;
897
David S. Millera6574342012-04-01 20:12:00 -0400898 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
899 nla_put_u32(skb, IFLA_TXQLEN, dev->tx_queue_len) ||
900 nla_put_u8(skb, IFLA_OPERSTATE,
901 netif_running(dev) ? dev->operstate : IF_OPER_DOWN) ||
902 nla_put_u8(skb, IFLA_LINKMODE, dev->link_mode) ||
903 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
904 nla_put_u32(skb, IFLA_GROUP, dev->group) ||
Ben Greearedbc0bb2012-03-29 12:51:30 +0000905 nla_put_u32(skb, IFLA_PROMISCUITY, dev->promiscuity) ||
Jiri Pirko76ff5cc2012-07-20 02:28:48 +0000906 nla_put_u32(skb, IFLA_NUM_TX_QUEUES, dev->num_tx_queues) ||
Mark A. Greer1d69c2b2012-07-20 13:35:13 +0000907#ifdef CONFIG_RPS
Jiri Pirko76ff5cc2012-07-20 02:28:48 +0000908 nla_put_u32(skb, IFLA_NUM_RX_QUEUES, dev->num_rx_queues) ||
Mark A. Greer1d69c2b2012-07-20 13:35:13 +0000909#endif
David S. Millera6574342012-04-01 20:12:00 -0400910 (dev->ifindex != dev->iflink &&
911 nla_put_u32(skb, IFLA_LINK, dev->iflink)) ||
Jiri Pirko898e5062013-01-03 22:48:52 +0000912 (upper_dev &&
913 nla_put_u32(skb, IFLA_MASTER, upper_dev->ifindex)) ||
Jiri Pirko9a572472012-12-27 23:49:39 +0000914 nla_put_u8(skb, IFLA_CARRIER, netif_carrier_ok(dev)) ||
David S. Millera6574342012-04-01 20:12:00 -0400915 (dev->qdisc &&
916 nla_put_string(skb, IFLA_QDISC, dev->qdisc->ops->id)) ||
917 (dev->ifalias &&
918 nla_put_string(skb, IFLA_IFALIAS, dev->ifalias)))
919 goto nla_put_failure;
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700920
Stefan Rompfb00055a2006-03-20 17:09:11 -0800921 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 struct rtnl_link_ifmap map = {
923 .mem_start = dev->mem_start,
924 .mem_end = dev->mem_end,
925 .base_addr = dev->base_addr,
926 .irq = dev->irq,
927 .dma = dev->dma,
928 .port = dev->if_port,
929 };
David S. Millera6574342012-04-01 20:12:00 -0400930 if (nla_put(skb, IFLA_MAP, sizeof(map), &map))
931 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933
934 if (dev->addr_len) {
David S. Millera6574342012-04-01 20:12:00 -0400935 if (nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr) ||
936 nla_put(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast))
937 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700940 attr = nla_reserve(skb, IFLA_STATS,
941 sizeof(struct rtnl_link_stats));
942 if (attr == NULL)
943 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Eric Dumazet28172732010-07-07 14:58:56 -0700945 stats = dev_get_stats(dev, &temp);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700946 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Jan Engelhardt10708f32010-03-11 09:57:29 +0000948 attr = nla_reserve(skb, IFLA_STATS64,
949 sizeof(struct rtnl_link_stats64));
950 if (attr == NULL)
951 goto nla_put_failure;
Jan Engelhardt10708f32010-03-11 09:57:29 +0000952 copy_rtnl_link_stats64(nla_data(attr), stats);
953
David S. Millera6574342012-04-01 20:12:00 -0400954 if (dev->dev.parent && (ext_filter_mask & RTEXT_FILTER_VF) &&
955 nla_put_u32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent)))
956 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700957
Greg Rose115c9b82012-02-21 16:54:48 -0500958 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent
959 && (ext_filter_mask & RTEXT_FILTER_VF)) {
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000960 int i;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000961
Chris Wrightc02db8c2010-05-16 01:05:45 -0700962 struct nlattr *vfinfo, *vf;
963 int num_vfs = dev_num_vf(dev->dev.parent);
964
Chris Wrightc02db8c2010-05-16 01:05:45 -0700965 vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST);
966 if (!vfinfo)
967 goto nla_put_failure;
968 for (i = 0; i < num_vfs; i++) {
969 struct ifla_vf_info ivi;
970 struct ifla_vf_mac vf_mac;
971 struct ifla_vf_vlan vf_vlan;
972 struct ifla_vf_tx_rate vf_tx_rate;
Greg Rose5f8444a2011-10-08 03:05:24 +0000973 struct ifla_vf_spoofchk vf_spoofchk;
974
975 /*
976 * Not all SR-IOV capable drivers support the
977 * spoofcheck query. Preset to -1 so the user
978 * space tool can detect that the driver didn't
979 * report anything.
980 */
981 ivi.spoofchk = -1;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000982 if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi))
983 break;
Greg Rose5f8444a2011-10-08 03:05:24 +0000984 vf_mac.vf =
985 vf_vlan.vf =
986 vf_tx_rate.vf =
987 vf_spoofchk.vf = ivi.vf;
988
Chris Wrightc02db8c2010-05-16 01:05:45 -0700989 memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac));
990 vf_vlan.vlan = ivi.vlan;
991 vf_vlan.qos = ivi.qos;
992 vf_tx_rate.rate = ivi.tx_rate;
Greg Rose5f8444a2011-10-08 03:05:24 +0000993 vf_spoofchk.setting = ivi.spoofchk;
Chris Wrightc02db8c2010-05-16 01:05:45 -0700994 vf = nla_nest_start(skb, IFLA_VF_INFO);
995 if (!vf) {
996 nla_nest_cancel(skb, vfinfo);
997 goto nla_put_failure;
998 }
David S. Millera6574342012-04-01 20:12:00 -0400999 if (nla_put(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac) ||
1000 nla_put(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan) ||
1001 nla_put(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate),
1002 &vf_tx_rate) ||
1003 nla_put(skb, IFLA_VF_SPOOFCHK, sizeof(vf_spoofchk),
1004 &vf_spoofchk))
1005 goto nla_put_failure;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001006 nla_nest_end(skb, vf);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001007 }
Chris Wrightc02db8c2010-05-16 01:05:45 -07001008 nla_nest_end(skb, vfinfo);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001009 }
Scott Feldman57b61082010-05-17 22:49:55 -07001010
1011 if (rtnl_port_fill(skb, dev))
1012 goto nla_put_failure;
1013
Patrick McHardy38f7b872007-06-13 12:03:51 -07001014 if (dev->rtnl_link_ops) {
1015 if (rtnl_link_fill(skb, dev) < 0)
1016 goto nla_put_failure;
1017 }
1018
Thomas Graff8ff1822010-11-16 04:30:14 +00001019 if (!(af_spec = nla_nest_start(skb, IFLA_AF_SPEC)))
1020 goto nla_put_failure;
1021
1022 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
1023 if (af_ops->fill_link_af) {
1024 struct nlattr *af;
1025 int err;
1026
1027 if (!(af = nla_nest_start(skb, af_ops->family)))
1028 goto nla_put_failure;
1029
1030 err = af_ops->fill_link_af(skb, dev);
1031
1032 /*
1033 * Caller may return ENODATA to indicate that there
1034 * was no data to be dumped. This is not an error, it
1035 * means we should trim the attribute header and
1036 * continue.
1037 */
1038 if (err == -ENODATA)
1039 nla_nest_cancel(skb, af);
1040 else if (err < 0)
1041 goto nla_put_failure;
1042
1043 nla_nest_end(skb, af);
1044 }
1045 }
1046
1047 nla_nest_end(skb, af_spec);
1048
Thomas Grafb60c5112006-08-04 23:05:34 -07001049 return nlmsg_end(skb, nlh);
1050
1051nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08001052 nlmsg_cancel(skb, nlh);
1053 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
Thomas Grafb60c5112006-08-04 23:05:34 -07001056static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001058 struct net *net = sock_net(skb->sk);
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001059 int h, s_h;
1060 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 struct net_device *dev;
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001062 struct hlist_head *head;
1063 struct hlist_node *node;
Greg Rose115c9b82012-02-21 16:54:48 -05001064 struct nlattr *tb[IFLA_MAX+1];
1065 u32 ext_filter_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001067 s_h = cb->args[0];
1068 s_idx = cb->args[1];
1069
Eric Dumazete67f88d2011-04-27 22:56:07 +00001070 rcu_read_lock();
Thomas Graf4e985ad2011-06-21 03:11:20 +00001071 cb->seq = net->dev_base_seq;
1072
Eric Dumazeta4b64fb2012-03-04 12:32:10 +00001073 if (nlmsg_parse(cb->nlh, sizeof(struct rtgenmsg), tb, IFLA_MAX,
1074 ifla_policy) >= 0) {
Greg Rose115c9b82012-02-21 16:54:48 -05001075
Eric Dumazeta4b64fb2012-03-04 12:32:10 +00001076 if (tb[IFLA_EXT_MASK])
1077 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
1078 }
Greg Rose115c9b82012-02-21 16:54:48 -05001079
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001080 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
1081 idx = 0;
1082 head = &net->dev_index_head[h];
Eric Dumazete67f88d2011-04-27 22:56:07 +00001083 hlist_for_each_entry_rcu(dev, node, head, index_hlist) {
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001084 if (idx < s_idx)
1085 goto cont;
1086 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001087 NETLINK_CB(cb->skb).portid,
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001088 cb->nlh->nlmsg_seq, 0,
Greg Rose115c9b82012-02-21 16:54:48 -05001089 NLM_F_MULTI,
1090 ext_filter_mask) <= 0)
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001091 goto out;
Thomas Graf4e985ad2011-06-21 03:11:20 +00001092
1093 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Pavel Emelianov7562f872007-05-03 15:13:45 -07001094cont:
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001095 idx++;
1096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001098out:
Eric Dumazete67f88d2011-04-27 22:56:07 +00001099 rcu_read_unlock();
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001100 cb->args[1] = idx;
1101 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 return skb->len;
1104}
1105
Pavel Emelianove7199282007-08-08 22:16:38 -07001106const struct nla_policy ifla_policy[IFLA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07001107 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
Patrick McHardy38f7b872007-06-13 12:03:51 -07001108 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1109 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
Thomas Graf5176f912006-08-26 20:13:18 -07001110 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -07001111 [IFLA_MTU] = { .type = NLA_U32 },
Thomas Graf76e87302008-02-19 16:12:08 -08001112 [IFLA_LINK] = { .type = NLA_U32 },
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001113 [IFLA_MASTER] = { .type = NLA_U32 },
Jiri Pirko9a572472012-12-27 23:49:39 +00001114 [IFLA_CARRIER] = { .type = NLA_U8 },
Thomas Grafda5e0492006-08-10 21:17:37 -07001115 [IFLA_TXQLEN] = { .type = NLA_U32 },
1116 [IFLA_WEIGHT] = { .type = NLA_U32 },
1117 [IFLA_OPERSTATE] = { .type = NLA_U8 },
1118 [IFLA_LINKMODE] = { .type = NLA_U8 },
Thomas Graf76e87302008-02-19 16:12:08 -08001119 [IFLA_LINKINFO] = { .type = NLA_NESTED },
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001120 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001121 [IFLA_NET_NS_FD] = { .type = NLA_U32 },
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001122 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
Chris Wrightc02db8c2010-05-16 01:05:45 -07001123 [IFLA_VFINFO_LIST] = {. type = NLA_NESTED },
Scott Feldman57b61082010-05-17 22:49:55 -07001124 [IFLA_VF_PORTS] = { .type = NLA_NESTED },
1125 [IFLA_PORT_SELF] = { .type = NLA_NESTED },
Thomas Graff8ff1822010-11-16 04:30:14 +00001126 [IFLA_AF_SPEC] = { .type = NLA_NESTED },
Greg Rose115c9b82012-02-21 16:54:48 -05001127 [IFLA_EXT_MASK] = { .type = NLA_U32 },
Ben Greearedbc0bb2012-03-29 12:51:30 +00001128 [IFLA_PROMISCUITY] = { .type = NLA_U32 },
Jiri Pirko76ff5cc2012-07-20 02:28:48 +00001129 [IFLA_NUM_TX_QUEUES] = { .type = NLA_U32 },
1130 [IFLA_NUM_RX_QUEUES] = { .type = NLA_U32 },
Thomas Grafda5e0492006-08-10 21:17:37 -07001131};
Eric Dumazete0d087a2009-11-07 01:26:17 -08001132EXPORT_SYMBOL(ifla_policy);
Thomas Grafda5e0492006-08-10 21:17:37 -07001133
Patrick McHardy38f7b872007-06-13 12:03:51 -07001134static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
1135 [IFLA_INFO_KIND] = { .type = NLA_STRING },
1136 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
1137};
1138
Chris Wrightc02db8c2010-05-16 01:05:45 -07001139static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = {
1140 [IFLA_VF_INFO] = { .type = NLA_NESTED },
1141};
1142
1143static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
1144 [IFLA_VF_MAC] = { .type = NLA_BINARY,
1145 .len = sizeof(struct ifla_vf_mac) },
1146 [IFLA_VF_VLAN] = { .type = NLA_BINARY,
1147 .len = sizeof(struct ifla_vf_vlan) },
1148 [IFLA_VF_TX_RATE] = { .type = NLA_BINARY,
1149 .len = sizeof(struct ifla_vf_tx_rate) },
Greg Rose48752f62012-02-08 00:45:00 +00001150 [IFLA_VF_SPOOFCHK] = { .type = NLA_BINARY,
1151 .len = sizeof(struct ifla_vf_spoofchk) },
Chris Wrightc02db8c2010-05-16 01:05:45 -07001152};
1153
Scott Feldman57b61082010-05-17 22:49:55 -07001154static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = {
1155 [IFLA_PORT_VF] = { .type = NLA_U32 },
1156 [IFLA_PORT_PROFILE] = { .type = NLA_STRING,
1157 .len = PORT_PROFILE_MAX },
1158 [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY,
1159 .len = sizeof(struct ifla_port_vsi)},
1160 [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY,
1161 .len = PORT_UUID_MAX },
1162 [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING,
1163 .len = PORT_UUID_MAX },
1164 [IFLA_PORT_REQUEST] = { .type = NLA_U8, },
1165 [IFLA_PORT_RESPONSE] = { .type = NLA_U16, },
1166};
1167
Eric W. Biederman81adee42009-11-08 00:53:51 -08001168struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
1169{
1170 struct net *net;
1171 /* Examine the link attributes and figure out which
1172 * network namespace we are talking about.
1173 */
1174 if (tb[IFLA_NET_NS_PID])
1175 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001176 else if (tb[IFLA_NET_NS_FD])
1177 net = get_net_ns_by_fd(nla_get_u32(tb[IFLA_NET_NS_FD]));
Eric W. Biederman81adee42009-11-08 00:53:51 -08001178 else
1179 net = get_net(src_net);
1180 return net;
1181}
1182EXPORT_SYMBOL(rtnl_link_get_net);
1183
Thomas Graf1840bb12008-02-23 19:54:36 -08001184static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
1185{
1186 if (dev) {
1187 if (tb[IFLA_ADDRESS] &&
1188 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
1189 return -EINVAL;
1190
1191 if (tb[IFLA_BROADCAST] &&
1192 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
1193 return -EINVAL;
1194 }
1195
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001196 if (tb[IFLA_AF_SPEC]) {
1197 struct nlattr *af;
1198 int rem, err;
1199
1200 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1201 const struct rtnl_af_ops *af_ops;
1202
1203 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
1204 return -EAFNOSUPPORT;
1205
1206 if (!af_ops->set_link_af)
1207 return -EOPNOTSUPP;
1208
1209 if (af_ops->validate_link_af) {
Kurt Van Dijck6d3a9a62011-01-26 04:55:24 +00001210 err = af_ops->validate_link_af(dev, af);
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001211 if (err < 0)
1212 return err;
1213 }
1214 }
1215 }
1216
Thomas Graf1840bb12008-02-23 19:54:36 -08001217 return 0;
1218}
1219
Chris Wrightc02db8c2010-05-16 01:05:45 -07001220static int do_setvfinfo(struct net_device *dev, struct nlattr *attr)
1221{
1222 int rem, err = -EINVAL;
1223 struct nlattr *vf;
1224 const struct net_device_ops *ops = dev->netdev_ops;
1225
1226 nla_for_each_nested(vf, attr, rem) {
1227 switch (nla_type(vf)) {
1228 case IFLA_VF_MAC: {
1229 struct ifla_vf_mac *ivm;
1230 ivm = nla_data(vf);
1231 err = -EOPNOTSUPP;
1232 if (ops->ndo_set_vf_mac)
1233 err = ops->ndo_set_vf_mac(dev, ivm->vf,
1234 ivm->mac);
1235 break;
1236 }
1237 case IFLA_VF_VLAN: {
1238 struct ifla_vf_vlan *ivv;
1239 ivv = nla_data(vf);
1240 err = -EOPNOTSUPP;
1241 if (ops->ndo_set_vf_vlan)
1242 err = ops->ndo_set_vf_vlan(dev, ivv->vf,
1243 ivv->vlan,
1244 ivv->qos);
1245 break;
1246 }
1247 case IFLA_VF_TX_RATE: {
1248 struct ifla_vf_tx_rate *ivt;
1249 ivt = nla_data(vf);
1250 err = -EOPNOTSUPP;
1251 if (ops->ndo_set_vf_tx_rate)
1252 err = ops->ndo_set_vf_tx_rate(dev, ivt->vf,
1253 ivt->rate);
1254 break;
1255 }
Greg Rose5f8444a2011-10-08 03:05:24 +00001256 case IFLA_VF_SPOOFCHK: {
1257 struct ifla_vf_spoofchk *ivs;
1258 ivs = nla_data(vf);
1259 err = -EOPNOTSUPP;
1260 if (ops->ndo_set_vf_spoofchk)
1261 err = ops->ndo_set_vf_spoofchk(dev, ivs->vf,
1262 ivs->setting);
1263 break;
1264 }
Chris Wrightc02db8c2010-05-16 01:05:45 -07001265 default:
1266 err = -EINVAL;
1267 break;
1268 }
1269 if (err)
1270 break;
1271 }
1272 return err;
1273}
1274
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001275static int do_set_master(struct net_device *dev, int ifindex)
1276{
Jiri Pirko898e5062013-01-03 22:48:52 +00001277 struct net_device *upper_dev = netdev_master_upper_dev_get(dev);
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001278 const struct net_device_ops *ops;
1279 int err;
1280
Jiri Pirko898e5062013-01-03 22:48:52 +00001281 if (upper_dev) {
1282 if (upper_dev->ifindex == ifindex)
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001283 return 0;
Jiri Pirko898e5062013-01-03 22:48:52 +00001284 ops = upper_dev->netdev_ops;
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001285 if (ops->ndo_del_slave) {
Jiri Pirko898e5062013-01-03 22:48:52 +00001286 err = ops->ndo_del_slave(upper_dev, dev);
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001287 if (err)
1288 return err;
1289 } else {
1290 return -EOPNOTSUPP;
1291 }
1292 }
1293
1294 if (ifindex) {
Jiri Pirko898e5062013-01-03 22:48:52 +00001295 upper_dev = __dev_get_by_index(dev_net(dev), ifindex);
1296 if (!upper_dev)
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001297 return -EINVAL;
Jiri Pirko898e5062013-01-03 22:48:52 +00001298 ops = upper_dev->netdev_ops;
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001299 if (ops->ndo_add_slave) {
Jiri Pirko898e5062013-01-03 22:48:52 +00001300 err = ops->ndo_add_slave(upper_dev, dev);
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001301 if (err)
1302 return err;
1303 } else {
1304 return -EOPNOTSUPP;
1305 }
1306 }
1307 return 0;
1308}
1309
Patrick McHardy0157f602007-06-13 12:03:36 -07001310static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
Patrick McHardy38f7b872007-06-13 12:03:51 -07001311 struct nlattr **tb, char *ifname, int modified)
Patrick McHardy0157f602007-06-13 12:03:36 -07001312{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001313 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy0157f602007-06-13 12:03:36 -07001314 int err;
1315
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001316 if (tb[IFLA_NET_NS_PID] || tb[IFLA_NET_NS_FD]) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001317 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001318 if (IS_ERR(net)) {
1319 err = PTR_ERR(net);
1320 goto errout;
1321 }
Eric W. Biedermanb51642f2012-11-16 03:03:11 +00001322 if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) {
1323 err = -EPERM;
1324 goto errout;
1325 }
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001326 err = dev_change_net_namespace(dev, net, ifname);
1327 put_net(net);
1328 if (err)
1329 goto errout;
1330 modified = 1;
1331 }
1332
Patrick McHardy0157f602007-06-13 12:03:36 -07001333 if (tb[IFLA_MAP]) {
1334 struct rtnl_link_ifmap *u_map;
1335 struct ifmap k_map;
1336
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001337 if (!ops->ndo_set_config) {
Patrick McHardy0157f602007-06-13 12:03:36 -07001338 err = -EOPNOTSUPP;
1339 goto errout;
1340 }
1341
1342 if (!netif_device_present(dev)) {
1343 err = -ENODEV;
1344 goto errout;
1345 }
1346
1347 u_map = nla_data(tb[IFLA_MAP]);
1348 k_map.mem_start = (unsigned long) u_map->mem_start;
1349 k_map.mem_end = (unsigned long) u_map->mem_end;
1350 k_map.base_addr = (unsigned short) u_map->base_addr;
1351 k_map.irq = (unsigned char) u_map->irq;
1352 k_map.dma = (unsigned char) u_map->dma;
1353 k_map.port = (unsigned char) u_map->port;
1354
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001355 err = ops->ndo_set_config(dev, &k_map);
Patrick McHardy0157f602007-06-13 12:03:36 -07001356 if (err < 0)
1357 goto errout;
1358
1359 modified = 1;
1360 }
1361
1362 if (tb[IFLA_ADDRESS]) {
1363 struct sockaddr *sa;
1364 int len;
1365
Patrick McHardy0157f602007-06-13 12:03:36 -07001366 len = sizeof(sa_family_t) + dev->addr_len;
1367 sa = kmalloc(len, GFP_KERNEL);
1368 if (!sa) {
1369 err = -ENOMEM;
1370 goto errout;
1371 }
1372 sa->sa_family = dev->type;
1373 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
1374 dev->addr_len);
Jiri Pirkoe7c32732013-01-01 03:30:13 +00001375 err = dev_set_mac_address(dev, sa);
Patrick McHardy0157f602007-06-13 12:03:36 -07001376 kfree(sa);
1377 if (err)
1378 goto errout;
Patrick McHardy0157f602007-06-13 12:03:36 -07001379 modified = 1;
1380 }
1381
1382 if (tb[IFLA_MTU]) {
1383 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1384 if (err < 0)
1385 goto errout;
1386 modified = 1;
1387 }
1388
Vlad Dogarucbda10f2011-01-13 23:38:30 +00001389 if (tb[IFLA_GROUP]) {
1390 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
1391 modified = 1;
1392 }
1393
Patrick McHardy0157f602007-06-13 12:03:36 -07001394 /*
1395 * Interface selected by interface index but interface
1396 * name provided implies that a name change has been
1397 * requested.
1398 */
1399 if (ifm->ifi_index > 0 && ifname[0]) {
1400 err = dev_change_name(dev, ifname);
1401 if (err < 0)
1402 goto errout;
1403 modified = 1;
1404 }
1405
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001406 if (tb[IFLA_IFALIAS]) {
1407 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
1408 nla_len(tb[IFLA_IFALIAS]));
1409 if (err < 0)
1410 goto errout;
1411 modified = 1;
1412 }
1413
Patrick McHardy0157f602007-06-13 12:03:36 -07001414 if (tb[IFLA_BROADCAST]) {
1415 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
Jiri Pirkoe7c32732013-01-01 03:30:13 +00001416 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Patrick McHardy0157f602007-06-13 12:03:36 -07001417 }
1418
1419 if (ifm->ifi_flags || ifm->ifi_change) {
Patrick McHardy3729d502010-02-26 06:34:54 +00001420 err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
Johannes Berg5f9021c2008-11-16 23:20:31 -08001421 if (err < 0)
1422 goto errout;
Patrick McHardy0157f602007-06-13 12:03:36 -07001423 }
1424
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001425 if (tb[IFLA_MASTER]) {
1426 err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER]));
1427 if (err)
1428 goto errout;
1429 modified = 1;
1430 }
1431
Jiri Pirko9a572472012-12-27 23:49:39 +00001432 if (tb[IFLA_CARRIER]) {
1433 err = dev_change_carrier(dev, nla_get_u8(tb[IFLA_CARRIER]));
1434 if (err)
1435 goto errout;
1436 modified = 1;
1437 }
1438
David S. Miller93b2d4a2008-02-17 18:35:07 -08001439 if (tb[IFLA_TXQLEN])
1440 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
Patrick McHardy0157f602007-06-13 12:03:36 -07001441
Patrick McHardy0157f602007-06-13 12:03:36 -07001442 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001443 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Patrick McHardy0157f602007-06-13 12:03:36 -07001444
1445 if (tb[IFLA_LINKMODE]) {
David S. Miller93b2d4a2008-02-17 18:35:07 -08001446 write_lock_bh(&dev_base_lock);
1447 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1448 write_unlock_bh(&dev_base_lock);
Patrick McHardy0157f602007-06-13 12:03:36 -07001449 }
1450
Chris Wrightc02db8c2010-05-16 01:05:45 -07001451 if (tb[IFLA_VFINFO_LIST]) {
1452 struct nlattr *attr;
1453 int rem;
1454 nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) {
David Howells253683b2010-05-21 02:25:27 +00001455 if (nla_type(attr) != IFLA_VF_INFO) {
1456 err = -EINVAL;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001457 goto errout;
David Howells253683b2010-05-21 02:25:27 +00001458 }
Chris Wrightc02db8c2010-05-16 01:05:45 -07001459 err = do_setvfinfo(dev, attr);
1460 if (err < 0)
1461 goto errout;
1462 modified = 1;
1463 }
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001464 }
Patrick McHardy0157f602007-06-13 12:03:36 -07001465 err = 0;
1466
Scott Feldman57b61082010-05-17 22:49:55 -07001467 if (tb[IFLA_VF_PORTS]) {
1468 struct nlattr *port[IFLA_PORT_MAX+1];
1469 struct nlattr *attr;
1470 int vf;
1471 int rem;
1472
1473 err = -EOPNOTSUPP;
1474 if (!ops->ndo_set_vf_port)
1475 goto errout;
1476
1477 nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) {
1478 if (nla_type(attr) != IFLA_VF_PORT)
1479 continue;
1480 err = nla_parse_nested(port, IFLA_PORT_MAX,
1481 attr, ifla_port_policy);
1482 if (err < 0)
1483 goto errout;
1484 if (!port[IFLA_PORT_VF]) {
1485 err = -EOPNOTSUPP;
1486 goto errout;
1487 }
1488 vf = nla_get_u32(port[IFLA_PORT_VF]);
1489 err = ops->ndo_set_vf_port(dev, vf, port);
1490 if (err < 0)
1491 goto errout;
1492 modified = 1;
1493 }
1494 }
1495 err = 0;
1496
1497 if (tb[IFLA_PORT_SELF]) {
1498 struct nlattr *port[IFLA_PORT_MAX+1];
1499
1500 err = nla_parse_nested(port, IFLA_PORT_MAX,
1501 tb[IFLA_PORT_SELF], ifla_port_policy);
1502 if (err < 0)
1503 goto errout;
1504
1505 err = -EOPNOTSUPP;
1506 if (ops->ndo_set_vf_port)
1507 err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port);
1508 if (err < 0)
1509 goto errout;
1510 modified = 1;
1511 }
Thomas Graff8ff1822010-11-16 04:30:14 +00001512
1513 if (tb[IFLA_AF_SPEC]) {
1514 struct nlattr *af;
1515 int rem;
1516
1517 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1518 const struct rtnl_af_ops *af_ops;
1519
1520 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001521 BUG();
Thomas Graff8ff1822010-11-16 04:30:14 +00001522
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001523 err = af_ops->set_link_af(dev, af);
Thomas Graff8ff1822010-11-16 04:30:14 +00001524 if (err < 0)
1525 goto errout;
1526
1527 modified = 1;
1528 }
1529 }
Scott Feldman57b61082010-05-17 22:49:55 -07001530 err = 0;
1531
Patrick McHardy0157f602007-06-13 12:03:36 -07001532errout:
Joe Perchese87cc472012-05-13 21:56:26 +00001533 if (err < 0 && modified)
1534 net_warn_ratelimited("A link change request failed with some changes committed already. Interface %s may have been left with an inconsistent configuration, please check.\n",
1535 dev->name);
Patrick McHardy0157f602007-06-13 12:03:36 -07001536
Patrick McHardy0157f602007-06-13 12:03:36 -07001537 return err;
1538}
1539
Thomas Grafda5e0492006-08-10 21:17:37 -07001540static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001542 struct net *net = sock_net(skb->sk);
Thomas Grafda5e0492006-08-10 21:17:37 -07001543 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -07001545 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -07001546 struct nlattr *tb[IFLA_MAX+1];
1547 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Thomas Grafda5e0492006-08-10 21:17:37 -07001549 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1550 if (err < 0)
1551 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Thomas Graf5176f912006-08-26 20:13:18 -07001553 if (tb[IFLA_IFNAME])
1554 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -07001555 else
1556 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -07001559 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -07001560 if (ifm->ifi_index > 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001561 dev = __dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -07001562 else if (tb[IFLA_IFNAME])
Eric Dumazeta3d12892009-10-21 10:59:31 +00001563 dev = __dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -07001564 else
1565 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Thomas Grafda5e0492006-08-10 21:17:37 -07001567 if (dev == NULL) {
1568 err = -ENODEV;
1569 goto errout;
1570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Eric Dumazete0d087a2009-11-07 01:26:17 -08001572 err = validate_linkmsg(dev, tb);
1573 if (err < 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001574 goto errout;
Thomas Grafda5e0492006-08-10 21:17:37 -07001575
Patrick McHardy38f7b872007-06-13 12:03:51 -07001576 err = do_setlink(dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -07001577errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 return err;
1579}
1580
Patrick McHardy38f7b872007-06-13 12:03:51 -07001581static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1582{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001583 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001584 const struct rtnl_link_ops *ops;
1585 struct net_device *dev;
1586 struct ifinfomsg *ifm;
1587 char ifname[IFNAMSIZ];
1588 struct nlattr *tb[IFLA_MAX+1];
1589 int err;
Eric Dumazet226bd342011-05-08 23:17:57 +00001590 LIST_HEAD(list_kill);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001591
1592 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1593 if (err < 0)
1594 return err;
1595
1596 if (tb[IFLA_IFNAME])
1597 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1598
1599 ifm = nlmsg_data(nlh);
1600 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001601 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001602 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001603 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001604 else
1605 return -EINVAL;
1606
1607 if (!dev)
1608 return -ENODEV;
1609
1610 ops = dev->rtnl_link_ops;
1611 if (!ops)
1612 return -EOPNOTSUPP;
1613
Eric Dumazet226bd342011-05-08 23:17:57 +00001614 ops->dellink(dev, &list_kill);
1615 unregister_netdevice_many(&list_kill);
1616 list_del(&list_kill);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001617 return 0;
1618}
1619
Patrick McHardy3729d502010-02-26 06:34:54 +00001620int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
1621{
1622 unsigned int old_flags;
1623 int err;
1624
1625 old_flags = dev->flags;
1626 if (ifm && (ifm->ifi_flags || ifm->ifi_change)) {
1627 err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
1628 if (err < 0)
1629 return err;
1630 }
1631
1632 dev->rtnl_link_state = RTNL_LINK_INITIALIZED;
1633 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1634
1635 __dev_notify_flags(dev, old_flags);
1636 return 0;
1637}
1638EXPORT_SYMBOL(rtnl_configure_link);
1639
Rami Rosenc0713562012-11-30 01:08:47 +00001640struct net_device *rtnl_create_link(struct net *net,
Eric W. Biederman81adee42009-11-08 00:53:51 -08001641 char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[])
Pavel Emelianove7199282007-08-08 22:16:38 -07001642{
1643 int err;
1644 struct net_device *dev;
Jiri Pirkod40156a2012-07-20 02:28:47 +00001645 unsigned int num_tx_queues = 1;
1646 unsigned int num_rx_queues = 1;
Pavel Emelianove7199282007-08-08 22:16:38 -07001647
Jiri Pirko76ff5cc2012-07-20 02:28:48 +00001648 if (tb[IFLA_NUM_TX_QUEUES])
1649 num_tx_queues = nla_get_u32(tb[IFLA_NUM_TX_QUEUES]);
1650 else if (ops->get_num_tx_queues)
Jiri Pirkod40156a2012-07-20 02:28:47 +00001651 num_tx_queues = ops->get_num_tx_queues();
Jiri Pirko76ff5cc2012-07-20 02:28:48 +00001652
1653 if (tb[IFLA_NUM_RX_QUEUES])
1654 num_rx_queues = nla_get_u32(tb[IFLA_NUM_RX_QUEUES]);
1655 else if (ops->get_num_rx_queues)
Jiri Pirkod40156a2012-07-20 02:28:47 +00001656 num_rx_queues = ops->get_num_rx_queues();
stephen hemmingerefacb302012-04-10 18:34:43 +00001657
Pavel Emelianove7199282007-08-08 22:16:38 -07001658 err = -ENOMEM;
Jiri Pirkod40156a2012-07-20 02:28:47 +00001659 dev = alloc_netdev_mqs(ops->priv_size, ifname, ops->setup,
1660 num_tx_queues, num_rx_queues);
Pavel Emelianove7199282007-08-08 22:16:38 -07001661 if (!dev)
1662 goto err;
1663
Eric W. Biederman81adee42009-11-08 00:53:51 -08001664 dev_net_set(dev, net);
1665 dev->rtnl_link_ops = ops;
Patrick McHardy3729d502010-02-26 06:34:54 +00001666 dev->rtnl_link_state = RTNL_LINK_INITIALIZING;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001667
Pavel Emelianove7199282007-08-08 22:16:38 -07001668 if (tb[IFLA_MTU])
1669 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
Jiri Pirko2afb9b52013-01-06 12:41:57 +00001670 if (tb[IFLA_ADDRESS]) {
Pavel Emelianove7199282007-08-08 22:16:38 -07001671 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1672 nla_len(tb[IFLA_ADDRESS]));
Jiri Pirko2afb9b52013-01-06 12:41:57 +00001673 dev->addr_assign_type = NET_ADDR_SET;
1674 }
Pavel Emelianove7199282007-08-08 22:16:38 -07001675 if (tb[IFLA_BROADCAST])
1676 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1677 nla_len(tb[IFLA_BROADCAST]));
1678 if (tb[IFLA_TXQLEN])
1679 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1680 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001681 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001682 if (tb[IFLA_LINKMODE])
1683 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
Patrick McHardyffa934f2011-01-20 03:00:42 +00001684 if (tb[IFLA_GROUP])
1685 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001686
1687 return dev;
1688
Pavel Emelianove7199282007-08-08 22:16:38 -07001689err:
1690 return ERR_PTR(err);
1691}
Eric Dumazete0d087a2009-11-07 01:26:17 -08001692EXPORT_SYMBOL(rtnl_create_link);
Pavel Emelianove7199282007-08-08 22:16:38 -07001693
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001694static int rtnl_group_changelink(struct net *net, int group,
1695 struct ifinfomsg *ifm,
1696 struct nlattr **tb)
1697{
1698 struct net_device *dev;
1699 int err;
1700
1701 for_each_netdev(net, dev) {
1702 if (dev->group == group) {
1703 err = do_setlink(dev, ifm, tb, NULL, 0);
1704 if (err < 0)
1705 return err;
1706 }
1707 }
1708
1709 return 0;
1710}
1711
Patrick McHardy38f7b872007-06-13 12:03:51 -07001712static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1713{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001714 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001715 const struct rtnl_link_ops *ops;
1716 struct net_device *dev;
1717 struct ifinfomsg *ifm;
1718 char kind[MODULE_NAME_LEN];
1719 char ifname[IFNAMSIZ];
1720 struct nlattr *tb[IFLA_MAX+1];
1721 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1722 int err;
1723
Johannes Berg95a5afc2008-10-16 15:24:51 -07001724#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001725replay:
Thomas Graf8072f082007-07-31 14:13:50 -07001726#endif
Patrick McHardy38f7b872007-06-13 12:03:51 -07001727 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1728 if (err < 0)
1729 return err;
1730
1731 if (tb[IFLA_IFNAME])
1732 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1733 else
1734 ifname[0] = '\0';
1735
1736 ifm = nlmsg_data(nlh);
1737 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001738 dev = __dev_get_by_index(net, ifm->ifi_index);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001739 else {
1740 if (ifname[0])
1741 dev = __dev_get_by_name(net, ifname);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001742 else
1743 dev = NULL;
1744 }
Patrick McHardy38f7b872007-06-13 12:03:51 -07001745
Eric Dumazete0d087a2009-11-07 01:26:17 -08001746 err = validate_linkmsg(dev, tb);
1747 if (err < 0)
Thomas Graf1840bb12008-02-23 19:54:36 -08001748 return err;
1749
Patrick McHardy38f7b872007-06-13 12:03:51 -07001750 if (tb[IFLA_LINKINFO]) {
1751 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1752 tb[IFLA_LINKINFO], ifla_info_policy);
1753 if (err < 0)
1754 return err;
1755 } else
1756 memset(linkinfo, 0, sizeof(linkinfo));
1757
1758 if (linkinfo[IFLA_INFO_KIND]) {
1759 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1760 ops = rtnl_link_ops_get(kind);
1761 } else {
1762 kind[0] = '\0';
1763 ops = NULL;
1764 }
1765
1766 if (1) {
1767 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001768 struct net *dest_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001769
1770 if (ops) {
1771 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1772 err = nla_parse_nested(attr, ops->maxtype,
1773 linkinfo[IFLA_INFO_DATA],
1774 ops->policy);
1775 if (err < 0)
1776 return err;
1777 data = attr;
1778 }
1779 if (ops->validate) {
1780 err = ops->validate(tb, data);
1781 if (err < 0)
1782 return err;
1783 }
1784 }
1785
1786 if (dev) {
1787 int modified = 0;
1788
1789 if (nlh->nlmsg_flags & NLM_F_EXCL)
1790 return -EEXIST;
1791 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1792 return -EOPNOTSUPP;
1793
1794 if (linkinfo[IFLA_INFO_DATA]) {
1795 if (!ops || ops != dev->rtnl_link_ops ||
1796 !ops->changelink)
1797 return -EOPNOTSUPP;
1798
1799 err = ops->changelink(dev, tb, data);
1800 if (err < 0)
1801 return err;
1802 modified = 1;
1803 }
1804
1805 return do_setlink(dev, ifm, tb, ifname, modified);
1806 }
1807
Patrick McHardyffa934f2011-01-20 03:00:42 +00001808 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1809 if (ifm->ifi_index == 0 && tb[IFLA_GROUP])
1810 return rtnl_group_changelink(net,
1811 nla_get_u32(tb[IFLA_GROUP]),
1812 ifm, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001813 return -ENODEV;
Patrick McHardyffa934f2011-01-20 03:00:42 +00001814 }
Patrick McHardy38f7b872007-06-13 12:03:51 -07001815
Patrick McHardy0e068772007-07-11 19:42:31 -07001816 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
Patrick McHardy38f7b872007-06-13 12:03:51 -07001817 return -EOPNOTSUPP;
1818
1819 if (!ops) {
Johannes Berg95a5afc2008-10-16 15:24:51 -07001820#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001821 if (kind[0]) {
1822 __rtnl_unlock();
1823 request_module("rtnl-link-%s", kind);
1824 rtnl_lock();
1825 ops = rtnl_link_ops_get(kind);
1826 if (ops)
1827 goto replay;
1828 }
1829#endif
1830 return -EOPNOTSUPP;
1831 }
1832
1833 if (!ifname[0])
1834 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001835
Eric W. Biederman81adee42009-11-08 00:53:51 -08001836 dest_net = rtnl_link_get_net(net, tb);
Eric W. Biederman13ad1772011-01-29 14:57:22 +00001837 if (IS_ERR(dest_net))
1838 return PTR_ERR(dest_net);
1839
Rami Rosenc0713562012-11-30 01:08:47 +00001840 dev = rtnl_create_link(dest_net, ifname, ops, tb);
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00001841 if (IS_ERR(dev)) {
Pavel Emelianove7199282007-08-08 22:16:38 -07001842 err = PTR_ERR(dev);
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00001843 goto out;
1844 }
1845
1846 dev->ifindex = ifm->ifi_index;
1847
1848 if (ops->newlink)
Eric W. Biederman81adee42009-11-08 00:53:51 -08001849 err = ops->newlink(net, dev, tb, data);
Patrick McHardy2d85cba2007-07-11 19:42:13 -07001850 else
1851 err = register_netdevice(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001852
1853 if (err < 0 && !IS_ERR(dev))
Patrick McHardy38f7b872007-06-13 12:03:51 -07001854 free_netdev(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001855 if (err < 0)
Patrick McHardy3729d502010-02-26 06:34:54 +00001856 goto out;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001857
Patrick McHardy3729d502010-02-26 06:34:54 +00001858 err = rtnl_configure_link(dev, ifm);
1859 if (err < 0)
1860 unregister_netdevice(dev);
1861out:
Eric W. Biederman81adee42009-11-08 00:53:51 -08001862 put_net(dest_net);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001863 return err;
1864 }
1865}
1866
Thomas Grafb60c5112006-08-04 23:05:34 -07001867static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001868{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001869 struct net *net = sock_net(skb->sk);
Thomas Grafb60c5112006-08-04 23:05:34 -07001870 struct ifinfomsg *ifm;
Eric Dumazeta3d12892009-10-21 10:59:31 +00001871 char ifname[IFNAMSIZ];
Thomas Grafb60c5112006-08-04 23:05:34 -07001872 struct nlattr *tb[IFLA_MAX+1];
1873 struct net_device *dev = NULL;
1874 struct sk_buff *nskb;
Thomas Graf339bf982006-11-10 14:10:15 -08001875 int err;
Greg Rose115c9b82012-02-21 16:54:48 -05001876 u32 ext_filter_mask = 0;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001877
Thomas Grafb60c5112006-08-04 23:05:34 -07001878 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1879 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07001880 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07001881
Eric Dumazeta3d12892009-10-21 10:59:31 +00001882 if (tb[IFLA_IFNAME])
1883 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1884
Greg Rose115c9b82012-02-21 16:54:48 -05001885 if (tb[IFLA_EXT_MASK])
1886 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
1887
Thomas Grafb60c5112006-08-04 23:05:34 -07001888 ifm = nlmsg_data(nlh);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001889 if (ifm->ifi_index > 0)
1890 dev = __dev_get_by_index(net, ifm->ifi_index);
1891 else if (tb[IFLA_IFNAME])
1892 dev = __dev_get_by_name(net, ifname);
1893 else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001894 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07001895
Eric Dumazeta3d12892009-10-21 10:59:31 +00001896 if (dev == NULL)
1897 return -ENODEV;
1898
Greg Rose115c9b82012-02-21 16:54:48 -05001899 nskb = nlmsg_new(if_nlmsg_size(dev, ext_filter_mask), GFP_KERNEL);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001900 if (nskb == NULL)
1901 return -ENOBUFS;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001902
Eric W. Biederman15e47302012-09-07 20:12:54 +00001903 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).portid,
Greg Rose115c9b82012-02-21 16:54:48 -05001904 nlh->nlmsg_seq, 0, 0, ext_filter_mask);
Patrick McHardy26932562007-01-31 23:16:40 -08001905 if (err < 0) {
1906 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1907 WARN_ON(err == -EMSGSIZE);
1908 kfree_skb(nskb);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001909 } else
Eric W. Biederman15e47302012-09-07 20:12:54 +00001910 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).portid);
Thomas Grafb60c5112006-08-04 23:05:34 -07001911
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001912 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001913}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001914
Greg Rose115c9b82012-02-21 16:54:48 -05001915static u16 rtnl_calcit(struct sk_buff *skb, struct nlmsghdr *nlh)
Greg Rosec7ac8672011-06-10 01:27:09 +00001916{
Greg Rose115c9b82012-02-21 16:54:48 -05001917 struct net *net = sock_net(skb->sk);
1918 struct net_device *dev;
1919 struct nlattr *tb[IFLA_MAX+1];
1920 u32 ext_filter_mask = 0;
1921 u16 min_ifinfo_dump_size = 0;
1922
Eric Dumazeta4b64fb2012-03-04 12:32:10 +00001923 if (nlmsg_parse(nlh, sizeof(struct rtgenmsg), tb, IFLA_MAX,
1924 ifla_policy) >= 0) {
1925 if (tb[IFLA_EXT_MASK])
1926 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
1927 }
Greg Rose115c9b82012-02-21 16:54:48 -05001928
1929 if (!ext_filter_mask)
1930 return NLMSG_GOODSIZE;
1931 /*
1932 * traverse the list of net devices and compute the minimum
1933 * buffer size based upon the filter mask.
1934 */
1935 list_for_each_entry(dev, &net->dev_base_head, dev_list) {
1936 min_ifinfo_dump_size = max_t(u16, min_ifinfo_dump_size,
1937 if_nlmsg_size(dev,
1938 ext_filter_mask));
1939 }
1940
Greg Rosec7ac8672011-06-10 01:27:09 +00001941 return min_ifinfo_dump_size;
1942}
1943
Adrian Bunk42bad1d2007-04-26 00:57:41 -07001944static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945{
1946 int idx;
1947 int s_idx = cb->family;
1948
1949 if (s_idx == 0)
1950 s_idx = 1;
Patrick McHardy25239ce2010-04-26 16:02:05 +02001951 for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 int type = cb->nlh->nlmsg_type-RTM_BASE;
1953 if (idx < s_idx || idx == PF_PACKET)
1954 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07001955 if (rtnl_msg_handlers[idx] == NULL ||
1956 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 continue;
1958 if (idx > s_idx)
1959 memset(&cb->args[0], 0, sizeof(cb->args));
Thomas Grafe2849862007-03-22 11:48:11 -07001960 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 break;
1962 }
1963 cb->family = idx;
1964
1965 return skb->len;
1966}
1967
Eric Dumazet95c96172012-04-15 05:58:06 +00001968void rtmsg_ifinfo(int type, struct net_device *dev, unsigned int change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001970 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001972 int err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00001973 size_t if_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Greg Rose115c9b82012-02-21 16:54:48 -05001975 skb = nlmsg_new((if_info_size = if_nlmsg_size(dev, 0)), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001976 if (skb == NULL)
1977 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Greg Rose115c9b82012-02-21 16:54:48 -05001979 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001980 if (err < 0) {
1981 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1982 WARN_ON(err == -EMSGSIZE);
1983 kfree_skb(skb);
1984 goto errout;
1985 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001986 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1987 return;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001988errout:
1989 if (err < 0)
Eric W. Biederman4b3da702007-11-19 22:27:40 -08001990 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991}
Jiri Pirko471cb5a2013-01-03 22:49:01 +00001992EXPORT_SYMBOL(rtmsg_ifinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
John Fastabendd83b0602012-04-15 06:44:08 +00001994static int nlmsg_populate_fdb_fill(struct sk_buff *skb,
1995 struct net_device *dev,
1996 u8 *addr, u32 pid, u32 seq,
1997 int type, unsigned int flags)
1998{
1999 struct nlmsghdr *nlh;
2000 struct ndmsg *ndm;
2001
2002 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), NLM_F_MULTI);
2003 if (!nlh)
2004 return -EMSGSIZE;
2005
2006 ndm = nlmsg_data(nlh);
2007 ndm->ndm_family = AF_BRIDGE;
2008 ndm->ndm_pad1 = 0;
2009 ndm->ndm_pad2 = 0;
2010 ndm->ndm_flags = flags;
2011 ndm->ndm_type = 0;
2012 ndm->ndm_ifindex = dev->ifindex;
2013 ndm->ndm_state = NUD_PERMANENT;
2014
2015 if (nla_put(skb, NDA_LLADDR, ETH_ALEN, addr))
2016 goto nla_put_failure;
2017
2018 return nlmsg_end(skb, nlh);
2019
2020nla_put_failure:
2021 nlmsg_cancel(skb, nlh);
2022 return -EMSGSIZE;
2023}
2024
John Fastabend3ff661c2012-04-15 06:44:14 +00002025static inline size_t rtnl_fdb_nlmsg_size(void)
2026{
2027 return NLMSG_ALIGN(sizeof(struct ndmsg)) + nla_total_size(ETH_ALEN);
2028}
2029
2030static void rtnl_fdb_notify(struct net_device *dev, u8 *addr, int type)
2031{
2032 struct net *net = dev_net(dev);
2033 struct sk_buff *skb;
2034 int err = -ENOBUFS;
2035
2036 skb = nlmsg_new(rtnl_fdb_nlmsg_size(), GFP_ATOMIC);
2037 if (!skb)
2038 goto errout;
2039
2040 err = nlmsg_populate_fdb_fill(skb, dev, addr, 0, 0, type, NTF_SELF);
2041 if (err < 0) {
2042 kfree_skb(skb);
2043 goto errout;
2044 }
2045
2046 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
2047 return;
2048errout:
2049 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
2050}
2051
John Fastabend77162022012-04-15 06:43:56 +00002052static int rtnl_fdb_add(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
2053{
2054 struct net *net = sock_net(skb->sk);
John Fastabend77162022012-04-15 06:43:56 +00002055 struct ndmsg *ndm;
2056 struct nlattr *tb[NDA_MAX+1];
2057 struct net_device *dev;
2058 u8 *addr;
2059 int err;
2060
2061 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
2062 if (err < 0)
2063 return err;
2064
2065 ndm = nlmsg_data(nlh);
2066 if (ndm->ndm_ifindex == 0) {
2067 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid ifindex\n");
2068 return -EINVAL;
2069 }
2070
2071 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
2072 if (dev == NULL) {
2073 pr_info("PF_BRIDGE: RTM_NEWNEIGH with unknown ifindex\n");
2074 return -ENODEV;
2075 }
2076
2077 if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) {
2078 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid address\n");
2079 return -EINVAL;
2080 }
2081
2082 addr = nla_data(tb[NDA_LLADDR]);
2083 if (!is_valid_ether_addr(addr)) {
2084 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid ether address\n");
2085 return -EINVAL;
2086 }
2087
2088 err = -EOPNOTSUPP;
2089
2090 /* Support fdb on master device the net/bridge default case */
2091 if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) &&
2092 (dev->priv_flags & IFF_BRIDGE_PORT)) {
Jiri Pirko898e5062013-01-03 22:48:52 +00002093 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2094 const struct net_device_ops *ops = br_dev->netdev_ops;
2095
2096 err = ops->ndo_fdb_add(ndm, tb, dev, addr, nlh->nlmsg_flags);
John Fastabend77162022012-04-15 06:43:56 +00002097 if (err)
2098 goto out;
2099 else
2100 ndm->ndm_flags &= ~NTF_MASTER;
2101 }
2102
2103 /* Embedded bridge, macvlan, and any other device support */
2104 if ((ndm->ndm_flags & NTF_SELF) && dev->netdev_ops->ndo_fdb_add) {
stephen hemmingeredc7d572012-10-01 12:32:33 +00002105 err = dev->netdev_ops->ndo_fdb_add(ndm, tb,
2106 dev, addr,
John Fastabend77162022012-04-15 06:43:56 +00002107 nlh->nlmsg_flags);
2108
John Fastabend3ff661c2012-04-15 06:44:14 +00002109 if (!err) {
2110 rtnl_fdb_notify(dev, addr, RTM_NEWNEIGH);
John Fastabend77162022012-04-15 06:43:56 +00002111 ndm->ndm_flags &= ~NTF_SELF;
John Fastabend3ff661c2012-04-15 06:44:14 +00002112 }
John Fastabend77162022012-04-15 06:43:56 +00002113 }
2114out:
2115 return err;
2116}
2117
2118static int rtnl_fdb_del(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
2119{
2120 struct net *net = sock_net(skb->sk);
2121 struct ndmsg *ndm;
2122 struct nlattr *llattr;
2123 struct net_device *dev;
2124 int err = -EINVAL;
2125 __u8 *addr;
2126
2127 if (nlmsg_len(nlh) < sizeof(*ndm))
2128 return -EINVAL;
2129
2130 ndm = nlmsg_data(nlh);
2131 if (ndm->ndm_ifindex == 0) {
2132 pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid ifindex\n");
2133 return -EINVAL;
2134 }
2135
2136 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
2137 if (dev == NULL) {
2138 pr_info("PF_BRIDGE: RTM_DELNEIGH with unknown ifindex\n");
2139 return -ENODEV;
2140 }
2141
2142 llattr = nlmsg_find_attr(nlh, sizeof(*ndm), NDA_LLADDR);
2143 if (llattr == NULL || nla_len(llattr) != ETH_ALEN) {
2144 pr_info("PF_BRIGDE: RTM_DELNEIGH with invalid address\n");
2145 return -EINVAL;
2146 }
2147
2148 addr = nla_data(llattr);
2149 err = -EOPNOTSUPP;
2150
2151 /* Support fdb on master device the net/bridge default case */
2152 if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) &&
2153 (dev->priv_flags & IFF_BRIDGE_PORT)) {
Jiri Pirko898e5062013-01-03 22:48:52 +00002154 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2155 const struct net_device_ops *ops = br_dev->netdev_ops;
John Fastabend77162022012-04-15 06:43:56 +00002156
Jiri Pirko898e5062013-01-03 22:48:52 +00002157 if (ops->ndo_fdb_del)
2158 err = ops->ndo_fdb_del(ndm, dev, addr);
John Fastabend77162022012-04-15 06:43:56 +00002159
2160 if (err)
2161 goto out;
2162 else
2163 ndm->ndm_flags &= ~NTF_MASTER;
2164 }
2165
2166 /* Embedded bridge, macvlan, and any other device support */
2167 if ((ndm->ndm_flags & NTF_SELF) && dev->netdev_ops->ndo_fdb_del) {
2168 err = dev->netdev_ops->ndo_fdb_del(ndm, dev, addr);
2169
John Fastabend3ff661c2012-04-15 06:44:14 +00002170 if (!err) {
2171 rtnl_fdb_notify(dev, addr, RTM_DELNEIGH);
John Fastabend77162022012-04-15 06:43:56 +00002172 ndm->ndm_flags &= ~NTF_SELF;
John Fastabend3ff661c2012-04-15 06:44:14 +00002173 }
John Fastabend77162022012-04-15 06:43:56 +00002174 }
2175out:
2176 return err;
2177}
2178
John Fastabendd83b0602012-04-15 06:44:08 +00002179static int nlmsg_populate_fdb(struct sk_buff *skb,
2180 struct netlink_callback *cb,
2181 struct net_device *dev,
2182 int *idx,
2183 struct netdev_hw_addr_list *list)
2184{
2185 struct netdev_hw_addr *ha;
2186 int err;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002187 u32 portid, seq;
John Fastabendd83b0602012-04-15 06:44:08 +00002188
Eric W. Biederman15e47302012-09-07 20:12:54 +00002189 portid = NETLINK_CB(cb->skb).portid;
John Fastabendd83b0602012-04-15 06:44:08 +00002190 seq = cb->nlh->nlmsg_seq;
2191
2192 list_for_each_entry(ha, &list->list, list) {
2193 if (*idx < cb->args[0])
2194 goto skip;
2195
2196 err = nlmsg_populate_fdb_fill(skb, dev, ha->addr,
John Fastabenda7a558f2012-11-01 16:23:10 +00002197 portid, seq,
2198 RTM_NEWNEIGH, NTF_SELF);
John Fastabendd83b0602012-04-15 06:44:08 +00002199 if (err < 0)
2200 return err;
2201skip:
2202 *idx += 1;
2203 }
2204 return 0;
2205}
2206
2207/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002208 * ndo_dflt_fdb_dump - default netdevice operation to dump an FDB table.
John Fastabendd83b0602012-04-15 06:44:08 +00002209 * @nlh: netlink message header
2210 * @dev: netdevice
2211 *
2212 * Default netdevice operation to dump the existing unicast address list.
2213 * Returns zero on success.
2214 */
2215int ndo_dflt_fdb_dump(struct sk_buff *skb,
2216 struct netlink_callback *cb,
2217 struct net_device *dev,
2218 int idx)
2219{
2220 int err;
2221
2222 netif_addr_lock_bh(dev);
2223 err = nlmsg_populate_fdb(skb, cb, dev, &idx, &dev->uc);
2224 if (err)
2225 goto out;
2226 nlmsg_populate_fdb(skb, cb, dev, &idx, &dev->mc);
2227out:
2228 netif_addr_unlock_bh(dev);
2229 return idx;
2230}
2231EXPORT_SYMBOL(ndo_dflt_fdb_dump);
2232
John Fastabend77162022012-04-15 06:43:56 +00002233static int rtnl_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb)
2234{
2235 int idx = 0;
2236 struct net *net = sock_net(skb->sk);
2237 struct net_device *dev;
2238
2239 rcu_read_lock();
2240 for_each_netdev_rcu(net, dev) {
2241 if (dev->priv_flags & IFF_BRIDGE_PORT) {
Jiri Pirko898e5062013-01-03 22:48:52 +00002242 struct net_device *br_dev;
2243 const struct net_device_ops *ops;
John Fastabend77162022012-04-15 06:43:56 +00002244
Jiri Pirko898e5062013-01-03 22:48:52 +00002245 br_dev = netdev_master_upper_dev_get(dev);
2246 ops = br_dev->netdev_ops;
John Fastabend77162022012-04-15 06:43:56 +00002247 if (ops->ndo_fdb_dump)
2248 idx = ops->ndo_fdb_dump(skb, cb, dev, idx);
2249 }
2250
2251 if (dev->netdev_ops->ndo_fdb_dump)
2252 idx = dev->netdev_ops->ndo_fdb_dump(skb, cb, dev, idx);
2253 }
2254 rcu_read_unlock();
2255
2256 cb->args[0] = idx;
2257 return skb->len;
2258}
2259
John Fastabend815cccb2012-10-24 08:13:09 +00002260int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
2261 struct net_device *dev, u16 mode)
2262{
2263 struct nlmsghdr *nlh;
2264 struct ifinfomsg *ifm;
2265 struct nlattr *br_afspec;
2266 u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN;
Jiri Pirko898e5062013-01-03 22:48:52 +00002267 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
John Fastabend815cccb2012-10-24 08:13:09 +00002268
2269 nlh = nlmsg_put(skb, pid, seq, RTM_NEWLINK, sizeof(*ifm), NLM_F_MULTI);
2270 if (nlh == NULL)
2271 return -EMSGSIZE;
2272
2273 ifm = nlmsg_data(nlh);
2274 ifm->ifi_family = AF_BRIDGE;
2275 ifm->__ifi_pad = 0;
2276 ifm->ifi_type = dev->type;
2277 ifm->ifi_index = dev->ifindex;
2278 ifm->ifi_flags = dev_get_flags(dev);
2279 ifm->ifi_change = 0;
2280
2281
2282 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
2283 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
2284 nla_put_u8(skb, IFLA_OPERSTATE, operstate) ||
Jiri Pirko898e5062013-01-03 22:48:52 +00002285 (br_dev &&
2286 nla_put_u32(skb, IFLA_MASTER, br_dev->ifindex)) ||
John Fastabend815cccb2012-10-24 08:13:09 +00002287 (dev->addr_len &&
2288 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
2289 (dev->ifindex != dev->iflink &&
2290 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
2291 goto nla_put_failure;
2292
2293 br_afspec = nla_nest_start(skb, IFLA_AF_SPEC);
2294 if (!br_afspec)
2295 goto nla_put_failure;
2296
2297 if (nla_put_u16(skb, IFLA_BRIDGE_FLAGS, BRIDGE_FLAGS_SELF) ||
2298 nla_put_u16(skb, IFLA_BRIDGE_MODE, mode)) {
2299 nla_nest_cancel(skb, br_afspec);
2300 goto nla_put_failure;
2301 }
2302 nla_nest_end(skb, br_afspec);
2303
2304 return nlmsg_end(skb, nlh);
2305nla_put_failure:
2306 nlmsg_cancel(skb, nlh);
2307 return -EMSGSIZE;
2308}
2309EXPORT_SYMBOL(ndo_dflt_bridge_getlink);
2310
John Fastabende5a55a82012-10-24 08:12:57 +00002311static int rtnl_bridge_getlink(struct sk_buff *skb, struct netlink_callback *cb)
2312{
2313 struct net *net = sock_net(skb->sk);
2314 struct net_device *dev;
2315 int idx = 0;
2316 u32 portid = NETLINK_CB(cb->skb).portid;
2317 u32 seq = cb->nlh->nlmsg_seq;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00002318 struct nlattr *extfilt;
2319 u32 filter_mask = 0;
2320
2321 extfilt = nlmsg_find_attr(cb->nlh, sizeof(struct rtgenmsg),
2322 IFLA_EXT_MASK);
2323 if (extfilt)
2324 filter_mask = nla_get_u32(extfilt);
John Fastabende5a55a82012-10-24 08:12:57 +00002325
2326 rcu_read_lock();
2327 for_each_netdev_rcu(net, dev) {
2328 const struct net_device_ops *ops = dev->netdev_ops;
Jiri Pirko898e5062013-01-03 22:48:52 +00002329 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
John Fastabende5a55a82012-10-24 08:12:57 +00002330
Jiri Pirko898e5062013-01-03 22:48:52 +00002331 if (br_dev && br_dev->netdev_ops->ndo_bridge_getlink) {
Ben Hutchings25b1e672012-11-02 12:56:52 +00002332 if (idx >= cb->args[0] &&
Jiri Pirko898e5062013-01-03 22:48:52 +00002333 br_dev->netdev_ops->ndo_bridge_getlink(
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00002334 skb, portid, seq, dev, filter_mask) < 0)
John Fastabende5a55a82012-10-24 08:12:57 +00002335 break;
Ben Hutchings25b1e672012-11-02 12:56:52 +00002336 idx++;
John Fastabende5a55a82012-10-24 08:12:57 +00002337 }
2338
2339 if (ops->ndo_bridge_getlink) {
Ben Hutchings25b1e672012-11-02 12:56:52 +00002340 if (idx >= cb->args[0] &&
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00002341 ops->ndo_bridge_getlink(skb, portid, seq, dev,
2342 filter_mask) < 0)
John Fastabende5a55a82012-10-24 08:12:57 +00002343 break;
Ben Hutchings25b1e672012-11-02 12:56:52 +00002344 idx++;
John Fastabende5a55a82012-10-24 08:12:57 +00002345 }
2346 }
2347 rcu_read_unlock();
2348 cb->args[0] = idx;
2349
2350 return skb->len;
2351}
2352
John Fastabend2469ffd2012-10-24 08:13:03 +00002353static inline size_t bridge_nlmsg_size(void)
2354{
2355 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
2356 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
2357 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
2358 + nla_total_size(sizeof(u32)) /* IFLA_MASTER */
2359 + nla_total_size(sizeof(u32)) /* IFLA_MTU */
2360 + nla_total_size(sizeof(u32)) /* IFLA_LINK */
2361 + nla_total_size(sizeof(u32)) /* IFLA_OPERSTATE */
2362 + nla_total_size(sizeof(u8)) /* IFLA_PROTINFO */
2363 + nla_total_size(sizeof(struct nlattr)) /* IFLA_AF_SPEC */
2364 + nla_total_size(sizeof(u16)) /* IFLA_BRIDGE_FLAGS */
2365 + nla_total_size(sizeof(u16)); /* IFLA_BRIDGE_MODE */
2366}
2367
2368static int rtnl_bridge_notify(struct net_device *dev, u16 flags)
2369{
2370 struct net *net = dev_net(dev);
Jiri Pirko898e5062013-01-03 22:48:52 +00002371 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
John Fastabend2469ffd2012-10-24 08:13:03 +00002372 struct sk_buff *skb;
2373 int err = -EOPNOTSUPP;
2374
2375 skb = nlmsg_new(bridge_nlmsg_size(), GFP_ATOMIC);
2376 if (!skb) {
2377 err = -ENOMEM;
2378 goto errout;
2379 }
2380
John Fastabendc38e01b2012-11-02 16:32:36 +00002381 if ((!flags || (flags & BRIDGE_FLAGS_MASTER)) &&
Jiri Pirko898e5062013-01-03 22:48:52 +00002382 br_dev && br_dev->netdev_ops->ndo_bridge_getlink) {
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00002383 err = br_dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0);
John Fastabendc38e01b2012-11-02 16:32:36 +00002384 if (err < 0)
2385 goto errout;
2386 }
John Fastabend2469ffd2012-10-24 08:13:03 +00002387
John Fastabendc38e01b2012-11-02 16:32:36 +00002388 if ((flags & BRIDGE_FLAGS_SELF) &&
2389 dev->netdev_ops->ndo_bridge_getlink) {
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00002390 err = dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0);
John Fastabendc38e01b2012-11-02 16:32:36 +00002391 if (err < 0)
2392 goto errout;
2393 }
John Fastabend2469ffd2012-10-24 08:13:03 +00002394
2395 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
2396 return 0;
2397errout:
2398 WARN_ON(err == -EMSGSIZE);
2399 kfree_skb(skb);
2400 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
2401 return err;
2402}
2403
John Fastabende5a55a82012-10-24 08:12:57 +00002404static int rtnl_bridge_setlink(struct sk_buff *skb, struct nlmsghdr *nlh,
2405 void *arg)
2406{
2407 struct net *net = sock_net(skb->sk);
2408 struct ifinfomsg *ifm;
2409 struct net_device *dev;
John Fastabend2469ffd2012-10-24 08:13:03 +00002410 struct nlattr *br_spec, *attr = NULL;
2411 int rem, err = -EOPNOTSUPP;
John Fastabendc38e01b2012-11-02 16:32:36 +00002412 u16 oflags, flags = 0;
2413 bool have_flags = false;
John Fastabende5a55a82012-10-24 08:12:57 +00002414
2415 if (nlmsg_len(nlh) < sizeof(*ifm))
2416 return -EINVAL;
2417
2418 ifm = nlmsg_data(nlh);
2419 if (ifm->ifi_family != AF_BRIDGE)
2420 return -EPFNOSUPPORT;
2421
2422 dev = __dev_get_by_index(net, ifm->ifi_index);
2423 if (!dev) {
2424 pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n");
2425 return -ENODEV;
2426 }
2427
John Fastabend2469ffd2012-10-24 08:13:03 +00002428 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
2429 if (br_spec) {
2430 nla_for_each_nested(attr, br_spec, rem) {
2431 if (nla_type(attr) == IFLA_BRIDGE_FLAGS) {
John Fastabendc38e01b2012-11-02 16:32:36 +00002432 have_flags = true;
John Fastabend2469ffd2012-10-24 08:13:03 +00002433 flags = nla_get_u16(attr);
2434 break;
2435 }
2436 }
2437 }
2438
John Fastabendc38e01b2012-11-02 16:32:36 +00002439 oflags = flags;
2440
John Fastabend2469ffd2012-10-24 08:13:03 +00002441 if (!flags || (flags & BRIDGE_FLAGS_MASTER)) {
Jiri Pirko898e5062013-01-03 22:48:52 +00002442 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2443
2444 if (!br_dev || !br_dev->netdev_ops->ndo_bridge_setlink) {
John Fastabend2469ffd2012-10-24 08:13:03 +00002445 err = -EOPNOTSUPP;
2446 goto out;
2447 }
2448
Jiri Pirko898e5062013-01-03 22:48:52 +00002449 err = br_dev->netdev_ops->ndo_bridge_setlink(dev, nlh);
John Fastabende5a55a82012-10-24 08:12:57 +00002450 if (err)
2451 goto out;
John Fastabend2469ffd2012-10-24 08:13:03 +00002452
2453 flags &= ~BRIDGE_FLAGS_MASTER;
John Fastabende5a55a82012-10-24 08:12:57 +00002454 }
2455
John Fastabend2469ffd2012-10-24 08:13:03 +00002456 if ((flags & BRIDGE_FLAGS_SELF)) {
2457 if (!dev->netdev_ops->ndo_bridge_setlink)
2458 err = -EOPNOTSUPP;
2459 else
2460 err = dev->netdev_ops->ndo_bridge_setlink(dev, nlh);
John Fastabende5a55a82012-10-24 08:12:57 +00002461
John Fastabend2469ffd2012-10-24 08:13:03 +00002462 if (!err)
2463 flags &= ~BRIDGE_FLAGS_SELF;
2464 }
2465
John Fastabendc38e01b2012-11-02 16:32:36 +00002466 if (have_flags)
John Fastabend2469ffd2012-10-24 08:13:03 +00002467 memcpy(nla_data(attr), &flags, sizeof(flags));
2468 /* Generate event to notify upper layer of bridge change */
2469 if (!err)
John Fastabendc38e01b2012-11-02 16:32:36 +00002470 err = rtnl_bridge_notify(dev, oflags);
John Fastabende5a55a82012-10-24 08:12:57 +00002471out:
2472 return err;
2473}
2474
Vlad Yasevich407af322013-02-13 12:00:12 +00002475static int rtnl_bridge_dellink(struct sk_buff *skb, struct nlmsghdr *nlh,
2476 void *arg)
2477{
2478 struct net *net = sock_net(skb->sk);
2479 struct ifinfomsg *ifm;
2480 struct net_device *dev;
2481 struct nlattr *br_spec, *attr = NULL;
2482 int rem, err = -EOPNOTSUPP;
2483 u16 oflags, flags = 0;
2484 bool have_flags = false;
2485
2486 if (nlmsg_len(nlh) < sizeof(*ifm))
2487 return -EINVAL;
2488
2489 ifm = nlmsg_data(nlh);
2490 if (ifm->ifi_family != AF_BRIDGE)
2491 return -EPFNOSUPPORT;
2492
2493 dev = __dev_get_by_index(net, ifm->ifi_index);
2494 if (!dev) {
2495 pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n");
2496 return -ENODEV;
2497 }
2498
2499 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
2500 if (br_spec) {
2501 nla_for_each_nested(attr, br_spec, rem) {
2502 if (nla_type(attr) == IFLA_BRIDGE_FLAGS) {
2503 have_flags = true;
2504 flags = nla_get_u16(attr);
2505 break;
2506 }
2507 }
2508 }
2509
2510 oflags = flags;
2511
2512 if (!flags || (flags & BRIDGE_FLAGS_MASTER)) {
2513 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2514
2515 if (!br_dev || !br_dev->netdev_ops->ndo_bridge_dellink) {
2516 err = -EOPNOTSUPP;
2517 goto out;
2518 }
2519
2520 err = br_dev->netdev_ops->ndo_bridge_dellink(dev, nlh);
2521 if (err)
2522 goto out;
2523
2524 flags &= ~BRIDGE_FLAGS_MASTER;
2525 }
2526
2527 if ((flags & BRIDGE_FLAGS_SELF)) {
2528 if (!dev->netdev_ops->ndo_bridge_dellink)
2529 err = -EOPNOTSUPP;
2530 else
2531 err = dev->netdev_ops->ndo_bridge_dellink(dev, nlh);
2532
2533 if (!err)
2534 flags &= ~BRIDGE_FLAGS_SELF;
2535 }
2536
2537 if (have_flags)
2538 memcpy(nla_data(attr), &flags, sizeof(flags));
2539 /* Generate event to notify upper layer of bridge change */
2540 if (!err)
2541 err = rtnl_bridge_notify(dev, oflags);
2542out:
2543 return err;
2544}
2545
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546/* Protected by RTNL sempahore. */
2547static struct rtattr **rta_buf;
2548static int rtattr_max;
2549
2550/* Process one rtnetlink message. */
2551
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002552static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002554 struct net *net = sock_net(skb->sk);
Thomas Grafe2849862007-03-22 11:48:11 -07002555 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 int sz_idx, kind;
2557 int min_len;
2558 int family;
2559 int type;
Eric Dumazet2907c352011-05-25 07:34:04 +00002560 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07002564 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
2566 type -= RTM_BASE;
2567
2568 /* All the messages must have at least 1 byte length */
2569 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
2570 return 0;
2571
Eric Dumazete0d087a2009-11-07 01:26:17 -08002572 family = ((struct rtgenmsg *)NLMSG_DATA(nlh))->rtgen_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 sz_idx = type>>2;
2574 kind = type&3;
2575
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +00002576 if (kind != 2 && !ns_capable(net->user_ns, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002577 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
David S. Millerb8f3ab42011-01-18 12:40:38 -08002579 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002580 struct sock *rtnl;
Thomas Grafe2849862007-03-22 11:48:11 -07002581 rtnl_dumpit_func dumpit;
Greg Rosec7ac8672011-06-10 01:27:09 +00002582 rtnl_calcit_func calcit;
2583 u16 min_dump_alloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Thomas Grafe2849862007-03-22 11:48:11 -07002585 dumpit = rtnl_get_dumpit(family, type);
2586 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07002587 return -EOPNOTSUPP;
Greg Rosec7ac8672011-06-10 01:27:09 +00002588 calcit = rtnl_get_calcit(family, type);
2589 if (calcit)
Greg Rose115c9b82012-02-21 16:54:48 -05002590 min_dump_alloc = calcit(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
Eric Dumazet2907c352011-05-25 07:34:04 +00002592 __rtnl_unlock();
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002593 rtnl = net->rtnl;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002594 {
2595 struct netlink_dump_control c = {
2596 .dump = dumpit,
2597 .min_dump_alloc = min_dump_alloc,
2598 };
2599 err = netlink_dump_start(rtnl, skb, nlh, &c);
2600 }
Eric Dumazet2907c352011-05-25 07:34:04 +00002601 rtnl_lock();
2602 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 }
2604
2605 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
2606
2607 min_len = rtm_min[sz_idx];
2608 if (nlh->nlmsg_len < min_len)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002609 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
2611 if (nlh->nlmsg_len > min_len) {
2612 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
Eric Dumazete0d087a2009-11-07 01:26:17 -08002613 struct rtattr *attr = (void *)nlh + NLMSG_ALIGN(min_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
2615 while (RTA_OK(attr, attrlen)) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002616 unsigned int flavor = attr->rta_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 if (flavor) {
2618 if (flavor > rta_max[sz_idx])
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002619 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 rta_buf[flavor-1] = attr;
2621 }
2622 attr = RTA_NEXT(attr, attrlen);
2623 }
2624 }
2625
Thomas Grafe2849862007-03-22 11:48:11 -07002626 doit = rtnl_get_doit(family, type);
2627 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07002628 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002630 return doit(skb, nlh, (void *)&rta_buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631}
2632
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002633static void rtnetlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002635 rtnl_lock();
2636 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
2637 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638}
2639
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
2641{
2642 struct net_device *dev = ptr;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 case NETDEV_UP:
2646 case NETDEV_DOWN:
Patrick McHardy10de05a2010-02-26 06:34:50 +00002647 case NETDEV_PRE_UP:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00002648 case NETDEV_POST_INIT:
2649 case NETDEV_REGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 case NETDEV_CHANGE:
Patrick McHardy755d0e72010-03-19 04:42:24 +00002651 case NETDEV_PRE_TYPE_CHANGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 case NETDEV_GOING_DOWN:
Patrick McHardya2835762010-02-26 06:34:51 +00002653 case NETDEV_UNREGISTER:
Eric Dumazet0115e8e2012-08-22 17:19:46 +00002654 case NETDEV_UNREGISTER_FINAL:
Amerigo Wangac3d3f82011-05-19 23:06:32 +00002655 case NETDEV_RELEASE:
2656 case NETDEV_JOIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 break;
2658 default:
2659 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
2660 break;
2661 }
2662 return NOTIFY_DONE;
2663}
2664
2665static struct notifier_block rtnetlink_dev_notifier = {
2666 .notifier_call = rtnetlink_event,
2667};
2668
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002669
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002670static int __net_init rtnetlink_net_init(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002671{
2672 struct sock *sk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002673 struct netlink_kernel_cfg cfg = {
2674 .groups = RTNLGRP_MAX,
2675 .input = rtnetlink_rcv,
2676 .cb_mutex = &rtnl_mutex,
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002677 .flags = NL_CFG_F_NONROOT_RECV,
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002678 };
2679
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002680 sk = netlink_kernel_create(net, NETLINK_ROUTE, &cfg);
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002681 if (!sk)
2682 return -ENOMEM;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002683 net->rtnl = sk;
2684 return 0;
2685}
2686
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002687static void __net_exit rtnetlink_net_exit(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002688{
Denis V. Lunev775516b2008-01-18 23:55:19 -08002689 netlink_kernel_release(net->rtnl);
2690 net->rtnl = NULL;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002691}
2692
2693static struct pernet_operations rtnetlink_net_ops = {
2694 .init = rtnetlink_net_init,
2695 .exit = rtnetlink_net_exit,
2696};
2697
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698void __init rtnetlink_init(void)
2699{
2700 int i;
2701
2702 rtattr_max = 0;
2703 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
2704 if (rta_max[i] > rtattr_max)
2705 rtattr_max = rta_max[i];
2706 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
2707 if (!rta_buf)
2708 panic("rtnetlink_init: cannot allocate rta_buf\n");
2709
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002710 if (register_pernet_subsys(&rtnetlink_net_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 panic("rtnetlink_init: cannot initialize rtnetlink\n");
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002712
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07002714
Greg Rosec7ac8672011-06-10 01:27:09 +00002715 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink,
2716 rtnl_dump_ifinfo, rtnl_calcit);
2717 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL, NULL);
2718 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL, NULL);
2719 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07002720
Greg Rosec7ac8672011-06-10 01:27:09 +00002721 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all, NULL);
2722 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all, NULL);
John Fastabend77162022012-04-15 06:43:56 +00002723
2724 rtnl_register(PF_BRIDGE, RTM_NEWNEIGH, rtnl_fdb_add, NULL, NULL);
2725 rtnl_register(PF_BRIDGE, RTM_DELNEIGH, rtnl_fdb_del, NULL, NULL);
2726 rtnl_register(PF_BRIDGE, RTM_GETNEIGH, NULL, rtnl_fdb_dump, NULL);
John Fastabende5a55a82012-10-24 08:12:57 +00002727
2728 rtnl_register(PF_BRIDGE, RTM_GETLINK, NULL, rtnl_bridge_getlink, NULL);
Vlad Yasevich407af322013-02-13 12:00:12 +00002729 rtnl_register(PF_BRIDGE, RTM_DELLINK, rtnl_bridge_dellink, NULL, NULL);
John Fastabende5a55a82012-10-24 08:12:57 +00002730 rtnl_register(PF_BRIDGE, RTM_SETLINK, rtnl_bridge_setlink, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731}
2732