blob: 31e85d327aa2ccd7e4ec6e9ae8699ada83bbb879 [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
Adrian Bunk42bad1d2007-04-26 00:57:41 -0700101static struct rtnl_link *rtnl_msg_handlers[NPROTO];
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
121 tab = rtnl_msg_handlers[protocol];
Thomas Graf51057f22007-03-22 21:41:06 -0700122 if (tab == NULL || tab[msgindex].doit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700123 tab = rtnl_msg_handlers[PF_UNSPEC];
124
Thomas Graf51057f22007-03-22 21:41:06 -0700125 return tab ? tab[msgindex].doit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700126}
127
128static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
129{
130 struct rtnl_link *tab;
131
132 tab = rtnl_msg_handlers[protocol];
Thomas Graf51057f22007-03-22 21:41:06 -0700133 if (tab == NULL || tab[msgindex].dumpit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700134 tab = rtnl_msg_handlers[PF_UNSPEC];
135
Thomas Graf51057f22007-03-22 21:41:06 -0700136 return tab ? tab[msgindex].dumpit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700137}
138
139/**
140 * __rtnl_register - Register a rtnetlink message type
141 * @protocol: Protocol family or PF_UNSPEC
142 * @msgtype: rtnetlink message type
143 * @doit: Function pointer called for each request message
144 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
145 *
146 * Registers the specified function pointers (at least one of them has
147 * to be non-NULL) to be called whenever a request message for the
148 * specified protocol family and message type is received.
149 *
150 * The special protocol family PF_UNSPEC may be used to define fallback
151 * function pointers for the case when no entry for the specific protocol
152 * family exists.
153 *
154 * Returns 0 on success or a negative error code.
155 */
156int __rtnl_register(int protocol, int msgtype,
157 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
158{
159 struct rtnl_link *tab;
160 int msgindex;
161
162 BUG_ON(protocol < 0 || protocol >= NPROTO);
163 msgindex = rtm_msgindex(msgtype);
164
165 tab = rtnl_msg_handlers[protocol];
166 if (tab == NULL) {
167 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
168 if (tab == NULL)
169 return -ENOBUFS;
170
171 rtnl_msg_handlers[protocol] = tab;
172 }
173
174 if (doit)
175 tab[msgindex].doit = doit;
176
177 if (dumpit)
178 tab[msgindex].dumpit = dumpit;
179
180 return 0;
181}
Thomas Grafe2849862007-03-22 11:48:11 -0700182EXPORT_SYMBOL_GPL(__rtnl_register);
183
184/**
185 * rtnl_register - Register a rtnetlink message type
186 *
187 * Identical to __rtnl_register() but panics on failure. This is useful
188 * as failure of this function is very unlikely, it can only happen due
189 * to lack of memory when allocating the chain to store all message
190 * handlers for a protocol. Meant for use in init functions where lack
191 * of memory implies no sense in continueing.
192 */
193void rtnl_register(int protocol, int msgtype,
194 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
195{
196 if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0)
197 panic("Unable to register rtnetlink message handler, "
198 "protocol = %d, message type = %d\n",
199 protocol, msgtype);
200}
Thomas Grafe2849862007-03-22 11:48:11 -0700201EXPORT_SYMBOL_GPL(rtnl_register);
202
203/**
204 * rtnl_unregister - Unregister a rtnetlink message type
205 * @protocol: Protocol family or PF_UNSPEC
206 * @msgtype: rtnetlink message type
207 *
208 * Returns 0 on success or a negative error code.
209 */
210int rtnl_unregister(int protocol, int msgtype)
211{
212 int msgindex;
213
214 BUG_ON(protocol < 0 || protocol >= NPROTO);
215 msgindex = rtm_msgindex(msgtype);
216
217 if (rtnl_msg_handlers[protocol] == NULL)
218 return -ENOENT;
219
220 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
221 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
222
223 return 0;
224}
Thomas Grafe2849862007-03-22 11:48:11 -0700225EXPORT_SYMBOL_GPL(rtnl_unregister);
226
227/**
228 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
229 * @protocol : Protocol family or PF_UNSPEC
230 *
231 * Identical to calling rtnl_unregster() for all registered message types
232 * of a certain protocol family.
233 */
234void rtnl_unregister_all(int protocol)
235{
236 BUG_ON(protocol < 0 || protocol >= NPROTO);
237
238 kfree(rtnl_msg_handlers[protocol]);
239 rtnl_msg_handlers[protocol] = NULL;
240}
Thomas Grafe2849862007-03-22 11:48:11 -0700241EXPORT_SYMBOL_GPL(rtnl_unregister_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Patrick McHardy38f7b872007-06-13 12:03:51 -0700243static LIST_HEAD(link_ops);
244
245/**
246 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
247 * @ops: struct rtnl_link_ops * to register
248 *
249 * The caller must hold the rtnl_mutex. This function should be used
250 * by drivers that create devices during module initialization. It
251 * must be called before registering the devices.
252 *
253 * Returns 0 on success or a negative error code.
254 */
255int __rtnl_link_register(struct rtnl_link_ops *ops)
256{
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700257 if (!ops->dellink)
Eric Dumazet23289a32009-10-27 07:06:36 +0000258 ops->dellink = unregister_netdevice_queue;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700259
Patrick McHardy38f7b872007-06-13 12:03:51 -0700260 list_add_tail(&ops->list, &link_ops);
261 return 0;
262}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700263EXPORT_SYMBOL_GPL(__rtnl_link_register);
264
265/**
266 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
267 * @ops: struct rtnl_link_ops * to register
268 *
269 * Returns 0 on success or a negative error code.
270 */
271int rtnl_link_register(struct rtnl_link_ops *ops)
272{
273 int err;
274
275 rtnl_lock();
276 err = __rtnl_link_register(ops);
277 rtnl_unlock();
278 return err;
279}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700280EXPORT_SYMBOL_GPL(rtnl_link_register);
281
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700282static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
283{
284 struct net_device *dev;
Eric Dumazet23289a32009-10-27 07:06:36 +0000285 LIST_HEAD(list_kill);
286
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700287 for_each_netdev(net, dev) {
Eric Dumazet23289a32009-10-27 07:06:36 +0000288 if (dev->rtnl_link_ops == ops)
289 ops->dellink(dev, &list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700290 }
Eric Dumazet23289a32009-10-27 07:06:36 +0000291 unregister_netdevice_many(&list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700292}
293
294void rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
295{
296 rtnl_lock();
297 __rtnl_kill_links(net, ops);
298 rtnl_unlock();
299}
300EXPORT_SYMBOL_GPL(rtnl_kill_links);
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
350 size = nlmsg_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
351 nlmsg_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
352
353 if (ops->get_size)
354 /* IFLA_INFO_DATA + nested data */
355 size += nlmsg_total_size(sizeof(struct nlattr)) +
356 ops->get_size(dev);
357
358 if (ops->get_xstats_size)
359 size += ops->get_xstats_size(dev); /* IFLA_INFO_XSTATS */
360
361 return size;
362}
363
364static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
365{
366 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
367 struct nlattr *linkinfo, *data;
368 int err = -EMSGSIZE;
369
370 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
371 if (linkinfo == NULL)
372 goto out;
373
374 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
375 goto err_cancel_link;
376 if (ops->fill_xstats) {
377 err = ops->fill_xstats(skb, dev);
378 if (err < 0)
379 goto err_cancel_link;
380 }
381 if (ops->fill_info) {
382 data = nla_nest_start(skb, IFLA_INFO_DATA);
383 if (data == NULL)
384 goto err_cancel_link;
385 err = ops->fill_info(skb, dev);
386 if (err < 0)
387 goto err_cancel_data;
388 nla_nest_end(skb, data);
389 }
390
391 nla_nest_end(skb, linkinfo);
392 return 0;
393
394err_cancel_data:
395 nla_nest_cancel(skb, data);
396err_cancel_link:
397 nla_nest_cancel(skb, linkinfo);
398out:
399 return err;
400}
401
Thomas Grafdb46edc2005-05-03 14:29:39 -0700402static const int rtm_min[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Thomas Graff90a0a72005-05-03 14:29:00 -0700404 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
405 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
406 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
Thomas Graf14c0b972006-08-04 03:38:38 -0700407 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700408 [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
409 [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
410 [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
411 [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700412 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
413 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414};
415
Thomas Grafdb46edc2005-05-03 14:29:39 -0700416static const int rta_max[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Thomas Graff90a0a72005-05-03 14:29:00 -0700418 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
419 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
420 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
Thomas Graf14c0b972006-08-04 03:38:38 -0700421 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
Thomas Graff90a0a72005-05-03 14:29:00 -0700422 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
423 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
424 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
425 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426};
427
428void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
429{
430 struct rtattr *rta;
431 int size = RTA_LENGTH(attrlen);
432
Eric Dumazete0d087a2009-11-07 01:26:17 -0800433 rta = (struct rtattr *)skb_put(skb, RTA_ALIGN(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 rta->rta_type = attrtype;
435 rta->rta_len = size;
436 memcpy(RTA_DATA(rta), data, attrlen);
Patrick McHardyb3563c42005-06-28 12:54:43 -0700437 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800439EXPORT_SYMBOL(__rta_fill);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800441int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned group, int echo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800443 struct sock *rtnl = net->rtnl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 int err = 0;
445
Patrick McHardyac6d4392005-08-14 19:29:52 -0700446 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (echo)
448 atomic_inc(&skb->users);
449 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
450 if (echo)
451 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
452 return err;
453}
454
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800455int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
Thomas Graf2942e902006-08-15 00:30:25 -0700456{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800457 struct sock *rtnl = net->rtnl;
458
Thomas Graf2942e902006-08-15 00:30:25 -0700459 return nlmsg_unicast(rtnl, skb, pid);
460}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800461EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf2942e902006-08-15 00:30:25 -0700462
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800463void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
464 struct nlmsghdr *nlh, gfp_t flags)
Thomas Graf97676b62006-08-15 00:31:41 -0700465{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800466 struct sock *rtnl = net->rtnl;
Thomas Graf97676b62006-08-15 00:31:41 -0700467 int report = 0;
468
469 if (nlh)
470 report = nlmsg_report(nlh);
471
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800472 nlmsg_notify(rtnl, skb, pid, group, report, flags);
Thomas Graf97676b62006-08-15 00:31:41 -0700473}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800474EXPORT_SYMBOL(rtnl_notify);
Thomas Graf97676b62006-08-15 00:31:41 -0700475
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800476void rtnl_set_sk_err(struct net *net, u32 group, int error)
Thomas Graf97676b62006-08-15 00:31:41 -0700477{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800478 struct sock *rtnl = net->rtnl;
479
Thomas Graf97676b62006-08-15 00:31:41 -0700480 netlink_set_err(rtnl, 0, group, error);
481}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800482EXPORT_SYMBOL(rtnl_set_sk_err);
Thomas Graf97676b62006-08-15 00:31:41 -0700483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
485{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700486 struct nlattr *mx;
487 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Thomas Graf2d7202b2006-08-22 00:01:27 -0700489 mx = nla_nest_start(skb, RTA_METRICS);
490 if (mx == NULL)
491 return -ENOBUFS;
492
493 for (i = 0; i < RTAX_MAX; i++) {
494 if (metrics[i]) {
495 valid++;
496 NLA_PUT_U32(skb, i+1, metrics[i]);
497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
David S. Millera57d27f2006-08-22 22:20:14 -0700500 if (!valid) {
501 nla_nest_cancel(skb, mx);
502 return 0;
503 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700504
505 return nla_nest_end(skb, mx);
506
507nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700508 nla_nest_cancel(skb, mx);
509 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
Eric Dumazete0d087a2009-11-07 01:26:17 -0800511EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Thomas Grafe3703b32006-11-27 09:27:07 -0800513int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
514 u32 ts, u32 tsage, long expires, u32 error)
515{
516 struct rta_cacheinfo ci = {
517 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
518 .rta_used = dst->__use,
519 .rta_clntref = atomic_read(&(dst->__refcnt)),
520 .rta_error = error,
521 .rta_id = id,
522 .rta_ts = ts,
523 .rta_tsage = tsage,
524 };
525
526 if (expires)
527 ci.rta_expires = jiffies_to_clock_t(expires);
528
529 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
530}
Thomas Grafe3703b32006-11-27 09:27:07 -0800531EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
David S. Miller93b2d4a2008-02-17 18:35:07 -0800533static void set_operstate(struct net_device *dev, unsigned char transition)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800534{
535 unsigned char operstate = dev->operstate;
536
Eric Dumazete0d087a2009-11-07 01:26:17 -0800537 switch (transition) {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800538 case IF_OPER_UP:
539 if ((operstate == IF_OPER_DORMANT ||
540 operstate == IF_OPER_UNKNOWN) &&
541 !netif_dormant(dev))
542 operstate = IF_OPER_UP;
543 break;
544
545 case IF_OPER_DORMANT:
546 if (operstate == IF_OPER_UP ||
547 operstate == IF_OPER_UNKNOWN)
548 operstate = IF_OPER_DORMANT;
549 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700550 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800551
552 if (dev->operstate != operstate) {
553 write_lock_bh(&dev_base_lock);
554 dev->operstate = operstate;
555 write_unlock_bh(&dev_base_lock);
David S. Miller93b2d4a2008-02-17 18:35:07 -0800556 netdev_state_change(dev);
557 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800558}
559
Patrick McHardy3729d502010-02-26 06:34:54 +0000560static unsigned int rtnl_dev_combine_flags(const struct net_device *dev,
561 const struct ifinfomsg *ifm)
562{
563 unsigned int flags = ifm->ifi_flags;
564
565 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
566 if (ifm->ifi_change)
567 flags = (flags & ifm->ifi_change) |
568 (dev->flags & ~ifm->ifi_change);
569
570 return flags;
571}
572
Thomas Grafb60c5112006-08-04 23:05:34 -0700573static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -0800574 const struct net_device_stats *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Thomas Grafb60c5112006-08-04 23:05:34 -0700576 a->rx_packets = b->rx_packets;
577 a->tx_packets = b->tx_packets;
578 a->rx_bytes = b->rx_bytes;
579 a->tx_bytes = b->tx_bytes;
580 a->rx_errors = b->rx_errors;
581 a->tx_errors = b->tx_errors;
582 a->rx_dropped = b->rx_dropped;
583 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Thomas Grafb60c5112006-08-04 23:05:34 -0700585 a->multicast = b->multicast;
586 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Thomas Grafb60c5112006-08-04 23:05:34 -0700588 a->rx_length_errors = b->rx_length_errors;
589 a->rx_over_errors = b->rx_over_errors;
590 a->rx_crc_errors = b->rx_crc_errors;
591 a->rx_frame_errors = b->rx_frame_errors;
592 a->rx_fifo_errors = b->rx_fifo_errors;
593 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Thomas Grafb60c5112006-08-04 23:05:34 -0700595 a->tx_aborted_errors = b->tx_aborted_errors;
596 a->tx_carrier_errors = b->tx_carrier_errors;
597 a->tx_fifo_errors = b->tx_fifo_errors;
598 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
599 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Thomas Grafb60c5112006-08-04 23:05:34 -0700601 a->rx_compressed = b->rx_compressed;
602 a->tx_compressed = b->tx_compressed;
603};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Chris Wrightc02db8c2010-05-16 01:05:45 -0700605/* All VF info */
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000606static inline int rtnl_vfinfo_size(const struct net_device *dev)
607{
Chris Wrightc02db8c2010-05-16 01:05:45 -0700608 if (dev->dev.parent && dev_is_pci(dev->dev.parent)) {
609
610 int num_vfs = dev_num_vf(dev->dev.parent);
611 size_t size = nlmsg_total_size(sizeof(struct nlattr));
612 size += nlmsg_total_size(num_vfs * sizeof(struct nlattr));
613 size += num_vfs * (sizeof(struct ifla_vf_mac) +
614 sizeof(struct ifla_vf_vlan) +
615 sizeof(struct ifla_vf_tx_rate));
616 return size;
617 } else
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000618 return 0;
619}
620
Patrick McHardy38f7b872007-06-13 12:03:51 -0700621static inline size_t if_nlmsg_size(const struct net_device *dev)
Thomas Graf339bf982006-11-10 14:10:15 -0800622{
623 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
624 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700625 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
Thomas Graf339bf982006-11-10 14:10:15 -0800626 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
627 + nla_total_size(sizeof(struct rtnl_link_ifmap))
628 + nla_total_size(sizeof(struct rtnl_link_stats))
629 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
630 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
631 + nla_total_size(4) /* IFLA_TXQLEN */
632 + nla_total_size(4) /* IFLA_WEIGHT */
633 + nla_total_size(4) /* IFLA_MTU */
634 + nla_total_size(4) /* IFLA_LINK */
635 + nla_total_size(4) /* IFLA_MASTER */
636 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700637 + nla_total_size(1) /* IFLA_LINKMODE */
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000638 + nla_total_size(4) /* IFLA_NUM_VF */
Chris Wrightc02db8c2010-05-16 01:05:45 -0700639 + rtnl_vfinfo_size(dev) /* IFLA_VFINFO_LIST */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700640 + rtnl_link_get_size(dev); /* IFLA_LINKINFO */
Thomas Graf339bf982006-11-10 14:10:15 -0800641}
642
Thomas Grafb60c5112006-08-04 23:05:34 -0700643static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -0700644 int type, u32 pid, u32 seq, u32 change,
645 unsigned int flags)
Thomas Grafb60c5112006-08-04 23:05:34 -0700646{
647 struct ifinfomsg *ifm;
648 struct nlmsghdr *nlh;
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -0800649 const struct net_device_stats *stats;
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700650 struct nlattr *attr;
Thomas Grafb60c5112006-08-04 23:05:34 -0700651
652 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
653 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800654 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700655
656 ifm = nlmsg_data(nlh);
657 ifm->ifi_family = AF_UNSPEC;
658 ifm->__ifi_pad = 0;
659 ifm->ifi_type = dev->type;
660 ifm->ifi_index = dev->ifindex;
661 ifm->ifi_flags = dev_get_flags(dev);
662 ifm->ifi_change = change;
663
664 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
665 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
Thomas Grafb60c5112006-08-04 23:05:34 -0700666 NLA_PUT_U8(skb, IFLA_OPERSTATE,
667 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
668 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
669 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
670
671 if (dev->ifindex != dev->iflink)
672 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
673
674 if (dev->master)
675 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
676
Patrick McHardyaf356af2009-09-04 06:41:18 +0000677 if (dev->qdisc)
678 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc->ops->id);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800679
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700680 if (dev->ifalias)
681 NLA_PUT_STRING(skb, IFLA_IFALIAS, dev->ifalias);
682
Stefan Rompfb00055a2006-03-20 17:09:11 -0800683 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 struct rtnl_link_ifmap map = {
685 .mem_start = dev->mem_start,
686 .mem_end = dev->mem_end,
687 .base_addr = dev->base_addr,
688 .irq = dev->irq,
689 .dma = dev->dma,
690 .port = dev->if_port,
691 };
Thomas Grafb60c5112006-08-04 23:05:34 -0700692 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694
695 if (dev->addr_len) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700696 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
697 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700700 attr = nla_reserve(skb, IFLA_STATS,
701 sizeof(struct rtnl_link_stats));
702 if (attr == NULL)
703 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -0800705 stats = dev_get_stats(dev);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700706 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000708 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent) {
709 int i;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000710
Chris Wrightc02db8c2010-05-16 01:05:45 -0700711 struct nlattr *vfinfo, *vf;
712 int num_vfs = dev_num_vf(dev->dev.parent);
713
714 NLA_PUT_U32(skb, IFLA_NUM_VF, num_vfs);
715 vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST);
716 if (!vfinfo)
717 goto nla_put_failure;
718 for (i = 0; i < num_vfs; i++) {
719 struct ifla_vf_info ivi;
720 struct ifla_vf_mac vf_mac;
721 struct ifla_vf_vlan vf_vlan;
722 struct ifla_vf_tx_rate vf_tx_rate;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000723 if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi))
724 break;
Chris Wrightc02db8c2010-05-16 01:05:45 -0700725 vf_mac.vf = vf_vlan.vf = vf_tx_rate.vf = ivi.vf;
726 memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac));
727 vf_vlan.vlan = ivi.vlan;
728 vf_vlan.qos = ivi.qos;
729 vf_tx_rate.rate = ivi.tx_rate;
730 vf = nla_nest_start(skb, IFLA_VF_INFO);
731 if (!vf) {
732 nla_nest_cancel(skb, vfinfo);
733 goto nla_put_failure;
734 }
735 NLA_PUT(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac);
736 NLA_PUT(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan);
737 NLA_PUT(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate), &vf_tx_rate);
738 nla_nest_end(skb, vf);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000739 }
Chris Wrightc02db8c2010-05-16 01:05:45 -0700740 nla_nest_end(skb, vfinfo);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000741 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700742 if (dev->rtnl_link_ops) {
743 if (rtnl_link_fill(skb, dev) < 0)
744 goto nla_put_failure;
745 }
746
Thomas Grafb60c5112006-08-04 23:05:34 -0700747 return nlmsg_end(skb, nlh);
748
749nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800750 nlmsg_cancel(skb, nlh);
751 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
Thomas Grafb60c5112006-08-04 23:05:34 -0700754static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900756 struct net *net = sock_net(skb->sk);
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700757 int h, s_h;
758 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 struct net_device *dev;
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700760 struct hlist_head *head;
761 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700763 s_h = cb->args[0];
764 s_idx = cb->args[1];
765
766 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
767 idx = 0;
768 head = &net->dev_index_head[h];
769 hlist_for_each_entry(dev, node, head, index_hlist) {
770 if (idx < s_idx)
771 goto cont;
772 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
773 NETLINK_CB(cb->skb).pid,
774 cb->nlh->nlmsg_seq, 0,
775 NLM_F_MULTI) <= 0)
776 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700777cont:
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700778 idx++;
779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700781out:
782 cb->args[1] = idx;
783 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 return skb->len;
786}
787
Pavel Emelianove7199282007-08-08 22:16:38 -0700788const struct nla_policy ifla_policy[IFLA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -0700789 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
Patrick McHardy38f7b872007-06-13 12:03:51 -0700790 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
791 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
Thomas Graf5176f912006-08-26 20:13:18 -0700792 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -0700793 [IFLA_MTU] = { .type = NLA_U32 },
Thomas Graf76e87302008-02-19 16:12:08 -0800794 [IFLA_LINK] = { .type = NLA_U32 },
Thomas Grafda5e0492006-08-10 21:17:37 -0700795 [IFLA_TXQLEN] = { .type = NLA_U32 },
796 [IFLA_WEIGHT] = { .type = NLA_U32 },
797 [IFLA_OPERSTATE] = { .type = NLA_U8 },
798 [IFLA_LINKMODE] = { .type = NLA_U8 },
Thomas Graf76e87302008-02-19 16:12:08 -0800799 [IFLA_LINKINFO] = { .type = NLA_NESTED },
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200800 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700801 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
Chris Wrightc02db8c2010-05-16 01:05:45 -0700802 [IFLA_VFINFO_LIST] = {. type = NLA_NESTED },
Thomas Grafda5e0492006-08-10 21:17:37 -0700803};
Eric Dumazete0d087a2009-11-07 01:26:17 -0800804EXPORT_SYMBOL(ifla_policy);
Thomas Grafda5e0492006-08-10 21:17:37 -0700805
Patrick McHardy38f7b872007-06-13 12:03:51 -0700806static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
807 [IFLA_INFO_KIND] = { .type = NLA_STRING },
808 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
809};
810
Chris Wrightc02db8c2010-05-16 01:05:45 -0700811static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = {
812 [IFLA_VF_INFO] = { .type = NLA_NESTED },
813};
814
815static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
816 [IFLA_VF_MAC] = { .type = NLA_BINARY,
817 .len = sizeof(struct ifla_vf_mac) },
818 [IFLA_VF_VLAN] = { .type = NLA_BINARY,
819 .len = sizeof(struct ifla_vf_vlan) },
820 [IFLA_VF_TX_RATE] = { .type = NLA_BINARY,
821 .len = sizeof(struct ifla_vf_tx_rate) },
822};
823
Eric W. Biederman81adee42009-11-08 00:53:51 -0800824struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
825{
826 struct net *net;
827 /* Examine the link attributes and figure out which
828 * network namespace we are talking about.
829 */
830 if (tb[IFLA_NET_NS_PID])
831 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
832 else
833 net = get_net(src_net);
834 return net;
835}
836EXPORT_SYMBOL(rtnl_link_get_net);
837
Thomas Graf1840bb12008-02-23 19:54:36 -0800838static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
839{
840 if (dev) {
841 if (tb[IFLA_ADDRESS] &&
842 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
843 return -EINVAL;
844
845 if (tb[IFLA_BROADCAST] &&
846 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
847 return -EINVAL;
848 }
849
850 return 0;
851}
852
Chris Wrightc02db8c2010-05-16 01:05:45 -0700853static int do_setvfinfo(struct net_device *dev, struct nlattr *attr)
854{
855 int rem, err = -EINVAL;
856 struct nlattr *vf;
857 const struct net_device_ops *ops = dev->netdev_ops;
858
859 nla_for_each_nested(vf, attr, rem) {
860 switch (nla_type(vf)) {
861 case IFLA_VF_MAC: {
862 struct ifla_vf_mac *ivm;
863 ivm = nla_data(vf);
864 err = -EOPNOTSUPP;
865 if (ops->ndo_set_vf_mac)
866 err = ops->ndo_set_vf_mac(dev, ivm->vf,
867 ivm->mac);
868 break;
869 }
870 case IFLA_VF_VLAN: {
871 struct ifla_vf_vlan *ivv;
872 ivv = nla_data(vf);
873 err = -EOPNOTSUPP;
874 if (ops->ndo_set_vf_vlan)
875 err = ops->ndo_set_vf_vlan(dev, ivv->vf,
876 ivv->vlan,
877 ivv->qos);
878 break;
879 }
880 case IFLA_VF_TX_RATE: {
881 struct ifla_vf_tx_rate *ivt;
882 ivt = nla_data(vf);
883 err = -EOPNOTSUPP;
884 if (ops->ndo_set_vf_tx_rate)
885 err = ops->ndo_set_vf_tx_rate(dev, ivt->vf,
886 ivt->rate);
887 break;
888 }
889 default:
890 err = -EINVAL;
891 break;
892 }
893 if (err)
894 break;
895 }
896 return err;
897}
898
Patrick McHardy0157f602007-06-13 12:03:36 -0700899static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
Patrick McHardy38f7b872007-06-13 12:03:51 -0700900 struct nlattr **tb, char *ifname, int modified)
Patrick McHardy0157f602007-06-13 12:03:36 -0700901{
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800902 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy38f7b872007-06-13 12:03:51 -0700903 int send_addr_notify = 0;
Patrick McHardy0157f602007-06-13 12:03:36 -0700904 int err;
905
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200906 if (tb[IFLA_NET_NS_PID]) {
Eric W. Biederman81adee42009-11-08 00:53:51 -0800907 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200908 if (IS_ERR(net)) {
909 err = PTR_ERR(net);
910 goto errout;
911 }
912 err = dev_change_net_namespace(dev, net, ifname);
913 put_net(net);
914 if (err)
915 goto errout;
916 modified = 1;
917 }
918
Patrick McHardy0157f602007-06-13 12:03:36 -0700919 if (tb[IFLA_MAP]) {
920 struct rtnl_link_ifmap *u_map;
921 struct ifmap k_map;
922
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800923 if (!ops->ndo_set_config) {
Patrick McHardy0157f602007-06-13 12:03:36 -0700924 err = -EOPNOTSUPP;
925 goto errout;
926 }
927
928 if (!netif_device_present(dev)) {
929 err = -ENODEV;
930 goto errout;
931 }
932
933 u_map = nla_data(tb[IFLA_MAP]);
934 k_map.mem_start = (unsigned long) u_map->mem_start;
935 k_map.mem_end = (unsigned long) u_map->mem_end;
936 k_map.base_addr = (unsigned short) u_map->base_addr;
937 k_map.irq = (unsigned char) u_map->irq;
938 k_map.dma = (unsigned char) u_map->dma;
939 k_map.port = (unsigned char) u_map->port;
940
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800941 err = ops->ndo_set_config(dev, &k_map);
Patrick McHardy0157f602007-06-13 12:03:36 -0700942 if (err < 0)
943 goto errout;
944
945 modified = 1;
946 }
947
948 if (tb[IFLA_ADDRESS]) {
949 struct sockaddr *sa;
950 int len;
951
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800952 if (!ops->ndo_set_mac_address) {
Patrick McHardy0157f602007-06-13 12:03:36 -0700953 err = -EOPNOTSUPP;
954 goto errout;
955 }
956
957 if (!netif_device_present(dev)) {
958 err = -ENODEV;
959 goto errout;
960 }
961
962 len = sizeof(sa_family_t) + dev->addr_len;
963 sa = kmalloc(len, GFP_KERNEL);
964 if (!sa) {
965 err = -ENOMEM;
966 goto errout;
967 }
968 sa->sa_family = dev->type;
969 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
970 dev->addr_len);
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800971 err = ops->ndo_set_mac_address(dev, sa);
Patrick McHardy0157f602007-06-13 12:03:36 -0700972 kfree(sa);
973 if (err)
974 goto errout;
975 send_addr_notify = 1;
976 modified = 1;
977 }
978
979 if (tb[IFLA_MTU]) {
980 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
981 if (err < 0)
982 goto errout;
983 modified = 1;
984 }
985
986 /*
987 * Interface selected by interface index but interface
988 * name provided implies that a name change has been
989 * requested.
990 */
991 if (ifm->ifi_index > 0 && ifname[0]) {
992 err = dev_change_name(dev, ifname);
993 if (err < 0)
994 goto errout;
995 modified = 1;
996 }
997
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700998 if (tb[IFLA_IFALIAS]) {
999 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
1000 nla_len(tb[IFLA_IFALIAS]));
1001 if (err < 0)
1002 goto errout;
1003 modified = 1;
1004 }
1005
Patrick McHardy0157f602007-06-13 12:03:36 -07001006 if (tb[IFLA_BROADCAST]) {
1007 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
1008 send_addr_notify = 1;
1009 }
1010
1011 if (ifm->ifi_flags || ifm->ifi_change) {
Patrick McHardy3729d502010-02-26 06:34:54 +00001012 err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
Johannes Berg5f9021c2008-11-16 23:20:31 -08001013 if (err < 0)
1014 goto errout;
Patrick McHardy0157f602007-06-13 12:03:36 -07001015 }
1016
David S. Miller93b2d4a2008-02-17 18:35:07 -08001017 if (tb[IFLA_TXQLEN])
1018 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
Patrick McHardy0157f602007-06-13 12:03:36 -07001019
Patrick McHardy0157f602007-06-13 12:03:36 -07001020 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001021 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Patrick McHardy0157f602007-06-13 12:03:36 -07001022
1023 if (tb[IFLA_LINKMODE]) {
David S. Miller93b2d4a2008-02-17 18:35:07 -08001024 write_lock_bh(&dev_base_lock);
1025 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1026 write_unlock_bh(&dev_base_lock);
Patrick McHardy0157f602007-06-13 12:03:36 -07001027 }
1028
Chris Wrightc02db8c2010-05-16 01:05:45 -07001029 if (tb[IFLA_VFINFO_LIST]) {
1030 struct nlattr *attr;
1031 int rem;
1032 nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) {
1033 if (nla_type(attr) != IFLA_VF_INFO)
1034 goto errout;
1035 err = do_setvfinfo(dev, attr);
1036 if (err < 0)
1037 goto errout;
1038 modified = 1;
1039 }
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001040 }
Patrick McHardy0157f602007-06-13 12:03:36 -07001041 err = 0;
1042
1043errout:
1044 if (err < 0 && modified && net_ratelimit())
1045 printk(KERN_WARNING "A link change request failed with "
1046 "some changes comitted already. Interface %s may "
1047 "have been left with an inconsistent configuration, "
1048 "please check.\n", dev->name);
1049
1050 if (send_addr_notify)
1051 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
1052 return err;
1053}
1054
Thomas Grafda5e0492006-08-10 21:17:37 -07001055static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001057 struct net *net = sock_net(skb->sk);
Thomas Grafda5e0492006-08-10 21:17:37 -07001058 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -07001060 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -07001061 struct nlattr *tb[IFLA_MAX+1];
1062 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Thomas Grafda5e0492006-08-10 21:17:37 -07001064 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1065 if (err < 0)
1066 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Thomas Graf5176f912006-08-26 20:13:18 -07001068 if (tb[IFLA_IFNAME])
1069 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -07001070 else
1071 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -07001074 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -07001075 if (ifm->ifi_index > 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001076 dev = __dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -07001077 else if (tb[IFLA_IFNAME])
Eric Dumazeta3d12892009-10-21 10:59:31 +00001078 dev = __dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -07001079 else
1080 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Thomas Grafda5e0492006-08-10 21:17:37 -07001082 if (dev == NULL) {
1083 err = -ENODEV;
1084 goto errout;
1085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Eric Dumazete0d087a2009-11-07 01:26:17 -08001087 err = validate_linkmsg(dev, tb);
1088 if (err < 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001089 goto errout;
Thomas Grafda5e0492006-08-10 21:17:37 -07001090
Patrick McHardy38f7b872007-06-13 12:03:51 -07001091 err = do_setlink(dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -07001092errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return err;
1094}
1095
Patrick McHardy38f7b872007-06-13 12:03:51 -07001096static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1097{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001098 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001099 const struct rtnl_link_ops *ops;
1100 struct net_device *dev;
1101 struct ifinfomsg *ifm;
1102 char ifname[IFNAMSIZ];
1103 struct nlattr *tb[IFLA_MAX+1];
1104 int err;
1105
1106 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1107 if (err < 0)
1108 return err;
1109
1110 if (tb[IFLA_IFNAME])
1111 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1112
1113 ifm = nlmsg_data(nlh);
1114 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001115 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001116 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001117 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001118 else
1119 return -EINVAL;
1120
1121 if (!dev)
1122 return -ENODEV;
1123
1124 ops = dev->rtnl_link_ops;
1125 if (!ops)
1126 return -EOPNOTSUPP;
1127
Eric Dumazet23289a32009-10-27 07:06:36 +00001128 ops->dellink(dev, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001129 return 0;
1130}
1131
Patrick McHardy3729d502010-02-26 06:34:54 +00001132int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
1133{
1134 unsigned int old_flags;
1135 int err;
1136
1137 old_flags = dev->flags;
1138 if (ifm && (ifm->ifi_flags || ifm->ifi_change)) {
1139 err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
1140 if (err < 0)
1141 return err;
1142 }
1143
1144 dev->rtnl_link_state = RTNL_LINK_INITIALIZED;
1145 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1146
1147 __dev_notify_flags(dev, old_flags);
1148 return 0;
1149}
1150EXPORT_SYMBOL(rtnl_configure_link);
1151
Eric W. Biederman81adee42009-11-08 00:53:51 -08001152struct net_device *rtnl_create_link(struct net *src_net, struct net *net,
1153 char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[])
Pavel Emelianove7199282007-08-08 22:16:38 -07001154{
1155 int err;
1156 struct net_device *dev;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001157 unsigned int num_queues = 1;
1158 unsigned int real_num_queues = 1;
Pavel Emelianove7199282007-08-08 22:16:38 -07001159
Eric Dumazet2e59af32009-09-02 18:03:00 -07001160 if (ops->get_tx_queues) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001161 err = ops->get_tx_queues(src_net, tb, &num_queues,
Eric Dumazete0d087a2009-11-07 01:26:17 -08001162 &real_num_queues);
Eric Dumazet2e59af32009-09-02 18:03:00 -07001163 if (err)
1164 goto err;
1165 }
Pavel Emelianove7199282007-08-08 22:16:38 -07001166 err = -ENOMEM;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001167 dev = alloc_netdev_mq(ops->priv_size, ifname, ops->setup, num_queues);
Pavel Emelianove7199282007-08-08 22:16:38 -07001168 if (!dev)
1169 goto err;
1170
Eric W. Biederman81adee42009-11-08 00:53:51 -08001171 dev_net_set(dev, net);
1172 dev->rtnl_link_ops = ops;
Patrick McHardy3729d502010-02-26 06:34:54 +00001173 dev->rtnl_link_state = RTNL_LINK_INITIALIZING;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001174 dev->real_num_tx_queues = real_num_queues;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001175
Pavel Emelianove7199282007-08-08 22:16:38 -07001176 if (strchr(dev->name, '%')) {
1177 err = dev_alloc_name(dev, dev->name);
1178 if (err < 0)
1179 goto err_free;
1180 }
1181
Pavel Emelianove7199282007-08-08 22:16:38 -07001182 if (tb[IFLA_MTU])
1183 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
1184 if (tb[IFLA_ADDRESS])
1185 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1186 nla_len(tb[IFLA_ADDRESS]));
1187 if (tb[IFLA_BROADCAST])
1188 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1189 nla_len(tb[IFLA_BROADCAST]));
1190 if (tb[IFLA_TXQLEN])
1191 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1192 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001193 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001194 if (tb[IFLA_LINKMODE])
1195 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1196
1197 return dev;
1198
1199err_free:
1200 free_netdev(dev);
1201err:
1202 return ERR_PTR(err);
1203}
Eric Dumazete0d087a2009-11-07 01:26:17 -08001204EXPORT_SYMBOL(rtnl_create_link);
Pavel Emelianove7199282007-08-08 22:16:38 -07001205
Patrick McHardy38f7b872007-06-13 12:03:51 -07001206static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1207{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001208 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001209 const struct rtnl_link_ops *ops;
1210 struct net_device *dev;
1211 struct ifinfomsg *ifm;
1212 char kind[MODULE_NAME_LEN];
1213 char ifname[IFNAMSIZ];
1214 struct nlattr *tb[IFLA_MAX+1];
1215 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1216 int err;
1217
Johannes Berg95a5afc2008-10-16 15:24:51 -07001218#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001219replay:
Thomas Graf8072f082007-07-31 14:13:50 -07001220#endif
Patrick McHardy38f7b872007-06-13 12:03:51 -07001221 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1222 if (err < 0)
1223 return err;
1224
1225 if (tb[IFLA_IFNAME])
1226 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1227 else
1228 ifname[0] = '\0';
1229
1230 ifm = nlmsg_data(nlh);
1231 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001232 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001233 else if (ifname[0])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001234 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001235 else
1236 dev = NULL;
1237
Eric Dumazete0d087a2009-11-07 01:26:17 -08001238 err = validate_linkmsg(dev, tb);
1239 if (err < 0)
Thomas Graf1840bb12008-02-23 19:54:36 -08001240 return err;
1241
Patrick McHardy38f7b872007-06-13 12:03:51 -07001242 if (tb[IFLA_LINKINFO]) {
1243 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1244 tb[IFLA_LINKINFO], ifla_info_policy);
1245 if (err < 0)
1246 return err;
1247 } else
1248 memset(linkinfo, 0, sizeof(linkinfo));
1249
1250 if (linkinfo[IFLA_INFO_KIND]) {
1251 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1252 ops = rtnl_link_ops_get(kind);
1253 } else {
1254 kind[0] = '\0';
1255 ops = NULL;
1256 }
1257
1258 if (1) {
1259 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001260 struct net *dest_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001261
1262 if (ops) {
1263 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1264 err = nla_parse_nested(attr, ops->maxtype,
1265 linkinfo[IFLA_INFO_DATA],
1266 ops->policy);
1267 if (err < 0)
1268 return err;
1269 data = attr;
1270 }
1271 if (ops->validate) {
1272 err = ops->validate(tb, data);
1273 if (err < 0)
1274 return err;
1275 }
1276 }
1277
1278 if (dev) {
1279 int modified = 0;
1280
1281 if (nlh->nlmsg_flags & NLM_F_EXCL)
1282 return -EEXIST;
1283 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1284 return -EOPNOTSUPP;
1285
1286 if (linkinfo[IFLA_INFO_DATA]) {
1287 if (!ops || ops != dev->rtnl_link_ops ||
1288 !ops->changelink)
1289 return -EOPNOTSUPP;
1290
1291 err = ops->changelink(dev, tb, data);
1292 if (err < 0)
1293 return err;
1294 modified = 1;
1295 }
1296
1297 return do_setlink(dev, ifm, tb, ifname, modified);
1298 }
1299
1300 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
1301 return -ENODEV;
1302
Patrick McHardy3729d502010-02-26 06:34:54 +00001303 if (ifm->ifi_index)
Patrick McHardy38f7b872007-06-13 12:03:51 -07001304 return -EOPNOTSUPP;
Patrick McHardy0e068772007-07-11 19:42:31 -07001305 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
Patrick McHardy38f7b872007-06-13 12:03:51 -07001306 return -EOPNOTSUPP;
1307
1308 if (!ops) {
Johannes Berg95a5afc2008-10-16 15:24:51 -07001309#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001310 if (kind[0]) {
1311 __rtnl_unlock();
1312 request_module("rtnl-link-%s", kind);
1313 rtnl_lock();
1314 ops = rtnl_link_ops_get(kind);
1315 if (ops)
1316 goto replay;
1317 }
1318#endif
1319 return -EOPNOTSUPP;
1320 }
1321
1322 if (!ifname[0])
1323 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001324
Eric W. Biederman81adee42009-11-08 00:53:51 -08001325 dest_net = rtnl_link_get_net(net, tb);
1326 dev = rtnl_create_link(net, dest_net, ifname, ops, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001327
Pavel Emelianove7199282007-08-08 22:16:38 -07001328 if (IS_ERR(dev))
1329 err = PTR_ERR(dev);
1330 else if (ops->newlink)
Eric W. Biederman81adee42009-11-08 00:53:51 -08001331 err = ops->newlink(net, dev, tb, data);
Patrick McHardy2d85cba2007-07-11 19:42:13 -07001332 else
1333 err = register_netdevice(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001334
1335 if (err < 0 && !IS_ERR(dev))
Patrick McHardy38f7b872007-06-13 12:03:51 -07001336 free_netdev(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001337 if (err < 0)
Patrick McHardy3729d502010-02-26 06:34:54 +00001338 goto out;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001339
Patrick McHardy3729d502010-02-26 06:34:54 +00001340 err = rtnl_configure_link(dev, ifm);
1341 if (err < 0)
1342 unregister_netdevice(dev);
1343out:
Eric W. Biederman81adee42009-11-08 00:53:51 -08001344 put_net(dest_net);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001345 return err;
1346 }
1347}
1348
Thomas Grafb60c5112006-08-04 23:05:34 -07001349static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001350{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001351 struct net *net = sock_net(skb->sk);
Thomas Grafb60c5112006-08-04 23:05:34 -07001352 struct ifinfomsg *ifm;
Eric Dumazeta3d12892009-10-21 10:59:31 +00001353 char ifname[IFNAMSIZ];
Thomas Grafb60c5112006-08-04 23:05:34 -07001354 struct nlattr *tb[IFLA_MAX+1];
1355 struct net_device *dev = NULL;
1356 struct sk_buff *nskb;
Thomas Graf339bf982006-11-10 14:10:15 -08001357 int err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001358
Thomas Grafb60c5112006-08-04 23:05:34 -07001359 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1360 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07001361 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07001362
Eric Dumazeta3d12892009-10-21 10:59:31 +00001363 if (tb[IFLA_IFNAME])
1364 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1365
Thomas Grafb60c5112006-08-04 23:05:34 -07001366 ifm = nlmsg_data(nlh);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001367 if (ifm->ifi_index > 0)
1368 dev = __dev_get_by_index(net, ifm->ifi_index);
1369 else if (tb[IFLA_IFNAME])
1370 dev = __dev_get_by_name(net, ifname);
1371 else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001372 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07001373
Eric Dumazeta3d12892009-10-21 10:59:31 +00001374 if (dev == NULL)
1375 return -ENODEV;
1376
Patrick McHardy38f7b872007-06-13 12:03:51 -07001377 nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001378 if (nskb == NULL)
1379 return -ENOBUFS;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001380
Patrick McHardy575c3e22007-05-22 17:00:49 -07001381 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1382 nlh->nlmsg_seq, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001383 if (err < 0) {
1384 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1385 WARN_ON(err == -EMSGSIZE);
1386 kfree_skb(nskb);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001387 } else
1388 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid);
Thomas Grafb60c5112006-08-04 23:05:34 -07001389
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001390 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001391}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001392
Adrian Bunk42bad1d2007-04-26 00:57:41 -07001393static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
1395 int idx;
1396 int s_idx = cb->family;
1397
1398 if (s_idx == 0)
1399 s_idx = 1;
Eric Dumazete0d087a2009-11-07 01:26:17 -08001400 for (idx = 1; idx < NPROTO; idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 int type = cb->nlh->nlmsg_type-RTM_BASE;
1402 if (idx < s_idx || idx == PF_PACKET)
1403 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07001404 if (rtnl_msg_handlers[idx] == NULL ||
1405 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 continue;
1407 if (idx > s_idx)
1408 memset(&cb->args[0], 0, sizeof(cb->args));
Thomas Grafe2849862007-03-22 11:48:11 -07001409 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 break;
1411 }
1412 cb->family = idx;
1413
1414 return skb->len;
1415}
1416
1417void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1418{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001419 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001421 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Patrick McHardy38f7b872007-06-13 12:03:51 -07001423 skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001424 if (skb == NULL)
1425 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Patrick McHardy575c3e22007-05-22 17:00:49 -07001427 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001428 if (err < 0) {
1429 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1430 WARN_ON(err == -EMSGSIZE);
1431 kfree_skb(skb);
1432 goto errout;
1433 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001434 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1435 return;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001436errout:
1437 if (err < 0)
Eric W. Biederman4b3da702007-11-19 22:27:40 -08001438 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439}
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441/* Protected by RTNL sempahore. */
1442static struct rtattr **rta_buf;
1443static int rtattr_max;
1444
1445/* Process one rtnetlink message. */
1446
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001447static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001449 struct net *net = sock_net(skb->sk);
Thomas Grafe2849862007-03-22 11:48:11 -07001450 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 int sz_idx, kind;
1452 int min_len;
1453 int family;
1454 int type;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001455 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07001459 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461 type -= RTM_BASE;
1462
1463 /* All the messages must have at least 1 byte length */
1464 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1465 return 0;
1466
Eric Dumazete0d087a2009-11-07 01:26:17 -08001467 family = ((struct rtgenmsg *)NLMSG_DATA(nlh))->rtgen_family;
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001468 if (family >= NPROTO)
1469 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 sz_idx = type>>2;
1472 kind = type&3;
1473
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001474 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
1475 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001478 struct sock *rtnl;
Thomas Grafe2849862007-03-22 11:48:11 -07001479 rtnl_dumpit_func dumpit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Thomas Grafe2849862007-03-22 11:48:11 -07001481 dumpit = rtnl_get_dumpit(family, type);
1482 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001483 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001485 __rtnl_unlock();
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001486 rtnl = net->rtnl;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001487 err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL);
1488 rtnl_lock();
1489 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 }
1491
1492 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
1493
1494 min_len = rtm_min[sz_idx];
1495 if (nlh->nlmsg_len < min_len)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001496 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 if (nlh->nlmsg_len > min_len) {
1499 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
Eric Dumazete0d087a2009-11-07 01:26:17 -08001500 struct rtattr *attr = (void *)nlh + NLMSG_ALIGN(min_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 while (RTA_OK(attr, attrlen)) {
1503 unsigned flavor = attr->rta_type;
1504 if (flavor) {
1505 if (flavor > rta_max[sz_idx])
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001506 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 rta_buf[flavor-1] = attr;
1508 }
1509 attr = RTA_NEXT(attr, attrlen);
1510 }
1511 }
1512
Thomas Grafe2849862007-03-22 11:48:11 -07001513 doit = rtnl_get_doit(family, type);
1514 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001515 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001517 return doit(skb, nlh, (void *)&rta_buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518}
1519
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001520static void rtnetlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001522 rtnl_lock();
1523 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
1524 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
1528{
1529 struct net_device *dev = ptr;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 case NETDEV_UP:
1533 case NETDEV_DOWN:
Patrick McHardy10de05a2010-02-26 06:34:50 +00001534 case NETDEV_PRE_UP:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00001535 case NETDEV_POST_INIT:
1536 case NETDEV_REGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 case NETDEV_CHANGE:
1538 case NETDEV_GOING_DOWN:
Patrick McHardya2835762010-02-26 06:34:51 +00001539 case NETDEV_UNREGISTER:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00001540 case NETDEV_UNREGISTER_BATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 break;
1542 default:
1543 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1544 break;
1545 }
1546 return NOTIFY_DONE;
1547}
1548
1549static struct notifier_block rtnetlink_dev_notifier = {
1550 .notifier_call = rtnetlink_event,
1551};
1552
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001553
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001554static int __net_init rtnetlink_net_init(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001555{
1556 struct sock *sk;
1557 sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX,
1558 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
1559 if (!sk)
1560 return -ENOMEM;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001561 net->rtnl = sk;
1562 return 0;
1563}
1564
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001565static void __net_exit rtnetlink_net_exit(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001566{
Denis V. Lunev775516b2008-01-18 23:55:19 -08001567 netlink_kernel_release(net->rtnl);
1568 net->rtnl = NULL;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001569}
1570
1571static struct pernet_operations rtnetlink_net_ops = {
1572 .init = rtnetlink_net_init,
1573 .exit = rtnetlink_net_exit,
1574};
1575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576void __init rtnetlink_init(void)
1577{
1578 int i;
1579
1580 rtattr_max = 0;
1581 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
1582 if (rta_max[i] > rtattr_max)
1583 rtattr_max = rta_max[i];
1584 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
1585 if (!rta_buf)
1586 panic("rtnetlink_init: cannot allocate rta_buf\n");
1587
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001588 if (register_pernet_subsys(&rtnetlink_net_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 panic("rtnetlink_init: cannot initialize rtnetlink\n");
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
1592 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07001593
1594 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo);
1595 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001596 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL);
1597 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07001598
1599 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all);
1600 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601}
1602