blob: 09062b07bf7f6df64573598449e9edf5cbbed6a1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Routing netlink socket interface: protocol independent part.
7 *
8 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 *
15 * Fixes:
16 * Vitaly E. Lavrov RTA_OK arithmetics was wrong.
17 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/errno.h>
20#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/socket.h>
23#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/timer.h>
25#include <linux/string.h>
26#include <linux/sockios.h>
27#include <linux/net.h>
28#include <linux/fcntl.h>
29#include <linux/mm.h>
30#include <linux/slab.h>
31#include <linux/interrupt.h>
32#include <linux/capability.h>
33#include <linux/skbuff.h>
34#include <linux/init.h>
35#include <linux/security.h>
Stephen Hemminger6756ae42006-03-20 22:23:58 -080036#include <linux/mutex.h>
Thomas Graf18237302006-08-04 23:04:54 -070037#include <linux/if_addr.h>
Williams, Mitch Aebc08a62010-02-10 01:44:05 +000038#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <asm/uaccess.h>
41#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <linux/inet.h>
44#include <linux/netdevice.h>
45#include <net/ip.h>
46#include <net/protocol.h>
47#include <net/arp.h>
48#include <net/route.h>
49#include <net/udp.h>
50#include <net/sock.h>
51#include <net/pkt_sched.h>
Thomas Graf14c0b972006-08-04 03:38:38 -070052#include <net/fib_rules.h>
Thomas Grafe2849862007-03-22 11:48:11 -070053#include <net/rtnetlink.h>
Johannes Berg30ffee82009-07-10 09:51:35 +000054#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Eric Dumazete0d087a2009-11-07 01:26:17 -080056struct rtnl_link {
Thomas Grafe2849862007-03-22 11:48:11 -070057 rtnl_doit_func doit;
58 rtnl_dumpit_func dumpit;
59};
60
Stephen Hemminger6756ae42006-03-20 22:23:58 -080061static DEFINE_MUTEX(rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63void rtnl_lock(void)
64{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080065 mutex_lock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
Eric Dumazete0d087a2009-11-07 01:26:17 -080067EXPORT_SYMBOL(rtnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Stephen Hemminger6756ae42006-03-20 22:23:58 -080069void __rtnl_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080071 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
Stephen Hemminger6756ae42006-03-20 22:23:58 -080073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074void rtnl_unlock(void)
75{
Herbert Xu58ec3b42008-10-07 15:50:03 -070076 /* This fellow will unlock it for us. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 netdev_run_todo();
78}
Eric Dumazete0d087a2009-11-07 01:26:17 -080079EXPORT_SYMBOL(rtnl_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Stephen Hemminger6756ae42006-03-20 22:23:58 -080081int rtnl_trylock(void)
82{
83 return mutex_trylock(&rtnl_mutex);
84}
Eric Dumazete0d087a2009-11-07 01:26:17 -080085EXPORT_SYMBOL(rtnl_trylock);
Stephen Hemminger6756ae42006-03-20 22:23:58 -080086
Patrick McHardyc9c10142008-04-23 22:10:48 -070087int rtnl_is_locked(void)
88{
89 return mutex_is_locked(&rtnl_mutex);
90}
Eric Dumazete0d087a2009-11-07 01:26:17 -080091EXPORT_SYMBOL(rtnl_is_locked);
Patrick McHardyc9c10142008-04-23 22:10:48 -070092
Paul E. McKenneya898def2010-02-22 17:04:49 -080093#ifdef CONFIG_PROVE_LOCKING
94int lockdep_rtnl_is_held(void)
95{
96 return lockdep_is_held(&rtnl_mutex);
97}
98EXPORT_SYMBOL(lockdep_rtnl_is_held);
99#endif /* #ifdef CONFIG_PROVE_LOCKING */
100
Patrick McHardy25239ce2010-04-26 16:02:05 +0200101static struct rtnl_link *rtnl_msg_handlers[RTNL_FAMILY_MAX + 1];
Thomas Grafe2849862007-03-22 11:48:11 -0700102
103static inline int rtm_msgindex(int msgtype)
104{
105 int msgindex = msgtype - RTM_BASE;
106
107 /*
108 * msgindex < 0 implies someone tried to register a netlink
109 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
110 * the message type has not been added to linux/rtnetlink.h
111 */
112 BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
113
114 return msgindex;
115}
116
117static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
118{
119 struct rtnl_link *tab;
120
Patrick McHardy25239ce2010-04-26 16:02:05 +0200121 if (protocol <= RTNL_FAMILY_MAX)
Patrick McHardy0f87b1d2010-04-13 05:03:17 +0000122 tab = rtnl_msg_handlers[protocol];
123 else
124 tab = NULL;
125
Thomas Graf51057f22007-03-22 21:41:06 -0700126 if (tab == NULL || tab[msgindex].doit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700127 tab = rtnl_msg_handlers[PF_UNSPEC];
128
Thomas Graf51057f22007-03-22 21:41:06 -0700129 return tab ? tab[msgindex].doit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700130}
131
132static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
133{
134 struct rtnl_link *tab;
135
Patrick McHardy25239ce2010-04-26 16:02:05 +0200136 if (protocol <= RTNL_FAMILY_MAX)
Patrick McHardy0f87b1d2010-04-13 05:03:17 +0000137 tab = rtnl_msg_handlers[protocol];
138 else
139 tab = NULL;
140
Thomas Graf51057f22007-03-22 21:41:06 -0700141 if (tab == NULL || tab[msgindex].dumpit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700142 tab = rtnl_msg_handlers[PF_UNSPEC];
143
Thomas Graf51057f22007-03-22 21:41:06 -0700144 return tab ? tab[msgindex].dumpit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700145}
146
147/**
148 * __rtnl_register - Register a rtnetlink message type
149 * @protocol: Protocol family or PF_UNSPEC
150 * @msgtype: rtnetlink message type
151 * @doit: Function pointer called for each request message
152 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
153 *
154 * Registers the specified function pointers (at least one of them has
155 * to be non-NULL) to be called whenever a request message for the
156 * specified protocol family and message type is received.
157 *
158 * The special protocol family PF_UNSPEC may be used to define fallback
159 * function pointers for the case when no entry for the specific protocol
160 * family exists.
161 *
162 * Returns 0 on success or a negative error code.
163 */
164int __rtnl_register(int protocol, int msgtype,
165 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
166{
167 struct rtnl_link *tab;
168 int msgindex;
169
Patrick McHardy25239ce2010-04-26 16:02:05 +0200170 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700171 msgindex = rtm_msgindex(msgtype);
172
173 tab = rtnl_msg_handlers[protocol];
174 if (tab == NULL) {
175 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
176 if (tab == NULL)
177 return -ENOBUFS;
178
179 rtnl_msg_handlers[protocol] = tab;
180 }
181
182 if (doit)
183 tab[msgindex].doit = doit;
184
185 if (dumpit)
186 tab[msgindex].dumpit = dumpit;
187
188 return 0;
189}
Thomas Grafe2849862007-03-22 11:48:11 -0700190EXPORT_SYMBOL_GPL(__rtnl_register);
191
192/**
193 * rtnl_register - Register a rtnetlink message type
194 *
195 * Identical to __rtnl_register() but panics on failure. This is useful
196 * as failure of this function is very unlikely, it can only happen due
197 * to lack of memory when allocating the chain to store all message
198 * handlers for a protocol. Meant for use in init functions where lack
199 * of memory implies no sense in continueing.
200 */
201void rtnl_register(int protocol, int msgtype,
202 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
203{
204 if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0)
205 panic("Unable to register rtnetlink message handler, "
206 "protocol = %d, message type = %d\n",
207 protocol, msgtype);
208}
Thomas Grafe2849862007-03-22 11:48:11 -0700209EXPORT_SYMBOL_GPL(rtnl_register);
210
211/**
212 * rtnl_unregister - Unregister a rtnetlink message type
213 * @protocol: Protocol family or PF_UNSPEC
214 * @msgtype: rtnetlink message type
215 *
216 * Returns 0 on success or a negative error code.
217 */
218int rtnl_unregister(int protocol, int msgtype)
219{
220 int msgindex;
221
Patrick McHardy25239ce2010-04-26 16:02:05 +0200222 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700223 msgindex = rtm_msgindex(msgtype);
224
225 if (rtnl_msg_handlers[protocol] == NULL)
226 return -ENOENT;
227
228 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
229 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
230
231 return 0;
232}
Thomas Grafe2849862007-03-22 11:48:11 -0700233EXPORT_SYMBOL_GPL(rtnl_unregister);
234
235/**
236 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
237 * @protocol : Protocol family or PF_UNSPEC
238 *
239 * Identical to calling rtnl_unregster() for all registered message types
240 * of a certain protocol family.
241 */
242void rtnl_unregister_all(int protocol)
243{
Patrick McHardy25239ce2010-04-26 16:02:05 +0200244 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700245
246 kfree(rtnl_msg_handlers[protocol]);
247 rtnl_msg_handlers[protocol] = NULL;
248}
Thomas Grafe2849862007-03-22 11:48:11 -0700249EXPORT_SYMBOL_GPL(rtnl_unregister_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Patrick McHardy38f7b872007-06-13 12:03:51 -0700251static LIST_HEAD(link_ops);
252
253/**
254 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
255 * @ops: struct rtnl_link_ops * to register
256 *
257 * The caller must hold the rtnl_mutex. This function should be used
258 * by drivers that create devices during module initialization. It
259 * must be called before registering the devices.
260 *
261 * Returns 0 on success or a negative error code.
262 */
263int __rtnl_link_register(struct rtnl_link_ops *ops)
264{
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700265 if (!ops->dellink)
Eric Dumazet23289a32009-10-27 07:06:36 +0000266 ops->dellink = unregister_netdevice_queue;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700267
Patrick McHardy38f7b872007-06-13 12:03:51 -0700268 list_add_tail(&ops->list, &link_ops);
269 return 0;
270}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700271EXPORT_SYMBOL_GPL(__rtnl_link_register);
272
273/**
274 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
275 * @ops: struct rtnl_link_ops * to register
276 *
277 * Returns 0 on success or a negative error code.
278 */
279int rtnl_link_register(struct rtnl_link_ops *ops)
280{
281 int err;
282
283 rtnl_lock();
284 err = __rtnl_link_register(ops);
285 rtnl_unlock();
286 return err;
287}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700288EXPORT_SYMBOL_GPL(rtnl_link_register);
289
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700290static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
291{
292 struct net_device *dev;
Eric Dumazet23289a32009-10-27 07:06:36 +0000293 LIST_HEAD(list_kill);
294
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700295 for_each_netdev(net, dev) {
Eric Dumazet23289a32009-10-27 07:06:36 +0000296 if (dev->rtnl_link_ops == ops)
297 ops->dellink(dev, &list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700298 }
Eric Dumazet23289a32009-10-27 07:06:36 +0000299 unregister_netdevice_many(&list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700300}
301
Patrick McHardy38f7b872007-06-13 12:03:51 -0700302/**
303 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
304 * @ops: struct rtnl_link_ops * to unregister
305 *
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700306 * The caller must hold the rtnl_mutex.
Patrick McHardy38f7b872007-06-13 12:03:51 -0700307 */
308void __rtnl_link_unregister(struct rtnl_link_ops *ops)
309{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700310 struct net *net;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700311
Eric W. Biederman881d9662007-09-17 11:56:21 -0700312 for_each_net(net) {
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700313 __rtnl_kill_links(net, ops);
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700314 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700315 list_del(&ops->list);
316}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700317EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
318
319/**
320 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
321 * @ops: struct rtnl_link_ops * to unregister
322 */
323void rtnl_link_unregister(struct rtnl_link_ops *ops)
324{
325 rtnl_lock();
326 __rtnl_link_unregister(ops);
327 rtnl_unlock();
328}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700329EXPORT_SYMBOL_GPL(rtnl_link_unregister);
330
331static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
332{
333 const struct rtnl_link_ops *ops;
334
335 list_for_each_entry(ops, &link_ops, list) {
336 if (!strcmp(ops->kind, kind))
337 return ops;
338 }
339 return NULL;
340}
341
342static size_t rtnl_link_get_size(const struct net_device *dev)
343{
344 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
345 size_t size;
346
347 if (!ops)
348 return 0;
349
Thomas Graf369cf772010-11-11 15:47:59 +0000350 size = nla_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
351 nla_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700352
353 if (ops->get_size)
354 /* IFLA_INFO_DATA + nested data */
Thomas Graf369cf772010-11-11 15:47:59 +0000355 size += nla_total_size(sizeof(struct nlattr)) +
Patrick McHardy38f7b872007-06-13 12:03:51 -0700356 ops->get_size(dev);
357
358 if (ops->get_xstats_size)
Thomas Graf369cf772010-11-11 15:47:59 +0000359 /* IFLA_INFO_XSTATS */
360 size += nla_total_size(ops->get_xstats_size(dev));
Patrick McHardy38f7b872007-06-13 12:03:51 -0700361
362 return size;
363}
364
Thomas Graff8ff1822010-11-16 04:30:14 +0000365static LIST_HEAD(rtnl_af_ops);
366
367static const struct rtnl_af_ops *rtnl_af_lookup(const int family)
368{
369 const struct rtnl_af_ops *ops;
370
371 list_for_each_entry(ops, &rtnl_af_ops, list) {
372 if (ops->family == family)
373 return ops;
374 }
375
376 return NULL;
377}
378
379/**
380 * __rtnl_af_register - Register rtnl_af_ops with rtnetlink.
381 * @ops: struct rtnl_af_ops * to register
382 *
383 * The caller must hold the rtnl_mutex.
384 *
385 * Returns 0 on success or a negative error code.
386 */
387int __rtnl_af_register(struct rtnl_af_ops *ops)
388{
389 list_add_tail(&ops->list, &rtnl_af_ops);
390 return 0;
391}
392EXPORT_SYMBOL_GPL(__rtnl_af_register);
393
394/**
395 * rtnl_af_register - Register rtnl_af_ops with rtnetlink.
396 * @ops: struct rtnl_af_ops * to register
397 *
398 * Returns 0 on success or a negative error code.
399 */
400int rtnl_af_register(struct rtnl_af_ops *ops)
401{
402 int err;
403
404 rtnl_lock();
405 err = __rtnl_af_register(ops);
406 rtnl_unlock();
407 return err;
408}
409EXPORT_SYMBOL_GPL(rtnl_af_register);
410
411/**
412 * __rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
413 * @ops: struct rtnl_af_ops * to unregister
414 *
415 * The caller must hold the rtnl_mutex.
416 */
417void __rtnl_af_unregister(struct rtnl_af_ops *ops)
418{
419 list_del(&ops->list);
420}
421EXPORT_SYMBOL_GPL(__rtnl_af_unregister);
422
423/**
424 * rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
425 * @ops: struct rtnl_af_ops * to unregister
426 */
427void rtnl_af_unregister(struct rtnl_af_ops *ops)
428{
429 rtnl_lock();
430 __rtnl_af_unregister(ops);
431 rtnl_unlock();
432}
433EXPORT_SYMBOL_GPL(rtnl_af_unregister);
434
435static size_t rtnl_link_get_af_size(const struct net_device *dev)
436{
437 struct rtnl_af_ops *af_ops;
438 size_t size;
439
440 /* IFLA_AF_SPEC */
441 size = nla_total_size(sizeof(struct nlattr));
442
443 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
444 if (af_ops->get_link_af_size) {
445 /* AF_* + nested data */
446 size += nla_total_size(sizeof(struct nlattr)) +
447 af_ops->get_link_af_size(dev);
448 }
449 }
450
451 return size;
452}
453
Patrick McHardy38f7b872007-06-13 12:03:51 -0700454static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
455{
456 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
457 struct nlattr *linkinfo, *data;
458 int err = -EMSGSIZE;
459
460 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
461 if (linkinfo == NULL)
462 goto out;
463
464 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
465 goto err_cancel_link;
466 if (ops->fill_xstats) {
467 err = ops->fill_xstats(skb, dev);
468 if (err < 0)
469 goto err_cancel_link;
470 }
471 if (ops->fill_info) {
472 data = nla_nest_start(skb, IFLA_INFO_DATA);
473 if (data == NULL)
474 goto err_cancel_link;
475 err = ops->fill_info(skb, dev);
476 if (err < 0)
477 goto err_cancel_data;
478 nla_nest_end(skb, data);
479 }
480
481 nla_nest_end(skb, linkinfo);
482 return 0;
483
484err_cancel_data:
485 nla_nest_cancel(skb, data);
486err_cancel_link:
487 nla_nest_cancel(skb, linkinfo);
488out:
489 return err;
490}
491
Thomas Grafdb46edc2005-05-03 14:29:39 -0700492static const int rtm_min[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Thomas Graff90a0a72005-05-03 14:29:00 -0700494 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
495 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
496 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
Thomas Graf14c0b972006-08-04 03:38:38 -0700497 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700498 [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
499 [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
500 [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
501 [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700502 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
503 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504};
505
Thomas Grafdb46edc2005-05-03 14:29:39 -0700506static const int rta_max[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Thomas Graff90a0a72005-05-03 14:29:00 -0700508 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
509 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
510 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
Thomas Graf14c0b972006-08-04 03:38:38 -0700511 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
Thomas Graff90a0a72005-05-03 14:29:00 -0700512 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
513 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
514 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
515 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516};
517
518void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
519{
520 struct rtattr *rta;
521 int size = RTA_LENGTH(attrlen);
522
Eric Dumazete0d087a2009-11-07 01:26:17 -0800523 rta = (struct rtattr *)skb_put(skb, RTA_ALIGN(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 rta->rta_type = attrtype;
525 rta->rta_len = size;
526 memcpy(RTA_DATA(rta), data, attrlen);
Patrick McHardyb3563c42005-06-28 12:54:43 -0700527 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800529EXPORT_SYMBOL(__rta_fill);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800531int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned group, int echo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800533 struct sock *rtnl = net->rtnl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int err = 0;
535
Patrick McHardyac6d4392005-08-14 19:29:52 -0700536 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (echo)
538 atomic_inc(&skb->users);
539 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
540 if (echo)
541 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
542 return err;
543}
544
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800545int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
Thomas Graf2942e902006-08-15 00:30:25 -0700546{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800547 struct sock *rtnl = net->rtnl;
548
Thomas Graf2942e902006-08-15 00:30:25 -0700549 return nlmsg_unicast(rtnl, skb, pid);
550}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800551EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf2942e902006-08-15 00:30:25 -0700552
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800553void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
554 struct nlmsghdr *nlh, gfp_t flags)
Thomas Graf97676b62006-08-15 00:31:41 -0700555{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800556 struct sock *rtnl = net->rtnl;
Thomas Graf97676b62006-08-15 00:31:41 -0700557 int report = 0;
558
559 if (nlh)
560 report = nlmsg_report(nlh);
561
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800562 nlmsg_notify(rtnl, skb, pid, group, report, flags);
Thomas Graf97676b62006-08-15 00:31:41 -0700563}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800564EXPORT_SYMBOL(rtnl_notify);
Thomas Graf97676b62006-08-15 00:31:41 -0700565
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800566void rtnl_set_sk_err(struct net *net, u32 group, int error)
Thomas Graf97676b62006-08-15 00:31:41 -0700567{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800568 struct sock *rtnl = net->rtnl;
569
Thomas Graf97676b62006-08-15 00:31:41 -0700570 netlink_set_err(rtnl, 0, group, error);
571}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800572EXPORT_SYMBOL(rtnl_set_sk_err);
Thomas Graf97676b62006-08-15 00:31:41 -0700573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
575{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700576 struct nlattr *mx;
577 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Thomas Graf2d7202b2006-08-22 00:01:27 -0700579 mx = nla_nest_start(skb, RTA_METRICS);
580 if (mx == NULL)
581 return -ENOBUFS;
582
583 for (i = 0; i < RTAX_MAX; i++) {
584 if (metrics[i]) {
585 valid++;
586 NLA_PUT_U32(skb, i+1, metrics[i]);
587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
David S. Millera57d27f2006-08-22 22:20:14 -0700590 if (!valid) {
591 nla_nest_cancel(skb, mx);
592 return 0;
593 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700594
595 return nla_nest_end(skb, mx);
596
597nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700598 nla_nest_cancel(skb, mx);
599 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800601EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Thomas Grafe3703b32006-11-27 09:27:07 -0800603int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
604 u32 ts, u32 tsage, long expires, u32 error)
605{
606 struct rta_cacheinfo ci = {
607 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
608 .rta_used = dst->__use,
609 .rta_clntref = atomic_read(&(dst->__refcnt)),
610 .rta_error = error,
611 .rta_id = id,
612 .rta_ts = ts,
613 .rta_tsage = tsage,
614 };
615
616 if (expires)
617 ci.rta_expires = jiffies_to_clock_t(expires);
618
619 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
620}
Thomas Grafe3703b32006-11-27 09:27:07 -0800621EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
David S. Miller93b2d4a2008-02-17 18:35:07 -0800623static void set_operstate(struct net_device *dev, unsigned char transition)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800624{
625 unsigned char operstate = dev->operstate;
626
Eric Dumazete0d087a2009-11-07 01:26:17 -0800627 switch (transition) {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800628 case IF_OPER_UP:
629 if ((operstate == IF_OPER_DORMANT ||
630 operstate == IF_OPER_UNKNOWN) &&
631 !netif_dormant(dev))
632 operstate = IF_OPER_UP;
633 break;
634
635 case IF_OPER_DORMANT:
636 if (operstate == IF_OPER_UP ||
637 operstate == IF_OPER_UNKNOWN)
638 operstate = IF_OPER_DORMANT;
639 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700640 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800641
642 if (dev->operstate != operstate) {
643 write_lock_bh(&dev_base_lock);
644 dev->operstate = operstate;
645 write_unlock_bh(&dev_base_lock);
David S. Miller93b2d4a2008-02-17 18:35:07 -0800646 netdev_state_change(dev);
647 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800648}
649
Patrick McHardy3729d502010-02-26 06:34:54 +0000650static unsigned int rtnl_dev_combine_flags(const struct net_device *dev,
651 const struct ifinfomsg *ifm)
652{
653 unsigned int flags = ifm->ifi_flags;
654
655 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
656 if (ifm->ifi_change)
657 flags = (flags & ifm->ifi_change) |
658 (dev->flags & ~ifm->ifi_change);
659
660 return flags;
661}
662
Thomas Grafb60c5112006-08-04 23:05:34 -0700663static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000664 const struct rtnl_link_stats64 *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Thomas Grafb60c5112006-08-04 23:05:34 -0700666 a->rx_packets = b->rx_packets;
667 a->tx_packets = b->tx_packets;
668 a->rx_bytes = b->rx_bytes;
669 a->tx_bytes = b->tx_bytes;
670 a->rx_errors = b->rx_errors;
671 a->tx_errors = b->tx_errors;
672 a->rx_dropped = b->rx_dropped;
673 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Thomas Grafb60c5112006-08-04 23:05:34 -0700675 a->multicast = b->multicast;
676 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Thomas Grafb60c5112006-08-04 23:05:34 -0700678 a->rx_length_errors = b->rx_length_errors;
679 a->rx_over_errors = b->rx_over_errors;
680 a->rx_crc_errors = b->rx_crc_errors;
681 a->rx_frame_errors = b->rx_frame_errors;
682 a->rx_fifo_errors = b->rx_fifo_errors;
683 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Thomas Grafb60c5112006-08-04 23:05:34 -0700685 a->tx_aborted_errors = b->tx_aborted_errors;
686 a->tx_carrier_errors = b->tx_carrier_errors;
687 a->tx_fifo_errors = b->tx_fifo_errors;
688 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
689 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Thomas Grafb60c5112006-08-04 23:05:34 -0700691 a->rx_compressed = b->rx_compressed;
692 a->tx_compressed = b->tx_compressed;
Jan Engelhardt10708f32010-03-11 09:57:29 +0000693}
694
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000695static void copy_rtnl_link_stats64(void *v, const struct rtnl_link_stats64 *b)
Jan Engelhardt10708f32010-03-11 09:57:29 +0000696{
Eric Dumazetafdcba32010-08-23 07:14:36 +0000697 memcpy(v, b, sizeof(*b));
Jan Engelhardt10708f32010-03-11 09:57:29 +0000698}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Chris Wrightc02db8c2010-05-16 01:05:45 -0700700/* All VF info */
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000701static inline int rtnl_vfinfo_size(const struct net_device *dev)
702{
Chris Wrightc02db8c2010-05-16 01:05:45 -0700703 if (dev->dev.parent && dev_is_pci(dev->dev.parent)) {
704
705 int num_vfs = dev_num_vf(dev->dev.parent);
Scott Feldman045de012010-05-28 03:42:43 -0700706 size_t size = nla_total_size(sizeof(struct nlattr));
707 size += nla_total_size(num_vfs * sizeof(struct nlattr));
708 size += num_vfs *
709 (nla_total_size(sizeof(struct ifla_vf_mac)) +
710 nla_total_size(sizeof(struct ifla_vf_vlan)) +
711 nla_total_size(sizeof(struct ifla_vf_tx_rate)));
Chris Wrightc02db8c2010-05-16 01:05:45 -0700712 return size;
713 } else
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000714 return 0;
715}
716
Scott Feldman57b61082010-05-17 22:49:55 -0700717static size_t rtnl_port_size(const struct net_device *dev)
718{
719 size_t port_size = nla_total_size(4) /* PORT_VF */
720 + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */
721 + nla_total_size(sizeof(struct ifla_port_vsi))
722 /* PORT_VSI_TYPE */
723 + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */
724 + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */
725 + nla_total_size(1) /* PROT_VDP_REQUEST */
726 + nla_total_size(2); /* PORT_VDP_RESPONSE */
727 size_t vf_ports_size = nla_total_size(sizeof(struct nlattr));
728 size_t vf_port_size = nla_total_size(sizeof(struct nlattr))
729 + port_size;
730 size_t port_self_size = nla_total_size(sizeof(struct nlattr))
731 + port_size;
732
733 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
734 return 0;
735 if (dev_num_vf(dev->dev.parent))
736 return port_self_size + vf_ports_size +
737 vf_port_size * dev_num_vf(dev->dev.parent);
738 else
739 return port_self_size;
740}
741
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000742static noinline size_t if_nlmsg_size(const struct net_device *dev)
Thomas Graf339bf982006-11-10 14:10:15 -0800743{
744 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
745 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700746 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
Thomas Graf339bf982006-11-10 14:10:15 -0800747 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
748 + nla_total_size(sizeof(struct rtnl_link_ifmap))
749 + nla_total_size(sizeof(struct rtnl_link_stats))
Jan Engelhardtadcfe192010-03-27 17:15:29 -0700750 + nla_total_size(sizeof(struct rtnl_link_stats64))
Thomas Graf339bf982006-11-10 14:10:15 -0800751 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
752 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
753 + nla_total_size(4) /* IFLA_TXQLEN */
754 + nla_total_size(4) /* IFLA_WEIGHT */
755 + nla_total_size(4) /* IFLA_MTU */
756 + nla_total_size(4) /* IFLA_LINK */
757 + nla_total_size(4) /* IFLA_MASTER */
758 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700759 + nla_total_size(1) /* IFLA_LINKMODE */
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000760 + nla_total_size(4) /* IFLA_NUM_VF */
Chris Wrightc02db8c2010-05-16 01:05:45 -0700761 + rtnl_vfinfo_size(dev) /* IFLA_VFINFO_LIST */
Scott Feldman57b61082010-05-17 22:49:55 -0700762 + rtnl_port_size(dev) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
Thomas Graff8ff1822010-11-16 04:30:14 +0000763 + rtnl_link_get_size(dev) /* IFLA_LINKINFO */
764 + rtnl_link_get_af_size(dev); /* IFLA_AF_SPEC */
Thomas Graf339bf982006-11-10 14:10:15 -0800765}
766
Scott Feldman57b61082010-05-17 22:49:55 -0700767static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev)
768{
769 struct nlattr *vf_ports;
770 struct nlattr *vf_port;
771 int vf;
772 int err;
773
774 vf_ports = nla_nest_start(skb, IFLA_VF_PORTS);
775 if (!vf_ports)
776 return -EMSGSIZE;
777
778 for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) {
779 vf_port = nla_nest_start(skb, IFLA_VF_PORT);
Scott Feldman8ca94182010-05-28 03:42:18 -0700780 if (!vf_port)
781 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700782 NLA_PUT_U32(skb, IFLA_PORT_VF, vf);
783 err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb);
Scott Feldman8ca94182010-05-28 03:42:18 -0700784 if (err == -EMSGSIZE)
785 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700786 if (err) {
Scott Feldman57b61082010-05-17 22:49:55 -0700787 nla_nest_cancel(skb, vf_port);
788 continue;
789 }
790 nla_nest_end(skb, vf_port);
791 }
792
793 nla_nest_end(skb, vf_ports);
794
795 return 0;
Scott Feldman8ca94182010-05-28 03:42:18 -0700796
797nla_put_failure:
798 nla_nest_cancel(skb, vf_ports);
799 return -EMSGSIZE;
Scott Feldman57b61082010-05-17 22:49:55 -0700800}
801
802static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev)
803{
804 struct nlattr *port_self;
805 int err;
806
807 port_self = nla_nest_start(skb, IFLA_PORT_SELF);
808 if (!port_self)
809 return -EMSGSIZE;
810
811 err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb);
812 if (err) {
813 nla_nest_cancel(skb, port_self);
Scott Feldman8ca94182010-05-28 03:42:18 -0700814 return (err == -EMSGSIZE) ? err : 0;
Scott Feldman57b61082010-05-17 22:49:55 -0700815 }
816
817 nla_nest_end(skb, port_self);
818
819 return 0;
820}
821
822static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev)
823{
824 int err;
825
826 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
827 return 0;
828
829 err = rtnl_port_self_fill(skb, dev);
830 if (err)
831 return err;
832
833 if (dev_num_vf(dev->dev.parent)) {
834 err = rtnl_vf_ports_fill(skb, dev);
835 if (err)
836 return err;
837 }
838
839 return 0;
840}
841
Thomas Grafb60c5112006-08-04 23:05:34 -0700842static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -0700843 int type, u32 pid, u32 seq, u32 change,
844 unsigned int flags)
Thomas Grafb60c5112006-08-04 23:05:34 -0700845{
846 struct ifinfomsg *ifm;
847 struct nlmsghdr *nlh;
Eric Dumazet28172732010-07-07 14:58:56 -0700848 struct rtnl_link_stats64 temp;
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000849 const struct rtnl_link_stats64 *stats;
Thomas Graff8ff1822010-11-16 04:30:14 +0000850 struct nlattr *attr, *af_spec;
851 struct rtnl_af_ops *af_ops;
Thomas Grafb60c5112006-08-04 23:05:34 -0700852
853 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
854 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800855 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700856
857 ifm = nlmsg_data(nlh);
858 ifm->ifi_family = AF_UNSPEC;
859 ifm->__ifi_pad = 0;
860 ifm->ifi_type = dev->type;
861 ifm->ifi_index = dev->ifindex;
862 ifm->ifi_flags = dev_get_flags(dev);
863 ifm->ifi_change = change;
864
865 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
866 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
Thomas Grafb60c5112006-08-04 23:05:34 -0700867 NLA_PUT_U8(skb, IFLA_OPERSTATE,
868 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
869 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
870 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
Vlad Dogarucbda10f2011-01-13 23:38:30 +0000871 NLA_PUT_U32(skb, IFLA_GROUP, dev->group);
Thomas Grafb60c5112006-08-04 23:05:34 -0700872
873 if (dev->ifindex != dev->iflink)
874 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
875
876 if (dev->master)
877 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
878
Patrick McHardyaf356af2009-09-04 06:41:18 +0000879 if (dev->qdisc)
880 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc->ops->id);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800881
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700882 if (dev->ifalias)
883 NLA_PUT_STRING(skb, IFLA_IFALIAS, dev->ifalias);
884
Stefan Rompfb00055a2006-03-20 17:09:11 -0800885 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 struct rtnl_link_ifmap map = {
887 .mem_start = dev->mem_start,
888 .mem_end = dev->mem_end,
889 .base_addr = dev->base_addr,
890 .irq = dev->irq,
891 .dma = dev->dma,
892 .port = dev->if_port,
893 };
Thomas Grafb60c5112006-08-04 23:05:34 -0700894 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
896
897 if (dev->addr_len) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700898 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
899 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700902 attr = nla_reserve(skb, IFLA_STATS,
903 sizeof(struct rtnl_link_stats));
904 if (attr == NULL)
905 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Eric Dumazet28172732010-07-07 14:58:56 -0700907 stats = dev_get_stats(dev, &temp);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700908 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Jan Engelhardt10708f32010-03-11 09:57:29 +0000910 attr = nla_reserve(skb, IFLA_STATS64,
911 sizeof(struct rtnl_link_stats64));
912 if (attr == NULL)
913 goto nla_put_failure;
Jan Engelhardt10708f32010-03-11 09:57:29 +0000914 copy_rtnl_link_stats64(nla_data(attr), stats);
915
Scott Feldman57b61082010-05-17 22:49:55 -0700916 if (dev->dev.parent)
917 NLA_PUT_U32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent));
918
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000919 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent) {
920 int i;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000921
Chris Wrightc02db8c2010-05-16 01:05:45 -0700922 struct nlattr *vfinfo, *vf;
923 int num_vfs = dev_num_vf(dev->dev.parent);
924
Chris Wrightc02db8c2010-05-16 01:05:45 -0700925 vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST);
926 if (!vfinfo)
927 goto nla_put_failure;
928 for (i = 0; i < num_vfs; i++) {
929 struct ifla_vf_info ivi;
930 struct ifla_vf_mac vf_mac;
931 struct ifla_vf_vlan vf_vlan;
932 struct ifla_vf_tx_rate vf_tx_rate;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000933 if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi))
934 break;
Chris Wrightc02db8c2010-05-16 01:05:45 -0700935 vf_mac.vf = vf_vlan.vf = vf_tx_rate.vf = ivi.vf;
936 memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac));
937 vf_vlan.vlan = ivi.vlan;
938 vf_vlan.qos = ivi.qos;
939 vf_tx_rate.rate = ivi.tx_rate;
940 vf = nla_nest_start(skb, IFLA_VF_INFO);
941 if (!vf) {
942 nla_nest_cancel(skb, vfinfo);
943 goto nla_put_failure;
944 }
945 NLA_PUT(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac);
946 NLA_PUT(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan);
947 NLA_PUT(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate), &vf_tx_rate);
948 nla_nest_end(skb, vf);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000949 }
Chris Wrightc02db8c2010-05-16 01:05:45 -0700950 nla_nest_end(skb, vfinfo);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000951 }
Scott Feldman57b61082010-05-17 22:49:55 -0700952
953 if (rtnl_port_fill(skb, dev))
954 goto nla_put_failure;
955
Patrick McHardy38f7b872007-06-13 12:03:51 -0700956 if (dev->rtnl_link_ops) {
957 if (rtnl_link_fill(skb, dev) < 0)
958 goto nla_put_failure;
959 }
960
Thomas Graff8ff1822010-11-16 04:30:14 +0000961 if (!(af_spec = nla_nest_start(skb, IFLA_AF_SPEC)))
962 goto nla_put_failure;
963
964 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
965 if (af_ops->fill_link_af) {
966 struct nlattr *af;
967 int err;
968
969 if (!(af = nla_nest_start(skb, af_ops->family)))
970 goto nla_put_failure;
971
972 err = af_ops->fill_link_af(skb, dev);
973
974 /*
975 * Caller may return ENODATA to indicate that there
976 * was no data to be dumped. This is not an error, it
977 * means we should trim the attribute header and
978 * continue.
979 */
980 if (err == -ENODATA)
981 nla_nest_cancel(skb, af);
982 else if (err < 0)
983 goto nla_put_failure;
984
985 nla_nest_end(skb, af);
986 }
987 }
988
989 nla_nest_end(skb, af_spec);
990
Thomas Grafb60c5112006-08-04 23:05:34 -0700991 return nlmsg_end(skb, nlh);
992
993nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800994 nlmsg_cancel(skb, nlh);
995 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
Thomas Grafb60c5112006-08-04 23:05:34 -0700998static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001000 struct net *net = sock_net(skb->sk);
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001001 int h, s_h;
1002 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 struct net_device *dev;
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001004 struct hlist_head *head;
1005 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001007 s_h = cb->args[0];
1008 s_idx = cb->args[1];
1009
1010 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
1011 idx = 0;
1012 head = &net->dev_index_head[h];
1013 hlist_for_each_entry(dev, node, head, index_hlist) {
1014 if (idx < s_idx)
1015 goto cont;
1016 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
1017 NETLINK_CB(cb->skb).pid,
1018 cb->nlh->nlmsg_seq, 0,
1019 NLM_F_MULTI) <= 0)
1020 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001021cont:
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001022 idx++;
1023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
Eric Dumazet7c28bd02009-10-24 06:13:17 -07001025out:
1026 cb->args[1] = idx;
1027 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 return skb->len;
1030}
1031
Pavel Emelianove7199282007-08-08 22:16:38 -07001032const struct nla_policy ifla_policy[IFLA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07001033 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
Patrick McHardy38f7b872007-06-13 12:03:51 -07001034 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1035 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
Thomas Graf5176f912006-08-26 20:13:18 -07001036 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -07001037 [IFLA_MTU] = { .type = NLA_U32 },
Thomas Graf76e87302008-02-19 16:12:08 -08001038 [IFLA_LINK] = { .type = NLA_U32 },
Thomas Grafda5e0492006-08-10 21:17:37 -07001039 [IFLA_TXQLEN] = { .type = NLA_U32 },
1040 [IFLA_WEIGHT] = { .type = NLA_U32 },
1041 [IFLA_OPERSTATE] = { .type = NLA_U8 },
1042 [IFLA_LINKMODE] = { .type = NLA_U8 },
Thomas Graf76e87302008-02-19 16:12:08 -08001043 [IFLA_LINKINFO] = { .type = NLA_NESTED },
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001044 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001045 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
Chris Wrightc02db8c2010-05-16 01:05:45 -07001046 [IFLA_VFINFO_LIST] = {. type = NLA_NESTED },
Scott Feldman57b61082010-05-17 22:49:55 -07001047 [IFLA_VF_PORTS] = { .type = NLA_NESTED },
1048 [IFLA_PORT_SELF] = { .type = NLA_NESTED },
Thomas Graff8ff1822010-11-16 04:30:14 +00001049 [IFLA_AF_SPEC] = { .type = NLA_NESTED },
Thomas Grafda5e0492006-08-10 21:17:37 -07001050};
Eric Dumazete0d087a2009-11-07 01:26:17 -08001051EXPORT_SYMBOL(ifla_policy);
Thomas Grafda5e0492006-08-10 21:17:37 -07001052
Patrick McHardy38f7b872007-06-13 12:03:51 -07001053static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
1054 [IFLA_INFO_KIND] = { .type = NLA_STRING },
1055 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
1056};
1057
Chris Wrightc02db8c2010-05-16 01:05:45 -07001058static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = {
1059 [IFLA_VF_INFO] = { .type = NLA_NESTED },
1060};
1061
1062static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
1063 [IFLA_VF_MAC] = { .type = NLA_BINARY,
1064 .len = sizeof(struct ifla_vf_mac) },
1065 [IFLA_VF_VLAN] = { .type = NLA_BINARY,
1066 .len = sizeof(struct ifla_vf_vlan) },
1067 [IFLA_VF_TX_RATE] = { .type = NLA_BINARY,
1068 .len = sizeof(struct ifla_vf_tx_rate) },
1069};
1070
Scott Feldman57b61082010-05-17 22:49:55 -07001071static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = {
1072 [IFLA_PORT_VF] = { .type = NLA_U32 },
1073 [IFLA_PORT_PROFILE] = { .type = NLA_STRING,
1074 .len = PORT_PROFILE_MAX },
1075 [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY,
1076 .len = sizeof(struct ifla_port_vsi)},
1077 [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY,
1078 .len = PORT_UUID_MAX },
1079 [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING,
1080 .len = PORT_UUID_MAX },
1081 [IFLA_PORT_REQUEST] = { .type = NLA_U8, },
1082 [IFLA_PORT_RESPONSE] = { .type = NLA_U16, },
1083};
1084
Eric W. Biederman81adee42009-11-08 00:53:51 -08001085struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
1086{
1087 struct net *net;
1088 /* Examine the link attributes and figure out which
1089 * network namespace we are talking about.
1090 */
1091 if (tb[IFLA_NET_NS_PID])
1092 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
1093 else
1094 net = get_net(src_net);
1095 return net;
1096}
1097EXPORT_SYMBOL(rtnl_link_get_net);
1098
Thomas Graf1840bb12008-02-23 19:54:36 -08001099static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
1100{
1101 if (dev) {
1102 if (tb[IFLA_ADDRESS] &&
1103 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
1104 return -EINVAL;
1105
1106 if (tb[IFLA_BROADCAST] &&
1107 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
1108 return -EINVAL;
1109 }
1110
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001111 if (tb[IFLA_AF_SPEC]) {
1112 struct nlattr *af;
1113 int rem, err;
1114
1115 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1116 const struct rtnl_af_ops *af_ops;
1117
1118 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
1119 return -EAFNOSUPPORT;
1120
1121 if (!af_ops->set_link_af)
1122 return -EOPNOTSUPP;
1123
1124 if (af_ops->validate_link_af) {
1125 err = af_ops->validate_link_af(dev,
1126 tb[IFLA_AF_SPEC]);
1127 if (err < 0)
1128 return err;
1129 }
1130 }
1131 }
1132
Thomas Graf1840bb12008-02-23 19:54:36 -08001133 return 0;
1134}
1135
Chris Wrightc02db8c2010-05-16 01:05:45 -07001136static int do_setvfinfo(struct net_device *dev, struct nlattr *attr)
1137{
1138 int rem, err = -EINVAL;
1139 struct nlattr *vf;
1140 const struct net_device_ops *ops = dev->netdev_ops;
1141
1142 nla_for_each_nested(vf, attr, rem) {
1143 switch (nla_type(vf)) {
1144 case IFLA_VF_MAC: {
1145 struct ifla_vf_mac *ivm;
1146 ivm = nla_data(vf);
1147 err = -EOPNOTSUPP;
1148 if (ops->ndo_set_vf_mac)
1149 err = ops->ndo_set_vf_mac(dev, ivm->vf,
1150 ivm->mac);
1151 break;
1152 }
1153 case IFLA_VF_VLAN: {
1154 struct ifla_vf_vlan *ivv;
1155 ivv = nla_data(vf);
1156 err = -EOPNOTSUPP;
1157 if (ops->ndo_set_vf_vlan)
1158 err = ops->ndo_set_vf_vlan(dev, ivv->vf,
1159 ivv->vlan,
1160 ivv->qos);
1161 break;
1162 }
1163 case IFLA_VF_TX_RATE: {
1164 struct ifla_vf_tx_rate *ivt;
1165 ivt = nla_data(vf);
1166 err = -EOPNOTSUPP;
1167 if (ops->ndo_set_vf_tx_rate)
1168 err = ops->ndo_set_vf_tx_rate(dev, ivt->vf,
1169 ivt->rate);
1170 break;
1171 }
1172 default:
1173 err = -EINVAL;
1174 break;
1175 }
1176 if (err)
1177 break;
1178 }
1179 return err;
1180}
1181
Patrick McHardy0157f602007-06-13 12:03:36 -07001182static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
Patrick McHardy38f7b872007-06-13 12:03:51 -07001183 struct nlattr **tb, char *ifname, int modified)
Patrick McHardy0157f602007-06-13 12:03:36 -07001184{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001185 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001186 int send_addr_notify = 0;
Patrick McHardy0157f602007-06-13 12:03:36 -07001187 int err;
1188
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001189 if (tb[IFLA_NET_NS_PID]) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001190 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001191 if (IS_ERR(net)) {
1192 err = PTR_ERR(net);
1193 goto errout;
1194 }
1195 err = dev_change_net_namespace(dev, net, ifname);
1196 put_net(net);
1197 if (err)
1198 goto errout;
1199 modified = 1;
1200 }
1201
Patrick McHardy0157f602007-06-13 12:03:36 -07001202 if (tb[IFLA_MAP]) {
1203 struct rtnl_link_ifmap *u_map;
1204 struct ifmap k_map;
1205
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001206 if (!ops->ndo_set_config) {
Patrick McHardy0157f602007-06-13 12:03:36 -07001207 err = -EOPNOTSUPP;
1208 goto errout;
1209 }
1210
1211 if (!netif_device_present(dev)) {
1212 err = -ENODEV;
1213 goto errout;
1214 }
1215
1216 u_map = nla_data(tb[IFLA_MAP]);
1217 k_map.mem_start = (unsigned long) u_map->mem_start;
1218 k_map.mem_end = (unsigned long) u_map->mem_end;
1219 k_map.base_addr = (unsigned short) u_map->base_addr;
1220 k_map.irq = (unsigned char) u_map->irq;
1221 k_map.dma = (unsigned char) u_map->dma;
1222 k_map.port = (unsigned char) u_map->port;
1223
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001224 err = ops->ndo_set_config(dev, &k_map);
Patrick McHardy0157f602007-06-13 12:03:36 -07001225 if (err < 0)
1226 goto errout;
1227
1228 modified = 1;
1229 }
1230
1231 if (tb[IFLA_ADDRESS]) {
1232 struct sockaddr *sa;
1233 int len;
1234
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001235 if (!ops->ndo_set_mac_address) {
Patrick McHardy0157f602007-06-13 12:03:36 -07001236 err = -EOPNOTSUPP;
1237 goto errout;
1238 }
1239
1240 if (!netif_device_present(dev)) {
1241 err = -ENODEV;
1242 goto errout;
1243 }
1244
1245 len = sizeof(sa_family_t) + dev->addr_len;
1246 sa = kmalloc(len, GFP_KERNEL);
1247 if (!sa) {
1248 err = -ENOMEM;
1249 goto errout;
1250 }
1251 sa->sa_family = dev->type;
1252 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
1253 dev->addr_len);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001254 err = ops->ndo_set_mac_address(dev, sa);
Patrick McHardy0157f602007-06-13 12:03:36 -07001255 kfree(sa);
1256 if (err)
1257 goto errout;
1258 send_addr_notify = 1;
1259 modified = 1;
1260 }
1261
1262 if (tb[IFLA_MTU]) {
1263 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1264 if (err < 0)
1265 goto errout;
1266 modified = 1;
1267 }
1268
Vlad Dogarucbda10f2011-01-13 23:38:30 +00001269 if (tb[IFLA_GROUP]) {
1270 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
1271 modified = 1;
1272 }
1273
Patrick McHardy0157f602007-06-13 12:03:36 -07001274 /*
1275 * Interface selected by interface index but interface
1276 * name provided implies that a name change has been
1277 * requested.
1278 */
1279 if (ifm->ifi_index > 0 && ifname[0]) {
1280 err = dev_change_name(dev, ifname);
1281 if (err < 0)
1282 goto errout;
1283 modified = 1;
1284 }
1285
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001286 if (tb[IFLA_IFALIAS]) {
1287 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
1288 nla_len(tb[IFLA_IFALIAS]));
1289 if (err < 0)
1290 goto errout;
1291 modified = 1;
1292 }
1293
Patrick McHardy0157f602007-06-13 12:03:36 -07001294 if (tb[IFLA_BROADCAST]) {
1295 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
1296 send_addr_notify = 1;
1297 }
1298
1299 if (ifm->ifi_flags || ifm->ifi_change) {
Patrick McHardy3729d502010-02-26 06:34:54 +00001300 err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
Johannes Berg5f9021c2008-11-16 23:20:31 -08001301 if (err < 0)
1302 goto errout;
Patrick McHardy0157f602007-06-13 12:03:36 -07001303 }
1304
David S. Miller93b2d4a2008-02-17 18:35:07 -08001305 if (tb[IFLA_TXQLEN])
1306 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
Patrick McHardy0157f602007-06-13 12:03:36 -07001307
Patrick McHardy0157f602007-06-13 12:03:36 -07001308 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001309 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Patrick McHardy0157f602007-06-13 12:03:36 -07001310
1311 if (tb[IFLA_LINKMODE]) {
David S. Miller93b2d4a2008-02-17 18:35:07 -08001312 write_lock_bh(&dev_base_lock);
1313 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1314 write_unlock_bh(&dev_base_lock);
Patrick McHardy0157f602007-06-13 12:03:36 -07001315 }
1316
Chris Wrightc02db8c2010-05-16 01:05:45 -07001317 if (tb[IFLA_VFINFO_LIST]) {
1318 struct nlattr *attr;
1319 int rem;
1320 nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) {
David Howells253683b2010-05-21 02:25:27 +00001321 if (nla_type(attr) != IFLA_VF_INFO) {
1322 err = -EINVAL;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001323 goto errout;
David Howells253683b2010-05-21 02:25:27 +00001324 }
Chris Wrightc02db8c2010-05-16 01:05:45 -07001325 err = do_setvfinfo(dev, attr);
1326 if (err < 0)
1327 goto errout;
1328 modified = 1;
1329 }
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001330 }
Patrick McHardy0157f602007-06-13 12:03:36 -07001331 err = 0;
1332
Scott Feldman57b61082010-05-17 22:49:55 -07001333 if (tb[IFLA_VF_PORTS]) {
1334 struct nlattr *port[IFLA_PORT_MAX+1];
1335 struct nlattr *attr;
1336 int vf;
1337 int rem;
1338
1339 err = -EOPNOTSUPP;
1340 if (!ops->ndo_set_vf_port)
1341 goto errout;
1342
1343 nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) {
1344 if (nla_type(attr) != IFLA_VF_PORT)
1345 continue;
1346 err = nla_parse_nested(port, IFLA_PORT_MAX,
1347 attr, ifla_port_policy);
1348 if (err < 0)
1349 goto errout;
1350 if (!port[IFLA_PORT_VF]) {
1351 err = -EOPNOTSUPP;
1352 goto errout;
1353 }
1354 vf = nla_get_u32(port[IFLA_PORT_VF]);
1355 err = ops->ndo_set_vf_port(dev, vf, port);
1356 if (err < 0)
1357 goto errout;
1358 modified = 1;
1359 }
1360 }
1361 err = 0;
1362
1363 if (tb[IFLA_PORT_SELF]) {
1364 struct nlattr *port[IFLA_PORT_MAX+1];
1365
1366 err = nla_parse_nested(port, IFLA_PORT_MAX,
1367 tb[IFLA_PORT_SELF], ifla_port_policy);
1368 if (err < 0)
1369 goto errout;
1370
1371 err = -EOPNOTSUPP;
1372 if (ops->ndo_set_vf_port)
1373 err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port);
1374 if (err < 0)
1375 goto errout;
1376 modified = 1;
1377 }
Thomas Graff8ff1822010-11-16 04:30:14 +00001378
1379 if (tb[IFLA_AF_SPEC]) {
1380 struct nlattr *af;
1381 int rem;
1382
1383 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1384 const struct rtnl_af_ops *af_ops;
1385
1386 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001387 BUG();
Thomas Graff8ff1822010-11-16 04:30:14 +00001388
Thomas Grafcf7afbf2010-11-22 01:31:54 +00001389 err = af_ops->set_link_af(dev, af);
Thomas Graff8ff1822010-11-16 04:30:14 +00001390 if (err < 0)
1391 goto errout;
1392
1393 modified = 1;
1394 }
1395 }
Scott Feldman57b61082010-05-17 22:49:55 -07001396 err = 0;
1397
Patrick McHardy0157f602007-06-13 12:03:36 -07001398errout:
1399 if (err < 0 && modified && net_ratelimit())
1400 printk(KERN_WARNING "A link change request failed with "
1401 "some changes comitted already. Interface %s may "
1402 "have been left with an inconsistent configuration, "
1403 "please check.\n", dev->name);
1404
1405 if (send_addr_notify)
1406 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
1407 return err;
1408}
1409
Thomas Grafda5e0492006-08-10 21:17:37 -07001410static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001412 struct net *net = sock_net(skb->sk);
Thomas Grafda5e0492006-08-10 21:17:37 -07001413 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -07001415 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -07001416 struct nlattr *tb[IFLA_MAX+1];
1417 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Thomas Grafda5e0492006-08-10 21:17:37 -07001419 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1420 if (err < 0)
1421 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Thomas Graf5176f912006-08-26 20:13:18 -07001423 if (tb[IFLA_IFNAME])
1424 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -07001425 else
1426 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -07001429 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -07001430 if (ifm->ifi_index > 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001431 dev = __dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -07001432 else if (tb[IFLA_IFNAME])
Eric Dumazeta3d12892009-10-21 10:59:31 +00001433 dev = __dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -07001434 else
1435 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Thomas Grafda5e0492006-08-10 21:17:37 -07001437 if (dev == NULL) {
1438 err = -ENODEV;
1439 goto errout;
1440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Eric Dumazete0d087a2009-11-07 01:26:17 -08001442 err = validate_linkmsg(dev, tb);
1443 if (err < 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001444 goto errout;
Thomas Grafda5e0492006-08-10 21:17:37 -07001445
Patrick McHardy38f7b872007-06-13 12:03:51 -07001446 err = do_setlink(dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -07001447errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 return err;
1449}
1450
Patrick McHardy38f7b872007-06-13 12:03:51 -07001451static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1452{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001453 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001454 const struct rtnl_link_ops *ops;
1455 struct net_device *dev;
1456 struct ifinfomsg *ifm;
1457 char ifname[IFNAMSIZ];
1458 struct nlattr *tb[IFLA_MAX+1];
1459 int err;
1460
1461 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1462 if (err < 0)
1463 return err;
1464
1465 if (tb[IFLA_IFNAME])
1466 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1467
1468 ifm = nlmsg_data(nlh);
1469 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001470 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001471 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001472 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001473 else
1474 return -EINVAL;
1475
1476 if (!dev)
1477 return -ENODEV;
1478
1479 ops = dev->rtnl_link_ops;
1480 if (!ops)
1481 return -EOPNOTSUPP;
1482
Eric Dumazet23289a32009-10-27 07:06:36 +00001483 ops->dellink(dev, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001484 return 0;
1485}
1486
Patrick McHardy3729d502010-02-26 06:34:54 +00001487int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
1488{
1489 unsigned int old_flags;
1490 int err;
1491
1492 old_flags = dev->flags;
1493 if (ifm && (ifm->ifi_flags || ifm->ifi_change)) {
1494 err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
1495 if (err < 0)
1496 return err;
1497 }
1498
1499 dev->rtnl_link_state = RTNL_LINK_INITIALIZED;
1500 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1501
1502 __dev_notify_flags(dev, old_flags);
1503 return 0;
1504}
1505EXPORT_SYMBOL(rtnl_configure_link);
1506
Eric W. Biederman81adee42009-11-08 00:53:51 -08001507struct net_device *rtnl_create_link(struct net *src_net, struct net *net,
1508 char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[])
Pavel Emelianove7199282007-08-08 22:16:38 -07001509{
1510 int err;
1511 struct net_device *dev;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001512 unsigned int num_queues = 1;
1513 unsigned int real_num_queues = 1;
Pavel Emelianove7199282007-08-08 22:16:38 -07001514
Eric Dumazet2e59af32009-09-02 18:03:00 -07001515 if (ops->get_tx_queues) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001516 err = ops->get_tx_queues(src_net, tb, &num_queues,
Eric Dumazete0d087a2009-11-07 01:26:17 -08001517 &real_num_queues);
Eric Dumazet2e59af32009-09-02 18:03:00 -07001518 if (err)
1519 goto err;
1520 }
Pavel Emelianove7199282007-08-08 22:16:38 -07001521 err = -ENOMEM;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001522 dev = alloc_netdev_mq(ops->priv_size, ifname, ops->setup, num_queues);
Pavel Emelianove7199282007-08-08 22:16:38 -07001523 if (!dev)
1524 goto err;
1525
Eric W. Biederman81adee42009-11-08 00:53:51 -08001526 dev_net_set(dev, net);
1527 dev->rtnl_link_ops = ops;
Patrick McHardy3729d502010-02-26 06:34:54 +00001528 dev->rtnl_link_state = RTNL_LINK_INITIALIZING;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001529 dev->real_num_tx_queues = real_num_queues;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001530
Pavel Emelianove7199282007-08-08 22:16:38 -07001531 if (strchr(dev->name, '%')) {
1532 err = dev_alloc_name(dev, dev->name);
1533 if (err < 0)
1534 goto err_free;
1535 }
1536
Pavel Emelianove7199282007-08-08 22:16:38 -07001537 if (tb[IFLA_MTU])
1538 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
1539 if (tb[IFLA_ADDRESS])
1540 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1541 nla_len(tb[IFLA_ADDRESS]));
1542 if (tb[IFLA_BROADCAST])
1543 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1544 nla_len(tb[IFLA_BROADCAST]));
1545 if (tb[IFLA_TXQLEN])
1546 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1547 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001548 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001549 if (tb[IFLA_LINKMODE])
1550 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1551
1552 return dev;
1553
1554err_free:
1555 free_netdev(dev);
1556err:
1557 return ERR_PTR(err);
1558}
Eric Dumazete0d087a2009-11-07 01:26:17 -08001559EXPORT_SYMBOL(rtnl_create_link);
Pavel Emelianove7199282007-08-08 22:16:38 -07001560
Patrick McHardy38f7b872007-06-13 12:03:51 -07001561static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1562{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001563 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001564 const struct rtnl_link_ops *ops;
1565 struct net_device *dev;
1566 struct ifinfomsg *ifm;
1567 char kind[MODULE_NAME_LEN];
1568 char ifname[IFNAMSIZ];
1569 struct nlattr *tb[IFLA_MAX+1];
1570 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1571 int err;
1572
Johannes Berg95a5afc2008-10-16 15:24:51 -07001573#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001574replay:
Thomas Graf8072f082007-07-31 14:13:50 -07001575#endif
Patrick McHardy38f7b872007-06-13 12:03:51 -07001576 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1577 if (err < 0)
1578 return err;
1579
1580 if (tb[IFLA_IFNAME])
1581 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1582 else
1583 ifname[0] = '\0';
1584
1585 ifm = nlmsg_data(nlh);
1586 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001587 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001588 else if (ifname[0])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001589 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001590 else
1591 dev = NULL;
1592
Eric Dumazete0d087a2009-11-07 01:26:17 -08001593 err = validate_linkmsg(dev, tb);
1594 if (err < 0)
Thomas Graf1840bb12008-02-23 19:54:36 -08001595 return err;
1596
Patrick McHardy38f7b872007-06-13 12:03:51 -07001597 if (tb[IFLA_LINKINFO]) {
1598 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1599 tb[IFLA_LINKINFO], ifla_info_policy);
1600 if (err < 0)
1601 return err;
1602 } else
1603 memset(linkinfo, 0, sizeof(linkinfo));
1604
1605 if (linkinfo[IFLA_INFO_KIND]) {
1606 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1607 ops = rtnl_link_ops_get(kind);
1608 } else {
1609 kind[0] = '\0';
1610 ops = NULL;
1611 }
1612
1613 if (1) {
1614 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001615 struct net *dest_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001616
1617 if (ops) {
1618 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1619 err = nla_parse_nested(attr, ops->maxtype,
1620 linkinfo[IFLA_INFO_DATA],
1621 ops->policy);
1622 if (err < 0)
1623 return err;
1624 data = attr;
1625 }
1626 if (ops->validate) {
1627 err = ops->validate(tb, data);
1628 if (err < 0)
1629 return err;
1630 }
1631 }
1632
1633 if (dev) {
1634 int modified = 0;
1635
1636 if (nlh->nlmsg_flags & NLM_F_EXCL)
1637 return -EEXIST;
1638 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1639 return -EOPNOTSUPP;
1640
1641 if (linkinfo[IFLA_INFO_DATA]) {
1642 if (!ops || ops != dev->rtnl_link_ops ||
1643 !ops->changelink)
1644 return -EOPNOTSUPP;
1645
1646 err = ops->changelink(dev, tb, data);
1647 if (err < 0)
1648 return err;
1649 modified = 1;
1650 }
1651
1652 return do_setlink(dev, ifm, tb, ifname, modified);
1653 }
1654
1655 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
1656 return -ENODEV;
1657
Patrick McHardy3729d502010-02-26 06:34:54 +00001658 if (ifm->ifi_index)
Patrick McHardy38f7b872007-06-13 12:03:51 -07001659 return -EOPNOTSUPP;
Patrick McHardy0e068772007-07-11 19:42:31 -07001660 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
Patrick McHardy38f7b872007-06-13 12:03:51 -07001661 return -EOPNOTSUPP;
1662
1663 if (!ops) {
Johannes Berg95a5afc2008-10-16 15:24:51 -07001664#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001665 if (kind[0]) {
1666 __rtnl_unlock();
1667 request_module("rtnl-link-%s", kind);
1668 rtnl_lock();
1669 ops = rtnl_link_ops_get(kind);
1670 if (ops)
1671 goto replay;
1672 }
1673#endif
1674 return -EOPNOTSUPP;
1675 }
1676
1677 if (!ifname[0])
1678 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001679
Eric W. Biederman81adee42009-11-08 00:53:51 -08001680 dest_net = rtnl_link_get_net(net, tb);
1681 dev = rtnl_create_link(net, dest_net, ifname, ops, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001682
Pavel Emelianove7199282007-08-08 22:16:38 -07001683 if (IS_ERR(dev))
1684 err = PTR_ERR(dev);
1685 else if (ops->newlink)
Eric W. Biederman81adee42009-11-08 00:53:51 -08001686 err = ops->newlink(net, dev, tb, data);
Patrick McHardy2d85cba2007-07-11 19:42:13 -07001687 else
1688 err = register_netdevice(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001689
1690 if (err < 0 && !IS_ERR(dev))
Patrick McHardy38f7b872007-06-13 12:03:51 -07001691 free_netdev(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001692 if (err < 0)
Patrick McHardy3729d502010-02-26 06:34:54 +00001693 goto out;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001694
Patrick McHardy3729d502010-02-26 06:34:54 +00001695 err = rtnl_configure_link(dev, ifm);
1696 if (err < 0)
1697 unregister_netdevice(dev);
1698out:
Eric W. Biederman81adee42009-11-08 00:53:51 -08001699 put_net(dest_net);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001700 return err;
1701 }
1702}
1703
Thomas Grafb60c5112006-08-04 23:05:34 -07001704static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001705{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001706 struct net *net = sock_net(skb->sk);
Thomas Grafb60c5112006-08-04 23:05:34 -07001707 struct ifinfomsg *ifm;
Eric Dumazeta3d12892009-10-21 10:59:31 +00001708 char ifname[IFNAMSIZ];
Thomas Grafb60c5112006-08-04 23:05:34 -07001709 struct nlattr *tb[IFLA_MAX+1];
1710 struct net_device *dev = NULL;
1711 struct sk_buff *nskb;
Thomas Graf339bf982006-11-10 14:10:15 -08001712 int err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001713
Thomas Grafb60c5112006-08-04 23:05:34 -07001714 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1715 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07001716 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07001717
Eric Dumazeta3d12892009-10-21 10:59:31 +00001718 if (tb[IFLA_IFNAME])
1719 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1720
Thomas Grafb60c5112006-08-04 23:05:34 -07001721 ifm = nlmsg_data(nlh);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001722 if (ifm->ifi_index > 0)
1723 dev = __dev_get_by_index(net, ifm->ifi_index);
1724 else if (tb[IFLA_IFNAME])
1725 dev = __dev_get_by_name(net, ifname);
1726 else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001727 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07001728
Eric Dumazeta3d12892009-10-21 10:59:31 +00001729 if (dev == NULL)
1730 return -ENODEV;
1731
Patrick McHardy38f7b872007-06-13 12:03:51 -07001732 nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001733 if (nskb == NULL)
1734 return -ENOBUFS;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001735
Patrick McHardy575c3e22007-05-22 17:00:49 -07001736 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1737 nlh->nlmsg_seq, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001738 if (err < 0) {
1739 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1740 WARN_ON(err == -EMSGSIZE);
1741 kfree_skb(nskb);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001742 } else
1743 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid);
Thomas Grafb60c5112006-08-04 23:05:34 -07001744
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001745 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001746}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001747
Adrian Bunk42bad1d2007-04-26 00:57:41 -07001748static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
1750 int idx;
1751 int s_idx = cb->family;
1752
1753 if (s_idx == 0)
1754 s_idx = 1;
Patrick McHardy25239ce2010-04-26 16:02:05 +02001755 for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 int type = cb->nlh->nlmsg_type-RTM_BASE;
1757 if (idx < s_idx || idx == PF_PACKET)
1758 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07001759 if (rtnl_msg_handlers[idx] == NULL ||
1760 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 continue;
1762 if (idx > s_idx)
1763 memset(&cb->args[0], 0, sizeof(cb->args));
Thomas Grafe2849862007-03-22 11:48:11 -07001764 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 break;
1766 }
1767 cb->family = idx;
1768
1769 return skb->len;
1770}
1771
1772void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1773{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001774 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001776 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Patrick McHardy38f7b872007-06-13 12:03:51 -07001778 skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001779 if (skb == NULL)
1780 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Patrick McHardy575c3e22007-05-22 17:00:49 -07001782 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001783 if (err < 0) {
1784 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1785 WARN_ON(err == -EMSGSIZE);
1786 kfree_skb(skb);
1787 goto errout;
1788 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001789 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1790 return;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001791errout:
1792 if (err < 0)
Eric W. Biederman4b3da702007-11-19 22:27:40 -08001793 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794}
1795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796/* Protected by RTNL sempahore. */
1797static struct rtattr **rta_buf;
1798static int rtattr_max;
1799
1800/* Process one rtnetlink message. */
1801
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001802static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001804 struct net *net = sock_net(skb->sk);
Thomas Grafe2849862007-03-22 11:48:11 -07001805 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 int sz_idx, kind;
1807 int min_len;
1808 int family;
1809 int type;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001810 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07001814 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
1816 type -= RTM_BASE;
1817
1818 /* All the messages must have at least 1 byte length */
1819 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1820 return 0;
1821
Eric Dumazete0d087a2009-11-07 01:26:17 -08001822 family = ((struct rtgenmsg *)NLMSG_DATA(nlh))->rtgen_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 sz_idx = type>>2;
1824 kind = type&3;
1825
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001826 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
1827 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Jan Engelhardt0ab03c22011-01-07 03:15:05 +00001829 if (kind == 2 && (nlh->nlmsg_flags & NLM_F_DUMP) == NLM_F_DUMP) {
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001830 struct sock *rtnl;
Thomas Grafe2849862007-03-22 11:48:11 -07001831 rtnl_dumpit_func dumpit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Thomas Grafe2849862007-03-22 11:48:11 -07001833 dumpit = rtnl_get_dumpit(family, type);
1834 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001835 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001837 __rtnl_unlock();
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001838 rtnl = net->rtnl;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001839 err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL);
1840 rtnl_lock();
1841 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843
1844 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
1845
1846 min_len = rtm_min[sz_idx];
1847 if (nlh->nlmsg_len < min_len)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001848 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 if (nlh->nlmsg_len > min_len) {
1851 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
Eric Dumazete0d087a2009-11-07 01:26:17 -08001852 struct rtattr *attr = (void *)nlh + NLMSG_ALIGN(min_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
1854 while (RTA_OK(attr, attrlen)) {
1855 unsigned flavor = attr->rta_type;
1856 if (flavor) {
1857 if (flavor > rta_max[sz_idx])
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001858 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 rta_buf[flavor-1] = attr;
1860 }
1861 attr = RTA_NEXT(attr, attrlen);
1862 }
1863 }
1864
Thomas Grafe2849862007-03-22 11:48:11 -07001865 doit = rtnl_get_doit(family, type);
1866 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001867 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001869 return doit(skb, nlh, (void *)&rta_buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870}
1871
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001872static void rtnetlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001874 rtnl_lock();
1875 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
1876 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877}
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
1880{
1881 struct net_device *dev = ptr;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 case NETDEV_UP:
1885 case NETDEV_DOWN:
Patrick McHardy10de05a2010-02-26 06:34:50 +00001886 case NETDEV_PRE_UP:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00001887 case NETDEV_POST_INIT:
1888 case NETDEV_REGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 case NETDEV_CHANGE:
Patrick McHardy755d0e72010-03-19 04:42:24 +00001890 case NETDEV_PRE_TYPE_CHANGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 case NETDEV_GOING_DOWN:
Patrick McHardya2835762010-02-26 06:34:51 +00001892 case NETDEV_UNREGISTER:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00001893 case NETDEV_UNREGISTER_BATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 break;
1895 default:
1896 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1897 break;
1898 }
1899 return NOTIFY_DONE;
1900}
1901
1902static struct notifier_block rtnetlink_dev_notifier = {
1903 .notifier_call = rtnetlink_event,
1904};
1905
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001906
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001907static int __net_init rtnetlink_net_init(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001908{
1909 struct sock *sk;
1910 sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX,
1911 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
1912 if (!sk)
1913 return -ENOMEM;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001914 net->rtnl = sk;
1915 return 0;
1916}
1917
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001918static void __net_exit rtnetlink_net_exit(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001919{
Denis V. Lunev775516b2008-01-18 23:55:19 -08001920 netlink_kernel_release(net->rtnl);
1921 net->rtnl = NULL;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001922}
1923
1924static struct pernet_operations rtnetlink_net_ops = {
1925 .init = rtnetlink_net_init,
1926 .exit = rtnetlink_net_exit,
1927};
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929void __init rtnetlink_init(void)
1930{
1931 int i;
1932
1933 rtattr_max = 0;
1934 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
1935 if (rta_max[i] > rtattr_max)
1936 rtattr_max = rta_max[i];
1937 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
1938 if (!rta_buf)
1939 panic("rtnetlink_init: cannot allocate rta_buf\n");
1940
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001941 if (register_pernet_subsys(&rtnetlink_net_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 panic("rtnetlink_init: cannot initialize rtnetlink\n");
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
1945 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07001946
1947 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo);
1948 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001949 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL);
1950 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07001951
1952 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all);
1953 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954}
1955