blob: 020e43bfef5f6a05231bf75dacd117391c2247fe [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
Adrian Bunk42bad1d2007-04-26 00:57:41 -070093static struct rtnl_link *rtnl_msg_handlers[NPROTO];
Thomas Grafe2849862007-03-22 11:48:11 -070094
95static inline int rtm_msgindex(int msgtype)
96{
97 int msgindex = msgtype - RTM_BASE;
98
99 /*
100 * msgindex < 0 implies someone tried to register a netlink
101 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
102 * the message type has not been added to linux/rtnetlink.h
103 */
104 BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
105
106 return msgindex;
107}
108
109static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
110{
111 struct rtnl_link *tab;
112
113 tab = rtnl_msg_handlers[protocol];
Thomas Graf51057f22007-03-22 21:41:06 -0700114 if (tab == NULL || tab[msgindex].doit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700115 tab = rtnl_msg_handlers[PF_UNSPEC];
116
Thomas Graf51057f22007-03-22 21:41:06 -0700117 return tab ? tab[msgindex].doit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700118}
119
120static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
121{
122 struct rtnl_link *tab;
123
124 tab = rtnl_msg_handlers[protocol];
Thomas Graf51057f22007-03-22 21:41:06 -0700125 if (tab == NULL || tab[msgindex].dumpit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700126 tab = rtnl_msg_handlers[PF_UNSPEC];
127
Thomas Graf51057f22007-03-22 21:41:06 -0700128 return tab ? tab[msgindex].dumpit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700129}
130
131/**
132 * __rtnl_register - Register a rtnetlink message type
133 * @protocol: Protocol family or PF_UNSPEC
134 * @msgtype: rtnetlink message type
135 * @doit: Function pointer called for each request message
136 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
137 *
138 * Registers the specified function pointers (at least one of them has
139 * to be non-NULL) to be called whenever a request message for the
140 * specified protocol family and message type is received.
141 *
142 * The special protocol family PF_UNSPEC may be used to define fallback
143 * function pointers for the case when no entry for the specific protocol
144 * family exists.
145 *
146 * Returns 0 on success or a negative error code.
147 */
148int __rtnl_register(int protocol, int msgtype,
149 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
150{
151 struct rtnl_link *tab;
152 int msgindex;
153
154 BUG_ON(protocol < 0 || protocol >= NPROTO);
155 msgindex = rtm_msgindex(msgtype);
156
157 tab = rtnl_msg_handlers[protocol];
158 if (tab == NULL) {
159 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
160 if (tab == NULL)
161 return -ENOBUFS;
162
163 rtnl_msg_handlers[protocol] = tab;
164 }
165
166 if (doit)
167 tab[msgindex].doit = doit;
168
169 if (dumpit)
170 tab[msgindex].dumpit = dumpit;
171
172 return 0;
173}
Thomas Grafe2849862007-03-22 11:48:11 -0700174EXPORT_SYMBOL_GPL(__rtnl_register);
175
176/**
177 * rtnl_register - Register a rtnetlink message type
178 *
179 * Identical to __rtnl_register() but panics on failure. This is useful
180 * as failure of this function is very unlikely, it can only happen due
181 * to lack of memory when allocating the chain to store all message
182 * handlers for a protocol. Meant for use in init functions where lack
183 * of memory implies no sense in continueing.
184 */
185void rtnl_register(int protocol, int msgtype,
186 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
187{
188 if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0)
189 panic("Unable to register rtnetlink message handler, "
190 "protocol = %d, message type = %d\n",
191 protocol, msgtype);
192}
Thomas Grafe2849862007-03-22 11:48:11 -0700193EXPORT_SYMBOL_GPL(rtnl_register);
194
195/**
196 * rtnl_unregister - Unregister a rtnetlink message type
197 * @protocol: Protocol family or PF_UNSPEC
198 * @msgtype: rtnetlink message type
199 *
200 * Returns 0 on success or a negative error code.
201 */
202int rtnl_unregister(int protocol, int msgtype)
203{
204 int msgindex;
205
206 BUG_ON(protocol < 0 || protocol >= NPROTO);
207 msgindex = rtm_msgindex(msgtype);
208
209 if (rtnl_msg_handlers[protocol] == NULL)
210 return -ENOENT;
211
212 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
213 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
214
215 return 0;
216}
Thomas Grafe2849862007-03-22 11:48:11 -0700217EXPORT_SYMBOL_GPL(rtnl_unregister);
218
219/**
220 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
221 * @protocol : Protocol family or PF_UNSPEC
222 *
223 * Identical to calling rtnl_unregster() for all registered message types
224 * of a certain protocol family.
225 */
226void rtnl_unregister_all(int protocol)
227{
228 BUG_ON(protocol < 0 || protocol >= NPROTO);
229
230 kfree(rtnl_msg_handlers[protocol]);
231 rtnl_msg_handlers[protocol] = NULL;
232}
Thomas Grafe2849862007-03-22 11:48:11 -0700233EXPORT_SYMBOL_GPL(rtnl_unregister_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Patrick McHardy38f7b872007-06-13 12:03:51 -0700235static LIST_HEAD(link_ops);
236
237/**
238 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
239 * @ops: struct rtnl_link_ops * to register
240 *
241 * The caller must hold the rtnl_mutex. This function should be used
242 * by drivers that create devices during module initialization. It
243 * must be called before registering the devices.
244 *
245 * Returns 0 on success or a negative error code.
246 */
247int __rtnl_link_register(struct rtnl_link_ops *ops)
248{
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700249 if (!ops->dellink)
Eric Dumazet23289a32009-10-27 07:06:36 +0000250 ops->dellink = unregister_netdevice_queue;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700251
Patrick McHardy38f7b872007-06-13 12:03:51 -0700252 list_add_tail(&ops->list, &link_ops);
253 return 0;
254}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700255EXPORT_SYMBOL_GPL(__rtnl_link_register);
256
257/**
258 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
259 * @ops: struct rtnl_link_ops * to register
260 *
261 * Returns 0 on success or a negative error code.
262 */
263int rtnl_link_register(struct rtnl_link_ops *ops)
264{
265 int err;
266
267 rtnl_lock();
268 err = __rtnl_link_register(ops);
269 rtnl_unlock();
270 return err;
271}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700272EXPORT_SYMBOL_GPL(rtnl_link_register);
273
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700274static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
275{
276 struct net_device *dev;
Eric Dumazet23289a32009-10-27 07:06:36 +0000277 LIST_HEAD(list_kill);
278
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700279 for_each_netdev(net, dev) {
Eric Dumazet23289a32009-10-27 07:06:36 +0000280 if (dev->rtnl_link_ops == ops)
281 ops->dellink(dev, &list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700282 }
Eric Dumazet23289a32009-10-27 07:06:36 +0000283 unregister_netdevice_many(&list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700284}
285
286void rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
287{
288 rtnl_lock();
289 __rtnl_kill_links(net, ops);
290 rtnl_unlock();
291}
292EXPORT_SYMBOL_GPL(rtnl_kill_links);
293
Patrick McHardy38f7b872007-06-13 12:03:51 -0700294/**
295 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
296 * @ops: struct rtnl_link_ops * to unregister
297 *
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700298 * The caller must hold the rtnl_mutex.
Patrick McHardy38f7b872007-06-13 12:03:51 -0700299 */
300void __rtnl_link_unregister(struct rtnl_link_ops *ops)
301{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700302 struct net *net;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700303
Eric W. Biederman881d9662007-09-17 11:56:21 -0700304 for_each_net(net) {
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700305 __rtnl_kill_links(net, ops);
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700306 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700307 list_del(&ops->list);
308}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700309EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
310
311/**
312 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
313 * @ops: struct rtnl_link_ops * to unregister
314 */
315void rtnl_link_unregister(struct rtnl_link_ops *ops)
316{
317 rtnl_lock();
318 __rtnl_link_unregister(ops);
319 rtnl_unlock();
320}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700321EXPORT_SYMBOL_GPL(rtnl_link_unregister);
322
323static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
324{
325 const struct rtnl_link_ops *ops;
326
327 list_for_each_entry(ops, &link_ops, list) {
328 if (!strcmp(ops->kind, kind))
329 return ops;
330 }
331 return NULL;
332}
333
334static size_t rtnl_link_get_size(const struct net_device *dev)
335{
336 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
337 size_t size;
338
339 if (!ops)
340 return 0;
341
342 size = nlmsg_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
343 nlmsg_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
344
345 if (ops->get_size)
346 /* IFLA_INFO_DATA + nested data */
347 size += nlmsg_total_size(sizeof(struct nlattr)) +
348 ops->get_size(dev);
349
350 if (ops->get_xstats_size)
351 size += ops->get_xstats_size(dev); /* IFLA_INFO_XSTATS */
352
353 return size;
354}
355
356static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
357{
358 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
359 struct nlattr *linkinfo, *data;
360 int err = -EMSGSIZE;
361
362 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
363 if (linkinfo == NULL)
364 goto out;
365
366 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
367 goto err_cancel_link;
368 if (ops->fill_xstats) {
369 err = ops->fill_xstats(skb, dev);
370 if (err < 0)
371 goto err_cancel_link;
372 }
373 if (ops->fill_info) {
374 data = nla_nest_start(skb, IFLA_INFO_DATA);
375 if (data == NULL)
376 goto err_cancel_link;
377 err = ops->fill_info(skb, dev);
378 if (err < 0)
379 goto err_cancel_data;
380 nla_nest_end(skb, data);
381 }
382
383 nla_nest_end(skb, linkinfo);
384 return 0;
385
386err_cancel_data:
387 nla_nest_cancel(skb, data);
388err_cancel_link:
389 nla_nest_cancel(skb, linkinfo);
390out:
391 return err;
392}
393
Thomas Grafdb46edc2005-05-03 14:29:39 -0700394static const int rtm_min[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Thomas Graff90a0a72005-05-03 14:29:00 -0700396 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
397 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
398 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
Thomas Graf14c0b972006-08-04 03:38:38 -0700399 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700400 [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
401 [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
402 [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
403 [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700404 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
405 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406};
407
Thomas Grafdb46edc2005-05-03 14:29:39 -0700408static const int rta_max[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Thomas Graff90a0a72005-05-03 14:29:00 -0700410 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
411 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
412 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
Thomas Graf14c0b972006-08-04 03:38:38 -0700413 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
Thomas Graff90a0a72005-05-03 14:29:00 -0700414 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
415 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
416 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
417 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418};
419
420void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
421{
422 struct rtattr *rta;
423 int size = RTA_LENGTH(attrlen);
424
Eric Dumazete0d087a2009-11-07 01:26:17 -0800425 rta = (struct rtattr *)skb_put(skb, RTA_ALIGN(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 rta->rta_type = attrtype;
427 rta->rta_len = size;
428 memcpy(RTA_DATA(rta), data, attrlen);
Patrick McHardyb3563c42005-06-28 12:54:43 -0700429 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800431EXPORT_SYMBOL(__rta_fill);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800433int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned group, int echo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800435 struct sock *rtnl = net->rtnl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 int err = 0;
437
Patrick McHardyac6d4392005-08-14 19:29:52 -0700438 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (echo)
440 atomic_inc(&skb->users);
441 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
442 if (echo)
443 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
444 return err;
445}
446
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800447int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
Thomas Graf2942e902006-08-15 00:30:25 -0700448{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800449 struct sock *rtnl = net->rtnl;
450
Thomas Graf2942e902006-08-15 00:30:25 -0700451 return nlmsg_unicast(rtnl, skb, pid);
452}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800453EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf2942e902006-08-15 00:30:25 -0700454
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800455void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
456 struct nlmsghdr *nlh, gfp_t flags)
Thomas Graf97676b62006-08-15 00:31:41 -0700457{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800458 struct sock *rtnl = net->rtnl;
Thomas Graf97676b62006-08-15 00:31:41 -0700459 int report = 0;
460
461 if (nlh)
462 report = nlmsg_report(nlh);
463
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800464 nlmsg_notify(rtnl, skb, pid, group, report, flags);
Thomas Graf97676b62006-08-15 00:31:41 -0700465}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800466EXPORT_SYMBOL(rtnl_notify);
Thomas Graf97676b62006-08-15 00:31:41 -0700467
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800468void rtnl_set_sk_err(struct net *net, u32 group, int error)
Thomas Graf97676b62006-08-15 00:31:41 -0700469{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800470 struct sock *rtnl = net->rtnl;
471
Thomas Graf97676b62006-08-15 00:31:41 -0700472 netlink_set_err(rtnl, 0, group, error);
473}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800474EXPORT_SYMBOL(rtnl_set_sk_err);
Thomas Graf97676b62006-08-15 00:31:41 -0700475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
477{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700478 struct nlattr *mx;
479 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Thomas Graf2d7202b2006-08-22 00:01:27 -0700481 mx = nla_nest_start(skb, RTA_METRICS);
482 if (mx == NULL)
483 return -ENOBUFS;
484
485 for (i = 0; i < RTAX_MAX; i++) {
486 if (metrics[i]) {
487 valid++;
488 NLA_PUT_U32(skb, i+1, metrics[i]);
489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
David S. Millera57d27f2006-08-22 22:20:14 -0700492 if (!valid) {
493 nla_nest_cancel(skb, mx);
494 return 0;
495 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700496
497 return nla_nest_end(skb, mx);
498
499nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700500 nla_nest_cancel(skb, mx);
501 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800503EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Thomas Grafe3703b32006-11-27 09:27:07 -0800505int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
506 u32 ts, u32 tsage, long expires, u32 error)
507{
508 struct rta_cacheinfo ci = {
509 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
510 .rta_used = dst->__use,
511 .rta_clntref = atomic_read(&(dst->__refcnt)),
512 .rta_error = error,
513 .rta_id = id,
514 .rta_ts = ts,
515 .rta_tsage = tsage,
516 };
517
518 if (expires)
519 ci.rta_expires = jiffies_to_clock_t(expires);
520
521 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
522}
Thomas Grafe3703b32006-11-27 09:27:07 -0800523EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
David S. Miller93b2d4a2008-02-17 18:35:07 -0800525static void set_operstate(struct net_device *dev, unsigned char transition)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800526{
527 unsigned char operstate = dev->operstate;
528
Eric Dumazete0d087a2009-11-07 01:26:17 -0800529 switch (transition) {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800530 case IF_OPER_UP:
531 if ((operstate == IF_OPER_DORMANT ||
532 operstate == IF_OPER_UNKNOWN) &&
533 !netif_dormant(dev))
534 operstate = IF_OPER_UP;
535 break;
536
537 case IF_OPER_DORMANT:
538 if (operstate == IF_OPER_UP ||
539 operstate == IF_OPER_UNKNOWN)
540 operstate = IF_OPER_DORMANT;
541 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700542 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800543
544 if (dev->operstate != operstate) {
545 write_lock_bh(&dev_base_lock);
546 dev->operstate = operstate;
547 write_unlock_bh(&dev_base_lock);
David S. Miller93b2d4a2008-02-17 18:35:07 -0800548 netdev_state_change(dev);
549 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800550}
551
Thomas Grafb60c5112006-08-04 23:05:34 -0700552static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -0800553 const struct net_device_stats *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Thomas Grafb60c5112006-08-04 23:05:34 -0700555 a->rx_packets = b->rx_packets;
556 a->tx_packets = b->tx_packets;
557 a->rx_bytes = b->rx_bytes;
558 a->tx_bytes = b->tx_bytes;
559 a->rx_errors = b->rx_errors;
560 a->tx_errors = b->tx_errors;
561 a->rx_dropped = b->rx_dropped;
562 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Thomas Grafb60c5112006-08-04 23:05:34 -0700564 a->multicast = b->multicast;
565 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Thomas Grafb60c5112006-08-04 23:05:34 -0700567 a->rx_length_errors = b->rx_length_errors;
568 a->rx_over_errors = b->rx_over_errors;
569 a->rx_crc_errors = b->rx_crc_errors;
570 a->rx_frame_errors = b->rx_frame_errors;
571 a->rx_fifo_errors = b->rx_fifo_errors;
572 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Thomas Grafb60c5112006-08-04 23:05:34 -0700574 a->tx_aborted_errors = b->tx_aborted_errors;
575 a->tx_carrier_errors = b->tx_carrier_errors;
576 a->tx_fifo_errors = b->tx_fifo_errors;
577 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
578 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Thomas Grafb60c5112006-08-04 23:05:34 -0700580 a->rx_compressed = b->rx_compressed;
581 a->tx_compressed = b->tx_compressed;
582};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000584static inline int rtnl_vfinfo_size(const struct net_device *dev)
585{
586 if (dev->dev.parent && dev_is_pci(dev->dev.parent))
587 return dev_num_vf(dev->dev.parent) *
588 sizeof(struct ifla_vf_info);
589 else
590 return 0;
591}
592
Patrick McHardy38f7b872007-06-13 12:03:51 -0700593static inline size_t if_nlmsg_size(const struct net_device *dev)
Thomas Graf339bf982006-11-10 14:10:15 -0800594{
595 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
596 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700597 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
Thomas Graf339bf982006-11-10 14:10:15 -0800598 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
599 + nla_total_size(sizeof(struct rtnl_link_ifmap))
600 + nla_total_size(sizeof(struct rtnl_link_stats))
601 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
602 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
603 + nla_total_size(4) /* IFLA_TXQLEN */
604 + nla_total_size(4) /* IFLA_WEIGHT */
605 + nla_total_size(4) /* IFLA_MTU */
606 + nla_total_size(4) /* IFLA_LINK */
607 + nla_total_size(4) /* IFLA_MASTER */
608 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700609 + nla_total_size(1) /* IFLA_LINKMODE */
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000610 + nla_total_size(4) /* IFLA_NUM_VF */
611 + nla_total_size(rtnl_vfinfo_size(dev)) /* IFLA_VFINFO */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700612 + rtnl_link_get_size(dev); /* IFLA_LINKINFO */
Thomas Graf339bf982006-11-10 14:10:15 -0800613}
614
Thomas Grafb60c5112006-08-04 23:05:34 -0700615static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -0700616 int type, u32 pid, u32 seq, u32 change,
617 unsigned int flags)
Thomas Grafb60c5112006-08-04 23:05:34 -0700618{
619 struct ifinfomsg *ifm;
620 struct nlmsghdr *nlh;
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -0800621 const struct net_device_stats *stats;
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700622 struct nlattr *attr;
Thomas Grafb60c5112006-08-04 23:05:34 -0700623
624 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
625 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800626 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700627
628 ifm = nlmsg_data(nlh);
629 ifm->ifi_family = AF_UNSPEC;
630 ifm->__ifi_pad = 0;
631 ifm->ifi_type = dev->type;
632 ifm->ifi_index = dev->ifindex;
633 ifm->ifi_flags = dev_get_flags(dev);
634 ifm->ifi_change = change;
635
636 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
637 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
Thomas Grafb60c5112006-08-04 23:05:34 -0700638 NLA_PUT_U8(skb, IFLA_OPERSTATE,
639 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
640 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
641 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
642
643 if (dev->ifindex != dev->iflink)
644 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
645
646 if (dev->master)
647 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
648
Patrick McHardyaf356af2009-09-04 06:41:18 +0000649 if (dev->qdisc)
650 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc->ops->id);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800651
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700652 if (dev->ifalias)
653 NLA_PUT_STRING(skb, IFLA_IFALIAS, dev->ifalias);
654
Stefan Rompfb00055a2006-03-20 17:09:11 -0800655 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 struct rtnl_link_ifmap map = {
657 .mem_start = dev->mem_start,
658 .mem_end = dev->mem_end,
659 .base_addr = dev->base_addr,
660 .irq = dev->irq,
661 .dma = dev->dma,
662 .port = dev->if_port,
663 };
Thomas Grafb60c5112006-08-04 23:05:34 -0700664 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666
667 if (dev->addr_len) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700668 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
669 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
671
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700672 attr = nla_reserve(skb, IFLA_STATS,
673 sizeof(struct rtnl_link_stats));
674 if (attr == NULL)
675 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -0800677 stats = dev_get_stats(dev);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700678 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000680 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent) {
681 int i;
682 struct ifla_vf_info ivi;
683
684 NLA_PUT_U32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent));
685 for (i = 0; i < dev_num_vf(dev->dev.parent); i++) {
686 if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi))
687 break;
688 NLA_PUT(skb, IFLA_VFINFO, sizeof(ivi), &ivi);
689 }
690 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700691 if (dev->rtnl_link_ops) {
692 if (rtnl_link_fill(skb, dev) < 0)
693 goto nla_put_failure;
694 }
695
Thomas Grafb60c5112006-08-04 23:05:34 -0700696 return nlmsg_end(skb, nlh);
697
698nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800699 nlmsg_cancel(skb, nlh);
700 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
Thomas Grafb60c5112006-08-04 23:05:34 -0700703static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900705 struct net *net = sock_net(skb->sk);
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700706 int h, s_h;
707 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 struct net_device *dev;
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700709 struct hlist_head *head;
710 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700712 s_h = cb->args[0];
713 s_idx = cb->args[1];
714
715 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
716 idx = 0;
717 head = &net->dev_index_head[h];
718 hlist_for_each_entry(dev, node, head, index_hlist) {
719 if (idx < s_idx)
720 goto cont;
721 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
722 NETLINK_CB(cb->skb).pid,
723 cb->nlh->nlmsg_seq, 0,
724 NLM_F_MULTI) <= 0)
725 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700726cont:
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700727 idx++;
728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700730out:
731 cb->args[1] = idx;
732 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 return skb->len;
735}
736
Pavel Emelianove7199282007-08-08 22:16:38 -0700737const struct nla_policy ifla_policy[IFLA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -0700738 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
Patrick McHardy38f7b872007-06-13 12:03:51 -0700739 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
740 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
Thomas Graf5176f912006-08-26 20:13:18 -0700741 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -0700742 [IFLA_MTU] = { .type = NLA_U32 },
Thomas Graf76e87302008-02-19 16:12:08 -0800743 [IFLA_LINK] = { .type = NLA_U32 },
Thomas Grafda5e0492006-08-10 21:17:37 -0700744 [IFLA_TXQLEN] = { .type = NLA_U32 },
745 [IFLA_WEIGHT] = { .type = NLA_U32 },
746 [IFLA_OPERSTATE] = { .type = NLA_U8 },
747 [IFLA_LINKMODE] = { .type = NLA_U8 },
Thomas Graf76e87302008-02-19 16:12:08 -0800748 [IFLA_LINKINFO] = { .type = NLA_NESTED },
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200749 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700750 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000751 [IFLA_VF_MAC] = { .type = NLA_BINARY,
752 .len = sizeof(struct ifla_vf_mac) },
753 [IFLA_VF_VLAN] = { .type = NLA_BINARY,
754 .len = sizeof(struct ifla_vf_vlan) },
755 [IFLA_VF_TX_RATE] = { .type = NLA_BINARY,
756 .len = sizeof(struct ifla_vf_tx_rate) },
Thomas Grafda5e0492006-08-10 21:17:37 -0700757};
Eric Dumazete0d087a2009-11-07 01:26:17 -0800758EXPORT_SYMBOL(ifla_policy);
Thomas Grafda5e0492006-08-10 21:17:37 -0700759
Patrick McHardy38f7b872007-06-13 12:03:51 -0700760static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
761 [IFLA_INFO_KIND] = { .type = NLA_STRING },
762 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
763};
764
Eric W. Biederman81adee42009-11-08 00:53:51 -0800765struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
766{
767 struct net *net;
768 /* Examine the link attributes and figure out which
769 * network namespace we are talking about.
770 */
771 if (tb[IFLA_NET_NS_PID])
772 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
773 else
774 net = get_net(src_net);
775 return net;
776}
777EXPORT_SYMBOL(rtnl_link_get_net);
778
Thomas Graf1840bb12008-02-23 19:54:36 -0800779static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
780{
781 if (dev) {
782 if (tb[IFLA_ADDRESS] &&
783 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
784 return -EINVAL;
785
786 if (tb[IFLA_BROADCAST] &&
787 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
788 return -EINVAL;
789 }
790
791 return 0;
792}
793
Patrick McHardy0157f602007-06-13 12:03:36 -0700794static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
Patrick McHardy38f7b872007-06-13 12:03:51 -0700795 struct nlattr **tb, char *ifname, int modified)
Patrick McHardy0157f602007-06-13 12:03:36 -0700796{
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800797 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy38f7b872007-06-13 12:03:51 -0700798 int send_addr_notify = 0;
Patrick McHardy0157f602007-06-13 12:03:36 -0700799 int err;
800
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200801 if (tb[IFLA_NET_NS_PID]) {
Eric W. Biederman81adee42009-11-08 00:53:51 -0800802 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200803 if (IS_ERR(net)) {
804 err = PTR_ERR(net);
805 goto errout;
806 }
807 err = dev_change_net_namespace(dev, net, ifname);
808 put_net(net);
809 if (err)
810 goto errout;
811 modified = 1;
812 }
813
Patrick McHardy0157f602007-06-13 12:03:36 -0700814 if (tb[IFLA_MAP]) {
815 struct rtnl_link_ifmap *u_map;
816 struct ifmap k_map;
817
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800818 if (!ops->ndo_set_config) {
Patrick McHardy0157f602007-06-13 12:03:36 -0700819 err = -EOPNOTSUPP;
820 goto errout;
821 }
822
823 if (!netif_device_present(dev)) {
824 err = -ENODEV;
825 goto errout;
826 }
827
828 u_map = nla_data(tb[IFLA_MAP]);
829 k_map.mem_start = (unsigned long) u_map->mem_start;
830 k_map.mem_end = (unsigned long) u_map->mem_end;
831 k_map.base_addr = (unsigned short) u_map->base_addr;
832 k_map.irq = (unsigned char) u_map->irq;
833 k_map.dma = (unsigned char) u_map->dma;
834 k_map.port = (unsigned char) u_map->port;
835
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800836 err = ops->ndo_set_config(dev, &k_map);
Patrick McHardy0157f602007-06-13 12:03:36 -0700837 if (err < 0)
838 goto errout;
839
840 modified = 1;
841 }
842
843 if (tb[IFLA_ADDRESS]) {
844 struct sockaddr *sa;
845 int len;
846
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800847 if (!ops->ndo_set_mac_address) {
Patrick McHardy0157f602007-06-13 12:03:36 -0700848 err = -EOPNOTSUPP;
849 goto errout;
850 }
851
852 if (!netif_device_present(dev)) {
853 err = -ENODEV;
854 goto errout;
855 }
856
857 len = sizeof(sa_family_t) + dev->addr_len;
858 sa = kmalloc(len, GFP_KERNEL);
859 if (!sa) {
860 err = -ENOMEM;
861 goto errout;
862 }
863 sa->sa_family = dev->type;
864 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
865 dev->addr_len);
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800866 err = ops->ndo_set_mac_address(dev, sa);
Patrick McHardy0157f602007-06-13 12:03:36 -0700867 kfree(sa);
868 if (err)
869 goto errout;
870 send_addr_notify = 1;
871 modified = 1;
872 }
873
874 if (tb[IFLA_MTU]) {
875 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
876 if (err < 0)
877 goto errout;
878 modified = 1;
879 }
880
881 /*
882 * Interface selected by interface index but interface
883 * name provided implies that a name change has been
884 * requested.
885 */
886 if (ifm->ifi_index > 0 && ifname[0]) {
887 err = dev_change_name(dev, ifname);
888 if (err < 0)
889 goto errout;
890 modified = 1;
891 }
892
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700893 if (tb[IFLA_IFALIAS]) {
894 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
895 nla_len(tb[IFLA_IFALIAS]));
896 if (err < 0)
897 goto errout;
898 modified = 1;
899 }
900
Patrick McHardy0157f602007-06-13 12:03:36 -0700901 if (tb[IFLA_BROADCAST]) {
902 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
903 send_addr_notify = 1;
904 }
905
906 if (ifm->ifi_flags || ifm->ifi_change) {
907 unsigned int flags = ifm->ifi_flags;
908
909 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
910 if (ifm->ifi_change)
911 flags = (flags & ifm->ifi_change) |
912 (dev->flags & ~ifm->ifi_change);
Johannes Berg5f9021c2008-11-16 23:20:31 -0800913 err = dev_change_flags(dev, flags);
914 if (err < 0)
915 goto errout;
Patrick McHardy0157f602007-06-13 12:03:36 -0700916 }
917
David S. Miller93b2d4a2008-02-17 18:35:07 -0800918 if (tb[IFLA_TXQLEN])
919 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
Patrick McHardy0157f602007-06-13 12:03:36 -0700920
Patrick McHardy0157f602007-06-13 12:03:36 -0700921 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -0800922 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Patrick McHardy0157f602007-06-13 12:03:36 -0700923
924 if (tb[IFLA_LINKMODE]) {
David S. Miller93b2d4a2008-02-17 18:35:07 -0800925 write_lock_bh(&dev_base_lock);
926 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
927 write_unlock_bh(&dev_base_lock);
Patrick McHardy0157f602007-06-13 12:03:36 -0700928 }
929
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000930 if (tb[IFLA_VF_MAC]) {
931 struct ifla_vf_mac *ivm;
932 ivm = nla_data(tb[IFLA_VF_MAC]);
Williams, Mitch A4edb2462010-02-24 21:59:56 +0000933 err = -EOPNOTSUPP;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000934 if (ops->ndo_set_vf_mac)
935 err = ops->ndo_set_vf_mac(dev, ivm->vf, ivm->mac);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000936 if (err < 0)
937 goto errout;
938 modified = 1;
939 }
940
941 if (tb[IFLA_VF_VLAN]) {
942 struct ifla_vf_vlan *ivv;
943 ivv = nla_data(tb[IFLA_VF_VLAN]);
Williams, Mitch A4edb2462010-02-24 21:59:56 +0000944 err = -EOPNOTSUPP;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000945 if (ops->ndo_set_vf_vlan)
946 err = ops->ndo_set_vf_vlan(dev, ivv->vf,
Williams, Mitch A4edb2462010-02-24 21:59:56 +0000947 ivv->vlan,
948 ivv->qos);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000949 if (err < 0)
950 goto errout;
951 modified = 1;
952 }
953 err = 0;
954
955 if (tb[IFLA_VF_TX_RATE]) {
956 struct ifla_vf_tx_rate *ivt;
957 ivt = nla_data(tb[IFLA_VF_TX_RATE]);
Williams, Mitch A4edb2462010-02-24 21:59:56 +0000958 err = -EOPNOTSUPP;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000959 if (ops->ndo_set_vf_tx_rate)
960 err = ops->ndo_set_vf_tx_rate(dev, ivt->vf, ivt->rate);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000961 if (err < 0)
962 goto errout;
963 modified = 1;
964 }
Patrick McHardy0157f602007-06-13 12:03:36 -0700965 err = 0;
966
967errout:
968 if (err < 0 && modified && net_ratelimit())
969 printk(KERN_WARNING "A link change request failed with "
970 "some changes comitted already. Interface %s may "
971 "have been left with an inconsistent configuration, "
972 "please check.\n", dev->name);
973
974 if (send_addr_notify)
975 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
976 return err;
977}
978
Thomas Grafda5e0492006-08-10 21:17:37 -0700979static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900981 struct net *net = sock_net(skb->sk);
Thomas Grafda5e0492006-08-10 21:17:37 -0700982 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -0700984 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -0700985 struct nlattr *tb[IFLA_MAX+1];
986 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Thomas Grafda5e0492006-08-10 21:17:37 -0700988 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
989 if (err < 0)
990 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Thomas Graf5176f912006-08-26 20:13:18 -0700992 if (tb[IFLA_IFNAME])
993 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -0700994 else
995 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -0700998 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -0700999 if (ifm->ifi_index > 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001000 dev = __dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -07001001 else if (tb[IFLA_IFNAME])
Eric Dumazeta3d12892009-10-21 10:59:31 +00001002 dev = __dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -07001003 else
1004 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Thomas Grafda5e0492006-08-10 21:17:37 -07001006 if (dev == NULL) {
1007 err = -ENODEV;
1008 goto errout;
1009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Eric Dumazete0d087a2009-11-07 01:26:17 -08001011 err = validate_linkmsg(dev, tb);
1012 if (err < 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001013 goto errout;
Thomas Grafda5e0492006-08-10 21:17:37 -07001014
Patrick McHardy38f7b872007-06-13 12:03:51 -07001015 err = do_setlink(dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -07001016errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return err;
1018}
1019
Patrick McHardy38f7b872007-06-13 12:03:51 -07001020static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1021{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001022 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001023 const struct rtnl_link_ops *ops;
1024 struct net_device *dev;
1025 struct ifinfomsg *ifm;
1026 char ifname[IFNAMSIZ];
1027 struct nlattr *tb[IFLA_MAX+1];
1028 int err;
1029
1030 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1031 if (err < 0)
1032 return err;
1033
1034 if (tb[IFLA_IFNAME])
1035 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1036
1037 ifm = nlmsg_data(nlh);
1038 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001039 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001040 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001041 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001042 else
1043 return -EINVAL;
1044
1045 if (!dev)
1046 return -ENODEV;
1047
1048 ops = dev->rtnl_link_ops;
1049 if (!ops)
1050 return -EOPNOTSUPP;
1051
Eric Dumazet23289a32009-10-27 07:06:36 +00001052 ops->dellink(dev, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001053 return 0;
1054}
1055
Eric W. Biederman81adee42009-11-08 00:53:51 -08001056struct net_device *rtnl_create_link(struct net *src_net, struct net *net,
1057 char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[])
Pavel Emelianove7199282007-08-08 22:16:38 -07001058{
1059 int err;
1060 struct net_device *dev;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001061 unsigned int num_queues = 1;
1062 unsigned int real_num_queues = 1;
Pavel Emelianove7199282007-08-08 22:16:38 -07001063
Eric Dumazet2e59af32009-09-02 18:03:00 -07001064 if (ops->get_tx_queues) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001065 err = ops->get_tx_queues(src_net, tb, &num_queues,
Eric Dumazete0d087a2009-11-07 01:26:17 -08001066 &real_num_queues);
Eric Dumazet2e59af32009-09-02 18:03:00 -07001067 if (err)
1068 goto err;
1069 }
Pavel Emelianove7199282007-08-08 22:16:38 -07001070 err = -ENOMEM;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001071 dev = alloc_netdev_mq(ops->priv_size, ifname, ops->setup, num_queues);
Pavel Emelianove7199282007-08-08 22:16:38 -07001072 if (!dev)
1073 goto err;
1074
Eric W. Biederman81adee42009-11-08 00:53:51 -08001075 dev_net_set(dev, net);
1076 dev->rtnl_link_ops = ops;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001077 dev->real_num_tx_queues = real_num_queues;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001078
Pavel Emelianove7199282007-08-08 22:16:38 -07001079 if (strchr(dev->name, '%')) {
1080 err = dev_alloc_name(dev, dev->name);
1081 if (err < 0)
1082 goto err_free;
1083 }
1084
Pavel Emelianove7199282007-08-08 22:16:38 -07001085 if (tb[IFLA_MTU])
1086 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
1087 if (tb[IFLA_ADDRESS])
1088 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1089 nla_len(tb[IFLA_ADDRESS]));
1090 if (tb[IFLA_BROADCAST])
1091 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1092 nla_len(tb[IFLA_BROADCAST]));
1093 if (tb[IFLA_TXQLEN])
1094 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1095 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001096 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001097 if (tb[IFLA_LINKMODE])
1098 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1099
1100 return dev;
1101
1102err_free:
1103 free_netdev(dev);
1104err:
1105 return ERR_PTR(err);
1106}
Eric Dumazete0d087a2009-11-07 01:26:17 -08001107EXPORT_SYMBOL(rtnl_create_link);
Pavel Emelianove7199282007-08-08 22:16:38 -07001108
Patrick McHardy38f7b872007-06-13 12:03:51 -07001109static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1110{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001111 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001112 const struct rtnl_link_ops *ops;
1113 struct net_device *dev;
1114 struct ifinfomsg *ifm;
1115 char kind[MODULE_NAME_LEN];
1116 char ifname[IFNAMSIZ];
1117 struct nlattr *tb[IFLA_MAX+1];
1118 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1119 int err;
1120
Johannes Berg95a5afc2008-10-16 15:24:51 -07001121#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001122replay:
Thomas Graf8072f082007-07-31 14:13:50 -07001123#endif
Patrick McHardy38f7b872007-06-13 12:03:51 -07001124 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1125 if (err < 0)
1126 return err;
1127
1128 if (tb[IFLA_IFNAME])
1129 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1130 else
1131 ifname[0] = '\0';
1132
1133 ifm = nlmsg_data(nlh);
1134 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001135 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001136 else if (ifname[0])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001137 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001138 else
1139 dev = NULL;
1140
Eric Dumazete0d087a2009-11-07 01:26:17 -08001141 err = validate_linkmsg(dev, tb);
1142 if (err < 0)
Thomas Graf1840bb12008-02-23 19:54:36 -08001143 return err;
1144
Patrick McHardy38f7b872007-06-13 12:03:51 -07001145 if (tb[IFLA_LINKINFO]) {
1146 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1147 tb[IFLA_LINKINFO], ifla_info_policy);
1148 if (err < 0)
1149 return err;
1150 } else
1151 memset(linkinfo, 0, sizeof(linkinfo));
1152
1153 if (linkinfo[IFLA_INFO_KIND]) {
1154 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1155 ops = rtnl_link_ops_get(kind);
1156 } else {
1157 kind[0] = '\0';
1158 ops = NULL;
1159 }
1160
1161 if (1) {
1162 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001163 struct net *dest_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001164
1165 if (ops) {
1166 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1167 err = nla_parse_nested(attr, ops->maxtype,
1168 linkinfo[IFLA_INFO_DATA],
1169 ops->policy);
1170 if (err < 0)
1171 return err;
1172 data = attr;
1173 }
1174 if (ops->validate) {
1175 err = ops->validate(tb, data);
1176 if (err < 0)
1177 return err;
1178 }
1179 }
1180
1181 if (dev) {
1182 int modified = 0;
1183
1184 if (nlh->nlmsg_flags & NLM_F_EXCL)
1185 return -EEXIST;
1186 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1187 return -EOPNOTSUPP;
1188
1189 if (linkinfo[IFLA_INFO_DATA]) {
1190 if (!ops || ops != dev->rtnl_link_ops ||
1191 !ops->changelink)
1192 return -EOPNOTSUPP;
1193
1194 err = ops->changelink(dev, tb, data);
1195 if (err < 0)
1196 return err;
1197 modified = 1;
1198 }
1199
1200 return do_setlink(dev, ifm, tb, ifname, modified);
1201 }
1202
1203 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
1204 return -ENODEV;
1205
1206 if (ifm->ifi_index || ifm->ifi_flags || ifm->ifi_change)
1207 return -EOPNOTSUPP;
Patrick McHardy0e068772007-07-11 19:42:31 -07001208 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
Patrick McHardy38f7b872007-06-13 12:03:51 -07001209 return -EOPNOTSUPP;
1210
1211 if (!ops) {
Johannes Berg95a5afc2008-10-16 15:24:51 -07001212#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001213 if (kind[0]) {
1214 __rtnl_unlock();
1215 request_module("rtnl-link-%s", kind);
1216 rtnl_lock();
1217 ops = rtnl_link_ops_get(kind);
1218 if (ops)
1219 goto replay;
1220 }
1221#endif
1222 return -EOPNOTSUPP;
1223 }
1224
1225 if (!ifname[0])
1226 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001227
Eric W. Biederman81adee42009-11-08 00:53:51 -08001228 dest_net = rtnl_link_get_net(net, tb);
1229 dev = rtnl_create_link(net, dest_net, ifname, ops, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001230
Pavel Emelianove7199282007-08-08 22:16:38 -07001231 if (IS_ERR(dev))
1232 err = PTR_ERR(dev);
1233 else if (ops->newlink)
Eric W. Biederman81adee42009-11-08 00:53:51 -08001234 err = ops->newlink(net, dev, tb, data);
Patrick McHardy2d85cba2007-07-11 19:42:13 -07001235 else
1236 err = register_netdevice(dev);
Pavel Emelianove7199282007-08-08 22:16:38 -07001237 if (err < 0 && !IS_ERR(dev))
Patrick McHardy38f7b872007-06-13 12:03:51 -07001238 free_netdev(dev);
Eric W. Biederman81adee42009-11-08 00:53:51 -08001239
1240 put_net(dest_net);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001241 return err;
1242 }
1243}
1244
Thomas Grafb60c5112006-08-04 23:05:34 -07001245static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001246{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001247 struct net *net = sock_net(skb->sk);
Thomas Grafb60c5112006-08-04 23:05:34 -07001248 struct ifinfomsg *ifm;
Eric Dumazeta3d12892009-10-21 10:59:31 +00001249 char ifname[IFNAMSIZ];
Thomas Grafb60c5112006-08-04 23:05:34 -07001250 struct nlattr *tb[IFLA_MAX+1];
1251 struct net_device *dev = NULL;
1252 struct sk_buff *nskb;
Thomas Graf339bf982006-11-10 14:10:15 -08001253 int err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001254
Thomas Grafb60c5112006-08-04 23:05:34 -07001255 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1256 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07001257 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07001258
Eric Dumazeta3d12892009-10-21 10:59:31 +00001259 if (tb[IFLA_IFNAME])
1260 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1261
Thomas Grafb60c5112006-08-04 23:05:34 -07001262 ifm = nlmsg_data(nlh);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001263 if (ifm->ifi_index > 0)
1264 dev = __dev_get_by_index(net, ifm->ifi_index);
1265 else if (tb[IFLA_IFNAME])
1266 dev = __dev_get_by_name(net, ifname);
1267 else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001268 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07001269
Eric Dumazeta3d12892009-10-21 10:59:31 +00001270 if (dev == NULL)
1271 return -ENODEV;
1272
Patrick McHardy38f7b872007-06-13 12:03:51 -07001273 nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001274 if (nskb == NULL)
1275 return -ENOBUFS;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001276
Patrick McHardy575c3e22007-05-22 17:00:49 -07001277 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1278 nlh->nlmsg_seq, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001279 if (err < 0) {
1280 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1281 WARN_ON(err == -EMSGSIZE);
1282 kfree_skb(nskb);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001283 } else
1284 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid);
Thomas Grafb60c5112006-08-04 23:05:34 -07001285
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001286 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001287}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001288
Adrian Bunk42bad1d2007-04-26 00:57:41 -07001289static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
1291 int idx;
1292 int s_idx = cb->family;
1293
1294 if (s_idx == 0)
1295 s_idx = 1;
Eric Dumazete0d087a2009-11-07 01:26:17 -08001296 for (idx = 1; idx < NPROTO; idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 int type = cb->nlh->nlmsg_type-RTM_BASE;
1298 if (idx < s_idx || idx == PF_PACKET)
1299 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07001300 if (rtnl_msg_handlers[idx] == NULL ||
1301 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 continue;
1303 if (idx > s_idx)
1304 memset(&cb->args[0], 0, sizeof(cb->args));
Thomas Grafe2849862007-03-22 11:48:11 -07001305 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 break;
1307 }
1308 cb->family = idx;
1309
1310 return skb->len;
1311}
1312
1313void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1314{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001315 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001317 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Patrick McHardy38f7b872007-06-13 12:03:51 -07001319 skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001320 if (skb == NULL)
1321 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Patrick McHardy575c3e22007-05-22 17:00:49 -07001323 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001324 if (err < 0) {
1325 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1326 WARN_ON(err == -EMSGSIZE);
1327 kfree_skb(skb);
1328 goto errout;
1329 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001330 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1331 return;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001332errout:
1333 if (err < 0)
Eric W. Biederman4b3da702007-11-19 22:27:40 -08001334 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337/* Protected by RTNL sempahore. */
1338static struct rtattr **rta_buf;
1339static int rtattr_max;
1340
1341/* Process one rtnetlink message. */
1342
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001343static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001345 struct net *net = sock_net(skb->sk);
Thomas Grafe2849862007-03-22 11:48:11 -07001346 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 int sz_idx, kind;
1348 int min_len;
1349 int family;
1350 int type;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001351 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07001355 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 type -= RTM_BASE;
1358
1359 /* All the messages must have at least 1 byte length */
1360 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1361 return 0;
1362
Eric Dumazete0d087a2009-11-07 01:26:17 -08001363 family = ((struct rtgenmsg *)NLMSG_DATA(nlh))->rtgen_family;
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001364 if (family >= NPROTO)
1365 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 sz_idx = type>>2;
1368 kind = type&3;
1369
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001370 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
1371 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001374 struct sock *rtnl;
Thomas Grafe2849862007-03-22 11:48:11 -07001375 rtnl_dumpit_func dumpit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Thomas Grafe2849862007-03-22 11:48:11 -07001377 dumpit = rtnl_get_dumpit(family, type);
1378 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001379 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001381 __rtnl_unlock();
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001382 rtnl = net->rtnl;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001383 err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL);
1384 rtnl_lock();
1385 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387
1388 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
1389
1390 min_len = rtm_min[sz_idx];
1391 if (nlh->nlmsg_len < min_len)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001392 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 if (nlh->nlmsg_len > min_len) {
1395 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
Eric Dumazete0d087a2009-11-07 01:26:17 -08001396 struct rtattr *attr = (void *)nlh + NLMSG_ALIGN(min_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 while (RTA_OK(attr, attrlen)) {
1399 unsigned flavor = attr->rta_type;
1400 if (flavor) {
1401 if (flavor > rta_max[sz_idx])
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001402 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 rta_buf[flavor-1] = attr;
1404 }
1405 attr = RTA_NEXT(attr, attrlen);
1406 }
1407 }
1408
Thomas Grafe2849862007-03-22 11:48:11 -07001409 doit = rtnl_get_doit(family, type);
1410 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001411 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001413 return doit(skb, nlh, (void *)&rta_buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414}
1415
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001416static void rtnetlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001418 rtnl_lock();
1419 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
1420 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
1424{
1425 struct net_device *dev = ptr;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 case NETDEV_UP:
1429 case NETDEV_DOWN:
1430 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
1431 break;
Patrick McHardy10de05a2010-02-26 06:34:50 +00001432 case NETDEV_PRE_UP:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00001433 case NETDEV_POST_INIT:
1434 case NETDEV_REGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 case NETDEV_CHANGE:
1436 case NETDEV_GOING_DOWN:
Patrick McHardya2835762010-02-26 06:34:51 +00001437 case NETDEV_UNREGISTER:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00001438 case NETDEV_UNREGISTER_BATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 break;
1440 default:
1441 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1442 break;
1443 }
1444 return NOTIFY_DONE;
1445}
1446
1447static struct notifier_block rtnetlink_dev_notifier = {
1448 .notifier_call = rtnetlink_event,
1449};
1450
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001451
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001452static int __net_init rtnetlink_net_init(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001453{
1454 struct sock *sk;
1455 sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX,
1456 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
1457 if (!sk)
1458 return -ENOMEM;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001459 net->rtnl = sk;
1460 return 0;
1461}
1462
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001463static void __net_exit rtnetlink_net_exit(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001464{
Denis V. Lunev775516b2008-01-18 23:55:19 -08001465 netlink_kernel_release(net->rtnl);
1466 net->rtnl = NULL;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001467}
1468
1469static struct pernet_operations rtnetlink_net_ops = {
1470 .init = rtnetlink_net_init,
1471 .exit = rtnetlink_net_exit,
1472};
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474void __init rtnetlink_init(void)
1475{
1476 int i;
1477
1478 rtattr_max = 0;
1479 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
1480 if (rta_max[i] > rtattr_max)
1481 rtattr_max = rta_max[i];
1482 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
1483 if (!rta_buf)
1484 panic("rtnetlink_init: cannot allocate rta_buf\n");
1485
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001486 if (register_pernet_subsys(&rtnetlink_net_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 panic("rtnetlink_init: cannot initialize rtnetlink\n");
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
1490 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07001491
1492 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo);
1493 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001494 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL);
1495 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07001496
1497 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all);
1498 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500