rtnl/do_setlink(): set modified when IFLA_LINKMODE is updated
[linux-2.6-block.git] / net / core / rtnetlink.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4
LT
19#include <linux/errno.h>
20#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/socket.h>
23#include <linux/kernel.h>
1da177e4
LT
24#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>
6756ae4b 36#include <linux/mutex.h>
1823730f 37#include <linux/if_addr.h>
77162022 38#include <linux/if_bridge.h>
ebc08a6f 39#include <linux/pci.h>
77162022 40#include <linux/etherdevice.h>
1da177e4
LT
41
42#include <asm/uaccess.h>
1da177e4
LT
43
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>
14c0b97d 53#include <net/fib_rules.h>
e2849863 54#include <net/rtnetlink.h>
30ffee84 55#include <net/net_namespace.h>
1da177e4 56
e0d087af 57struct rtnl_link {
e2849863
TG
58 rtnl_doit_func doit;
59 rtnl_dumpit_func dumpit;
c7ac8679 60 rtnl_calcit_func calcit;
e2849863
TG
61};
62
6756ae4b 63static DEFINE_MUTEX(rtnl_mutex);
1da177e4
LT
64
65void rtnl_lock(void)
66{
6756ae4b 67 mutex_lock(&rtnl_mutex);
1da177e4 68}
e0d087af 69EXPORT_SYMBOL(rtnl_lock);
1da177e4 70
6756ae4b 71void __rtnl_unlock(void)
1da177e4 72{
6756ae4b 73 mutex_unlock(&rtnl_mutex);
1da177e4 74}
6756ae4b 75
1da177e4
LT
76void rtnl_unlock(void)
77{
58ec3b4d 78 /* This fellow will unlock it for us. */
1da177e4
LT
79 netdev_run_todo();
80}
e0d087af 81EXPORT_SYMBOL(rtnl_unlock);
1da177e4 82
6756ae4b
SH
83int rtnl_trylock(void)
84{
85 return mutex_trylock(&rtnl_mutex);
86}
e0d087af 87EXPORT_SYMBOL(rtnl_trylock);
6756ae4b 88
c9c1014b
PM
89int rtnl_is_locked(void)
90{
91 return mutex_is_locked(&rtnl_mutex);
92}
e0d087af 93EXPORT_SYMBOL(rtnl_is_locked);
c9c1014b 94
a898def2
PM
95#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
25239cee 103static struct rtnl_link *rtnl_msg_handlers[RTNL_FAMILY_MAX + 1];
e2849863
TG
104
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
25239cee 123 if (protocol <= RTNL_FAMILY_MAX)
0f87b1dd
PM
124 tab = rtnl_msg_handlers[protocol];
125 else
126 tab = NULL;
127
51057f2f 128 if (tab == NULL || tab[msgindex].doit == NULL)
e2849863
TG
129 tab = rtnl_msg_handlers[PF_UNSPEC];
130
c80bbeae 131 return tab[msgindex].doit;
e2849863
TG
132}
133
134static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
135{
136 struct rtnl_link *tab;
137
25239cee 138 if (protocol <= RTNL_FAMILY_MAX)
0f87b1dd
PM
139 tab = rtnl_msg_handlers[protocol];
140 else
141 tab = NULL;
142
51057f2f 143 if (tab == NULL || tab[msgindex].dumpit == NULL)
e2849863
TG
144 tab = rtnl_msg_handlers[PF_UNSPEC];
145
c80bbeae 146 return tab[msgindex].dumpit;
e2849863
TG
147}
148
c7ac8679
GR
149static 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
c80bbeae 161 return tab[msgindex].calcit;
c7ac8679
GR
162}
163
e2849863
TG
164/**
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
c7ac8679 170 * @calcit: Function pointer to calc size of dump message
e2849863
TG
171 *
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,
c7ac8679
GR
183 rtnl_doit_func doit, rtnl_dumpit_func dumpit,
184 rtnl_calcit_func calcit)
e2849863
TG
185{
186 struct rtnl_link *tab;
187 int msgindex;
188
25239cee 189 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
e2849863
TG
190 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
c7ac8679
GR
207 if (calcit)
208 tab[msgindex].calcit = calcit;
209
e2849863
TG
210 return 0;
211}
e2849863
TG
212EXPORT_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
25985edc 221 * of memory implies no sense in continuing.
e2849863
TG
222 */
223void rtnl_register(int protocol, int msgtype,
c7ac8679
GR
224 rtnl_doit_func doit, rtnl_dumpit_func dumpit,
225 rtnl_calcit_func calcit)
e2849863 226{
c7ac8679 227 if (__rtnl_register(protocol, msgtype, doit, dumpit, calcit) < 0)
e2849863
TG
228 panic("Unable to register rtnetlink message handler, "
229 "protocol = %d, message type = %d\n",
230 protocol, msgtype);
231}
e2849863
TG
232EXPORT_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
25239cee 245 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
e2849863
TG
246 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}
e2849863
TG
256EXPORT_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{
25239cee 267 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
e2849863
TG
268
269 kfree(rtnl_msg_handlers[protocol]);
270 rtnl_msg_handlers[protocol] = NULL;
271}
e2849863 272EXPORT_SYMBOL_GPL(rtnl_unregister_all);
1da177e4 273
38f7b870
PM
274static LIST_HEAD(link_ops);
275
c63044f0
ED
276static 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
38f7b870
PM
287/**
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{
c63044f0
ED
299 if (rtnl_link_ops_get(ops->kind))
300 return -EEXIST;
301
b0ab2fab
JP
302 /* 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)
23289a37 308 ops->dellink = unregister_netdevice_queue;
2d85cba2 309
38f7b870
PM
310 list_add_tail(&ops->list, &link_ops);
311 return 0;
312}
38f7b870
PM
313EXPORT_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}
38f7b870
PM
330EXPORT_SYMBOL_GPL(rtnl_link_register);
331
669f87ba
PE
332static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
333{
334 struct net_device *dev;
23289a37
ED
335 LIST_HEAD(list_kill);
336
669f87ba 337 for_each_netdev(net, dev) {
23289a37
ED
338 if (dev->rtnl_link_ops == ops)
339 ops->dellink(dev, &list_kill);
669f87ba 340 }
23289a37 341 unregister_netdevice_many(&list_kill);
669f87ba
PE
342}
343
38f7b870
PM
344/**
345 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
346 * @ops: struct rtnl_link_ops * to unregister
347 *
2d85cba2 348 * The caller must hold the rtnl_mutex.
38f7b870
PM
349 */
350void __rtnl_link_unregister(struct rtnl_link_ops *ops)
351{
881d966b 352 struct net *net;
2d85cba2 353
881d966b 354 for_each_net(net) {
669f87ba 355 __rtnl_kill_links(net, ops);
2d85cba2 356 }
38f7b870
PM
357 list_del(&ops->list);
358}
38f7b870
PM
359EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
360
200b916f
CW
361/* 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
38f7b870
PM
389/**
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{
200b916f
CW
395 /* Close the race with cleanup_net() */
396 mutex_lock(&net_mutex);
397 rtnl_lock_unregistering_all();
38f7b870
PM
398 __rtnl_link_unregister(ops);
399 rtnl_unlock();
200b916f 400 mutex_unlock(&net_mutex);
38f7b870 401}
38f7b870
PM
402EXPORT_SYMBOL_GPL(rtnl_link_unregister);
403
ba7d49b1
JP
404static 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;
6049f253 413 if (!ops || !ops->get_slave_size)
ba7d49b1
JP
414 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
38f7b870
PM
420static 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
369cf77a
TG
428 size = nla_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
429 nla_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
38f7b870
PM
430
431 if (ops->get_size)
432 /* IFLA_INFO_DATA + nested data */
369cf77a 433 size += nla_total_size(sizeof(struct nlattr)) +
38f7b870
PM
434 ops->get_size(dev);
435
436 if (ops->get_xstats_size)
369cf77a
TG
437 /* IFLA_INFO_XSTATS */
438 size += nla_total_size(ops->get_xstats_size(dev));
38f7b870 439
ba7d49b1
JP
440 size += rtnl_link_get_slave_info_data_size(dev);
441
38f7b870
PM
442 return size;
443}
444
f8ff182c
TG
445static 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
f8ff182c
TG
459/**
460 * 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 */
3678a9d8 465void rtnl_af_register(struct rtnl_af_ops *ops)
f8ff182c 466{
f8ff182c 467 rtnl_lock();
3678a9d8 468 list_add_tail(&ops->list, &rtnl_af_ops);
f8ff182c 469 rtnl_unlock();
f8ff182c
TG
470}
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
ba7d49b1 516static bool rtnl_have_link_slave_info(const struct net_device *dev)
38f7b870 517{
ba7d49b1 518 struct net_device *master_dev;
38f7b870 519
ba7d49b1 520 master_dev = netdev_master_upper_dev_get((struct net_device *) dev);
813f020c 521 if (master_dev && master_dev->rtnl_link_ops)
ba7d49b1
JP
522 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;
38f7b870 533
ba7d49b1
JP
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)
560{
561 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
562 struct nlattr *data;
563 int err;
564
565 if (!ops)
566 return 0;
38f7b870 567 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
ba7d49b1 568 return -EMSGSIZE;
38f7b870
PM
569 if (ops->fill_xstats) {
570 err = ops->fill_xstats(skb, dev);
571 if (err < 0)
ba7d49b1 572 return err;
38f7b870
PM
573 }
574 if (ops->fill_info) {
575 data = nla_nest_start(skb, IFLA_INFO_DATA);
ba7d49b1
JP
576 if (data == NULL)
577 return -EMSGSIZE;
38f7b870
PM
578 err = ops->fill_info(skb, dev);
579 if (err < 0)
580 goto err_cancel_data;
581 nla_nest_end(skb, data);
582 }
38f7b870
PM
583 return 0;
584
585err_cancel_data:
586 nla_nest_cancel(skb, data);
ba7d49b1
JP
587 return err;
588}
589
590static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
591{
592 struct nlattr *linkinfo;
593 int err = -EMSGSIZE;
594
595 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
596 if (linkinfo == NULL)
597 goto out;
598
599 err = rtnl_link_info_fill(skb, dev);
600 if (err < 0)
601 goto err_cancel_link;
602
603 err = rtnl_link_slave_info_fill(skb, dev);
604 if (err < 0)
605 goto err_cancel_link;
606
607 nla_nest_end(skb, linkinfo);
608 return 0;
609
38f7b870
PM
610err_cancel_link:
611 nla_nest_cancel(skb, linkinfo);
612out:
613 return err;
614}
615
95c96174 616int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned int group, int echo)
1da177e4 617{
97c53cac 618 struct sock *rtnl = net->rtnl;
1da177e4
LT
619 int err = 0;
620
ac6d439d 621 NETLINK_CB(skb).dst_group = group;
1da177e4
LT
622 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
97c53cac 630int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
2942e900 631{
97c53cac
DL
632 struct sock *rtnl = net->rtnl;
633
2942e900
TG
634 return nlmsg_unicast(rtnl, skb, pid);
635}
e0d087af 636EXPORT_SYMBOL(rtnl_unicast);
2942e900 637
1ce85fe4
PNA
638void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
639 struct nlmsghdr *nlh, gfp_t flags)
97676b6b 640{
97c53cac 641 struct sock *rtnl = net->rtnl;
97676b6b
TG
642 int report = 0;
643
644 if (nlh)
645 report = nlmsg_report(nlh);
646
1ce85fe4 647 nlmsg_notify(rtnl, skb, pid, group, report, flags);
97676b6b 648}
e0d087af 649EXPORT_SYMBOL(rtnl_notify);
97676b6b 650
97c53cac 651void rtnl_set_sk_err(struct net *net, u32 group, int error)
97676b6b 652{
97c53cac
DL
653 struct sock *rtnl = net->rtnl;
654
97676b6b
TG
655 netlink_set_err(rtnl, 0, group, error);
656}
e0d087af 657EXPORT_SYMBOL(rtnl_set_sk_err);
97676b6b 658
1da177e4
LT
659int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
660{
2d7202bf
TG
661 struct nlattr *mx;
662 int i, valid = 0;
663
664 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++;
a6574349
DM
671 if (nla_put_u32(skb, i+1, metrics[i]))
672 goto nla_put_failure;
2d7202bf 673 }
1da177e4 674 }
1da177e4 675
a57d27fc
DM
676 if (!valid) {
677 nla_nest_cancel(skb, mx);
678 return 0;
679 }
2d7202bf
TG
680
681 return nla_nest_end(skb, mx);
682
683nla_put_failure:
bc3ed28c
TG
684 nla_nest_cancel(skb, mx);
685 return -EMSGSIZE;
1da177e4 686}
e0d087af 687EXPORT_SYMBOL(rtnetlink_put_metrics);
1da177e4 688
e3703b3d 689int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
87a50699 690 long expires, u32 error)
e3703b3d
TG
691{
692 struct rta_cacheinfo ci = {
a399a805 693 .rta_lastuse = jiffies_delta_to_clock_t(jiffies - dst->lastuse),
e3703b3d
TG
694 .rta_used = dst->__use,
695 .rta_clntref = atomic_read(&(dst->__refcnt)),
696 .rta_error = error,
697 .rta_id = id,
e3703b3d
TG
698 };
699
8253947e
LW
700 if (expires) {
701 unsigned long clock;
e3703b3d 702
8253947e
LW
703 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 }
e3703b3d
TG
707 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
708}
e3703b3d 709EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
1da177e4 710
93b2d4a2 711static void set_operstate(struct net_device *dev, unsigned char transition)
b00055aa
SR
712{
713 unsigned char operstate = dev->operstate;
714
e0d087af 715 switch (transition) {
b00055aa
SR
716 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;
3ff50b79 728 }
b00055aa
SR
729
730 if (dev->operstate != operstate) {
731 write_lock_bh(&dev_base_lock);
732 dev->operstate = operstate;
733 write_unlock_bh(&dev_base_lock);
93b2d4a2
DM
734 netdev_state_change(dev);
735 }
b00055aa
SR
736}
737
b1beb681
JB
738static 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
3729d502
PM
744static 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) |
b1beb681 752 (rtnl_dev_get_flags(dev) & ~ifm->ifi_change);
3729d502
PM
753
754 return flags;
755}
756
b60c5115 757static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
be1f3c2c 758 const struct rtnl_link_stats64 *b)
1da177e4 759{
b60c5115
TG
760 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;
768
769 a->multicast = b->multicast;
770 a->collisions = b->collisions;
771
772 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;
778
779 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;
784
785 a->rx_compressed = b->rx_compressed;
786 a->tx_compressed = b->tx_compressed;
10708f37
JE
787}
788
be1f3c2c 789static void copy_rtnl_link_stats64(void *v, const struct rtnl_link_stats64 *b)
10708f37 790{
afdcba37 791 memcpy(v, b, sizeof(*b));
10708f37 792}
1da177e4 793
c02db8c6 794/* All VF info */
115c9b81
GR
795static inline int rtnl_vfinfo_size(const struct net_device *dev,
796 u32 ext_filter_mask)
ebc08a6f 797{
115c9b81
GR
798 if (dev->dev.parent && dev_is_pci(dev->dev.parent) &&
799 (ext_filter_mask & RTEXT_FILTER_VF)) {
c02db8c6 800 int num_vfs = dev_num_vf(dev->dev.parent);
045de01a
SF
801 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)) +
ed616689 806 nla_total_size(sizeof(struct ifla_vf_spoofchk)) +
945a3676
JB
807 nla_total_size(sizeof(struct ifla_vf_rate)) +
808 nla_total_size(sizeof(struct ifla_vf_link_state)));
c02db8c6
CW
809 return size;
810 } else
ebc08a6f
WM
811 return 0;
812}
813
c53864fd
DG
814static size_t rtnl_port_size(const struct net_device *dev,
815 u32 ext_filter_mask)
57b61080
SF
816{
817 size_t port_size = nla_total_size(4) /* PORT_VF */
818 + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */
819 + nla_total_size(sizeof(struct ifla_port_vsi))
820 /* PORT_VSI_TYPE */
821 + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */
822 + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */
823 + nla_total_size(1) /* PROT_VDP_REQUEST */
824 + nla_total_size(2); /* PORT_VDP_RESPONSE */
825 size_t vf_ports_size = nla_total_size(sizeof(struct nlattr));
826 size_t vf_port_size = nla_total_size(sizeof(struct nlattr))
827 + port_size;
828 size_t port_self_size = nla_total_size(sizeof(struct nlattr))
829 + port_size;
830
c53864fd
DG
831 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent ||
832 !(ext_filter_mask & RTEXT_FILTER_VF))
57b61080
SF
833 return 0;
834 if (dev_num_vf(dev->dev.parent))
835 return port_self_size + vf_ports_size +
836 vf_port_size * dev_num_vf(dev->dev.parent);
837 else
838 return port_self_size;
839}
840
115c9b81
GR
841static noinline size_t if_nlmsg_size(const struct net_device *dev,
842 u32 ext_filter_mask)
339bf98f
TG
843{
844 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
845 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
0b815a1a 846 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
339bf98f
TG
847 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
848 + nla_total_size(sizeof(struct rtnl_link_ifmap))
849 + nla_total_size(sizeof(struct rtnl_link_stats))
adcfe196 850 + nla_total_size(sizeof(struct rtnl_link_stats64))
339bf98f
TG
851 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
852 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
853 + nla_total_size(4) /* IFLA_TXQLEN */
854 + nla_total_size(4) /* IFLA_WEIGHT */
855 + nla_total_size(4) /* IFLA_MTU */
856 + nla_total_size(4) /* IFLA_LINK */
857 + nla_total_size(4) /* IFLA_MASTER */
9a57247f 858 + nla_total_size(1) /* IFLA_CARRIER */
edbc0bb3 859 + nla_total_size(4) /* IFLA_PROMISCUITY */
76ff5cc9
JP
860 + nla_total_size(4) /* IFLA_NUM_TX_QUEUES */
861 + nla_total_size(4) /* IFLA_NUM_RX_QUEUES */
339bf98f 862 + nla_total_size(1) /* IFLA_OPERSTATE */
38f7b870 863 + nla_total_size(1) /* IFLA_LINKMODE */
2d3b479d 864 + nla_total_size(4) /* IFLA_CARRIER_CHANGES */
115c9b81
GR
865 + nla_total_size(ext_filter_mask
866 & RTEXT_FILTER_VF ? 4 : 0) /* IFLA_NUM_VF */
867 + rtnl_vfinfo_size(dev, ext_filter_mask) /* IFLA_VFINFO_LIST */
c53864fd 868 + rtnl_port_size(dev, ext_filter_mask) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
f8ff182c 869 + rtnl_link_get_size(dev) /* IFLA_LINKINFO */
66cae9ed
JP
870 + rtnl_link_get_af_size(dev) /* IFLA_AF_SPEC */
871 + nla_total_size(MAX_PHYS_PORT_ID_LEN); /* IFLA_PHYS_PORT_ID */
339bf98f
TG
872}
873
57b61080
SF
874static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev)
875{
876 struct nlattr *vf_ports;
877 struct nlattr *vf_port;
878 int vf;
879 int err;
880
881 vf_ports = nla_nest_start(skb, IFLA_VF_PORTS);
882 if (!vf_ports)
883 return -EMSGSIZE;
884
885 for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) {
886 vf_port = nla_nest_start(skb, IFLA_VF_PORT);
8ca94183
SF
887 if (!vf_port)
888 goto nla_put_failure;
a6574349
DM
889 if (nla_put_u32(skb, IFLA_PORT_VF, vf))
890 goto nla_put_failure;
57b61080 891 err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb);
8ca94183
SF
892 if (err == -EMSGSIZE)
893 goto nla_put_failure;
57b61080 894 if (err) {
57b61080
SF
895 nla_nest_cancel(skb, vf_port);
896 continue;
897 }
898 nla_nest_end(skb, vf_port);
899 }
900
901 nla_nest_end(skb, vf_ports);
902
903 return 0;
8ca94183
SF
904
905nla_put_failure:
906 nla_nest_cancel(skb, vf_ports);
907 return -EMSGSIZE;
57b61080
SF
908}
909
910static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev)
911{
912 struct nlattr *port_self;
913 int err;
914
915 port_self = nla_nest_start(skb, IFLA_PORT_SELF);
916 if (!port_self)
917 return -EMSGSIZE;
918
919 err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb);
920 if (err) {
921 nla_nest_cancel(skb, port_self);
8ca94183 922 return (err == -EMSGSIZE) ? err : 0;
57b61080
SF
923 }
924
925 nla_nest_end(skb, port_self);
926
927 return 0;
928}
929
c53864fd
DG
930static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev,
931 u32 ext_filter_mask)
57b61080
SF
932{
933 int err;
934
c53864fd
DG
935 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent ||
936 !(ext_filter_mask & RTEXT_FILTER_VF))
57b61080
SF
937 return 0;
938
939 err = rtnl_port_self_fill(skb, dev);
940 if (err)
941 return err;
942
943 if (dev_num_vf(dev->dev.parent)) {
944 err = rtnl_vf_ports_fill(skb, dev);
945 if (err)
946 return err;
947 }
948
949 return 0;
950}
951
66cae9ed
JP
952static int rtnl_phys_port_id_fill(struct sk_buff *skb, struct net_device *dev)
953{
954 int err;
955 struct netdev_phys_port_id ppid;
956
957 err = dev_get_phys_port_id(dev, &ppid);
958 if (err) {
959 if (err == -EOPNOTSUPP)
960 return 0;
961 return err;
962 }
963
964 if (nla_put(skb, IFLA_PHYS_PORT_ID, ppid.id_len, ppid.id))
965 return -EMSGSIZE;
966
967 return 0;
968}
969
b60c5115 970static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
575c3e2a 971 int type, u32 pid, u32 seq, u32 change,
115c9b81 972 unsigned int flags, u32 ext_filter_mask)
b60c5115
TG
973{
974 struct ifinfomsg *ifm;
975 struct nlmsghdr *nlh;
28172739 976 struct rtnl_link_stats64 temp;
be1f3c2c 977 const struct rtnl_link_stats64 *stats;
f8ff182c
TG
978 struct nlattr *attr, *af_spec;
979 struct rtnl_af_ops *af_ops;
898e5061 980 struct net_device *upper_dev = netdev_master_upper_dev_get(dev);
1da177e4 981
2907c35f 982 ASSERT_RTNL();
b60c5115
TG
983 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
984 if (nlh == NULL)
26932566 985 return -EMSGSIZE;
1da177e4 986
b60c5115
TG
987 ifm = nlmsg_data(nlh);
988 ifm->ifi_family = AF_UNSPEC;
989 ifm->__ifi_pad = 0;
990 ifm->ifi_type = dev->type;
991 ifm->ifi_index = dev->ifindex;
992 ifm->ifi_flags = dev_get_flags(dev);
993 ifm->ifi_change = change;
994
a6574349
DM
995 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
996 nla_put_u32(skb, IFLA_TXQLEN, dev->tx_queue_len) ||
997 nla_put_u8(skb, IFLA_OPERSTATE,
998 netif_running(dev) ? dev->operstate : IF_OPER_DOWN) ||
999 nla_put_u8(skb, IFLA_LINKMODE, dev->link_mode) ||
1000 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
1001 nla_put_u32(skb, IFLA_GROUP, dev->group) ||
edbc0bb3 1002 nla_put_u32(skb, IFLA_PROMISCUITY, dev->promiscuity) ||
76ff5cc9 1003 nla_put_u32(skb, IFLA_NUM_TX_QUEUES, dev->num_tx_queues) ||
1d69c2b3 1004#ifdef CONFIG_RPS
76ff5cc9 1005 nla_put_u32(skb, IFLA_NUM_RX_QUEUES, dev->num_rx_queues) ||
1d69c2b3 1006#endif
a6574349
DM
1007 (dev->ifindex != dev->iflink &&
1008 nla_put_u32(skb, IFLA_LINK, dev->iflink)) ||
898e5061
JP
1009 (upper_dev &&
1010 nla_put_u32(skb, IFLA_MASTER, upper_dev->ifindex)) ||
9a57247f 1011 nla_put_u8(skb, IFLA_CARRIER, netif_carrier_ok(dev)) ||
a6574349
DM
1012 (dev->qdisc &&
1013 nla_put_string(skb, IFLA_QDISC, dev->qdisc->ops->id)) ||
1014 (dev->ifalias &&
2d3b479d 1015 nla_put_string(skb, IFLA_IFALIAS, dev->ifalias)) ||
1016 nla_put_u32(skb, IFLA_CARRIER_CHANGES,
1017 atomic_read(&dev->carrier_changes)))
a6574349 1018 goto nla_put_failure;
0b815a1a 1019
1da177e4
LT
1020 if (1) {
1021 struct rtnl_link_ifmap map = {
1022 .mem_start = dev->mem_start,
1023 .mem_end = dev->mem_end,
1024 .base_addr = dev->base_addr,
1025 .irq = dev->irq,
1026 .dma = dev->dma,
1027 .port = dev->if_port,
1028 };
a6574349
DM
1029 if (nla_put(skb, IFLA_MAP, sizeof(map), &map))
1030 goto nla_put_failure;
1da177e4
LT
1031 }
1032
1033 if (dev->addr_len) {
a6574349
DM
1034 if (nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr) ||
1035 nla_put(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast))
1036 goto nla_put_failure;
1da177e4
LT
1037 }
1038
66cae9ed
JP
1039 if (rtnl_phys_port_id_fill(skb, dev))
1040 goto nla_put_failure;
1041
96e74088
PE
1042 attr = nla_reserve(skb, IFLA_STATS,
1043 sizeof(struct rtnl_link_stats));
1044 if (attr == NULL)
1045 goto nla_put_failure;
b60c5115 1046
28172739 1047 stats = dev_get_stats(dev, &temp);
96e74088 1048 copy_rtnl_link_stats(nla_data(attr), stats);
1da177e4 1049
10708f37
JE
1050 attr = nla_reserve(skb, IFLA_STATS64,
1051 sizeof(struct rtnl_link_stats64));
1052 if (attr == NULL)
1053 goto nla_put_failure;
10708f37
JE
1054 copy_rtnl_link_stats64(nla_data(attr), stats);
1055
a6574349
DM
1056 if (dev->dev.parent && (ext_filter_mask & RTEXT_FILTER_VF) &&
1057 nla_put_u32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent)))
1058 goto nla_put_failure;
57b61080 1059
115c9b81
GR
1060 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent
1061 && (ext_filter_mask & RTEXT_FILTER_VF)) {
ebc08a6f 1062 int i;
ebc08a6f 1063
c02db8c6
CW
1064 struct nlattr *vfinfo, *vf;
1065 int num_vfs = dev_num_vf(dev->dev.parent);
1066
c02db8c6
CW
1067 vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST);
1068 if (!vfinfo)
1069 goto nla_put_failure;
1070 for (i = 0; i < num_vfs; i++) {
1071 struct ifla_vf_info ivi;
1072 struct ifla_vf_mac vf_mac;
1073 struct ifla_vf_vlan vf_vlan;
ed616689 1074 struct ifla_vf_rate vf_rate;
c02db8c6 1075 struct ifla_vf_tx_rate vf_tx_rate;
5f8444a3 1076 struct ifla_vf_spoofchk vf_spoofchk;
1d8faf48 1077 struct ifla_vf_link_state vf_linkstate;
5f8444a3
GR
1078
1079 /*
1080 * Not all SR-IOV capable drivers support the
1081 * spoofcheck query. Preset to -1 so the user
1082 * space tool can detect that the driver didn't
1083 * report anything.
1084 */
1085 ivi.spoofchk = -1;
84d73cd3 1086 memset(ivi.mac, 0, sizeof(ivi.mac));
1d8faf48
RE
1087 /* The default value for VF link state is "auto"
1088 * IFLA_VF_LINK_STATE_AUTO which equals zero
1089 */
1090 ivi.linkstate = 0;
ebc08a6f
WM
1091 if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi))
1092 break;
5f8444a3
GR
1093 vf_mac.vf =
1094 vf_vlan.vf =
ed616689 1095 vf_rate.vf =
5f8444a3 1096 vf_tx_rate.vf =
1d8faf48
RE
1097 vf_spoofchk.vf =
1098 vf_linkstate.vf = ivi.vf;
5f8444a3 1099
c02db8c6
CW
1100 memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac));
1101 vf_vlan.vlan = ivi.vlan;
1102 vf_vlan.qos = ivi.qos;
ed616689
SC
1103 vf_tx_rate.rate = ivi.max_tx_rate;
1104 vf_rate.min_tx_rate = ivi.min_tx_rate;
1105 vf_rate.max_tx_rate = ivi.max_tx_rate;
5f8444a3 1106 vf_spoofchk.setting = ivi.spoofchk;
1d8faf48 1107 vf_linkstate.link_state = ivi.linkstate;
c02db8c6
CW
1108 vf = nla_nest_start(skb, IFLA_VF_INFO);
1109 if (!vf) {
1110 nla_nest_cancel(skb, vfinfo);
1111 goto nla_put_failure;
1112 }
a6574349
DM
1113 if (nla_put(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac) ||
1114 nla_put(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan) ||
ed616689
SC
1115 nla_put(skb, IFLA_VF_RATE, sizeof(vf_rate),
1116 &vf_rate) ||
a6574349
DM
1117 nla_put(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate),
1118 &vf_tx_rate) ||
1119 nla_put(skb, IFLA_VF_SPOOFCHK, sizeof(vf_spoofchk),
1d8faf48
RE
1120 &vf_spoofchk) ||
1121 nla_put(skb, IFLA_VF_LINK_STATE, sizeof(vf_linkstate),
1122 &vf_linkstate))
a6574349 1123 goto nla_put_failure;
c02db8c6 1124 nla_nest_end(skb, vf);
ebc08a6f 1125 }
c02db8c6 1126 nla_nest_end(skb, vfinfo);
ebc08a6f 1127 }
57b61080 1128
c53864fd 1129 if (rtnl_port_fill(skb, dev, ext_filter_mask))
57b61080
SF
1130 goto nla_put_failure;
1131
ba7d49b1 1132 if (dev->rtnl_link_ops || rtnl_have_link_slave_info(dev)) {
38f7b870
PM
1133 if (rtnl_link_fill(skb, dev) < 0)
1134 goto nla_put_failure;
1135 }
1136
f8ff182c
TG
1137 if (!(af_spec = nla_nest_start(skb, IFLA_AF_SPEC)))
1138 goto nla_put_failure;
1139
1140 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
1141 if (af_ops->fill_link_af) {
1142 struct nlattr *af;
1143 int err;
1144
1145 if (!(af = nla_nest_start(skb, af_ops->family)))
1146 goto nla_put_failure;
1147
1148 err = af_ops->fill_link_af(skb, dev);
1149
1150 /*
1151 * Caller may return ENODATA to indicate that there
1152 * was no data to be dumped. This is not an error, it
1153 * means we should trim the attribute header and
1154 * continue.
1155 */
1156 if (err == -ENODATA)
1157 nla_nest_cancel(skb, af);
1158 else if (err < 0)
1159 goto nla_put_failure;
1160
1161 nla_nest_end(skb, af);
1162 }
1163 }
1164
1165 nla_nest_end(skb, af_spec);
1166
b60c5115
TG
1167 return nlmsg_end(skb, nlh);
1168
1169nla_put_failure:
26932566
PM
1170 nlmsg_cancel(skb, nlh);
1171 return -EMSGSIZE;
1da177e4
LT
1172}
1173
f7b12606 1174static const struct nla_policy ifla_policy[IFLA_MAX+1] = {
5176f91e 1175 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
38f7b870
PM
1176 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1177 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
5176f91e 1178 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
da5e0494 1179 [IFLA_MTU] = { .type = NLA_U32 },
76e87306 1180 [IFLA_LINK] = { .type = NLA_U32 },
fbaec0ea 1181 [IFLA_MASTER] = { .type = NLA_U32 },
9a57247f 1182 [IFLA_CARRIER] = { .type = NLA_U8 },
da5e0494
TG
1183 [IFLA_TXQLEN] = { .type = NLA_U32 },
1184 [IFLA_WEIGHT] = { .type = NLA_U32 },
1185 [IFLA_OPERSTATE] = { .type = NLA_U8 },
1186 [IFLA_LINKMODE] = { .type = NLA_U8 },
76e87306 1187 [IFLA_LINKINFO] = { .type = NLA_NESTED },
d8a5ec67 1188 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
f0630529 1189 [IFLA_NET_NS_FD] = { .type = NLA_U32 },
0b815a1a 1190 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
c02db8c6 1191 [IFLA_VFINFO_LIST] = {. type = NLA_NESTED },
57b61080
SF
1192 [IFLA_VF_PORTS] = { .type = NLA_NESTED },
1193 [IFLA_PORT_SELF] = { .type = NLA_NESTED },
f8ff182c 1194 [IFLA_AF_SPEC] = { .type = NLA_NESTED },
115c9b81 1195 [IFLA_EXT_MASK] = { .type = NLA_U32 },
edbc0bb3 1196 [IFLA_PROMISCUITY] = { .type = NLA_U32 },
76ff5cc9
JP
1197 [IFLA_NUM_TX_QUEUES] = { .type = NLA_U32 },
1198 [IFLA_NUM_RX_QUEUES] = { .type = NLA_U32 },
66cae9ed 1199 [IFLA_PHYS_PORT_ID] = { .type = NLA_BINARY, .len = MAX_PHYS_PORT_ID_LEN },
2d3b479d 1200 [IFLA_CARRIER_CHANGES] = { .type = NLA_U32 }, /* ignored */
da5e0494
TG
1201};
1202
38f7b870
PM
1203static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
1204 [IFLA_INFO_KIND] = { .type = NLA_STRING },
1205 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
ba7d49b1
JP
1206 [IFLA_INFO_SLAVE_KIND] = { .type = NLA_STRING },
1207 [IFLA_INFO_SLAVE_DATA] = { .type = NLA_NESTED },
38f7b870
PM
1208};
1209
c02db8c6
CW
1210static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = {
1211 [IFLA_VF_INFO] = { .type = NLA_NESTED },
1212};
1213
1214static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
1215 [IFLA_VF_MAC] = { .type = NLA_BINARY,
1216 .len = sizeof(struct ifla_vf_mac) },
1217 [IFLA_VF_VLAN] = { .type = NLA_BINARY,
1218 .len = sizeof(struct ifla_vf_vlan) },
1219 [IFLA_VF_TX_RATE] = { .type = NLA_BINARY,
1220 .len = sizeof(struct ifla_vf_tx_rate) },
48752f65
GR
1221 [IFLA_VF_SPOOFCHK] = { .type = NLA_BINARY,
1222 .len = sizeof(struct ifla_vf_spoofchk) },
ed616689
SC
1223 [IFLA_VF_RATE] = { .type = NLA_BINARY,
1224 .len = sizeof(struct ifla_vf_rate) },
c5b46160
DL
1225 [IFLA_VF_LINK_STATE] = { .type = NLA_BINARY,
1226 .len = sizeof(struct ifla_vf_link_state) },
c02db8c6
CW
1227};
1228
57b61080
SF
1229static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = {
1230 [IFLA_PORT_VF] = { .type = NLA_U32 },
1231 [IFLA_PORT_PROFILE] = { .type = NLA_STRING,
1232 .len = PORT_PROFILE_MAX },
1233 [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY,
1234 .len = sizeof(struct ifla_port_vsi)},
1235 [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY,
1236 .len = PORT_UUID_MAX },
1237 [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING,
1238 .len = PORT_UUID_MAX },
1239 [IFLA_PORT_REQUEST] = { .type = NLA_U8, },
1240 [IFLA_PORT_RESPONSE] = { .type = NLA_U16, },
1241};
1242
f7b12606
JP
1243static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
1244{
1245 struct net *net = sock_net(skb->sk);
1246 int h, s_h;
1247 int idx = 0, s_idx;
1248 struct net_device *dev;
1249 struct hlist_head *head;
1250 struct nlattr *tb[IFLA_MAX+1];
1251 u32 ext_filter_mask = 0;
973462bb 1252 int err;
e5eca6d4 1253 int hdrlen;
f7b12606
JP
1254
1255 s_h = cb->args[0];
1256 s_idx = cb->args[1];
1257
1258 rcu_read_lock();
1259 cb->seq = net->dev_base_seq;
1260
e5eca6d4
MS
1261 /* A hack to preserve kernel<->userspace interface.
1262 * The correct header is ifinfomsg. It is consistent with rtnl_getlink.
1263 * However, before Linux v3.9 the code here assumed rtgenmsg and that's
1264 * what iproute2 < v3.9.0 used.
1265 * We can detect the old iproute2. Even including the IFLA_EXT_MASK
1266 * attribute, its netlink message is shorter than struct ifinfomsg.
1267 */
1268 hdrlen = nlmsg_len(cb->nlh) < sizeof(struct ifinfomsg) ?
1269 sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg);
1270
1271 if (nlmsg_parse(cb->nlh, hdrlen, tb, IFLA_MAX, ifla_policy) >= 0) {
f7b12606
JP
1272
1273 if (tb[IFLA_EXT_MASK])
1274 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
1275 }
1276
1277 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
1278 idx = 0;
1279 head = &net->dev_index_head[h];
1280 hlist_for_each_entry_rcu(dev, head, index_hlist) {
1281 if (idx < s_idx)
1282 goto cont;
973462bb
DG
1283 err = rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
1284 NETLINK_CB(cb->skb).portid,
1285 cb->nlh->nlmsg_seq, 0,
1286 NLM_F_MULTI,
1287 ext_filter_mask);
1288 /* If we ran out of room on the first message,
1289 * we're in trouble
1290 */
1291 WARN_ON((err == -EMSGSIZE) && (skb->len == 0));
1292
1293 if (err <= 0)
f7b12606
JP
1294 goto out;
1295
1296 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
1297cont:
1298 idx++;
1299 }
1300 }
1301out:
1302 rcu_read_unlock();
1303 cb->args[1] = idx;
1304 cb->args[0] = h;
1305
1306 return skb->len;
1307}
1308
1309int rtnl_nla_parse_ifla(struct nlattr **tb, const struct nlattr *head, int len)
1310{
1311 return nla_parse(tb, IFLA_MAX, head, len, ifla_policy);
1312}
1313EXPORT_SYMBOL(rtnl_nla_parse_ifla);
1314
81adee47
EB
1315struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
1316{
1317 struct net *net;
1318 /* Examine the link attributes and figure out which
1319 * network namespace we are talking about.
1320 */
1321 if (tb[IFLA_NET_NS_PID])
1322 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
f0630529
EB
1323 else if (tb[IFLA_NET_NS_FD])
1324 net = get_net_ns_by_fd(nla_get_u32(tb[IFLA_NET_NS_FD]));
81adee47
EB
1325 else
1326 net = get_net(src_net);
1327 return net;
1328}
1329EXPORT_SYMBOL(rtnl_link_get_net);
1330
1840bb13
TG
1331static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
1332{
1333 if (dev) {
1334 if (tb[IFLA_ADDRESS] &&
1335 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
1336 return -EINVAL;
1337
1338 if (tb[IFLA_BROADCAST] &&
1339 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
1340 return -EINVAL;
1341 }
1342
cf7afbfe
TG
1343 if (tb[IFLA_AF_SPEC]) {
1344 struct nlattr *af;
1345 int rem, err;
1346
1347 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1348 const struct rtnl_af_ops *af_ops;
1349
1350 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
1351 return -EAFNOSUPPORT;
1352
1353 if (!af_ops->set_link_af)
1354 return -EOPNOTSUPP;
1355
1356 if (af_ops->validate_link_af) {
6d3a9a68 1357 err = af_ops->validate_link_af(dev, af);
cf7afbfe
TG
1358 if (err < 0)
1359 return err;
1360 }
1361 }
1362 }
1363
1840bb13
TG
1364 return 0;
1365}
1366
c02db8c6
CW
1367static int do_setvfinfo(struct net_device *dev, struct nlattr *attr)
1368{
1369 int rem, err = -EINVAL;
1370 struct nlattr *vf;
1371 const struct net_device_ops *ops = dev->netdev_ops;
1372
1373 nla_for_each_nested(vf, attr, rem) {
1374 switch (nla_type(vf)) {
1375 case IFLA_VF_MAC: {
1376 struct ifla_vf_mac *ivm;
1377 ivm = nla_data(vf);
1378 err = -EOPNOTSUPP;
1379 if (ops->ndo_set_vf_mac)
1380 err = ops->ndo_set_vf_mac(dev, ivm->vf,
1381 ivm->mac);
1382 break;
1383 }
1384 case IFLA_VF_VLAN: {
1385 struct ifla_vf_vlan *ivv;
1386 ivv = nla_data(vf);
1387 err = -EOPNOTSUPP;
1388 if (ops->ndo_set_vf_vlan)
1389 err = ops->ndo_set_vf_vlan(dev, ivv->vf,
1390 ivv->vlan,
1391 ivv->qos);
1392 break;
1393 }
1394 case IFLA_VF_TX_RATE: {
1395 struct ifla_vf_tx_rate *ivt;
ed616689 1396 struct ifla_vf_info ivf;
c02db8c6
CW
1397 ivt = nla_data(vf);
1398 err = -EOPNOTSUPP;
ed616689
SC
1399 if (ops->ndo_get_vf_config)
1400 err = ops->ndo_get_vf_config(dev, ivt->vf,
1401 &ivf);
1402 if (err)
1403 break;
1404 err = -EOPNOTSUPP;
1405 if (ops->ndo_set_vf_rate)
1406 err = ops->ndo_set_vf_rate(dev, ivt->vf,
1407 ivf.min_tx_rate,
1408 ivt->rate);
1409 break;
1410 }
1411 case IFLA_VF_RATE: {
1412 struct ifla_vf_rate *ivt;
1413 ivt = nla_data(vf);
1414 err = -EOPNOTSUPP;
1415 if (ops->ndo_set_vf_rate)
1416 err = ops->ndo_set_vf_rate(dev, ivt->vf,
1417 ivt->min_tx_rate,
1418 ivt->max_tx_rate);
c02db8c6
CW
1419 break;
1420 }
5f8444a3
GR
1421 case IFLA_VF_SPOOFCHK: {
1422 struct ifla_vf_spoofchk *ivs;
1423 ivs = nla_data(vf);
1424 err = -EOPNOTSUPP;
1425 if (ops->ndo_set_vf_spoofchk)
1426 err = ops->ndo_set_vf_spoofchk(dev, ivs->vf,
1427 ivs->setting);
1428 break;
1429 }
1d8faf48
RE
1430 case IFLA_VF_LINK_STATE: {
1431 struct ifla_vf_link_state *ivl;
1432 ivl = nla_data(vf);
1433 err = -EOPNOTSUPP;
1434 if (ops->ndo_set_vf_link_state)
1435 err = ops->ndo_set_vf_link_state(dev, ivl->vf,
1436 ivl->link_state);
1437 break;
1438 }
c02db8c6
CW
1439 default:
1440 err = -EINVAL;
1441 break;
1442 }
1443 if (err)
1444 break;
1445 }
1446 return err;
1447}
1448
fbaec0ea
JP
1449static int do_set_master(struct net_device *dev, int ifindex)
1450{
898e5061 1451 struct net_device *upper_dev = netdev_master_upper_dev_get(dev);
fbaec0ea
JP
1452 const struct net_device_ops *ops;
1453 int err;
1454
898e5061
JP
1455 if (upper_dev) {
1456 if (upper_dev->ifindex == ifindex)
fbaec0ea 1457 return 0;
898e5061 1458 ops = upper_dev->netdev_ops;
fbaec0ea 1459 if (ops->ndo_del_slave) {
898e5061 1460 err = ops->ndo_del_slave(upper_dev, dev);
fbaec0ea
JP
1461 if (err)
1462 return err;
1463 } else {
1464 return -EOPNOTSUPP;
1465 }
1466 }
1467
1468 if (ifindex) {
898e5061
JP
1469 upper_dev = __dev_get_by_index(dev_net(dev), ifindex);
1470 if (!upper_dev)
fbaec0ea 1471 return -EINVAL;
898e5061 1472 ops = upper_dev->netdev_ops;
fbaec0ea 1473 if (ops->ndo_add_slave) {
898e5061 1474 err = ops->ndo_add_slave(upper_dev, dev);
fbaec0ea
JP
1475 if (err)
1476 return err;
1477 } else {
1478 return -EOPNOTSUPP;
1479 }
1480 }
1481 return 0;
1482}
1483
90f62cf3
EB
1484static int do_setlink(const struct sk_buff *skb,
1485 struct net_device *dev, struct ifinfomsg *ifm,
38f7b870 1486 struct nlattr **tb, char *ifname, int modified)
1da177e4 1487{
d314774c 1488 const struct net_device_ops *ops = dev->netdev_ops;
0157f60c 1489 int err;
1da177e4 1490
f0630529 1491 if (tb[IFLA_NET_NS_PID] || tb[IFLA_NET_NS_FD]) {
81adee47 1492 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
d8a5ec67
EB
1493 if (IS_ERR(net)) {
1494 err = PTR_ERR(net);
1495 goto errout;
1496 }
90f62cf3 1497 if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN)) {
b51642f6
EB
1498 err = -EPERM;
1499 goto errout;
1500 }
d8a5ec67
EB
1501 err = dev_change_net_namespace(dev, net, ifname);
1502 put_net(net);
1503 if (err)
1504 goto errout;
1505 modified = 1;
1506 }
1507
da5e0494 1508 if (tb[IFLA_MAP]) {
1da177e4
LT
1509 struct rtnl_link_ifmap *u_map;
1510 struct ifmap k_map;
1511
d314774c 1512 if (!ops->ndo_set_config) {
1da177e4 1513 err = -EOPNOTSUPP;
0157f60c 1514 goto errout;
1da177e4
LT
1515 }
1516
1517 if (!netif_device_present(dev)) {
1518 err = -ENODEV;
0157f60c 1519 goto errout;
1da177e4 1520 }
1da177e4 1521
da5e0494 1522 u_map = nla_data(tb[IFLA_MAP]);
1da177e4
LT
1523 k_map.mem_start = (unsigned long) u_map->mem_start;
1524 k_map.mem_end = (unsigned long) u_map->mem_end;
1525 k_map.base_addr = (unsigned short) u_map->base_addr;
1526 k_map.irq = (unsigned char) u_map->irq;
1527 k_map.dma = (unsigned char) u_map->dma;
1528 k_map.port = (unsigned char) u_map->port;
1529
d314774c 1530 err = ops->ndo_set_config(dev, &k_map);
da5e0494 1531 if (err < 0)
0157f60c 1532 goto errout;
1da177e4 1533
da5e0494 1534 modified = 1;
1da177e4
LT
1535 }
1536
da5e0494 1537 if (tb[IFLA_ADDRESS]) {
70f8e78e
DM
1538 struct sockaddr *sa;
1539 int len;
1540
70f8e78e
DM
1541 len = sizeof(sa_family_t) + dev->addr_len;
1542 sa = kmalloc(len, GFP_KERNEL);
1543 if (!sa) {
1544 err = -ENOMEM;
0157f60c 1545 goto errout;
70f8e78e
DM
1546 }
1547 sa->sa_family = dev->type;
da5e0494 1548 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
70f8e78e 1549 dev->addr_len);
e7c3273e 1550 err = dev_set_mac_address(dev, sa);
70f8e78e 1551 kfree(sa);
1da177e4 1552 if (err)
0157f60c 1553 goto errout;
da5e0494 1554 modified = 1;
1da177e4
LT
1555 }
1556
da5e0494
TG
1557 if (tb[IFLA_MTU]) {
1558 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1559 if (err < 0)
0157f60c 1560 goto errout;
da5e0494 1561 modified = 1;
1da177e4
LT
1562 }
1563
cbda10fa
VD
1564 if (tb[IFLA_GROUP]) {
1565 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
1566 modified = 1;
1567 }
1568
da5e0494
TG
1569 /*
1570 * Interface selected by interface index but interface
1571 * name provided implies that a name change has been
1572 * requested.
1573 */
51055be8 1574 if (ifm->ifi_index > 0 && ifname[0]) {
da5e0494
TG
1575 err = dev_change_name(dev, ifname);
1576 if (err < 0)
0157f60c 1577 goto errout;
da5e0494 1578 modified = 1;
1da177e4
LT
1579 }
1580
0b815a1a
SH
1581 if (tb[IFLA_IFALIAS]) {
1582 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
1583 nla_len(tb[IFLA_IFALIAS]));
1584 if (err < 0)
1585 goto errout;
1586 modified = 1;
1587 }
1588
da5e0494
TG
1589 if (tb[IFLA_BROADCAST]) {
1590 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
e7c3273e 1591 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
1da177e4
LT
1592 }
1593
83b496e9 1594 if (ifm->ifi_flags || ifm->ifi_change) {
3729d502 1595 err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
5f9021cf
JB
1596 if (err < 0)
1597 goto errout;
83b496e9 1598 }
1da177e4 1599
fbaec0ea
JP
1600 if (tb[IFLA_MASTER]) {
1601 err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER]));
1602 if (err)
1603 goto errout;
1604 modified = 1;
1605 }
1606
9a57247f
JP
1607 if (tb[IFLA_CARRIER]) {
1608 err = dev_change_carrier(dev, nla_get_u8(tb[IFLA_CARRIER]));
1609 if (err)
1610 goto errout;
1611 modified = 1;
1612 }
1613
5d1180fc
ND
1614 if (tb[IFLA_TXQLEN]) {
1615 unsigned long value = nla_get_u32(tb[IFLA_TXQLEN]);
1616
1617 if (dev->tx_queue_len ^ value)
1618 modified = 1;
1619
1620 dev->tx_queue_len = value;
1621 }
b00055aa 1622
da5e0494 1623 if (tb[IFLA_OPERSTATE])
93b2d4a2 1624 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
b00055aa 1625
da5e0494 1626 if (tb[IFLA_LINKMODE]) {
1889b0e7
ND
1627 unsigned char value = nla_get_u8(tb[IFLA_LINKMODE]);
1628
93b2d4a2 1629 write_lock_bh(&dev_base_lock);
1889b0e7
ND
1630 if (dev->link_mode ^ value)
1631 modified = 1;
1632 dev->link_mode = value;
93b2d4a2 1633 write_unlock_bh(&dev_base_lock);
b00055aa
SR
1634 }
1635
c02db8c6
CW
1636 if (tb[IFLA_VFINFO_LIST]) {
1637 struct nlattr *attr;
1638 int rem;
1639 nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) {
253683bb
DH
1640 if (nla_type(attr) != IFLA_VF_INFO) {
1641 err = -EINVAL;
c02db8c6 1642 goto errout;
253683bb 1643 }
c02db8c6
CW
1644 err = do_setvfinfo(dev, attr);
1645 if (err < 0)
1646 goto errout;
1647 modified = 1;
1648 }
ebc08a6f 1649 }
1da177e4
LT
1650 err = 0;
1651
57b61080
SF
1652 if (tb[IFLA_VF_PORTS]) {
1653 struct nlattr *port[IFLA_PORT_MAX+1];
1654 struct nlattr *attr;
1655 int vf;
1656 int rem;
1657
1658 err = -EOPNOTSUPP;
1659 if (!ops->ndo_set_vf_port)
1660 goto errout;
1661
1662 nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) {
1663 if (nla_type(attr) != IFLA_VF_PORT)
1664 continue;
1665 err = nla_parse_nested(port, IFLA_PORT_MAX,
1666 attr, ifla_port_policy);
1667 if (err < 0)
1668 goto errout;
1669 if (!port[IFLA_PORT_VF]) {
1670 err = -EOPNOTSUPP;
1671 goto errout;
1672 }
1673 vf = nla_get_u32(port[IFLA_PORT_VF]);
1674 err = ops->ndo_set_vf_port(dev, vf, port);
1675 if (err < 0)
1676 goto errout;
1677 modified = 1;
1678 }
1679 }
1680 err = 0;
1681
1682 if (tb[IFLA_PORT_SELF]) {
1683 struct nlattr *port[IFLA_PORT_MAX+1];
1684
1685 err = nla_parse_nested(port, IFLA_PORT_MAX,
1686 tb[IFLA_PORT_SELF], ifla_port_policy);
1687 if (err < 0)
1688 goto errout;
1689
1690 err = -EOPNOTSUPP;
1691 if (ops->ndo_set_vf_port)
1692 err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port);
1693 if (err < 0)
1694 goto errout;
1695 modified = 1;
1696 }
f8ff182c
TG
1697
1698 if (tb[IFLA_AF_SPEC]) {
1699 struct nlattr *af;
1700 int rem;
1701
1702 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1703 const struct rtnl_af_ops *af_ops;
1704
1705 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
cf7afbfe 1706 BUG();
f8ff182c 1707
cf7afbfe 1708 err = af_ops->set_link_af(dev, af);
f8ff182c
TG
1709 if (err < 0)
1710 goto errout;
1711
1712 modified = 1;
1713 }
1714 }
57b61080
SF
1715 err = 0;
1716
0157f60c 1717errout:
e87cc472
JP
1718 if (err < 0 && modified)
1719 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",
1720 dev->name);
da5e0494 1721
0157f60c
PM
1722 return err;
1723}
1da177e4 1724
661d2967 1725static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh)
0157f60c 1726{
3b1e0a65 1727 struct net *net = sock_net(skb->sk);
0157f60c
PM
1728 struct ifinfomsg *ifm;
1729 struct net_device *dev;
1730 int err;
1731 struct nlattr *tb[IFLA_MAX+1];
1732 char ifname[IFNAMSIZ];
1733
1734 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1735 if (err < 0)
1736 goto errout;
1737
1738 if (tb[IFLA_IFNAME])
1739 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1740 else
1741 ifname[0] = '\0';
1742
1743 err = -EINVAL;
1744 ifm = nlmsg_data(nlh);
1745 if (ifm->ifi_index > 0)
a3d12891 1746 dev = __dev_get_by_index(net, ifm->ifi_index);
0157f60c 1747 else if (tb[IFLA_IFNAME])
a3d12891 1748 dev = __dev_get_by_name(net, ifname);
0157f60c
PM
1749 else
1750 goto errout;
1751
1752 if (dev == NULL) {
1753 err = -ENODEV;
1754 goto errout;
1755 }
1756
e0d087af
ED
1757 err = validate_linkmsg(dev, tb);
1758 if (err < 0)
a3d12891 1759 goto errout;
0157f60c 1760
90f62cf3 1761 err = do_setlink(skb, dev, ifm, tb, ifname, 0);
da5e0494 1762errout:
1da177e4
LT
1763 return err;
1764}
1765
661d2967 1766static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh)
38f7b870 1767{
3b1e0a65 1768 struct net *net = sock_net(skb->sk);
38f7b870
PM
1769 const struct rtnl_link_ops *ops;
1770 struct net_device *dev;
1771 struct ifinfomsg *ifm;
1772 char ifname[IFNAMSIZ];
1773 struct nlattr *tb[IFLA_MAX+1];
1774 int err;
226bd341 1775 LIST_HEAD(list_kill);
38f7b870
PM
1776
1777 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1778 if (err < 0)
1779 return err;
1780
1781 if (tb[IFLA_IFNAME])
1782 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1783
1784 ifm = nlmsg_data(nlh);
1785 if (ifm->ifi_index > 0)
881d966b 1786 dev = __dev_get_by_index(net, ifm->ifi_index);
38f7b870 1787 else if (tb[IFLA_IFNAME])
881d966b 1788 dev = __dev_get_by_name(net, ifname);
38f7b870
PM
1789 else
1790 return -EINVAL;
1791
1792 if (!dev)
1793 return -ENODEV;
1794
1795 ops = dev->rtnl_link_ops;
b0ab2fab 1796 if (!ops || !ops->dellink)
38f7b870
PM
1797 return -EOPNOTSUPP;
1798
226bd341
ED
1799 ops->dellink(dev, &list_kill);
1800 unregister_netdevice_many(&list_kill);
38f7b870
PM
1801 return 0;
1802}
1803
3729d502
PM
1804int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
1805{
1806 unsigned int old_flags;
1807 int err;
1808
1809 old_flags = dev->flags;
1810 if (ifm && (ifm->ifi_flags || ifm->ifi_change)) {
1811 err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
1812 if (err < 0)
1813 return err;
1814 }
1815
1816 dev->rtnl_link_state = RTNL_LINK_INITIALIZED;
3729d502 1817
a528c219 1818 __dev_notify_flags(dev, old_flags, ~0U);
3729d502
PM
1819 return 0;
1820}
1821EXPORT_SYMBOL(rtnl_configure_link);
1822
c0713563 1823struct net_device *rtnl_create_link(struct net *net,
5517750f
TG
1824 char *ifname, unsigned char name_assign_type,
1825 const struct rtnl_link_ops *ops, struct nlattr *tb[])
e7199288
PE
1826{
1827 int err;
1828 struct net_device *dev;
d40156aa
JP
1829 unsigned int num_tx_queues = 1;
1830 unsigned int num_rx_queues = 1;
e7199288 1831
76ff5cc9
JP
1832 if (tb[IFLA_NUM_TX_QUEUES])
1833 num_tx_queues = nla_get_u32(tb[IFLA_NUM_TX_QUEUES]);
1834 else if (ops->get_num_tx_queues)
d40156aa 1835 num_tx_queues = ops->get_num_tx_queues();
76ff5cc9
JP
1836
1837 if (tb[IFLA_NUM_RX_QUEUES])
1838 num_rx_queues = nla_get_u32(tb[IFLA_NUM_RX_QUEUES]);
1839 else if (ops->get_num_rx_queues)
d40156aa 1840 num_rx_queues = ops->get_num_rx_queues();
efacb309 1841
e7199288 1842 err = -ENOMEM;
5517750f 1843 dev = alloc_netdev_mqs(ops->priv_size, ifname, name_assign_type,
c835a677 1844 ops->setup, num_tx_queues, num_rx_queues);
e7199288
PE
1845 if (!dev)
1846 goto err;
1847
81adee47
EB
1848 dev_net_set(dev, net);
1849 dev->rtnl_link_ops = ops;
3729d502 1850 dev->rtnl_link_state = RTNL_LINK_INITIALIZING;
81adee47 1851
e7199288
PE
1852 if (tb[IFLA_MTU])
1853 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
2afb9b53 1854 if (tb[IFLA_ADDRESS]) {
e7199288
PE
1855 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1856 nla_len(tb[IFLA_ADDRESS]));
2afb9b53
JP
1857 dev->addr_assign_type = NET_ADDR_SET;
1858 }
e7199288
PE
1859 if (tb[IFLA_BROADCAST])
1860 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1861 nla_len(tb[IFLA_BROADCAST]));
1862 if (tb[IFLA_TXQLEN])
1863 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1864 if (tb[IFLA_OPERSTATE])
93b2d4a2 1865 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
e7199288
PE
1866 if (tb[IFLA_LINKMODE])
1867 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
ffa934f1
PM
1868 if (tb[IFLA_GROUP])
1869 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
e7199288
PE
1870
1871 return dev;
1872
e7199288
PE
1873err:
1874 return ERR_PTR(err);
1875}
e0d087af 1876EXPORT_SYMBOL(rtnl_create_link);
e7199288 1877
90f62cf3
EB
1878static int rtnl_group_changelink(const struct sk_buff *skb,
1879 struct net *net, int group,
e7ed828f
VD
1880 struct ifinfomsg *ifm,
1881 struct nlattr **tb)
1882{
1883 struct net_device *dev;
1884 int err;
1885
1886 for_each_netdev(net, dev) {
1887 if (dev->group == group) {
90f62cf3 1888 err = do_setlink(skb, dev, ifm, tb, NULL, 0);
e7ed828f
VD
1889 if (err < 0)
1890 return err;
1891 }
1892 }
1893
1894 return 0;
1895}
1896
661d2967 1897static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh)
38f7b870 1898{
3b1e0a65 1899 struct net *net = sock_net(skb->sk);
38f7b870 1900 const struct rtnl_link_ops *ops;
ba7d49b1 1901 const struct rtnl_link_ops *m_ops = NULL;
38f7b870 1902 struct net_device *dev;
ba7d49b1 1903 struct net_device *master_dev = NULL;
38f7b870
PM
1904 struct ifinfomsg *ifm;
1905 char kind[MODULE_NAME_LEN];
1906 char ifname[IFNAMSIZ];
1907 struct nlattr *tb[IFLA_MAX+1];
1908 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
5517750f 1909 unsigned char name_assign_type = NET_NAME_USER;
38f7b870
PM
1910 int err;
1911
95a5afca 1912#ifdef CONFIG_MODULES
38f7b870 1913replay:
8072f085 1914#endif
38f7b870
PM
1915 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1916 if (err < 0)
1917 return err;
1918
1919 if (tb[IFLA_IFNAME])
1920 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1921 else
1922 ifname[0] = '\0';
1923
1924 ifm = nlmsg_data(nlh);
1925 if (ifm->ifi_index > 0)
881d966b 1926 dev = __dev_get_by_index(net, ifm->ifi_index);
e7ed828f
VD
1927 else {
1928 if (ifname[0])
1929 dev = __dev_get_by_name(net, ifname);
e7ed828f
VD
1930 else
1931 dev = NULL;
1932 }
38f7b870 1933
ba7d49b1
JP
1934 if (dev) {
1935 master_dev = netdev_master_upper_dev_get(dev);
1936 if (master_dev)
1937 m_ops = master_dev->rtnl_link_ops;
1938 }
1939
e0d087af
ED
1940 err = validate_linkmsg(dev, tb);
1941 if (err < 0)
1840bb13
TG
1942 return err;
1943
38f7b870
PM
1944 if (tb[IFLA_LINKINFO]) {
1945 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1946 tb[IFLA_LINKINFO], ifla_info_policy);
1947 if (err < 0)
1948 return err;
1949 } else
1950 memset(linkinfo, 0, sizeof(linkinfo));
1951
1952 if (linkinfo[IFLA_INFO_KIND]) {
1953 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1954 ops = rtnl_link_ops_get(kind);
1955 } else {
1956 kind[0] = '\0';
1957 ops = NULL;
1958 }
1959
1960 if (1) {
ba7d49b1
JP
1961 struct nlattr *attr[ops ? ops->maxtype + 1 : 0];
1962 struct nlattr *slave_attr[m_ops ? m_ops->slave_maxtype + 1 : 0];
1963 struct nlattr **data = NULL;
1964 struct nlattr **slave_data = NULL;
81adee47 1965 struct net *dest_net;
38f7b870
PM
1966
1967 if (ops) {
1968 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1969 err = nla_parse_nested(attr, ops->maxtype,
1970 linkinfo[IFLA_INFO_DATA],
1971 ops->policy);
1972 if (err < 0)
1973 return err;
1974 data = attr;
1975 }
1976 if (ops->validate) {
1977 err = ops->validate(tb, data);
1978 if (err < 0)
1979 return err;
1980 }
1981 }
1982
ba7d49b1
JP
1983 if (m_ops) {
1984 if (m_ops->slave_maxtype &&
1985 linkinfo[IFLA_INFO_SLAVE_DATA]) {
1986 err = nla_parse_nested(slave_attr,
1987 m_ops->slave_maxtype,
1988 linkinfo[IFLA_INFO_SLAVE_DATA],
1989 m_ops->slave_policy);
1990 if (err < 0)
1991 return err;
1992 slave_data = slave_attr;
1993 }
1994 if (m_ops->slave_validate) {
1995 err = m_ops->slave_validate(tb, slave_data);
1996 if (err < 0)
1997 return err;
1998 }
1999 }
2000
38f7b870
PM
2001 if (dev) {
2002 int modified = 0;
2003
2004 if (nlh->nlmsg_flags & NLM_F_EXCL)
2005 return -EEXIST;
2006 if (nlh->nlmsg_flags & NLM_F_REPLACE)
2007 return -EOPNOTSUPP;
2008
2009 if (linkinfo[IFLA_INFO_DATA]) {
2010 if (!ops || ops != dev->rtnl_link_ops ||
2011 !ops->changelink)
2012 return -EOPNOTSUPP;
2013
2014 err = ops->changelink(dev, tb, data);
2015 if (err < 0)
2016 return err;
2017 modified = 1;
2018 }
2019
ba7d49b1
JP
2020 if (linkinfo[IFLA_INFO_SLAVE_DATA]) {
2021 if (!m_ops || !m_ops->slave_changelink)
2022 return -EOPNOTSUPP;
2023
2024 err = m_ops->slave_changelink(master_dev, dev,
2025 tb, slave_data);
2026 if (err < 0)
2027 return err;
2028 modified = 1;
2029 }
2030
90f62cf3 2031 return do_setlink(skb, dev, ifm, tb, ifname, modified);
38f7b870
PM
2032 }
2033
ffa934f1
PM
2034 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
2035 if (ifm->ifi_index == 0 && tb[IFLA_GROUP])
90f62cf3 2036 return rtnl_group_changelink(skb, net,
ffa934f1
PM
2037 nla_get_u32(tb[IFLA_GROUP]),
2038 ifm, tb);
38f7b870 2039 return -ENODEV;
ffa934f1 2040 }
38f7b870 2041
0e06877c 2042 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
38f7b870
PM
2043 return -EOPNOTSUPP;
2044
2045 if (!ops) {
95a5afca 2046#ifdef CONFIG_MODULES
38f7b870
PM
2047 if (kind[0]) {
2048 __rtnl_unlock();
2049 request_module("rtnl-link-%s", kind);
2050 rtnl_lock();
2051 ops = rtnl_link_ops_get(kind);
2052 if (ops)
2053 goto replay;
2054 }
2055#endif
2056 return -EOPNOTSUPP;
2057 }
2058
b0ab2fab
JP
2059 if (!ops->setup)
2060 return -EOPNOTSUPP;
2061
5517750f 2062 if (!ifname[0]) {
38f7b870 2063 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
5517750f
TG
2064 name_assign_type = NET_NAME_ENUM;
2065 }
e7199288 2066
81adee47 2067 dest_net = rtnl_link_get_net(net, tb);
13ad1774
EB
2068 if (IS_ERR(dest_net))
2069 return PTR_ERR(dest_net);
2070
5517750f 2071 dev = rtnl_create_link(dest_net, ifname, name_assign_type, ops, tb);
9c7dafbf 2072 if (IS_ERR(dev)) {
e7199288 2073 err = PTR_ERR(dev);
9c7dafbf
PE
2074 goto out;
2075 }
2076
2077 dev->ifindex = ifm->ifi_index;
2078
0e0eee24 2079 if (ops->newlink) {
81adee47 2080 err = ops->newlink(net, dev, tb, data);
0e0eee24 2081 /* Drivers should call free_netdev() in ->destructor
e51fb152
CW
2082 * and unregister it on failure after registration
2083 * so that device could be finally freed in rtnl_unlock.
0e0eee24 2084 */
e51fb152
CW
2085 if (err < 0) {
2086 /* If device is not registered at all, free it now */
2087 if (dev->reg_state == NETREG_UNINITIALIZED)
2088 free_netdev(dev);
0e0eee24 2089 goto out;
e51fb152 2090 }
0e0eee24 2091 } else {
2d85cba2 2092 err = register_netdevice(dev);
0e0eee24
CW
2093 if (err < 0) {
2094 free_netdev(dev);
2095 goto out;
2096 }
fce9b9be 2097 }
3729d502
PM
2098 err = rtnl_configure_link(dev, ifm);
2099 if (err < 0)
2100 unregister_netdevice(dev);
2101out:
81adee47 2102 put_net(dest_net);
38f7b870
PM
2103 return err;
2104 }
2105}
2106
661d2967 2107static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh)
711e2c33 2108{
3b1e0a65 2109 struct net *net = sock_net(skb->sk);
b60c5115 2110 struct ifinfomsg *ifm;
a3d12891 2111 char ifname[IFNAMSIZ];
b60c5115
TG
2112 struct nlattr *tb[IFLA_MAX+1];
2113 struct net_device *dev = NULL;
2114 struct sk_buff *nskb;
339bf98f 2115 int err;
115c9b81 2116 u32 ext_filter_mask = 0;
711e2c33 2117
b60c5115
TG
2118 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
2119 if (err < 0)
9918f230 2120 return err;
b60c5115 2121
a3d12891
ED
2122 if (tb[IFLA_IFNAME])
2123 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
2124
115c9b81
GR
2125 if (tb[IFLA_EXT_MASK])
2126 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
2127
b60c5115 2128 ifm = nlmsg_data(nlh);
a3d12891
ED
2129 if (ifm->ifi_index > 0)
2130 dev = __dev_get_by_index(net, ifm->ifi_index);
2131 else if (tb[IFLA_IFNAME])
2132 dev = __dev_get_by_name(net, ifname);
2133 else
711e2c33 2134 return -EINVAL;
711e2c33 2135
a3d12891
ED
2136 if (dev == NULL)
2137 return -ENODEV;
2138
115c9b81 2139 nskb = nlmsg_new(if_nlmsg_size(dev, ext_filter_mask), GFP_KERNEL);
a3d12891
ED
2140 if (nskb == NULL)
2141 return -ENOBUFS;
b60c5115 2142
15e47304 2143 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).portid,
115c9b81 2144 nlh->nlmsg_seq, 0, 0, ext_filter_mask);
26932566
PM
2145 if (err < 0) {
2146 /* -EMSGSIZE implies BUG in if_nlmsg_size */
2147 WARN_ON(err == -EMSGSIZE);
2148 kfree_skb(nskb);
a3d12891 2149 } else
15e47304 2150 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).portid);
711e2c33 2151
b60c5115 2152 return err;
711e2c33 2153}
711e2c33 2154
115c9b81 2155static u16 rtnl_calcit(struct sk_buff *skb, struct nlmsghdr *nlh)
c7ac8679 2156{
115c9b81
GR
2157 struct net *net = sock_net(skb->sk);
2158 struct net_device *dev;
2159 struct nlattr *tb[IFLA_MAX+1];
2160 u32 ext_filter_mask = 0;
2161 u16 min_ifinfo_dump_size = 0;
e5eca6d4
MS
2162 int hdrlen;
2163
2164 /* Same kernel<->userspace interface hack as in rtnl_dump_ifinfo. */
2165 hdrlen = nlmsg_len(nlh) < sizeof(struct ifinfomsg) ?
2166 sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg);
115c9b81 2167
e5eca6d4 2168 if (nlmsg_parse(nlh, hdrlen, tb, IFLA_MAX, ifla_policy) >= 0) {
a4b64fbe
ED
2169 if (tb[IFLA_EXT_MASK])
2170 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
2171 }
115c9b81
GR
2172
2173 if (!ext_filter_mask)
2174 return NLMSG_GOODSIZE;
2175 /*
2176 * traverse the list of net devices and compute the minimum
2177 * buffer size based upon the filter mask.
2178 */
2179 list_for_each_entry(dev, &net->dev_base_head, dev_list) {
2180 min_ifinfo_dump_size = max_t(u16, min_ifinfo_dump_size,
2181 if_nlmsg_size(dev,
2182 ext_filter_mask));
2183 }
2184
c7ac8679
GR
2185 return min_ifinfo_dump_size;
2186}
2187
42bad1da 2188static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
1da177e4
LT
2189{
2190 int idx;
2191 int s_idx = cb->family;
2192
2193 if (s_idx == 0)
2194 s_idx = 1;
25239cee 2195 for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) {
1da177e4
LT
2196 int type = cb->nlh->nlmsg_type-RTM_BASE;
2197 if (idx < s_idx || idx == PF_PACKET)
2198 continue;
e2849863
TG
2199 if (rtnl_msg_handlers[idx] == NULL ||
2200 rtnl_msg_handlers[idx][type].dumpit == NULL)
1da177e4 2201 continue;
0465277f 2202 if (idx > s_idx) {
1da177e4 2203 memset(&cb->args[0], 0, sizeof(cb->args));
0465277f
ND
2204 cb->prev_seq = 0;
2205 cb->seq = 0;
2206 }
e2849863 2207 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
1da177e4
LT
2208 break;
2209 }
2210 cb->family = idx;
2211
2212 return skb->len;
2213}
2214
7f294054
AS
2215void rtmsg_ifinfo(int type, struct net_device *dev, unsigned int change,
2216 gfp_t flags)
1da177e4 2217{
c346dca1 2218 struct net *net = dev_net(dev);
1da177e4 2219 struct sk_buff *skb;
0ec6d3f4 2220 int err = -ENOBUFS;
c7ac8679 2221 size_t if_info_size;
1da177e4 2222
7f294054 2223 skb = nlmsg_new((if_info_size = if_nlmsg_size(dev, 0)), flags);
0ec6d3f4
TG
2224 if (skb == NULL)
2225 goto errout;
1da177e4 2226
115c9b81 2227 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0, 0);
26932566
PM
2228 if (err < 0) {
2229 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
2230 WARN_ON(err == -EMSGSIZE);
2231 kfree_skb(skb);
2232 goto errout;
2233 }
7f294054 2234 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, flags);
1ce85fe4 2235 return;
0ec6d3f4
TG
2236errout:
2237 if (err < 0)
4b3da706 2238 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
1da177e4 2239}
471cb5a3 2240EXPORT_SYMBOL(rtmsg_ifinfo);
1da177e4 2241
d83b0603
JF
2242static int nlmsg_populate_fdb_fill(struct sk_buff *skb,
2243 struct net_device *dev,
2244 u8 *addr, u32 pid, u32 seq,
1c104a6b
ND
2245 int type, unsigned int flags,
2246 int nlflags)
d83b0603
JF
2247{
2248 struct nlmsghdr *nlh;
2249 struct ndmsg *ndm;
2250
1c104a6b 2251 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), nlflags);
d83b0603
JF
2252 if (!nlh)
2253 return -EMSGSIZE;
2254
2255 ndm = nlmsg_data(nlh);
2256 ndm->ndm_family = AF_BRIDGE;
2257 ndm->ndm_pad1 = 0;
2258 ndm->ndm_pad2 = 0;
2259 ndm->ndm_flags = flags;
2260 ndm->ndm_type = 0;
2261 ndm->ndm_ifindex = dev->ifindex;
2262 ndm->ndm_state = NUD_PERMANENT;
2263
2264 if (nla_put(skb, NDA_LLADDR, ETH_ALEN, addr))
2265 goto nla_put_failure;
2266
2267 return nlmsg_end(skb, nlh);
2268
2269nla_put_failure:
2270 nlmsg_cancel(skb, nlh);
2271 return -EMSGSIZE;
2272}
2273
3ff661c3
JF
2274static inline size_t rtnl_fdb_nlmsg_size(void)
2275{
2276 return NLMSG_ALIGN(sizeof(struct ndmsg)) + nla_total_size(ETH_ALEN);
2277}
2278
2279static void rtnl_fdb_notify(struct net_device *dev, u8 *addr, int type)
2280{
2281 struct net *net = dev_net(dev);
2282 struct sk_buff *skb;
2283 int err = -ENOBUFS;
2284
2285 skb = nlmsg_new(rtnl_fdb_nlmsg_size(), GFP_ATOMIC);
2286 if (!skb)
2287 goto errout;
2288
1c104a6b 2289 err = nlmsg_populate_fdb_fill(skb, dev, addr, 0, 0, type, NTF_SELF, 0);
3ff661c3
JF
2290 if (err < 0) {
2291 kfree_skb(skb);
2292 goto errout;
2293 }
2294
2295 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
2296 return;
2297errout:
2298 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
2299}
2300
090096bf
VY
2301/**
2302 * ndo_dflt_fdb_add - default netdevice operation to add an FDB entry
2303 */
2304int ndo_dflt_fdb_add(struct ndmsg *ndm,
2305 struct nlattr *tb[],
2306 struct net_device *dev,
2307 const unsigned char *addr,
2308 u16 flags)
2309{
2310 int err = -EINVAL;
2311
2312 /* If aging addresses are supported device will need to
2313 * implement its own handler for this.
2314 */
2315 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
2316 pr_info("%s: FDB only supports static addresses\n", dev->name);
2317 return err;
2318 }
2319
2320 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
2321 err = dev_uc_add_excl(dev, addr);
2322 else if (is_multicast_ether_addr(addr))
2323 err = dev_mc_add_excl(dev, addr);
2324
2325 /* Only return duplicate errors if NLM_F_EXCL is set */
2326 if (err == -EEXIST && !(flags & NLM_F_EXCL))
2327 err = 0;
2328
2329 return err;
2330}
2331EXPORT_SYMBOL(ndo_dflt_fdb_add);
2332
661d2967 2333static int rtnl_fdb_add(struct sk_buff *skb, struct nlmsghdr *nlh)
77162022
JF
2334{
2335 struct net *net = sock_net(skb->sk);
77162022
JF
2336 struct ndmsg *ndm;
2337 struct nlattr *tb[NDA_MAX+1];
2338 struct net_device *dev;
2339 u8 *addr;
2340 int err;
2341
2342 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
2343 if (err < 0)
2344 return err;
2345
2346 ndm = nlmsg_data(nlh);
2347 if (ndm->ndm_ifindex == 0) {
2348 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid ifindex\n");
2349 return -EINVAL;
2350 }
2351
2352 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
2353 if (dev == NULL) {
2354 pr_info("PF_BRIDGE: RTM_NEWNEIGH with unknown ifindex\n");
2355 return -ENODEV;
2356 }
2357
2358 if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) {
2359 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid address\n");
2360 return -EINVAL;
2361 }
2362
2363 addr = nla_data(tb[NDA_LLADDR]);
77162022
JF
2364
2365 err = -EOPNOTSUPP;
2366
2367 /* Support fdb on master device the net/bridge default case */
2368 if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) &&
2369 (dev->priv_flags & IFF_BRIDGE_PORT)) {
898e5061
JP
2370 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2371 const struct net_device_ops *ops = br_dev->netdev_ops;
2372
2373 err = ops->ndo_fdb_add(ndm, tb, dev, addr, nlh->nlmsg_flags);
77162022
JF
2374 if (err)
2375 goto out;
2376 else
2377 ndm->ndm_flags &= ~NTF_MASTER;
2378 }
2379
2380 /* Embedded bridge, macvlan, and any other device support */
090096bf
VY
2381 if ((ndm->ndm_flags & NTF_SELF)) {
2382 if (dev->netdev_ops->ndo_fdb_add)
2383 err = dev->netdev_ops->ndo_fdb_add(ndm, tb, dev, addr,
2384 nlh->nlmsg_flags);
2385 else
2386 err = ndo_dflt_fdb_add(ndm, tb, dev, addr,
2387 nlh->nlmsg_flags);
77162022 2388
3ff661c3
JF
2389 if (!err) {
2390 rtnl_fdb_notify(dev, addr, RTM_NEWNEIGH);
77162022 2391 ndm->ndm_flags &= ~NTF_SELF;
3ff661c3 2392 }
77162022
JF
2393 }
2394out:
2395 return err;
2396}
2397
090096bf
VY
2398/**
2399 * ndo_dflt_fdb_del - default netdevice operation to delete an FDB entry
2400 */
2401int ndo_dflt_fdb_del(struct ndmsg *ndm,
2402 struct nlattr *tb[],
2403 struct net_device *dev,
2404 const unsigned char *addr)
2405{
c8a89c4a 2406 int err = -EINVAL;
090096bf
VY
2407
2408 /* If aging addresses are supported device will need to
2409 * implement its own handler for this.
2410 */
64535993 2411 if (!(ndm->ndm_state & NUD_PERMANENT)) {
090096bf 2412 pr_info("%s: FDB only supports static addresses\n", dev->name);
c8a89c4a 2413 return err;
090096bf
VY
2414 }
2415
2416 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
2417 err = dev_uc_del(dev, addr);
2418 else if (is_multicast_ether_addr(addr))
2419 err = dev_mc_del(dev, addr);
090096bf
VY
2420
2421 return err;
2422}
2423EXPORT_SYMBOL(ndo_dflt_fdb_del);
2424
661d2967 2425static int rtnl_fdb_del(struct sk_buff *skb, struct nlmsghdr *nlh)
77162022
JF
2426{
2427 struct net *net = sock_net(skb->sk);
2428 struct ndmsg *ndm;
1690be63 2429 struct nlattr *tb[NDA_MAX+1];
77162022
JF
2430 struct net_device *dev;
2431 int err = -EINVAL;
2432 __u8 *addr;
2433
90f62cf3 2434 if (!netlink_capable(skb, CAP_NET_ADMIN))
1690be63
VY
2435 return -EPERM;
2436
2437 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
2438 if (err < 0)
2439 return err;
77162022
JF
2440
2441 ndm = nlmsg_data(nlh);
2442 if (ndm->ndm_ifindex == 0) {
2443 pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid ifindex\n");
2444 return -EINVAL;
2445 }
2446
2447 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
2448 if (dev == NULL) {
2449 pr_info("PF_BRIDGE: RTM_DELNEIGH with unknown ifindex\n");
2450 return -ENODEV;
2451 }
2452
1690be63
VY
2453 if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) {
2454 pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid address\n");
2455 return -EINVAL;
2456 }
2457
2458 addr = nla_data(tb[NDA_LLADDR]);
77162022 2459
77162022
JF
2460 err = -EOPNOTSUPP;
2461
2462 /* Support fdb on master device the net/bridge default case */
2463 if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) &&
2464 (dev->priv_flags & IFF_BRIDGE_PORT)) {
898e5061
JP
2465 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2466 const struct net_device_ops *ops = br_dev->netdev_ops;
77162022 2467
898e5061 2468 if (ops->ndo_fdb_del)
1690be63 2469 err = ops->ndo_fdb_del(ndm, tb, dev, addr);
77162022
JF
2470
2471 if (err)
2472 goto out;
2473 else
2474 ndm->ndm_flags &= ~NTF_MASTER;
2475 }
2476
2477 /* Embedded bridge, macvlan, and any other device support */
090096bf
VY
2478 if (ndm->ndm_flags & NTF_SELF) {
2479 if (dev->netdev_ops->ndo_fdb_del)
2480 err = dev->netdev_ops->ndo_fdb_del(ndm, tb, dev, addr);
2481 else
2482 err = ndo_dflt_fdb_del(ndm, tb, dev, addr);
77162022 2483
3ff661c3
JF
2484 if (!err) {
2485 rtnl_fdb_notify(dev, addr, RTM_DELNEIGH);
77162022 2486 ndm->ndm_flags &= ~NTF_SELF;
3ff661c3 2487 }
77162022
JF
2488 }
2489out:
2490 return err;
2491}
2492
d83b0603
JF
2493static int nlmsg_populate_fdb(struct sk_buff *skb,
2494 struct netlink_callback *cb,
2495 struct net_device *dev,
2496 int *idx,
2497 struct netdev_hw_addr_list *list)
2498{
2499 struct netdev_hw_addr *ha;
2500 int err;
15e47304 2501 u32 portid, seq;
d83b0603 2502
15e47304 2503 portid = NETLINK_CB(cb->skb).portid;
d83b0603
JF
2504 seq = cb->nlh->nlmsg_seq;
2505
2506 list_for_each_entry(ha, &list->list, list) {
2507 if (*idx < cb->args[0])
2508 goto skip;
2509
2510 err = nlmsg_populate_fdb_fill(skb, dev, ha->addr,
a7a558fe 2511 portid, seq,
1c104a6b
ND
2512 RTM_NEWNEIGH, NTF_SELF,
2513 NLM_F_MULTI);
d83b0603
JF
2514 if (err < 0)
2515 return err;
2516skip:
2517 *idx += 1;
2518 }
2519 return 0;
2520}
2521
2522/**
2c53040f 2523 * ndo_dflt_fdb_dump - default netdevice operation to dump an FDB table.
d83b0603
JF
2524 * @nlh: netlink message header
2525 * @dev: netdevice
2526 *
2527 * Default netdevice operation to dump the existing unicast address list.
91f3e7b1 2528 * Returns number of addresses from list put in skb.
d83b0603
JF
2529 */
2530int ndo_dflt_fdb_dump(struct sk_buff *skb,
2531 struct netlink_callback *cb,
2532 struct net_device *dev,
5d5eacb3 2533 struct net_device *filter_dev,
d83b0603
JF
2534 int idx)
2535{
2536 int err;
2537
2538 netif_addr_lock_bh(dev);
2539 err = nlmsg_populate_fdb(skb, cb, dev, &idx, &dev->uc);
2540 if (err)
2541 goto out;
2542 nlmsg_populate_fdb(skb, cb, dev, &idx, &dev->mc);
2543out:
2544 netif_addr_unlock_bh(dev);
2545 return idx;
2546}
2547EXPORT_SYMBOL(ndo_dflt_fdb_dump);
2548
77162022
JF
2549static int rtnl_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb)
2550{
77162022 2551 struct net_device *dev;
5e6d2435
JHS
2552 struct nlattr *tb[IFLA_MAX+1];
2553 struct net_device *bdev = NULL;
2554 struct net_device *br_dev = NULL;
2555 const struct net_device_ops *ops = NULL;
2556 const struct net_device_ops *cops = NULL;
2557 struct ifinfomsg *ifm = nlmsg_data(cb->nlh);
2558 struct net *net = sock_net(skb->sk);
2559 int brport_idx = 0;
2560 int br_idx = 0;
2561 int idx = 0;
2562
2563 if (nlmsg_parse(cb->nlh, sizeof(struct ifinfomsg), tb, IFLA_MAX,
2564 ifla_policy) == 0) {
2565 if (tb[IFLA_MASTER])
2566 br_idx = nla_get_u32(tb[IFLA_MASTER]);
2567 }
2568
2569 brport_idx = ifm->ifi_index;
2570
2571 if (br_idx) {
2572 br_dev = __dev_get_by_index(net, br_idx);
2573 if (!br_dev)
2574 return -ENODEV;
2575
2576 ops = br_dev->netdev_ops;
2577 bdev = br_dev;
2578 }
2579
2580 for_each_netdev(net, dev) {
2581 if (brport_idx && (dev->ifindex != brport_idx))
2582 continue;
2583
2584 if (!br_idx) { /* user did not specify a specific bridge */
2585 if (dev->priv_flags & IFF_BRIDGE_PORT) {
2586 br_dev = netdev_master_upper_dev_get(dev);
2587 cops = br_dev->netdev_ops;
2588 }
2589
2590 bdev = dev;
2591 } else {
2592 if (dev != br_dev &&
2593 !(dev->priv_flags & IFF_BRIDGE_PORT))
2594 continue;
2595
2596 if (br_dev != netdev_master_upper_dev_get(dev) &&
2597 !(dev->priv_flags & IFF_EBRIDGE))
2598 continue;
2599
2600 bdev = br_dev;
2601 cops = ops;
2602 }
77162022 2603
77162022 2604 if (dev->priv_flags & IFF_BRIDGE_PORT) {
5e6d2435
JHS
2605 if (cops && cops->ndo_fdb_dump)
2606 idx = cops->ndo_fdb_dump(skb, cb, br_dev, dev,
2607 idx);
77162022
JF
2608 }
2609
5e6d2435 2610 idx = ndo_dflt_fdb_dump(skb, cb, dev, NULL, idx);
77162022 2611 if (dev->netdev_ops->ndo_fdb_dump)
5e6d2435 2612 idx = dev->netdev_ops->ndo_fdb_dump(skb, cb, bdev, dev,
5d5eacb3 2613 idx);
5e6d2435
JHS
2614
2615 cops = NULL;
77162022 2616 }
77162022
JF
2617
2618 cb->args[0] = idx;
2619 return skb->len;
2620}
2621
815cccbf
JF
2622int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
2623 struct net_device *dev, u16 mode)
2624{
2625 struct nlmsghdr *nlh;
2626 struct ifinfomsg *ifm;
2627 struct nlattr *br_afspec;
2628 u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN;
898e5061 2629 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
815cccbf
JF
2630
2631 nlh = nlmsg_put(skb, pid, seq, RTM_NEWLINK, sizeof(*ifm), NLM_F_MULTI);
2632 if (nlh == NULL)
2633 return -EMSGSIZE;
2634
2635 ifm = nlmsg_data(nlh);
2636 ifm->ifi_family = AF_BRIDGE;
2637 ifm->__ifi_pad = 0;
2638 ifm->ifi_type = dev->type;
2639 ifm->ifi_index = dev->ifindex;
2640 ifm->ifi_flags = dev_get_flags(dev);
2641 ifm->ifi_change = 0;
2642
2643
2644 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
2645 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
2646 nla_put_u8(skb, IFLA_OPERSTATE, operstate) ||
898e5061
JP
2647 (br_dev &&
2648 nla_put_u32(skb, IFLA_MASTER, br_dev->ifindex)) ||
815cccbf
JF
2649 (dev->addr_len &&
2650 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
2651 (dev->ifindex != dev->iflink &&
2652 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
2653 goto nla_put_failure;
2654
2655 br_afspec = nla_nest_start(skb, IFLA_AF_SPEC);
2656 if (!br_afspec)
2657 goto nla_put_failure;
2658
2659 if (nla_put_u16(skb, IFLA_BRIDGE_FLAGS, BRIDGE_FLAGS_SELF) ||
2660 nla_put_u16(skb, IFLA_BRIDGE_MODE, mode)) {
2661 nla_nest_cancel(skb, br_afspec);
2662 goto nla_put_failure;
2663 }
2664 nla_nest_end(skb, br_afspec);
2665
2666 return nlmsg_end(skb, nlh);
2667nla_put_failure:
2668 nlmsg_cancel(skb, nlh);
2669 return -EMSGSIZE;
2670}
2671EXPORT_SYMBOL(ndo_dflt_bridge_getlink);
2672
e5a55a89
JF
2673static int rtnl_bridge_getlink(struct sk_buff *skb, struct netlink_callback *cb)
2674{
2675 struct net *net = sock_net(skb->sk);
2676 struct net_device *dev;
2677 int idx = 0;
2678 u32 portid = NETLINK_CB(cb->skb).portid;
2679 u32 seq = cb->nlh->nlmsg_seq;
6cbdceeb
VY
2680 struct nlattr *extfilt;
2681 u32 filter_mask = 0;
2682
3e805ad2 2683 extfilt = nlmsg_find_attr(cb->nlh, sizeof(struct ifinfomsg),
6cbdceeb
VY
2684 IFLA_EXT_MASK);
2685 if (extfilt)
2686 filter_mask = nla_get_u32(extfilt);
e5a55a89
JF
2687
2688 rcu_read_lock();
2689 for_each_netdev_rcu(net, dev) {
2690 const struct net_device_ops *ops = dev->netdev_ops;
898e5061 2691 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
e5a55a89 2692
898e5061 2693 if (br_dev && br_dev->netdev_ops->ndo_bridge_getlink) {
25b1e679 2694 if (idx >= cb->args[0] &&
898e5061 2695 br_dev->netdev_ops->ndo_bridge_getlink(
6cbdceeb 2696 skb, portid, seq, dev, filter_mask) < 0)
e5a55a89 2697 break;
25b1e679 2698 idx++;
e5a55a89
JF
2699 }
2700
2701 if (ops->ndo_bridge_getlink) {
25b1e679 2702 if (idx >= cb->args[0] &&
6cbdceeb
VY
2703 ops->ndo_bridge_getlink(skb, portid, seq, dev,
2704 filter_mask) < 0)
e5a55a89 2705 break;
25b1e679 2706 idx++;
e5a55a89
JF
2707 }
2708 }
2709 rcu_read_unlock();
2710 cb->args[0] = idx;
2711
2712 return skb->len;
2713}
2714
2469ffd7
JF
2715static inline size_t bridge_nlmsg_size(void)
2716{
2717 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
2718 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
2719 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
2720 + nla_total_size(sizeof(u32)) /* IFLA_MASTER */
2721 + nla_total_size(sizeof(u32)) /* IFLA_MTU */
2722 + nla_total_size(sizeof(u32)) /* IFLA_LINK */
2723 + nla_total_size(sizeof(u32)) /* IFLA_OPERSTATE */
2724 + nla_total_size(sizeof(u8)) /* IFLA_PROTINFO */
2725 + nla_total_size(sizeof(struct nlattr)) /* IFLA_AF_SPEC */
2726 + nla_total_size(sizeof(u16)) /* IFLA_BRIDGE_FLAGS */
2727 + nla_total_size(sizeof(u16)); /* IFLA_BRIDGE_MODE */
2728}
2729
2730static int rtnl_bridge_notify(struct net_device *dev, u16 flags)
2731{
2732 struct net *net = dev_net(dev);
898e5061 2733 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2469ffd7
JF
2734 struct sk_buff *skb;
2735 int err = -EOPNOTSUPP;
2736
2737 skb = nlmsg_new(bridge_nlmsg_size(), GFP_ATOMIC);
2738 if (!skb) {
2739 err = -ENOMEM;
2740 goto errout;
2741 }
2742
c38e01b8 2743 if ((!flags || (flags & BRIDGE_FLAGS_MASTER)) &&
898e5061 2744 br_dev && br_dev->netdev_ops->ndo_bridge_getlink) {
6cbdceeb 2745 err = br_dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0);
c38e01b8
JF
2746 if (err < 0)
2747 goto errout;
2748 }
2469ffd7 2749
c38e01b8
JF
2750 if ((flags & BRIDGE_FLAGS_SELF) &&
2751 dev->netdev_ops->ndo_bridge_getlink) {
6cbdceeb 2752 err = dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0);
c38e01b8
JF
2753 if (err < 0)
2754 goto errout;
2755 }
2469ffd7
JF
2756
2757 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
2758 return 0;
2759errout:
2760 WARN_ON(err == -EMSGSIZE);
2761 kfree_skb(skb);
2762 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
2763 return err;
2764}
2765
661d2967 2766static int rtnl_bridge_setlink(struct sk_buff *skb, struct nlmsghdr *nlh)
e5a55a89
JF
2767{
2768 struct net *net = sock_net(skb->sk);
2769 struct ifinfomsg *ifm;
2770 struct net_device *dev;
2469ffd7
JF
2771 struct nlattr *br_spec, *attr = NULL;
2772 int rem, err = -EOPNOTSUPP;
c38e01b8
JF
2773 u16 oflags, flags = 0;
2774 bool have_flags = false;
e5a55a89
JF
2775
2776 if (nlmsg_len(nlh) < sizeof(*ifm))
2777 return -EINVAL;
2778
2779 ifm = nlmsg_data(nlh);
2780 if (ifm->ifi_family != AF_BRIDGE)
2781 return -EPFNOSUPPORT;
2782
2783 dev = __dev_get_by_index(net, ifm->ifi_index);
2784 if (!dev) {
2785 pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n");
2786 return -ENODEV;
2787 }
2788
2469ffd7
JF
2789 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
2790 if (br_spec) {
2791 nla_for_each_nested(attr, br_spec, rem) {
2792 if (nla_type(attr) == IFLA_BRIDGE_FLAGS) {
c38e01b8 2793 have_flags = true;
2469ffd7
JF
2794 flags = nla_get_u16(attr);
2795 break;
2796 }
2797 }
2798 }
2799
c38e01b8
JF
2800 oflags = flags;
2801
2469ffd7 2802 if (!flags || (flags & BRIDGE_FLAGS_MASTER)) {
898e5061
JP
2803 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2804
2805 if (!br_dev || !br_dev->netdev_ops->ndo_bridge_setlink) {
2469ffd7
JF
2806 err = -EOPNOTSUPP;
2807 goto out;
2808 }
2809
898e5061 2810 err = br_dev->netdev_ops->ndo_bridge_setlink(dev, nlh);
e5a55a89
JF
2811 if (err)
2812 goto out;
2469ffd7
JF
2813
2814 flags &= ~BRIDGE_FLAGS_MASTER;
e5a55a89
JF
2815 }
2816
2469ffd7
JF
2817 if ((flags & BRIDGE_FLAGS_SELF)) {
2818 if (!dev->netdev_ops->ndo_bridge_setlink)
2819 err = -EOPNOTSUPP;
2820 else
2821 err = dev->netdev_ops->ndo_bridge_setlink(dev, nlh);
2822
2823 if (!err)
2824 flags &= ~BRIDGE_FLAGS_SELF;
2825 }
e5a55a89 2826
c38e01b8 2827 if (have_flags)
2469ffd7
JF
2828 memcpy(nla_data(attr), &flags, sizeof(flags));
2829 /* Generate event to notify upper layer of bridge change */
2830 if (!err)
c38e01b8 2831 err = rtnl_bridge_notify(dev, oflags);
e5a55a89
JF
2832out:
2833 return err;
2834}
2835
661d2967 2836static int rtnl_bridge_dellink(struct sk_buff *skb, struct nlmsghdr *nlh)
407af329
VY
2837{
2838 struct net *net = sock_net(skb->sk);
2839 struct ifinfomsg *ifm;
2840 struct net_device *dev;
2841 struct nlattr *br_spec, *attr = NULL;
2842 int rem, err = -EOPNOTSUPP;
2843 u16 oflags, flags = 0;
2844 bool have_flags = false;
2845
2846 if (nlmsg_len(nlh) < sizeof(*ifm))
2847 return -EINVAL;
2848
2849 ifm = nlmsg_data(nlh);
2850 if (ifm->ifi_family != AF_BRIDGE)
2851 return -EPFNOSUPPORT;
2852
2853 dev = __dev_get_by_index(net, ifm->ifi_index);
2854 if (!dev) {
2855 pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n");
2856 return -ENODEV;
2857 }
2858
2859 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
2860 if (br_spec) {
2861 nla_for_each_nested(attr, br_spec, rem) {
2862 if (nla_type(attr) == IFLA_BRIDGE_FLAGS) {
2863 have_flags = true;
2864 flags = nla_get_u16(attr);
2865 break;
2866 }
2867 }
2868 }
2869
2870 oflags = flags;
2871
2872 if (!flags || (flags & BRIDGE_FLAGS_MASTER)) {
2873 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2874
2875 if (!br_dev || !br_dev->netdev_ops->ndo_bridge_dellink) {
2876 err = -EOPNOTSUPP;
2877 goto out;
2878 }
2879
2880 err = br_dev->netdev_ops->ndo_bridge_dellink(dev, nlh);
2881 if (err)
2882 goto out;
2883
2884 flags &= ~BRIDGE_FLAGS_MASTER;
2885 }
2886
2887 if ((flags & BRIDGE_FLAGS_SELF)) {
2888 if (!dev->netdev_ops->ndo_bridge_dellink)
2889 err = -EOPNOTSUPP;
2890 else
2891 err = dev->netdev_ops->ndo_bridge_dellink(dev, nlh);
2892
2893 if (!err)
2894 flags &= ~BRIDGE_FLAGS_SELF;
2895 }
2896
2897 if (have_flags)
2898 memcpy(nla_data(attr), &flags, sizeof(flags));
2899 /* Generate event to notify upper layer of bridge change */
2900 if (!err)
2901 err = rtnl_bridge_notify(dev, oflags);
2902out:
2903 return err;
2904}
2905
1da177e4
LT
2906/* Process one rtnetlink message. */
2907
1d00a4eb 2908static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
1da177e4 2909{
3b1e0a65 2910 struct net *net = sock_net(skb->sk);
e2849863 2911 rtnl_doit_func doit;
1da177e4 2912 int sz_idx, kind;
1da177e4
LT
2913 int family;
2914 int type;
2907c35f 2915 int err;
1da177e4 2916
1da177e4 2917 type = nlh->nlmsg_type;
1da177e4 2918 if (type > RTM_MAX)
038890fe 2919 return -EOPNOTSUPP;
1da177e4
LT
2920
2921 type -= RTM_BASE;
2922
2923 /* All the messages must have at least 1 byte length */
573ce260 2924 if (nlmsg_len(nlh) < sizeof(struct rtgenmsg))
1da177e4
LT
2925 return 0;
2926
573ce260 2927 family = ((struct rtgenmsg *)nlmsg_data(nlh))->rtgen_family;
1da177e4
LT
2928 sz_idx = type>>2;
2929 kind = type&3;
2930
90f62cf3 2931 if (kind != 2 && !netlink_net_capable(skb, CAP_NET_ADMIN))
1d00a4eb 2932 return -EPERM;
1da177e4 2933
b8f3ab42 2934 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
97c53cac 2935 struct sock *rtnl;
e2849863 2936 rtnl_dumpit_func dumpit;
c7ac8679
GR
2937 rtnl_calcit_func calcit;
2938 u16 min_dump_alloc = 0;
1da177e4 2939
e2849863
TG
2940 dumpit = rtnl_get_dumpit(family, type);
2941 if (dumpit == NULL)
038890fe 2942 return -EOPNOTSUPP;
c7ac8679
GR
2943 calcit = rtnl_get_calcit(family, type);
2944 if (calcit)
115c9b81 2945 min_dump_alloc = calcit(skb, nlh);
9ac4a169 2946
2907c35f 2947 __rtnl_unlock();
97c53cac 2948 rtnl = net->rtnl;
80d326fa
PNA
2949 {
2950 struct netlink_dump_control c = {
2951 .dump = dumpit,
2952 .min_dump_alloc = min_dump_alloc,
2953 };
2954 err = netlink_dump_start(rtnl, skb, nlh, &c);
2955 }
2907c35f
ED
2956 rtnl_lock();
2957 return err;
1da177e4
LT
2958 }
2959
e2849863
TG
2960 doit = rtnl_get_doit(family, type);
2961 if (doit == NULL)
038890fe 2962 return -EOPNOTSUPP;
1da177e4 2963
661d2967 2964 return doit(skb, nlh);
1da177e4
LT
2965}
2966
cd40b7d3 2967static void rtnetlink_rcv(struct sk_buff *skb)
1da177e4 2968{
cd40b7d3
DL
2969 rtnl_lock();
2970 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
2971 rtnl_unlock();
1da177e4
LT
2972}
2973
1da177e4
LT
2974static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
2975{
351638e7 2976 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
e9dc8653 2977
1da177e4 2978 switch (event) {
1da177e4
LT
2979 case NETDEV_UP:
2980 case NETDEV_DOWN:
10de05af 2981 case NETDEV_PRE_UP:
d90a909e
EB
2982 case NETDEV_POST_INIT:
2983 case NETDEV_REGISTER:
1da177e4 2984 case NETDEV_CHANGE:
755d0e77 2985 case NETDEV_PRE_TYPE_CHANGE:
1da177e4 2986 case NETDEV_GOING_DOWN:
a2835763 2987 case NETDEV_UNREGISTER:
0115e8e3 2988 case NETDEV_UNREGISTER_FINAL:
ac3d3f81
AW
2989 case NETDEV_RELEASE:
2990 case NETDEV_JOIN:
1da177e4
LT
2991 break;
2992 default:
7f294054 2993 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
1da177e4
LT
2994 break;
2995 }
2996 return NOTIFY_DONE;
2997}
2998
2999static struct notifier_block rtnetlink_dev_notifier = {
3000 .notifier_call = rtnetlink_event,
3001};
3002
97c53cac 3003
2c8c1e72 3004static int __net_init rtnetlink_net_init(struct net *net)
97c53cac
DL
3005{
3006 struct sock *sk;
a31f2d17
PNA
3007 struct netlink_kernel_cfg cfg = {
3008 .groups = RTNLGRP_MAX,
3009 .input = rtnetlink_rcv,
3010 .cb_mutex = &rtnl_mutex,
9785e10a 3011 .flags = NL_CFG_F_NONROOT_RECV,
a31f2d17
PNA
3012 };
3013
9f00d977 3014 sk = netlink_kernel_create(net, NETLINK_ROUTE, &cfg);
97c53cac
DL
3015 if (!sk)
3016 return -ENOMEM;
97c53cac
DL
3017 net->rtnl = sk;
3018 return 0;
3019}
3020
2c8c1e72 3021static void __net_exit rtnetlink_net_exit(struct net *net)
97c53cac 3022{
775516bf
DL
3023 netlink_kernel_release(net->rtnl);
3024 net->rtnl = NULL;
97c53cac
DL
3025}
3026
3027static struct pernet_operations rtnetlink_net_ops = {
3028 .init = rtnetlink_net_init,
3029 .exit = rtnetlink_net_exit,
3030};
3031
1da177e4
LT
3032void __init rtnetlink_init(void)
3033{
97c53cac 3034 if (register_pernet_subsys(&rtnetlink_net_ops))
1da177e4 3035 panic("rtnetlink_init: cannot initialize rtnetlink\n");
97c53cac 3036
1da177e4 3037 register_netdevice_notifier(&rtnetlink_dev_notifier);
340d17fc 3038
c7ac8679
GR
3039 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink,
3040 rtnl_dump_ifinfo, rtnl_calcit);
3041 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL, NULL);
3042 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL, NULL);
3043 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL, NULL);
687ad8cc 3044
c7ac8679
GR
3045 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all, NULL);
3046 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all, NULL);
77162022
JF
3047
3048 rtnl_register(PF_BRIDGE, RTM_NEWNEIGH, rtnl_fdb_add, NULL, NULL);
3049 rtnl_register(PF_BRIDGE, RTM_DELNEIGH, rtnl_fdb_del, NULL, NULL);
3050 rtnl_register(PF_BRIDGE, RTM_GETNEIGH, NULL, rtnl_fdb_dump, NULL);
e5a55a89
JF
3051
3052 rtnl_register(PF_BRIDGE, RTM_GETLINK, NULL, rtnl_bridge_getlink, NULL);
407af329 3053 rtnl_register(PF_BRIDGE, RTM_DELLINK, rtnl_bridge_dellink, NULL, NULL);
e5a55a89 3054 rtnl_register(PF_BRIDGE, RTM_SETLINK, rtnl_bridge_setlink, NULL, NULL);
1da177e4
LT
3055}
3056