blob: 27acaf7ff6d7e6914ad3ef62d4e5be7e22ddfc64 [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
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +0200302 /* The check for setup is here because if ops
303 * does not have that filled up, it is not possible
304 * to use the ops for creating device. So do not
305 * fill up dellink as well. That disables rtnl_dellink.
306 */
307 if (ops->setup && !ops->dellink)
Eric Dumazet23289a32009-10-27 07:06:36 +0000308 ops->dellink = unregister_netdevice_queue;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700309
Patrick McHardy38f7b872007-06-13 12:03:51 -0700310 list_add_tail(&ops->list, &link_ops);
311 return 0;
312}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700313EXPORT_SYMBOL_GPL(__rtnl_link_register);
314
315/**
316 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
317 * @ops: struct rtnl_link_ops * to register
318 *
319 * Returns 0 on success or a negative error code.
320 */
321int rtnl_link_register(struct rtnl_link_ops *ops)
322{
323 int err;
324
325 rtnl_lock();
326 err = __rtnl_link_register(ops);
327 rtnl_unlock();
328 return err;
329}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700330EXPORT_SYMBOL_GPL(rtnl_link_register);
331
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700332static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
333{
334 struct net_device *dev;
Eric Dumazet23289a32009-10-27 07:06:36 +0000335 LIST_HEAD(list_kill);
336
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700337 for_each_netdev(net, dev) {
Eric Dumazet23289a32009-10-27 07:06:36 +0000338 if (dev->rtnl_link_ops == ops)
339 ops->dellink(dev, &list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700340 }
Eric Dumazet23289a32009-10-27 07:06:36 +0000341 unregister_netdevice_many(&list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700342}
343
Patrick McHardy38f7b872007-06-13 12:03:51 -0700344/**
345 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
346 * @ops: struct rtnl_link_ops * to unregister
347 *
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700348 * The caller must hold the rtnl_mutex.
Patrick McHardy38f7b872007-06-13 12:03:51 -0700349 */
350void __rtnl_link_unregister(struct rtnl_link_ops *ops)
351{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700352 struct net *net;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700353
Eric W. Biederman881d9662007-09-17 11:56:21 -0700354 for_each_net(net) {
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700355 __rtnl_kill_links(net, ops);
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700356 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700357 list_del(&ops->list);
358}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700359EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
360
Cong Wang200b9162014-05-12 15:11:20 -0700361/* Return with the rtnl_lock held when there are no network
362 * devices unregistering in any network namespace.
363 */
364static void rtnl_lock_unregistering_all(void)
365{
366 struct net *net;
367 bool unregistering;
368 DEFINE_WAIT(wait);
369
370 for (;;) {
371 prepare_to_wait(&netdev_unregistering_wq, &wait,
372 TASK_UNINTERRUPTIBLE);
373 unregistering = false;
374 rtnl_lock();
375 for_each_net(net) {
376 if (net->dev_unreg_count > 0) {
377 unregistering = true;
378 break;
379 }
380 }
381 if (!unregistering)
382 break;
383 __rtnl_unlock();
384 schedule();
385 }
386 finish_wait(&netdev_unregistering_wq, &wait);
387}
388
Patrick McHardy38f7b872007-06-13 12:03:51 -0700389/**
390 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
391 * @ops: struct rtnl_link_ops * to unregister
392 */
393void rtnl_link_unregister(struct rtnl_link_ops *ops)
394{
Cong Wang200b9162014-05-12 15:11:20 -0700395 /* Close the race with cleanup_net() */
396 mutex_lock(&net_mutex);
397 rtnl_lock_unregistering_all();
Patrick McHardy38f7b872007-06-13 12:03:51 -0700398 __rtnl_link_unregister(ops);
399 rtnl_unlock();
Cong Wang200b9162014-05-12 15:11:20 -0700400 mutex_unlock(&net_mutex);
Patrick McHardy38f7b872007-06-13 12:03:51 -0700401}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700402EXPORT_SYMBOL_GPL(rtnl_link_unregister);
403
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100404static size_t rtnl_link_get_slave_info_data_size(const struct net_device *dev)
405{
406 struct net_device *master_dev;
407 const struct rtnl_link_ops *ops;
408
409 master_dev = netdev_master_upper_dev_get((struct net_device *) dev);
410 if (!master_dev)
411 return 0;
412 ops = master_dev->rtnl_link_ops;
Fernando Luis Vazquez Cao6049f252014-02-04 19:35:02 +0900413 if (!ops || !ops->get_slave_size)
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100414 return 0;
415 /* IFLA_INFO_SLAVE_DATA + nested data */
416 return nla_total_size(sizeof(struct nlattr)) +
417 ops->get_slave_size(master_dev, dev);
418}
419
Patrick McHardy38f7b872007-06-13 12:03:51 -0700420static size_t rtnl_link_get_size(const struct net_device *dev)
421{
422 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
423 size_t size;
424
425 if (!ops)
426 return 0;
427
Thomas Graf369cf772010-11-11 15:47:59 +0000428 size = nla_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
429 nla_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700430
431 if (ops->get_size)
432 /* IFLA_INFO_DATA + nested data */
Thomas Graf369cf772010-11-11 15:47:59 +0000433 size += nla_total_size(sizeof(struct nlattr)) +
Patrick McHardy38f7b872007-06-13 12:03:51 -0700434 ops->get_size(dev);
435
436 if (ops->get_xstats_size)
Thomas Graf369cf772010-11-11 15:47:59 +0000437 /* IFLA_INFO_XSTATS */
438 size += nla_total_size(ops->get_xstats_size(dev));
Patrick McHardy38f7b872007-06-13 12:03:51 -0700439
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100440 size += rtnl_link_get_slave_info_data_size(dev);
441
Patrick McHardy38f7b872007-06-13 12:03:51 -0700442 return size;
443}
444
Thomas Graff8ff1822010-11-16 04:30:14 +0000445static LIST_HEAD(rtnl_af_ops);
446
447static const struct rtnl_af_ops *rtnl_af_lookup(const int family)
448{
449 const struct rtnl_af_ops *ops;
450
451 list_for_each_entry(ops, &rtnl_af_ops, list) {
452 if (ops->family == family)
453 return ops;
454 }
455
456 return NULL;
457}
458
459/**
Thomas Graff8ff1822010-11-16 04:30:14 +0000460 * rtnl_af_register - Register rtnl_af_ops with rtnetlink.
461 * @ops: struct rtnl_af_ops * to register
462 *
463 * Returns 0 on success or a negative error code.
464 */
stephen hemminger3678a9d2013-12-30 10:41:32 -0800465void rtnl_af_register(struct rtnl_af_ops *ops)
Thomas Graff8ff1822010-11-16 04:30:14 +0000466{
Thomas Graff8ff1822010-11-16 04:30:14 +0000467 rtnl_lock();
stephen hemminger3678a9d2013-12-30 10:41:32 -0800468 list_add_tail(&ops->list, &rtnl_af_ops);
Thomas Graff8ff1822010-11-16 04:30:14 +0000469 rtnl_unlock();
Thomas Graff8ff1822010-11-16 04:30:14 +0000470}
471EXPORT_SYMBOL_GPL(rtnl_af_register);
472
473/**
474 * __rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
475 * @ops: struct rtnl_af_ops * to unregister
476 *
477 * The caller must hold the rtnl_mutex.
478 */
479void __rtnl_af_unregister(struct rtnl_af_ops *ops)
480{
481 list_del(&ops->list);
482}
483EXPORT_SYMBOL_GPL(__rtnl_af_unregister);
484
485/**
486 * rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
487 * @ops: struct rtnl_af_ops * to unregister
488 */
489void rtnl_af_unregister(struct rtnl_af_ops *ops)
490{
491 rtnl_lock();
492 __rtnl_af_unregister(ops);
493 rtnl_unlock();
494}
495EXPORT_SYMBOL_GPL(rtnl_af_unregister);
496
497static size_t rtnl_link_get_af_size(const struct net_device *dev)
498{
499 struct rtnl_af_ops *af_ops;
500 size_t size;
501
502 /* IFLA_AF_SPEC */
503 size = nla_total_size(sizeof(struct nlattr));
504
505 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
506 if (af_ops->get_link_af_size) {
507 /* AF_* + nested data */
508 size += nla_total_size(sizeof(struct nlattr)) +
509 af_ops->get_link_af_size(dev);
510 }
511 }
512
513 return size;
514}
515
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100516static bool rtnl_have_link_slave_info(const struct net_device *dev)
517{
518 struct net_device *master_dev;
519
520 master_dev = netdev_master_upper_dev_get((struct net_device *) dev);
Jiri Pirko813f0202014-01-23 19:19:21 +0100521 if (master_dev && master_dev->rtnl_link_ops)
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100522 return true;
523 return false;
524}
525
526static int rtnl_link_slave_info_fill(struct sk_buff *skb,
527 const struct net_device *dev)
528{
529 struct net_device *master_dev;
530 const struct rtnl_link_ops *ops;
531 struct nlattr *slave_data;
532 int err;
533
534 master_dev = netdev_master_upper_dev_get((struct net_device *) dev);
535 if (!master_dev)
536 return 0;
537 ops = master_dev->rtnl_link_ops;
538 if (!ops)
539 return 0;
540 if (nla_put_string(skb, IFLA_INFO_SLAVE_KIND, ops->kind) < 0)
541 return -EMSGSIZE;
542 if (ops->fill_slave_info) {
543 slave_data = nla_nest_start(skb, IFLA_INFO_SLAVE_DATA);
544 if (!slave_data)
545 return -EMSGSIZE;
546 err = ops->fill_slave_info(skb, master_dev, dev);
547 if (err < 0)
548 goto err_cancel_slave_data;
549 nla_nest_end(skb, slave_data);
550 }
551 return 0;
552
553err_cancel_slave_data:
554 nla_nest_cancel(skb, slave_data);
555 return err;
556}
557
558static int rtnl_link_info_fill(struct sk_buff *skb,
559 const struct net_device *dev)
Patrick McHardy38f7b872007-06-13 12:03:51 -0700560{
561 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100562 struct nlattr *data;
563 int err;
564
565 if (!ops)
566 return 0;
567 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
568 return -EMSGSIZE;
569 if (ops->fill_xstats) {
570 err = ops->fill_xstats(skb, dev);
571 if (err < 0)
572 return err;
573 }
574 if (ops->fill_info) {
575 data = nla_nest_start(skb, IFLA_INFO_DATA);
576 if (data == NULL)
577 return -EMSGSIZE;
578 err = ops->fill_info(skb, dev);
579 if (err < 0)
580 goto err_cancel_data;
581 nla_nest_end(skb, data);
582 }
583 return 0;
584
585err_cancel_data:
586 nla_nest_cancel(skb, data);
587 return err;
588}
589
590static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
591{
592 struct nlattr *linkinfo;
Patrick McHardy38f7b872007-06-13 12:03:51 -0700593 int err = -EMSGSIZE;
594
595 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
596 if (linkinfo == NULL)
597 goto out;
598
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100599 err = rtnl_link_info_fill(skb, dev);
600 if (err < 0)
Patrick McHardy38f7b872007-06-13 12:03:51 -0700601 goto err_cancel_link;
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100602
603 err = rtnl_link_slave_info_fill(skb, dev);
604 if (err < 0)
605 goto err_cancel_link;
Patrick McHardy38f7b872007-06-13 12:03:51 -0700606
607 nla_nest_end(skb, linkinfo);
608 return 0;
609
Patrick McHardy38f7b872007-06-13 12:03:51 -0700610err_cancel_link:
611 nla_nest_cancel(skb, linkinfo);
612out:
613 return err;
614}
615
Eric Dumazet95c96172012-04-15 05:58:06 +0000616int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned int group, int echo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800618 struct sock *rtnl = net->rtnl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 int err = 0;
620
Patrick McHardyac6d4392005-08-14 19:29:52 -0700621 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (echo)
623 atomic_inc(&skb->users);
624 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
625 if (echo)
626 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
627 return err;
628}
629
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800630int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
Thomas Graf2942e902006-08-15 00:30:25 -0700631{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800632 struct sock *rtnl = net->rtnl;
633
Thomas Graf2942e902006-08-15 00:30:25 -0700634 return nlmsg_unicast(rtnl, skb, pid);
635}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800636EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf2942e902006-08-15 00:30:25 -0700637
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800638void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
639 struct nlmsghdr *nlh, gfp_t flags)
Thomas Graf97676b62006-08-15 00:31:41 -0700640{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800641 struct sock *rtnl = net->rtnl;
Thomas Graf97676b62006-08-15 00:31:41 -0700642 int report = 0;
643
644 if (nlh)
645 report = nlmsg_report(nlh);
646
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800647 nlmsg_notify(rtnl, skb, pid, group, report, flags);
Thomas Graf97676b62006-08-15 00:31:41 -0700648}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800649EXPORT_SYMBOL(rtnl_notify);
Thomas Graf97676b62006-08-15 00:31:41 -0700650
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800651void rtnl_set_sk_err(struct net *net, u32 group, int error)
Thomas Graf97676b62006-08-15 00:31:41 -0700652{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800653 struct sock *rtnl = net->rtnl;
654
Thomas Graf97676b62006-08-15 00:31:41 -0700655 netlink_set_err(rtnl, 0, group, error);
656}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800657EXPORT_SYMBOL(rtnl_set_sk_err);
Thomas Graf97676b62006-08-15 00:31:41 -0700658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
660{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700661 struct nlattr *mx;
662 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Thomas Graf2d7202b2006-08-22 00:01:27 -0700664 mx = nla_nest_start(skb, RTA_METRICS);
665 if (mx == NULL)
666 return -ENOBUFS;
667
668 for (i = 0; i < RTAX_MAX; i++) {
669 if (metrics[i]) {
670 valid++;
David S. Millera6574342012-04-01 20:12:00 -0400671 if (nla_put_u32(skb, i+1, metrics[i]))
672 goto nla_put_failure;
Thomas Graf2d7202b2006-08-22 00:01:27 -0700673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
David S. Millera57d27f2006-08-22 22:20:14 -0700676 if (!valid) {
677 nla_nest_cancel(skb, mx);
678 return 0;
679 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700680
681 return nla_nest_end(skb, mx);
682
683nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700684 nla_nest_cancel(skb, mx);
685 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800687EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Thomas Grafe3703b32006-11-27 09:27:07 -0800689int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
David S. Miller87a50692012-07-10 05:06:14 -0700690 long expires, u32 error)
Thomas Grafe3703b32006-11-27 09:27:07 -0800691{
692 struct rta_cacheinfo ci = {
Eric Dumazeta399a802012-08-08 21:13:53 +0000693 .rta_lastuse = jiffies_delta_to_clock_t(jiffies - dst->lastuse),
Thomas Grafe3703b32006-11-27 09:27:07 -0800694 .rta_used = dst->__use,
695 .rta_clntref = atomic_read(&(dst->__refcnt)),
696 .rta_error = error,
697 .rta_id = id,
Thomas Grafe3703b32006-11-27 09:27:07 -0800698 };
699
Li Wei82539472012-07-29 16:01:30 +0000700 if (expires) {
701 unsigned long clock;
Thomas Grafe3703b32006-11-27 09:27:07 -0800702
Li Wei82539472012-07-29 16:01:30 +0000703 clock = jiffies_to_clock_t(abs(expires));
704 clock = min_t(unsigned long, clock, INT_MAX);
705 ci.rta_expires = (expires > 0) ? clock : -clock;
706 }
Thomas Grafe3703b32006-11-27 09:27:07 -0800707 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
708}
Thomas Grafe3703b32006-11-27 09:27:07 -0800709EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
David S. Miller93b2d4a2008-02-17 18:35:07 -0800711static void set_operstate(struct net_device *dev, unsigned char transition)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800712{
713 unsigned char operstate = dev->operstate;
714
Eric Dumazete0d087a2009-11-07 01:26:17 -0800715 switch (transition) {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800716 case IF_OPER_UP:
717 if ((operstate == IF_OPER_DORMANT ||
718 operstate == IF_OPER_UNKNOWN) &&
719 !netif_dormant(dev))
720 operstate = IF_OPER_UP;
721 break;
722
723 case IF_OPER_DORMANT:
724 if (operstate == IF_OPER_UP ||
725 operstate == IF_OPER_UNKNOWN)
726 operstate = IF_OPER_DORMANT;
727 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700728 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800729
730 if (dev->operstate != operstate) {
731 write_lock_bh(&dev_base_lock);
732 dev->operstate = operstate;
733 write_unlock_bh(&dev_base_lock);
David S. Miller93b2d4a2008-02-17 18:35:07 -0800734 netdev_state_change(dev);
735 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800736}
737
Jiri Bencb1beb682012-07-27 02:58:22 +0000738static unsigned int rtnl_dev_get_flags(const struct net_device *dev)
739{
740 return (dev->flags & ~(IFF_PROMISC | IFF_ALLMULTI)) |
741 (dev->gflags & (IFF_PROMISC | IFF_ALLMULTI));
742}
743
Patrick McHardy3729d502010-02-26 06:34:54 +0000744static unsigned int rtnl_dev_combine_flags(const struct net_device *dev,
745 const struct ifinfomsg *ifm)
746{
747 unsigned int flags = ifm->ifi_flags;
748
749 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
750 if (ifm->ifi_change)
751 flags = (flags & ifm->ifi_change) |
Jiri Bencb1beb682012-07-27 02:58:22 +0000752 (rtnl_dev_get_flags(dev) & ~ifm->ifi_change);
Patrick McHardy3729d502010-02-26 06:34:54 +0000753
754 return flags;
755}
756
Thomas Grafb60c5112006-08-04 23:05:34 -0700757static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000758 const struct rtnl_link_stats64 *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Thomas Grafb60c5112006-08-04 23:05:34 -0700760 a->rx_packets = b->rx_packets;
761 a->tx_packets = b->tx_packets;
762 a->rx_bytes = b->rx_bytes;
763 a->tx_bytes = b->tx_bytes;
764 a->rx_errors = b->rx_errors;
765 a->tx_errors = b->tx_errors;
766 a->rx_dropped = b->rx_dropped;
767 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Thomas Grafb60c5112006-08-04 23:05:34 -0700769 a->multicast = b->multicast;
770 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Thomas Grafb60c5112006-08-04 23:05:34 -0700772 a->rx_length_errors = b->rx_length_errors;
773 a->rx_over_errors = b->rx_over_errors;
774 a->rx_crc_errors = b->rx_crc_errors;
775 a->rx_frame_errors = b->rx_frame_errors;
776 a->rx_fifo_errors = b->rx_fifo_errors;
777 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Thomas Grafb60c5112006-08-04 23:05:34 -0700779 a->tx_aborted_errors = b->tx_aborted_errors;
780 a->tx_carrier_errors = b->tx_carrier_errors;
781 a->tx_fifo_errors = b->tx_fifo_errors;
782 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
783 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Thomas Grafb60c5112006-08-04 23:05:34 -0700785 a->rx_compressed = b->rx_compressed;
786 a->tx_compressed = b->tx_compressed;
Jan Engelhardt10708f32010-03-11 09:57:29 +0000787}
788
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000789static void copy_rtnl_link_stats64(void *v, const struct rtnl_link_stats64 *b)
Jan Engelhardt10708f32010-03-11 09:57:29 +0000790{
Eric Dumazetafdcba32010-08-23 07:14:36 +0000791 memcpy(v, b, sizeof(*b));
Jan Engelhardt10708f32010-03-11 09:57:29 +0000792}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Chris Wrightc02db8c2010-05-16 01:05:45 -0700794/* All VF info */
Greg Rose115c9b82012-02-21 16:54:48 -0500795static inline int rtnl_vfinfo_size(const struct net_device *dev,
796 u32 ext_filter_mask)
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000797{
Greg Rose115c9b82012-02-21 16:54:48 -0500798 if (dev->dev.parent && dev_is_pci(dev->dev.parent) &&
799 (ext_filter_mask & RTEXT_FILTER_VF)) {
Chris Wrightc02db8c2010-05-16 01:05:45 -0700800 int num_vfs = dev_num_vf(dev->dev.parent);
Scott Feldman045de012010-05-28 03:42:43 -0700801 size_t size = nla_total_size(sizeof(struct nlattr));
802 size += nla_total_size(num_vfs * sizeof(struct nlattr));
803 size += num_vfs *
804 (nla_total_size(sizeof(struct ifla_vf_mac)) +
805 nla_total_size(sizeof(struct ifla_vf_vlan)) +
Sucheta Chakrabortyed616682014-05-22 09:59:05 -0400806 nla_total_size(sizeof(struct ifla_vf_spoofchk)) +
807 nla_total_size(sizeof(struct ifla_vf_rate)));
Chris Wrightc02db8c2010-05-16 01:05:45 -0700808 return size;
809 } else
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000810 return 0;
811}
812
David Gibsonc53864f2014-04-24 10:22:36 +1000813static size_t rtnl_port_size(const struct net_device *dev,
814 u32 ext_filter_mask)
Scott Feldman57b61082010-05-17 22:49:55 -0700815{
816 size_t port_size = nla_total_size(4) /* PORT_VF */
817 + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */
818 + nla_total_size(sizeof(struct ifla_port_vsi))
819 /* PORT_VSI_TYPE */
820 + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */
821 + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */
822 + nla_total_size(1) /* PROT_VDP_REQUEST */
823 + nla_total_size(2); /* PORT_VDP_RESPONSE */
824 size_t vf_ports_size = nla_total_size(sizeof(struct nlattr));
825 size_t vf_port_size = nla_total_size(sizeof(struct nlattr))
826 + port_size;
827 size_t port_self_size = nla_total_size(sizeof(struct nlattr))
828 + port_size;
829
David Gibsonc53864f2014-04-24 10:22:36 +1000830 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent ||
831 !(ext_filter_mask & RTEXT_FILTER_VF))
Scott Feldman57b61082010-05-17 22:49:55 -0700832 return 0;
833 if (dev_num_vf(dev->dev.parent))
834 return port_self_size + vf_ports_size +
835 vf_port_size * dev_num_vf(dev->dev.parent);
836 else
837 return port_self_size;
838}
839
Greg Rose115c9b82012-02-21 16:54:48 -0500840static noinline size_t if_nlmsg_size(const struct net_device *dev,
841 u32 ext_filter_mask)
Thomas Graf339bf982006-11-10 14:10:15 -0800842{
843 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
844 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700845 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
Thomas Graf339bf982006-11-10 14:10:15 -0800846 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
847 + nla_total_size(sizeof(struct rtnl_link_ifmap))
848 + nla_total_size(sizeof(struct rtnl_link_stats))
Jan Engelhardtadcfe192010-03-27 17:15:29 -0700849 + nla_total_size(sizeof(struct rtnl_link_stats64))
Thomas Graf339bf982006-11-10 14:10:15 -0800850 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
851 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
852 + nla_total_size(4) /* IFLA_TXQLEN */
853 + nla_total_size(4) /* IFLA_WEIGHT */
854 + nla_total_size(4) /* IFLA_MTU */
855 + nla_total_size(4) /* IFLA_LINK */
856 + nla_total_size(4) /* IFLA_MASTER */
Jiri Pirko9a572472012-12-27 23:49:39 +0000857 + nla_total_size(1) /* IFLA_CARRIER */
Ben Greearedbc0bb2012-03-29 12:51:30 +0000858 + nla_total_size(4) /* IFLA_PROMISCUITY */
Jiri Pirko76ff5cc2012-07-20 02:28:48 +0000859 + nla_total_size(4) /* IFLA_NUM_TX_QUEUES */
860 + nla_total_size(4) /* IFLA_NUM_RX_QUEUES */
Thomas Graf339bf982006-11-10 14:10:15 -0800861 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700862 + nla_total_size(1) /* IFLA_LINKMODE */
david decotigny2d3b4792014-03-29 09:48:35 -0700863 + nla_total_size(4) /* IFLA_CARRIER_CHANGES */
Greg Rose115c9b82012-02-21 16:54:48 -0500864 + nla_total_size(ext_filter_mask
865 & RTEXT_FILTER_VF ? 4 : 0) /* IFLA_NUM_VF */
866 + rtnl_vfinfo_size(dev, ext_filter_mask) /* IFLA_VFINFO_LIST */
David Gibsonc53864f2014-04-24 10:22:36 +1000867 + rtnl_port_size(dev, ext_filter_mask) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
Thomas Graff8ff1822010-11-16 04:30:14 +0000868 + rtnl_link_get_size(dev) /* IFLA_LINKINFO */
Jiri Pirko66cae9e2013-07-29 18:16:50 +0200869 + rtnl_link_get_af_size(dev) /* IFLA_AF_SPEC */
870 + nla_total_size(MAX_PHYS_PORT_ID_LEN); /* IFLA_PHYS_PORT_ID */
Thomas Graf339bf982006-11-10 14:10:15 -0800871}
872
Scott Feldman57b61082010-05-17 22:49:55 -0700873static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev)
874{
875 struct nlattr *vf_ports;
876 struct nlattr *vf_port;
877 int vf;
878 int err;
879
880 vf_ports = nla_nest_start(skb, IFLA_VF_PORTS);
881 if (!vf_ports)
882 return -EMSGSIZE;
883
884 for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) {
885 vf_port = nla_nest_start(skb, IFLA_VF_PORT);
Scott Feldman8ca94182010-05-28 03:42:18 -0700886 if (!vf_port)
887 goto nla_put_failure;
David S. Millera6574342012-04-01 20:12:00 -0400888 if (nla_put_u32(skb, IFLA_PORT_VF, vf))
889 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700890 err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb);
Scott Feldman8ca94182010-05-28 03:42:18 -0700891 if (err == -EMSGSIZE)
892 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700893 if (err) {
Scott Feldman57b61082010-05-17 22:49:55 -0700894 nla_nest_cancel(skb, vf_port);
895 continue;
896 }
897 nla_nest_end(skb, vf_port);
898 }
899
900 nla_nest_end(skb, vf_ports);
901
902 return 0;
Scott Feldman8ca94182010-05-28 03:42:18 -0700903
904nla_put_failure:
905 nla_nest_cancel(skb, vf_ports);
906 return -EMSGSIZE;
Scott Feldman57b61082010-05-17 22:49:55 -0700907}
908
909static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev)
910{
911 struct nlattr *port_self;
912 int err;
913
914 port_self = nla_nest_start(skb, IFLA_PORT_SELF);
915 if (!port_self)
916 return -EMSGSIZE;
917
918 err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb);
919 if (err) {
920 nla_nest_cancel(skb, port_self);
Scott Feldman8ca94182010-05-28 03:42:18 -0700921 return (err == -EMSGSIZE) ? err : 0;
Scott Feldman57b61082010-05-17 22:49:55 -0700922 }
923
924 nla_nest_end(skb, port_self);
925
926 return 0;
927}
928
David Gibsonc53864f2014-04-24 10:22:36 +1000929static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev,
930 u32 ext_filter_mask)
Scott Feldman57b61082010-05-17 22:49:55 -0700931{
932 int err;
933
David Gibsonc53864f2014-04-24 10:22:36 +1000934 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent ||
935 !(ext_filter_mask & RTEXT_FILTER_VF))
Scott Feldman57b61082010-05-17 22:49:55 -0700936 return 0;
937
938 err = rtnl_port_self_fill(skb, dev);
939 if (err)
940 return err;
941
942 if (dev_num_vf(dev->dev.parent)) {
943 err = rtnl_vf_ports_fill(skb, dev);
944 if (err)
945 return err;
946 }
947
948 return 0;
949}
950
Jiri Pirko66cae9e2013-07-29 18:16:50 +0200951static int rtnl_phys_port_id_fill(struct sk_buff *skb, struct net_device *dev)
952{
953 int err;
954 struct netdev_phys_port_id ppid;
955
956 err = dev_get_phys_port_id(dev, &ppid);
957 if (err) {
958 if (err == -EOPNOTSUPP)
959 return 0;
960 return err;
961 }
962
963 if (nla_put(skb, IFLA_PHYS_PORT_ID, ppid.id_len, ppid.id))
964 return -EMSGSIZE;
965
966 return 0;
967}
968
Thomas Grafb60c5112006-08-04 23:05:34 -0700969static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -0700970 int type, u32 pid, u32 seq, u32 change,
Greg Rose115c9b82012-02-21 16:54:48 -0500971 unsigned int flags, u32 ext_filter_mask)
Thomas Grafb60c5112006-08-04 23:05:34 -0700972{
973 struct ifinfomsg *ifm;
974 struct nlmsghdr *nlh;
Eric Dumazet28172732010-07-07 14:58:56 -0700975 struct rtnl_link_stats64 temp;
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000976 const struct rtnl_link_stats64 *stats;
Thomas Graff8ff1822010-11-16 04:30:14 +0000977 struct nlattr *attr, *af_spec;
978 struct rtnl_af_ops *af_ops;
Jiri Pirko898e5062013-01-03 22:48:52 +0000979 struct net_device *upper_dev = netdev_master_upper_dev_get(dev);
Thomas Grafb60c5112006-08-04 23:05:34 -0700980
Eric Dumazet2907c352011-05-25 07:34:04 +0000981 ASSERT_RTNL();
Thomas Grafb60c5112006-08-04 23:05:34 -0700982 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
983 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800984 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700985
986 ifm = nlmsg_data(nlh);
987 ifm->ifi_family = AF_UNSPEC;
988 ifm->__ifi_pad = 0;
989 ifm->ifi_type = dev->type;
990 ifm->ifi_index = dev->ifindex;
991 ifm->ifi_flags = dev_get_flags(dev);
992 ifm->ifi_change = change;
993
David S. Millera6574342012-04-01 20:12:00 -0400994 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
995 nla_put_u32(skb, IFLA_TXQLEN, dev->tx_queue_len) ||
996 nla_put_u8(skb, IFLA_OPERSTATE,
997 netif_running(dev) ? dev->operstate : IF_OPER_DOWN) ||
998 nla_put_u8(skb, IFLA_LINKMODE, dev->link_mode) ||
999 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
1000 nla_put_u32(skb, IFLA_GROUP, dev->group) ||
Ben Greearedbc0bb2012-03-29 12:51:30 +00001001 nla_put_u32(skb, IFLA_PROMISCUITY, dev->promiscuity) ||
Jiri Pirko76ff5cc2012-07-20 02:28:48 +00001002 nla_put_u32(skb, IFLA_NUM_TX_QUEUES, dev->num_tx_queues) ||
Mark A. Greer1d69c2b2012-07-20 13:35:13 +00001003#ifdef CONFIG_RPS
Jiri Pirko76ff5cc2012-07-20 02:28:48 +00001004 nla_put_u32(skb, IFLA_NUM_RX_QUEUES, dev->num_rx_queues) ||
Mark A. Greer1d69c2b2012-07-20 13:35:13 +00001005#endif
David S. Millera6574342012-04-01 20:12:00 -04001006 (dev->ifindex != dev->iflink &&
1007 nla_put_u32(skb, IFLA_LINK, dev->iflink)) ||
Jiri Pirko898e5062013-01-03 22:48:52 +00001008 (upper_dev &&
1009 nla_put_u32(skb, IFLA_MASTER, upper_dev->ifindex)) ||
Jiri Pirko9a572472012-12-27 23:49:39 +00001010 nla_put_u8(skb, IFLA_CARRIER, netif_carrier_ok(dev)) ||
David S. Millera6574342012-04-01 20:12:00 -04001011 (dev->qdisc &&
1012 nla_put_string(skb, IFLA_QDISC, dev->qdisc->ops->id)) ||
1013 (dev->ifalias &&
david decotigny2d3b4792014-03-29 09:48:35 -07001014 nla_put_string(skb, IFLA_IFALIAS, dev->ifalias)) ||
1015 nla_put_u32(skb, IFLA_CARRIER_CHANGES,
1016 atomic_read(&dev->carrier_changes)))
David S. Millera6574342012-04-01 20:12:00 -04001017 goto nla_put_failure;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001018
Stefan Rompfb00055a2006-03-20 17:09:11 -08001019 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 struct rtnl_link_ifmap map = {
1021 .mem_start = dev->mem_start,
1022 .mem_end = dev->mem_end,
1023 .base_addr = dev->base_addr,
1024 .irq = dev->irq,
1025 .dma = dev->dma,
1026 .port = dev->if_port,
1027 };
David S. Millera6574342012-04-01 20:12:00 -04001028 if (nla_put(skb, IFLA_MAP, sizeof(map), &map))
1029 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031
1032 if (dev->addr_len) {
David S. Millera6574342012-04-01 20:12:00 -04001033 if (nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr) ||
1034 nla_put(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast))
1035 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037
Jiri Pirko66cae9e2013-07-29 18:16:50 +02001038 if (rtnl_phys_port_id_fill(skb, dev))
1039 goto nla_put_failure;
1040
Pavel Emelyanov96e74082008-05-21 14:12:46 -07001041 attr = nla_reserve(skb, IFLA_STATS,
1042 sizeof(struct rtnl_link_stats));
1043 if (attr == NULL)
1044 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Eric Dumazet28172732010-07-07 14:58:56 -07001046 stats = dev_get_stats(dev, &temp);
Pavel Emelyanov96e74082008-05-21 14:12:46 -07001047 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Jan Engelhardt10708f32010-03-11 09:57:29 +00001049 attr = nla_reserve(skb, IFLA_STATS64,
1050 sizeof(struct rtnl_link_stats64));
1051 if (attr == NULL)
1052 goto nla_put_failure;
Jan Engelhardt10708f32010-03-11 09:57:29 +00001053 copy_rtnl_link_stats64(nla_data(attr), stats);
1054
David S. Millera6574342012-04-01 20:12:00 -04001055 if (dev->dev.parent && (ext_filter_mask & RTEXT_FILTER_VF) &&
1056 nla_put_u32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent)))
1057 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -07001058
Greg Rose115c9b82012-02-21 16:54:48 -05001059 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent
1060 && (ext_filter_mask & RTEXT_FILTER_VF)) {
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001061 int i;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001062
Chris Wrightc02db8c2010-05-16 01:05:45 -07001063 struct nlattr *vfinfo, *vf;
1064 int num_vfs = dev_num_vf(dev->dev.parent);
1065
Chris Wrightc02db8c2010-05-16 01:05:45 -07001066 vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST);
1067 if (!vfinfo)
1068 goto nla_put_failure;
1069 for (i = 0; i < num_vfs; i++) {
1070 struct ifla_vf_info ivi;
1071 struct ifla_vf_mac vf_mac;
1072 struct ifla_vf_vlan vf_vlan;
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001073 struct ifla_vf_rate vf_rate;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001074 struct ifla_vf_tx_rate vf_tx_rate;
Greg Rose5f8444a2011-10-08 03:05:24 +00001075 struct ifla_vf_spoofchk vf_spoofchk;
Rony Efraim1d8faf42013-06-13 13:19:10 +03001076 struct ifla_vf_link_state vf_linkstate;
Greg Rose5f8444a2011-10-08 03:05:24 +00001077
1078 /*
1079 * Not all SR-IOV capable drivers support the
1080 * spoofcheck query. Preset to -1 so the user
1081 * space tool can detect that the driver didn't
1082 * report anything.
1083 */
1084 ivi.spoofchk = -1;
Mathias Krause84d73cd2013-03-09 05:52:20 +00001085 memset(ivi.mac, 0, sizeof(ivi.mac));
Rony Efraim1d8faf42013-06-13 13:19:10 +03001086 /* The default value for VF link state is "auto"
1087 * IFLA_VF_LINK_STATE_AUTO which equals zero
1088 */
1089 ivi.linkstate = 0;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001090 if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi))
1091 break;
Greg Rose5f8444a2011-10-08 03:05:24 +00001092 vf_mac.vf =
1093 vf_vlan.vf =
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001094 vf_rate.vf =
Greg Rose5f8444a2011-10-08 03:05:24 +00001095 vf_tx_rate.vf =
Rony Efraim1d8faf42013-06-13 13:19:10 +03001096 vf_spoofchk.vf =
1097 vf_linkstate.vf = ivi.vf;
Greg Rose5f8444a2011-10-08 03:05:24 +00001098
Chris Wrightc02db8c2010-05-16 01:05:45 -07001099 memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac));
1100 vf_vlan.vlan = ivi.vlan;
1101 vf_vlan.qos = ivi.qos;
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001102 vf_tx_rate.rate = ivi.max_tx_rate;
1103 vf_rate.min_tx_rate = ivi.min_tx_rate;
1104 vf_rate.max_tx_rate = ivi.max_tx_rate;
Greg Rose5f8444a2011-10-08 03:05:24 +00001105 vf_spoofchk.setting = ivi.spoofchk;
Rony Efraim1d8faf42013-06-13 13:19:10 +03001106 vf_linkstate.link_state = ivi.linkstate;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001107 vf = nla_nest_start(skb, IFLA_VF_INFO);
1108 if (!vf) {
1109 nla_nest_cancel(skb, vfinfo);
1110 goto nla_put_failure;
1111 }
David S. Millera6574342012-04-01 20:12:00 -04001112 if (nla_put(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac) ||
1113 nla_put(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan) ||
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001114 nla_put(skb, IFLA_VF_RATE, sizeof(vf_rate),
1115 &vf_rate) ||
David S. Millera6574342012-04-01 20:12:00 -04001116 nla_put(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate),
1117 &vf_tx_rate) ||
1118 nla_put(skb, IFLA_VF_SPOOFCHK, sizeof(vf_spoofchk),
Rony Efraim1d8faf42013-06-13 13:19:10 +03001119 &vf_spoofchk) ||
1120 nla_put(skb, IFLA_VF_LINK_STATE, sizeof(vf_linkstate),
1121 &vf_linkstate))
David S. Millera6574342012-04-01 20:12:00 -04001122 goto nla_put_failure;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001123 nla_nest_end(skb, vf);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001124 }
Chris Wrightc02db8c2010-05-16 01:05:45 -07001125 nla_nest_end(skb, vfinfo);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001126 }
Scott Feldman57b61082010-05-17 22:49:55 -07001127
David Gibsonc53864f2014-04-24 10:22:36 +10001128 if (rtnl_port_fill(skb, dev, ext_filter_mask))
Scott Feldman57b61082010-05-17 22:49:55 -07001129 goto nla_put_failure;
1130
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01001131 if (dev->rtnl_link_ops || rtnl_have_link_slave_info(dev)) {
Patrick McHardy38f7b872007-06-13 12:03:51 -07001132 if (rtnl_link_fill(skb, dev) < 0)
1133 goto nla_put_failure;
1134 }
1135
Thomas Graff8ff1822010-11-16 04:30:14 +00001136 if (!(af_spec = nla_nest_start(skb, IFLA_AF_SPEC)))
1137 goto nla_put_failure;
1138
1139 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
1140 if (af_ops->fill_link_af) {
1141 struct nlattr *af;
1142 int err;
1143
1144 if (!(af = nla_nest_start(skb, af_ops->family)))
1145 goto nla_put_failure;
1146
1147 err = af_ops->fill_link_af(skb, dev);
1148
1149 /*
1150 * Caller may return ENODATA to indicate that there
1151 * was no data to be dumped. This is not an error, it
1152 * means we should trim the attribute header and
1153 * continue.
1154 */
1155 if (err == -ENODATA)
1156 nla_nest_cancel(skb, af);
1157 else if (err < 0)
1158 goto nla_put_failure;
1159
1160 nla_nest_end(skb, af);
1161 }
1162 }
1163
1164 nla_nest_end(skb, af_spec);
1165
Thomas Grafb60c5112006-08-04 23:05:34 -07001166 return nlmsg_end(skb, nlh);
1167
1168nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08001169 nlmsg_cancel(skb, nlh);
1170 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171}
1172
Jiri Pirkof7b12602014-02-18 20:53:18 +01001173static const struct nla_policy ifla_policy[IFLA_MAX+1] = {
1174 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
1175 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1176 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1177 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
1178 [IFLA_MTU] = { .type = NLA_U32 },
1179 [IFLA_LINK] = { .type = NLA_U32 },
1180 [IFLA_MASTER] = { .type = NLA_U32 },
1181 [IFLA_CARRIER] = { .type = NLA_U8 },
1182 [IFLA_TXQLEN] = { .type = NLA_U32 },
1183 [IFLA_WEIGHT] = { .type = NLA_U32 },
1184 [IFLA_OPERSTATE] = { .type = NLA_U8 },
1185 [IFLA_LINKMODE] = { .type = NLA_U8 },
1186 [IFLA_LINKINFO] = { .type = NLA_NESTED },
1187 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
1188 [IFLA_NET_NS_FD] = { .type = NLA_U32 },
1189 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
1190 [IFLA_VFINFO_LIST] = {. type = NLA_NESTED },
1191 [IFLA_VF_PORTS] = { .type = NLA_NESTED },
1192 [IFLA_PORT_SELF] = { .type = NLA_NESTED },
1193 [IFLA_AF_SPEC] = { .type = NLA_NESTED },
1194 [IFLA_EXT_MASK] = { .type = NLA_U32 },
1195 [IFLA_PROMISCUITY] = { .type = NLA_U32 },
1196 [IFLA_NUM_TX_QUEUES] = { .type = NLA_U32 },
1197 [IFLA_NUM_RX_QUEUES] = { .type = NLA_U32 },
1198 [IFLA_PHYS_PORT_ID] = { .type = NLA_BINARY, .len = MAX_PHYS_PORT_ID_LEN },
david decotigny2d3b4792014-03-29 09:48:35 -07001199 [IFLA_CARRIER_CHANGES] = { .type = NLA_U32 }, /* ignored */
Jiri Pirkof7b12602014-02-18 20:53:18 +01001200};
1201
1202static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
1203 [IFLA_INFO_KIND] = { .type = NLA_STRING },
1204 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
1205 [IFLA_INFO_SLAVE_KIND] = { .type = NLA_STRING },
1206 [IFLA_INFO_SLAVE_DATA] = { .type = NLA_NESTED },
1207};
1208
1209static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = {
1210 [IFLA_VF_INFO] = { .type = NLA_NESTED },
1211};
1212
1213static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
1214 [IFLA_VF_MAC] = { .type = NLA_BINARY,
1215 .len = sizeof(struct ifla_vf_mac) },
1216 [IFLA_VF_VLAN] = { .type = NLA_BINARY,
1217 .len = sizeof(struct ifla_vf_vlan) },
1218 [IFLA_VF_TX_RATE] = { .type = NLA_BINARY,
1219 .len = sizeof(struct ifla_vf_tx_rate) },
1220 [IFLA_VF_SPOOFCHK] = { .type = NLA_BINARY,
1221 .len = sizeof(struct ifla_vf_spoofchk) },
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001222 [IFLA_VF_RATE] = { .type = NLA_BINARY,
1223 .len = sizeof(struct ifla_vf_rate) },
Doug Ledfordc5b46162014-06-11 10:38:03 -04001224 [IFLA_VF_LINK_STATE] = { .type = NLA_BINARY,
1225 .len = sizeof(struct ifla_vf_link_state) },
Jiri Pirkof7b12602014-02-18 20:53:18 +01001226};
1227
1228static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = {
1229 [IFLA_PORT_VF] = { .type = NLA_U32 },
1230 [IFLA_PORT_PROFILE] = { .type = NLA_STRING,
1231 .len = PORT_PROFILE_MAX },
1232 [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY,
1233 .len = sizeof(struct ifla_port_vsi)},
1234 [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY,
1235 .len = PORT_UUID_MAX },
1236 [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING,
1237 .len = PORT_UUID_MAX },
1238 [IFLA_PORT_REQUEST] = { .type = NLA_U8, },
1239 [IFLA_PORT_RESPONSE] = { .type = NLA_U16, },
1240};
1241
Thomas Grafb60c5112006-08-04 23:05:34 -07001242static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001244 struct net *net = sock_net(skb->sk);
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001245 int h, s_h;
1246 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 struct net_device *dev;
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001248 struct hlist_head *head;
Greg Rose115c9b82012-02-21 16:54:48 -05001249 struct nlattr *tb[IFLA_MAX+1];
1250 u32 ext_filter_mask = 0;
David Gibson973462b2014-04-24 10:22:35 +10001251 int err;
Michal Schmidte5eca6d2014-05-28 14:15:19 +02001252 int hdrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001254 s_h = cb->args[0];
1255 s_idx = cb->args[1];
1256
Eric Dumazete67f88d2011-04-27 22:56:07 +00001257 rcu_read_lock();
Thomas Graf4e985ad2011-06-21 03:11:20 +00001258 cb->seq = net->dev_base_seq;
1259
Michal Schmidte5eca6d2014-05-28 14:15:19 +02001260 /* A hack to preserve kernel<->userspace interface.
1261 * The correct header is ifinfomsg. It is consistent with rtnl_getlink.
1262 * However, before Linux v3.9 the code here assumed rtgenmsg and that's
1263 * what iproute2 < v3.9.0 used.
1264 * We can detect the old iproute2. Even including the IFLA_EXT_MASK
1265 * attribute, its netlink message is shorter than struct ifinfomsg.
1266 */
1267 hdrlen = nlmsg_len(cb->nlh) < sizeof(struct ifinfomsg) ?
1268 sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg);
1269
1270 if (nlmsg_parse(cb->nlh, hdrlen, tb, IFLA_MAX, ifla_policy) >= 0) {
Greg Rose115c9b82012-02-21 16:54:48 -05001271
Eric Dumazeta4b64fb2012-03-04 12:32:10 +00001272 if (tb[IFLA_EXT_MASK])
1273 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
1274 }
Greg Rose115c9b82012-02-21 16:54:48 -05001275
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001276 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
1277 idx = 0;
1278 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001279 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001280 if (idx < s_idx)
1281 goto cont;
David Gibson973462b2014-04-24 10:22:35 +10001282 err = rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
1283 NETLINK_CB(cb->skb).portid,
1284 cb->nlh->nlmsg_seq, 0,
1285 NLM_F_MULTI,
1286 ext_filter_mask);
1287 /* If we ran out of room on the first message,
1288 * we're in trouble
1289 */
1290 WARN_ON((err == -EMSGSIZE) && (skb->len == 0));
1291
1292 if (err <= 0)
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001293 goto out;
Thomas Graf4e985ad2011-06-21 03:11:20 +00001294
1295 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Pavel Emelianov7562f872007-05-03 15:13:45 -07001296cont:
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001297 idx++;
1298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001300out:
Eric Dumazete67f88d2011-04-27 22:56:07 +00001301 rcu_read_unlock();
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001302 cb->args[1] = idx;
1303 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 return skb->len;
1306}
1307
Jiri Pirkof7b12602014-02-18 20:53:18 +01001308int rtnl_nla_parse_ifla(struct nlattr **tb, const struct nlattr *head, int len)
1309{
1310 return nla_parse(tb, IFLA_MAX, head, len, ifla_policy);
1311}
1312EXPORT_SYMBOL(rtnl_nla_parse_ifla);
Scott Feldman57b61082010-05-17 22:49:55 -07001313
Eric W. Biederman81adee42009-11-08 00:53:51 -08001314struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
1315{
1316 struct net *net;
1317 /* Examine the link attributes and figure out which
1318 * network namespace we are talking about.
1319 */
1320 if (tb[IFLA_NET_NS_PID])
1321 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001322 else if (tb[IFLA_NET_NS_FD])
1323 net = get_net_ns_by_fd(nla_get_u32(tb[IFLA_NET_NS_FD]));
Eric W. Biederman81adee42009-11-08 00:53:51 -08001324 else
1325 net = get_net(src_net);
1326 return net;
1327}
1328EXPORT_SYMBOL(rtnl_link_get_net);
1329
Thomas Graf1840bb12008-02-23 19:54:36 -08001330static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
1331{
1332 if (dev) {
1333 if (tb[IFLA_ADDRESS] &&
1334 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
1335 return -EINVAL;
1336
1337 if (tb[IFLA_BROADCAST] &&
1338 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
1339 return -EINVAL;
1340 }
1341
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001342 if (tb[IFLA_AF_SPEC]) {
1343 struct nlattr *af;
1344 int rem, err;
1345
1346 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1347 const struct rtnl_af_ops *af_ops;
1348
1349 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
1350 return -EAFNOSUPPORT;
1351
1352 if (!af_ops->set_link_af)
1353 return -EOPNOTSUPP;
1354
1355 if (af_ops->validate_link_af) {
Kurt Van Dijck6d3a9a62011-01-26 04:55:24 +00001356 err = af_ops->validate_link_af(dev, af);
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001357 if (err < 0)
1358 return err;
1359 }
1360 }
1361 }
1362
Thomas Graf1840bb12008-02-23 19:54:36 -08001363 return 0;
1364}
1365
Chris Wrightc02db8c2010-05-16 01:05:45 -07001366static int do_setvfinfo(struct net_device *dev, struct nlattr *attr)
1367{
1368 int rem, err = -EINVAL;
1369 struct nlattr *vf;
1370 const struct net_device_ops *ops = dev->netdev_ops;
1371
1372 nla_for_each_nested(vf, attr, rem) {
1373 switch (nla_type(vf)) {
1374 case IFLA_VF_MAC: {
1375 struct ifla_vf_mac *ivm;
1376 ivm = nla_data(vf);
1377 err = -EOPNOTSUPP;
1378 if (ops->ndo_set_vf_mac)
1379 err = ops->ndo_set_vf_mac(dev, ivm->vf,
1380 ivm->mac);
1381 break;
1382 }
1383 case IFLA_VF_VLAN: {
1384 struct ifla_vf_vlan *ivv;
1385 ivv = nla_data(vf);
1386 err = -EOPNOTSUPP;
1387 if (ops->ndo_set_vf_vlan)
1388 err = ops->ndo_set_vf_vlan(dev, ivv->vf,
1389 ivv->vlan,
1390 ivv->qos);
1391 break;
1392 }
1393 case IFLA_VF_TX_RATE: {
1394 struct ifla_vf_tx_rate *ivt;
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001395 struct ifla_vf_info ivf;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001396 ivt = nla_data(vf);
1397 err = -EOPNOTSUPP;
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001398 if (ops->ndo_get_vf_config)
1399 err = ops->ndo_get_vf_config(dev, ivt->vf,
1400 &ivf);
1401 if (err)
1402 break;
1403 err = -EOPNOTSUPP;
1404 if (ops->ndo_set_vf_rate)
1405 err = ops->ndo_set_vf_rate(dev, ivt->vf,
1406 ivf.min_tx_rate,
1407 ivt->rate);
1408 break;
1409 }
1410 case IFLA_VF_RATE: {
1411 struct ifla_vf_rate *ivt;
1412 ivt = nla_data(vf);
1413 err = -EOPNOTSUPP;
1414 if (ops->ndo_set_vf_rate)
1415 err = ops->ndo_set_vf_rate(dev, ivt->vf,
1416 ivt->min_tx_rate,
1417 ivt->max_tx_rate);
Chris Wrightc02db8c2010-05-16 01:05:45 -07001418 break;
1419 }
Greg Rose5f8444a2011-10-08 03:05:24 +00001420 case IFLA_VF_SPOOFCHK: {
1421 struct ifla_vf_spoofchk *ivs;
1422 ivs = nla_data(vf);
1423 err = -EOPNOTSUPP;
1424 if (ops->ndo_set_vf_spoofchk)
1425 err = ops->ndo_set_vf_spoofchk(dev, ivs->vf,
1426 ivs->setting);
1427 break;
1428 }
Rony Efraim1d8faf42013-06-13 13:19:10 +03001429 case IFLA_VF_LINK_STATE: {
1430 struct ifla_vf_link_state *ivl;
1431 ivl = nla_data(vf);
1432 err = -EOPNOTSUPP;
1433 if (ops->ndo_set_vf_link_state)
1434 err = ops->ndo_set_vf_link_state(dev, ivl->vf,
1435 ivl->link_state);
1436 break;
1437 }
Chris Wrightc02db8c2010-05-16 01:05:45 -07001438 default:
1439 err = -EINVAL;
1440 break;
1441 }
1442 if (err)
1443 break;
1444 }
1445 return err;
1446}
1447
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001448static int do_set_master(struct net_device *dev, int ifindex)
1449{
Jiri Pirko898e5062013-01-03 22:48:52 +00001450 struct net_device *upper_dev = netdev_master_upper_dev_get(dev);
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001451 const struct net_device_ops *ops;
1452 int err;
1453
Jiri Pirko898e5062013-01-03 22:48:52 +00001454 if (upper_dev) {
1455 if (upper_dev->ifindex == ifindex)
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001456 return 0;
Jiri Pirko898e5062013-01-03 22:48:52 +00001457 ops = upper_dev->netdev_ops;
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001458 if (ops->ndo_del_slave) {
Jiri Pirko898e5062013-01-03 22:48:52 +00001459 err = ops->ndo_del_slave(upper_dev, dev);
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001460 if (err)
1461 return err;
1462 } else {
1463 return -EOPNOTSUPP;
1464 }
1465 }
1466
1467 if (ifindex) {
Jiri Pirko898e5062013-01-03 22:48:52 +00001468 upper_dev = __dev_get_by_index(dev_net(dev), ifindex);
1469 if (!upper_dev)
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001470 return -EINVAL;
Jiri Pirko898e5062013-01-03 22:48:52 +00001471 ops = upper_dev->netdev_ops;
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001472 if (ops->ndo_add_slave) {
Jiri Pirko898e5062013-01-03 22:48:52 +00001473 err = ops->ndo_add_slave(upper_dev, dev);
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001474 if (err)
1475 return err;
1476 } else {
1477 return -EOPNOTSUPP;
1478 }
1479 }
1480 return 0;
1481}
1482
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07001483static int do_setlink(const struct sk_buff *skb,
1484 struct net_device *dev, struct ifinfomsg *ifm,
Patrick McHardy38f7b872007-06-13 12:03:51 -07001485 struct nlattr **tb, char *ifname, int modified)
Patrick McHardy0157f602007-06-13 12:03:36 -07001486{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001487 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy0157f602007-06-13 12:03:36 -07001488 int err;
1489
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001490 if (tb[IFLA_NET_NS_PID] || tb[IFLA_NET_NS_FD]) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001491 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001492 if (IS_ERR(net)) {
1493 err = PTR_ERR(net);
1494 goto errout;
1495 }
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07001496 if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN)) {
Eric W. Biedermanb51642f2012-11-16 03:03:11 +00001497 err = -EPERM;
1498 goto errout;
1499 }
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001500 err = dev_change_net_namespace(dev, net, ifname);
1501 put_net(net);
1502 if (err)
1503 goto errout;
1504 modified = 1;
1505 }
1506
Patrick McHardy0157f602007-06-13 12:03:36 -07001507 if (tb[IFLA_MAP]) {
1508 struct rtnl_link_ifmap *u_map;
1509 struct ifmap k_map;
1510
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001511 if (!ops->ndo_set_config) {
Patrick McHardy0157f602007-06-13 12:03:36 -07001512 err = -EOPNOTSUPP;
1513 goto errout;
1514 }
1515
1516 if (!netif_device_present(dev)) {
1517 err = -ENODEV;
1518 goto errout;
1519 }
1520
1521 u_map = nla_data(tb[IFLA_MAP]);
1522 k_map.mem_start = (unsigned long) u_map->mem_start;
1523 k_map.mem_end = (unsigned long) u_map->mem_end;
1524 k_map.base_addr = (unsigned short) u_map->base_addr;
1525 k_map.irq = (unsigned char) u_map->irq;
1526 k_map.dma = (unsigned char) u_map->dma;
1527 k_map.port = (unsigned char) u_map->port;
1528
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001529 err = ops->ndo_set_config(dev, &k_map);
Patrick McHardy0157f602007-06-13 12:03:36 -07001530 if (err < 0)
1531 goto errout;
1532
1533 modified = 1;
1534 }
1535
1536 if (tb[IFLA_ADDRESS]) {
1537 struct sockaddr *sa;
1538 int len;
1539
Patrick McHardy0157f602007-06-13 12:03:36 -07001540 len = sizeof(sa_family_t) + dev->addr_len;
1541 sa = kmalloc(len, GFP_KERNEL);
1542 if (!sa) {
1543 err = -ENOMEM;
1544 goto errout;
1545 }
1546 sa->sa_family = dev->type;
1547 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
1548 dev->addr_len);
Jiri Pirkoe7c32732013-01-01 03:30:13 +00001549 err = dev_set_mac_address(dev, sa);
Patrick McHardy0157f602007-06-13 12:03:36 -07001550 kfree(sa);
1551 if (err)
1552 goto errout;
Patrick McHardy0157f602007-06-13 12:03:36 -07001553 modified = 1;
1554 }
1555
1556 if (tb[IFLA_MTU]) {
1557 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1558 if (err < 0)
1559 goto errout;
1560 modified = 1;
1561 }
1562
Vlad Dogarucbda10f2011-01-13 23:38:30 +00001563 if (tb[IFLA_GROUP]) {
1564 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
1565 modified = 1;
1566 }
1567
Patrick McHardy0157f602007-06-13 12:03:36 -07001568 /*
1569 * Interface selected by interface index but interface
1570 * name provided implies that a name change has been
1571 * requested.
1572 */
1573 if (ifm->ifi_index > 0 && ifname[0]) {
1574 err = dev_change_name(dev, ifname);
1575 if (err < 0)
1576 goto errout;
1577 modified = 1;
1578 }
1579
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001580 if (tb[IFLA_IFALIAS]) {
1581 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
1582 nla_len(tb[IFLA_IFALIAS]));
1583 if (err < 0)
1584 goto errout;
1585 modified = 1;
1586 }
1587
Patrick McHardy0157f602007-06-13 12:03:36 -07001588 if (tb[IFLA_BROADCAST]) {
1589 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
Jiri Pirkoe7c32732013-01-01 03:30:13 +00001590 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Patrick McHardy0157f602007-06-13 12:03:36 -07001591 }
1592
1593 if (ifm->ifi_flags || ifm->ifi_change) {
Patrick McHardy3729d502010-02-26 06:34:54 +00001594 err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
Johannes Berg5f9021c2008-11-16 23:20:31 -08001595 if (err < 0)
1596 goto errout;
Patrick McHardy0157f602007-06-13 12:03:36 -07001597 }
1598
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001599 if (tb[IFLA_MASTER]) {
1600 err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER]));
1601 if (err)
1602 goto errout;
1603 modified = 1;
1604 }
1605
Jiri Pirko9a572472012-12-27 23:49:39 +00001606 if (tb[IFLA_CARRIER]) {
1607 err = dev_change_carrier(dev, nla_get_u8(tb[IFLA_CARRIER]));
1608 if (err)
1609 goto errout;
1610 modified = 1;
1611 }
1612
David S. Miller93b2d4a2008-02-17 18:35:07 -08001613 if (tb[IFLA_TXQLEN])
1614 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
Patrick McHardy0157f602007-06-13 12:03:36 -07001615
Patrick McHardy0157f602007-06-13 12:03:36 -07001616 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001617 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Patrick McHardy0157f602007-06-13 12:03:36 -07001618
1619 if (tb[IFLA_LINKMODE]) {
David S. Miller93b2d4a2008-02-17 18:35:07 -08001620 write_lock_bh(&dev_base_lock);
1621 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1622 write_unlock_bh(&dev_base_lock);
Patrick McHardy0157f602007-06-13 12:03:36 -07001623 }
1624
Chris Wrightc02db8c2010-05-16 01:05:45 -07001625 if (tb[IFLA_VFINFO_LIST]) {
1626 struct nlattr *attr;
1627 int rem;
1628 nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) {
David Howells253683b2010-05-21 02:25:27 +00001629 if (nla_type(attr) != IFLA_VF_INFO) {
1630 err = -EINVAL;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001631 goto errout;
David Howells253683b2010-05-21 02:25:27 +00001632 }
Chris Wrightc02db8c2010-05-16 01:05:45 -07001633 err = do_setvfinfo(dev, attr);
1634 if (err < 0)
1635 goto errout;
1636 modified = 1;
1637 }
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001638 }
Patrick McHardy0157f602007-06-13 12:03:36 -07001639 err = 0;
1640
Scott Feldman57b61082010-05-17 22:49:55 -07001641 if (tb[IFLA_VF_PORTS]) {
1642 struct nlattr *port[IFLA_PORT_MAX+1];
1643 struct nlattr *attr;
1644 int vf;
1645 int rem;
1646
1647 err = -EOPNOTSUPP;
1648 if (!ops->ndo_set_vf_port)
1649 goto errout;
1650
1651 nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) {
1652 if (nla_type(attr) != IFLA_VF_PORT)
1653 continue;
1654 err = nla_parse_nested(port, IFLA_PORT_MAX,
1655 attr, ifla_port_policy);
1656 if (err < 0)
1657 goto errout;
1658 if (!port[IFLA_PORT_VF]) {
1659 err = -EOPNOTSUPP;
1660 goto errout;
1661 }
1662 vf = nla_get_u32(port[IFLA_PORT_VF]);
1663 err = ops->ndo_set_vf_port(dev, vf, port);
1664 if (err < 0)
1665 goto errout;
1666 modified = 1;
1667 }
1668 }
1669 err = 0;
1670
1671 if (tb[IFLA_PORT_SELF]) {
1672 struct nlattr *port[IFLA_PORT_MAX+1];
1673
1674 err = nla_parse_nested(port, IFLA_PORT_MAX,
1675 tb[IFLA_PORT_SELF], ifla_port_policy);
1676 if (err < 0)
1677 goto errout;
1678
1679 err = -EOPNOTSUPP;
1680 if (ops->ndo_set_vf_port)
1681 err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port);
1682 if (err < 0)
1683 goto errout;
1684 modified = 1;
1685 }
Thomas Graff8ff1822010-11-16 04:30:14 +00001686
1687 if (tb[IFLA_AF_SPEC]) {
1688 struct nlattr *af;
1689 int rem;
1690
1691 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1692 const struct rtnl_af_ops *af_ops;
1693
1694 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001695 BUG();
Thomas Graff8ff1822010-11-16 04:30:14 +00001696
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001697 err = af_ops->set_link_af(dev, af);
Thomas Graff8ff1822010-11-16 04:30:14 +00001698 if (err < 0)
1699 goto errout;
1700
1701 modified = 1;
1702 }
1703 }
Scott Feldman57b61082010-05-17 22:49:55 -07001704 err = 0;
1705
Patrick McHardy0157f602007-06-13 12:03:36 -07001706errout:
Joe Perchese87cc472012-05-13 21:56:26 +00001707 if (err < 0 && modified)
1708 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",
1709 dev->name);
Patrick McHardy0157f602007-06-13 12:03:36 -07001710
Patrick McHardy0157f602007-06-13 12:03:36 -07001711 return err;
1712}
1713
Thomas Graf661d2962013-03-21 07:45:29 +00001714static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001716 struct net *net = sock_net(skb->sk);
Thomas Grafda5e0492006-08-10 21:17:37 -07001717 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -07001719 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -07001720 struct nlattr *tb[IFLA_MAX+1];
1721 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Thomas Grafda5e0492006-08-10 21:17:37 -07001723 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1724 if (err < 0)
1725 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Thomas Graf5176f912006-08-26 20:13:18 -07001727 if (tb[IFLA_IFNAME])
1728 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -07001729 else
1730 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -07001733 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -07001734 if (ifm->ifi_index > 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001735 dev = __dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -07001736 else if (tb[IFLA_IFNAME])
Eric Dumazeta3d12892009-10-21 10:59:31 +00001737 dev = __dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -07001738 else
1739 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Thomas Grafda5e0492006-08-10 21:17:37 -07001741 if (dev == NULL) {
1742 err = -ENODEV;
1743 goto errout;
1744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Eric Dumazete0d087a2009-11-07 01:26:17 -08001746 err = validate_linkmsg(dev, tb);
1747 if (err < 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001748 goto errout;
Thomas Grafda5e0492006-08-10 21:17:37 -07001749
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07001750 err = do_setlink(skb, dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -07001751errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 return err;
1753}
1754
Thomas Graf661d2962013-03-21 07:45:29 +00001755static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh)
Patrick McHardy38f7b872007-06-13 12:03:51 -07001756{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001757 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001758 const struct rtnl_link_ops *ops;
1759 struct net_device *dev;
1760 struct ifinfomsg *ifm;
1761 char ifname[IFNAMSIZ];
1762 struct nlattr *tb[IFLA_MAX+1];
1763 int err;
Eric Dumazet226bd342011-05-08 23:17:57 +00001764 LIST_HEAD(list_kill);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001765
1766 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1767 if (err < 0)
1768 return err;
1769
1770 if (tb[IFLA_IFNAME])
1771 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1772
1773 ifm = nlmsg_data(nlh);
1774 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001775 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001776 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001777 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001778 else
1779 return -EINVAL;
1780
1781 if (!dev)
1782 return -ENODEV;
1783
1784 ops = dev->rtnl_link_ops;
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02001785 if (!ops || !ops->dellink)
Patrick McHardy38f7b872007-06-13 12:03:51 -07001786 return -EOPNOTSUPP;
1787
Eric Dumazet226bd342011-05-08 23:17:57 +00001788 ops->dellink(dev, &list_kill);
1789 unregister_netdevice_many(&list_kill);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001790 return 0;
1791}
1792
Patrick McHardy3729d502010-02-26 06:34:54 +00001793int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
1794{
1795 unsigned int old_flags;
1796 int err;
1797
1798 old_flags = dev->flags;
1799 if (ifm && (ifm->ifi_flags || ifm->ifi_change)) {
1800 err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
1801 if (err < 0)
1802 return err;
1803 }
1804
1805 dev->rtnl_link_state = RTNL_LINK_INITIALIZED;
Patrick McHardy3729d502010-02-26 06:34:54 +00001806
Nicolas Dichtela528c212013-09-25 12:02:44 +02001807 __dev_notify_flags(dev, old_flags, ~0U);
Patrick McHardy3729d502010-02-26 06:34:54 +00001808 return 0;
1809}
1810EXPORT_SYMBOL(rtnl_configure_link);
1811
Rami Rosenc0713562012-11-30 01:08:47 +00001812struct net_device *rtnl_create_link(struct net *net,
Eric W. Biederman81adee42009-11-08 00:53:51 -08001813 char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[])
Pavel Emelianove7199282007-08-08 22:16:38 -07001814{
1815 int err;
1816 struct net_device *dev;
Jiri Pirkod40156a2012-07-20 02:28:47 +00001817 unsigned int num_tx_queues = 1;
1818 unsigned int num_rx_queues = 1;
Pavel Emelianove7199282007-08-08 22:16:38 -07001819
Jiri Pirko76ff5cc2012-07-20 02:28:48 +00001820 if (tb[IFLA_NUM_TX_QUEUES])
1821 num_tx_queues = nla_get_u32(tb[IFLA_NUM_TX_QUEUES]);
1822 else if (ops->get_num_tx_queues)
Jiri Pirkod40156a2012-07-20 02:28:47 +00001823 num_tx_queues = ops->get_num_tx_queues();
Jiri Pirko76ff5cc2012-07-20 02:28:48 +00001824
1825 if (tb[IFLA_NUM_RX_QUEUES])
1826 num_rx_queues = nla_get_u32(tb[IFLA_NUM_RX_QUEUES]);
1827 else if (ops->get_num_rx_queues)
Jiri Pirkod40156a2012-07-20 02:28:47 +00001828 num_rx_queues = ops->get_num_rx_queues();
stephen hemmingerefacb302012-04-10 18:34:43 +00001829
Pavel Emelianove7199282007-08-08 22:16:38 -07001830 err = -ENOMEM;
Jiri Pirkod40156a2012-07-20 02:28:47 +00001831 dev = alloc_netdev_mqs(ops->priv_size, ifname, ops->setup,
1832 num_tx_queues, num_rx_queues);
Pavel Emelianove7199282007-08-08 22:16:38 -07001833 if (!dev)
1834 goto err;
1835
Eric W. Biederman81adee42009-11-08 00:53:51 -08001836 dev_net_set(dev, net);
1837 dev->rtnl_link_ops = ops;
Patrick McHardy3729d502010-02-26 06:34:54 +00001838 dev->rtnl_link_state = RTNL_LINK_INITIALIZING;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001839
Pavel Emelianove7199282007-08-08 22:16:38 -07001840 if (tb[IFLA_MTU])
1841 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
Jiri Pirko2afb9b52013-01-06 12:41:57 +00001842 if (tb[IFLA_ADDRESS]) {
Pavel Emelianove7199282007-08-08 22:16:38 -07001843 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1844 nla_len(tb[IFLA_ADDRESS]));
Jiri Pirko2afb9b52013-01-06 12:41:57 +00001845 dev->addr_assign_type = NET_ADDR_SET;
1846 }
Pavel Emelianove7199282007-08-08 22:16:38 -07001847 if (tb[IFLA_BROADCAST])
1848 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1849 nla_len(tb[IFLA_BROADCAST]));
1850 if (tb[IFLA_TXQLEN])
1851 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1852 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001853 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001854 if (tb[IFLA_LINKMODE])
1855 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
Patrick McHardyffa934f2011-01-20 03:00:42 +00001856 if (tb[IFLA_GROUP])
1857 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001858
1859 return dev;
1860
Pavel Emelianove7199282007-08-08 22:16:38 -07001861err:
1862 return ERR_PTR(err);
1863}
Eric Dumazete0d087a2009-11-07 01:26:17 -08001864EXPORT_SYMBOL(rtnl_create_link);
Pavel Emelianove7199282007-08-08 22:16:38 -07001865
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07001866static int rtnl_group_changelink(const struct sk_buff *skb,
1867 struct net *net, int group,
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001868 struct ifinfomsg *ifm,
1869 struct nlattr **tb)
1870{
1871 struct net_device *dev;
1872 int err;
1873
1874 for_each_netdev(net, dev) {
1875 if (dev->group == group) {
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07001876 err = do_setlink(skb, dev, ifm, tb, NULL, 0);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001877 if (err < 0)
1878 return err;
1879 }
1880 }
1881
1882 return 0;
1883}
1884
Thomas Graf661d2962013-03-21 07:45:29 +00001885static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh)
Patrick McHardy38f7b872007-06-13 12:03:51 -07001886{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001887 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001888 const struct rtnl_link_ops *ops;
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01001889 const struct rtnl_link_ops *m_ops = NULL;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001890 struct net_device *dev;
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01001891 struct net_device *master_dev = NULL;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001892 struct ifinfomsg *ifm;
1893 char kind[MODULE_NAME_LEN];
1894 char ifname[IFNAMSIZ];
1895 struct nlattr *tb[IFLA_MAX+1];
1896 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1897 int err;
1898
Johannes Berg95a5afc2008-10-16 15:24:51 -07001899#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001900replay:
Thomas Graf8072f082007-07-31 14:13:50 -07001901#endif
Patrick McHardy38f7b872007-06-13 12:03:51 -07001902 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1903 if (err < 0)
1904 return err;
1905
1906 if (tb[IFLA_IFNAME])
1907 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1908 else
1909 ifname[0] = '\0';
1910
1911 ifm = nlmsg_data(nlh);
1912 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001913 dev = __dev_get_by_index(net, ifm->ifi_index);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001914 else {
1915 if (ifname[0])
1916 dev = __dev_get_by_name(net, ifname);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00001917 else
1918 dev = NULL;
1919 }
Patrick McHardy38f7b872007-06-13 12:03:51 -07001920
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01001921 if (dev) {
1922 master_dev = netdev_master_upper_dev_get(dev);
1923 if (master_dev)
1924 m_ops = master_dev->rtnl_link_ops;
1925 }
1926
Eric Dumazete0d087a2009-11-07 01:26:17 -08001927 err = validate_linkmsg(dev, tb);
1928 if (err < 0)
Thomas Graf1840bb12008-02-23 19:54:36 -08001929 return err;
1930
Patrick McHardy38f7b872007-06-13 12:03:51 -07001931 if (tb[IFLA_LINKINFO]) {
1932 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1933 tb[IFLA_LINKINFO], ifla_info_policy);
1934 if (err < 0)
1935 return err;
1936 } else
1937 memset(linkinfo, 0, sizeof(linkinfo));
1938
1939 if (linkinfo[IFLA_INFO_KIND]) {
1940 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1941 ops = rtnl_link_ops_get(kind);
1942 } else {
1943 kind[0] = '\0';
1944 ops = NULL;
1945 }
1946
1947 if (1) {
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01001948 struct nlattr *attr[ops ? ops->maxtype + 1 : 0];
1949 struct nlattr *slave_attr[m_ops ? m_ops->slave_maxtype + 1 : 0];
1950 struct nlattr **data = NULL;
1951 struct nlattr **slave_data = NULL;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001952 struct net *dest_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001953
1954 if (ops) {
1955 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1956 err = nla_parse_nested(attr, ops->maxtype,
1957 linkinfo[IFLA_INFO_DATA],
1958 ops->policy);
1959 if (err < 0)
1960 return err;
1961 data = attr;
1962 }
1963 if (ops->validate) {
1964 err = ops->validate(tb, data);
1965 if (err < 0)
1966 return err;
1967 }
1968 }
1969
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01001970 if (m_ops) {
1971 if (m_ops->slave_maxtype &&
1972 linkinfo[IFLA_INFO_SLAVE_DATA]) {
1973 err = nla_parse_nested(slave_attr,
1974 m_ops->slave_maxtype,
1975 linkinfo[IFLA_INFO_SLAVE_DATA],
1976 m_ops->slave_policy);
1977 if (err < 0)
1978 return err;
1979 slave_data = slave_attr;
1980 }
1981 if (m_ops->slave_validate) {
1982 err = m_ops->slave_validate(tb, slave_data);
1983 if (err < 0)
1984 return err;
1985 }
1986 }
1987
Patrick McHardy38f7b872007-06-13 12:03:51 -07001988 if (dev) {
1989 int modified = 0;
1990
1991 if (nlh->nlmsg_flags & NLM_F_EXCL)
1992 return -EEXIST;
1993 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1994 return -EOPNOTSUPP;
1995
1996 if (linkinfo[IFLA_INFO_DATA]) {
1997 if (!ops || ops != dev->rtnl_link_ops ||
1998 !ops->changelink)
1999 return -EOPNOTSUPP;
2000
2001 err = ops->changelink(dev, tb, data);
2002 if (err < 0)
2003 return err;
2004 modified = 1;
2005 }
2006
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01002007 if (linkinfo[IFLA_INFO_SLAVE_DATA]) {
2008 if (!m_ops || !m_ops->slave_changelink)
2009 return -EOPNOTSUPP;
2010
2011 err = m_ops->slave_changelink(master_dev, dev,
2012 tb, slave_data);
2013 if (err < 0)
2014 return err;
2015 modified = 1;
2016 }
2017
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002018 return do_setlink(skb, dev, ifm, tb, ifname, modified);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002019 }
2020
Patrick McHardyffa934f2011-01-20 03:00:42 +00002021 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
2022 if (ifm->ifi_index == 0 && tb[IFLA_GROUP])
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002023 return rtnl_group_changelink(skb, net,
Patrick McHardyffa934f2011-01-20 03:00:42 +00002024 nla_get_u32(tb[IFLA_GROUP]),
2025 ifm, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002026 return -ENODEV;
Patrick McHardyffa934f2011-01-20 03:00:42 +00002027 }
Patrick McHardy38f7b872007-06-13 12:03:51 -07002028
Patrick McHardy0e068772007-07-11 19:42:31 -07002029 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
Patrick McHardy38f7b872007-06-13 12:03:51 -07002030 return -EOPNOTSUPP;
2031
2032 if (!ops) {
Johannes Berg95a5afc2008-10-16 15:24:51 -07002033#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07002034 if (kind[0]) {
2035 __rtnl_unlock();
2036 request_module("rtnl-link-%s", kind);
2037 rtnl_lock();
2038 ops = rtnl_link_ops_get(kind);
2039 if (ops)
2040 goto replay;
2041 }
2042#endif
2043 return -EOPNOTSUPP;
2044 }
2045
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02002046 if (!ops->setup)
2047 return -EOPNOTSUPP;
2048
Patrick McHardy38f7b872007-06-13 12:03:51 -07002049 if (!ifname[0])
2050 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002051
Eric W. Biederman81adee42009-11-08 00:53:51 -08002052 dest_net = rtnl_link_get_net(net, tb);
Eric W. Biederman13ad1772011-01-29 14:57:22 +00002053 if (IS_ERR(dest_net))
2054 return PTR_ERR(dest_net);
2055
Rami Rosenc0713562012-11-30 01:08:47 +00002056 dev = rtnl_create_link(dest_net, ifname, ops, tb);
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00002057 if (IS_ERR(dev)) {
Pavel Emelianove7199282007-08-08 22:16:38 -07002058 err = PTR_ERR(dev);
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00002059 goto out;
2060 }
2061
2062 dev->ifindex = ifm->ifi_index;
2063
Cong Wang0e0eee22014-02-11 15:51:30 -08002064 if (ops->newlink) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08002065 err = ops->newlink(net, dev, tb, data);
Cong Wang0e0eee22014-02-11 15:51:30 -08002066 /* Drivers should call free_netdev() in ->destructor
Cong Wange51fb152014-06-03 16:40:47 -07002067 * and unregister it on failure after registration
2068 * so that device could be finally freed in rtnl_unlock.
Cong Wang0e0eee22014-02-11 15:51:30 -08002069 */
Cong Wange51fb152014-06-03 16:40:47 -07002070 if (err < 0) {
2071 /* If device is not registered at all, free it now */
2072 if (dev->reg_state == NETREG_UNINITIALIZED)
2073 free_netdev(dev);
Cong Wang0e0eee22014-02-11 15:51:30 -08002074 goto out;
Cong Wange51fb152014-06-03 16:40:47 -07002075 }
Cong Wang0e0eee22014-02-11 15:51:30 -08002076 } else {
Patrick McHardy2d85cba2007-07-11 19:42:13 -07002077 err = register_netdevice(dev);
Cong Wang0e0eee22014-02-11 15:51:30 -08002078 if (err < 0) {
2079 free_netdev(dev);
2080 goto out;
2081 }
Dan Carpenterfce9b9b2013-08-14 12:35:42 +03002082 }
Patrick McHardy3729d502010-02-26 06:34:54 +00002083 err = rtnl_configure_link(dev, ifm);
2084 if (err < 0)
2085 unregister_netdevice(dev);
2086out:
Eric W. Biederman81adee42009-11-08 00:53:51 -08002087 put_net(dest_net);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002088 return err;
2089 }
2090}
2091
Thomas Graf661d2962013-03-21 07:45:29 +00002092static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002093{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002094 struct net *net = sock_net(skb->sk);
Thomas Grafb60c5112006-08-04 23:05:34 -07002095 struct ifinfomsg *ifm;
Eric Dumazeta3d12892009-10-21 10:59:31 +00002096 char ifname[IFNAMSIZ];
Thomas Grafb60c5112006-08-04 23:05:34 -07002097 struct nlattr *tb[IFLA_MAX+1];
2098 struct net_device *dev = NULL;
2099 struct sk_buff *nskb;
Thomas Graf339bf982006-11-10 14:10:15 -08002100 int err;
Greg Rose115c9b82012-02-21 16:54:48 -05002101 u32 ext_filter_mask = 0;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002102
Thomas Grafb60c5112006-08-04 23:05:34 -07002103 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
2104 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07002105 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07002106
Eric Dumazeta3d12892009-10-21 10:59:31 +00002107 if (tb[IFLA_IFNAME])
2108 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
2109
Greg Rose115c9b82012-02-21 16:54:48 -05002110 if (tb[IFLA_EXT_MASK])
2111 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
2112
Thomas Grafb60c5112006-08-04 23:05:34 -07002113 ifm = nlmsg_data(nlh);
Eric Dumazeta3d12892009-10-21 10:59:31 +00002114 if (ifm->ifi_index > 0)
2115 dev = __dev_get_by_index(net, ifm->ifi_index);
2116 else if (tb[IFLA_IFNAME])
2117 dev = __dev_get_by_name(net, ifname);
2118 else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002119 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07002120
Eric Dumazeta3d12892009-10-21 10:59:31 +00002121 if (dev == NULL)
2122 return -ENODEV;
2123
Greg Rose115c9b82012-02-21 16:54:48 -05002124 nskb = nlmsg_new(if_nlmsg_size(dev, ext_filter_mask), GFP_KERNEL);
Eric Dumazeta3d12892009-10-21 10:59:31 +00002125 if (nskb == NULL)
2126 return -ENOBUFS;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002127
Eric W. Biederman15e47302012-09-07 20:12:54 +00002128 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).portid,
Greg Rose115c9b82012-02-21 16:54:48 -05002129 nlh->nlmsg_seq, 0, 0, ext_filter_mask);
Patrick McHardy26932562007-01-31 23:16:40 -08002130 if (err < 0) {
2131 /* -EMSGSIZE implies BUG in if_nlmsg_size */
2132 WARN_ON(err == -EMSGSIZE);
2133 kfree_skb(nskb);
Eric Dumazeta3d12892009-10-21 10:59:31 +00002134 } else
Eric W. Biederman15e47302012-09-07 20:12:54 +00002135 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).portid);
Thomas Grafb60c5112006-08-04 23:05:34 -07002136
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002137 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002138}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002139
Greg Rose115c9b82012-02-21 16:54:48 -05002140static u16 rtnl_calcit(struct sk_buff *skb, struct nlmsghdr *nlh)
Greg Rosec7ac8672011-06-10 01:27:09 +00002141{
Greg Rose115c9b82012-02-21 16:54:48 -05002142 struct net *net = sock_net(skb->sk);
2143 struct net_device *dev;
2144 struct nlattr *tb[IFLA_MAX+1];
2145 u32 ext_filter_mask = 0;
2146 u16 min_ifinfo_dump_size = 0;
Michal Schmidte5eca6d2014-05-28 14:15:19 +02002147 int hdrlen;
Greg Rose115c9b82012-02-21 16:54:48 -05002148
Michal Schmidte5eca6d2014-05-28 14:15:19 +02002149 /* Same kernel<->userspace interface hack as in rtnl_dump_ifinfo. */
2150 hdrlen = nlmsg_len(nlh) < sizeof(struct ifinfomsg) ?
2151 sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg);
2152
2153 if (nlmsg_parse(nlh, hdrlen, tb, IFLA_MAX, ifla_policy) >= 0) {
Eric Dumazeta4b64fb2012-03-04 12:32:10 +00002154 if (tb[IFLA_EXT_MASK])
2155 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
2156 }
Greg Rose115c9b82012-02-21 16:54:48 -05002157
2158 if (!ext_filter_mask)
2159 return NLMSG_GOODSIZE;
2160 /*
2161 * traverse the list of net devices and compute the minimum
2162 * buffer size based upon the filter mask.
2163 */
2164 list_for_each_entry(dev, &net->dev_base_head, dev_list) {
2165 min_ifinfo_dump_size = max_t(u16, min_ifinfo_dump_size,
2166 if_nlmsg_size(dev,
2167 ext_filter_mask));
2168 }
2169
Greg Rosec7ac8672011-06-10 01:27:09 +00002170 return min_ifinfo_dump_size;
2171}
2172
Adrian Bunk42bad1d2007-04-26 00:57:41 -07002173static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
2175 int idx;
2176 int s_idx = cb->family;
2177
2178 if (s_idx == 0)
2179 s_idx = 1;
Patrick McHardy25239ce2010-04-26 16:02:05 +02002180 for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 int type = cb->nlh->nlmsg_type-RTM_BASE;
2182 if (idx < s_idx || idx == PF_PACKET)
2183 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07002184 if (rtnl_msg_handlers[idx] == NULL ||
2185 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 continue;
Nicolas Dichtel04652772013-03-22 06:28:42 +00002187 if (idx > s_idx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 memset(&cb->args[0], 0, sizeof(cb->args));
Nicolas Dichtel04652772013-03-22 06:28:42 +00002189 cb->prev_seq = 0;
2190 cb->seq = 0;
2191 }
Thomas Grafe2849862007-03-22 11:48:11 -07002192 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 break;
2194 }
2195 cb->family = idx;
2196
2197 return skb->len;
2198}
2199
Alexei Starovoitov7f294052013-10-23 16:02:42 -07002200void rtmsg_ifinfo(int type, struct net_device *dev, unsigned int change,
2201 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002203 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07002205 int err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00002206 size_t if_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Alexei Starovoitov7f294052013-10-23 16:02:42 -07002208 skb = nlmsg_new((if_info_size = if_nlmsg_size(dev, 0)), flags);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07002209 if (skb == NULL)
2210 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Greg Rose115c9b82012-02-21 16:54:48 -05002212 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08002213 if (err < 0) {
2214 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
2215 WARN_ON(err == -EMSGSIZE);
2216 kfree_skb(skb);
2217 goto errout;
2218 }
Alexei Starovoitov7f294052013-10-23 16:02:42 -07002219 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, flags);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002220 return;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07002221errout:
2222 if (err < 0)
Eric W. Biederman4b3da702007-11-19 22:27:40 -08002223 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224}
Jiri Pirko471cb5a2013-01-03 22:49:01 +00002225EXPORT_SYMBOL(rtmsg_ifinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
John Fastabendd83b0602012-04-15 06:44:08 +00002227static int nlmsg_populate_fdb_fill(struct sk_buff *skb,
2228 struct net_device *dev,
2229 u8 *addr, u32 pid, u32 seq,
Nicolas Dichtel1c104a62014-03-19 17:47:49 +01002230 int type, unsigned int flags,
2231 int nlflags)
John Fastabendd83b0602012-04-15 06:44:08 +00002232{
2233 struct nlmsghdr *nlh;
2234 struct ndmsg *ndm;
2235
Nicolas Dichtel1c104a62014-03-19 17:47:49 +01002236 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), nlflags);
John Fastabendd83b0602012-04-15 06:44:08 +00002237 if (!nlh)
2238 return -EMSGSIZE;
2239
2240 ndm = nlmsg_data(nlh);
2241 ndm->ndm_family = AF_BRIDGE;
2242 ndm->ndm_pad1 = 0;
2243 ndm->ndm_pad2 = 0;
2244 ndm->ndm_flags = flags;
2245 ndm->ndm_type = 0;
2246 ndm->ndm_ifindex = dev->ifindex;
2247 ndm->ndm_state = NUD_PERMANENT;
2248
2249 if (nla_put(skb, NDA_LLADDR, ETH_ALEN, addr))
2250 goto nla_put_failure;
2251
2252 return nlmsg_end(skb, nlh);
2253
2254nla_put_failure:
2255 nlmsg_cancel(skb, nlh);
2256 return -EMSGSIZE;
2257}
2258
John Fastabend3ff661c2012-04-15 06:44:14 +00002259static inline size_t rtnl_fdb_nlmsg_size(void)
2260{
2261 return NLMSG_ALIGN(sizeof(struct ndmsg)) + nla_total_size(ETH_ALEN);
2262}
2263
2264static void rtnl_fdb_notify(struct net_device *dev, u8 *addr, int type)
2265{
2266 struct net *net = dev_net(dev);
2267 struct sk_buff *skb;
2268 int err = -ENOBUFS;
2269
2270 skb = nlmsg_new(rtnl_fdb_nlmsg_size(), GFP_ATOMIC);
2271 if (!skb)
2272 goto errout;
2273
Nicolas Dichtel1c104a62014-03-19 17:47:49 +01002274 err = nlmsg_populate_fdb_fill(skb, dev, addr, 0, 0, type, NTF_SELF, 0);
John Fastabend3ff661c2012-04-15 06:44:14 +00002275 if (err < 0) {
2276 kfree_skb(skb);
2277 goto errout;
2278 }
2279
2280 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
2281 return;
2282errout:
2283 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
2284}
2285
Vlad Yasevich090096b2013-03-06 15:39:42 +00002286/**
2287 * ndo_dflt_fdb_add - default netdevice operation to add an FDB entry
2288 */
2289int ndo_dflt_fdb_add(struct ndmsg *ndm,
2290 struct nlattr *tb[],
2291 struct net_device *dev,
2292 const unsigned char *addr,
2293 u16 flags)
2294{
2295 int err = -EINVAL;
2296
2297 /* If aging addresses are supported device will need to
2298 * implement its own handler for this.
2299 */
2300 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
2301 pr_info("%s: FDB only supports static addresses\n", dev->name);
2302 return err;
2303 }
2304
2305 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
2306 err = dev_uc_add_excl(dev, addr);
2307 else if (is_multicast_ether_addr(addr))
2308 err = dev_mc_add_excl(dev, addr);
2309
2310 /* Only return duplicate errors if NLM_F_EXCL is set */
2311 if (err == -EEXIST && !(flags & NLM_F_EXCL))
2312 err = 0;
2313
2314 return err;
2315}
2316EXPORT_SYMBOL(ndo_dflt_fdb_add);
2317
Thomas Graf661d2962013-03-21 07:45:29 +00002318static int rtnl_fdb_add(struct sk_buff *skb, struct nlmsghdr *nlh)
John Fastabend77162022012-04-15 06:43:56 +00002319{
2320 struct net *net = sock_net(skb->sk);
John Fastabend77162022012-04-15 06:43:56 +00002321 struct ndmsg *ndm;
2322 struct nlattr *tb[NDA_MAX+1];
2323 struct net_device *dev;
2324 u8 *addr;
2325 int err;
2326
2327 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
2328 if (err < 0)
2329 return err;
2330
2331 ndm = nlmsg_data(nlh);
2332 if (ndm->ndm_ifindex == 0) {
2333 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid ifindex\n");
2334 return -EINVAL;
2335 }
2336
2337 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
2338 if (dev == NULL) {
2339 pr_info("PF_BRIDGE: RTM_NEWNEIGH with unknown ifindex\n");
2340 return -ENODEV;
2341 }
2342
2343 if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) {
2344 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid address\n");
2345 return -EINVAL;
2346 }
2347
2348 addr = nla_data(tb[NDA_LLADDR]);
John Fastabend77162022012-04-15 06:43:56 +00002349
2350 err = -EOPNOTSUPP;
2351
2352 /* Support fdb on master device the net/bridge default case */
2353 if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) &&
2354 (dev->priv_flags & IFF_BRIDGE_PORT)) {
Jiri Pirko898e5062013-01-03 22:48:52 +00002355 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2356 const struct net_device_ops *ops = br_dev->netdev_ops;
2357
2358 err = ops->ndo_fdb_add(ndm, tb, dev, addr, nlh->nlmsg_flags);
John Fastabend77162022012-04-15 06:43:56 +00002359 if (err)
2360 goto out;
2361 else
2362 ndm->ndm_flags &= ~NTF_MASTER;
2363 }
2364
2365 /* Embedded bridge, macvlan, and any other device support */
Vlad Yasevich090096b2013-03-06 15:39:42 +00002366 if ((ndm->ndm_flags & NTF_SELF)) {
2367 if (dev->netdev_ops->ndo_fdb_add)
2368 err = dev->netdev_ops->ndo_fdb_add(ndm, tb, dev, addr,
2369 nlh->nlmsg_flags);
2370 else
2371 err = ndo_dflt_fdb_add(ndm, tb, dev, addr,
2372 nlh->nlmsg_flags);
John Fastabend77162022012-04-15 06:43:56 +00002373
John Fastabend3ff661c2012-04-15 06:44:14 +00002374 if (!err) {
2375 rtnl_fdb_notify(dev, addr, RTM_NEWNEIGH);
John Fastabend77162022012-04-15 06:43:56 +00002376 ndm->ndm_flags &= ~NTF_SELF;
John Fastabend3ff661c2012-04-15 06:44:14 +00002377 }
John Fastabend77162022012-04-15 06:43:56 +00002378 }
2379out:
2380 return err;
2381}
2382
Vlad Yasevich090096b2013-03-06 15:39:42 +00002383/**
2384 * ndo_dflt_fdb_del - default netdevice operation to delete an FDB entry
2385 */
2386int ndo_dflt_fdb_del(struct ndmsg *ndm,
2387 struct nlattr *tb[],
2388 struct net_device *dev,
2389 const unsigned char *addr)
2390{
2391 int err = -EOPNOTSUPP;
2392
2393 /* If aging addresses are supported device will need to
2394 * implement its own handler for this.
2395 */
Sridhar Samudrala64535992013-08-08 15:19:48 -07002396 if (!(ndm->ndm_state & NUD_PERMANENT)) {
Vlad Yasevich090096b2013-03-06 15:39:42 +00002397 pr_info("%s: FDB only supports static addresses\n", dev->name);
2398 return -EINVAL;
2399 }
2400
2401 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
2402 err = dev_uc_del(dev, addr);
2403 else if (is_multicast_ether_addr(addr))
2404 err = dev_mc_del(dev, addr);
2405 else
2406 err = -EINVAL;
2407
2408 return err;
2409}
2410EXPORT_SYMBOL(ndo_dflt_fdb_del);
2411
Thomas Graf661d2962013-03-21 07:45:29 +00002412static int rtnl_fdb_del(struct sk_buff *skb, struct nlmsghdr *nlh)
John Fastabend77162022012-04-15 06:43:56 +00002413{
2414 struct net *net = sock_net(skb->sk);
2415 struct ndmsg *ndm;
Vlad Yasevich1690be62013-02-13 12:00:18 +00002416 struct nlattr *tb[NDA_MAX+1];
John Fastabend77162022012-04-15 06:43:56 +00002417 struct net_device *dev;
2418 int err = -EINVAL;
2419 __u8 *addr;
2420
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002421 if (!netlink_capable(skb, CAP_NET_ADMIN))
Vlad Yasevich1690be62013-02-13 12:00:18 +00002422 return -EPERM;
2423
2424 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
2425 if (err < 0)
2426 return err;
John Fastabend77162022012-04-15 06:43:56 +00002427
2428 ndm = nlmsg_data(nlh);
2429 if (ndm->ndm_ifindex == 0) {
2430 pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid ifindex\n");
2431 return -EINVAL;
2432 }
2433
2434 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
2435 if (dev == NULL) {
2436 pr_info("PF_BRIDGE: RTM_DELNEIGH with unknown ifindex\n");
2437 return -ENODEV;
2438 }
2439
Vlad Yasevich1690be62013-02-13 12:00:18 +00002440 if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) {
2441 pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid address\n");
John Fastabend77162022012-04-15 06:43:56 +00002442 return -EINVAL;
2443 }
2444
Vlad Yasevich1690be62013-02-13 12:00:18 +00002445 addr = nla_data(tb[NDA_LLADDR]);
Vlad Yasevich1690be62013-02-13 12:00:18 +00002446
John Fastabend77162022012-04-15 06:43:56 +00002447 err = -EOPNOTSUPP;
2448
2449 /* Support fdb on master device the net/bridge default case */
2450 if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) &&
2451 (dev->priv_flags & IFF_BRIDGE_PORT)) {
Jiri Pirko898e5062013-01-03 22:48:52 +00002452 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2453 const struct net_device_ops *ops = br_dev->netdev_ops;
John Fastabend77162022012-04-15 06:43:56 +00002454
Jiri Pirko898e5062013-01-03 22:48:52 +00002455 if (ops->ndo_fdb_del)
Vlad Yasevich1690be62013-02-13 12:00:18 +00002456 err = ops->ndo_fdb_del(ndm, tb, dev, addr);
John Fastabend77162022012-04-15 06:43:56 +00002457
2458 if (err)
2459 goto out;
2460 else
2461 ndm->ndm_flags &= ~NTF_MASTER;
2462 }
2463
2464 /* Embedded bridge, macvlan, and any other device support */
Vlad Yasevich090096b2013-03-06 15:39:42 +00002465 if (ndm->ndm_flags & NTF_SELF) {
2466 if (dev->netdev_ops->ndo_fdb_del)
2467 err = dev->netdev_ops->ndo_fdb_del(ndm, tb, dev, addr);
2468 else
2469 err = ndo_dflt_fdb_del(ndm, tb, dev, addr);
John Fastabend77162022012-04-15 06:43:56 +00002470
John Fastabend3ff661c2012-04-15 06:44:14 +00002471 if (!err) {
2472 rtnl_fdb_notify(dev, addr, RTM_DELNEIGH);
John Fastabend77162022012-04-15 06:43:56 +00002473 ndm->ndm_flags &= ~NTF_SELF;
John Fastabend3ff661c2012-04-15 06:44:14 +00002474 }
John Fastabend77162022012-04-15 06:43:56 +00002475 }
2476out:
2477 return err;
2478}
2479
John Fastabendd83b0602012-04-15 06:44:08 +00002480static int nlmsg_populate_fdb(struct sk_buff *skb,
2481 struct netlink_callback *cb,
2482 struct net_device *dev,
2483 int *idx,
2484 struct netdev_hw_addr_list *list)
2485{
2486 struct netdev_hw_addr *ha;
2487 int err;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002488 u32 portid, seq;
John Fastabendd83b0602012-04-15 06:44:08 +00002489
Eric W. Biederman15e47302012-09-07 20:12:54 +00002490 portid = NETLINK_CB(cb->skb).portid;
John Fastabendd83b0602012-04-15 06:44:08 +00002491 seq = cb->nlh->nlmsg_seq;
2492
2493 list_for_each_entry(ha, &list->list, list) {
2494 if (*idx < cb->args[0])
2495 goto skip;
2496
2497 err = nlmsg_populate_fdb_fill(skb, dev, ha->addr,
John Fastabenda7a558f2012-11-01 16:23:10 +00002498 portid, seq,
Nicolas Dichtel1c104a62014-03-19 17:47:49 +01002499 RTM_NEWNEIGH, NTF_SELF,
2500 NLM_F_MULTI);
John Fastabendd83b0602012-04-15 06:44:08 +00002501 if (err < 0)
2502 return err;
2503skip:
2504 *idx += 1;
2505 }
2506 return 0;
2507}
2508
2509/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002510 * ndo_dflt_fdb_dump - default netdevice operation to dump an FDB table.
John Fastabendd83b0602012-04-15 06:44:08 +00002511 * @nlh: netlink message header
2512 * @dev: netdevice
2513 *
2514 * Default netdevice operation to dump the existing unicast address list.
John Fastabend91f3e7b2013-03-29 08:18:37 +00002515 * Returns number of addresses from list put in skb.
John Fastabendd83b0602012-04-15 06:44:08 +00002516 */
2517int ndo_dflt_fdb_dump(struct sk_buff *skb,
2518 struct netlink_callback *cb,
2519 struct net_device *dev,
2520 int idx)
2521{
2522 int err;
2523
2524 netif_addr_lock_bh(dev);
2525 err = nlmsg_populate_fdb(skb, cb, dev, &idx, &dev->uc);
2526 if (err)
2527 goto out;
2528 nlmsg_populate_fdb(skb, cb, dev, &idx, &dev->mc);
2529out:
2530 netif_addr_unlock_bh(dev);
2531 return idx;
2532}
2533EXPORT_SYMBOL(ndo_dflt_fdb_dump);
2534
John Fastabend77162022012-04-15 06:43:56 +00002535static int rtnl_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb)
2536{
2537 int idx = 0;
2538 struct net *net = sock_net(skb->sk);
2539 struct net_device *dev;
2540
2541 rcu_read_lock();
2542 for_each_netdev_rcu(net, dev) {
2543 if (dev->priv_flags & IFF_BRIDGE_PORT) {
Jiri Pirko898e5062013-01-03 22:48:52 +00002544 struct net_device *br_dev;
2545 const struct net_device_ops *ops;
John Fastabend77162022012-04-15 06:43:56 +00002546
Jiri Pirko898e5062013-01-03 22:48:52 +00002547 br_dev = netdev_master_upper_dev_get(dev);
2548 ops = br_dev->netdev_ops;
John Fastabend77162022012-04-15 06:43:56 +00002549 if (ops->ndo_fdb_dump)
2550 idx = ops->ndo_fdb_dump(skb, cb, dev, idx);
2551 }
2552
2553 if (dev->netdev_ops->ndo_fdb_dump)
2554 idx = dev->netdev_ops->ndo_fdb_dump(skb, cb, dev, idx);
Vlad Yasevich090096b2013-03-06 15:39:42 +00002555 else
John Fastabend91f3e7b2013-03-29 08:18:37 +00002556 idx = ndo_dflt_fdb_dump(skb, cb, dev, idx);
John Fastabend77162022012-04-15 06:43:56 +00002557 }
2558 rcu_read_unlock();
2559
2560 cb->args[0] = idx;
2561 return skb->len;
2562}
2563
John Fastabend815cccb2012-10-24 08:13:09 +00002564int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
2565 struct net_device *dev, u16 mode)
2566{
2567 struct nlmsghdr *nlh;
2568 struct ifinfomsg *ifm;
2569 struct nlattr *br_afspec;
2570 u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN;
Jiri Pirko898e5062013-01-03 22:48:52 +00002571 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
John Fastabend815cccb2012-10-24 08:13:09 +00002572
2573 nlh = nlmsg_put(skb, pid, seq, RTM_NEWLINK, sizeof(*ifm), NLM_F_MULTI);
2574 if (nlh == NULL)
2575 return -EMSGSIZE;
2576
2577 ifm = nlmsg_data(nlh);
2578 ifm->ifi_family = AF_BRIDGE;
2579 ifm->__ifi_pad = 0;
2580 ifm->ifi_type = dev->type;
2581 ifm->ifi_index = dev->ifindex;
2582 ifm->ifi_flags = dev_get_flags(dev);
2583 ifm->ifi_change = 0;
2584
2585
2586 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
2587 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
2588 nla_put_u8(skb, IFLA_OPERSTATE, operstate) ||
Jiri Pirko898e5062013-01-03 22:48:52 +00002589 (br_dev &&
2590 nla_put_u32(skb, IFLA_MASTER, br_dev->ifindex)) ||
John Fastabend815cccb2012-10-24 08:13:09 +00002591 (dev->addr_len &&
2592 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
2593 (dev->ifindex != dev->iflink &&
2594 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
2595 goto nla_put_failure;
2596
2597 br_afspec = nla_nest_start(skb, IFLA_AF_SPEC);
2598 if (!br_afspec)
2599 goto nla_put_failure;
2600
2601 if (nla_put_u16(skb, IFLA_BRIDGE_FLAGS, BRIDGE_FLAGS_SELF) ||
2602 nla_put_u16(skb, IFLA_BRIDGE_MODE, mode)) {
2603 nla_nest_cancel(skb, br_afspec);
2604 goto nla_put_failure;
2605 }
2606 nla_nest_end(skb, br_afspec);
2607
2608 return nlmsg_end(skb, nlh);
2609nla_put_failure:
2610 nlmsg_cancel(skb, nlh);
2611 return -EMSGSIZE;
2612}
2613EXPORT_SYMBOL(ndo_dflt_bridge_getlink);
2614
John Fastabende5a55a82012-10-24 08:12:57 +00002615static int rtnl_bridge_getlink(struct sk_buff *skb, struct netlink_callback *cb)
2616{
2617 struct net *net = sock_net(skb->sk);
2618 struct net_device *dev;
2619 int idx = 0;
2620 u32 portid = NETLINK_CB(cb->skb).portid;
2621 u32 seq = cb->nlh->nlmsg_seq;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00002622 struct nlattr *extfilt;
2623 u32 filter_mask = 0;
2624
Asbjoern Sloth Toennesen3e805ad2013-08-12 16:30:09 +00002625 extfilt = nlmsg_find_attr(cb->nlh, sizeof(struct ifinfomsg),
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00002626 IFLA_EXT_MASK);
2627 if (extfilt)
2628 filter_mask = nla_get_u32(extfilt);
John Fastabende5a55a82012-10-24 08:12:57 +00002629
2630 rcu_read_lock();
2631 for_each_netdev_rcu(net, dev) {
2632 const struct net_device_ops *ops = dev->netdev_ops;
Jiri Pirko898e5062013-01-03 22:48:52 +00002633 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
John Fastabende5a55a82012-10-24 08:12:57 +00002634
Jiri Pirko898e5062013-01-03 22:48:52 +00002635 if (br_dev && br_dev->netdev_ops->ndo_bridge_getlink) {
Ben Hutchings25b1e672012-11-02 12:56:52 +00002636 if (idx >= cb->args[0] &&
Jiri Pirko898e5062013-01-03 22:48:52 +00002637 br_dev->netdev_ops->ndo_bridge_getlink(
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00002638 skb, portid, seq, dev, filter_mask) < 0)
John Fastabende5a55a82012-10-24 08:12:57 +00002639 break;
Ben Hutchings25b1e672012-11-02 12:56:52 +00002640 idx++;
John Fastabende5a55a82012-10-24 08:12:57 +00002641 }
2642
2643 if (ops->ndo_bridge_getlink) {
Ben Hutchings25b1e672012-11-02 12:56:52 +00002644 if (idx >= cb->args[0] &&
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00002645 ops->ndo_bridge_getlink(skb, portid, seq, dev,
2646 filter_mask) < 0)
John Fastabende5a55a82012-10-24 08:12:57 +00002647 break;
Ben Hutchings25b1e672012-11-02 12:56:52 +00002648 idx++;
John Fastabende5a55a82012-10-24 08:12:57 +00002649 }
2650 }
2651 rcu_read_unlock();
2652 cb->args[0] = idx;
2653
2654 return skb->len;
2655}
2656
John Fastabend2469ffd2012-10-24 08:13:03 +00002657static inline size_t bridge_nlmsg_size(void)
2658{
2659 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
2660 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
2661 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
2662 + nla_total_size(sizeof(u32)) /* IFLA_MASTER */
2663 + nla_total_size(sizeof(u32)) /* IFLA_MTU */
2664 + nla_total_size(sizeof(u32)) /* IFLA_LINK */
2665 + nla_total_size(sizeof(u32)) /* IFLA_OPERSTATE */
2666 + nla_total_size(sizeof(u8)) /* IFLA_PROTINFO */
2667 + nla_total_size(sizeof(struct nlattr)) /* IFLA_AF_SPEC */
2668 + nla_total_size(sizeof(u16)) /* IFLA_BRIDGE_FLAGS */
2669 + nla_total_size(sizeof(u16)); /* IFLA_BRIDGE_MODE */
2670}
2671
2672static int rtnl_bridge_notify(struct net_device *dev, u16 flags)
2673{
2674 struct net *net = dev_net(dev);
Jiri Pirko898e5062013-01-03 22:48:52 +00002675 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
John Fastabend2469ffd2012-10-24 08:13:03 +00002676 struct sk_buff *skb;
2677 int err = -EOPNOTSUPP;
2678
2679 skb = nlmsg_new(bridge_nlmsg_size(), GFP_ATOMIC);
2680 if (!skb) {
2681 err = -ENOMEM;
2682 goto errout;
2683 }
2684
John Fastabendc38e01b2012-11-02 16:32:36 +00002685 if ((!flags || (flags & BRIDGE_FLAGS_MASTER)) &&
Jiri Pirko898e5062013-01-03 22:48:52 +00002686 br_dev && br_dev->netdev_ops->ndo_bridge_getlink) {
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00002687 err = br_dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0);
John Fastabendc38e01b2012-11-02 16:32:36 +00002688 if (err < 0)
2689 goto errout;
2690 }
John Fastabend2469ffd2012-10-24 08:13:03 +00002691
John Fastabendc38e01b2012-11-02 16:32:36 +00002692 if ((flags & BRIDGE_FLAGS_SELF) &&
2693 dev->netdev_ops->ndo_bridge_getlink) {
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00002694 err = dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0);
John Fastabendc38e01b2012-11-02 16:32:36 +00002695 if (err < 0)
2696 goto errout;
2697 }
John Fastabend2469ffd2012-10-24 08:13:03 +00002698
2699 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
2700 return 0;
2701errout:
2702 WARN_ON(err == -EMSGSIZE);
2703 kfree_skb(skb);
2704 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
2705 return err;
2706}
2707
Thomas Graf661d2962013-03-21 07:45:29 +00002708static int rtnl_bridge_setlink(struct sk_buff *skb, struct nlmsghdr *nlh)
John Fastabende5a55a82012-10-24 08:12:57 +00002709{
2710 struct net *net = sock_net(skb->sk);
2711 struct ifinfomsg *ifm;
2712 struct net_device *dev;
John Fastabend2469ffd2012-10-24 08:13:03 +00002713 struct nlattr *br_spec, *attr = NULL;
2714 int rem, err = -EOPNOTSUPP;
John Fastabendc38e01b2012-11-02 16:32:36 +00002715 u16 oflags, flags = 0;
2716 bool have_flags = false;
John Fastabende5a55a82012-10-24 08:12:57 +00002717
2718 if (nlmsg_len(nlh) < sizeof(*ifm))
2719 return -EINVAL;
2720
2721 ifm = nlmsg_data(nlh);
2722 if (ifm->ifi_family != AF_BRIDGE)
2723 return -EPFNOSUPPORT;
2724
2725 dev = __dev_get_by_index(net, ifm->ifi_index);
2726 if (!dev) {
2727 pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n");
2728 return -ENODEV;
2729 }
2730
John Fastabend2469ffd2012-10-24 08:13:03 +00002731 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
2732 if (br_spec) {
2733 nla_for_each_nested(attr, br_spec, rem) {
2734 if (nla_type(attr) == IFLA_BRIDGE_FLAGS) {
John Fastabendc38e01b2012-11-02 16:32:36 +00002735 have_flags = true;
John Fastabend2469ffd2012-10-24 08:13:03 +00002736 flags = nla_get_u16(attr);
2737 break;
2738 }
2739 }
2740 }
2741
John Fastabendc38e01b2012-11-02 16:32:36 +00002742 oflags = flags;
2743
John Fastabend2469ffd2012-10-24 08:13:03 +00002744 if (!flags || (flags & BRIDGE_FLAGS_MASTER)) {
Jiri Pirko898e5062013-01-03 22:48:52 +00002745 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2746
2747 if (!br_dev || !br_dev->netdev_ops->ndo_bridge_setlink) {
John Fastabend2469ffd2012-10-24 08:13:03 +00002748 err = -EOPNOTSUPP;
2749 goto out;
2750 }
2751
Jiri Pirko898e5062013-01-03 22:48:52 +00002752 err = br_dev->netdev_ops->ndo_bridge_setlink(dev, nlh);
John Fastabende5a55a82012-10-24 08:12:57 +00002753 if (err)
2754 goto out;
John Fastabend2469ffd2012-10-24 08:13:03 +00002755
2756 flags &= ~BRIDGE_FLAGS_MASTER;
John Fastabende5a55a82012-10-24 08:12:57 +00002757 }
2758
John Fastabend2469ffd2012-10-24 08:13:03 +00002759 if ((flags & BRIDGE_FLAGS_SELF)) {
2760 if (!dev->netdev_ops->ndo_bridge_setlink)
2761 err = -EOPNOTSUPP;
2762 else
2763 err = dev->netdev_ops->ndo_bridge_setlink(dev, nlh);
John Fastabende5a55a82012-10-24 08:12:57 +00002764
John Fastabend2469ffd2012-10-24 08:13:03 +00002765 if (!err)
2766 flags &= ~BRIDGE_FLAGS_SELF;
2767 }
2768
John Fastabendc38e01b2012-11-02 16:32:36 +00002769 if (have_flags)
John Fastabend2469ffd2012-10-24 08:13:03 +00002770 memcpy(nla_data(attr), &flags, sizeof(flags));
2771 /* Generate event to notify upper layer of bridge change */
2772 if (!err)
John Fastabendc38e01b2012-11-02 16:32:36 +00002773 err = rtnl_bridge_notify(dev, oflags);
John Fastabende5a55a82012-10-24 08:12:57 +00002774out:
2775 return err;
2776}
2777
Thomas Graf661d2962013-03-21 07:45:29 +00002778static int rtnl_bridge_dellink(struct sk_buff *skb, struct nlmsghdr *nlh)
Vlad Yasevich407af322013-02-13 12:00:12 +00002779{
2780 struct net *net = sock_net(skb->sk);
2781 struct ifinfomsg *ifm;
2782 struct net_device *dev;
2783 struct nlattr *br_spec, *attr = NULL;
2784 int rem, err = -EOPNOTSUPP;
2785 u16 oflags, flags = 0;
2786 bool have_flags = false;
2787
2788 if (nlmsg_len(nlh) < sizeof(*ifm))
2789 return -EINVAL;
2790
2791 ifm = nlmsg_data(nlh);
2792 if (ifm->ifi_family != AF_BRIDGE)
2793 return -EPFNOSUPPORT;
2794
2795 dev = __dev_get_by_index(net, ifm->ifi_index);
2796 if (!dev) {
2797 pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n");
2798 return -ENODEV;
2799 }
2800
2801 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
2802 if (br_spec) {
2803 nla_for_each_nested(attr, br_spec, rem) {
2804 if (nla_type(attr) == IFLA_BRIDGE_FLAGS) {
2805 have_flags = true;
2806 flags = nla_get_u16(attr);
2807 break;
2808 }
2809 }
2810 }
2811
2812 oflags = flags;
2813
2814 if (!flags || (flags & BRIDGE_FLAGS_MASTER)) {
2815 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2816
2817 if (!br_dev || !br_dev->netdev_ops->ndo_bridge_dellink) {
2818 err = -EOPNOTSUPP;
2819 goto out;
2820 }
2821
2822 err = br_dev->netdev_ops->ndo_bridge_dellink(dev, nlh);
2823 if (err)
2824 goto out;
2825
2826 flags &= ~BRIDGE_FLAGS_MASTER;
2827 }
2828
2829 if ((flags & BRIDGE_FLAGS_SELF)) {
2830 if (!dev->netdev_ops->ndo_bridge_dellink)
2831 err = -EOPNOTSUPP;
2832 else
2833 err = dev->netdev_ops->ndo_bridge_dellink(dev, nlh);
2834
2835 if (!err)
2836 flags &= ~BRIDGE_FLAGS_SELF;
2837 }
2838
2839 if (have_flags)
2840 memcpy(nla_data(attr), &flags, sizeof(flags));
2841 /* Generate event to notify upper layer of bridge change */
2842 if (!err)
2843 err = rtnl_bridge_notify(dev, oflags);
2844out:
2845 return err;
2846}
2847
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848/* Process one rtnetlink message. */
2849
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002850static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002852 struct net *net = sock_net(skb->sk);
Thomas Grafe2849862007-03-22 11:48:11 -07002853 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 int sz_idx, kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 int family;
2856 int type;
Eric Dumazet2907c352011-05-25 07:34:04 +00002857 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07002861 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
2863 type -= RTM_BASE;
2864
2865 /* All the messages must have at least 1 byte length */
Hong zhi guo573ce262013-03-27 06:47:04 +00002866 if (nlmsg_len(nlh) < sizeof(struct rtgenmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 return 0;
2868
Hong zhi guo573ce262013-03-27 06:47:04 +00002869 family = ((struct rtgenmsg *)nlmsg_data(nlh))->rtgen_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 sz_idx = type>>2;
2871 kind = type&3;
2872
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002873 if (kind != 2 && !netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002874 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
David S. Millerb8f3ab42011-01-18 12:40:38 -08002876 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002877 struct sock *rtnl;
Thomas Grafe2849862007-03-22 11:48:11 -07002878 rtnl_dumpit_func dumpit;
Greg Rosec7ac8672011-06-10 01:27:09 +00002879 rtnl_calcit_func calcit;
2880 u16 min_dump_alloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Thomas Grafe2849862007-03-22 11:48:11 -07002882 dumpit = rtnl_get_dumpit(family, type);
2883 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07002884 return -EOPNOTSUPP;
Greg Rosec7ac8672011-06-10 01:27:09 +00002885 calcit = rtnl_get_calcit(family, type);
2886 if (calcit)
Greg Rose115c9b82012-02-21 16:54:48 -05002887 min_dump_alloc = calcit(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
Eric Dumazet2907c352011-05-25 07:34:04 +00002889 __rtnl_unlock();
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002890 rtnl = net->rtnl;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002891 {
2892 struct netlink_dump_control c = {
2893 .dump = dumpit,
2894 .min_dump_alloc = min_dump_alloc,
2895 };
2896 err = netlink_dump_start(rtnl, skb, nlh, &c);
2897 }
Eric Dumazet2907c352011-05-25 07:34:04 +00002898 rtnl_lock();
2899 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 }
2901
Thomas Grafe2849862007-03-22 11:48:11 -07002902 doit = rtnl_get_doit(family, type);
2903 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07002904 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
Thomas Graf661d2962013-03-21 07:45:29 +00002906 return doit(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907}
2908
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002909static void rtnetlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002911 rtnl_lock();
2912 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
2913 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914}
2915
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
2917{
Jiri Pirko351638e2013-05-28 01:30:21 +00002918 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002919
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 case NETDEV_UP:
2922 case NETDEV_DOWN:
Patrick McHardy10de05a2010-02-26 06:34:50 +00002923 case NETDEV_PRE_UP:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00002924 case NETDEV_POST_INIT:
2925 case NETDEV_REGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 case NETDEV_CHANGE:
Patrick McHardy755d0e72010-03-19 04:42:24 +00002927 case NETDEV_PRE_TYPE_CHANGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 case NETDEV_GOING_DOWN:
Patrick McHardya2835762010-02-26 06:34:51 +00002929 case NETDEV_UNREGISTER:
Eric Dumazet0115e8e2012-08-22 17:19:46 +00002930 case NETDEV_UNREGISTER_FINAL:
Amerigo Wangac3d3f82011-05-19 23:06:32 +00002931 case NETDEV_RELEASE:
2932 case NETDEV_JOIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 break;
2934 default:
Alexei Starovoitov7f294052013-10-23 16:02:42 -07002935 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 break;
2937 }
2938 return NOTIFY_DONE;
2939}
2940
2941static struct notifier_block rtnetlink_dev_notifier = {
2942 .notifier_call = rtnetlink_event,
2943};
2944
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002945
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002946static int __net_init rtnetlink_net_init(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002947{
2948 struct sock *sk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002949 struct netlink_kernel_cfg cfg = {
2950 .groups = RTNLGRP_MAX,
2951 .input = rtnetlink_rcv,
2952 .cb_mutex = &rtnl_mutex,
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002953 .flags = NL_CFG_F_NONROOT_RECV,
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002954 };
2955
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002956 sk = netlink_kernel_create(net, NETLINK_ROUTE, &cfg);
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002957 if (!sk)
2958 return -ENOMEM;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002959 net->rtnl = sk;
2960 return 0;
2961}
2962
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002963static void __net_exit rtnetlink_net_exit(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002964{
Denis V. Lunev775516b2008-01-18 23:55:19 -08002965 netlink_kernel_release(net->rtnl);
2966 net->rtnl = NULL;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002967}
2968
2969static struct pernet_operations rtnetlink_net_ops = {
2970 .init = rtnetlink_net_init,
2971 .exit = rtnetlink_net_exit,
2972};
2973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974void __init rtnetlink_init(void)
2975{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002976 if (register_pernet_subsys(&rtnetlink_net_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 panic("rtnetlink_init: cannot initialize rtnetlink\n");
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08002978
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07002980
Greg Rosec7ac8672011-06-10 01:27:09 +00002981 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink,
2982 rtnl_dump_ifinfo, rtnl_calcit);
2983 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL, NULL);
2984 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL, NULL);
2985 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07002986
Greg Rosec7ac8672011-06-10 01:27:09 +00002987 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all, NULL);
2988 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all, NULL);
John Fastabend77162022012-04-15 06:43:56 +00002989
2990 rtnl_register(PF_BRIDGE, RTM_NEWNEIGH, rtnl_fdb_add, NULL, NULL);
2991 rtnl_register(PF_BRIDGE, RTM_DELNEIGH, rtnl_fdb_del, NULL, NULL);
2992 rtnl_register(PF_BRIDGE, RTM_GETNEIGH, NULL, rtnl_fdb_dump, NULL);
John Fastabende5a55a82012-10-24 08:12:57 +00002993
2994 rtnl_register(PF_BRIDGE, RTM_GETLINK, NULL, rtnl_bridge_getlink, NULL);
Vlad Yasevich407af322013-02-13 12:00:12 +00002995 rtnl_register(PF_BRIDGE, RTM_DELLINK, rtnl_bridge_dellink, NULL, NULL);
John Fastabende5a55a82012-10-24 08:12:57 +00002996 rtnl_register(PF_BRIDGE, RTM_SETLINK, rtnl_bridge_setlink, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997}
2998