blob: 0ee5479528b57f76b9575e7bffeee16c3391b9b6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Routing netlink socket interface: protocol independent part.
7 *
8 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 *
15 * Fixes:
16 * Vitaly E. Lavrov RTA_OK arithmetics was wrong.
17 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/errno.h>
20#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/socket.h>
23#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/timer.h>
25#include <linux/string.h>
26#include <linux/sockios.h>
27#include <linux/net.h>
28#include <linux/fcntl.h>
29#include <linux/mm.h>
30#include <linux/slab.h>
31#include <linux/interrupt.h>
32#include <linux/capability.h>
33#include <linux/skbuff.h>
34#include <linux/init.h>
35#include <linux/security.h>
Stephen Hemminger6756ae42006-03-20 22:23:58 -080036#include <linux/mutex.h>
Thomas Graf18237302006-08-04 23:04:54 -070037#include <linux/if_addr.h>
John Fastabend77162022012-04-15 06:43:56 +000038#include <linux/if_bridge.h>
Jiri Pirkof6f64242014-11-28 14:34:15 +010039#include <linux/if_vlan.h>
Williams, Mitch Aebc08a62010-02-10 01:44:05 +000040#include <linux/pci.h>
John Fastabend77162022012-04-15 06:43:56 +000041#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080043#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <linux/inet.h>
46#include <linux/netdevice.h>
Jiri Pirko82f28412014-11-28 14:34:18 +010047#include <net/switchdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <net/ip.h>
49#include <net/protocol.h>
50#include <net/arp.h>
51#include <net/route.h>
52#include <net/udp.h>
Daniel Borkmannea697632015-01-05 23:57:47 +010053#include <net/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <net/sock.h>
55#include <net/pkt_sched.h>
Thomas Graf14c0b972006-08-04 03:38:38 -070056#include <net/fib_rules.h>
Thomas Grafe2849862007-03-22 11:48:11 -070057#include <net/rtnetlink.h>
Johannes Berg30ffee82009-07-10 09:51:35 +000058#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Eric Dumazete0d087a2009-11-07 01:26:17 -080060struct rtnl_link {
Thomas Grafe2849862007-03-22 11:48:11 -070061 rtnl_doit_func doit;
62 rtnl_dumpit_func dumpit;
Greg Rosec7ac8672011-06-10 01:27:09 +000063 rtnl_calcit_func calcit;
Thomas Grafe2849862007-03-22 11:48:11 -070064};
65
Stephen Hemminger6756ae42006-03-20 22:23:58 -080066static DEFINE_MUTEX(rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68void rtnl_lock(void)
69{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080070 mutex_lock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
Eric Dumazete0d087a2009-11-07 01:26:17 -080072EXPORT_SYMBOL(rtnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Eric Dumazet1b5c5492016-06-13 20:21:50 -070074static struct sk_buff *defer_kfree_skb_list;
75void rtnl_kfree_skbs(struct sk_buff *head, struct sk_buff *tail)
76{
77 if (head && tail) {
78 tail->next = defer_kfree_skb_list;
79 defer_kfree_skb_list = head;
80 }
81}
82EXPORT_SYMBOL(rtnl_kfree_skbs);
83
Stephen Hemminger6756ae42006-03-20 22:23:58 -080084void __rtnl_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Eric Dumazet1b5c5492016-06-13 20:21:50 -070086 struct sk_buff *head = defer_kfree_skb_list;
87
88 defer_kfree_skb_list = NULL;
89
Stephen Hemminger6756ae42006-03-20 22:23:58 -080090 mutex_unlock(&rtnl_mutex);
Eric Dumazet1b5c5492016-06-13 20:21:50 -070091
92 while (head) {
93 struct sk_buff *next = head->next;
94
95 kfree_skb(head);
96 cond_resched();
97 head = next;
98 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101void rtnl_unlock(void)
102{
Herbert Xu58ec3b42008-10-07 15:50:03 -0700103 /* This fellow will unlock it for us. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 netdev_run_todo();
105}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800106EXPORT_SYMBOL(rtnl_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800108int rtnl_trylock(void)
109{
110 return mutex_trylock(&rtnl_mutex);
111}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800112EXPORT_SYMBOL(rtnl_trylock);
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800113
Patrick McHardyc9c10142008-04-23 22:10:48 -0700114int rtnl_is_locked(void)
115{
116 return mutex_is_locked(&rtnl_mutex);
117}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800118EXPORT_SYMBOL(rtnl_is_locked);
Patrick McHardyc9c10142008-04-23 22:10:48 -0700119
Paul E. McKenneya898def2010-02-22 17:04:49 -0800120#ifdef CONFIG_PROVE_LOCKING
Yaowei Bai0cbf3342015-10-08 21:29:02 +0800121bool lockdep_rtnl_is_held(void)
Paul E. McKenneya898def2010-02-22 17:04:49 -0800122{
123 return lockdep_is_held(&rtnl_mutex);
124}
125EXPORT_SYMBOL(lockdep_rtnl_is_held);
126#endif /* #ifdef CONFIG_PROVE_LOCKING */
127
Patrick McHardy25239ce2010-04-26 16:02:05 +0200128static struct rtnl_link *rtnl_msg_handlers[RTNL_FAMILY_MAX + 1];
Thomas Grafe2849862007-03-22 11:48:11 -0700129
130static inline int rtm_msgindex(int msgtype)
131{
132 int msgindex = msgtype - RTM_BASE;
133
134 /*
135 * msgindex < 0 implies someone tried to register a netlink
136 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
137 * the message type has not been added to linux/rtnetlink.h
138 */
139 BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
140
141 return msgindex;
142}
143
144static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
145{
146 struct rtnl_link *tab;
147
Patrick McHardy25239ce2010-04-26 16:02:05 +0200148 if (protocol <= RTNL_FAMILY_MAX)
Patrick McHardy0f87b1d2010-04-13 05:03:17 +0000149 tab = rtnl_msg_handlers[protocol];
150 else
151 tab = NULL;
152
Thomas Graf51057f22007-03-22 21:41:06 -0700153 if (tab == NULL || tab[msgindex].doit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700154 tab = rtnl_msg_handlers[PF_UNSPEC];
155
Hans Zhangc80bbea2012-10-22 22:21:23 +0000156 return tab[msgindex].doit;
Thomas Grafe2849862007-03-22 11:48:11 -0700157}
158
159static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
160{
161 struct rtnl_link *tab;
162
Patrick McHardy25239ce2010-04-26 16:02:05 +0200163 if (protocol <= RTNL_FAMILY_MAX)
Patrick McHardy0f87b1d2010-04-13 05:03:17 +0000164 tab = rtnl_msg_handlers[protocol];
165 else
166 tab = NULL;
167
Thomas Graf51057f22007-03-22 21:41:06 -0700168 if (tab == NULL || tab[msgindex].dumpit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700169 tab = rtnl_msg_handlers[PF_UNSPEC];
170
Hans Zhangc80bbea2012-10-22 22:21:23 +0000171 return tab[msgindex].dumpit;
Thomas Grafe2849862007-03-22 11:48:11 -0700172}
173
Greg Rosec7ac8672011-06-10 01:27:09 +0000174static rtnl_calcit_func rtnl_get_calcit(int protocol, int msgindex)
175{
176 struct rtnl_link *tab;
177
178 if (protocol <= RTNL_FAMILY_MAX)
179 tab = rtnl_msg_handlers[protocol];
180 else
181 tab = NULL;
182
183 if (tab == NULL || tab[msgindex].calcit == NULL)
184 tab = rtnl_msg_handlers[PF_UNSPEC];
185
Hans Zhangc80bbea2012-10-22 22:21:23 +0000186 return tab[msgindex].calcit;
Greg Rosec7ac8672011-06-10 01:27:09 +0000187}
188
Thomas Grafe2849862007-03-22 11:48:11 -0700189/**
190 * __rtnl_register - Register a rtnetlink message type
191 * @protocol: Protocol family or PF_UNSPEC
192 * @msgtype: rtnetlink message type
193 * @doit: Function pointer called for each request message
194 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
Greg Rosec7ac8672011-06-10 01:27:09 +0000195 * @calcit: Function pointer to calc size of dump message
Thomas Grafe2849862007-03-22 11:48:11 -0700196 *
197 * Registers the specified function pointers (at least one of them has
198 * to be non-NULL) to be called whenever a request message for the
199 * specified protocol family and message type is received.
200 *
201 * The special protocol family PF_UNSPEC may be used to define fallback
202 * function pointers for the case when no entry for the specific protocol
203 * family exists.
204 *
205 * Returns 0 on success or a negative error code.
206 */
207int __rtnl_register(int protocol, int msgtype,
Greg Rosec7ac8672011-06-10 01:27:09 +0000208 rtnl_doit_func doit, rtnl_dumpit_func dumpit,
209 rtnl_calcit_func calcit)
Thomas Grafe2849862007-03-22 11:48:11 -0700210{
211 struct rtnl_link *tab;
212 int msgindex;
213
Patrick McHardy25239ce2010-04-26 16:02:05 +0200214 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700215 msgindex = rtm_msgindex(msgtype);
216
217 tab = rtnl_msg_handlers[protocol];
218 if (tab == NULL) {
219 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
220 if (tab == NULL)
221 return -ENOBUFS;
222
223 rtnl_msg_handlers[protocol] = tab;
224 }
225
226 if (doit)
227 tab[msgindex].doit = doit;
228
229 if (dumpit)
230 tab[msgindex].dumpit = dumpit;
231
Greg Rosec7ac8672011-06-10 01:27:09 +0000232 if (calcit)
233 tab[msgindex].calcit = calcit;
234
Thomas Grafe2849862007-03-22 11:48:11 -0700235 return 0;
236}
Thomas Grafe2849862007-03-22 11:48:11 -0700237EXPORT_SYMBOL_GPL(__rtnl_register);
238
239/**
240 * rtnl_register - Register a rtnetlink message type
241 *
242 * Identical to __rtnl_register() but panics on failure. This is useful
243 * as failure of this function is very unlikely, it can only happen due
244 * to lack of memory when allocating the chain to store all message
245 * handlers for a protocol. Meant for use in init functions where lack
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300246 * of memory implies no sense in continuing.
Thomas Grafe2849862007-03-22 11:48:11 -0700247 */
248void rtnl_register(int protocol, int msgtype,
Greg Rosec7ac8672011-06-10 01:27:09 +0000249 rtnl_doit_func doit, rtnl_dumpit_func dumpit,
250 rtnl_calcit_func calcit)
Thomas Grafe2849862007-03-22 11:48:11 -0700251{
Greg Rosec7ac8672011-06-10 01:27:09 +0000252 if (__rtnl_register(protocol, msgtype, doit, dumpit, calcit) < 0)
Thomas Grafe2849862007-03-22 11:48:11 -0700253 panic("Unable to register rtnetlink message handler, "
254 "protocol = %d, message type = %d\n",
255 protocol, msgtype);
256}
Thomas Grafe2849862007-03-22 11:48:11 -0700257EXPORT_SYMBOL_GPL(rtnl_register);
258
259/**
260 * rtnl_unregister - Unregister a rtnetlink message type
261 * @protocol: Protocol family or PF_UNSPEC
262 * @msgtype: rtnetlink message type
263 *
264 * Returns 0 on success or a negative error code.
265 */
266int rtnl_unregister(int protocol, int msgtype)
267{
268 int msgindex;
269
Patrick McHardy25239ce2010-04-26 16:02:05 +0200270 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700271 msgindex = rtm_msgindex(msgtype);
272
273 if (rtnl_msg_handlers[protocol] == NULL)
274 return -ENOENT;
275
276 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
277 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
Mathias Krausef567e952016-11-07 23:22:19 +0100278 rtnl_msg_handlers[protocol][msgindex].calcit = NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700279
280 return 0;
281}
Thomas Grafe2849862007-03-22 11:48:11 -0700282EXPORT_SYMBOL_GPL(rtnl_unregister);
283
284/**
285 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
286 * @protocol : Protocol family or PF_UNSPEC
287 *
288 * Identical to calling rtnl_unregster() for all registered message types
289 * of a certain protocol family.
290 */
291void rtnl_unregister_all(int protocol)
292{
Patrick McHardy25239ce2010-04-26 16:02:05 +0200293 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700294
295 kfree(rtnl_msg_handlers[protocol]);
296 rtnl_msg_handlers[protocol] = NULL;
297}
Thomas Grafe2849862007-03-22 11:48:11 -0700298EXPORT_SYMBOL_GPL(rtnl_unregister_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Patrick McHardy38f7b872007-06-13 12:03:51 -0700300static LIST_HEAD(link_ops);
301
Eric Dumazetc63044f2011-12-13 11:38:00 +0000302static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
303{
304 const struct rtnl_link_ops *ops;
305
306 list_for_each_entry(ops, &link_ops, list) {
307 if (!strcmp(ops->kind, kind))
308 return ops;
309 }
310 return NULL;
311}
312
Patrick McHardy38f7b872007-06-13 12:03:51 -0700313/**
314 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
315 * @ops: struct rtnl_link_ops * to register
316 *
317 * The caller must hold the rtnl_mutex. This function should be used
318 * by drivers that create devices during module initialization. It
319 * must be called before registering the devices.
320 *
321 * Returns 0 on success or a negative error code.
322 */
323int __rtnl_link_register(struct rtnl_link_ops *ops)
324{
Eric Dumazetc63044f2011-12-13 11:38:00 +0000325 if (rtnl_link_ops_get(ops->kind))
326 return -EEXIST;
327
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +0200328 /* The check for setup is here because if ops
329 * does not have that filled up, it is not possible
330 * to use the ops for creating device. So do not
331 * fill up dellink as well. That disables rtnl_dellink.
332 */
333 if (ops->setup && !ops->dellink)
Eric Dumazet23289a32009-10-27 07:06:36 +0000334 ops->dellink = unregister_netdevice_queue;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700335
Patrick McHardy38f7b872007-06-13 12:03:51 -0700336 list_add_tail(&ops->list, &link_ops);
337 return 0;
338}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700339EXPORT_SYMBOL_GPL(__rtnl_link_register);
340
341/**
342 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
343 * @ops: struct rtnl_link_ops * to register
344 *
345 * Returns 0 on success or a negative error code.
346 */
347int rtnl_link_register(struct rtnl_link_ops *ops)
348{
349 int err;
350
351 rtnl_lock();
352 err = __rtnl_link_register(ops);
353 rtnl_unlock();
354 return err;
355}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700356EXPORT_SYMBOL_GPL(rtnl_link_register);
357
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700358static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
359{
360 struct net_device *dev;
Eric Dumazet23289a32009-10-27 07:06:36 +0000361 LIST_HEAD(list_kill);
362
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700363 for_each_netdev(net, dev) {
Eric Dumazet23289a32009-10-27 07:06:36 +0000364 if (dev->rtnl_link_ops == ops)
365 ops->dellink(dev, &list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700366 }
Eric Dumazet23289a32009-10-27 07:06:36 +0000367 unregister_netdevice_many(&list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700368}
369
Patrick McHardy38f7b872007-06-13 12:03:51 -0700370/**
371 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
372 * @ops: struct rtnl_link_ops * to unregister
373 *
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700374 * The caller must hold the rtnl_mutex.
Patrick McHardy38f7b872007-06-13 12:03:51 -0700375 */
376void __rtnl_link_unregister(struct rtnl_link_ops *ops)
377{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700378 struct net *net;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700379
Eric W. Biederman881d9662007-09-17 11:56:21 -0700380 for_each_net(net) {
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700381 __rtnl_kill_links(net, ops);
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700382 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700383 list_del(&ops->list);
384}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700385EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
386
Cong Wang200b9162014-05-12 15:11:20 -0700387/* Return with the rtnl_lock held when there are no network
388 * devices unregistering in any network namespace.
389 */
390static void rtnl_lock_unregistering_all(void)
391{
392 struct net *net;
393 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +0100394 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Cong Wang200b9162014-05-12 15:11:20 -0700395
Peter Zijlstraff960a72014-10-29 17:04:56 +0100396 add_wait_queue(&netdev_unregistering_wq, &wait);
Cong Wang200b9162014-05-12 15:11:20 -0700397 for (;;) {
Cong Wang200b9162014-05-12 15:11:20 -0700398 unregistering = false;
399 rtnl_lock();
400 for_each_net(net) {
401 if (net->dev_unreg_count > 0) {
402 unregistering = true;
403 break;
404 }
405 }
406 if (!unregistering)
407 break;
408 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +0100409
410 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Cong Wang200b9162014-05-12 15:11:20 -0700411 }
Peter Zijlstraff960a72014-10-29 17:04:56 +0100412 remove_wait_queue(&netdev_unregistering_wq, &wait);
Cong Wang200b9162014-05-12 15:11:20 -0700413}
414
Patrick McHardy38f7b872007-06-13 12:03:51 -0700415/**
416 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
417 * @ops: struct rtnl_link_ops * to unregister
418 */
419void rtnl_link_unregister(struct rtnl_link_ops *ops)
420{
Cong Wang200b9162014-05-12 15:11:20 -0700421 /* Close the race with cleanup_net() */
422 mutex_lock(&net_mutex);
423 rtnl_lock_unregistering_all();
Patrick McHardy38f7b872007-06-13 12:03:51 -0700424 __rtnl_link_unregister(ops);
425 rtnl_unlock();
Cong Wang200b9162014-05-12 15:11:20 -0700426 mutex_unlock(&net_mutex);
Patrick McHardy38f7b872007-06-13 12:03:51 -0700427}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700428EXPORT_SYMBOL_GPL(rtnl_link_unregister);
429
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100430static size_t rtnl_link_get_slave_info_data_size(const struct net_device *dev)
431{
432 struct net_device *master_dev;
433 const struct rtnl_link_ops *ops;
434
435 master_dev = netdev_master_upper_dev_get((struct net_device *) dev);
436 if (!master_dev)
437 return 0;
438 ops = master_dev->rtnl_link_ops;
Fernando Luis Vazquez Cao6049f252014-02-04 19:35:02 +0900439 if (!ops || !ops->get_slave_size)
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100440 return 0;
441 /* IFLA_INFO_SLAVE_DATA + nested data */
442 return nla_total_size(sizeof(struct nlattr)) +
443 ops->get_slave_size(master_dev, dev);
444}
445
Patrick McHardy38f7b872007-06-13 12:03:51 -0700446static size_t rtnl_link_get_size(const struct net_device *dev)
447{
448 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
449 size_t size;
450
451 if (!ops)
452 return 0;
453
Thomas Graf369cf772010-11-11 15:47:59 +0000454 size = nla_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
455 nla_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700456
457 if (ops->get_size)
458 /* IFLA_INFO_DATA + nested data */
Thomas Graf369cf772010-11-11 15:47:59 +0000459 size += nla_total_size(sizeof(struct nlattr)) +
Patrick McHardy38f7b872007-06-13 12:03:51 -0700460 ops->get_size(dev);
461
462 if (ops->get_xstats_size)
Thomas Graf369cf772010-11-11 15:47:59 +0000463 /* IFLA_INFO_XSTATS */
464 size += nla_total_size(ops->get_xstats_size(dev));
Patrick McHardy38f7b872007-06-13 12:03:51 -0700465
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100466 size += rtnl_link_get_slave_info_data_size(dev);
467
Patrick McHardy38f7b872007-06-13 12:03:51 -0700468 return size;
469}
470
Thomas Graff8ff1822010-11-16 04:30:14 +0000471static LIST_HEAD(rtnl_af_ops);
472
473static const struct rtnl_af_ops *rtnl_af_lookup(const int family)
474{
475 const struct rtnl_af_ops *ops;
476
477 list_for_each_entry(ops, &rtnl_af_ops, list) {
478 if (ops->family == family)
479 return ops;
480 }
481
482 return NULL;
483}
484
485/**
Thomas Graff8ff1822010-11-16 04:30:14 +0000486 * rtnl_af_register - Register rtnl_af_ops with rtnetlink.
487 * @ops: struct rtnl_af_ops * to register
488 *
489 * Returns 0 on success or a negative error code.
490 */
stephen hemminger3678a9d2013-12-30 10:41:32 -0800491void rtnl_af_register(struct rtnl_af_ops *ops)
Thomas Graff8ff1822010-11-16 04:30:14 +0000492{
Thomas Graff8ff1822010-11-16 04:30:14 +0000493 rtnl_lock();
stephen hemminger3678a9d2013-12-30 10:41:32 -0800494 list_add_tail(&ops->list, &rtnl_af_ops);
Thomas Graff8ff1822010-11-16 04:30:14 +0000495 rtnl_unlock();
Thomas Graff8ff1822010-11-16 04:30:14 +0000496}
497EXPORT_SYMBOL_GPL(rtnl_af_register);
498
499/**
500 * __rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
501 * @ops: struct rtnl_af_ops * to unregister
502 *
503 * The caller must hold the rtnl_mutex.
504 */
505void __rtnl_af_unregister(struct rtnl_af_ops *ops)
506{
507 list_del(&ops->list);
508}
509EXPORT_SYMBOL_GPL(__rtnl_af_unregister);
510
511/**
512 * rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
513 * @ops: struct rtnl_af_ops * to unregister
514 */
515void rtnl_af_unregister(struct rtnl_af_ops *ops)
516{
517 rtnl_lock();
518 __rtnl_af_unregister(ops);
519 rtnl_unlock();
520}
521EXPORT_SYMBOL_GPL(rtnl_af_unregister);
522
Arad, Ronenb1974ed2015-10-19 09:23:28 -0700523static size_t rtnl_link_get_af_size(const struct net_device *dev,
524 u32 ext_filter_mask)
Thomas Graff8ff1822010-11-16 04:30:14 +0000525{
526 struct rtnl_af_ops *af_ops;
527 size_t size;
528
529 /* IFLA_AF_SPEC */
530 size = nla_total_size(sizeof(struct nlattr));
531
532 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
533 if (af_ops->get_link_af_size) {
534 /* AF_* + nested data */
535 size += nla_total_size(sizeof(struct nlattr)) +
Arad, Ronenb1974ed2015-10-19 09:23:28 -0700536 af_ops->get_link_af_size(dev, ext_filter_mask);
Thomas Graff8ff1822010-11-16 04:30:14 +0000537 }
538 }
539
540 return size;
541}
542
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100543static bool rtnl_have_link_slave_info(const struct net_device *dev)
544{
545 struct net_device *master_dev;
546
547 master_dev = netdev_master_upper_dev_get((struct net_device *) dev);
Jiri Pirko813f0202014-01-23 19:19:21 +0100548 if (master_dev && master_dev->rtnl_link_ops)
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100549 return true;
550 return false;
551}
552
553static int rtnl_link_slave_info_fill(struct sk_buff *skb,
554 const struct net_device *dev)
555{
556 struct net_device *master_dev;
557 const struct rtnl_link_ops *ops;
558 struct nlattr *slave_data;
559 int err;
560
561 master_dev = netdev_master_upper_dev_get((struct net_device *) dev);
562 if (!master_dev)
563 return 0;
564 ops = master_dev->rtnl_link_ops;
565 if (!ops)
566 return 0;
567 if (nla_put_string(skb, IFLA_INFO_SLAVE_KIND, ops->kind) < 0)
568 return -EMSGSIZE;
569 if (ops->fill_slave_info) {
570 slave_data = nla_nest_start(skb, IFLA_INFO_SLAVE_DATA);
571 if (!slave_data)
572 return -EMSGSIZE;
573 err = ops->fill_slave_info(skb, master_dev, dev);
574 if (err < 0)
575 goto err_cancel_slave_data;
576 nla_nest_end(skb, slave_data);
577 }
578 return 0;
579
580err_cancel_slave_data:
581 nla_nest_cancel(skb, slave_data);
582 return err;
583}
584
585static int rtnl_link_info_fill(struct sk_buff *skb,
586 const struct net_device *dev)
Patrick McHardy38f7b872007-06-13 12:03:51 -0700587{
588 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100589 struct nlattr *data;
590 int err;
591
592 if (!ops)
593 return 0;
594 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
595 return -EMSGSIZE;
596 if (ops->fill_xstats) {
597 err = ops->fill_xstats(skb, dev);
598 if (err < 0)
599 return err;
600 }
601 if (ops->fill_info) {
602 data = nla_nest_start(skb, IFLA_INFO_DATA);
603 if (data == NULL)
604 return -EMSGSIZE;
605 err = ops->fill_info(skb, dev);
606 if (err < 0)
607 goto err_cancel_data;
608 nla_nest_end(skb, data);
609 }
610 return 0;
611
612err_cancel_data:
613 nla_nest_cancel(skb, data);
614 return err;
615}
616
617static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
618{
619 struct nlattr *linkinfo;
Patrick McHardy38f7b872007-06-13 12:03:51 -0700620 int err = -EMSGSIZE;
621
622 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
623 if (linkinfo == NULL)
624 goto out;
625
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100626 err = rtnl_link_info_fill(skb, dev);
627 if (err < 0)
Patrick McHardy38f7b872007-06-13 12:03:51 -0700628 goto err_cancel_link;
Jiri Pirkoba7d49b2014-01-22 09:05:55 +0100629
630 err = rtnl_link_slave_info_fill(skb, dev);
631 if (err < 0)
632 goto err_cancel_link;
Patrick McHardy38f7b872007-06-13 12:03:51 -0700633
634 nla_nest_end(skb, linkinfo);
635 return 0;
636
Patrick McHardy38f7b872007-06-13 12:03:51 -0700637err_cancel_link:
638 nla_nest_cancel(skb, linkinfo);
639out:
640 return err;
641}
642
Eric Dumazet95c96172012-04-15 05:58:06 +0000643int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned int group, int echo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800645 struct sock *rtnl = net->rtnl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 int err = 0;
647
Patrick McHardyac6d4392005-08-14 19:29:52 -0700648 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (echo)
650 atomic_inc(&skb->users);
651 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
652 if (echo)
653 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
654 return err;
655}
656
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800657int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
Thomas Graf2942e902006-08-15 00:30:25 -0700658{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800659 struct sock *rtnl = net->rtnl;
660
Thomas Graf2942e902006-08-15 00:30:25 -0700661 return nlmsg_unicast(rtnl, skb, pid);
662}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800663EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf2942e902006-08-15 00:30:25 -0700664
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800665void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
666 struct nlmsghdr *nlh, gfp_t flags)
Thomas Graf97676b62006-08-15 00:31:41 -0700667{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800668 struct sock *rtnl = net->rtnl;
Thomas Graf97676b62006-08-15 00:31:41 -0700669 int report = 0;
670
671 if (nlh)
672 report = nlmsg_report(nlh);
673
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800674 nlmsg_notify(rtnl, skb, pid, group, report, flags);
Thomas Graf97676b62006-08-15 00:31:41 -0700675}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800676EXPORT_SYMBOL(rtnl_notify);
Thomas Graf97676b62006-08-15 00:31:41 -0700677
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800678void rtnl_set_sk_err(struct net *net, u32 group, int error)
Thomas Graf97676b62006-08-15 00:31:41 -0700679{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800680 struct sock *rtnl = net->rtnl;
681
Thomas Graf97676b62006-08-15 00:31:41 -0700682 netlink_set_err(rtnl, 0, group, error);
683}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800684EXPORT_SYMBOL(rtnl_set_sk_err);
Thomas Graf97676b62006-08-15 00:31:41 -0700685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
687{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700688 struct nlattr *mx;
689 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Thomas Graf2d7202b2006-08-22 00:01:27 -0700691 mx = nla_nest_start(skb, RTA_METRICS);
692 if (mx == NULL)
693 return -ENOBUFS;
694
695 for (i = 0; i < RTAX_MAX; i++) {
696 if (metrics[i]) {
Daniel Borkmannea697632015-01-05 23:57:47 +0100697 if (i == RTAX_CC_ALGO - 1) {
698 char tmp[TCP_CA_NAME_MAX], *name;
699
700 name = tcp_ca_get_name_by_key(metrics[i], tmp);
701 if (!name)
702 continue;
703 if (nla_put_string(skb, i + 1, name))
704 goto nla_put_failure;
Daniel Borkmannc3a8d942015-08-31 15:58:47 +0200705 } else if (i == RTAX_FEATURES - 1) {
706 u32 user_features = metrics[i] & RTAX_FEATURE_MASK;
707
Phil Sutterf8edcd12016-08-23 13:14:31 +0200708 if (!user_features)
709 continue;
Daniel Borkmannc3a8d942015-08-31 15:58:47 +0200710 BUILD_BUG_ON(RTAX_FEATURE_MASK & DST_FEATURE_MASK);
711 if (nla_put_u32(skb, i + 1, user_features))
712 goto nla_put_failure;
Daniel Borkmannea697632015-01-05 23:57:47 +0100713 } else {
714 if (nla_put_u32(skb, i + 1, metrics[i]))
715 goto nla_put_failure;
716 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700717 valid++;
Thomas Graf2d7202b2006-08-22 00:01:27 -0700718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
David S. Millera57d27f2006-08-22 22:20:14 -0700721 if (!valid) {
722 nla_nest_cancel(skb, mx);
723 return 0;
724 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700725
726 return nla_nest_end(skb, mx);
727
728nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700729 nla_nest_cancel(skb, mx);
730 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800732EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Thomas Grafe3703b32006-11-27 09:27:07 -0800734int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
David S. Miller87a50692012-07-10 05:06:14 -0700735 long expires, u32 error)
Thomas Grafe3703b32006-11-27 09:27:07 -0800736{
737 struct rta_cacheinfo ci = {
Eric Dumazeta399a802012-08-08 21:13:53 +0000738 .rta_lastuse = jiffies_delta_to_clock_t(jiffies - dst->lastuse),
Thomas Grafe3703b32006-11-27 09:27:07 -0800739 .rta_used = dst->__use,
740 .rta_clntref = atomic_read(&(dst->__refcnt)),
741 .rta_error = error,
742 .rta_id = id,
Thomas Grafe3703b32006-11-27 09:27:07 -0800743 };
744
Li Wei82539472012-07-29 16:01:30 +0000745 if (expires) {
746 unsigned long clock;
Thomas Grafe3703b32006-11-27 09:27:07 -0800747
Li Wei82539472012-07-29 16:01:30 +0000748 clock = jiffies_to_clock_t(abs(expires));
749 clock = min_t(unsigned long, clock, INT_MAX);
750 ci.rta_expires = (expires > 0) ? clock : -clock;
751 }
Thomas Grafe3703b32006-11-27 09:27:07 -0800752 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
753}
Thomas Grafe3703b32006-11-27 09:27:07 -0800754EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
David S. Miller93b2d4a2008-02-17 18:35:07 -0800756static void set_operstate(struct net_device *dev, unsigned char transition)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800757{
758 unsigned char operstate = dev->operstate;
759
Eric Dumazete0d087a2009-11-07 01:26:17 -0800760 switch (transition) {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800761 case IF_OPER_UP:
762 if ((operstate == IF_OPER_DORMANT ||
763 operstate == IF_OPER_UNKNOWN) &&
764 !netif_dormant(dev))
765 operstate = IF_OPER_UP;
766 break;
767
768 case IF_OPER_DORMANT:
769 if (operstate == IF_OPER_UP ||
770 operstate == IF_OPER_UNKNOWN)
771 operstate = IF_OPER_DORMANT;
772 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700773 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800774
775 if (dev->operstate != operstate) {
776 write_lock_bh(&dev_base_lock);
777 dev->operstate = operstate;
778 write_unlock_bh(&dev_base_lock);
David S. Miller93b2d4a2008-02-17 18:35:07 -0800779 netdev_state_change(dev);
780 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800781}
782
Jiri Bencb1beb682012-07-27 02:58:22 +0000783static unsigned int rtnl_dev_get_flags(const struct net_device *dev)
784{
785 return (dev->flags & ~(IFF_PROMISC | IFF_ALLMULTI)) |
786 (dev->gflags & (IFF_PROMISC | IFF_ALLMULTI));
787}
788
Patrick McHardy3729d502010-02-26 06:34:54 +0000789static unsigned int rtnl_dev_combine_flags(const struct net_device *dev,
790 const struct ifinfomsg *ifm)
791{
792 unsigned int flags = ifm->ifi_flags;
793
794 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
795 if (ifm->ifi_change)
796 flags = (flags & ifm->ifi_change) |
Jiri Bencb1beb682012-07-27 02:58:22 +0000797 (rtnl_dev_get_flags(dev) & ~ifm->ifi_change);
Patrick McHardy3729d502010-02-26 06:34:54 +0000798
799 return flags;
800}
801
Thomas Grafb60c5112006-08-04 23:05:34 -0700802static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000803 const struct rtnl_link_stats64 *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Thomas Grafb60c5112006-08-04 23:05:34 -0700805 a->rx_packets = b->rx_packets;
806 a->tx_packets = b->tx_packets;
807 a->rx_bytes = b->rx_bytes;
808 a->tx_bytes = b->tx_bytes;
809 a->rx_errors = b->rx_errors;
810 a->tx_errors = b->tx_errors;
811 a->rx_dropped = b->rx_dropped;
812 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Thomas Grafb60c5112006-08-04 23:05:34 -0700814 a->multicast = b->multicast;
815 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Thomas Grafb60c5112006-08-04 23:05:34 -0700817 a->rx_length_errors = b->rx_length_errors;
818 a->rx_over_errors = b->rx_over_errors;
819 a->rx_crc_errors = b->rx_crc_errors;
820 a->rx_frame_errors = b->rx_frame_errors;
821 a->rx_fifo_errors = b->rx_fifo_errors;
822 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Thomas Grafb60c5112006-08-04 23:05:34 -0700824 a->tx_aborted_errors = b->tx_aborted_errors;
825 a->tx_carrier_errors = b->tx_carrier_errors;
826 a->tx_fifo_errors = b->tx_fifo_errors;
827 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
828 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Thomas Grafb60c5112006-08-04 23:05:34 -0700830 a->rx_compressed = b->rx_compressed;
831 a->tx_compressed = b->tx_compressed;
Jarod Wilson6e7333d2016-02-01 18:51:05 -0500832
833 a->rx_nohandler = b->rx_nohandler;
Jan Engelhardt10708f32010-03-11 09:57:29 +0000834}
835
Chris Wrightc02db8c2010-05-16 01:05:45 -0700836/* All VF info */
Greg Rose115c9b82012-02-21 16:54:48 -0500837static inline int rtnl_vfinfo_size(const struct net_device *dev,
838 u32 ext_filter_mask)
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000839{
Phil Sutter9af15c32017-01-18 14:04:39 +0100840 if (dev->dev.parent && (ext_filter_mask & RTEXT_FILTER_VF)) {
Chris Wrightc02db8c2010-05-16 01:05:45 -0700841 int num_vfs = dev_num_vf(dev->dev.parent);
Sabrina Dubroca7e75f742016-11-15 10:39:03 +0100842 size_t size = nla_total_size(0);
Scott Feldman045de012010-05-28 03:42:43 -0700843 size += num_vfs *
Sabrina Dubroca7e75f742016-11-15 10:39:03 +0100844 (nla_total_size(0) +
845 nla_total_size(sizeof(struct ifla_vf_mac)) +
846 nla_total_size(sizeof(struct ifla_vf_vlan)) +
847 nla_total_size(0) + /* nest IFLA_VF_VLAN_LIST */
Moshe Shemesh79aab092016-09-22 12:11:15 +0300848 nla_total_size(MAX_VLAN_LIST_LEN *
849 sizeof(struct ifla_vf_vlan_info)) +
Sucheta Chakrabortyed616682014-05-22 09:59:05 -0400850 nla_total_size(sizeof(struct ifla_vf_spoofchk)) +
Sabrina Dubroca7e75f742016-11-15 10:39:03 +0100851 nla_total_size(sizeof(struct ifla_vf_tx_rate)) +
Jiri Benc945a3672014-08-08 16:44:32 +0200852 nla_total_size(sizeof(struct ifla_vf_rate)) +
Vlad Zolotarov01a3d792015-03-30 21:35:23 +0300853 nla_total_size(sizeof(struct ifla_vf_link_state)) +
Eran Ben Elisha3b766cd2015-06-15 17:59:07 +0300854 nla_total_size(sizeof(struct ifla_vf_rss_query_en)) +
Sabrina Dubroca7e75f742016-11-15 10:39:03 +0100855 nla_total_size(0) + /* nest IFLA_VF_STATS */
Eran Ben Elisha3b766cd2015-06-15 17:59:07 +0300856 /* IFLA_VF_STATS_RX_PACKETS */
Nicolas Dichtel343a6d82016-04-25 10:25:14 +0200857 nla_total_size_64bit(sizeof(__u64)) +
Eran Ben Elisha3b766cd2015-06-15 17:59:07 +0300858 /* IFLA_VF_STATS_TX_PACKETS */
Nicolas Dichtel343a6d82016-04-25 10:25:14 +0200859 nla_total_size_64bit(sizeof(__u64)) +
Eran Ben Elisha3b766cd2015-06-15 17:59:07 +0300860 /* IFLA_VF_STATS_RX_BYTES */
Nicolas Dichtel343a6d82016-04-25 10:25:14 +0200861 nla_total_size_64bit(sizeof(__u64)) +
Eran Ben Elisha3b766cd2015-06-15 17:59:07 +0300862 /* IFLA_VF_STATS_TX_BYTES */
Nicolas Dichtel343a6d82016-04-25 10:25:14 +0200863 nla_total_size_64bit(sizeof(__u64)) +
Eran Ben Elisha3b766cd2015-06-15 17:59:07 +0300864 /* IFLA_VF_STATS_BROADCAST */
Nicolas Dichtel343a6d82016-04-25 10:25:14 +0200865 nla_total_size_64bit(sizeof(__u64)) +
Eran Ben Elisha3b766cd2015-06-15 17:59:07 +0300866 /* IFLA_VF_STATS_MULTICAST */
Nicolas Dichtel343a6d82016-04-25 10:25:14 +0200867 nla_total_size_64bit(sizeof(__u64)) +
Hiroshi Shimamotodd461d62015-08-28 06:57:55 +0000868 nla_total_size(sizeof(struct ifla_vf_trust)));
Chris Wrightc02db8c2010-05-16 01:05:45 -0700869 return size;
870 } else
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000871 return 0;
872}
873
David Gibsonc53864f2014-04-24 10:22:36 +1000874static size_t rtnl_port_size(const struct net_device *dev,
875 u32 ext_filter_mask)
Scott Feldman57b61082010-05-17 22:49:55 -0700876{
877 size_t port_size = nla_total_size(4) /* PORT_VF */
878 + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */
Scott Feldman57b61082010-05-17 22:49:55 -0700879 + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */
880 + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */
881 + nla_total_size(1) /* PROT_VDP_REQUEST */
882 + nla_total_size(2); /* PORT_VDP_RESPONSE */
883 size_t vf_ports_size = nla_total_size(sizeof(struct nlattr));
884 size_t vf_port_size = nla_total_size(sizeof(struct nlattr))
885 + port_size;
886 size_t port_self_size = nla_total_size(sizeof(struct nlattr))
887 + port_size;
888
David Gibsonc53864f2014-04-24 10:22:36 +1000889 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent ||
890 !(ext_filter_mask & RTEXT_FILTER_VF))
Scott Feldman57b61082010-05-17 22:49:55 -0700891 return 0;
892 if (dev_num_vf(dev->dev.parent))
893 return port_self_size + vf_ports_size +
894 vf_port_size * dev_num_vf(dev->dev.parent);
895 else
896 return port_self_size;
897}
898
Brenden Blancod1fdd912016-07-19 12:16:49 -0700899static size_t rtnl_xdp_size(const struct net_device *dev)
900{
Sabrina Dubrocab3cfaa32016-11-15 11:16:35 +0100901 size_t xdp_size = nla_total_size(0) + /* nest IFLA_XDP */
902 nla_total_size(1); /* XDP_ATTACHED */
Brenden Blancod1fdd912016-07-19 12:16:49 -0700903
904 if (!dev->netdev_ops->ndo_xdp)
905 return 0;
906 else
907 return xdp_size;
908}
909
Greg Rose115c9b82012-02-21 16:54:48 -0500910static noinline size_t if_nlmsg_size(const struct net_device *dev,
911 u32 ext_filter_mask)
Thomas Graf339bf982006-11-10 14:10:15 -0800912{
913 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
914 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700915 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
Thomas Graf339bf982006-11-10 14:10:15 -0800916 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
Nicolas Dichtel270cb4d2016-04-26 10:06:16 +0200917 + nla_total_size_64bit(sizeof(struct rtnl_link_ifmap))
Thomas Graf339bf982006-11-10 14:10:15 -0800918 + nla_total_size(sizeof(struct rtnl_link_stats))
David S. Miller35c58452016-04-19 19:49:29 -0400919 + nla_total_size_64bit(sizeof(struct rtnl_link_stats64))
Thomas Graf339bf982006-11-10 14:10:15 -0800920 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
921 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
922 + nla_total_size(4) /* IFLA_TXQLEN */
923 + nla_total_size(4) /* IFLA_WEIGHT */
924 + nla_total_size(4) /* IFLA_MTU */
925 + nla_total_size(4) /* IFLA_LINK */
926 + nla_total_size(4) /* IFLA_MASTER */
Jiri Pirko9a572472012-12-27 23:49:39 +0000927 + nla_total_size(1) /* IFLA_CARRIER */
Ben Greearedbc0bb2012-03-29 12:51:30 +0000928 + nla_total_size(4) /* IFLA_PROMISCUITY */
Jiri Pirko76ff5cc2012-07-20 02:28:48 +0000929 + nla_total_size(4) /* IFLA_NUM_TX_QUEUES */
930 + nla_total_size(4) /* IFLA_NUM_RX_QUEUES */
Tobias Klauser69197562016-11-30 14:30:37 +0100931 + nla_total_size(4) /* IFLA_GSO_MAX_SEGS */
932 + nla_total_size(4) /* IFLA_GSO_MAX_SIZE */
Thomas Graf339bf982006-11-10 14:10:15 -0800933 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700934 + nla_total_size(1) /* IFLA_LINKMODE */
david decotigny2d3b4792014-03-29 09:48:35 -0700935 + nla_total_size(4) /* IFLA_CARRIER_CHANGES */
Nicolas Dichteld37512a2015-01-15 15:11:16 +0100936 + nla_total_size(4) /* IFLA_LINK_NETNSID */
Greg Rose115c9b82012-02-21 16:54:48 -0500937 + nla_total_size(ext_filter_mask
938 & RTEXT_FILTER_VF ? 4 : 0) /* IFLA_NUM_VF */
939 + rtnl_vfinfo_size(dev, ext_filter_mask) /* IFLA_VFINFO_LIST */
David Gibsonc53864f2014-04-24 10:22:36 +1000940 + rtnl_port_size(dev, ext_filter_mask) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
Thomas Graff8ff1822010-11-16 04:30:14 +0000941 + rtnl_link_get_size(dev) /* IFLA_LINKINFO */
Arad, Ronenb1974ed2015-10-19 09:23:28 -0700942 + rtnl_link_get_af_size(dev, ext_filter_mask) /* IFLA_AF_SPEC */
Jiri Pirko82f28412014-11-28 14:34:18 +0100943 + nla_total_size(MAX_PHYS_ITEM_ID_LEN) /* IFLA_PHYS_PORT_ID */
Anuradha Karuppiah88d63782015-07-14 13:43:20 -0700944 + nla_total_size(MAX_PHYS_ITEM_ID_LEN) /* IFLA_PHYS_SWITCH_ID */
Nicolas Dichtelc57c7a92016-03-31 18:10:31 +0200945 + nla_total_size(IFNAMSIZ) /* IFLA_PHYS_PORT_NAME */
Brenden Blancod1fdd912016-07-19 12:16:49 -0700946 + rtnl_xdp_size(dev) /* IFLA_XDP */
Anuradha Karuppiah88d63782015-07-14 13:43:20 -0700947 + nla_total_size(1); /* IFLA_PROTO_DOWN */
948
Thomas Graf339bf982006-11-10 14:10:15 -0800949}
950
Scott Feldman57b61082010-05-17 22:49:55 -0700951static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev)
952{
953 struct nlattr *vf_ports;
954 struct nlattr *vf_port;
955 int vf;
956 int err;
957
958 vf_ports = nla_nest_start(skb, IFLA_VF_PORTS);
959 if (!vf_ports)
960 return -EMSGSIZE;
961
962 for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) {
963 vf_port = nla_nest_start(skb, IFLA_VF_PORT);
Scott Feldman8ca94182010-05-28 03:42:18 -0700964 if (!vf_port)
965 goto nla_put_failure;
David S. Millera6574342012-04-01 20:12:00 -0400966 if (nla_put_u32(skb, IFLA_PORT_VF, vf))
967 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700968 err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb);
Scott Feldman8ca94182010-05-28 03:42:18 -0700969 if (err == -EMSGSIZE)
970 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700971 if (err) {
Scott Feldman57b61082010-05-17 22:49:55 -0700972 nla_nest_cancel(skb, vf_port);
973 continue;
974 }
975 nla_nest_end(skb, vf_port);
976 }
977
978 nla_nest_end(skb, vf_ports);
979
980 return 0;
Scott Feldman8ca94182010-05-28 03:42:18 -0700981
982nla_put_failure:
983 nla_nest_cancel(skb, vf_ports);
984 return -EMSGSIZE;
Scott Feldman57b61082010-05-17 22:49:55 -0700985}
986
987static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev)
988{
989 struct nlattr *port_self;
990 int err;
991
992 port_self = nla_nest_start(skb, IFLA_PORT_SELF);
993 if (!port_self)
994 return -EMSGSIZE;
995
996 err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb);
997 if (err) {
998 nla_nest_cancel(skb, port_self);
Scott Feldman8ca94182010-05-28 03:42:18 -0700999 return (err == -EMSGSIZE) ? err : 0;
Scott Feldman57b61082010-05-17 22:49:55 -07001000 }
1001
1002 nla_nest_end(skb, port_self);
1003
1004 return 0;
1005}
1006
David Gibsonc53864f2014-04-24 10:22:36 +10001007static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev,
1008 u32 ext_filter_mask)
Scott Feldman57b61082010-05-17 22:49:55 -07001009{
1010 int err;
1011
David Gibsonc53864f2014-04-24 10:22:36 +10001012 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent ||
1013 !(ext_filter_mask & RTEXT_FILTER_VF))
Scott Feldman57b61082010-05-17 22:49:55 -07001014 return 0;
1015
1016 err = rtnl_port_self_fill(skb, dev);
1017 if (err)
1018 return err;
1019
1020 if (dev_num_vf(dev->dev.parent)) {
1021 err = rtnl_vf_ports_fill(skb, dev);
1022 if (err)
1023 return err;
1024 }
1025
1026 return 0;
1027}
1028
Jiri Pirko66cae9e2013-07-29 18:16:50 +02001029static int rtnl_phys_port_id_fill(struct sk_buff *skb, struct net_device *dev)
1030{
1031 int err;
Jiri Pirko02637fc2014-11-28 14:34:16 +01001032 struct netdev_phys_item_id ppid;
Jiri Pirko66cae9e2013-07-29 18:16:50 +02001033
1034 err = dev_get_phys_port_id(dev, &ppid);
1035 if (err) {
1036 if (err == -EOPNOTSUPP)
1037 return 0;
1038 return err;
1039 }
1040
1041 if (nla_put(skb, IFLA_PHYS_PORT_ID, ppid.id_len, ppid.id))
1042 return -EMSGSIZE;
1043
1044 return 0;
1045}
1046
David Aherndb24a902015-03-17 20:23:15 -06001047static int rtnl_phys_port_name_fill(struct sk_buff *skb, struct net_device *dev)
1048{
1049 char name[IFNAMSIZ];
1050 int err;
1051
1052 err = dev_get_phys_port_name(dev, name, sizeof(name));
1053 if (err) {
1054 if (err == -EOPNOTSUPP)
1055 return 0;
1056 return err;
1057 }
1058
1059 if (nla_put(skb, IFLA_PHYS_PORT_NAME, strlen(name), name))
1060 return -EMSGSIZE;
1061
1062 return 0;
1063}
1064
Jiri Pirko82f28412014-11-28 14:34:18 +01001065static int rtnl_phys_switch_id_fill(struct sk_buff *skb, struct net_device *dev)
1066{
1067 int err;
Scott Feldmanf8e20a92015-05-10 09:47:49 -07001068 struct switchdev_attr attr = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +01001069 .orig_dev = dev,
Jiri Pirko1f868392015-10-01 11:03:42 +02001070 .id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
Scott Feldmanf8e20a92015-05-10 09:47:49 -07001071 .flags = SWITCHDEV_F_NO_RECURSE,
1072 };
Jiri Pirko82f28412014-11-28 14:34:18 +01001073
Scott Feldmanf8e20a92015-05-10 09:47:49 -07001074 err = switchdev_port_attr_get(dev, &attr);
Jiri Pirko82f28412014-11-28 14:34:18 +01001075 if (err) {
1076 if (err == -EOPNOTSUPP)
1077 return 0;
1078 return err;
1079 }
1080
Scott Feldman42275bd2015-05-13 11:16:50 -07001081 if (nla_put(skb, IFLA_PHYS_SWITCH_ID, attr.u.ppid.id_len,
1082 attr.u.ppid.id))
Jiri Pirko82f28412014-11-28 14:34:18 +01001083 return -EMSGSIZE;
1084
1085 return 0;
1086}
1087
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001088static noinline_for_stack int rtnl_fill_stats(struct sk_buff *skb,
1089 struct net_device *dev)
1090{
Roopa Prabhu550bce52016-04-15 20:36:25 -07001091 struct rtnl_link_stats64 *sp;
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001092 struct nlattr *attr;
1093
Nicolas Dichtel58414d32016-04-21 18:58:25 +02001094 attr = nla_reserve_64bit(skb, IFLA_STATS64,
1095 sizeof(struct rtnl_link_stats64), IFLA_PAD);
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001096 if (!attr)
1097 return -EMSGSIZE;
1098
Roopa Prabhu550bce52016-04-15 20:36:25 -07001099 sp = nla_data(attr);
1100 dev_get_stats(dev, sp);
1101
1102 attr = nla_reserve(skb, IFLA_STATS,
1103 sizeof(struct rtnl_link_stats));
1104 if (!attr)
1105 return -EMSGSIZE;
1106
1107 copy_rtnl_link_stats(nla_data(attr), sp);
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001108
1109 return 0;
1110}
1111
1112static noinline_for_stack int rtnl_fill_vfinfo(struct sk_buff *skb,
1113 struct net_device *dev,
1114 int vfs_num,
1115 struct nlattr *vfinfo)
1116{
1117 struct ifla_vf_rss_query_en vf_rss_query_en;
Moshe Shemesh79aab092016-09-22 12:11:15 +03001118 struct nlattr *vf, *vfstats, *vfvlanlist;
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001119 struct ifla_vf_link_state vf_linkstate;
Moshe Shemesh79aab092016-09-22 12:11:15 +03001120 struct ifla_vf_vlan_info vf_vlan_info;
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001121 struct ifla_vf_spoofchk vf_spoofchk;
1122 struct ifla_vf_tx_rate vf_tx_rate;
1123 struct ifla_vf_stats vf_stats;
1124 struct ifla_vf_trust vf_trust;
1125 struct ifla_vf_vlan vf_vlan;
1126 struct ifla_vf_rate vf_rate;
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001127 struct ifla_vf_mac vf_mac;
1128 struct ifla_vf_info ivi;
1129
1130 /* Not all SR-IOV capable drivers support the
1131 * spoofcheck and "RSS query enable" query. Preset to
1132 * -1 so the user space tool can detect that the driver
1133 * didn't report anything.
1134 */
1135 ivi.spoofchk = -1;
1136 ivi.rss_query_en = -1;
1137 ivi.trusted = -1;
1138 memset(ivi.mac, 0, sizeof(ivi.mac));
1139 /* The default value for VF link state is "auto"
1140 * IFLA_VF_LINK_STATE_AUTO which equals zero
1141 */
1142 ivi.linkstate = 0;
Moshe Shemesh79aab092016-09-22 12:11:15 +03001143 /* VLAN Protocol by default is 802.1Q */
1144 ivi.vlan_proto = htons(ETH_P_8021Q);
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001145 if (dev->netdev_ops->ndo_get_vf_config(dev, vfs_num, &ivi))
1146 return 0;
1147
Dan Carpenter775f4f02016-10-13 11:45:28 +03001148 memset(&vf_vlan_info, 0, sizeof(vf_vlan_info));
1149
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001150 vf_mac.vf =
1151 vf_vlan.vf =
Moshe Shemesh79aab092016-09-22 12:11:15 +03001152 vf_vlan_info.vf =
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001153 vf_rate.vf =
1154 vf_tx_rate.vf =
1155 vf_spoofchk.vf =
1156 vf_linkstate.vf =
1157 vf_rss_query_en.vf =
1158 vf_trust.vf = ivi.vf;
1159
1160 memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac));
1161 vf_vlan.vlan = ivi.vlan;
1162 vf_vlan.qos = ivi.qos;
Moshe Shemesh79aab092016-09-22 12:11:15 +03001163 vf_vlan_info.vlan = ivi.vlan;
1164 vf_vlan_info.qos = ivi.qos;
1165 vf_vlan_info.vlan_proto = ivi.vlan_proto;
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001166 vf_tx_rate.rate = ivi.max_tx_rate;
1167 vf_rate.min_tx_rate = ivi.min_tx_rate;
1168 vf_rate.max_tx_rate = ivi.max_tx_rate;
1169 vf_spoofchk.setting = ivi.spoofchk;
1170 vf_linkstate.link_state = ivi.linkstate;
1171 vf_rss_query_en.setting = ivi.rss_query_en;
1172 vf_trust.setting = ivi.trusted;
1173 vf = nla_nest_start(skb, IFLA_VF_INFO);
Moshe Shemesh79aab092016-09-22 12:11:15 +03001174 if (!vf)
1175 goto nla_put_vfinfo_failure;
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001176 if (nla_put(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac) ||
1177 nla_put(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan) ||
1178 nla_put(skb, IFLA_VF_RATE, sizeof(vf_rate),
1179 &vf_rate) ||
1180 nla_put(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate),
1181 &vf_tx_rate) ||
1182 nla_put(skb, IFLA_VF_SPOOFCHK, sizeof(vf_spoofchk),
1183 &vf_spoofchk) ||
1184 nla_put(skb, IFLA_VF_LINK_STATE, sizeof(vf_linkstate),
1185 &vf_linkstate) ||
1186 nla_put(skb, IFLA_VF_RSS_QUERY_EN,
1187 sizeof(vf_rss_query_en),
1188 &vf_rss_query_en) ||
1189 nla_put(skb, IFLA_VF_TRUST,
1190 sizeof(vf_trust), &vf_trust))
Moshe Shemesh79aab092016-09-22 12:11:15 +03001191 goto nla_put_vf_failure;
1192 vfvlanlist = nla_nest_start(skb, IFLA_VF_VLAN_LIST);
1193 if (!vfvlanlist)
1194 goto nla_put_vf_failure;
1195 if (nla_put(skb, IFLA_VF_VLAN_INFO, sizeof(vf_vlan_info),
1196 &vf_vlan_info)) {
1197 nla_nest_cancel(skb, vfvlanlist);
1198 goto nla_put_vf_failure;
1199 }
1200 nla_nest_end(skb, vfvlanlist);
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001201 memset(&vf_stats, 0, sizeof(vf_stats));
1202 if (dev->netdev_ops->ndo_get_vf_stats)
1203 dev->netdev_ops->ndo_get_vf_stats(dev, vfs_num,
1204 &vf_stats);
1205 vfstats = nla_nest_start(skb, IFLA_VF_STATS);
Moshe Shemesh79aab092016-09-22 12:11:15 +03001206 if (!vfstats)
1207 goto nla_put_vf_failure;
Nicolas Dichtel343a6d82016-04-25 10:25:14 +02001208 if (nla_put_u64_64bit(skb, IFLA_VF_STATS_RX_PACKETS,
1209 vf_stats.rx_packets, IFLA_VF_STATS_PAD) ||
1210 nla_put_u64_64bit(skb, IFLA_VF_STATS_TX_PACKETS,
1211 vf_stats.tx_packets, IFLA_VF_STATS_PAD) ||
1212 nla_put_u64_64bit(skb, IFLA_VF_STATS_RX_BYTES,
1213 vf_stats.rx_bytes, IFLA_VF_STATS_PAD) ||
1214 nla_put_u64_64bit(skb, IFLA_VF_STATS_TX_BYTES,
1215 vf_stats.tx_bytes, IFLA_VF_STATS_PAD) ||
1216 nla_put_u64_64bit(skb, IFLA_VF_STATS_BROADCAST,
1217 vf_stats.broadcast, IFLA_VF_STATS_PAD) ||
1218 nla_put_u64_64bit(skb, IFLA_VF_STATS_MULTICAST,
Moshe Shemesh79aab092016-09-22 12:11:15 +03001219 vf_stats.multicast, IFLA_VF_STATS_PAD)) {
1220 nla_nest_cancel(skb, vfstats);
1221 goto nla_put_vf_failure;
1222 }
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001223 nla_nest_end(skb, vfstats);
1224 nla_nest_end(skb, vf);
1225 return 0;
Moshe Shemesh79aab092016-09-22 12:11:15 +03001226
1227nla_put_vf_failure:
1228 nla_nest_cancel(skb, vf);
1229nla_put_vfinfo_failure:
1230 nla_nest_cancel(skb, vfinfo);
1231 return -EMSGSIZE;
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001232}
1233
1234static int rtnl_fill_link_ifmap(struct sk_buff *skb, struct net_device *dev)
1235{
Kangjie Lu5f8e4472016-05-03 16:46:24 -04001236 struct rtnl_link_ifmap map;
1237
1238 memset(&map, 0, sizeof(map));
1239 map.mem_start = dev->mem_start;
1240 map.mem_end = dev->mem_end;
1241 map.base_addr = dev->base_addr;
1242 map.irq = dev->irq;
1243 map.dma = dev->dma;
1244 map.port = dev->if_port;
1245
Nicolas Dichtel270cb4d2016-04-26 10:06:16 +02001246 if (nla_put_64bit(skb, IFLA_MAP, sizeof(map), &map, IFLA_PAD))
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001247 return -EMSGSIZE;
1248
1249 return 0;
1250}
1251
Brenden Blancod1fdd912016-07-19 12:16:49 -07001252static int rtnl_xdp_fill(struct sk_buff *skb, struct net_device *dev)
1253{
1254 struct netdev_xdp xdp_op = {};
1255 struct nlattr *xdp;
1256 int err;
1257
1258 if (!dev->netdev_ops->ndo_xdp)
1259 return 0;
1260 xdp = nla_nest_start(skb, IFLA_XDP);
1261 if (!xdp)
1262 return -EMSGSIZE;
1263 xdp_op.command = XDP_QUERY_PROG;
1264 err = dev->netdev_ops->ndo_xdp(dev, &xdp_op);
1265 if (err)
1266 goto err_cancel;
1267 err = nla_put_u8(skb, IFLA_XDP_ATTACHED, xdp_op.prog_attached);
1268 if (err)
1269 goto err_cancel;
1270
1271 nla_nest_end(skb, xdp);
1272 return 0;
1273
1274err_cancel:
1275 nla_nest_cancel(skb, xdp);
1276 return err;
1277}
1278
Thomas Grafb60c5112006-08-04 23:05:34 -07001279static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -07001280 int type, u32 pid, u32 seq, u32 change,
David S. Millerbf74b202017-04-09 14:45:21 -07001281 unsigned int flags, u32 ext_filter_mask)
Thomas Grafb60c5112006-08-04 23:05:34 -07001282{
1283 struct ifinfomsg *ifm;
1284 struct nlmsghdr *nlh;
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001285 struct nlattr *af_spec;
Thomas Graff8ff1822010-11-16 04:30:14 +00001286 struct rtnl_af_ops *af_ops;
Jiri Pirko898e5062013-01-03 22:48:52 +00001287 struct net_device *upper_dev = netdev_master_upper_dev_get(dev);
Thomas Grafb60c5112006-08-04 23:05:34 -07001288
Eric Dumazet2907c352011-05-25 07:34:04 +00001289 ASSERT_RTNL();
Thomas Grafb60c5112006-08-04 23:05:34 -07001290 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
1291 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08001292 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -07001293
1294 ifm = nlmsg_data(nlh);
1295 ifm->ifi_family = AF_UNSPEC;
1296 ifm->__ifi_pad = 0;
1297 ifm->ifi_type = dev->type;
1298 ifm->ifi_index = dev->ifindex;
1299 ifm->ifi_flags = dev_get_flags(dev);
1300 ifm->ifi_change = change;
1301
David S. Millera6574342012-04-01 20:12:00 -04001302 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
1303 nla_put_u32(skb, IFLA_TXQLEN, dev->tx_queue_len) ||
1304 nla_put_u8(skb, IFLA_OPERSTATE,
1305 netif_running(dev) ? dev->operstate : IF_OPER_DOWN) ||
1306 nla_put_u8(skb, IFLA_LINKMODE, dev->link_mode) ||
1307 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
1308 nla_put_u32(skb, IFLA_GROUP, dev->group) ||
Ben Greearedbc0bb2012-03-29 12:51:30 +00001309 nla_put_u32(skb, IFLA_PROMISCUITY, dev->promiscuity) ||
Jiri Pirko76ff5cc2012-07-20 02:28:48 +00001310 nla_put_u32(skb, IFLA_NUM_TX_QUEUES, dev->num_tx_queues) ||
Eric Dumazetc70ce022016-03-21 09:55:10 -07001311 nla_put_u32(skb, IFLA_GSO_MAX_SEGS, dev->gso_max_segs) ||
1312 nla_put_u32(skb, IFLA_GSO_MAX_SIZE, dev->gso_max_size) ||
Mark A. Greer1d69c2b2012-07-20 13:35:13 +00001313#ifdef CONFIG_RPS
Jiri Pirko76ff5cc2012-07-20 02:28:48 +00001314 nla_put_u32(skb, IFLA_NUM_RX_QUEUES, dev->num_rx_queues) ||
Mark A. Greer1d69c2b2012-07-20 13:35:13 +00001315#endif
Nicolas Dichtela54acb32015-04-02 17:07:00 +02001316 (dev->ifindex != dev_get_iflink(dev) &&
1317 nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev))) ||
Jiri Pirko898e5062013-01-03 22:48:52 +00001318 (upper_dev &&
1319 nla_put_u32(skb, IFLA_MASTER, upper_dev->ifindex)) ||
Jiri Pirko9a572472012-12-27 23:49:39 +00001320 nla_put_u8(skb, IFLA_CARRIER, netif_carrier_ok(dev)) ||
David S. Millera6574342012-04-01 20:12:00 -04001321 (dev->qdisc &&
1322 nla_put_string(skb, IFLA_QDISC, dev->qdisc->ops->id)) ||
1323 (dev->ifalias &&
david decotigny2d3b4792014-03-29 09:48:35 -07001324 nla_put_string(skb, IFLA_IFALIAS, dev->ifalias)) ||
1325 nla_put_u32(skb, IFLA_CARRIER_CHANGES,
Anuradha Karuppiah88d63782015-07-14 13:43:20 -07001326 atomic_read(&dev->carrier_changes)) ||
1327 nla_put_u8(skb, IFLA_PROTO_DOWN, dev->proto_down))
David S. Millera6574342012-04-01 20:12:00 -04001328 goto nla_put_failure;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001329
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001330 if (rtnl_fill_link_ifmap(skb, dev))
1331 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 if (dev->addr_len) {
David S. Millera6574342012-04-01 20:12:00 -04001334 if (nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr) ||
1335 nla_put(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast))
1336 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
1338
Jiri Pirko66cae9e2013-07-29 18:16:50 +02001339 if (rtnl_phys_port_id_fill(skb, dev))
1340 goto nla_put_failure;
1341
David Aherndb24a902015-03-17 20:23:15 -06001342 if (rtnl_phys_port_name_fill(skb, dev))
1343 goto nla_put_failure;
1344
Jiri Pirko82f28412014-11-28 14:34:18 +01001345 if (rtnl_phys_switch_id_fill(skb, dev))
1346 goto nla_put_failure;
1347
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001348 if (rtnl_fill_stats(skb, dev))
Pavel Emelyanov96e74082008-05-21 14:12:46 -07001349 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
David S. Millera6574342012-04-01 20:12:00 -04001351 if (dev->dev.parent && (ext_filter_mask & RTEXT_FILTER_VF) &&
1352 nla_put_u32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent)))
1353 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -07001354
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001355 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent &&
1356 ext_filter_mask & RTEXT_FILTER_VF) {
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001357 int i;
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001358 struct nlattr *vfinfo;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001359 int num_vfs = dev_num_vf(dev->dev.parent);
1360
Chris Wrightc02db8c2010-05-16 01:05:45 -07001361 vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST);
1362 if (!vfinfo)
1363 goto nla_put_failure;
1364 for (i = 0; i < num_vfs; i++) {
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001365 if (rtnl_fill_vfinfo(skb, dev, i, vfinfo))
Chris Wrightc02db8c2010-05-16 01:05:45 -07001366 goto nla_put_failure;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001367 }
Hannes Frederic Sowab22b9412015-11-17 14:16:52 +01001368
Chris Wrightc02db8c2010-05-16 01:05:45 -07001369 nla_nest_end(skb, vfinfo);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001370 }
Scott Feldman57b61082010-05-17 22:49:55 -07001371
David Gibsonc53864f2014-04-24 10:22:36 +10001372 if (rtnl_port_fill(skb, dev, ext_filter_mask))
Scott Feldman57b61082010-05-17 22:49:55 -07001373 goto nla_put_failure;
1374
Brenden Blancod1fdd912016-07-19 12:16:49 -07001375 if (rtnl_xdp_fill(skb, dev))
1376 goto nla_put_failure;
1377
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01001378 if (dev->rtnl_link_ops || rtnl_have_link_slave_info(dev)) {
Patrick McHardy38f7b872007-06-13 12:03:51 -07001379 if (rtnl_link_fill(skb, dev) < 0)
1380 goto nla_put_failure;
1381 }
1382
Nicolas Dichteld37512a2015-01-15 15:11:16 +01001383 if (dev->rtnl_link_ops &&
1384 dev->rtnl_link_ops->get_link_net) {
1385 struct net *link_net = dev->rtnl_link_ops->get_link_net(dev);
1386
1387 if (!net_eq(dev_net(dev), link_net)) {
Nicolas Dichtel7a0877d2015-05-07 11:02:49 +02001388 int id = peernet2id_alloc(dev_net(dev), link_net);
Nicolas Dichteld37512a2015-01-15 15:11:16 +01001389
1390 if (nla_put_s32(skb, IFLA_LINK_NETNSID, id))
1391 goto nla_put_failure;
1392 }
1393 }
1394
Thomas Graff8ff1822010-11-16 04:30:14 +00001395 if (!(af_spec = nla_nest_start(skb, IFLA_AF_SPEC)))
1396 goto nla_put_failure;
1397
1398 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
1399 if (af_ops->fill_link_af) {
1400 struct nlattr *af;
1401 int err;
1402
1403 if (!(af = nla_nest_start(skb, af_ops->family)))
1404 goto nla_put_failure;
1405
Sowmini Varadhand5566fd2015-09-11 16:48:48 -04001406 err = af_ops->fill_link_af(skb, dev, ext_filter_mask);
Thomas Graff8ff1822010-11-16 04:30:14 +00001407
1408 /*
1409 * Caller may return ENODATA to indicate that there
1410 * was no data to be dumped. This is not an error, it
1411 * means we should trim the attribute header and
1412 * continue.
1413 */
1414 if (err == -ENODATA)
1415 nla_nest_cancel(skb, af);
1416 else if (err < 0)
1417 goto nla_put_failure;
1418
1419 nla_nest_end(skb, af);
1420 }
1421 }
1422
1423 nla_nest_end(skb, af_spec);
1424
Johannes Berg053c0952015-01-16 22:09:00 +01001425 nlmsg_end(skb, nlh);
1426 return 0;
Thomas Grafb60c5112006-08-04 23:05:34 -07001427
1428nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08001429 nlmsg_cancel(skb, nlh);
1430 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
Jiri Pirkof7b12602014-02-18 20:53:18 +01001433static const struct nla_policy ifla_policy[IFLA_MAX+1] = {
1434 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
1435 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1436 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1437 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
1438 [IFLA_MTU] = { .type = NLA_U32 },
1439 [IFLA_LINK] = { .type = NLA_U32 },
1440 [IFLA_MASTER] = { .type = NLA_U32 },
1441 [IFLA_CARRIER] = { .type = NLA_U8 },
1442 [IFLA_TXQLEN] = { .type = NLA_U32 },
1443 [IFLA_WEIGHT] = { .type = NLA_U32 },
1444 [IFLA_OPERSTATE] = { .type = NLA_U8 },
1445 [IFLA_LINKMODE] = { .type = NLA_U8 },
1446 [IFLA_LINKINFO] = { .type = NLA_NESTED },
1447 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
1448 [IFLA_NET_NS_FD] = { .type = NLA_U32 },
1449 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
1450 [IFLA_VFINFO_LIST] = {. type = NLA_NESTED },
1451 [IFLA_VF_PORTS] = { .type = NLA_NESTED },
1452 [IFLA_PORT_SELF] = { .type = NLA_NESTED },
1453 [IFLA_AF_SPEC] = { .type = NLA_NESTED },
1454 [IFLA_EXT_MASK] = { .type = NLA_U32 },
1455 [IFLA_PROMISCUITY] = { .type = NLA_U32 },
1456 [IFLA_NUM_TX_QUEUES] = { .type = NLA_U32 },
1457 [IFLA_NUM_RX_QUEUES] = { .type = NLA_U32 },
Jiri Pirko02637fc2014-11-28 14:34:16 +01001458 [IFLA_PHYS_PORT_ID] = { .type = NLA_BINARY, .len = MAX_PHYS_ITEM_ID_LEN },
david decotigny2d3b4792014-03-29 09:48:35 -07001459 [IFLA_CARRIER_CHANGES] = { .type = NLA_U32 }, /* ignored */
Jiri Pirko82f28412014-11-28 14:34:18 +01001460 [IFLA_PHYS_SWITCH_ID] = { .type = NLA_BINARY, .len = MAX_PHYS_ITEM_ID_LEN },
Nicolas Dichtel317f4812015-01-15 15:11:18 +01001461 [IFLA_LINK_NETNSID] = { .type = NLA_S32 },
Anuradha Karuppiah88d63782015-07-14 13:43:20 -07001462 [IFLA_PROTO_DOWN] = { .type = NLA_U8 },
Brenden Blancod1fdd912016-07-19 12:16:49 -07001463 [IFLA_XDP] = { .type = NLA_NESTED },
Jiri Pirkof7b12602014-02-18 20:53:18 +01001464};
1465
1466static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
1467 [IFLA_INFO_KIND] = { .type = NLA_STRING },
1468 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
1469 [IFLA_INFO_SLAVE_KIND] = { .type = NLA_STRING },
1470 [IFLA_INFO_SLAVE_DATA] = { .type = NLA_NESTED },
1471};
1472
Jiri Pirkof7b12602014-02-18 20:53:18 +01001473static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
Daniel Borkmann364d5712015-02-05 18:44:04 +01001474 [IFLA_VF_MAC] = { .len = sizeof(struct ifla_vf_mac) },
1475 [IFLA_VF_VLAN] = { .len = sizeof(struct ifla_vf_vlan) },
Moshe Shemesh79aab092016-09-22 12:11:15 +03001476 [IFLA_VF_VLAN_LIST] = { .type = NLA_NESTED },
Daniel Borkmann364d5712015-02-05 18:44:04 +01001477 [IFLA_VF_TX_RATE] = { .len = sizeof(struct ifla_vf_tx_rate) },
1478 [IFLA_VF_SPOOFCHK] = { .len = sizeof(struct ifla_vf_spoofchk) },
1479 [IFLA_VF_RATE] = { .len = sizeof(struct ifla_vf_rate) },
1480 [IFLA_VF_LINK_STATE] = { .len = sizeof(struct ifla_vf_link_state) },
Vlad Zolotarov01a3d792015-03-30 21:35:23 +03001481 [IFLA_VF_RSS_QUERY_EN] = { .len = sizeof(struct ifla_vf_rss_query_en) },
Eran Ben Elisha3b766cd2015-06-15 17:59:07 +03001482 [IFLA_VF_STATS] = { .type = NLA_NESTED },
Hiroshi Shimamotodd461d62015-08-28 06:57:55 +00001483 [IFLA_VF_TRUST] = { .len = sizeof(struct ifla_vf_trust) },
Eli Cohencc8e27c2016-03-11 22:58:34 +02001484 [IFLA_VF_IB_NODE_GUID] = { .len = sizeof(struct ifla_vf_guid) },
1485 [IFLA_VF_IB_PORT_GUID] = { .len = sizeof(struct ifla_vf_guid) },
Eran Ben Elisha3b766cd2015-06-15 17:59:07 +03001486};
1487
Jiri Pirkof7b12602014-02-18 20:53:18 +01001488static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = {
1489 [IFLA_PORT_VF] = { .type = NLA_U32 },
1490 [IFLA_PORT_PROFILE] = { .type = NLA_STRING,
1491 .len = PORT_PROFILE_MAX },
Jiri Pirkof7b12602014-02-18 20:53:18 +01001492 [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY,
1493 .len = PORT_UUID_MAX },
1494 [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING,
1495 .len = PORT_UUID_MAX },
1496 [IFLA_PORT_REQUEST] = { .type = NLA_U8, },
1497 [IFLA_PORT_RESPONSE] = { .type = NLA_U16, },
Daniel Borkmann025331d2017-02-17 01:56:11 +01001498
1499 /* Unused, but we need to keep it here since user space could
1500 * fill it. It's also broken with regard to NLA_BINARY use in
1501 * combination with structs.
1502 */
1503 [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY,
1504 .len = sizeof(struct ifla_port_vsi) },
Jiri Pirkof7b12602014-02-18 20:53:18 +01001505};
1506
Brenden Blancod1fdd912016-07-19 12:16:49 -07001507static const struct nla_policy ifla_xdp_policy[IFLA_XDP_MAX + 1] = {
1508 [IFLA_XDP_FD] = { .type = NLA_S32 },
1509 [IFLA_XDP_ATTACHED] = { .type = NLA_U8 },
Daniel Borkmann85de8572016-11-28 23:16:54 +01001510 [IFLA_XDP_FLAGS] = { .type = NLA_U32 },
Brenden Blancod1fdd912016-07-19 12:16:49 -07001511};
1512
David Aherndc599f72016-02-02 08:17:07 -08001513static const struct rtnl_link_ops *linkinfo_to_kind_ops(const struct nlattr *nla)
1514{
1515 const struct rtnl_link_ops *ops = NULL;
1516 struct nlattr *linfo[IFLA_INFO_MAX + 1];
1517
Johannes Bergfceb6432017-04-12 14:34:07 +02001518 if (nla_parse_nested(linfo, IFLA_INFO_MAX, nla,
1519 ifla_info_policy, NULL) < 0)
David Aherndc599f72016-02-02 08:17:07 -08001520 return NULL;
1521
1522 if (linfo[IFLA_INFO_KIND]) {
1523 char kind[MODULE_NAME_LEN];
1524
1525 nla_strlcpy(kind, linfo[IFLA_INFO_KIND], sizeof(kind));
1526 ops = rtnl_link_ops_get(kind);
1527 }
1528
1529 return ops;
1530}
1531
1532static bool link_master_filtered(struct net_device *dev, int master_idx)
1533{
1534 struct net_device *master;
1535
1536 if (!master_idx)
1537 return false;
1538
1539 master = netdev_master_upper_dev_get(dev);
1540 if (!master || master->ifindex != master_idx)
1541 return true;
1542
1543 return false;
1544}
1545
1546static bool link_kind_filtered(const struct net_device *dev,
1547 const struct rtnl_link_ops *kind_ops)
1548{
1549 if (kind_ops && dev->rtnl_link_ops != kind_ops)
1550 return true;
1551
1552 return false;
1553}
1554
1555static bool link_dump_filtered(struct net_device *dev,
1556 int master_idx,
1557 const struct rtnl_link_ops *kind_ops)
1558{
1559 if (link_master_filtered(dev, master_idx) ||
1560 link_kind_filtered(dev, kind_ops))
1561 return true;
1562
1563 return false;
1564}
1565
Thomas Grafb60c5112006-08-04 23:05:34 -07001566static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001568 struct net *net = sock_net(skb->sk);
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001569 int h, s_h;
1570 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 struct net_device *dev;
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001572 struct hlist_head *head;
Greg Rose115c9b82012-02-21 16:54:48 -05001573 struct nlattr *tb[IFLA_MAX+1];
1574 u32 ext_filter_mask = 0;
David Aherndc599f72016-02-02 08:17:07 -08001575 const struct rtnl_link_ops *kind_ops = NULL;
1576 unsigned int flags = NLM_F_MULTI;
1577 int master_idx = 0;
David Gibson973462b2014-04-24 10:22:35 +10001578 int err;
Michal Schmidte5eca6d2014-05-28 14:15:19 +02001579 int hdrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001581 s_h = cb->args[0];
1582 s_idx = cb->args[1];
1583
Thomas Graf4e985ad2011-06-21 03:11:20 +00001584 cb->seq = net->dev_base_seq;
1585
Michal Schmidte5eca6d2014-05-28 14:15:19 +02001586 /* A hack to preserve kernel<->userspace interface.
1587 * The correct header is ifinfomsg. It is consistent with rtnl_getlink.
1588 * However, before Linux v3.9 the code here assumed rtgenmsg and that's
1589 * what iproute2 < v3.9.0 used.
1590 * We can detect the old iproute2. Even including the IFLA_EXT_MASK
1591 * attribute, its netlink message is shorter than struct ifinfomsg.
1592 */
1593 hdrlen = nlmsg_len(cb->nlh) < sizeof(struct ifinfomsg) ?
1594 sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg);
1595
Johannes Bergfceb6432017-04-12 14:34:07 +02001596 if (nlmsg_parse(cb->nlh, hdrlen, tb, IFLA_MAX,
1597 ifla_policy, NULL) >= 0) {
Eric Dumazeta4b64fb2012-03-04 12:32:10 +00001598 if (tb[IFLA_EXT_MASK])
1599 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
David Aherndc599f72016-02-02 08:17:07 -08001600
1601 if (tb[IFLA_MASTER])
1602 master_idx = nla_get_u32(tb[IFLA_MASTER]);
1603
1604 if (tb[IFLA_LINKINFO])
1605 kind_ops = linkinfo_to_kind_ops(tb[IFLA_LINKINFO]);
1606
1607 if (master_idx || kind_ops)
1608 flags |= NLM_F_DUMP_FILTERED;
Eric Dumazeta4b64fb2012-03-04 12:32:10 +00001609 }
Greg Rose115c9b82012-02-21 16:54:48 -05001610
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001611 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
1612 idx = 0;
1613 head = &net->dev_index_head[h];
Eric Dumazetcac5e652015-02-27 09:42:50 -08001614 hlist_for_each_entry(dev, head, index_hlist) {
David Aherndc599f72016-02-02 08:17:07 -08001615 if (link_dump_filtered(dev, master_idx, kind_ops))
Zhang Shengju3f0ae052016-11-19 23:28:32 +08001616 goto cont;
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001617 if (idx < s_idx)
1618 goto cont;
David Gibson973462b2014-04-24 10:22:35 +10001619 err = rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
1620 NETLINK_CB(cb->skb).portid,
1621 cb->nlh->nlmsg_seq, 0,
David Aherndc599f72016-02-02 08:17:07 -08001622 flags,
David S. Millerbf74b202017-04-09 14:45:21 -07001623 ext_filter_mask);
David Gibson973462b2014-04-24 10:22:35 +10001624 /* If we ran out of room on the first message,
1625 * we're in trouble
1626 */
1627 WARN_ON((err == -EMSGSIZE) && (skb->len == 0));
1628
David S. Miller7b46a642015-01-18 23:36:08 -05001629 if (err < 0)
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001630 goto out;
Thomas Graf4e985ad2011-06-21 03:11:20 +00001631
1632 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Pavel Emelianov7562f872007-05-03 15:13:45 -07001633cont:
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001634 idx++;
1635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 }
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001637out:
1638 cb->args[1] = idx;
1639 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 return skb->len;
1642}
1643
Johannes Bergfceb6432017-04-12 14:34:07 +02001644int rtnl_nla_parse_ifla(struct nlattr **tb, const struct nlattr *head, int len,
1645 struct netlink_ext_ack *exterr)
Jiri Pirkof7b12602014-02-18 20:53:18 +01001646{
Johannes Bergfceb6432017-04-12 14:34:07 +02001647 return nla_parse(tb, IFLA_MAX, head, len, ifla_policy, exterr);
Jiri Pirkof7b12602014-02-18 20:53:18 +01001648}
1649EXPORT_SYMBOL(rtnl_nla_parse_ifla);
Scott Feldman57b61082010-05-17 22:49:55 -07001650
Eric W. Biederman81adee42009-11-08 00:53:51 -08001651struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
1652{
1653 struct net *net;
1654 /* Examine the link attributes and figure out which
1655 * network namespace we are talking about.
1656 */
1657 if (tb[IFLA_NET_NS_PID])
1658 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001659 else if (tb[IFLA_NET_NS_FD])
1660 net = get_net_ns_by_fd(nla_get_u32(tb[IFLA_NET_NS_FD]));
Eric W. Biederman81adee42009-11-08 00:53:51 -08001661 else
1662 net = get_net(src_net);
1663 return net;
1664}
1665EXPORT_SYMBOL(rtnl_link_get_net);
1666
Thomas Graf1840bb12008-02-23 19:54:36 -08001667static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
1668{
1669 if (dev) {
1670 if (tb[IFLA_ADDRESS] &&
1671 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
1672 return -EINVAL;
1673
1674 if (tb[IFLA_BROADCAST] &&
1675 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
1676 return -EINVAL;
1677 }
1678
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001679 if (tb[IFLA_AF_SPEC]) {
1680 struct nlattr *af;
1681 int rem, err;
1682
1683 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1684 const struct rtnl_af_ops *af_ops;
1685
1686 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
1687 return -EAFNOSUPPORT;
1688
1689 if (!af_ops->set_link_af)
1690 return -EOPNOTSUPP;
1691
1692 if (af_ops->validate_link_af) {
Kurt Van Dijck6d3a9a62011-01-26 04:55:24 +00001693 err = af_ops->validate_link_af(dev, af);
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001694 if (err < 0)
1695 return err;
1696 }
1697 }
1698 }
1699
Thomas Graf1840bb12008-02-23 19:54:36 -08001700 return 0;
1701}
1702
Eli Cohencc8e27c2016-03-11 22:58:34 +02001703static int handle_infiniband_guid(struct net_device *dev, struct ifla_vf_guid *ivt,
1704 int guid_type)
1705{
1706 const struct net_device_ops *ops = dev->netdev_ops;
1707
1708 return ops->ndo_set_vf_guid(dev, ivt->vf, ivt->guid, guid_type);
1709}
1710
1711static int handle_vf_guid(struct net_device *dev, struct ifla_vf_guid *ivt, int guid_type)
1712{
1713 if (dev->type != ARPHRD_INFINIBAND)
1714 return -EOPNOTSUPP;
1715
1716 return handle_infiniband_guid(dev, ivt, guid_type);
1717}
1718
Daniel Borkmann4f7d2cd2015-07-07 00:07:52 +02001719static int do_setvfinfo(struct net_device *dev, struct nlattr **tb)
Chris Wrightc02db8c2010-05-16 01:05:45 -07001720{
Chris Wrightc02db8c2010-05-16 01:05:45 -07001721 const struct net_device_ops *ops = dev->netdev_ops;
Daniel Borkmann4f7d2cd2015-07-07 00:07:52 +02001722 int err = -EINVAL;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001723
Daniel Borkmann4f7d2cd2015-07-07 00:07:52 +02001724 if (tb[IFLA_VF_MAC]) {
1725 struct ifla_vf_mac *ivm = nla_data(tb[IFLA_VF_MAC]);
Vlad Zolotarov01a3d792015-03-30 21:35:23 +03001726
Daniel Borkmann4f7d2cd2015-07-07 00:07:52 +02001727 err = -EOPNOTSUPP;
1728 if (ops->ndo_set_vf_mac)
1729 err = ops->ndo_set_vf_mac(dev, ivm->vf,
1730 ivm->mac);
1731 if (err < 0)
1732 return err;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001733 }
Daniel Borkmann4f7d2cd2015-07-07 00:07:52 +02001734
1735 if (tb[IFLA_VF_VLAN]) {
1736 struct ifla_vf_vlan *ivv = nla_data(tb[IFLA_VF_VLAN]);
1737
1738 err = -EOPNOTSUPP;
1739 if (ops->ndo_set_vf_vlan)
1740 err = ops->ndo_set_vf_vlan(dev, ivv->vf, ivv->vlan,
Moshe Shemesh79aab092016-09-22 12:11:15 +03001741 ivv->qos,
1742 htons(ETH_P_8021Q));
1743 if (err < 0)
1744 return err;
1745 }
1746
1747 if (tb[IFLA_VF_VLAN_LIST]) {
1748 struct ifla_vf_vlan_info *ivvl[MAX_VLAN_LIST_LEN];
1749 struct nlattr *attr;
1750 int rem, len = 0;
1751
1752 err = -EOPNOTSUPP;
1753 if (!ops->ndo_set_vf_vlan)
1754 return err;
1755
1756 nla_for_each_nested(attr, tb[IFLA_VF_VLAN_LIST], rem) {
1757 if (nla_type(attr) != IFLA_VF_VLAN_INFO ||
1758 nla_len(attr) < NLA_HDRLEN) {
1759 return -EINVAL;
1760 }
1761 if (len >= MAX_VLAN_LIST_LEN)
1762 return -EOPNOTSUPP;
1763 ivvl[len] = nla_data(attr);
1764
1765 len++;
1766 }
Arnd Bergmannfa34cd92016-09-30 18:13:49 +02001767 if (len == 0)
1768 return -EINVAL;
1769
Moshe Shemesh79aab092016-09-22 12:11:15 +03001770 err = ops->ndo_set_vf_vlan(dev, ivvl[0]->vf, ivvl[0]->vlan,
1771 ivvl[0]->qos, ivvl[0]->vlan_proto);
Daniel Borkmann4f7d2cd2015-07-07 00:07:52 +02001772 if (err < 0)
1773 return err;
1774 }
1775
1776 if (tb[IFLA_VF_TX_RATE]) {
1777 struct ifla_vf_tx_rate *ivt = nla_data(tb[IFLA_VF_TX_RATE]);
1778 struct ifla_vf_info ivf;
1779
1780 err = -EOPNOTSUPP;
1781 if (ops->ndo_get_vf_config)
1782 err = ops->ndo_get_vf_config(dev, ivt->vf, &ivf);
1783 if (err < 0)
1784 return err;
1785
1786 err = -EOPNOTSUPP;
1787 if (ops->ndo_set_vf_rate)
1788 err = ops->ndo_set_vf_rate(dev, ivt->vf,
1789 ivf.min_tx_rate,
1790 ivt->rate);
1791 if (err < 0)
1792 return err;
1793 }
1794
1795 if (tb[IFLA_VF_RATE]) {
1796 struct ifla_vf_rate *ivt = nla_data(tb[IFLA_VF_RATE]);
1797
1798 err = -EOPNOTSUPP;
1799 if (ops->ndo_set_vf_rate)
1800 err = ops->ndo_set_vf_rate(dev, ivt->vf,
1801 ivt->min_tx_rate,
1802 ivt->max_tx_rate);
1803 if (err < 0)
1804 return err;
1805 }
1806
1807 if (tb[IFLA_VF_SPOOFCHK]) {
1808 struct ifla_vf_spoofchk *ivs = nla_data(tb[IFLA_VF_SPOOFCHK]);
1809
1810 err = -EOPNOTSUPP;
1811 if (ops->ndo_set_vf_spoofchk)
1812 err = ops->ndo_set_vf_spoofchk(dev, ivs->vf,
1813 ivs->setting);
1814 if (err < 0)
1815 return err;
1816 }
1817
1818 if (tb[IFLA_VF_LINK_STATE]) {
1819 struct ifla_vf_link_state *ivl = nla_data(tb[IFLA_VF_LINK_STATE]);
1820
1821 err = -EOPNOTSUPP;
1822 if (ops->ndo_set_vf_link_state)
1823 err = ops->ndo_set_vf_link_state(dev, ivl->vf,
1824 ivl->link_state);
1825 if (err < 0)
1826 return err;
1827 }
1828
1829 if (tb[IFLA_VF_RSS_QUERY_EN]) {
1830 struct ifla_vf_rss_query_en *ivrssq_en;
1831
1832 err = -EOPNOTSUPP;
1833 ivrssq_en = nla_data(tb[IFLA_VF_RSS_QUERY_EN]);
1834 if (ops->ndo_set_vf_rss_query_en)
1835 err = ops->ndo_set_vf_rss_query_en(dev, ivrssq_en->vf,
1836 ivrssq_en->setting);
1837 if (err < 0)
1838 return err;
1839 }
1840
Hiroshi Shimamotodd461d62015-08-28 06:57:55 +00001841 if (tb[IFLA_VF_TRUST]) {
1842 struct ifla_vf_trust *ivt = nla_data(tb[IFLA_VF_TRUST]);
1843
1844 err = -EOPNOTSUPP;
1845 if (ops->ndo_set_vf_trust)
1846 err = ops->ndo_set_vf_trust(dev, ivt->vf, ivt->setting);
1847 if (err < 0)
1848 return err;
1849 }
1850
Eli Cohencc8e27c2016-03-11 22:58:34 +02001851 if (tb[IFLA_VF_IB_NODE_GUID]) {
1852 struct ifla_vf_guid *ivt = nla_data(tb[IFLA_VF_IB_NODE_GUID]);
1853
1854 if (!ops->ndo_set_vf_guid)
1855 return -EOPNOTSUPP;
1856
1857 return handle_vf_guid(dev, ivt, IFLA_VF_IB_NODE_GUID);
1858 }
1859
1860 if (tb[IFLA_VF_IB_PORT_GUID]) {
1861 struct ifla_vf_guid *ivt = nla_data(tb[IFLA_VF_IB_PORT_GUID]);
1862
1863 if (!ops->ndo_set_vf_guid)
1864 return -EOPNOTSUPP;
1865
1866 return handle_vf_guid(dev, ivt, IFLA_VF_IB_PORT_GUID);
1867 }
1868
Chris Wrightc02db8c2010-05-16 01:05:45 -07001869 return err;
1870}
1871
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001872static int do_set_master(struct net_device *dev, int ifindex)
1873{
Jiri Pirko898e5062013-01-03 22:48:52 +00001874 struct net_device *upper_dev = netdev_master_upper_dev_get(dev);
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001875 const struct net_device_ops *ops;
1876 int err;
1877
Jiri Pirko898e5062013-01-03 22:48:52 +00001878 if (upper_dev) {
1879 if (upper_dev->ifindex == ifindex)
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001880 return 0;
Jiri Pirko898e5062013-01-03 22:48:52 +00001881 ops = upper_dev->netdev_ops;
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001882 if (ops->ndo_del_slave) {
Jiri Pirko898e5062013-01-03 22:48:52 +00001883 err = ops->ndo_del_slave(upper_dev, dev);
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001884 if (err)
1885 return err;
1886 } else {
1887 return -EOPNOTSUPP;
1888 }
1889 }
1890
1891 if (ifindex) {
Jiri Pirko898e5062013-01-03 22:48:52 +00001892 upper_dev = __dev_get_by_index(dev_net(dev), ifindex);
1893 if (!upper_dev)
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001894 return -EINVAL;
Jiri Pirko898e5062013-01-03 22:48:52 +00001895 ops = upper_dev->netdev_ops;
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001896 if (ops->ndo_add_slave) {
Jiri Pirko898e5062013-01-03 22:48:52 +00001897 err = ops->ndo_add_slave(upper_dev, dev);
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00001898 if (err)
1899 return err;
1900 } else {
1901 return -EOPNOTSUPP;
1902 }
1903 }
1904 return 0;
1905}
1906
Nicolas Dichtel90c325e2014-09-01 16:07:28 +02001907#define DO_SETLINK_MODIFIED 0x01
Nicolas Dichtelba998902014-09-01 16:07:29 +02001908/* notify flag means notify + modified. */
1909#define DO_SETLINK_NOTIFY 0x03
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07001910static int do_setlink(const struct sk_buff *skb,
1911 struct net_device *dev, struct ifinfomsg *ifm,
Nicolas Dichtel90c325e2014-09-01 16:07:28 +02001912 struct nlattr **tb, char *ifname, int status)
Patrick McHardy0157f602007-06-13 12:03:36 -07001913{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001914 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy0157f602007-06-13 12:03:36 -07001915 int err;
1916
Eric W. Biedermanf0630522011-05-04 17:51:50 -07001917 if (tb[IFLA_NET_NS_PID] || tb[IFLA_NET_NS_FD]) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001918 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001919 if (IS_ERR(net)) {
1920 err = PTR_ERR(net);
1921 goto errout;
1922 }
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07001923 if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN)) {
Nicolas Dichtele0ebde02014-11-27 10:16:15 +01001924 put_net(net);
Eric W. Biedermanb51642f2012-11-16 03:03:11 +00001925 err = -EPERM;
1926 goto errout;
1927 }
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001928 err = dev_change_net_namespace(dev, net, ifname);
1929 put_net(net);
1930 if (err)
1931 goto errout;
Nicolas Dichtel90c325e2014-09-01 16:07:28 +02001932 status |= DO_SETLINK_MODIFIED;
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001933 }
1934
Patrick McHardy0157f602007-06-13 12:03:36 -07001935 if (tb[IFLA_MAP]) {
1936 struct rtnl_link_ifmap *u_map;
1937 struct ifmap k_map;
1938
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001939 if (!ops->ndo_set_config) {
Patrick McHardy0157f602007-06-13 12:03:36 -07001940 err = -EOPNOTSUPP;
1941 goto errout;
1942 }
1943
1944 if (!netif_device_present(dev)) {
1945 err = -ENODEV;
1946 goto errout;
1947 }
1948
1949 u_map = nla_data(tb[IFLA_MAP]);
1950 k_map.mem_start = (unsigned long) u_map->mem_start;
1951 k_map.mem_end = (unsigned long) u_map->mem_end;
1952 k_map.base_addr = (unsigned short) u_map->base_addr;
1953 k_map.irq = (unsigned char) u_map->irq;
1954 k_map.dma = (unsigned char) u_map->dma;
1955 k_map.port = (unsigned char) u_map->port;
1956
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001957 err = ops->ndo_set_config(dev, &k_map);
Patrick McHardy0157f602007-06-13 12:03:36 -07001958 if (err < 0)
1959 goto errout;
1960
Nicolas Dichtelba998902014-09-01 16:07:29 +02001961 status |= DO_SETLINK_NOTIFY;
Patrick McHardy0157f602007-06-13 12:03:36 -07001962 }
1963
1964 if (tb[IFLA_ADDRESS]) {
1965 struct sockaddr *sa;
1966 int len;
1967
Patrick McHardy0157f602007-06-13 12:03:36 -07001968 len = sizeof(sa_family_t) + dev->addr_len;
1969 sa = kmalloc(len, GFP_KERNEL);
1970 if (!sa) {
1971 err = -ENOMEM;
1972 goto errout;
1973 }
1974 sa->sa_family = dev->type;
1975 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
1976 dev->addr_len);
Jiri Pirkoe7c32732013-01-01 03:30:13 +00001977 err = dev_set_mac_address(dev, sa);
Patrick McHardy0157f602007-06-13 12:03:36 -07001978 kfree(sa);
1979 if (err)
1980 goto errout;
Nicolas Dichtel90c325e2014-09-01 16:07:28 +02001981 status |= DO_SETLINK_MODIFIED;
Patrick McHardy0157f602007-06-13 12:03:36 -07001982 }
1983
1984 if (tb[IFLA_MTU]) {
1985 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1986 if (err < 0)
1987 goto errout;
Nicolas Dichtel90c325e2014-09-01 16:07:28 +02001988 status |= DO_SETLINK_MODIFIED;
Patrick McHardy0157f602007-06-13 12:03:36 -07001989 }
1990
Vlad Dogarucbda10f2011-01-13 23:38:30 +00001991 if (tb[IFLA_GROUP]) {
1992 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
Nicolas Dichtelba998902014-09-01 16:07:29 +02001993 status |= DO_SETLINK_NOTIFY;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00001994 }
1995
Patrick McHardy0157f602007-06-13 12:03:36 -07001996 /*
1997 * Interface selected by interface index but interface
1998 * name provided implies that a name change has been
1999 * requested.
2000 */
2001 if (ifm->ifi_index > 0 && ifname[0]) {
2002 err = dev_change_name(dev, ifname);
2003 if (err < 0)
2004 goto errout;
Nicolas Dichtel90c325e2014-09-01 16:07:28 +02002005 status |= DO_SETLINK_MODIFIED;
Patrick McHardy0157f602007-06-13 12:03:36 -07002006 }
2007
Stephen Hemminger0b815a12008-09-22 21:28:11 -07002008 if (tb[IFLA_IFALIAS]) {
2009 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
2010 nla_len(tb[IFLA_IFALIAS]));
2011 if (err < 0)
2012 goto errout;
Nicolas Dichtelba998902014-09-01 16:07:29 +02002013 status |= DO_SETLINK_NOTIFY;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07002014 }
2015
Patrick McHardy0157f602007-06-13 12:03:36 -07002016 if (tb[IFLA_BROADCAST]) {
2017 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
Jiri Pirkoe7c32732013-01-01 03:30:13 +00002018 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Patrick McHardy0157f602007-06-13 12:03:36 -07002019 }
2020
2021 if (ifm->ifi_flags || ifm->ifi_change) {
Patrick McHardy3729d502010-02-26 06:34:54 +00002022 err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
Johannes Berg5f9021c2008-11-16 23:20:31 -08002023 if (err < 0)
2024 goto errout;
Patrick McHardy0157f602007-06-13 12:03:36 -07002025 }
2026
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00002027 if (tb[IFLA_MASTER]) {
2028 err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER]));
2029 if (err)
2030 goto errout;
Nicolas Dichtel90c325e2014-09-01 16:07:28 +02002031 status |= DO_SETLINK_MODIFIED;
Jiri Pirkofbaec0e2011-02-13 10:15:37 +00002032 }
2033
Jiri Pirko9a572472012-12-27 23:49:39 +00002034 if (tb[IFLA_CARRIER]) {
2035 err = dev_change_carrier(dev, nla_get_u8(tb[IFLA_CARRIER]));
2036 if (err)
2037 goto errout;
Nicolas Dichtel90c325e2014-09-01 16:07:28 +02002038 status |= DO_SETLINK_MODIFIED;
Jiri Pirko9a572472012-12-27 23:49:39 +00002039 }
2040
Nicolas Dichtel5d1180f2014-09-01 16:07:26 +02002041 if (tb[IFLA_TXQLEN]) {
2042 unsigned long value = nla_get_u32(tb[IFLA_TXQLEN]);
Jason Wang08294a22016-06-30 14:45:35 +08002043 unsigned long orig_len = dev->tx_queue_len;
Nicolas Dichtel5d1180f2014-09-01 16:07:26 +02002044
Jason Wang08294a22016-06-30 14:45:35 +08002045 if (dev->tx_queue_len ^ value) {
2046 dev->tx_queue_len = value;
2047 err = call_netdevice_notifiers(
2048 NETDEV_CHANGE_TX_QUEUE_LEN, dev);
2049 err = notifier_to_errno(err);
2050 if (err) {
2051 dev->tx_queue_len = orig_len;
2052 goto errout;
2053 }
Nicolas Dichtelba998902014-09-01 16:07:29 +02002054 status |= DO_SETLINK_NOTIFY;
Jason Wang08294a22016-06-30 14:45:35 +08002055 }
Nicolas Dichtel5d1180f2014-09-01 16:07:26 +02002056 }
Patrick McHardy0157f602007-06-13 12:03:36 -07002057
Patrick McHardy0157f602007-06-13 12:03:36 -07002058 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08002059 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Patrick McHardy0157f602007-06-13 12:03:36 -07002060
2061 if (tb[IFLA_LINKMODE]) {
Nicolas Dichtel1889b0e2014-09-01 16:07:27 +02002062 unsigned char value = nla_get_u8(tb[IFLA_LINKMODE]);
2063
David S. Miller93b2d4a2008-02-17 18:35:07 -08002064 write_lock_bh(&dev_base_lock);
Nicolas Dichtel1889b0e2014-09-01 16:07:27 +02002065 if (dev->link_mode ^ value)
Nicolas Dichtelba998902014-09-01 16:07:29 +02002066 status |= DO_SETLINK_NOTIFY;
Nicolas Dichtel1889b0e2014-09-01 16:07:27 +02002067 dev->link_mode = value;
David S. Miller93b2d4a2008-02-17 18:35:07 -08002068 write_unlock_bh(&dev_base_lock);
Patrick McHardy0157f602007-06-13 12:03:36 -07002069 }
2070
Chris Wrightc02db8c2010-05-16 01:05:45 -07002071 if (tb[IFLA_VFINFO_LIST]) {
Daniel Borkmann4f7d2cd2015-07-07 00:07:52 +02002072 struct nlattr *vfinfo[IFLA_VF_MAX + 1];
Chris Wrightc02db8c2010-05-16 01:05:45 -07002073 struct nlattr *attr;
2074 int rem;
Daniel Borkmann4f7d2cd2015-07-07 00:07:52 +02002075
Chris Wrightc02db8c2010-05-16 01:05:45 -07002076 nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) {
Daniel Borkmann4f7d2cd2015-07-07 00:07:52 +02002077 if (nla_type(attr) != IFLA_VF_INFO ||
2078 nla_len(attr) < NLA_HDRLEN) {
David Howells253683b2010-05-21 02:25:27 +00002079 err = -EINVAL;
Chris Wrightc02db8c2010-05-16 01:05:45 -07002080 goto errout;
David Howells253683b2010-05-21 02:25:27 +00002081 }
Daniel Borkmann4f7d2cd2015-07-07 00:07:52 +02002082 err = nla_parse_nested(vfinfo, IFLA_VF_MAX, attr,
Johannes Bergfceb6432017-04-12 14:34:07 +02002083 ifla_vf_policy, NULL);
Daniel Borkmann4f7d2cd2015-07-07 00:07:52 +02002084 if (err < 0)
2085 goto errout;
2086 err = do_setvfinfo(dev, vfinfo);
Chris Wrightc02db8c2010-05-16 01:05:45 -07002087 if (err < 0)
2088 goto errout;
Nicolas Dichtelba998902014-09-01 16:07:29 +02002089 status |= DO_SETLINK_NOTIFY;
Chris Wrightc02db8c2010-05-16 01:05:45 -07002090 }
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00002091 }
Patrick McHardy0157f602007-06-13 12:03:36 -07002092 err = 0;
2093
Scott Feldman57b61082010-05-17 22:49:55 -07002094 if (tb[IFLA_VF_PORTS]) {
2095 struct nlattr *port[IFLA_PORT_MAX+1];
2096 struct nlattr *attr;
2097 int vf;
2098 int rem;
2099
2100 err = -EOPNOTSUPP;
2101 if (!ops->ndo_set_vf_port)
2102 goto errout;
2103
2104 nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) {
Daniel Borkmann035d2102015-07-13 00:06:02 +02002105 if (nla_type(attr) != IFLA_VF_PORT ||
2106 nla_len(attr) < NLA_HDRLEN) {
2107 err = -EINVAL;
2108 goto errout;
2109 }
2110 err = nla_parse_nested(port, IFLA_PORT_MAX, attr,
Johannes Bergfceb6432017-04-12 14:34:07 +02002111 ifla_port_policy, NULL);
Scott Feldman57b61082010-05-17 22:49:55 -07002112 if (err < 0)
2113 goto errout;
2114 if (!port[IFLA_PORT_VF]) {
2115 err = -EOPNOTSUPP;
2116 goto errout;
2117 }
2118 vf = nla_get_u32(port[IFLA_PORT_VF]);
2119 err = ops->ndo_set_vf_port(dev, vf, port);
2120 if (err < 0)
2121 goto errout;
Nicolas Dichtelba998902014-09-01 16:07:29 +02002122 status |= DO_SETLINK_NOTIFY;
Scott Feldman57b61082010-05-17 22:49:55 -07002123 }
2124 }
2125 err = 0;
2126
2127 if (tb[IFLA_PORT_SELF]) {
2128 struct nlattr *port[IFLA_PORT_MAX+1];
2129
2130 err = nla_parse_nested(port, IFLA_PORT_MAX,
Johannes Bergfceb6432017-04-12 14:34:07 +02002131 tb[IFLA_PORT_SELF], ifla_port_policy,
2132 NULL);
Scott Feldman57b61082010-05-17 22:49:55 -07002133 if (err < 0)
2134 goto errout;
2135
2136 err = -EOPNOTSUPP;
2137 if (ops->ndo_set_vf_port)
2138 err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port);
2139 if (err < 0)
2140 goto errout;
Nicolas Dichtelba998902014-09-01 16:07:29 +02002141 status |= DO_SETLINK_NOTIFY;
Scott Feldman57b61082010-05-17 22:49:55 -07002142 }
Thomas Graff8ff1822010-11-16 04:30:14 +00002143
2144 if (tb[IFLA_AF_SPEC]) {
2145 struct nlattr *af;
2146 int rem;
2147
2148 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
2149 const struct rtnl_af_ops *af_ops;
2150
2151 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
Thomas Grafcf7afbf2010-11-22 01:31:54 +00002152 BUG();
Thomas Graff8ff1822010-11-16 04:30:14 +00002153
Thomas Grafcf7afbf2010-11-22 01:31:54 +00002154 err = af_ops->set_link_af(dev, af);
Thomas Graff8ff1822010-11-16 04:30:14 +00002155 if (err < 0)
2156 goto errout;
2157
Nicolas Dichtelba998902014-09-01 16:07:29 +02002158 status |= DO_SETLINK_NOTIFY;
Thomas Graff8ff1822010-11-16 04:30:14 +00002159 }
2160 }
Scott Feldman57b61082010-05-17 22:49:55 -07002161 err = 0;
2162
Anuradha Karuppiah88d63782015-07-14 13:43:20 -07002163 if (tb[IFLA_PROTO_DOWN]) {
2164 err = dev_change_proto_down(dev,
2165 nla_get_u8(tb[IFLA_PROTO_DOWN]));
2166 if (err)
2167 goto errout;
2168 status |= DO_SETLINK_NOTIFY;
2169 }
2170
Brenden Blancod1fdd912016-07-19 12:16:49 -07002171 if (tb[IFLA_XDP]) {
2172 struct nlattr *xdp[IFLA_XDP_MAX + 1];
Daniel Borkmann85de8572016-11-28 23:16:54 +01002173 u32 xdp_flags = 0;
Brenden Blancod1fdd912016-07-19 12:16:49 -07002174
2175 err = nla_parse_nested(xdp, IFLA_XDP_MAX, tb[IFLA_XDP],
Johannes Bergfceb6432017-04-12 14:34:07 +02002176 ifla_xdp_policy, NULL);
Brenden Blancod1fdd912016-07-19 12:16:49 -07002177 if (err < 0)
2178 goto errout;
2179
Brenden Blanco262d8622016-07-20 17:22:34 -07002180 if (xdp[IFLA_XDP_ATTACHED]) {
2181 err = -EINVAL;
2182 goto errout;
2183 }
Daniel Borkmann85de8572016-11-28 23:16:54 +01002184
2185 if (xdp[IFLA_XDP_FLAGS]) {
2186 xdp_flags = nla_get_u32(xdp[IFLA_XDP_FLAGS]);
2187 if (xdp_flags & ~XDP_FLAGS_MASK) {
2188 err = -EINVAL;
2189 goto errout;
2190 }
2191 }
2192
Brenden Blancod1fdd912016-07-19 12:16:49 -07002193 if (xdp[IFLA_XDP_FD]) {
2194 err = dev_change_xdp_fd(dev,
Daniel Borkmann85de8572016-11-28 23:16:54 +01002195 nla_get_s32(xdp[IFLA_XDP_FD]),
2196 xdp_flags);
Brenden Blancod1fdd912016-07-19 12:16:49 -07002197 if (err)
2198 goto errout;
2199 status |= DO_SETLINK_NOTIFY;
2200 }
2201 }
2202
Patrick McHardy0157f602007-06-13 12:03:36 -07002203errout:
Nicolas Dichtelba998902014-09-01 16:07:29 +02002204 if (status & DO_SETLINK_MODIFIED) {
2205 if (status & DO_SETLINK_NOTIFY)
2206 netdev_state_change(dev);
2207
2208 if (err < 0)
2209 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",
2210 dev->name);
2211 }
Patrick McHardy0157f602007-06-13 12:03:36 -07002212
Patrick McHardy0157f602007-06-13 12:03:36 -07002213 return err;
2214}
2215
Thomas Graf661d2962013-03-21 07:45:29 +00002216static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002218 struct net *net = sock_net(skb->sk);
Thomas Grafda5e0492006-08-10 21:17:37 -07002219 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -07002221 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -07002222 struct nlattr *tb[IFLA_MAX+1];
2223 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Johannes Bergfceb6432017-04-12 14:34:07 +02002225 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy, NULL);
Thomas Grafda5e0492006-08-10 21:17:37 -07002226 if (err < 0)
2227 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
Thomas Graf5176f912006-08-26 20:13:18 -07002229 if (tb[IFLA_IFNAME])
2230 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -07002231 else
2232 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -07002235 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -07002236 if (ifm->ifi_index > 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00002237 dev = __dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -07002238 else if (tb[IFLA_IFNAME])
Eric Dumazeta3d12892009-10-21 10:59:31 +00002239 dev = __dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -07002240 else
2241 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
Thomas Grafda5e0492006-08-10 21:17:37 -07002243 if (dev == NULL) {
2244 err = -ENODEV;
2245 goto errout;
2246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Eric Dumazete0d087a2009-11-07 01:26:17 -08002248 err = validate_linkmsg(dev, tb);
2249 if (err < 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00002250 goto errout;
Thomas Grafda5e0492006-08-10 21:17:37 -07002251
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002252 err = do_setlink(skb, dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -07002253errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 return err;
2255}
2256
WANG Cong66400d52015-03-24 11:53:31 -07002257static int rtnl_group_dellink(const struct net *net, int group)
2258{
2259 struct net_device *dev, *aux;
2260 LIST_HEAD(list_kill);
2261 bool found = false;
2262
2263 if (!group)
2264 return -EPERM;
2265
2266 for_each_netdev(net, dev) {
2267 if (dev->group == group) {
2268 const struct rtnl_link_ops *ops;
2269
2270 found = true;
2271 ops = dev->rtnl_link_ops;
2272 if (!ops || !ops->dellink)
2273 return -EOPNOTSUPP;
2274 }
2275 }
2276
2277 if (!found)
2278 return -ENODEV;
2279
2280 for_each_netdev_safe(net, dev, aux) {
2281 if (dev->group == group) {
2282 const struct rtnl_link_ops *ops;
2283
2284 ops = dev->rtnl_link_ops;
2285 ops->dellink(dev, &list_kill);
2286 }
2287 }
2288 unregister_netdevice_many(&list_kill);
2289
2290 return 0;
2291}
2292
Thomas Graf614732e2015-07-21 10:44:06 +02002293int rtnl_delete_link(struct net_device *dev)
2294{
2295 const struct rtnl_link_ops *ops;
2296 LIST_HEAD(list_kill);
2297
2298 ops = dev->rtnl_link_ops;
2299 if (!ops || !ops->dellink)
2300 return -EOPNOTSUPP;
2301
2302 ops->dellink(dev, &list_kill);
2303 unregister_netdevice_many(&list_kill);
2304
2305 return 0;
2306}
2307EXPORT_SYMBOL_GPL(rtnl_delete_link);
2308
Thomas Graf661d2962013-03-21 07:45:29 +00002309static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh)
Patrick McHardy38f7b872007-06-13 12:03:51 -07002310{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002311 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002312 struct net_device *dev;
2313 struct ifinfomsg *ifm;
2314 char ifname[IFNAMSIZ];
2315 struct nlattr *tb[IFLA_MAX+1];
2316 int err;
2317
Johannes Bergfceb6432017-04-12 14:34:07 +02002318 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002319 if (err < 0)
2320 return err;
2321
2322 if (tb[IFLA_IFNAME])
2323 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
2324
2325 ifm = nlmsg_data(nlh);
2326 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07002327 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002328 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -07002329 dev = __dev_get_by_name(net, ifname);
WANG Cong66400d52015-03-24 11:53:31 -07002330 else if (tb[IFLA_GROUP])
2331 return rtnl_group_dellink(net, nla_get_u32(tb[IFLA_GROUP]));
Patrick McHardy38f7b872007-06-13 12:03:51 -07002332 else
2333 return -EINVAL;
2334
2335 if (!dev)
2336 return -ENODEV;
2337
Thomas Graf614732e2015-07-21 10:44:06 +02002338 return rtnl_delete_link(dev);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002339}
2340
Patrick McHardy3729d502010-02-26 06:34:54 +00002341int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
2342{
2343 unsigned int old_flags;
2344 int err;
2345
2346 old_flags = dev->flags;
2347 if (ifm && (ifm->ifi_flags || ifm->ifi_change)) {
2348 err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
2349 if (err < 0)
2350 return err;
2351 }
2352
2353 dev->rtnl_link_state = RTNL_LINK_INITIALIZED;
Patrick McHardy3729d502010-02-26 06:34:54 +00002354
Nicolas Dichtela528c212013-09-25 12:02:44 +02002355 __dev_notify_flags(dev, old_flags, ~0U);
Patrick McHardy3729d502010-02-26 06:34:54 +00002356 return 0;
2357}
2358EXPORT_SYMBOL(rtnl_configure_link);
2359
Rami Rosenc0713562012-11-30 01:08:47 +00002360struct net_device *rtnl_create_link(struct net *net,
Thomas Graf78ebb0d2015-04-10 01:45:53 +02002361 const char *ifname, unsigned char name_assign_type,
Tom Gundersen55177502014-07-14 16:37:25 +02002362 const struct rtnl_link_ops *ops, struct nlattr *tb[])
Pavel Emelianove7199282007-08-08 22:16:38 -07002363{
Pavel Emelianove7199282007-08-08 22:16:38 -07002364 struct net_device *dev;
Jiri Pirkod40156a2012-07-20 02:28:47 +00002365 unsigned int num_tx_queues = 1;
2366 unsigned int num_rx_queues = 1;
Pavel Emelianove7199282007-08-08 22:16:38 -07002367
Jiri Pirko76ff5cc2012-07-20 02:28:48 +00002368 if (tb[IFLA_NUM_TX_QUEUES])
2369 num_tx_queues = nla_get_u32(tb[IFLA_NUM_TX_QUEUES]);
2370 else if (ops->get_num_tx_queues)
Jiri Pirkod40156a2012-07-20 02:28:47 +00002371 num_tx_queues = ops->get_num_tx_queues();
Jiri Pirko76ff5cc2012-07-20 02:28:48 +00002372
2373 if (tb[IFLA_NUM_RX_QUEUES])
2374 num_rx_queues = nla_get_u32(tb[IFLA_NUM_RX_QUEUES]);
2375 else if (ops->get_num_rx_queues)
Jiri Pirkod40156a2012-07-20 02:28:47 +00002376 num_rx_queues = ops->get_num_rx_queues();
stephen hemmingerefacb302012-04-10 18:34:43 +00002377
Tom Gundersen55177502014-07-14 16:37:25 +02002378 dev = alloc_netdev_mqs(ops->priv_size, ifname, name_assign_type,
Tom Gundersenc835a672014-07-14 16:37:24 +02002379 ops->setup, num_tx_queues, num_rx_queues);
Pavel Emelianove7199282007-08-08 22:16:38 -07002380 if (!dev)
Tobias Klauserd1892e42017-02-20 16:32:06 +01002381 return ERR_PTR(-ENOMEM);
Pavel Emelianove7199282007-08-08 22:16:38 -07002382
Eric W. Biederman81adee42009-11-08 00:53:51 -08002383 dev_net_set(dev, net);
2384 dev->rtnl_link_ops = ops;
Patrick McHardy3729d502010-02-26 06:34:54 +00002385 dev->rtnl_link_state = RTNL_LINK_INITIALIZING;
Eric W. Biederman81adee42009-11-08 00:53:51 -08002386
Pavel Emelianove7199282007-08-08 22:16:38 -07002387 if (tb[IFLA_MTU])
2388 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
Jiri Pirko2afb9b52013-01-06 12:41:57 +00002389 if (tb[IFLA_ADDRESS]) {
Pavel Emelianove7199282007-08-08 22:16:38 -07002390 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
2391 nla_len(tb[IFLA_ADDRESS]));
Jiri Pirko2afb9b52013-01-06 12:41:57 +00002392 dev->addr_assign_type = NET_ADDR_SET;
2393 }
Pavel Emelianove7199282007-08-08 22:16:38 -07002394 if (tb[IFLA_BROADCAST])
2395 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
2396 nla_len(tb[IFLA_BROADCAST]));
2397 if (tb[IFLA_TXQLEN])
2398 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
2399 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08002400 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Pavel Emelianove7199282007-08-08 22:16:38 -07002401 if (tb[IFLA_LINKMODE])
2402 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
Patrick McHardyffa934f2011-01-20 03:00:42 +00002403 if (tb[IFLA_GROUP])
2404 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
Pavel Emelianove7199282007-08-08 22:16:38 -07002405
2406 return dev;
Pavel Emelianove7199282007-08-08 22:16:38 -07002407}
Eric Dumazete0d087a2009-11-07 01:26:17 -08002408EXPORT_SYMBOL(rtnl_create_link);
Pavel Emelianove7199282007-08-08 22:16:38 -07002409
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002410static int rtnl_group_changelink(const struct sk_buff *skb,
2411 struct net *net, int group,
Vlad Dogarue7ed8282011-01-13 23:38:31 +00002412 struct ifinfomsg *ifm,
2413 struct nlattr **tb)
2414{
WANG Congd0795352015-03-23 16:31:09 -07002415 struct net_device *dev, *aux;
Vlad Dogarue7ed8282011-01-13 23:38:31 +00002416 int err;
2417
WANG Congd0795352015-03-23 16:31:09 -07002418 for_each_netdev_safe(net, dev, aux) {
Vlad Dogarue7ed8282011-01-13 23:38:31 +00002419 if (dev->group == group) {
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002420 err = do_setlink(skb, dev, ifm, tb, NULL, 0);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00002421 if (err < 0)
2422 return err;
2423 }
2424 }
2425
2426 return 0;
2427}
2428
Thomas Graf661d2962013-03-21 07:45:29 +00002429static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh)
Patrick McHardy38f7b872007-06-13 12:03:51 -07002430{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002431 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002432 const struct rtnl_link_ops *ops;
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01002433 const struct rtnl_link_ops *m_ops = NULL;
Patrick McHardy38f7b872007-06-13 12:03:51 -07002434 struct net_device *dev;
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01002435 struct net_device *master_dev = NULL;
Patrick McHardy38f7b872007-06-13 12:03:51 -07002436 struct ifinfomsg *ifm;
2437 char kind[MODULE_NAME_LEN];
2438 char ifname[IFNAMSIZ];
2439 struct nlattr *tb[IFLA_MAX+1];
2440 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
Tom Gundersen55177502014-07-14 16:37:25 +02002441 unsigned char name_assign_type = NET_NAME_USER;
Patrick McHardy38f7b872007-06-13 12:03:51 -07002442 int err;
2443
Johannes Berg95a5afc2008-10-16 15:24:51 -07002444#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07002445replay:
Thomas Graf8072f082007-07-31 14:13:50 -07002446#endif
Johannes Bergfceb6432017-04-12 14:34:07 +02002447 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002448 if (err < 0)
2449 return err;
2450
2451 if (tb[IFLA_IFNAME])
2452 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
2453 else
2454 ifname[0] = '\0';
2455
2456 ifm = nlmsg_data(nlh);
2457 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07002458 dev = __dev_get_by_index(net, ifm->ifi_index);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00002459 else {
2460 if (ifname[0])
2461 dev = __dev_get_by_name(net, ifname);
Vlad Dogarue7ed8282011-01-13 23:38:31 +00002462 else
2463 dev = NULL;
2464 }
Patrick McHardy38f7b872007-06-13 12:03:51 -07002465
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01002466 if (dev) {
2467 master_dev = netdev_master_upper_dev_get(dev);
2468 if (master_dev)
2469 m_ops = master_dev->rtnl_link_ops;
2470 }
2471
Eric Dumazete0d087a2009-11-07 01:26:17 -08002472 err = validate_linkmsg(dev, tb);
2473 if (err < 0)
Thomas Graf1840bb12008-02-23 19:54:36 -08002474 return err;
2475
Patrick McHardy38f7b872007-06-13 12:03:51 -07002476 if (tb[IFLA_LINKINFO]) {
2477 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
Johannes Bergfceb6432017-04-12 14:34:07 +02002478 tb[IFLA_LINKINFO], ifla_info_policy,
2479 NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002480 if (err < 0)
2481 return err;
2482 } else
2483 memset(linkinfo, 0, sizeof(linkinfo));
2484
2485 if (linkinfo[IFLA_INFO_KIND]) {
2486 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
2487 ops = rtnl_link_ops_get(kind);
2488 } else {
2489 kind[0] = '\0';
2490 ops = NULL;
2491 }
2492
2493 if (1) {
Sasha Levin4e10fd52015-02-24 14:14:35 -05002494 struct nlattr *attr[ops ? ops->maxtype + 1 : 1];
2495 struct nlattr *slave_attr[m_ops ? m_ops->slave_maxtype + 1 : 1];
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01002496 struct nlattr **data = NULL;
2497 struct nlattr **slave_data = NULL;
Nicolas Dichtel317f4812015-01-15 15:11:18 +01002498 struct net *dest_net, *link_net = NULL;
Patrick McHardy38f7b872007-06-13 12:03:51 -07002499
2500 if (ops) {
2501 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
2502 err = nla_parse_nested(attr, ops->maxtype,
2503 linkinfo[IFLA_INFO_DATA],
Johannes Bergfceb6432017-04-12 14:34:07 +02002504 ops->policy, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002505 if (err < 0)
2506 return err;
2507 data = attr;
2508 }
2509 if (ops->validate) {
2510 err = ops->validate(tb, data);
2511 if (err < 0)
2512 return err;
2513 }
2514 }
2515
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01002516 if (m_ops) {
2517 if (m_ops->slave_maxtype &&
2518 linkinfo[IFLA_INFO_SLAVE_DATA]) {
2519 err = nla_parse_nested(slave_attr,
2520 m_ops->slave_maxtype,
2521 linkinfo[IFLA_INFO_SLAVE_DATA],
Johannes Bergfceb6432017-04-12 14:34:07 +02002522 m_ops->slave_policy,
2523 NULL);
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01002524 if (err < 0)
2525 return err;
2526 slave_data = slave_attr;
2527 }
2528 if (m_ops->slave_validate) {
2529 err = m_ops->slave_validate(tb, slave_data);
2530 if (err < 0)
2531 return err;
2532 }
2533 }
2534
Patrick McHardy38f7b872007-06-13 12:03:51 -07002535 if (dev) {
Nicolas Dichtel90c325e2014-09-01 16:07:28 +02002536 int status = 0;
Patrick McHardy38f7b872007-06-13 12:03:51 -07002537
2538 if (nlh->nlmsg_flags & NLM_F_EXCL)
2539 return -EEXIST;
2540 if (nlh->nlmsg_flags & NLM_F_REPLACE)
2541 return -EOPNOTSUPP;
2542
2543 if (linkinfo[IFLA_INFO_DATA]) {
2544 if (!ops || ops != dev->rtnl_link_ops ||
2545 !ops->changelink)
2546 return -EOPNOTSUPP;
2547
2548 err = ops->changelink(dev, tb, data);
2549 if (err < 0)
2550 return err;
Nicolas Dichtelba998902014-09-01 16:07:29 +02002551 status |= DO_SETLINK_NOTIFY;
Patrick McHardy38f7b872007-06-13 12:03:51 -07002552 }
2553
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01002554 if (linkinfo[IFLA_INFO_SLAVE_DATA]) {
2555 if (!m_ops || !m_ops->slave_changelink)
2556 return -EOPNOTSUPP;
2557
2558 err = m_ops->slave_changelink(master_dev, dev,
2559 tb, slave_data);
2560 if (err < 0)
2561 return err;
Nicolas Dichtelba998902014-09-01 16:07:29 +02002562 status |= DO_SETLINK_NOTIFY;
Jiri Pirkoba7d49b2014-01-22 09:05:55 +01002563 }
2564
Nicolas Dichtel90c325e2014-09-01 16:07:28 +02002565 return do_setlink(skb, dev, ifm, tb, ifname, status);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002566 }
2567
Patrick McHardyffa934f2011-01-20 03:00:42 +00002568 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
2569 if (ifm->ifi_index == 0 && tb[IFLA_GROUP])
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002570 return rtnl_group_changelink(skb, net,
Patrick McHardyffa934f2011-01-20 03:00:42 +00002571 nla_get_u32(tb[IFLA_GROUP]),
2572 ifm, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002573 return -ENODEV;
Patrick McHardyffa934f2011-01-20 03:00:42 +00002574 }
Patrick McHardy38f7b872007-06-13 12:03:51 -07002575
Theuns Verwoerd160ca012017-01-31 12:23:46 +13002576 if (tb[IFLA_MAP] || tb[IFLA_PROTINFO])
Patrick McHardy38f7b872007-06-13 12:03:51 -07002577 return -EOPNOTSUPP;
2578
2579 if (!ops) {
Johannes Berg95a5afc2008-10-16 15:24:51 -07002580#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07002581 if (kind[0]) {
2582 __rtnl_unlock();
2583 request_module("rtnl-link-%s", kind);
2584 rtnl_lock();
2585 ops = rtnl_link_ops_get(kind);
2586 if (ops)
2587 goto replay;
2588 }
2589#endif
2590 return -EOPNOTSUPP;
2591 }
2592
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02002593 if (!ops->setup)
2594 return -EOPNOTSUPP;
2595
Tom Gundersen55177502014-07-14 16:37:25 +02002596 if (!ifname[0]) {
Patrick McHardy38f7b872007-06-13 12:03:51 -07002597 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
Tom Gundersen55177502014-07-14 16:37:25 +02002598 name_assign_type = NET_NAME_ENUM;
2599 }
Patrick McHardy38f7b872007-06-13 12:03:51 -07002600
Eric W. Biederman81adee42009-11-08 00:53:51 -08002601 dest_net = rtnl_link_get_net(net, tb);
Eric W. Biederman13ad1772011-01-29 14:57:22 +00002602 if (IS_ERR(dest_net))
2603 return PTR_ERR(dest_net);
2604
Eric W. Biederman505ce412015-02-26 16:19:00 -06002605 err = -EPERM;
2606 if (!netlink_ns_capable(skb, dest_net->user_ns, CAP_NET_ADMIN))
2607 goto out;
2608
Nicolas Dichtel317f4812015-01-15 15:11:18 +01002609 if (tb[IFLA_LINK_NETNSID]) {
2610 int id = nla_get_s32(tb[IFLA_LINK_NETNSID]);
2611
2612 link_net = get_net_ns_by_id(dest_net, id);
2613 if (!link_net) {
2614 err = -EINVAL;
2615 goto out;
2616 }
Eric W. Biederman06615be2015-02-26 16:20:07 -06002617 err = -EPERM;
2618 if (!netlink_ns_capable(skb, link_net->user_ns, CAP_NET_ADMIN))
2619 goto out;
Nicolas Dichtel317f4812015-01-15 15:11:18 +01002620 }
2621
2622 dev = rtnl_create_link(link_net ? : dest_net, ifname,
2623 name_assign_type, ops, tb);
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00002624 if (IS_ERR(dev)) {
Pavel Emelianove7199282007-08-08 22:16:38 -07002625 err = PTR_ERR(dev);
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00002626 goto out;
2627 }
2628
2629 dev->ifindex = ifm->ifi_index;
2630
Cong Wang0e0eee22014-02-11 15:51:30 -08002631 if (ops->newlink) {
Nicolas Dichtel7b4ce692015-01-27 11:13:08 +01002632 err = ops->newlink(link_net ? : net, dev, tb, data);
Cong Wang0e0eee22014-02-11 15:51:30 -08002633 /* Drivers should call free_netdev() in ->destructor
Cong Wange51fb152014-06-03 16:40:47 -07002634 * and unregister it on failure after registration
2635 * so that device could be finally freed in rtnl_unlock.
Cong Wang0e0eee22014-02-11 15:51:30 -08002636 */
Cong Wange51fb152014-06-03 16:40:47 -07002637 if (err < 0) {
2638 /* If device is not registered at all, free it now */
2639 if (dev->reg_state == NETREG_UNINITIALIZED)
2640 free_netdev(dev);
Cong Wang0e0eee22014-02-11 15:51:30 -08002641 goto out;
Cong Wange51fb152014-06-03 16:40:47 -07002642 }
Cong Wang0e0eee22014-02-11 15:51:30 -08002643 } else {
Patrick McHardy2d85cba2007-07-11 19:42:13 -07002644 err = register_netdevice(dev);
Cong Wang0e0eee22014-02-11 15:51:30 -08002645 if (err < 0) {
2646 free_netdev(dev);
2647 goto out;
2648 }
Dan Carpenterfce9b9b2013-08-14 12:35:42 +03002649 }
Patrick McHardy3729d502010-02-26 06:34:54 +00002650 err = rtnl_configure_link(dev, ifm);
David S. Miller43638902015-03-10 21:58:32 -04002651 if (err < 0)
2652 goto out_unregister;
Nicolas Dichtelbdef2792015-01-20 15:15:42 +01002653 if (link_net) {
Nicolas Dichtel317f4812015-01-15 15:11:18 +01002654 err = dev_change_net_namespace(dev, dest_net, ifname);
Nicolas Dichtelbdef2792015-01-20 15:15:42 +01002655 if (err < 0)
David S. Miller43638902015-03-10 21:58:32 -04002656 goto out_unregister;
Nicolas Dichtelbdef2792015-01-20 15:15:42 +01002657 }
Theuns Verwoerd160ca012017-01-31 12:23:46 +13002658 if (tb[IFLA_MASTER]) {
2659 err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER]));
2660 if (err)
2661 goto out_unregister;
2662 }
Patrick McHardy3729d502010-02-26 06:34:54 +00002663out:
Nicolas Dichtel317f4812015-01-15 15:11:18 +01002664 if (link_net)
2665 put_net(link_net);
Eric W. Biederman81adee42009-11-08 00:53:51 -08002666 put_net(dest_net);
Patrick McHardy38f7b872007-06-13 12:03:51 -07002667 return err;
David S. Miller43638902015-03-10 21:58:32 -04002668out_unregister:
2669 if (ops->newlink) {
2670 LIST_HEAD(list_kill);
2671
2672 ops->dellink(dev, &list_kill);
2673 unregister_netdevice_many(&list_kill);
2674 } else {
2675 unregister_netdevice(dev);
2676 }
2677 goto out;
Patrick McHardy38f7b872007-06-13 12:03:51 -07002678 }
2679}
2680
Thomas Graf661d2962013-03-21 07:45:29 +00002681static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002682{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002683 struct net *net = sock_net(skb->sk);
Thomas Grafb60c5112006-08-04 23:05:34 -07002684 struct ifinfomsg *ifm;
Eric Dumazeta3d12892009-10-21 10:59:31 +00002685 char ifname[IFNAMSIZ];
Thomas Grafb60c5112006-08-04 23:05:34 -07002686 struct nlattr *tb[IFLA_MAX+1];
2687 struct net_device *dev = NULL;
2688 struct sk_buff *nskb;
Thomas Graf339bf982006-11-10 14:10:15 -08002689 int err;
Greg Rose115c9b82012-02-21 16:54:48 -05002690 u32 ext_filter_mask = 0;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002691
Johannes Bergfceb6432017-04-12 14:34:07 +02002692 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy, NULL);
Thomas Grafb60c5112006-08-04 23:05:34 -07002693 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07002694 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07002695
Eric Dumazeta3d12892009-10-21 10:59:31 +00002696 if (tb[IFLA_IFNAME])
2697 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
2698
Greg Rose115c9b82012-02-21 16:54:48 -05002699 if (tb[IFLA_EXT_MASK])
2700 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
2701
Thomas Grafb60c5112006-08-04 23:05:34 -07002702 ifm = nlmsg_data(nlh);
Eric Dumazeta3d12892009-10-21 10:59:31 +00002703 if (ifm->ifi_index > 0)
2704 dev = __dev_get_by_index(net, ifm->ifi_index);
2705 else if (tb[IFLA_IFNAME])
2706 dev = __dev_get_by_name(net, ifname);
2707 else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002708 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07002709
Eric Dumazeta3d12892009-10-21 10:59:31 +00002710 if (dev == NULL)
2711 return -ENODEV;
2712
Greg Rose115c9b82012-02-21 16:54:48 -05002713 nskb = nlmsg_new(if_nlmsg_size(dev, ext_filter_mask), GFP_KERNEL);
Eric Dumazeta3d12892009-10-21 10:59:31 +00002714 if (nskb == NULL)
2715 return -ENOBUFS;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002716
Eric W. Biederman15e47302012-09-07 20:12:54 +00002717 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).portid,
David S. Millerbf74b202017-04-09 14:45:21 -07002718 nlh->nlmsg_seq, 0, 0, ext_filter_mask);
Patrick McHardy26932562007-01-31 23:16:40 -08002719 if (err < 0) {
2720 /* -EMSGSIZE implies BUG in if_nlmsg_size */
2721 WARN_ON(err == -EMSGSIZE);
2722 kfree_skb(nskb);
Eric Dumazeta3d12892009-10-21 10:59:31 +00002723 } else
Eric W. Biederman15e47302012-09-07 20:12:54 +00002724 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).portid);
Thomas Grafb60c5112006-08-04 23:05:34 -07002725
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002726 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002727}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08002728
Greg Rose115c9b82012-02-21 16:54:48 -05002729static u16 rtnl_calcit(struct sk_buff *skb, struct nlmsghdr *nlh)
Greg Rosec7ac8672011-06-10 01:27:09 +00002730{
Greg Rose115c9b82012-02-21 16:54:48 -05002731 struct net *net = sock_net(skb->sk);
2732 struct net_device *dev;
2733 struct nlattr *tb[IFLA_MAX+1];
2734 u32 ext_filter_mask = 0;
2735 u16 min_ifinfo_dump_size = 0;
Michal Schmidte5eca6d2014-05-28 14:15:19 +02002736 int hdrlen;
Greg Rose115c9b82012-02-21 16:54:48 -05002737
Michal Schmidte5eca6d2014-05-28 14:15:19 +02002738 /* Same kernel<->userspace interface hack as in rtnl_dump_ifinfo. */
2739 hdrlen = nlmsg_len(nlh) < sizeof(struct ifinfomsg) ?
2740 sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg);
2741
Johannes Bergfceb6432017-04-12 14:34:07 +02002742 if (nlmsg_parse(nlh, hdrlen, tb, IFLA_MAX, ifla_policy, NULL) >= 0) {
Eric Dumazeta4b64fb2012-03-04 12:32:10 +00002743 if (tb[IFLA_EXT_MASK])
2744 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
2745 }
Greg Rose115c9b82012-02-21 16:54:48 -05002746
2747 if (!ext_filter_mask)
2748 return NLMSG_GOODSIZE;
2749 /*
2750 * traverse the list of net devices and compute the minimum
2751 * buffer size based upon the filter mask.
2752 */
2753 list_for_each_entry(dev, &net->dev_base_head, dev_list) {
2754 min_ifinfo_dump_size = max_t(u16, min_ifinfo_dump_size,
2755 if_nlmsg_size(dev,
2756 ext_filter_mask));
2757 }
2758
Zhang Shengju93af2052016-11-22 14:14:28 +08002759 return nlmsg_total_size(min_ifinfo_dump_size);
Greg Rosec7ac8672011-06-10 01:27:09 +00002760}
2761
Adrian Bunk42bad1d2007-04-26 00:57:41 -07002762static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763{
2764 int idx;
2765 int s_idx = cb->family;
2766
2767 if (s_idx == 0)
2768 s_idx = 1;
Patrick McHardy25239ce2010-04-26 16:02:05 +02002769 for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 int type = cb->nlh->nlmsg_type-RTM_BASE;
2771 if (idx < s_idx || idx == PF_PACKET)
2772 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07002773 if (rtnl_msg_handlers[idx] == NULL ||
2774 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 continue;
Nicolas Dichtel04652772013-03-22 06:28:42 +00002776 if (idx > s_idx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 memset(&cb->args[0], 0, sizeof(cb->args));
Nicolas Dichtel04652772013-03-22 06:28:42 +00002778 cb->prev_seq = 0;
2779 cb->seq = 0;
2780 }
Thomas Grafe2849862007-03-22 11:48:11 -07002781 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 break;
2783 }
2784 cb->family = idx;
2785
2786 return skb->len;
2787}
2788
Mahesh Bandewar395eea62014-12-03 13:46:24 -08002789struct sk_buff *rtmsg_ifinfo_build_skb(int type, struct net_device *dev,
David S. Millerbf74b202017-04-09 14:45:21 -07002790 unsigned int change, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002792 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07002794 int err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00002795 size_t if_info_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
Alexei Starovoitov7f294052013-10-23 16:02:42 -07002797 skb = nlmsg_new((if_info_size = if_nlmsg_size(dev, 0)), flags);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07002798 if (skb == NULL)
2799 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
David S. Millerbf74b202017-04-09 14:45:21 -07002801 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08002802 if (err < 0) {
2803 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
2804 WARN_ON(err == -EMSGSIZE);
2805 kfree_skb(skb);
2806 goto errout;
2807 }
Mahesh Bandewar395eea62014-12-03 13:46:24 -08002808 return skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07002809errout:
2810 if (err < 0)
Eric W. Biederman4b3da702007-11-19 22:27:40 -08002811 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Mahesh Bandewar395eea62014-12-03 13:46:24 -08002812 return NULL;
2813}
2814
2815void rtmsg_ifinfo_send(struct sk_buff *skb, struct net_device *dev, gfp_t flags)
2816{
2817 struct net *net = dev_net(dev);
2818
2819 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, flags);
2820}
2821
David S. Millerbf74b202017-04-09 14:45:21 -07002822void rtmsg_ifinfo(int type, struct net_device *dev, unsigned int change,
2823 gfp_t flags)
Mahesh Bandewar395eea62014-12-03 13:46:24 -08002824{
2825 struct sk_buff *skb;
2826
Nicolas Dichteled2a80a2015-05-13 14:19:42 +02002827 if (dev->reg_state != NETREG_REGISTERED)
2828 return;
2829
David S. Millerbf74b202017-04-09 14:45:21 -07002830 skb = rtmsg_ifinfo_build_skb(type, dev, change, flags);
Mahesh Bandewar395eea62014-12-03 13:46:24 -08002831 if (skb)
2832 rtmsg_ifinfo_send(skb, dev, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833}
Jiri Pirko471cb5a2013-01-03 22:49:01 +00002834EXPORT_SYMBOL(rtmsg_ifinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
John Fastabendd83b0602012-04-15 06:44:08 +00002836static int nlmsg_populate_fdb_fill(struct sk_buff *skb,
2837 struct net_device *dev,
Hubert Sokolowski1e53d5b2015-04-09 12:16:17 +00002838 u8 *addr, u16 vid, u32 pid, u32 seq,
Nicolas Dichtel1c104a62014-03-19 17:47:49 +01002839 int type, unsigned int flags,
Hubert Sokolowskib3379042015-12-15 13:20:30 +00002840 int nlflags, u16 ndm_state)
John Fastabendd83b0602012-04-15 06:44:08 +00002841{
2842 struct nlmsghdr *nlh;
2843 struct ndmsg *ndm;
2844
Nicolas Dichtel1c104a62014-03-19 17:47:49 +01002845 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), nlflags);
John Fastabendd83b0602012-04-15 06:44:08 +00002846 if (!nlh)
2847 return -EMSGSIZE;
2848
2849 ndm = nlmsg_data(nlh);
2850 ndm->ndm_family = AF_BRIDGE;
2851 ndm->ndm_pad1 = 0;
2852 ndm->ndm_pad2 = 0;
2853 ndm->ndm_flags = flags;
2854 ndm->ndm_type = 0;
2855 ndm->ndm_ifindex = dev->ifindex;
Hubert Sokolowskib3379042015-12-15 13:20:30 +00002856 ndm->ndm_state = ndm_state;
John Fastabendd83b0602012-04-15 06:44:08 +00002857
2858 if (nla_put(skb, NDA_LLADDR, ETH_ALEN, addr))
2859 goto nla_put_failure;
Hubert Sokolowski1e53d5b2015-04-09 12:16:17 +00002860 if (vid)
2861 if (nla_put(skb, NDA_VLAN, sizeof(u16), &vid))
2862 goto nla_put_failure;
John Fastabendd83b0602012-04-15 06:44:08 +00002863
Johannes Berg053c0952015-01-16 22:09:00 +01002864 nlmsg_end(skb, nlh);
2865 return 0;
John Fastabendd83b0602012-04-15 06:44:08 +00002866
2867nla_put_failure:
2868 nlmsg_cancel(skb, nlh);
2869 return -EMSGSIZE;
2870}
2871
John Fastabend3ff661c2012-04-15 06:44:14 +00002872static inline size_t rtnl_fdb_nlmsg_size(void)
2873{
Sabrina Dubrocaf82ef3e2016-11-18 15:50:39 +01002874 return NLMSG_ALIGN(sizeof(struct ndmsg)) +
2875 nla_total_size(ETH_ALEN) + /* NDA_LLADDR */
2876 nla_total_size(sizeof(u16)) + /* NDA_VLAN */
2877 0;
John Fastabend3ff661c2012-04-15 06:44:14 +00002878}
2879
Hubert Sokolowskib3379042015-12-15 13:20:30 +00002880static void rtnl_fdb_notify(struct net_device *dev, u8 *addr, u16 vid, int type,
2881 u16 ndm_state)
John Fastabend3ff661c2012-04-15 06:44:14 +00002882{
2883 struct net *net = dev_net(dev);
2884 struct sk_buff *skb;
2885 int err = -ENOBUFS;
2886
2887 skb = nlmsg_new(rtnl_fdb_nlmsg_size(), GFP_ATOMIC);
2888 if (!skb)
2889 goto errout;
2890
Hubert Sokolowski1e53d5b2015-04-09 12:16:17 +00002891 err = nlmsg_populate_fdb_fill(skb, dev, addr, vid,
Hubert Sokolowskib3379042015-12-15 13:20:30 +00002892 0, 0, type, NTF_SELF, 0, ndm_state);
John Fastabend3ff661c2012-04-15 06:44:14 +00002893 if (err < 0) {
2894 kfree_skb(skb);
2895 goto errout;
2896 }
2897
2898 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
2899 return;
2900errout:
2901 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
2902}
2903
Vlad Yasevich090096b2013-03-06 15:39:42 +00002904/**
2905 * ndo_dflt_fdb_add - default netdevice operation to add an FDB entry
2906 */
2907int ndo_dflt_fdb_add(struct ndmsg *ndm,
2908 struct nlattr *tb[],
2909 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01002910 const unsigned char *addr, u16 vid,
Vlad Yasevich090096b2013-03-06 15:39:42 +00002911 u16 flags)
2912{
2913 int err = -EINVAL;
2914
2915 /* If aging addresses are supported device will need to
2916 * implement its own handler for this.
2917 */
2918 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
2919 pr_info("%s: FDB only supports static addresses\n", dev->name);
2920 return err;
2921 }
2922
Or Gerlitz65891fe2014-12-14 18:19:05 +02002923 if (vid) {
2924 pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
2925 return err;
2926 }
2927
Vlad Yasevich090096b2013-03-06 15:39:42 +00002928 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
2929 err = dev_uc_add_excl(dev, addr);
2930 else if (is_multicast_ether_addr(addr))
2931 err = dev_mc_add_excl(dev, addr);
2932
2933 /* Only return duplicate errors if NLM_F_EXCL is set */
2934 if (err == -EEXIST && !(flags & NLM_F_EXCL))
2935 err = 0;
2936
2937 return err;
2938}
2939EXPORT_SYMBOL(ndo_dflt_fdb_add);
2940
Jiri Pirkof6f64242014-11-28 14:34:15 +01002941static int fdb_vid_parse(struct nlattr *vlan_attr, u16 *p_vid)
2942{
2943 u16 vid = 0;
2944
2945 if (vlan_attr) {
2946 if (nla_len(vlan_attr) != sizeof(u16)) {
2947 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid vlan\n");
2948 return -EINVAL;
2949 }
2950
2951 vid = nla_get_u16(vlan_attr);
2952
2953 if (!vid || vid >= VLAN_VID_MASK) {
2954 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid vlan id %d\n",
2955 vid);
2956 return -EINVAL;
2957 }
2958 }
2959 *p_vid = vid;
2960 return 0;
2961}
2962
Thomas Graf661d2962013-03-21 07:45:29 +00002963static int rtnl_fdb_add(struct sk_buff *skb, struct nlmsghdr *nlh)
John Fastabend77162022012-04-15 06:43:56 +00002964{
2965 struct net *net = sock_net(skb->sk);
John Fastabend77162022012-04-15 06:43:56 +00002966 struct ndmsg *ndm;
2967 struct nlattr *tb[NDA_MAX+1];
2968 struct net_device *dev;
2969 u8 *addr;
Jiri Pirkof6f64242014-11-28 14:34:15 +01002970 u16 vid;
John Fastabend77162022012-04-15 06:43:56 +00002971 int err;
2972
Johannes Bergfceb6432017-04-12 14:34:07 +02002973 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL, NULL);
John Fastabend77162022012-04-15 06:43:56 +00002974 if (err < 0)
2975 return err;
2976
2977 ndm = nlmsg_data(nlh);
2978 if (ndm->ndm_ifindex == 0) {
2979 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid ifindex\n");
2980 return -EINVAL;
2981 }
2982
2983 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
2984 if (dev == NULL) {
2985 pr_info("PF_BRIDGE: RTM_NEWNEIGH with unknown ifindex\n");
2986 return -ENODEV;
2987 }
2988
2989 if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) {
2990 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid address\n");
2991 return -EINVAL;
2992 }
2993
2994 addr = nla_data(tb[NDA_LLADDR]);
John Fastabend77162022012-04-15 06:43:56 +00002995
Jiri Pirkof6f64242014-11-28 14:34:15 +01002996 err = fdb_vid_parse(tb[NDA_VLAN], &vid);
2997 if (err)
2998 return err;
2999
John Fastabend77162022012-04-15 06:43:56 +00003000 err = -EOPNOTSUPP;
3001
3002 /* Support fdb on master device the net/bridge default case */
3003 if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) &&
3004 (dev->priv_flags & IFF_BRIDGE_PORT)) {
Jiri Pirko898e5062013-01-03 22:48:52 +00003005 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
3006 const struct net_device_ops *ops = br_dev->netdev_ops;
3007
Jiri Pirkof6f64242014-11-28 14:34:15 +01003008 err = ops->ndo_fdb_add(ndm, tb, dev, addr, vid,
3009 nlh->nlmsg_flags);
John Fastabend77162022012-04-15 06:43:56 +00003010 if (err)
3011 goto out;
3012 else
3013 ndm->ndm_flags &= ~NTF_MASTER;
3014 }
3015
3016 /* Embedded bridge, macvlan, and any other device support */
Vlad Yasevich090096b2013-03-06 15:39:42 +00003017 if ((ndm->ndm_flags & NTF_SELF)) {
3018 if (dev->netdev_ops->ndo_fdb_add)
3019 err = dev->netdev_ops->ndo_fdb_add(ndm, tb, dev, addr,
Jiri Pirkof6f64242014-11-28 14:34:15 +01003020 vid,
Vlad Yasevich090096b2013-03-06 15:39:42 +00003021 nlh->nlmsg_flags);
3022 else
Jiri Pirkof6f64242014-11-28 14:34:15 +01003023 err = ndo_dflt_fdb_add(ndm, tb, dev, addr, vid,
Vlad Yasevich090096b2013-03-06 15:39:42 +00003024 nlh->nlmsg_flags);
John Fastabend77162022012-04-15 06:43:56 +00003025
John Fastabend3ff661c2012-04-15 06:44:14 +00003026 if (!err) {
Hubert Sokolowskib3379042015-12-15 13:20:30 +00003027 rtnl_fdb_notify(dev, addr, vid, RTM_NEWNEIGH,
3028 ndm->ndm_state);
John Fastabend77162022012-04-15 06:43:56 +00003029 ndm->ndm_flags &= ~NTF_SELF;
John Fastabend3ff661c2012-04-15 06:44:14 +00003030 }
John Fastabend77162022012-04-15 06:43:56 +00003031 }
3032out:
3033 return err;
3034}
3035
Vlad Yasevich090096b2013-03-06 15:39:42 +00003036/**
3037 * ndo_dflt_fdb_del - default netdevice operation to delete an FDB entry
3038 */
3039int ndo_dflt_fdb_del(struct ndmsg *ndm,
3040 struct nlattr *tb[],
3041 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01003042 const unsigned char *addr, u16 vid)
Vlad Yasevich090096b2013-03-06 15:39:42 +00003043{
Alexander Duyckc8a89c42014-07-15 15:15:20 -07003044 int err = -EINVAL;
Vlad Yasevich090096b2013-03-06 15:39:42 +00003045
3046 /* If aging addresses are supported device will need to
3047 * implement its own handler for this.
3048 */
Sridhar Samudrala64535992013-08-08 15:19:48 -07003049 if (!(ndm->ndm_state & NUD_PERMANENT)) {
Vlad Yasevich090096b2013-03-06 15:39:42 +00003050 pr_info("%s: FDB only supports static addresses\n", dev->name);
Alexander Duyckc8a89c42014-07-15 15:15:20 -07003051 return err;
Vlad Yasevich090096b2013-03-06 15:39:42 +00003052 }
3053
3054 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
3055 err = dev_uc_del(dev, addr);
3056 else if (is_multicast_ether_addr(addr))
3057 err = dev_mc_del(dev, addr);
Vlad Yasevich090096b2013-03-06 15:39:42 +00003058
3059 return err;
3060}
3061EXPORT_SYMBOL(ndo_dflt_fdb_del);
3062
Thomas Graf661d2962013-03-21 07:45:29 +00003063static int rtnl_fdb_del(struct sk_buff *skb, struct nlmsghdr *nlh)
John Fastabend77162022012-04-15 06:43:56 +00003064{
3065 struct net *net = sock_net(skb->sk);
3066 struct ndmsg *ndm;
Vlad Yasevich1690be62013-02-13 12:00:18 +00003067 struct nlattr *tb[NDA_MAX+1];
John Fastabend77162022012-04-15 06:43:56 +00003068 struct net_device *dev;
3069 int err = -EINVAL;
3070 __u8 *addr;
Jiri Pirkof6f64242014-11-28 14:34:15 +01003071 u16 vid;
John Fastabend77162022012-04-15 06:43:56 +00003072
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07003073 if (!netlink_capable(skb, CAP_NET_ADMIN))
Vlad Yasevich1690be62013-02-13 12:00:18 +00003074 return -EPERM;
3075
Johannes Bergfceb6432017-04-12 14:34:07 +02003076 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL, NULL);
Vlad Yasevich1690be62013-02-13 12:00:18 +00003077 if (err < 0)
3078 return err;
John Fastabend77162022012-04-15 06:43:56 +00003079
3080 ndm = nlmsg_data(nlh);
3081 if (ndm->ndm_ifindex == 0) {
3082 pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid ifindex\n");
3083 return -EINVAL;
3084 }
3085
3086 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
3087 if (dev == NULL) {
3088 pr_info("PF_BRIDGE: RTM_DELNEIGH with unknown ifindex\n");
3089 return -ENODEV;
3090 }
3091
Vlad Yasevich1690be62013-02-13 12:00:18 +00003092 if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) {
3093 pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid address\n");
John Fastabend77162022012-04-15 06:43:56 +00003094 return -EINVAL;
3095 }
3096
Vlad Yasevich1690be62013-02-13 12:00:18 +00003097 addr = nla_data(tb[NDA_LLADDR]);
Vlad Yasevich1690be62013-02-13 12:00:18 +00003098
Jiri Pirkof6f64242014-11-28 14:34:15 +01003099 err = fdb_vid_parse(tb[NDA_VLAN], &vid);
3100 if (err)
3101 return err;
3102
John Fastabend77162022012-04-15 06:43:56 +00003103 err = -EOPNOTSUPP;
3104
3105 /* Support fdb on master device the net/bridge default case */
3106 if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) &&
3107 (dev->priv_flags & IFF_BRIDGE_PORT)) {
Jiri Pirko898e5062013-01-03 22:48:52 +00003108 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
3109 const struct net_device_ops *ops = br_dev->netdev_ops;
John Fastabend77162022012-04-15 06:43:56 +00003110
Jiri Pirko898e5062013-01-03 22:48:52 +00003111 if (ops->ndo_fdb_del)
Jiri Pirkof6f64242014-11-28 14:34:15 +01003112 err = ops->ndo_fdb_del(ndm, tb, dev, addr, vid);
John Fastabend77162022012-04-15 06:43:56 +00003113
3114 if (err)
3115 goto out;
3116 else
3117 ndm->ndm_flags &= ~NTF_MASTER;
3118 }
3119
3120 /* Embedded bridge, macvlan, and any other device support */
Vlad Yasevich090096b2013-03-06 15:39:42 +00003121 if (ndm->ndm_flags & NTF_SELF) {
3122 if (dev->netdev_ops->ndo_fdb_del)
Jiri Pirkof6f64242014-11-28 14:34:15 +01003123 err = dev->netdev_ops->ndo_fdb_del(ndm, tb, dev, addr,
3124 vid);
Vlad Yasevich090096b2013-03-06 15:39:42 +00003125 else
Jiri Pirkof6f64242014-11-28 14:34:15 +01003126 err = ndo_dflt_fdb_del(ndm, tb, dev, addr, vid);
John Fastabend77162022012-04-15 06:43:56 +00003127
John Fastabend3ff661c2012-04-15 06:44:14 +00003128 if (!err) {
Hubert Sokolowskib3379042015-12-15 13:20:30 +00003129 rtnl_fdb_notify(dev, addr, vid, RTM_DELNEIGH,
3130 ndm->ndm_state);
John Fastabend77162022012-04-15 06:43:56 +00003131 ndm->ndm_flags &= ~NTF_SELF;
John Fastabend3ff661c2012-04-15 06:44:14 +00003132 }
John Fastabend77162022012-04-15 06:43:56 +00003133 }
3134out:
3135 return err;
3136}
3137
John Fastabendd83b0602012-04-15 06:44:08 +00003138static int nlmsg_populate_fdb(struct sk_buff *skb,
3139 struct netlink_callback *cb,
3140 struct net_device *dev,
3141 int *idx,
3142 struct netdev_hw_addr_list *list)
3143{
3144 struct netdev_hw_addr *ha;
3145 int err;
Eric W. Biederman15e47302012-09-07 20:12:54 +00003146 u32 portid, seq;
John Fastabendd83b0602012-04-15 06:44:08 +00003147
Eric W. Biederman15e47302012-09-07 20:12:54 +00003148 portid = NETLINK_CB(cb->skb).portid;
John Fastabendd83b0602012-04-15 06:44:08 +00003149 seq = cb->nlh->nlmsg_seq;
3150
3151 list_for_each_entry(ha, &list->list, list) {
Roopa Prabhud2976532016-08-30 21:56:45 -07003152 if (*idx < cb->args[2])
John Fastabendd83b0602012-04-15 06:44:08 +00003153 goto skip;
3154
Hubert Sokolowski1e53d5b2015-04-09 12:16:17 +00003155 err = nlmsg_populate_fdb_fill(skb, dev, ha->addr, 0,
John Fastabenda7a558f2012-11-01 16:23:10 +00003156 portid, seq,
Nicolas Dichtel1c104a62014-03-19 17:47:49 +01003157 RTM_NEWNEIGH, NTF_SELF,
Hubert Sokolowskib3379042015-12-15 13:20:30 +00003158 NLM_F_MULTI, NUD_PERMANENT);
John Fastabendd83b0602012-04-15 06:44:08 +00003159 if (err < 0)
3160 return err;
3161skip:
3162 *idx += 1;
3163 }
3164 return 0;
3165}
3166
3167/**
Ben Hutchings2c530402012-07-10 10:55:09 +00003168 * ndo_dflt_fdb_dump - default netdevice operation to dump an FDB table.
John Fastabendd83b0602012-04-15 06:44:08 +00003169 * @nlh: netlink message header
3170 * @dev: netdevice
3171 *
3172 * Default netdevice operation to dump the existing unicast address list.
John Fastabend91f3e7b2013-03-29 08:18:37 +00003173 * Returns number of addresses from list put in skb.
John Fastabendd83b0602012-04-15 06:44:08 +00003174 */
3175int ndo_dflt_fdb_dump(struct sk_buff *skb,
3176 struct netlink_callback *cb,
3177 struct net_device *dev,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04003178 struct net_device *filter_dev,
Roopa Prabhud2976532016-08-30 21:56:45 -07003179 int *idx)
John Fastabendd83b0602012-04-15 06:44:08 +00003180{
3181 int err;
3182
3183 netif_addr_lock_bh(dev);
Roopa Prabhud2976532016-08-30 21:56:45 -07003184 err = nlmsg_populate_fdb(skb, cb, dev, idx, &dev->uc);
John Fastabendd83b0602012-04-15 06:44:08 +00003185 if (err)
3186 goto out;
Zhang Shengju2934c9d2016-11-30 16:37:34 +08003187 err = nlmsg_populate_fdb(skb, cb, dev, idx, &dev->mc);
John Fastabendd83b0602012-04-15 06:44:08 +00003188out:
3189 netif_addr_unlock_bh(dev);
Roopa Prabhud2976532016-08-30 21:56:45 -07003190 return err;
John Fastabendd83b0602012-04-15 06:44:08 +00003191}
3192EXPORT_SYMBOL(ndo_dflt_fdb_dump);
3193
John Fastabend77162022012-04-15 06:43:56 +00003194static int rtnl_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb)
3195{
John Fastabend77162022012-04-15 06:43:56 +00003196 struct net_device *dev;
Jamal Hadi Salim5e6d2432014-07-10 07:01:59 -04003197 struct nlattr *tb[IFLA_MAX+1];
Jamal Hadi Salim5e6d2432014-07-10 07:01:59 -04003198 struct net_device *br_dev = NULL;
3199 const struct net_device_ops *ops = NULL;
3200 const struct net_device_ops *cops = NULL;
3201 struct ifinfomsg *ifm = nlmsg_data(cb->nlh);
3202 struct net *net = sock_net(skb->sk);
Roopa Prabhud2976532016-08-30 21:56:45 -07003203 struct hlist_head *head;
Jamal Hadi Salim5e6d2432014-07-10 07:01:59 -04003204 int brport_idx = 0;
3205 int br_idx = 0;
Roopa Prabhud2976532016-08-30 21:56:45 -07003206 int h, s_h;
3207 int idx = 0, s_idx;
3208 int err = 0;
3209 int fidx = 0;
John Fastabend77162022012-04-15 06:43:56 +00003210
Johannes Bergfceb6432017-04-12 14:34:07 +02003211 if (nlmsg_parse(cb->nlh, sizeof(struct ifinfomsg), tb,
3212 IFLA_MAX, ifla_policy, NULL) == 0) {
Jamal Hadi Salim5e6d2432014-07-10 07:01:59 -04003213 if (tb[IFLA_MASTER])
3214 br_idx = nla_get_u32(tb[IFLA_MASTER]);
3215 }
John Fastabend77162022012-04-15 06:43:56 +00003216
Jamal Hadi Salim5e6d2432014-07-10 07:01:59 -04003217 brport_idx = ifm->ifi_index;
3218
3219 if (br_idx) {
3220 br_dev = __dev_get_by_index(net, br_idx);
3221 if (!br_dev)
3222 return -ENODEV;
3223
3224 ops = br_dev->netdev_ops;
Jamal Hadi Salim5e6d2432014-07-10 07:01:59 -04003225 }
3226
Roopa Prabhud2976532016-08-30 21:56:45 -07003227 s_h = cb->args[0];
3228 s_idx = cb->args[1];
Jamal Hadi Salim5e6d2432014-07-10 07:01:59 -04003229
Roopa Prabhud2976532016-08-30 21:56:45 -07003230 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
3231 idx = 0;
3232 head = &net->dev_index_head[h];
3233 hlist_for_each_entry(dev, head, index_hlist) {
3234
3235 if (brport_idx && (dev->ifindex != brport_idx))
3236 continue;
3237
3238 if (!br_idx) { /* user did not specify a specific bridge */
3239 if (dev->priv_flags & IFF_BRIDGE_PORT) {
3240 br_dev = netdev_master_upper_dev_get(dev);
3241 cops = br_dev->netdev_ops;
3242 }
3243 } else {
3244 if (dev != br_dev &&
3245 !(dev->priv_flags & IFF_BRIDGE_PORT))
3246 continue;
3247
3248 if (br_dev != netdev_master_upper_dev_get(dev) &&
3249 !(dev->priv_flags & IFF_EBRIDGE))
3250 continue;
3251 cops = ops;
Jamal Hadi Salim5e6d2432014-07-10 07:01:59 -04003252 }
3253
Roopa Prabhud2976532016-08-30 21:56:45 -07003254 if (idx < s_idx)
3255 goto cont;
Jamal Hadi Salim5e6d2432014-07-10 07:01:59 -04003256
Roopa Prabhud2976532016-08-30 21:56:45 -07003257 if (dev->priv_flags & IFF_BRIDGE_PORT) {
3258 if (cops && cops->ndo_fdb_dump) {
3259 err = cops->ndo_fdb_dump(skb, cb,
3260 br_dev, dev,
3261 &fidx);
3262 if (err == -EMSGSIZE)
3263 goto out;
3264 }
3265 }
Jamal Hadi Salim5e6d2432014-07-10 07:01:59 -04003266
Roopa Prabhud2976532016-08-30 21:56:45 -07003267 if (dev->netdev_ops->ndo_fdb_dump)
3268 err = dev->netdev_ops->ndo_fdb_dump(skb, cb,
3269 dev, NULL,
3270 &fidx);
3271 else
3272 err = ndo_dflt_fdb_dump(skb, cb, dev, NULL,
3273 &fidx);
3274 if (err == -EMSGSIZE)
3275 goto out;
3276
3277 cops = NULL;
3278
3279 /* reset fdb offset to 0 for rest of the interfaces */
3280 cb->args[2] = 0;
3281 fidx = 0;
3282cont:
3283 idx++;
John Fastabend77162022012-04-15 06:43:56 +00003284 }
John Fastabend77162022012-04-15 06:43:56 +00003285 }
John Fastabend77162022012-04-15 06:43:56 +00003286
Roopa Prabhud2976532016-08-30 21:56:45 -07003287out:
3288 cb->args[0] = h;
3289 cb->args[1] = idx;
3290 cb->args[2] = fidx;
3291
John Fastabend77162022012-04-15 06:43:56 +00003292 return skb->len;
3293}
3294
Scott Feldman2c3c0312014-11-28 14:34:25 +01003295static int brport_nla_put_flag(struct sk_buff *skb, u32 flags, u32 mask,
3296 unsigned int attrnum, unsigned int flag)
3297{
3298 if (mask & flag)
3299 return nla_put_u8(skb, attrnum, !!(flags & flag));
3300 return 0;
3301}
3302
John Fastabend815cccb2012-10-24 08:13:09 +00003303int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
Scott Feldman2c3c0312014-11-28 14:34:25 +01003304 struct net_device *dev, u16 mode,
Scott Feldman7d4f8d82015-06-22 00:27:17 -07003305 u32 flags, u32 mask, int nlflags,
3306 u32 filter_mask,
3307 int (*vlan_fill)(struct sk_buff *skb,
3308 struct net_device *dev,
3309 u32 filter_mask))
John Fastabend815cccb2012-10-24 08:13:09 +00003310{
3311 struct nlmsghdr *nlh;
3312 struct ifinfomsg *ifm;
3313 struct nlattr *br_afspec;
Scott Feldman2c3c0312014-11-28 14:34:25 +01003314 struct nlattr *protinfo;
John Fastabend815cccb2012-10-24 08:13:09 +00003315 u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN;
Jiri Pirko898e5062013-01-03 22:48:52 +00003316 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
Scott Feldman7d4f8d82015-06-22 00:27:17 -07003317 int err = 0;
John Fastabend815cccb2012-10-24 08:13:09 +00003318
Nicolas Dichtel46c264d2015-04-28 18:33:49 +02003319 nlh = nlmsg_put(skb, pid, seq, RTM_NEWLINK, sizeof(*ifm), nlflags);
John Fastabend815cccb2012-10-24 08:13:09 +00003320 if (nlh == NULL)
3321 return -EMSGSIZE;
3322
3323 ifm = nlmsg_data(nlh);
3324 ifm->ifi_family = AF_BRIDGE;
3325 ifm->__ifi_pad = 0;
3326 ifm->ifi_type = dev->type;
3327 ifm->ifi_index = dev->ifindex;
3328 ifm->ifi_flags = dev_get_flags(dev);
3329 ifm->ifi_change = 0;
3330
3331
3332 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
3333 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
3334 nla_put_u8(skb, IFLA_OPERSTATE, operstate) ||
Jiri Pirko898e5062013-01-03 22:48:52 +00003335 (br_dev &&
3336 nla_put_u32(skb, IFLA_MASTER, br_dev->ifindex)) ||
John Fastabend815cccb2012-10-24 08:13:09 +00003337 (dev->addr_len &&
3338 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
Nicolas Dichtela54acb32015-04-02 17:07:00 +02003339 (dev->ifindex != dev_get_iflink(dev) &&
3340 nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev))))
John Fastabend815cccb2012-10-24 08:13:09 +00003341 goto nla_put_failure;
3342
3343 br_afspec = nla_nest_start(skb, IFLA_AF_SPEC);
3344 if (!br_afspec)
3345 goto nla_put_failure;
3346
Roopa Prabhu1d460b92014-12-08 14:04:20 -08003347 if (nla_put_u16(skb, IFLA_BRIDGE_FLAGS, BRIDGE_FLAGS_SELF)) {
John Fastabend815cccb2012-10-24 08:13:09 +00003348 nla_nest_cancel(skb, br_afspec);
3349 goto nla_put_failure;
3350 }
Roopa Prabhu1d460b92014-12-08 14:04:20 -08003351
3352 if (mode != BRIDGE_MODE_UNDEF) {
3353 if (nla_put_u16(skb, IFLA_BRIDGE_MODE, mode)) {
3354 nla_nest_cancel(skb, br_afspec);
3355 goto nla_put_failure;
3356 }
3357 }
Scott Feldman7d4f8d82015-06-22 00:27:17 -07003358 if (vlan_fill) {
3359 err = vlan_fill(skb, dev, filter_mask);
3360 if (err) {
3361 nla_nest_cancel(skb, br_afspec);
3362 goto nla_put_failure;
3363 }
3364 }
John Fastabend815cccb2012-10-24 08:13:09 +00003365 nla_nest_end(skb, br_afspec);
3366
Scott Feldman2c3c0312014-11-28 14:34:25 +01003367 protinfo = nla_nest_start(skb, IFLA_PROTINFO | NLA_F_NESTED);
3368 if (!protinfo)
3369 goto nla_put_failure;
3370
3371 if (brport_nla_put_flag(skb, flags, mask,
3372 IFLA_BRPORT_MODE, BR_HAIRPIN_MODE) ||
3373 brport_nla_put_flag(skb, flags, mask,
3374 IFLA_BRPORT_GUARD, BR_BPDU_GUARD) ||
3375 brport_nla_put_flag(skb, flags, mask,
3376 IFLA_BRPORT_FAST_LEAVE,
3377 BR_MULTICAST_FAST_LEAVE) ||
3378 brport_nla_put_flag(skb, flags, mask,
3379 IFLA_BRPORT_PROTECT, BR_ROOT_BLOCK) ||
3380 brport_nla_put_flag(skb, flags, mask,
3381 IFLA_BRPORT_LEARNING, BR_LEARNING) ||
3382 brport_nla_put_flag(skb, flags, mask,
3383 IFLA_BRPORT_LEARNING_SYNC, BR_LEARNING_SYNC) ||
3384 brport_nla_put_flag(skb, flags, mask,
3385 IFLA_BRPORT_UNICAST_FLOOD, BR_FLOOD) ||
3386 brport_nla_put_flag(skb, flags, mask,
3387 IFLA_BRPORT_PROXYARP, BR_PROXYARP)) {
3388 nla_nest_cancel(skb, protinfo);
3389 goto nla_put_failure;
3390 }
3391
3392 nla_nest_end(skb, protinfo);
3393
Johannes Berg053c0952015-01-16 22:09:00 +01003394 nlmsg_end(skb, nlh);
3395 return 0;
John Fastabend815cccb2012-10-24 08:13:09 +00003396nla_put_failure:
3397 nlmsg_cancel(skb, nlh);
Scott Feldman7d4f8d82015-06-22 00:27:17 -07003398 return err ? err : -EMSGSIZE;
John Fastabend815cccb2012-10-24 08:13:09 +00003399}
Scott Feldman7d4f8d82015-06-22 00:27:17 -07003400EXPORT_SYMBOL_GPL(ndo_dflt_bridge_getlink);
John Fastabend815cccb2012-10-24 08:13:09 +00003401
John Fastabende5a55a82012-10-24 08:12:57 +00003402static int rtnl_bridge_getlink(struct sk_buff *skb, struct netlink_callback *cb)
3403{
3404 struct net *net = sock_net(skb->sk);
3405 struct net_device *dev;
3406 int idx = 0;
3407 u32 portid = NETLINK_CB(cb->skb).portid;
3408 u32 seq = cb->nlh->nlmsg_seq;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00003409 u32 filter_mask = 0;
Roopa Prabhud64f69b2015-09-15 14:44:29 -07003410 int err;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00003411
Thomas Grafaa68c202014-11-26 13:42:20 +01003412 if (nlmsg_len(cb->nlh) > sizeof(struct ifinfomsg)) {
3413 struct nlattr *extfilt;
3414
3415 extfilt = nlmsg_find_attr(cb->nlh, sizeof(struct ifinfomsg),
3416 IFLA_EXT_MASK);
3417 if (extfilt) {
3418 if (nla_len(extfilt) < sizeof(filter_mask))
3419 return -EINVAL;
3420
3421 filter_mask = nla_get_u32(extfilt);
3422 }
3423 }
John Fastabende5a55a82012-10-24 08:12:57 +00003424
3425 rcu_read_lock();
3426 for_each_netdev_rcu(net, dev) {
3427 const struct net_device_ops *ops = dev->netdev_ops;
Jiri Pirko898e5062013-01-03 22:48:52 +00003428 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
John Fastabende5a55a82012-10-24 08:12:57 +00003429
Jiri Pirko898e5062013-01-03 22:48:52 +00003430 if (br_dev && br_dev->netdev_ops->ndo_bridge_getlink) {
Roopa Prabhud64f69b2015-09-15 14:44:29 -07003431 if (idx >= cb->args[0]) {
3432 err = br_dev->netdev_ops->ndo_bridge_getlink(
3433 skb, portid, seq, dev,
3434 filter_mask, NLM_F_MULTI);
3435 if (err < 0 && err != -EOPNOTSUPP)
3436 break;
3437 }
Ben Hutchings25b1e672012-11-02 12:56:52 +00003438 idx++;
John Fastabende5a55a82012-10-24 08:12:57 +00003439 }
3440
3441 if (ops->ndo_bridge_getlink) {
Roopa Prabhud64f69b2015-09-15 14:44:29 -07003442 if (idx >= cb->args[0]) {
3443 err = ops->ndo_bridge_getlink(skb, portid,
3444 seq, dev,
3445 filter_mask,
3446 NLM_F_MULTI);
3447 if (err < 0 && err != -EOPNOTSUPP)
3448 break;
3449 }
Ben Hutchings25b1e672012-11-02 12:56:52 +00003450 idx++;
John Fastabende5a55a82012-10-24 08:12:57 +00003451 }
3452 }
3453 rcu_read_unlock();
3454 cb->args[0] = idx;
3455
3456 return skb->len;
3457}
3458
John Fastabend2469ffd2012-10-24 08:13:03 +00003459static inline size_t bridge_nlmsg_size(void)
3460{
3461 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
3462 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
3463 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
3464 + nla_total_size(sizeof(u32)) /* IFLA_MASTER */
3465 + nla_total_size(sizeof(u32)) /* IFLA_MTU */
3466 + nla_total_size(sizeof(u32)) /* IFLA_LINK */
3467 + nla_total_size(sizeof(u32)) /* IFLA_OPERSTATE */
3468 + nla_total_size(sizeof(u8)) /* IFLA_PROTINFO */
3469 + nla_total_size(sizeof(struct nlattr)) /* IFLA_AF_SPEC */
3470 + nla_total_size(sizeof(u16)) /* IFLA_BRIDGE_FLAGS */
3471 + nla_total_size(sizeof(u16)); /* IFLA_BRIDGE_MODE */
3472}
3473
Roopa Prabhu02dba432015-01-14 20:02:25 -08003474static int rtnl_bridge_notify(struct net_device *dev)
John Fastabend2469ffd2012-10-24 08:13:03 +00003475{
3476 struct net *net = dev_net(dev);
John Fastabend2469ffd2012-10-24 08:13:03 +00003477 struct sk_buff *skb;
3478 int err = -EOPNOTSUPP;
3479
Roopa Prabhu02dba432015-01-14 20:02:25 -08003480 if (!dev->netdev_ops->ndo_bridge_getlink)
3481 return 0;
3482
John Fastabend2469ffd2012-10-24 08:13:03 +00003483 skb = nlmsg_new(bridge_nlmsg_size(), GFP_ATOMIC);
3484 if (!skb) {
3485 err = -ENOMEM;
3486 goto errout;
3487 }
3488
Nicolas Dichtel46c264d2015-04-28 18:33:49 +02003489 err = dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0, 0);
Roopa Prabhu02dba432015-01-14 20:02:25 -08003490 if (err < 0)
3491 goto errout;
John Fastabend2469ffd2012-10-24 08:13:03 +00003492
Roopa Prabhu59ccaaa2015-01-28 16:23:11 -08003493 if (!skb->len)
3494 goto errout;
3495
John Fastabend2469ffd2012-10-24 08:13:03 +00003496 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
3497 return 0;
3498errout:
3499 WARN_ON(err == -EMSGSIZE);
3500 kfree_skb(skb);
Roopa Prabhu59ccaaa2015-01-28 16:23:11 -08003501 if (err)
3502 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
John Fastabend2469ffd2012-10-24 08:13:03 +00003503 return err;
3504}
3505
Thomas Graf661d2962013-03-21 07:45:29 +00003506static int rtnl_bridge_setlink(struct sk_buff *skb, struct nlmsghdr *nlh)
John Fastabende5a55a82012-10-24 08:12:57 +00003507{
3508 struct net *net = sock_net(skb->sk);
3509 struct ifinfomsg *ifm;
3510 struct net_device *dev;
John Fastabend2469ffd2012-10-24 08:13:03 +00003511 struct nlattr *br_spec, *attr = NULL;
3512 int rem, err = -EOPNOTSUPP;
Rosen, Rami4de8b412015-01-19 11:45:04 +02003513 u16 flags = 0;
John Fastabendc38e01b2012-11-02 16:32:36 +00003514 bool have_flags = false;
John Fastabende5a55a82012-10-24 08:12:57 +00003515
3516 if (nlmsg_len(nlh) < sizeof(*ifm))
3517 return -EINVAL;
3518
3519 ifm = nlmsg_data(nlh);
3520 if (ifm->ifi_family != AF_BRIDGE)
3521 return -EPFNOSUPPORT;
3522
3523 dev = __dev_get_by_index(net, ifm->ifi_index);
3524 if (!dev) {
3525 pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n");
3526 return -ENODEV;
3527 }
3528
John Fastabend2469ffd2012-10-24 08:13:03 +00003529 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
3530 if (br_spec) {
3531 nla_for_each_nested(attr, br_spec, rem) {
3532 if (nla_type(attr) == IFLA_BRIDGE_FLAGS) {
Thomas Graf6e8d1c52014-11-26 13:42:16 +01003533 if (nla_len(attr) < sizeof(flags))
3534 return -EINVAL;
3535
John Fastabendc38e01b2012-11-02 16:32:36 +00003536 have_flags = true;
John Fastabend2469ffd2012-10-24 08:13:03 +00003537 flags = nla_get_u16(attr);
3538 break;
3539 }
3540 }
3541 }
3542
3543 if (!flags || (flags & BRIDGE_FLAGS_MASTER)) {
Jiri Pirko898e5062013-01-03 22:48:52 +00003544 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
3545
3546 if (!br_dev || !br_dev->netdev_ops->ndo_bridge_setlink) {
John Fastabend2469ffd2012-10-24 08:13:03 +00003547 err = -EOPNOTSUPP;
3548 goto out;
3549 }
3550
Roopa Prabhuadd511b2015-01-29 22:40:12 -08003551 err = br_dev->netdev_ops->ndo_bridge_setlink(dev, nlh, flags);
John Fastabende5a55a82012-10-24 08:12:57 +00003552 if (err)
3553 goto out;
John Fastabend2469ffd2012-10-24 08:13:03 +00003554
3555 flags &= ~BRIDGE_FLAGS_MASTER;
John Fastabende5a55a82012-10-24 08:12:57 +00003556 }
3557
John Fastabend2469ffd2012-10-24 08:13:03 +00003558 if ((flags & BRIDGE_FLAGS_SELF)) {
3559 if (!dev->netdev_ops->ndo_bridge_setlink)
3560 err = -EOPNOTSUPP;
3561 else
Roopa Prabhuadd511b2015-01-29 22:40:12 -08003562 err = dev->netdev_ops->ndo_bridge_setlink(dev, nlh,
3563 flags);
Roopa Prabhu02dba432015-01-14 20:02:25 -08003564 if (!err) {
John Fastabend2469ffd2012-10-24 08:13:03 +00003565 flags &= ~BRIDGE_FLAGS_SELF;
Roopa Prabhu02dba432015-01-14 20:02:25 -08003566
3567 /* Generate event to notify upper layer of bridge
3568 * change
3569 */
3570 err = rtnl_bridge_notify(dev);
3571 }
John Fastabend2469ffd2012-10-24 08:13:03 +00003572 }
3573
John Fastabendc38e01b2012-11-02 16:32:36 +00003574 if (have_flags)
John Fastabend2469ffd2012-10-24 08:13:03 +00003575 memcpy(nla_data(attr), &flags, sizeof(flags));
John Fastabende5a55a82012-10-24 08:12:57 +00003576out:
3577 return err;
3578}
3579
Thomas Graf661d2962013-03-21 07:45:29 +00003580static int rtnl_bridge_dellink(struct sk_buff *skb, struct nlmsghdr *nlh)
Vlad Yasevich407af322013-02-13 12:00:12 +00003581{
3582 struct net *net = sock_net(skb->sk);
3583 struct ifinfomsg *ifm;
3584 struct net_device *dev;
3585 struct nlattr *br_spec, *attr = NULL;
3586 int rem, err = -EOPNOTSUPP;
Rosen, Rami4de8b412015-01-19 11:45:04 +02003587 u16 flags = 0;
Vlad Yasevich407af322013-02-13 12:00:12 +00003588 bool have_flags = false;
3589
3590 if (nlmsg_len(nlh) < sizeof(*ifm))
3591 return -EINVAL;
3592
3593 ifm = nlmsg_data(nlh);
3594 if (ifm->ifi_family != AF_BRIDGE)
3595 return -EPFNOSUPPORT;
3596
3597 dev = __dev_get_by_index(net, ifm->ifi_index);
3598 if (!dev) {
3599 pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n");
3600 return -ENODEV;
3601 }
3602
3603 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
3604 if (br_spec) {
3605 nla_for_each_nested(attr, br_spec, rem) {
3606 if (nla_type(attr) == IFLA_BRIDGE_FLAGS) {
Thomas Graf6e8d1c52014-11-26 13:42:16 +01003607 if (nla_len(attr) < sizeof(flags))
3608 return -EINVAL;
3609
Vlad Yasevich407af322013-02-13 12:00:12 +00003610 have_flags = true;
3611 flags = nla_get_u16(attr);
3612 break;
3613 }
3614 }
3615 }
3616
Vlad Yasevich407af322013-02-13 12:00:12 +00003617 if (!flags || (flags & BRIDGE_FLAGS_MASTER)) {
3618 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
3619
3620 if (!br_dev || !br_dev->netdev_ops->ndo_bridge_dellink) {
3621 err = -EOPNOTSUPP;
3622 goto out;
3623 }
3624
Roopa Prabhuadd511b2015-01-29 22:40:12 -08003625 err = br_dev->netdev_ops->ndo_bridge_dellink(dev, nlh, flags);
Vlad Yasevich407af322013-02-13 12:00:12 +00003626 if (err)
3627 goto out;
3628
3629 flags &= ~BRIDGE_FLAGS_MASTER;
3630 }
3631
3632 if ((flags & BRIDGE_FLAGS_SELF)) {
3633 if (!dev->netdev_ops->ndo_bridge_dellink)
3634 err = -EOPNOTSUPP;
3635 else
Roopa Prabhuadd511b2015-01-29 22:40:12 -08003636 err = dev->netdev_ops->ndo_bridge_dellink(dev, nlh,
3637 flags);
Vlad Yasevich407af322013-02-13 12:00:12 +00003638
Roopa Prabhu02dba432015-01-14 20:02:25 -08003639 if (!err) {
Vlad Yasevich407af322013-02-13 12:00:12 +00003640 flags &= ~BRIDGE_FLAGS_SELF;
Roopa Prabhu02dba432015-01-14 20:02:25 -08003641
3642 /* Generate event to notify upper layer of bridge
3643 * change
3644 */
3645 err = rtnl_bridge_notify(dev);
3646 }
Vlad Yasevich407af322013-02-13 12:00:12 +00003647 }
3648
3649 if (have_flags)
3650 memcpy(nla_data(attr), &flags, sizeof(flags));
Vlad Yasevich407af322013-02-13 12:00:12 +00003651out:
3652 return err;
3653}
3654
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02003655static bool stats_attr_valid(unsigned int mask, int attrid, int idxattr)
3656{
3657 return (mask & IFLA_STATS_FILTER_BIT(attrid)) &&
3658 (!idxattr || idxattr == attrid);
3659}
3660
Nogah Frankel69ae6ad2016-09-16 15:05:37 +02003661#define IFLA_OFFLOAD_XSTATS_FIRST (IFLA_OFFLOAD_XSTATS_UNSPEC + 1)
3662static int rtnl_get_offload_stats_attr_size(int attr_id)
3663{
3664 switch (attr_id) {
3665 case IFLA_OFFLOAD_XSTATS_CPU_HIT:
3666 return sizeof(struct rtnl_link_stats64);
3667 }
3668
3669 return 0;
3670}
3671
3672static int rtnl_get_offload_stats(struct sk_buff *skb, struct net_device *dev,
3673 int *prividx)
3674{
3675 struct nlattr *attr = NULL;
3676 int attr_id, size;
3677 void *attr_data;
3678 int err;
3679
3680 if (!(dev->netdev_ops && dev->netdev_ops->ndo_has_offload_stats &&
3681 dev->netdev_ops->ndo_get_offload_stats))
3682 return -ENODATA;
3683
3684 for (attr_id = IFLA_OFFLOAD_XSTATS_FIRST;
3685 attr_id <= IFLA_OFFLOAD_XSTATS_MAX; attr_id++) {
3686 if (attr_id < *prividx)
3687 continue;
3688
3689 size = rtnl_get_offload_stats_attr_size(attr_id);
3690 if (!size)
3691 continue;
3692
Or Gerlitz3df5b3c2016-11-22 23:09:54 +02003693 if (!dev->netdev_ops->ndo_has_offload_stats(dev, attr_id))
Nogah Frankel69ae6ad2016-09-16 15:05:37 +02003694 continue;
3695
3696 attr = nla_reserve_64bit(skb, attr_id, size,
3697 IFLA_OFFLOAD_XSTATS_UNSPEC);
3698 if (!attr)
3699 goto nla_put_failure;
3700
3701 attr_data = nla_data(attr);
3702 memset(attr_data, 0, size);
3703 err = dev->netdev_ops->ndo_get_offload_stats(attr_id, dev,
3704 attr_data);
3705 if (err)
3706 goto get_offload_stats_failure;
3707 }
3708
3709 if (!attr)
3710 return -ENODATA;
3711
3712 *prividx = 0;
3713 return 0;
3714
3715nla_put_failure:
3716 err = -EMSGSIZE;
3717get_offload_stats_failure:
3718 *prividx = attr_id;
3719 return err;
3720}
3721
3722static int rtnl_get_offload_stats_size(const struct net_device *dev)
3723{
3724 int nla_size = 0;
3725 int attr_id;
3726 int size;
3727
3728 if (!(dev->netdev_ops && dev->netdev_ops->ndo_has_offload_stats &&
3729 dev->netdev_ops->ndo_get_offload_stats))
3730 return 0;
3731
3732 for (attr_id = IFLA_OFFLOAD_XSTATS_FIRST;
3733 attr_id <= IFLA_OFFLOAD_XSTATS_MAX; attr_id++) {
Or Gerlitz3df5b3c2016-11-22 23:09:54 +02003734 if (!dev->netdev_ops->ndo_has_offload_stats(dev, attr_id))
Nogah Frankel69ae6ad2016-09-16 15:05:37 +02003735 continue;
3736 size = rtnl_get_offload_stats_attr_size(attr_id);
3737 nla_size += nla_total_size_64bit(size);
3738 }
3739
3740 if (nla_size != 0)
3741 nla_size += nla_total_size(0);
3742
3743 return nla_size;
3744}
3745
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003746static int rtnl_fill_statsinfo(struct sk_buff *skb, struct net_device *dev,
3747 int type, u32 pid, u32 seq, u32 change,
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02003748 unsigned int flags, unsigned int filter_mask,
3749 int *idxattr, int *prividx)
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003750{
3751 struct if_stats_msg *ifsm;
3752 struct nlmsghdr *nlh;
3753 struct nlattr *attr;
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02003754 int s_prividx = *prividx;
Nogah Frankel69ae6ad2016-09-16 15:05:37 +02003755 int err;
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003756
3757 ASSERT_RTNL();
3758
3759 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifsm), flags);
3760 if (!nlh)
3761 return -EMSGSIZE;
3762
3763 ifsm = nlmsg_data(nlh);
3764 ifsm->ifindex = dev->ifindex;
3765 ifsm->filter_mask = filter_mask;
3766
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02003767 if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_64, *idxattr)) {
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003768 struct rtnl_link_stats64 *sp;
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003769
Nicolas Dichtel58414d32016-04-21 18:58:25 +02003770 attr = nla_reserve_64bit(skb, IFLA_STATS_LINK_64,
3771 sizeof(struct rtnl_link_stats64),
3772 IFLA_STATS_UNSPEC);
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003773 if (!attr)
3774 goto nla_put_failure;
3775
3776 sp = nla_data(attr);
3777 dev_get_stats(dev, sp);
3778 }
3779
Nikolay Aleksandrov97a47fa2016-04-30 10:25:27 +02003780 if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_XSTATS, *idxattr)) {
3781 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
3782
3783 if (ops && ops->fill_linkxstats) {
Nikolay Aleksandrov97a47fa2016-04-30 10:25:27 +02003784 *idxattr = IFLA_STATS_LINK_XSTATS;
3785 attr = nla_nest_start(skb,
3786 IFLA_STATS_LINK_XSTATS);
3787 if (!attr)
3788 goto nla_put_failure;
3789
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02003790 err = ops->fill_linkxstats(skb, dev, prividx, *idxattr);
3791 nla_nest_end(skb, attr);
3792 if (err)
3793 goto nla_put_failure;
3794 *idxattr = 0;
3795 }
3796 }
3797
3798 if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_XSTATS_SLAVE,
3799 *idxattr)) {
3800 const struct rtnl_link_ops *ops = NULL;
3801 const struct net_device *master;
3802
3803 master = netdev_master_upper_dev_get(dev);
3804 if (master)
3805 ops = master->rtnl_link_ops;
3806 if (ops && ops->fill_linkxstats) {
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02003807 *idxattr = IFLA_STATS_LINK_XSTATS_SLAVE;
3808 attr = nla_nest_start(skb,
3809 IFLA_STATS_LINK_XSTATS_SLAVE);
3810 if (!attr)
3811 goto nla_put_failure;
3812
3813 err = ops->fill_linkxstats(skb, dev, prividx, *idxattr);
Nikolay Aleksandrov97a47fa2016-04-30 10:25:27 +02003814 nla_nest_end(skb, attr);
3815 if (err)
3816 goto nla_put_failure;
3817 *idxattr = 0;
3818 }
3819 }
3820
Nogah Frankel69ae6ad2016-09-16 15:05:37 +02003821 if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_OFFLOAD_XSTATS,
3822 *idxattr)) {
3823 *idxattr = IFLA_STATS_LINK_OFFLOAD_XSTATS;
3824 attr = nla_nest_start(skb, IFLA_STATS_LINK_OFFLOAD_XSTATS);
3825 if (!attr)
3826 goto nla_put_failure;
3827
3828 err = rtnl_get_offload_stats(skb, dev, prividx);
3829 if (err == -ENODATA)
3830 nla_nest_cancel(skb, attr);
3831 else
3832 nla_nest_end(skb, attr);
3833
3834 if (err && err != -ENODATA)
3835 goto nla_put_failure;
3836 *idxattr = 0;
3837 }
3838
Robert Shearmanaefb4d42017-01-16 14:16:36 +00003839 if (stats_attr_valid(filter_mask, IFLA_STATS_AF_SPEC, *idxattr)) {
3840 struct rtnl_af_ops *af_ops;
3841
3842 *idxattr = IFLA_STATS_AF_SPEC;
3843 attr = nla_nest_start(skb, IFLA_STATS_AF_SPEC);
3844 if (!attr)
3845 goto nla_put_failure;
3846
3847 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
3848 if (af_ops->fill_stats_af) {
3849 struct nlattr *af;
3850 int err;
3851
3852 af = nla_nest_start(skb, af_ops->family);
3853 if (!af)
3854 goto nla_put_failure;
3855
3856 err = af_ops->fill_stats_af(skb, dev);
3857
3858 if (err == -ENODATA)
3859 nla_nest_cancel(skb, af);
3860 else if (err < 0)
3861 goto nla_put_failure;
3862
3863 nla_nest_end(skb, af);
3864 }
3865 }
3866
3867 nla_nest_end(skb, attr);
3868
3869 *idxattr = 0;
3870 }
3871
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003872 nlmsg_end(skb, nlh);
3873
3874 return 0;
3875
3876nla_put_failure:
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02003877 /* not a multi message or no progress mean a real error */
3878 if (!(flags & NLM_F_MULTI) || s_prividx == *prividx)
3879 nlmsg_cancel(skb, nlh);
3880 else
3881 nlmsg_end(skb, nlh);
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003882
3883 return -EMSGSIZE;
3884}
3885
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003886static size_t if_nlmsg_stats_size(const struct net_device *dev,
3887 u32 filter_mask)
3888{
3889 size_t size = 0;
3890
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02003891 if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_64, 0))
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003892 size += nla_total_size_64bit(sizeof(struct rtnl_link_stats64));
3893
Nikolay Aleksandrov97a47fa2016-04-30 10:25:27 +02003894 if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_XSTATS, 0)) {
3895 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02003896 int attr = IFLA_STATS_LINK_XSTATS;
Nikolay Aleksandrov97a47fa2016-04-30 10:25:27 +02003897
3898 if (ops && ops->get_linkxstats_size) {
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02003899 size += nla_total_size(ops->get_linkxstats_size(dev,
3900 attr));
Nikolay Aleksandrov97a47fa2016-04-30 10:25:27 +02003901 /* for IFLA_STATS_LINK_XSTATS */
3902 size += nla_total_size(0);
3903 }
3904 }
3905
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02003906 if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_XSTATS_SLAVE, 0)) {
3907 struct net_device *_dev = (struct net_device *)dev;
3908 const struct rtnl_link_ops *ops = NULL;
3909 const struct net_device *master;
3910
3911 /* netdev_master_upper_dev_get can't take const */
3912 master = netdev_master_upper_dev_get(_dev);
3913 if (master)
3914 ops = master->rtnl_link_ops;
3915 if (ops && ops->get_linkxstats_size) {
3916 int attr = IFLA_STATS_LINK_XSTATS_SLAVE;
3917
3918 size += nla_total_size(ops->get_linkxstats_size(dev,
3919 attr));
3920 /* for IFLA_STATS_LINK_XSTATS_SLAVE */
3921 size += nla_total_size(0);
3922 }
3923 }
3924
Nogah Frankel69ae6ad2016-09-16 15:05:37 +02003925 if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_OFFLOAD_XSTATS, 0))
3926 size += rtnl_get_offload_stats_size(dev);
3927
Robert Shearmanaefb4d42017-01-16 14:16:36 +00003928 if (stats_attr_valid(filter_mask, IFLA_STATS_AF_SPEC, 0)) {
3929 struct rtnl_af_ops *af_ops;
3930
3931 /* for IFLA_STATS_AF_SPEC */
3932 size += nla_total_size(0);
3933
3934 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
3935 if (af_ops->get_stats_af_size) {
3936 size += nla_total_size(
3937 af_ops->get_stats_af_size(dev));
3938
3939 /* for AF_* */
3940 size += nla_total_size(0);
3941 }
3942 }
3943 }
3944
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003945 return size;
3946}
3947
3948static int rtnl_stats_get(struct sk_buff *skb, struct nlmsghdr *nlh)
3949{
3950 struct net *net = sock_net(skb->sk);
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003951 struct net_device *dev = NULL;
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02003952 int idxattr = 0, prividx = 0;
3953 struct if_stats_msg *ifsm;
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003954 struct sk_buff *nskb;
3955 u32 filter_mask;
3956 int err;
3957
Mathias Krause4775cc12016-12-28 17:52:15 +01003958 if (nlmsg_len(nlh) < sizeof(*ifsm))
3959 return -EINVAL;
3960
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003961 ifsm = nlmsg_data(nlh);
3962 if (ifsm->ifindex > 0)
3963 dev = __dev_get_by_index(net, ifsm->ifindex);
3964 else
3965 return -EINVAL;
3966
3967 if (!dev)
3968 return -ENODEV;
3969
3970 filter_mask = ifsm->filter_mask;
3971 if (!filter_mask)
3972 return -EINVAL;
3973
3974 nskb = nlmsg_new(if_nlmsg_stats_size(dev, filter_mask), GFP_KERNEL);
3975 if (!nskb)
3976 return -ENOBUFS;
3977
3978 err = rtnl_fill_statsinfo(nskb, dev, RTM_NEWSTATS,
3979 NETLINK_CB(skb).portid, nlh->nlmsg_seq, 0,
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02003980 0, filter_mask, &idxattr, &prividx);
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003981 if (err < 0) {
3982 /* -EMSGSIZE implies BUG in if_nlmsg_stats_size */
3983 WARN_ON(err == -EMSGSIZE);
3984 kfree_skb(nskb);
3985 } else {
3986 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).portid);
3987 }
3988
3989 return err;
3990}
3991
3992static int rtnl_stats_dump(struct sk_buff *skb, struct netlink_callback *cb)
3993{
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02003994 int h, s_h, err, s_idx, s_idxattr, s_prividx;
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003995 struct net *net = sock_net(skb->sk);
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07003996 unsigned int flags = NLM_F_MULTI;
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02003997 struct if_stats_msg *ifsm;
3998 struct hlist_head *head;
3999 struct net_device *dev;
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07004000 u32 filter_mask = 0;
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02004001 int idx = 0;
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07004002
4003 s_h = cb->args[0];
4004 s_idx = cb->args[1];
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02004005 s_idxattr = cb->args[2];
4006 s_prividx = cb->args[3];
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07004007
4008 cb->seq = net->dev_base_seq;
4009
Mathias Krause4775cc12016-12-28 17:52:15 +01004010 if (nlmsg_len(cb->nlh) < sizeof(*ifsm))
4011 return -EINVAL;
4012
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07004013 ifsm = nlmsg_data(cb->nlh);
4014 filter_mask = ifsm->filter_mask;
4015 if (!filter_mask)
4016 return -EINVAL;
4017
4018 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4019 idx = 0;
4020 head = &net->dev_index_head[h];
4021 hlist_for_each_entry(dev, head, index_hlist) {
4022 if (idx < s_idx)
4023 goto cont;
4024 err = rtnl_fill_statsinfo(skb, dev, RTM_NEWSTATS,
4025 NETLINK_CB(cb->skb).portid,
4026 cb->nlh->nlmsg_seq, 0,
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02004027 flags, filter_mask,
4028 &s_idxattr, &s_prividx);
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07004029 /* If we ran out of room on the first message,
4030 * we're in trouble
4031 */
4032 WARN_ON((err == -EMSGSIZE) && (skb->len == 0));
4033
4034 if (err < 0)
4035 goto out;
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02004036 s_prividx = 0;
4037 s_idxattr = 0;
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07004038 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
4039cont:
4040 idx++;
4041 }
4042 }
4043out:
Nikolay Aleksandrove8872a22016-04-30 10:25:26 +02004044 cb->args[3] = s_prividx;
4045 cb->args[2] = s_idxattr;
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07004046 cb->args[1] = idx;
4047 cb->args[0] = h;
4048
4049 return skb->len;
4050}
4051
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052/* Process one rtnetlink message. */
4053
Johannes Berg2d4bc932017-04-12 14:34:04 +02004054static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
4055 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004057 struct net *net = sock_net(skb->sk);
Thomas Grafe2849862007-03-22 11:48:11 -07004058 rtnl_doit_func doit;
Alexander Kuleshov617cfc72016-01-10 21:26:57 +06004059 int kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 int family;
4061 int type;
Eric Dumazet2907c352011-05-25 07:34:04 +00004062 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07004066 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067
4068 type -= RTM_BASE;
4069
4070 /* All the messages must have at least 1 byte length */
Hong zhi guo573ce262013-03-27 06:47:04 +00004071 if (nlmsg_len(nlh) < sizeof(struct rtgenmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 return 0;
4073
Hong zhi guo573ce262013-03-27 06:47:04 +00004074 family = ((struct rtgenmsg *)nlmsg_data(nlh))->rtgen_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 kind = type&3;
4076
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07004077 if (kind != 2 && !netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07004078 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
David S. Millerb8f3ab42011-01-18 12:40:38 -08004080 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08004081 struct sock *rtnl;
Thomas Grafe2849862007-03-22 11:48:11 -07004082 rtnl_dumpit_func dumpit;
Greg Rosec7ac8672011-06-10 01:27:09 +00004083 rtnl_calcit_func calcit;
4084 u16 min_dump_alloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
Thomas Grafe2849862007-03-22 11:48:11 -07004086 dumpit = rtnl_get_dumpit(family, type);
4087 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07004088 return -EOPNOTSUPP;
Greg Rosec7ac8672011-06-10 01:27:09 +00004089 calcit = rtnl_get_calcit(family, type);
4090 if (calcit)
Greg Rose115c9b82012-02-21 16:54:48 -05004091 min_dump_alloc = calcit(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092
Eric Dumazet2907c352011-05-25 07:34:04 +00004093 __rtnl_unlock();
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08004094 rtnl = net->rtnl;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00004095 {
4096 struct netlink_dump_control c = {
4097 .dump = dumpit,
4098 .min_dump_alloc = min_dump_alloc,
4099 };
4100 err = netlink_dump_start(rtnl, skb, nlh, &c);
4101 }
Eric Dumazet2907c352011-05-25 07:34:04 +00004102 rtnl_lock();
4103 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 }
4105
Thomas Grafe2849862007-03-22 11:48:11 -07004106 doit = rtnl_get_doit(family, type);
4107 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07004108 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109
Thomas Graf661d2962013-03-21 07:45:29 +00004110 return doit(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111}
4112
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07004113static void rtnetlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07004115 rtnl_lock();
4116 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
4117 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118}
4119
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
4121{
Jiri Pirko351638e2013-05-28 01:30:21 +00004122 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02004123
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 switch (event) {
Vlad Yasevich5138e862017-04-04 09:23:41 -04004125 case NETDEV_REBOOT:
Vlad Yasevich5138e862017-04-04 09:23:41 -04004126 case NETDEV_CHANGENAME:
4127 case NETDEV_FEAT_CHANGE:
4128 case NETDEV_BONDING_FAILOVER:
Vlad Yasevich5138e862017-04-04 09:23:41 -04004129 case NETDEV_NOTIFY_PEERS:
Vlad Yasevich5138e862017-04-04 09:23:41 -04004130 case NETDEV_RESEND_IGMP:
Vlad Yasevich5138e862017-04-04 09:23:41 -04004131 case NETDEV_CHANGEINFODATA:
David S. Millerbf74b202017-04-09 14:45:21 -07004132 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 break;
4134 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 break;
4136 }
4137 return NOTIFY_DONE;
4138}
4139
4140static struct notifier_block rtnetlink_dev_notifier = {
4141 .notifier_call = rtnetlink_event,
4142};
4143
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08004144
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004145static int __net_init rtnetlink_net_init(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08004146{
4147 struct sock *sk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00004148 struct netlink_kernel_cfg cfg = {
4149 .groups = RTNLGRP_MAX,
4150 .input = rtnetlink_rcv,
4151 .cb_mutex = &rtnl_mutex,
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00004152 .flags = NL_CFG_F_NONROOT_RECV,
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00004153 };
4154
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00004155 sk = netlink_kernel_create(net, NETLINK_ROUTE, &cfg);
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08004156 if (!sk)
4157 return -ENOMEM;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08004158 net->rtnl = sk;
4159 return 0;
4160}
4161
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004162static void __net_exit rtnetlink_net_exit(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08004163{
Denis V. Lunev775516b2008-01-18 23:55:19 -08004164 netlink_kernel_release(net->rtnl);
4165 net->rtnl = NULL;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08004166}
4167
4168static struct pernet_operations rtnetlink_net_ops = {
4169 .init = rtnetlink_net_init,
4170 .exit = rtnetlink_net_exit,
4171};
4172
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173void __init rtnetlink_init(void)
4174{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08004175 if (register_pernet_subsys(&rtnetlink_net_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176 panic("rtnetlink_init: cannot initialize rtnetlink\n");
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08004177
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07004179
Greg Rosec7ac8672011-06-10 01:27:09 +00004180 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink,
4181 rtnl_dump_ifinfo, rtnl_calcit);
4182 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL, NULL);
4183 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL, NULL);
4184 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07004185
Greg Rosec7ac8672011-06-10 01:27:09 +00004186 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all, NULL);
4187 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all, NULL);
David Aherna7678c72017-03-21 12:22:26 -07004188 rtnl_register(PF_UNSPEC, RTM_GETNETCONF, NULL, rtnl_dump_all, NULL);
John Fastabend77162022012-04-15 06:43:56 +00004189
4190 rtnl_register(PF_BRIDGE, RTM_NEWNEIGH, rtnl_fdb_add, NULL, NULL);
4191 rtnl_register(PF_BRIDGE, RTM_DELNEIGH, rtnl_fdb_del, NULL, NULL);
4192 rtnl_register(PF_BRIDGE, RTM_GETNEIGH, NULL, rtnl_fdb_dump, NULL);
John Fastabende5a55a82012-10-24 08:12:57 +00004193
4194 rtnl_register(PF_BRIDGE, RTM_GETLINK, NULL, rtnl_bridge_getlink, NULL);
Vlad Yasevich407af322013-02-13 12:00:12 +00004195 rtnl_register(PF_BRIDGE, RTM_DELLINK, rtnl_bridge_dellink, NULL, NULL);
John Fastabende5a55a82012-10-24 08:12:57 +00004196 rtnl_register(PF_BRIDGE, RTM_SETLINK, rtnl_bridge_setlink, NULL, NULL);
Roopa Prabhu10c9ead2016-04-20 08:43:43 -07004197
4198 rtnl_register(PF_UNSPEC, RTM_GETSTATS, rtnl_stats_get, rtnl_stats_dump,
4199 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200}