blob: 8121268ddbddfcd2da9845c8254fe0406b031be9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Routing netlink socket interface: protocol independent part.
7 *
8 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 *
15 * Fixes:
16 * Vitaly E. Lavrov RTA_OK arithmetics was wrong.
17 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/errno.h>
20#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/socket.h>
23#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/timer.h>
25#include <linux/string.h>
26#include <linux/sockios.h>
27#include <linux/net.h>
28#include <linux/fcntl.h>
29#include <linux/mm.h>
30#include <linux/slab.h>
31#include <linux/interrupt.h>
32#include <linux/capability.h>
33#include <linux/skbuff.h>
34#include <linux/init.h>
35#include <linux/security.h>
Stephen Hemminger6756ae42006-03-20 22:23:58 -080036#include <linux/mutex.h>
Thomas Graf18237302006-08-04 23:04:54 -070037#include <linux/if_addr.h>
Williams, Mitch Aebc08a62010-02-10 01:44:05 +000038#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <asm/uaccess.h>
41#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <linux/inet.h>
44#include <linux/netdevice.h>
45#include <net/ip.h>
46#include <net/protocol.h>
47#include <net/arp.h>
48#include <net/route.h>
49#include <net/udp.h>
50#include <net/sock.h>
51#include <net/pkt_sched.h>
Thomas Graf14c0b972006-08-04 03:38:38 -070052#include <net/fib_rules.h>
Thomas Grafe2849862007-03-22 11:48:11 -070053#include <net/rtnetlink.h>
Johannes Berg30ffee82009-07-10 09:51:35 +000054#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Eric Dumazete0d087a2009-11-07 01:26:17 -080056struct rtnl_link {
Thomas Grafe2849862007-03-22 11:48:11 -070057 rtnl_doit_func doit;
58 rtnl_dumpit_func dumpit;
59};
60
Stephen Hemminger6756ae42006-03-20 22:23:58 -080061static DEFINE_MUTEX(rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63void rtnl_lock(void)
64{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080065 mutex_lock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
Eric Dumazete0d087a2009-11-07 01:26:17 -080067EXPORT_SYMBOL(rtnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Stephen Hemminger6756ae42006-03-20 22:23:58 -080069void __rtnl_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080071 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
Stephen Hemminger6756ae42006-03-20 22:23:58 -080073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074void rtnl_unlock(void)
75{
Herbert Xu58ec3b42008-10-07 15:50:03 -070076 /* This fellow will unlock it for us. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 netdev_run_todo();
78}
Eric Dumazete0d087a2009-11-07 01:26:17 -080079EXPORT_SYMBOL(rtnl_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Stephen Hemminger6756ae42006-03-20 22:23:58 -080081int rtnl_trylock(void)
82{
83 return mutex_trylock(&rtnl_mutex);
84}
Eric Dumazete0d087a2009-11-07 01:26:17 -080085EXPORT_SYMBOL(rtnl_trylock);
Stephen Hemminger6756ae42006-03-20 22:23:58 -080086
Patrick McHardyc9c10142008-04-23 22:10:48 -070087int rtnl_is_locked(void)
88{
89 return mutex_is_locked(&rtnl_mutex);
90}
Eric Dumazete0d087a2009-11-07 01:26:17 -080091EXPORT_SYMBOL(rtnl_is_locked);
Patrick McHardyc9c10142008-04-23 22:10:48 -070092
Paul E. McKenneya898def2010-02-22 17:04:49 -080093#ifdef CONFIG_PROVE_LOCKING
94int lockdep_rtnl_is_held(void)
95{
96 return lockdep_is_held(&rtnl_mutex);
97}
98EXPORT_SYMBOL(lockdep_rtnl_is_held);
99#endif /* #ifdef CONFIG_PROVE_LOCKING */
100
Patrick McHardy25239ce2010-04-26 16:02:05 +0200101static struct rtnl_link *rtnl_msg_handlers[RTNL_FAMILY_MAX + 1];
Thomas Grafe2849862007-03-22 11:48:11 -0700102
103static inline int rtm_msgindex(int msgtype)
104{
105 int msgindex = msgtype - RTM_BASE;
106
107 /*
108 * msgindex < 0 implies someone tried to register a netlink
109 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
110 * the message type has not been added to linux/rtnetlink.h
111 */
112 BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
113
114 return msgindex;
115}
116
117static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
118{
119 struct rtnl_link *tab;
120
Patrick McHardy25239ce2010-04-26 16:02:05 +0200121 if (protocol <= RTNL_FAMILY_MAX)
Patrick McHardy0f87b1d2010-04-13 05:03:17 +0000122 tab = rtnl_msg_handlers[protocol];
123 else
124 tab = NULL;
125
Thomas Graf51057f22007-03-22 21:41:06 -0700126 if (tab == NULL || tab[msgindex].doit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700127 tab = rtnl_msg_handlers[PF_UNSPEC];
128
Thomas Graf51057f22007-03-22 21:41:06 -0700129 return tab ? tab[msgindex].doit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700130}
131
132static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
133{
134 struct rtnl_link *tab;
135
Patrick McHardy25239ce2010-04-26 16:02:05 +0200136 if (protocol <= RTNL_FAMILY_MAX)
Patrick McHardy0f87b1d2010-04-13 05:03:17 +0000137 tab = rtnl_msg_handlers[protocol];
138 else
139 tab = NULL;
140
Thomas Graf51057f22007-03-22 21:41:06 -0700141 if (tab == NULL || tab[msgindex].dumpit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700142 tab = rtnl_msg_handlers[PF_UNSPEC];
143
Thomas Graf51057f22007-03-22 21:41:06 -0700144 return tab ? tab[msgindex].dumpit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700145}
146
147/**
148 * __rtnl_register - Register a rtnetlink message type
149 * @protocol: Protocol family or PF_UNSPEC
150 * @msgtype: rtnetlink message type
151 * @doit: Function pointer called for each request message
152 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
153 *
154 * Registers the specified function pointers (at least one of them has
155 * to be non-NULL) to be called whenever a request message for the
156 * specified protocol family and message type is received.
157 *
158 * The special protocol family PF_UNSPEC may be used to define fallback
159 * function pointers for the case when no entry for the specific protocol
160 * family exists.
161 *
162 * Returns 0 on success or a negative error code.
163 */
164int __rtnl_register(int protocol, int msgtype,
165 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
166{
167 struct rtnl_link *tab;
168 int msgindex;
169
Patrick McHardy25239ce2010-04-26 16:02:05 +0200170 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700171 msgindex = rtm_msgindex(msgtype);
172
173 tab = rtnl_msg_handlers[protocol];
174 if (tab == NULL) {
175 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
176 if (tab == NULL)
177 return -ENOBUFS;
178
179 rtnl_msg_handlers[protocol] = tab;
180 }
181
182 if (doit)
183 tab[msgindex].doit = doit;
184
185 if (dumpit)
186 tab[msgindex].dumpit = dumpit;
187
188 return 0;
189}
Thomas Grafe2849862007-03-22 11:48:11 -0700190EXPORT_SYMBOL_GPL(__rtnl_register);
191
192/**
193 * rtnl_register - Register a rtnetlink message type
194 *
195 * Identical to __rtnl_register() but panics on failure. This is useful
196 * as failure of this function is very unlikely, it can only happen due
197 * to lack of memory when allocating the chain to store all message
198 * handlers for a protocol. Meant for use in init functions where lack
199 * of memory implies no sense in continueing.
200 */
201void rtnl_register(int protocol, int msgtype,
202 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
203{
204 if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0)
205 panic("Unable to register rtnetlink message handler, "
206 "protocol = %d, message type = %d\n",
207 protocol, msgtype);
208}
Thomas Grafe2849862007-03-22 11:48:11 -0700209EXPORT_SYMBOL_GPL(rtnl_register);
210
211/**
212 * rtnl_unregister - Unregister a rtnetlink message type
213 * @protocol: Protocol family or PF_UNSPEC
214 * @msgtype: rtnetlink message type
215 *
216 * Returns 0 on success or a negative error code.
217 */
218int rtnl_unregister(int protocol, int msgtype)
219{
220 int msgindex;
221
Patrick McHardy25239ce2010-04-26 16:02:05 +0200222 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700223 msgindex = rtm_msgindex(msgtype);
224
225 if (rtnl_msg_handlers[protocol] == NULL)
226 return -ENOENT;
227
228 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
229 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
230
231 return 0;
232}
Thomas Grafe2849862007-03-22 11:48:11 -0700233EXPORT_SYMBOL_GPL(rtnl_unregister);
234
235/**
236 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
237 * @protocol : Protocol family or PF_UNSPEC
238 *
239 * Identical to calling rtnl_unregster() for all registered message types
240 * of a certain protocol family.
241 */
242void rtnl_unregister_all(int protocol)
243{
Patrick McHardy25239ce2010-04-26 16:02:05 +0200244 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
Thomas Grafe2849862007-03-22 11:48:11 -0700245
246 kfree(rtnl_msg_handlers[protocol]);
247 rtnl_msg_handlers[protocol] = NULL;
248}
Thomas Grafe2849862007-03-22 11:48:11 -0700249EXPORT_SYMBOL_GPL(rtnl_unregister_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Patrick McHardy38f7b872007-06-13 12:03:51 -0700251static LIST_HEAD(link_ops);
252
253/**
254 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
255 * @ops: struct rtnl_link_ops * to register
256 *
257 * The caller must hold the rtnl_mutex. This function should be used
258 * by drivers that create devices during module initialization. It
259 * must be called before registering the devices.
260 *
261 * Returns 0 on success or a negative error code.
262 */
263int __rtnl_link_register(struct rtnl_link_ops *ops)
264{
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700265 if (!ops->dellink)
Eric Dumazet23289a32009-10-27 07:06:36 +0000266 ops->dellink = unregister_netdevice_queue;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700267
Patrick McHardy38f7b872007-06-13 12:03:51 -0700268 list_add_tail(&ops->list, &link_ops);
269 return 0;
270}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700271EXPORT_SYMBOL_GPL(__rtnl_link_register);
272
273/**
274 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
275 * @ops: struct rtnl_link_ops * to register
276 *
277 * Returns 0 on success or a negative error code.
278 */
279int rtnl_link_register(struct rtnl_link_ops *ops)
280{
281 int err;
282
283 rtnl_lock();
284 err = __rtnl_link_register(ops);
285 rtnl_unlock();
286 return err;
287}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700288EXPORT_SYMBOL_GPL(rtnl_link_register);
289
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700290static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
291{
292 struct net_device *dev;
Eric Dumazet23289a32009-10-27 07:06:36 +0000293 LIST_HEAD(list_kill);
294
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700295 for_each_netdev(net, dev) {
Eric Dumazet23289a32009-10-27 07:06:36 +0000296 if (dev->rtnl_link_ops == ops)
297 ops->dellink(dev, &list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700298 }
Eric Dumazet23289a32009-10-27 07:06:36 +0000299 unregister_netdevice_many(&list_kill);
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700300}
301
Patrick McHardy38f7b872007-06-13 12:03:51 -0700302/**
303 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
304 * @ops: struct rtnl_link_ops * to unregister
305 *
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700306 * The caller must hold the rtnl_mutex.
Patrick McHardy38f7b872007-06-13 12:03:51 -0700307 */
308void __rtnl_link_unregister(struct rtnl_link_ops *ops)
309{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700310 struct net *net;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700311
Eric W. Biederman881d9662007-09-17 11:56:21 -0700312 for_each_net(net) {
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700313 __rtnl_kill_links(net, ops);
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700314 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700315 list_del(&ops->list);
316}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700317EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
318
319/**
320 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
321 * @ops: struct rtnl_link_ops * to unregister
322 */
323void rtnl_link_unregister(struct rtnl_link_ops *ops)
324{
325 rtnl_lock();
326 __rtnl_link_unregister(ops);
327 rtnl_unlock();
328}
Patrick McHardy38f7b872007-06-13 12:03:51 -0700329EXPORT_SYMBOL_GPL(rtnl_link_unregister);
330
331static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
332{
333 const struct rtnl_link_ops *ops;
334
335 list_for_each_entry(ops, &link_ops, list) {
336 if (!strcmp(ops->kind, kind))
337 return ops;
338 }
339 return NULL;
340}
341
342static size_t rtnl_link_get_size(const struct net_device *dev)
343{
344 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
345 size_t size;
346
347 if (!ops)
348 return 0;
349
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,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000574 const struct rtnl_link_stats64 *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;
Jan Engelhardt10708f32010-03-11 09:57:29 +0000603}
604
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000605static void copy_rtnl_link_stats64(void *v, const struct rtnl_link_stats64 *b)
Jan Engelhardt10708f32010-03-11 09:57:29 +0000606{
Eric Dumazetafdcba32010-08-23 07:14:36 +0000607 memcpy(v, b, sizeof(*b));
Jan Engelhardt10708f32010-03-11 09:57:29 +0000608}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Chris Wrightc02db8c2010-05-16 01:05:45 -0700610/* All VF info */
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000611static inline int rtnl_vfinfo_size(const struct net_device *dev)
612{
Chris Wrightc02db8c2010-05-16 01:05:45 -0700613 if (dev->dev.parent && dev_is_pci(dev->dev.parent)) {
614
615 int num_vfs = dev_num_vf(dev->dev.parent);
Scott Feldman045de012010-05-28 03:42:43 -0700616 size_t size = nla_total_size(sizeof(struct nlattr));
617 size += nla_total_size(num_vfs * sizeof(struct nlattr));
618 size += num_vfs *
619 (nla_total_size(sizeof(struct ifla_vf_mac)) +
620 nla_total_size(sizeof(struct ifla_vf_vlan)) +
621 nla_total_size(sizeof(struct ifla_vf_tx_rate)));
Chris Wrightc02db8c2010-05-16 01:05:45 -0700622 return size;
623 } else
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000624 return 0;
625}
626
Scott Feldman57b61082010-05-17 22:49:55 -0700627static size_t rtnl_port_size(const struct net_device *dev)
628{
629 size_t port_size = nla_total_size(4) /* PORT_VF */
630 + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */
631 + nla_total_size(sizeof(struct ifla_port_vsi))
632 /* PORT_VSI_TYPE */
633 + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */
634 + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */
635 + nla_total_size(1) /* PROT_VDP_REQUEST */
636 + nla_total_size(2); /* PORT_VDP_RESPONSE */
637 size_t vf_ports_size = nla_total_size(sizeof(struct nlattr));
638 size_t vf_port_size = nla_total_size(sizeof(struct nlattr))
639 + port_size;
640 size_t port_self_size = nla_total_size(sizeof(struct nlattr))
641 + port_size;
642
643 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
644 return 0;
645 if (dev_num_vf(dev->dev.parent))
646 return port_self_size + vf_ports_size +
647 vf_port_size * dev_num_vf(dev->dev.parent);
648 else
649 return port_self_size;
650}
651
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000652static noinline size_t if_nlmsg_size(const struct net_device *dev)
Thomas Graf339bf982006-11-10 14:10:15 -0800653{
654 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
655 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700656 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
Thomas Graf339bf982006-11-10 14:10:15 -0800657 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
658 + nla_total_size(sizeof(struct rtnl_link_ifmap))
659 + nla_total_size(sizeof(struct rtnl_link_stats))
Jan Engelhardtadcfe192010-03-27 17:15:29 -0700660 + nla_total_size(sizeof(struct rtnl_link_stats64))
Thomas Graf339bf982006-11-10 14:10:15 -0800661 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
662 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
663 + nla_total_size(4) /* IFLA_TXQLEN */
664 + nla_total_size(4) /* IFLA_WEIGHT */
665 + nla_total_size(4) /* IFLA_MTU */
666 + nla_total_size(4) /* IFLA_LINK */
667 + nla_total_size(4) /* IFLA_MASTER */
668 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700669 + nla_total_size(1) /* IFLA_LINKMODE */
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000670 + nla_total_size(4) /* IFLA_NUM_VF */
Chris Wrightc02db8c2010-05-16 01:05:45 -0700671 + rtnl_vfinfo_size(dev) /* IFLA_VFINFO_LIST */
Scott Feldman57b61082010-05-17 22:49:55 -0700672 + rtnl_port_size(dev) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700673 + rtnl_link_get_size(dev); /* IFLA_LINKINFO */
Thomas Graf339bf982006-11-10 14:10:15 -0800674}
675
Scott Feldman57b61082010-05-17 22:49:55 -0700676static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev)
677{
678 struct nlattr *vf_ports;
679 struct nlattr *vf_port;
680 int vf;
681 int err;
682
683 vf_ports = nla_nest_start(skb, IFLA_VF_PORTS);
684 if (!vf_ports)
685 return -EMSGSIZE;
686
687 for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) {
688 vf_port = nla_nest_start(skb, IFLA_VF_PORT);
Scott Feldman8ca94182010-05-28 03:42:18 -0700689 if (!vf_port)
690 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700691 NLA_PUT_U32(skb, IFLA_PORT_VF, vf);
692 err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb);
Scott Feldman8ca94182010-05-28 03:42:18 -0700693 if (err == -EMSGSIZE)
694 goto nla_put_failure;
Scott Feldman57b61082010-05-17 22:49:55 -0700695 if (err) {
Scott Feldman57b61082010-05-17 22:49:55 -0700696 nla_nest_cancel(skb, vf_port);
697 continue;
698 }
699 nla_nest_end(skb, vf_port);
700 }
701
702 nla_nest_end(skb, vf_ports);
703
704 return 0;
Scott Feldman8ca94182010-05-28 03:42:18 -0700705
706nla_put_failure:
707 nla_nest_cancel(skb, vf_ports);
708 return -EMSGSIZE;
Scott Feldman57b61082010-05-17 22:49:55 -0700709}
710
711static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev)
712{
713 struct nlattr *port_self;
714 int err;
715
716 port_self = nla_nest_start(skb, IFLA_PORT_SELF);
717 if (!port_self)
718 return -EMSGSIZE;
719
720 err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb);
721 if (err) {
722 nla_nest_cancel(skb, port_self);
Scott Feldman8ca94182010-05-28 03:42:18 -0700723 return (err == -EMSGSIZE) ? err : 0;
Scott Feldman57b61082010-05-17 22:49:55 -0700724 }
725
726 nla_nest_end(skb, port_self);
727
728 return 0;
729}
730
731static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev)
732{
733 int err;
734
735 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
736 return 0;
737
738 err = rtnl_port_self_fill(skb, dev);
739 if (err)
740 return err;
741
742 if (dev_num_vf(dev->dev.parent)) {
743 err = rtnl_vf_ports_fill(skb, dev);
744 if (err)
745 return err;
746 }
747
748 return 0;
749}
750
Thomas Grafb60c5112006-08-04 23:05:34 -0700751static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -0700752 int type, u32 pid, u32 seq, u32 change,
753 unsigned int flags)
Thomas Grafb60c5112006-08-04 23:05:34 -0700754{
755 struct ifinfomsg *ifm;
756 struct nlmsghdr *nlh;
Eric Dumazet28172732010-07-07 14:58:56 -0700757 struct rtnl_link_stats64 temp;
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000758 const struct rtnl_link_stats64 *stats;
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700759 struct nlattr *attr;
Thomas Grafb60c5112006-08-04 23:05:34 -0700760
761 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
762 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800763 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700764
765 ifm = nlmsg_data(nlh);
766 ifm->ifi_family = AF_UNSPEC;
767 ifm->__ifi_pad = 0;
768 ifm->ifi_type = dev->type;
769 ifm->ifi_index = dev->ifindex;
770 ifm->ifi_flags = dev_get_flags(dev);
771 ifm->ifi_change = change;
772
773 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
774 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
Thomas Grafb60c5112006-08-04 23:05:34 -0700775 NLA_PUT_U8(skb, IFLA_OPERSTATE,
776 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
777 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
778 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
779
780 if (dev->ifindex != dev->iflink)
781 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
782
783 if (dev->master)
784 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
785
Patrick McHardyaf356af2009-09-04 06:41:18 +0000786 if (dev->qdisc)
787 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc->ops->id);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800788
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700789 if (dev->ifalias)
790 NLA_PUT_STRING(skb, IFLA_IFALIAS, dev->ifalias);
791
Stefan Rompfb00055a2006-03-20 17:09:11 -0800792 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 struct rtnl_link_ifmap map = {
794 .mem_start = dev->mem_start,
795 .mem_end = dev->mem_end,
796 .base_addr = dev->base_addr,
797 .irq = dev->irq,
798 .dma = dev->dma,
799 .port = dev->if_port,
800 };
Thomas Grafb60c5112006-08-04 23:05:34 -0700801 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803
804 if (dev->addr_len) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700805 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
806 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700809 attr = nla_reserve(skb, IFLA_STATS,
810 sizeof(struct rtnl_link_stats));
811 if (attr == NULL)
812 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Eric Dumazet28172732010-07-07 14:58:56 -0700814 stats = dev_get_stats(dev, &temp);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700815 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Jan Engelhardt10708f32010-03-11 09:57:29 +0000817 attr = nla_reserve(skb, IFLA_STATS64,
818 sizeof(struct rtnl_link_stats64));
819 if (attr == NULL)
820 goto nla_put_failure;
Jan Engelhardt10708f32010-03-11 09:57:29 +0000821 copy_rtnl_link_stats64(nla_data(attr), stats);
822
Scott Feldman57b61082010-05-17 22:49:55 -0700823 if (dev->dev.parent)
824 NLA_PUT_U32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent));
825
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000826 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent) {
827 int i;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000828
Chris Wrightc02db8c2010-05-16 01:05:45 -0700829 struct nlattr *vfinfo, *vf;
830 int num_vfs = dev_num_vf(dev->dev.parent);
831
Chris Wrightc02db8c2010-05-16 01:05:45 -0700832 vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST);
833 if (!vfinfo)
834 goto nla_put_failure;
835 for (i = 0; i < num_vfs; i++) {
836 struct ifla_vf_info ivi;
837 struct ifla_vf_mac vf_mac;
838 struct ifla_vf_vlan vf_vlan;
839 struct ifla_vf_tx_rate vf_tx_rate;
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000840 if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi))
841 break;
Chris Wrightc02db8c2010-05-16 01:05:45 -0700842 vf_mac.vf = vf_vlan.vf = vf_tx_rate.vf = ivi.vf;
843 memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac));
844 vf_vlan.vlan = ivi.vlan;
845 vf_vlan.qos = ivi.qos;
846 vf_tx_rate.rate = ivi.tx_rate;
847 vf = nla_nest_start(skb, IFLA_VF_INFO);
848 if (!vf) {
849 nla_nest_cancel(skb, vfinfo);
850 goto nla_put_failure;
851 }
852 NLA_PUT(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac);
853 NLA_PUT(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan);
854 NLA_PUT(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate), &vf_tx_rate);
855 nla_nest_end(skb, vf);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000856 }
Chris Wrightc02db8c2010-05-16 01:05:45 -0700857 nla_nest_end(skb, vfinfo);
Williams, Mitch Aebc08a62010-02-10 01:44:05 +0000858 }
Scott Feldman57b61082010-05-17 22:49:55 -0700859
860 if (rtnl_port_fill(skb, dev))
861 goto nla_put_failure;
862
Patrick McHardy38f7b872007-06-13 12:03:51 -0700863 if (dev->rtnl_link_ops) {
864 if (rtnl_link_fill(skb, dev) < 0)
865 goto nla_put_failure;
866 }
867
Thomas Grafb60c5112006-08-04 23:05:34 -0700868 return nlmsg_end(skb, nlh);
869
870nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800871 nlmsg_cancel(skb, nlh);
872 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
Thomas Grafb60c5112006-08-04 23:05:34 -0700875static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900877 struct net *net = sock_net(skb->sk);
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700878 int h, s_h;
879 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 struct net_device *dev;
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700881 struct hlist_head *head;
882 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700884 s_h = cb->args[0];
885 s_idx = cb->args[1];
886
887 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
888 idx = 0;
889 head = &net->dev_index_head[h];
890 hlist_for_each_entry(dev, node, head, index_hlist) {
891 if (idx < s_idx)
892 goto cont;
893 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
894 NETLINK_CB(cb->skb).pid,
895 cb->nlh->nlmsg_seq, 0,
896 NLM_F_MULTI) <= 0)
897 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700898cont:
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700899 idx++;
900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700902out:
903 cb->args[1] = idx;
904 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 return skb->len;
907}
908
Pavel Emelianove7199282007-08-08 22:16:38 -0700909const struct nla_policy ifla_policy[IFLA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -0700910 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
Patrick McHardy38f7b872007-06-13 12:03:51 -0700911 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
912 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
Thomas Graf5176f912006-08-26 20:13:18 -0700913 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -0700914 [IFLA_MTU] = { .type = NLA_U32 },
Thomas Graf76e87302008-02-19 16:12:08 -0800915 [IFLA_LINK] = { .type = NLA_U32 },
Thomas Grafda5e0492006-08-10 21:17:37 -0700916 [IFLA_TXQLEN] = { .type = NLA_U32 },
917 [IFLA_WEIGHT] = { .type = NLA_U32 },
918 [IFLA_OPERSTATE] = { .type = NLA_U8 },
919 [IFLA_LINKMODE] = { .type = NLA_U8 },
Thomas Graf76e87302008-02-19 16:12:08 -0800920 [IFLA_LINKINFO] = { .type = NLA_NESTED },
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200921 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700922 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
Chris Wrightc02db8c2010-05-16 01:05:45 -0700923 [IFLA_VFINFO_LIST] = {. type = NLA_NESTED },
Scott Feldman57b61082010-05-17 22:49:55 -0700924 [IFLA_VF_PORTS] = { .type = NLA_NESTED },
925 [IFLA_PORT_SELF] = { .type = NLA_NESTED },
Thomas Grafda5e0492006-08-10 21:17:37 -0700926};
Eric Dumazete0d087a2009-11-07 01:26:17 -0800927EXPORT_SYMBOL(ifla_policy);
Thomas Grafda5e0492006-08-10 21:17:37 -0700928
Patrick McHardy38f7b872007-06-13 12:03:51 -0700929static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
930 [IFLA_INFO_KIND] = { .type = NLA_STRING },
931 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
932};
933
Chris Wrightc02db8c2010-05-16 01:05:45 -0700934static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = {
935 [IFLA_VF_INFO] = { .type = NLA_NESTED },
936};
937
938static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
939 [IFLA_VF_MAC] = { .type = NLA_BINARY,
940 .len = sizeof(struct ifla_vf_mac) },
941 [IFLA_VF_VLAN] = { .type = NLA_BINARY,
942 .len = sizeof(struct ifla_vf_vlan) },
943 [IFLA_VF_TX_RATE] = { .type = NLA_BINARY,
944 .len = sizeof(struct ifla_vf_tx_rate) },
945};
946
Scott Feldman57b61082010-05-17 22:49:55 -0700947static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = {
948 [IFLA_PORT_VF] = { .type = NLA_U32 },
949 [IFLA_PORT_PROFILE] = { .type = NLA_STRING,
950 .len = PORT_PROFILE_MAX },
951 [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY,
952 .len = sizeof(struct ifla_port_vsi)},
953 [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY,
954 .len = PORT_UUID_MAX },
955 [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING,
956 .len = PORT_UUID_MAX },
957 [IFLA_PORT_REQUEST] = { .type = NLA_U8, },
958 [IFLA_PORT_RESPONSE] = { .type = NLA_U16, },
959};
960
Eric W. Biederman81adee42009-11-08 00:53:51 -0800961struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
962{
963 struct net *net;
964 /* Examine the link attributes and figure out which
965 * network namespace we are talking about.
966 */
967 if (tb[IFLA_NET_NS_PID])
968 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
969 else
970 net = get_net(src_net);
971 return net;
972}
973EXPORT_SYMBOL(rtnl_link_get_net);
974
Thomas Graf1840bb12008-02-23 19:54:36 -0800975static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
976{
977 if (dev) {
978 if (tb[IFLA_ADDRESS] &&
979 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
980 return -EINVAL;
981
982 if (tb[IFLA_BROADCAST] &&
983 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
984 return -EINVAL;
985 }
986
987 return 0;
988}
989
Chris Wrightc02db8c2010-05-16 01:05:45 -0700990static int do_setvfinfo(struct net_device *dev, struct nlattr *attr)
991{
992 int rem, err = -EINVAL;
993 struct nlattr *vf;
994 const struct net_device_ops *ops = dev->netdev_ops;
995
996 nla_for_each_nested(vf, attr, rem) {
997 switch (nla_type(vf)) {
998 case IFLA_VF_MAC: {
999 struct ifla_vf_mac *ivm;
1000 ivm = nla_data(vf);
1001 err = -EOPNOTSUPP;
1002 if (ops->ndo_set_vf_mac)
1003 err = ops->ndo_set_vf_mac(dev, ivm->vf,
1004 ivm->mac);
1005 break;
1006 }
1007 case IFLA_VF_VLAN: {
1008 struct ifla_vf_vlan *ivv;
1009 ivv = nla_data(vf);
1010 err = -EOPNOTSUPP;
1011 if (ops->ndo_set_vf_vlan)
1012 err = ops->ndo_set_vf_vlan(dev, ivv->vf,
1013 ivv->vlan,
1014 ivv->qos);
1015 break;
1016 }
1017 case IFLA_VF_TX_RATE: {
1018 struct ifla_vf_tx_rate *ivt;
1019 ivt = nla_data(vf);
1020 err = -EOPNOTSUPP;
1021 if (ops->ndo_set_vf_tx_rate)
1022 err = ops->ndo_set_vf_tx_rate(dev, ivt->vf,
1023 ivt->rate);
1024 break;
1025 }
1026 default:
1027 err = -EINVAL;
1028 break;
1029 }
1030 if (err)
1031 break;
1032 }
1033 return err;
1034}
1035
Patrick McHardy0157f602007-06-13 12:03:36 -07001036static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
Patrick McHardy38f7b872007-06-13 12:03:51 -07001037 struct nlattr **tb, char *ifname, int modified)
Patrick McHardy0157f602007-06-13 12:03:36 -07001038{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001039 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001040 int send_addr_notify = 0;
Patrick McHardy0157f602007-06-13 12:03:36 -07001041 int err;
1042
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001043 if (tb[IFLA_NET_NS_PID]) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001044 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +02001045 if (IS_ERR(net)) {
1046 err = PTR_ERR(net);
1047 goto errout;
1048 }
1049 err = dev_change_net_namespace(dev, net, ifname);
1050 put_net(net);
1051 if (err)
1052 goto errout;
1053 modified = 1;
1054 }
1055
Patrick McHardy0157f602007-06-13 12:03:36 -07001056 if (tb[IFLA_MAP]) {
1057 struct rtnl_link_ifmap *u_map;
1058 struct ifmap k_map;
1059
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001060 if (!ops->ndo_set_config) {
Patrick McHardy0157f602007-06-13 12:03:36 -07001061 err = -EOPNOTSUPP;
1062 goto errout;
1063 }
1064
1065 if (!netif_device_present(dev)) {
1066 err = -ENODEV;
1067 goto errout;
1068 }
1069
1070 u_map = nla_data(tb[IFLA_MAP]);
1071 k_map.mem_start = (unsigned long) u_map->mem_start;
1072 k_map.mem_end = (unsigned long) u_map->mem_end;
1073 k_map.base_addr = (unsigned short) u_map->base_addr;
1074 k_map.irq = (unsigned char) u_map->irq;
1075 k_map.dma = (unsigned char) u_map->dma;
1076 k_map.port = (unsigned char) u_map->port;
1077
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001078 err = ops->ndo_set_config(dev, &k_map);
Patrick McHardy0157f602007-06-13 12:03:36 -07001079 if (err < 0)
1080 goto errout;
1081
1082 modified = 1;
1083 }
1084
1085 if (tb[IFLA_ADDRESS]) {
1086 struct sockaddr *sa;
1087 int len;
1088
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001089 if (!ops->ndo_set_mac_address) {
Patrick McHardy0157f602007-06-13 12:03:36 -07001090 err = -EOPNOTSUPP;
1091 goto errout;
1092 }
1093
1094 if (!netif_device_present(dev)) {
1095 err = -ENODEV;
1096 goto errout;
1097 }
1098
1099 len = sizeof(sa_family_t) + dev->addr_len;
1100 sa = kmalloc(len, GFP_KERNEL);
1101 if (!sa) {
1102 err = -ENOMEM;
1103 goto errout;
1104 }
1105 sa->sa_family = dev->type;
1106 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
1107 dev->addr_len);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001108 err = ops->ndo_set_mac_address(dev, sa);
Patrick McHardy0157f602007-06-13 12:03:36 -07001109 kfree(sa);
1110 if (err)
1111 goto errout;
1112 send_addr_notify = 1;
1113 modified = 1;
1114 }
1115
1116 if (tb[IFLA_MTU]) {
1117 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1118 if (err < 0)
1119 goto errout;
1120 modified = 1;
1121 }
1122
1123 /*
1124 * Interface selected by interface index but interface
1125 * name provided implies that a name change has been
1126 * requested.
1127 */
1128 if (ifm->ifi_index > 0 && ifname[0]) {
1129 err = dev_change_name(dev, ifname);
1130 if (err < 0)
1131 goto errout;
1132 modified = 1;
1133 }
1134
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001135 if (tb[IFLA_IFALIAS]) {
1136 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
1137 nla_len(tb[IFLA_IFALIAS]));
1138 if (err < 0)
1139 goto errout;
1140 modified = 1;
1141 }
1142
Patrick McHardy0157f602007-06-13 12:03:36 -07001143 if (tb[IFLA_BROADCAST]) {
1144 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
1145 send_addr_notify = 1;
1146 }
1147
1148 if (ifm->ifi_flags || ifm->ifi_change) {
Patrick McHardy3729d502010-02-26 06:34:54 +00001149 err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
Johannes Berg5f9021c2008-11-16 23:20:31 -08001150 if (err < 0)
1151 goto errout;
Patrick McHardy0157f602007-06-13 12:03:36 -07001152 }
1153
David S. Miller93b2d4a2008-02-17 18:35:07 -08001154 if (tb[IFLA_TXQLEN])
1155 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
Patrick McHardy0157f602007-06-13 12:03:36 -07001156
Patrick McHardy0157f602007-06-13 12:03:36 -07001157 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001158 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Patrick McHardy0157f602007-06-13 12:03:36 -07001159
1160 if (tb[IFLA_LINKMODE]) {
David S. Miller93b2d4a2008-02-17 18:35:07 -08001161 write_lock_bh(&dev_base_lock);
1162 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1163 write_unlock_bh(&dev_base_lock);
Patrick McHardy0157f602007-06-13 12:03:36 -07001164 }
1165
Chris Wrightc02db8c2010-05-16 01:05:45 -07001166 if (tb[IFLA_VFINFO_LIST]) {
1167 struct nlattr *attr;
1168 int rem;
1169 nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) {
David Howells253683b2010-05-21 02:25:27 +00001170 if (nla_type(attr) != IFLA_VF_INFO) {
1171 err = -EINVAL;
Chris Wrightc02db8c2010-05-16 01:05:45 -07001172 goto errout;
David Howells253683b2010-05-21 02:25:27 +00001173 }
Chris Wrightc02db8c2010-05-16 01:05:45 -07001174 err = do_setvfinfo(dev, attr);
1175 if (err < 0)
1176 goto errout;
1177 modified = 1;
1178 }
Williams, Mitch Aebc08a62010-02-10 01:44:05 +00001179 }
Patrick McHardy0157f602007-06-13 12:03:36 -07001180 err = 0;
1181
Scott Feldman57b61082010-05-17 22:49:55 -07001182 if (tb[IFLA_VF_PORTS]) {
1183 struct nlattr *port[IFLA_PORT_MAX+1];
1184 struct nlattr *attr;
1185 int vf;
1186 int rem;
1187
1188 err = -EOPNOTSUPP;
1189 if (!ops->ndo_set_vf_port)
1190 goto errout;
1191
1192 nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) {
1193 if (nla_type(attr) != IFLA_VF_PORT)
1194 continue;
1195 err = nla_parse_nested(port, IFLA_PORT_MAX,
1196 attr, ifla_port_policy);
1197 if (err < 0)
1198 goto errout;
1199 if (!port[IFLA_PORT_VF]) {
1200 err = -EOPNOTSUPP;
1201 goto errout;
1202 }
1203 vf = nla_get_u32(port[IFLA_PORT_VF]);
1204 err = ops->ndo_set_vf_port(dev, vf, port);
1205 if (err < 0)
1206 goto errout;
1207 modified = 1;
1208 }
1209 }
1210 err = 0;
1211
1212 if (tb[IFLA_PORT_SELF]) {
1213 struct nlattr *port[IFLA_PORT_MAX+1];
1214
1215 err = nla_parse_nested(port, IFLA_PORT_MAX,
1216 tb[IFLA_PORT_SELF], ifla_port_policy);
1217 if (err < 0)
1218 goto errout;
1219
1220 err = -EOPNOTSUPP;
1221 if (ops->ndo_set_vf_port)
1222 err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port);
1223 if (err < 0)
1224 goto errout;
1225 modified = 1;
1226 }
1227 err = 0;
1228
Patrick McHardy0157f602007-06-13 12:03:36 -07001229errout:
1230 if (err < 0 && modified && net_ratelimit())
1231 printk(KERN_WARNING "A link change request failed with "
1232 "some changes comitted already. Interface %s may "
1233 "have been left with an inconsistent configuration, "
1234 "please check.\n", dev->name);
1235
1236 if (send_addr_notify)
1237 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
1238 return err;
1239}
1240
Thomas Grafda5e0492006-08-10 21:17:37 -07001241static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001243 struct net *net = sock_net(skb->sk);
Thomas Grafda5e0492006-08-10 21:17:37 -07001244 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -07001246 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -07001247 struct nlattr *tb[IFLA_MAX+1];
1248 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Thomas Grafda5e0492006-08-10 21:17:37 -07001250 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1251 if (err < 0)
1252 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Thomas Graf5176f912006-08-26 20:13:18 -07001254 if (tb[IFLA_IFNAME])
1255 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -07001256 else
1257 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -07001260 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -07001261 if (ifm->ifi_index > 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001262 dev = __dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -07001263 else if (tb[IFLA_IFNAME])
Eric Dumazeta3d12892009-10-21 10:59:31 +00001264 dev = __dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -07001265 else
1266 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Thomas Grafda5e0492006-08-10 21:17:37 -07001268 if (dev == NULL) {
1269 err = -ENODEV;
1270 goto errout;
1271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Eric Dumazete0d087a2009-11-07 01:26:17 -08001273 err = validate_linkmsg(dev, tb);
1274 if (err < 0)
Eric Dumazeta3d12892009-10-21 10:59:31 +00001275 goto errout;
Thomas Grafda5e0492006-08-10 21:17:37 -07001276
Patrick McHardy38f7b872007-06-13 12:03:51 -07001277 err = do_setlink(dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -07001278errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return err;
1280}
1281
Patrick McHardy38f7b872007-06-13 12:03:51 -07001282static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1283{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001284 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001285 const struct rtnl_link_ops *ops;
1286 struct net_device *dev;
1287 struct ifinfomsg *ifm;
1288 char ifname[IFNAMSIZ];
1289 struct nlattr *tb[IFLA_MAX+1];
1290 int err;
1291
1292 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1293 if (err < 0)
1294 return err;
1295
1296 if (tb[IFLA_IFNAME])
1297 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1298
1299 ifm = nlmsg_data(nlh);
1300 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001301 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001302 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001303 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001304 else
1305 return -EINVAL;
1306
1307 if (!dev)
1308 return -ENODEV;
1309
1310 ops = dev->rtnl_link_ops;
1311 if (!ops)
1312 return -EOPNOTSUPP;
1313
Eric Dumazet23289a32009-10-27 07:06:36 +00001314 ops->dellink(dev, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001315 return 0;
1316}
1317
Patrick McHardy3729d502010-02-26 06:34:54 +00001318int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
1319{
1320 unsigned int old_flags;
1321 int err;
1322
1323 old_flags = dev->flags;
1324 if (ifm && (ifm->ifi_flags || ifm->ifi_change)) {
1325 err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
1326 if (err < 0)
1327 return err;
1328 }
1329
1330 dev->rtnl_link_state = RTNL_LINK_INITIALIZED;
1331 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1332
1333 __dev_notify_flags(dev, old_flags);
1334 return 0;
1335}
1336EXPORT_SYMBOL(rtnl_configure_link);
1337
Eric W. Biederman81adee42009-11-08 00:53:51 -08001338struct net_device *rtnl_create_link(struct net *src_net, struct net *net,
1339 char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[])
Pavel Emelianove7199282007-08-08 22:16:38 -07001340{
1341 int err;
1342 struct net_device *dev;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001343 unsigned int num_queues = 1;
1344 unsigned int real_num_queues = 1;
Pavel Emelianove7199282007-08-08 22:16:38 -07001345
Eric Dumazet2e59af32009-09-02 18:03:00 -07001346 if (ops->get_tx_queues) {
Eric W. Biederman81adee42009-11-08 00:53:51 -08001347 err = ops->get_tx_queues(src_net, tb, &num_queues,
Eric Dumazete0d087a2009-11-07 01:26:17 -08001348 &real_num_queues);
Eric Dumazet2e59af32009-09-02 18:03:00 -07001349 if (err)
1350 goto err;
1351 }
Pavel Emelianove7199282007-08-08 22:16:38 -07001352 err = -ENOMEM;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001353 dev = alloc_netdev_mq(ops->priv_size, ifname, ops->setup, num_queues);
Pavel Emelianove7199282007-08-08 22:16:38 -07001354 if (!dev)
1355 goto err;
1356
Eric W. Biederman81adee42009-11-08 00:53:51 -08001357 dev_net_set(dev, net);
1358 dev->rtnl_link_ops = ops;
Patrick McHardy3729d502010-02-26 06:34:54 +00001359 dev->rtnl_link_state = RTNL_LINK_INITIALIZING;
Eric Dumazet2e59af32009-09-02 18:03:00 -07001360 dev->real_num_tx_queues = real_num_queues;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001361
Pavel Emelianove7199282007-08-08 22:16:38 -07001362 if (strchr(dev->name, '%')) {
1363 err = dev_alloc_name(dev, dev->name);
1364 if (err < 0)
1365 goto err_free;
1366 }
1367
Pavel Emelianove7199282007-08-08 22:16:38 -07001368 if (tb[IFLA_MTU])
1369 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
1370 if (tb[IFLA_ADDRESS])
1371 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1372 nla_len(tb[IFLA_ADDRESS]));
1373 if (tb[IFLA_BROADCAST])
1374 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1375 nla_len(tb[IFLA_BROADCAST]));
1376 if (tb[IFLA_TXQLEN])
1377 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1378 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001379 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001380 if (tb[IFLA_LINKMODE])
1381 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1382
1383 return dev;
1384
1385err_free:
1386 free_netdev(dev);
1387err:
1388 return ERR_PTR(err);
1389}
Eric Dumazete0d087a2009-11-07 01:26:17 -08001390EXPORT_SYMBOL(rtnl_create_link);
Pavel Emelianove7199282007-08-08 22:16:38 -07001391
Patrick McHardy38f7b872007-06-13 12:03:51 -07001392static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1393{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001394 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001395 const struct rtnl_link_ops *ops;
1396 struct net_device *dev;
1397 struct ifinfomsg *ifm;
1398 char kind[MODULE_NAME_LEN];
1399 char ifname[IFNAMSIZ];
1400 struct nlattr *tb[IFLA_MAX+1];
1401 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1402 int err;
1403
Johannes Berg95a5afc2008-10-16 15:24:51 -07001404#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001405replay:
Thomas Graf8072f082007-07-31 14:13:50 -07001406#endif
Patrick McHardy38f7b872007-06-13 12:03:51 -07001407 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1408 if (err < 0)
1409 return err;
1410
1411 if (tb[IFLA_IFNAME])
1412 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1413 else
1414 ifname[0] = '\0';
1415
1416 ifm = nlmsg_data(nlh);
1417 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001418 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001419 else if (ifname[0])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001420 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001421 else
1422 dev = NULL;
1423
Eric Dumazete0d087a2009-11-07 01:26:17 -08001424 err = validate_linkmsg(dev, tb);
1425 if (err < 0)
Thomas Graf1840bb12008-02-23 19:54:36 -08001426 return err;
1427
Patrick McHardy38f7b872007-06-13 12:03:51 -07001428 if (tb[IFLA_LINKINFO]) {
1429 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1430 tb[IFLA_LINKINFO], ifla_info_policy);
1431 if (err < 0)
1432 return err;
1433 } else
1434 memset(linkinfo, 0, sizeof(linkinfo));
1435
1436 if (linkinfo[IFLA_INFO_KIND]) {
1437 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1438 ops = rtnl_link_ops_get(kind);
1439 } else {
1440 kind[0] = '\0';
1441 ops = NULL;
1442 }
1443
1444 if (1) {
1445 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001446 struct net *dest_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -07001447
1448 if (ops) {
1449 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1450 err = nla_parse_nested(attr, ops->maxtype,
1451 linkinfo[IFLA_INFO_DATA],
1452 ops->policy);
1453 if (err < 0)
1454 return err;
1455 data = attr;
1456 }
1457 if (ops->validate) {
1458 err = ops->validate(tb, data);
1459 if (err < 0)
1460 return err;
1461 }
1462 }
1463
1464 if (dev) {
1465 int modified = 0;
1466
1467 if (nlh->nlmsg_flags & NLM_F_EXCL)
1468 return -EEXIST;
1469 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1470 return -EOPNOTSUPP;
1471
1472 if (linkinfo[IFLA_INFO_DATA]) {
1473 if (!ops || ops != dev->rtnl_link_ops ||
1474 !ops->changelink)
1475 return -EOPNOTSUPP;
1476
1477 err = ops->changelink(dev, tb, data);
1478 if (err < 0)
1479 return err;
1480 modified = 1;
1481 }
1482
1483 return do_setlink(dev, ifm, tb, ifname, modified);
1484 }
1485
1486 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
1487 return -ENODEV;
1488
Patrick McHardy3729d502010-02-26 06:34:54 +00001489 if (ifm->ifi_index)
Patrick McHardy38f7b872007-06-13 12:03:51 -07001490 return -EOPNOTSUPP;
Patrick McHardy0e068772007-07-11 19:42:31 -07001491 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
Patrick McHardy38f7b872007-06-13 12:03:51 -07001492 return -EOPNOTSUPP;
1493
1494 if (!ops) {
Johannes Berg95a5afc2008-10-16 15:24:51 -07001495#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001496 if (kind[0]) {
1497 __rtnl_unlock();
1498 request_module("rtnl-link-%s", kind);
1499 rtnl_lock();
1500 ops = rtnl_link_ops_get(kind);
1501 if (ops)
1502 goto replay;
1503 }
1504#endif
1505 return -EOPNOTSUPP;
1506 }
1507
1508 if (!ifname[0])
1509 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001510
Eric W. Biederman81adee42009-11-08 00:53:51 -08001511 dest_net = rtnl_link_get_net(net, tb);
1512 dev = rtnl_create_link(net, dest_net, ifname, ops, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001513
Pavel Emelianove7199282007-08-08 22:16:38 -07001514 if (IS_ERR(dev))
1515 err = PTR_ERR(dev);
1516 else if (ops->newlink)
Eric W. Biederman81adee42009-11-08 00:53:51 -08001517 err = ops->newlink(net, dev, tb, data);
Patrick McHardy2d85cba2007-07-11 19:42:13 -07001518 else
1519 err = register_netdevice(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001520
1521 if (err < 0 && !IS_ERR(dev))
Patrick McHardy38f7b872007-06-13 12:03:51 -07001522 free_netdev(dev);
Dan Carpenter80032cf2010-04-21 23:53:27 +00001523 if (err < 0)
Patrick McHardy3729d502010-02-26 06:34:54 +00001524 goto out;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001525
Patrick McHardy3729d502010-02-26 06:34:54 +00001526 err = rtnl_configure_link(dev, ifm);
1527 if (err < 0)
1528 unregister_netdevice(dev);
1529out:
Eric W. Biederman81adee42009-11-08 00:53:51 -08001530 put_net(dest_net);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001531 return err;
1532 }
1533}
1534
Thomas Grafb60c5112006-08-04 23:05:34 -07001535static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001536{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001537 struct net *net = sock_net(skb->sk);
Thomas Grafb60c5112006-08-04 23:05:34 -07001538 struct ifinfomsg *ifm;
Eric Dumazeta3d12892009-10-21 10:59:31 +00001539 char ifname[IFNAMSIZ];
Thomas Grafb60c5112006-08-04 23:05:34 -07001540 struct nlattr *tb[IFLA_MAX+1];
1541 struct net_device *dev = NULL;
1542 struct sk_buff *nskb;
Thomas Graf339bf982006-11-10 14:10:15 -08001543 int err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001544
Thomas Grafb60c5112006-08-04 23:05:34 -07001545 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1546 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07001547 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07001548
Eric Dumazeta3d12892009-10-21 10:59:31 +00001549 if (tb[IFLA_IFNAME])
1550 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1551
Thomas Grafb60c5112006-08-04 23:05:34 -07001552 ifm = nlmsg_data(nlh);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001553 if (ifm->ifi_index > 0)
1554 dev = __dev_get_by_index(net, ifm->ifi_index);
1555 else if (tb[IFLA_IFNAME])
1556 dev = __dev_get_by_name(net, ifname);
1557 else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001558 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07001559
Eric Dumazeta3d12892009-10-21 10:59:31 +00001560 if (dev == NULL)
1561 return -ENODEV;
1562
Patrick McHardy38f7b872007-06-13 12:03:51 -07001563 nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001564 if (nskb == NULL)
1565 return -ENOBUFS;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001566
Patrick McHardy575c3e22007-05-22 17:00:49 -07001567 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1568 nlh->nlmsg_seq, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001569 if (err < 0) {
1570 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1571 WARN_ON(err == -EMSGSIZE);
1572 kfree_skb(nskb);
Eric Dumazeta3d12892009-10-21 10:59:31 +00001573 } else
1574 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid);
Thomas Grafb60c5112006-08-04 23:05:34 -07001575
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001576 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001577}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001578
Adrian Bunk42bad1d2007-04-26 00:57:41 -07001579static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
1581 int idx;
1582 int s_idx = cb->family;
1583
1584 if (s_idx == 0)
1585 s_idx = 1;
Patrick McHardy25239ce2010-04-26 16:02:05 +02001586 for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 int type = cb->nlh->nlmsg_type-RTM_BASE;
1588 if (idx < s_idx || idx == PF_PACKET)
1589 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07001590 if (rtnl_msg_handlers[idx] == NULL ||
1591 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 continue;
1593 if (idx > s_idx)
1594 memset(&cb->args[0], 0, sizeof(cb->args));
Thomas Grafe2849862007-03-22 11:48:11 -07001595 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 break;
1597 }
1598 cb->family = idx;
1599
1600 return skb->len;
1601}
1602
1603void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1604{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001605 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001607 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Patrick McHardy38f7b872007-06-13 12:03:51 -07001609 skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001610 if (skb == NULL)
1611 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Patrick McHardy575c3e22007-05-22 17:00:49 -07001613 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001614 if (err < 0) {
1615 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1616 WARN_ON(err == -EMSGSIZE);
1617 kfree_skb(skb);
1618 goto errout;
1619 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001620 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1621 return;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001622errout:
1623 if (err < 0)
Eric W. Biederman4b3da702007-11-19 22:27:40 -08001624 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625}
1626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627/* Protected by RTNL sempahore. */
1628static struct rtattr **rta_buf;
1629static int rtattr_max;
1630
1631/* Process one rtnetlink message. */
1632
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001633static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001635 struct net *net = sock_net(skb->sk);
Thomas Grafe2849862007-03-22 11:48:11 -07001636 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 int sz_idx, kind;
1638 int min_len;
1639 int family;
1640 int type;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001641 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07001645 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647 type -= RTM_BASE;
1648
1649 /* All the messages must have at least 1 byte length */
1650 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1651 return 0;
1652
Eric Dumazete0d087a2009-11-07 01:26:17 -08001653 family = ((struct rtgenmsg *)NLMSG_DATA(nlh))->rtgen_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 sz_idx = type>>2;
1655 kind = type&3;
1656
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001657 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
1658 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001661 struct sock *rtnl;
Thomas Grafe2849862007-03-22 11:48:11 -07001662 rtnl_dumpit_func dumpit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Thomas Grafe2849862007-03-22 11:48:11 -07001664 dumpit = rtnl_get_dumpit(family, type);
1665 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001666 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001668 __rtnl_unlock();
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001669 rtnl = net->rtnl;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001670 err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL);
1671 rtnl_lock();
1672 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 }
1674
1675 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
1676
1677 min_len = rtm_min[sz_idx];
1678 if (nlh->nlmsg_len < min_len)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001679 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 if (nlh->nlmsg_len > min_len) {
1682 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
Eric Dumazete0d087a2009-11-07 01:26:17 -08001683 struct rtattr *attr = (void *)nlh + NLMSG_ALIGN(min_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 while (RTA_OK(attr, attrlen)) {
1686 unsigned flavor = attr->rta_type;
1687 if (flavor) {
1688 if (flavor > rta_max[sz_idx])
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001689 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 rta_buf[flavor-1] = attr;
1691 }
1692 attr = RTA_NEXT(attr, attrlen);
1693 }
1694 }
1695
Thomas Grafe2849862007-03-22 11:48:11 -07001696 doit = rtnl_get_doit(family, type);
1697 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001698 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001700 return doit(skb, nlh, (void *)&rta_buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701}
1702
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001703static void rtnetlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001705 rtnl_lock();
1706 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
1707 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708}
1709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
1711{
1712 struct net_device *dev = ptr;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 case NETDEV_UP:
1716 case NETDEV_DOWN:
Patrick McHardy10de05a2010-02-26 06:34:50 +00001717 case NETDEV_PRE_UP:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00001718 case NETDEV_POST_INIT:
1719 case NETDEV_REGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 case NETDEV_CHANGE:
Patrick McHardy755d0e72010-03-19 04:42:24 +00001721 case NETDEV_PRE_TYPE_CHANGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 case NETDEV_GOING_DOWN:
Patrick McHardya2835762010-02-26 06:34:51 +00001723 case NETDEV_UNREGISTER:
Eric W. Biedermand90a9092009-12-12 22:11:15 +00001724 case NETDEV_UNREGISTER_BATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 break;
1726 default:
1727 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1728 break;
1729 }
1730 return NOTIFY_DONE;
1731}
1732
1733static struct notifier_block rtnetlink_dev_notifier = {
1734 .notifier_call = rtnetlink_event,
1735};
1736
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001737
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001738static int __net_init rtnetlink_net_init(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001739{
1740 struct sock *sk;
1741 sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX,
1742 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
1743 if (!sk)
1744 return -ENOMEM;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001745 net->rtnl = sk;
1746 return 0;
1747}
1748
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001749static void __net_exit rtnetlink_net_exit(struct net *net)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001750{
Denis V. Lunev775516b2008-01-18 23:55:19 -08001751 netlink_kernel_release(net->rtnl);
1752 net->rtnl = NULL;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001753}
1754
1755static struct pernet_operations rtnetlink_net_ops = {
1756 .init = rtnetlink_net_init,
1757 .exit = rtnetlink_net_exit,
1758};
1759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760void __init rtnetlink_init(void)
1761{
1762 int i;
1763
1764 rtattr_max = 0;
1765 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
1766 if (rta_max[i] > rtattr_max)
1767 rtattr_max = rta_max[i];
1768 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
1769 if (!rta_buf)
1770 panic("rtnetlink_init: cannot allocate rta_buf\n");
1771
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001772 if (register_pernet_subsys(&rtnetlink_net_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 panic("rtnetlink_init: cannot initialize rtnetlink\n");
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
1776 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07001777
1778 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo);
1779 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001780 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL);
1781 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07001782
1783 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all);
1784 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785}
1786