blob: d78030f88bd0f21733d4f06f517de5fc4fc39a67 [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>
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +020038#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <asm/uaccess.h>
41#include <asm/system.h>
42#include <asm/string.h>
43
44#include <linux/inet.h>
45#include <linux/netdevice.h>
46#include <net/ip.h>
47#include <net/protocol.h>
48#include <net/arp.h>
49#include <net/route.h>
50#include <net/udp.h>
51#include <net/sock.h>
52#include <net/pkt_sched.h>
Thomas Graf14c0b972006-08-04 03:38:38 -070053#include <net/fib_rules.h>
Thomas Grafe2849862007-03-22 11:48:11 -070054#include <net/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Thomas Grafe2849862007-03-22 11:48:11 -070056struct rtnl_link
57{
58 rtnl_doit_func doit;
59 rtnl_dumpit_func dumpit;
60};
61
Stephen Hemminger6756ae42006-03-20 22:23:58 -080062static DEFINE_MUTEX(rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64void rtnl_lock(void)
65{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080066 mutex_lock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
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}
79
Stephen Hemminger6756ae42006-03-20 22:23:58 -080080int rtnl_trylock(void)
81{
82 return mutex_trylock(&rtnl_mutex);
83}
84
Patrick McHardyc9c10142008-04-23 22:10:48 -070085int rtnl_is_locked(void)
86{
87 return mutex_is_locked(&rtnl_mutex);
88}
89
Adrian Bunk42bad1d2007-04-26 00:57:41 -070090static struct rtnl_link *rtnl_msg_handlers[NPROTO];
Thomas Grafe2849862007-03-22 11:48:11 -070091
92static inline int rtm_msgindex(int msgtype)
93{
94 int msgindex = msgtype - RTM_BASE;
95
96 /*
97 * msgindex < 0 implies someone tried to register a netlink
98 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
99 * the message type has not been added to linux/rtnetlink.h
100 */
101 BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
102
103 return msgindex;
104}
105
106static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
107{
108 struct rtnl_link *tab;
109
110 tab = rtnl_msg_handlers[protocol];
Thomas Graf51057f22007-03-22 21:41:06 -0700111 if (tab == NULL || tab[msgindex].doit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700112 tab = rtnl_msg_handlers[PF_UNSPEC];
113
Thomas Graf51057f22007-03-22 21:41:06 -0700114 return tab ? tab[msgindex].doit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700115}
116
117static rtnl_dumpit_func rtnl_get_dumpit(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].dumpit == 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].dumpit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700126}
127
128/**
129 * __rtnl_register - Register a rtnetlink message type
130 * @protocol: Protocol family or PF_UNSPEC
131 * @msgtype: rtnetlink message type
132 * @doit: Function pointer called for each request message
133 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
134 *
135 * Registers the specified function pointers (at least one of them has
136 * to be non-NULL) to be called whenever a request message for the
137 * specified protocol family and message type is received.
138 *
139 * The special protocol family PF_UNSPEC may be used to define fallback
140 * function pointers for the case when no entry for the specific protocol
141 * family exists.
142 *
143 * Returns 0 on success or a negative error code.
144 */
145int __rtnl_register(int protocol, int msgtype,
146 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
147{
148 struct rtnl_link *tab;
149 int msgindex;
150
151 BUG_ON(protocol < 0 || protocol >= NPROTO);
152 msgindex = rtm_msgindex(msgtype);
153
154 tab = rtnl_msg_handlers[protocol];
155 if (tab == NULL) {
156 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
157 if (tab == NULL)
158 return -ENOBUFS;
159
160 rtnl_msg_handlers[protocol] = tab;
161 }
162
163 if (doit)
164 tab[msgindex].doit = doit;
165
166 if (dumpit)
167 tab[msgindex].dumpit = dumpit;
168
169 return 0;
170}
171
172EXPORT_SYMBOL_GPL(__rtnl_register);
173
174/**
175 * rtnl_register - Register a rtnetlink message type
176 *
177 * Identical to __rtnl_register() but panics on failure. This is useful
178 * as failure of this function is very unlikely, it can only happen due
179 * to lack of memory when allocating the chain to store all message
180 * handlers for a protocol. Meant for use in init functions where lack
181 * of memory implies no sense in continueing.
182 */
183void rtnl_register(int protocol, int msgtype,
184 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
185{
186 if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0)
187 panic("Unable to register rtnetlink message handler, "
188 "protocol = %d, message type = %d\n",
189 protocol, msgtype);
190}
191
192EXPORT_SYMBOL_GPL(rtnl_register);
193
194/**
195 * rtnl_unregister - Unregister a rtnetlink message type
196 * @protocol: Protocol family or PF_UNSPEC
197 * @msgtype: rtnetlink message type
198 *
199 * Returns 0 on success or a negative error code.
200 */
201int rtnl_unregister(int protocol, int msgtype)
202{
203 int msgindex;
204
205 BUG_ON(protocol < 0 || protocol >= NPROTO);
206 msgindex = rtm_msgindex(msgtype);
207
208 if (rtnl_msg_handlers[protocol] == NULL)
209 return -ENOENT;
210
211 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
212 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
213
214 return 0;
215}
216
217EXPORT_SYMBOL_GPL(rtnl_unregister);
218
219/**
220 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
221 * @protocol : Protocol family or PF_UNSPEC
222 *
223 * Identical to calling rtnl_unregster() for all registered message types
224 * of a certain protocol family.
225 */
226void rtnl_unregister_all(int protocol)
227{
228 BUG_ON(protocol < 0 || protocol >= NPROTO);
229
230 kfree(rtnl_msg_handlers[protocol]);
231 rtnl_msg_handlers[protocol] = NULL;
232}
233
234EXPORT_SYMBOL_GPL(rtnl_unregister_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Patrick McHardy38f7b872007-06-13 12:03:51 -0700236static LIST_HEAD(link_ops);
237
238/**
239 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
240 * @ops: struct rtnl_link_ops * to register
241 *
242 * The caller must hold the rtnl_mutex. This function should be used
243 * by drivers that create devices during module initialization. It
244 * must be called before registering the devices.
245 *
246 * Returns 0 on success or a negative error code.
247 */
248int __rtnl_link_register(struct rtnl_link_ops *ops)
249{
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700250 if (!ops->dellink)
251 ops->dellink = unregister_netdevice;
252
Patrick McHardy38f7b872007-06-13 12:03:51 -0700253 list_add_tail(&ops->list, &link_ops);
254 return 0;
255}
256
257EXPORT_SYMBOL_GPL(__rtnl_link_register);
258
259/**
260 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
261 * @ops: struct rtnl_link_ops * to register
262 *
263 * Returns 0 on success or a negative error code.
264 */
265int rtnl_link_register(struct rtnl_link_ops *ops)
266{
267 int err;
268
269 rtnl_lock();
270 err = __rtnl_link_register(ops);
271 rtnl_unlock();
272 return err;
273}
274
275EXPORT_SYMBOL_GPL(rtnl_link_register);
276
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700277static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
278{
279 struct net_device *dev;
280restart:
281 for_each_netdev(net, dev) {
282 if (dev->rtnl_link_ops == ops) {
283 ops->dellink(dev);
284 goto restart;
285 }
286 }
287}
288
289void rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
290{
291 rtnl_lock();
292 __rtnl_kill_links(net, ops);
293 rtnl_unlock();
294}
295EXPORT_SYMBOL_GPL(rtnl_kill_links);
296
Patrick McHardy38f7b872007-06-13 12:03:51 -0700297/**
298 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
299 * @ops: struct rtnl_link_ops * to unregister
300 *
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700301 * The caller must hold the rtnl_mutex.
Patrick McHardy38f7b872007-06-13 12:03:51 -0700302 */
303void __rtnl_link_unregister(struct rtnl_link_ops *ops)
304{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700305 struct net *net;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700306
Eric W. Biederman881d9662007-09-17 11:56:21 -0700307 for_each_net(net) {
Pavel Emelyanov669f87b2008-04-16 00:46:52 -0700308 __rtnl_kill_links(net, ops);
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700309 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700310 list_del(&ops->list);
311}
312
313EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
314
315/**
316 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
317 * @ops: struct rtnl_link_ops * to unregister
318 */
319void rtnl_link_unregister(struct rtnl_link_ops *ops)
320{
321 rtnl_lock();
322 __rtnl_link_unregister(ops);
323 rtnl_unlock();
324}
325
326EXPORT_SYMBOL_GPL(rtnl_link_unregister);
327
328static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
329{
330 const struct rtnl_link_ops *ops;
331
332 list_for_each_entry(ops, &link_ops, list) {
333 if (!strcmp(ops->kind, kind))
334 return ops;
335 }
336 return NULL;
337}
338
339static size_t rtnl_link_get_size(const struct net_device *dev)
340{
341 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
342 size_t size;
343
344 if (!ops)
345 return 0;
346
347 size = nlmsg_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
348 nlmsg_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
349
350 if (ops->get_size)
351 /* IFLA_INFO_DATA + nested data */
352 size += nlmsg_total_size(sizeof(struct nlattr)) +
353 ops->get_size(dev);
354
355 if (ops->get_xstats_size)
356 size += ops->get_xstats_size(dev); /* IFLA_INFO_XSTATS */
357
358 return size;
359}
360
361static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
362{
363 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
364 struct nlattr *linkinfo, *data;
365 int err = -EMSGSIZE;
366
367 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
368 if (linkinfo == NULL)
369 goto out;
370
371 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
372 goto err_cancel_link;
373 if (ops->fill_xstats) {
374 err = ops->fill_xstats(skb, dev);
375 if (err < 0)
376 goto err_cancel_link;
377 }
378 if (ops->fill_info) {
379 data = nla_nest_start(skb, IFLA_INFO_DATA);
380 if (data == NULL)
381 goto err_cancel_link;
382 err = ops->fill_info(skb, dev);
383 if (err < 0)
384 goto err_cancel_data;
385 nla_nest_end(skb, data);
386 }
387
388 nla_nest_end(skb, linkinfo);
389 return 0;
390
391err_cancel_data:
392 nla_nest_cancel(skb, data);
393err_cancel_link:
394 nla_nest_cancel(skb, linkinfo);
395out:
396 return err;
397}
398
Thomas Grafdb46edc2005-05-03 14:29:39 -0700399static const int rtm_min[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Thomas Graff90a0a72005-05-03 14:29:00 -0700401 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
402 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
403 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
Thomas Graf14c0b972006-08-04 03:38:38 -0700404 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700405 [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
406 [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
407 [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
408 [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700409 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
410 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411};
412
Thomas Grafdb46edc2005-05-03 14:29:39 -0700413static const int rta_max[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Thomas Graff90a0a72005-05-03 14:29:00 -0700415 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
416 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
417 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
Thomas Graf14c0b972006-08-04 03:38:38 -0700418 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
Thomas Graff90a0a72005-05-03 14:29:00 -0700419 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
420 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
421 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
422 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423};
424
425void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
426{
427 struct rtattr *rta;
428 int size = RTA_LENGTH(attrlen);
429
430 rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
431 rta->rta_type = attrtype;
432 rta->rta_len = size;
433 memcpy(RTA_DATA(rta), data, attrlen);
Patrick McHardyb3563c42005-06-28 12:54:43 -0700434 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800437int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned group, int echo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800439 struct sock *rtnl = net->rtnl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 int err = 0;
441
Patrick McHardyac6d4392005-08-14 19:29:52 -0700442 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (echo)
444 atomic_inc(&skb->users);
445 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
446 if (echo)
447 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
448 return err;
449}
450
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800451int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
Thomas Graf2942e902006-08-15 00:30:25 -0700452{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800453 struct sock *rtnl = net->rtnl;
454
Thomas Graf2942e902006-08-15 00:30:25 -0700455 return nlmsg_unicast(rtnl, skb, pid);
456}
457
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800458void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
459 struct nlmsghdr *nlh, gfp_t flags)
Thomas Graf97676b62006-08-15 00:31:41 -0700460{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800461 struct sock *rtnl = net->rtnl;
Thomas Graf97676b62006-08-15 00:31:41 -0700462 int report = 0;
463
464 if (nlh)
465 report = nlmsg_report(nlh);
466
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800467 nlmsg_notify(rtnl, skb, pid, group, report, flags);
Thomas Graf97676b62006-08-15 00:31:41 -0700468}
469
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800470void rtnl_set_sk_err(struct net *net, u32 group, int error)
Thomas Graf97676b62006-08-15 00:31:41 -0700471{
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800472 struct sock *rtnl = net->rtnl;
473
Thomas Graf97676b62006-08-15 00:31:41 -0700474 netlink_set_err(rtnl, 0, group, error);
475}
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
478{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700479 struct nlattr *mx;
480 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Thomas Graf2d7202b2006-08-22 00:01:27 -0700482 mx = nla_nest_start(skb, RTA_METRICS);
483 if (mx == NULL)
484 return -ENOBUFS;
485
486 for (i = 0; i < RTAX_MAX; i++) {
487 if (metrics[i]) {
488 valid++;
489 NLA_PUT_U32(skb, i+1, metrics[i]);
490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
David S. Millera57d27f2006-08-22 22:20:14 -0700493 if (!valid) {
494 nla_nest_cancel(skb, mx);
495 return 0;
496 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700497
498 return nla_nest_end(skb, mx);
499
500nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700501 nla_nest_cancel(skb, mx);
502 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
Thomas Grafe3703b32006-11-27 09:27:07 -0800505int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
506 u32 ts, u32 tsage, long expires, u32 error)
507{
508 struct rta_cacheinfo ci = {
509 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
510 .rta_used = dst->__use,
511 .rta_clntref = atomic_read(&(dst->__refcnt)),
512 .rta_error = error,
513 .rta_id = id,
514 .rta_ts = ts,
515 .rta_tsage = tsage,
516 };
517
518 if (expires)
519 ci.rta_expires = jiffies_to_clock_t(expires);
520
521 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
522}
523
524EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
David S. Miller93b2d4a2008-02-17 18:35:07 -0800526static void set_operstate(struct net_device *dev, unsigned char transition)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800527{
528 unsigned char operstate = dev->operstate;
529
530 switch(transition) {
531 case IF_OPER_UP:
532 if ((operstate == IF_OPER_DORMANT ||
533 operstate == IF_OPER_UNKNOWN) &&
534 !netif_dormant(dev))
535 operstate = IF_OPER_UP;
536 break;
537
538 case IF_OPER_DORMANT:
539 if (operstate == IF_OPER_UP ||
540 operstate == IF_OPER_UNKNOWN)
541 operstate = IF_OPER_DORMANT;
542 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700543 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800544
545 if (dev->operstate != operstate) {
546 write_lock_bh(&dev_base_lock);
547 dev->operstate = operstate;
548 write_unlock_bh(&dev_base_lock);
David S. Miller93b2d4a2008-02-17 18:35:07 -0800549 netdev_state_change(dev);
550 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800551}
552
Thomas Grafb60c5112006-08-04 23:05:34 -0700553static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -0800554 const struct net_device_stats *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Thomas Grafb60c5112006-08-04 23:05:34 -0700556 a->rx_packets = b->rx_packets;
557 a->tx_packets = b->tx_packets;
558 a->rx_bytes = b->rx_bytes;
559 a->tx_bytes = b->tx_bytes;
560 a->rx_errors = b->rx_errors;
561 a->tx_errors = b->tx_errors;
562 a->rx_dropped = b->rx_dropped;
563 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Thomas Grafb60c5112006-08-04 23:05:34 -0700565 a->multicast = b->multicast;
566 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Thomas Grafb60c5112006-08-04 23:05:34 -0700568 a->rx_length_errors = b->rx_length_errors;
569 a->rx_over_errors = b->rx_over_errors;
570 a->rx_crc_errors = b->rx_crc_errors;
571 a->rx_frame_errors = b->rx_frame_errors;
572 a->rx_fifo_errors = b->rx_fifo_errors;
573 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Thomas Grafb60c5112006-08-04 23:05:34 -0700575 a->tx_aborted_errors = b->tx_aborted_errors;
576 a->tx_carrier_errors = b->tx_carrier_errors;
577 a->tx_fifo_errors = b->tx_fifo_errors;
578 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
579 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Thomas Grafb60c5112006-08-04 23:05:34 -0700581 a->rx_compressed = b->rx_compressed;
582 a->tx_compressed = b->tx_compressed;
583};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Patrick McHardy38f7b872007-06-13 12:03:51 -0700585static inline size_t if_nlmsg_size(const struct net_device *dev)
Thomas Graf339bf982006-11-10 14:10:15 -0800586{
587 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
588 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700589 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
Thomas Graf339bf982006-11-10 14:10:15 -0800590 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
591 + nla_total_size(sizeof(struct rtnl_link_ifmap))
592 + nla_total_size(sizeof(struct rtnl_link_stats))
593 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
594 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
595 + nla_total_size(4) /* IFLA_TXQLEN */
596 + nla_total_size(4) /* IFLA_WEIGHT */
597 + nla_total_size(4) /* IFLA_MTU */
598 + nla_total_size(4) /* IFLA_LINK */
599 + nla_total_size(4) /* IFLA_MASTER */
600 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700601 + nla_total_size(1) /* IFLA_LINKMODE */
602 + rtnl_link_get_size(dev); /* IFLA_LINKINFO */
Thomas Graf339bf982006-11-10 14:10:15 -0800603}
604
Thomas Grafb60c5112006-08-04 23:05:34 -0700605static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -0700606 int type, u32 pid, u32 seq, u32 change,
607 unsigned int flags)
Thomas Grafb60c5112006-08-04 23:05:34 -0700608{
David S. Millerb0e1e642008-07-08 17:42:10 -0700609 struct netdev_queue *txq;
Thomas Grafb60c5112006-08-04 23:05:34 -0700610 struct ifinfomsg *ifm;
611 struct nlmsghdr *nlh;
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -0800612 const struct net_device_stats *stats;
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700613 struct nlattr *attr;
Thomas Grafb60c5112006-08-04 23:05:34 -0700614
615 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
616 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800617 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700618
619 ifm = nlmsg_data(nlh);
620 ifm->ifi_family = AF_UNSPEC;
621 ifm->__ifi_pad = 0;
622 ifm->ifi_type = dev->type;
623 ifm->ifi_index = dev->ifindex;
624 ifm->ifi_flags = dev_get_flags(dev);
625 ifm->ifi_change = change;
626
627 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
628 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
Thomas Grafb60c5112006-08-04 23:05:34 -0700629 NLA_PUT_U8(skb, IFLA_OPERSTATE,
630 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
631 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
632 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
633
634 if (dev->ifindex != dev->iflink)
635 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
636
637 if (dev->master)
638 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
639
David S. Millere8a04642008-07-17 00:34:19 -0700640 txq = netdev_get_tx_queue(dev, 0);
David S. Millerb0e1e642008-07-08 17:42:10 -0700641 if (txq->qdisc_sleeping)
642 NLA_PUT_STRING(skb, IFLA_QDISC, txq->qdisc_sleeping->ops->id);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800643
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700644 if (dev->ifalias)
645 NLA_PUT_STRING(skb, IFLA_IFALIAS, dev->ifalias);
646
Stefan Rompfb00055a2006-03-20 17:09:11 -0800647 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 struct rtnl_link_ifmap map = {
649 .mem_start = dev->mem_start,
650 .mem_end = dev->mem_end,
651 .base_addr = dev->base_addr,
652 .irq = dev->irq,
653 .dma = dev->dma,
654 .port = dev->if_port,
655 };
Thomas Grafb60c5112006-08-04 23:05:34 -0700656 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 }
658
659 if (dev->addr_len) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700660 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
661 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700664 attr = nla_reserve(skb, IFLA_STATS,
665 sizeof(struct rtnl_link_stats));
666 if (attr == NULL)
667 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -0800669 stats = dev_get_stats(dev);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700670 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Patrick McHardy38f7b872007-06-13 12:03:51 -0700672 if (dev->rtnl_link_ops) {
673 if (rtnl_link_fill(skb, dev) < 0)
674 goto nla_put_failure;
675 }
676
Thomas Grafb60c5112006-08-04 23:05:34 -0700677 return nlmsg_end(skb, nlh);
678
679nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800680 nlmsg_cancel(skb, nlh);
681 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Thomas Grafb60c5112006-08-04 23:05:34 -0700684static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900686 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 int idx;
688 int s_idx = cb->args[0];
689 struct net_device *dev;
690
Pavel Emelianov7562f872007-05-03 15:13:45 -0700691 idx = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700692 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (idx < s_idx)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700694 goto cont;
Patrick McHardy575c3e22007-05-22 17:00:49 -0700695 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
Thomas Grafb60c5112006-08-04 23:05:34 -0700696 NETLINK_CB(cb->skb).pid,
697 cb->nlh->nlmsg_seq, 0, NLM_F_MULTI) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 break;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700699cont:
700 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 cb->args[0] = idx;
703
704 return skb->len;
705}
706
Pavel Emelianove7199282007-08-08 22:16:38 -0700707const struct nla_policy ifla_policy[IFLA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -0700708 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
Patrick McHardy38f7b872007-06-13 12:03:51 -0700709 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
710 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
Thomas Graf5176f912006-08-26 20:13:18 -0700711 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -0700712 [IFLA_MTU] = { .type = NLA_U32 },
Thomas Graf76e87302008-02-19 16:12:08 -0800713 [IFLA_LINK] = { .type = NLA_U32 },
Thomas Grafda5e0492006-08-10 21:17:37 -0700714 [IFLA_TXQLEN] = { .type = NLA_U32 },
715 [IFLA_WEIGHT] = { .type = NLA_U32 },
716 [IFLA_OPERSTATE] = { .type = NLA_U8 },
717 [IFLA_LINKMODE] = { .type = NLA_U8 },
Thomas Graf76e87302008-02-19 16:12:08 -0800718 [IFLA_LINKINFO] = { .type = NLA_NESTED },
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200719 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700720 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
Thomas Grafda5e0492006-08-10 21:17:37 -0700721};
722
Patrick McHardy38f7b872007-06-13 12:03:51 -0700723static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
724 [IFLA_INFO_KIND] = { .type = NLA_STRING },
725 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
726};
727
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200728static struct net *get_net_ns_by_pid(pid_t pid)
729{
730 struct task_struct *tsk;
731 struct net *net;
732
733 /* Lookup the network namespace */
734 net = ERR_PTR(-ESRCH);
735 rcu_read_lock();
Eric W. Biedermanceaa79c42007-10-26 22:56:12 -0700736 tsk = find_task_by_vpid(pid);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200737 if (tsk) {
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700738 struct nsproxy *nsproxy;
739 nsproxy = task_nsproxy(tsk);
740 if (nsproxy)
741 net = get_net(nsproxy->net_ns);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200742 }
743 rcu_read_unlock();
744 return net;
745}
746
Thomas Graf1840bb12008-02-23 19:54:36 -0800747static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
748{
749 if (dev) {
750 if (tb[IFLA_ADDRESS] &&
751 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
752 return -EINVAL;
753
754 if (tb[IFLA_BROADCAST] &&
755 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
756 return -EINVAL;
757 }
758
759 return 0;
760}
761
Patrick McHardy0157f602007-06-13 12:03:36 -0700762static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
Patrick McHardy38f7b872007-06-13 12:03:51 -0700763 struct nlattr **tb, char *ifname, int modified)
Patrick McHardy0157f602007-06-13 12:03:36 -0700764{
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800765 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy38f7b872007-06-13 12:03:51 -0700766 int send_addr_notify = 0;
Patrick McHardy0157f602007-06-13 12:03:36 -0700767 int err;
768
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200769 if (tb[IFLA_NET_NS_PID]) {
770 struct net *net;
771 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
772 if (IS_ERR(net)) {
773 err = PTR_ERR(net);
774 goto errout;
775 }
776 err = dev_change_net_namespace(dev, net, ifname);
777 put_net(net);
778 if (err)
779 goto errout;
780 modified = 1;
781 }
782
Patrick McHardy0157f602007-06-13 12:03:36 -0700783 if (tb[IFLA_MAP]) {
784 struct rtnl_link_ifmap *u_map;
785 struct ifmap k_map;
786
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800787 if (!ops->ndo_set_config) {
Patrick McHardy0157f602007-06-13 12:03:36 -0700788 err = -EOPNOTSUPP;
789 goto errout;
790 }
791
792 if (!netif_device_present(dev)) {
793 err = -ENODEV;
794 goto errout;
795 }
796
797 u_map = nla_data(tb[IFLA_MAP]);
798 k_map.mem_start = (unsigned long) u_map->mem_start;
799 k_map.mem_end = (unsigned long) u_map->mem_end;
800 k_map.base_addr = (unsigned short) u_map->base_addr;
801 k_map.irq = (unsigned char) u_map->irq;
802 k_map.dma = (unsigned char) u_map->dma;
803 k_map.port = (unsigned char) u_map->port;
804
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800805 err = ops->ndo_set_config(dev, &k_map);
Patrick McHardy0157f602007-06-13 12:03:36 -0700806 if (err < 0)
807 goto errout;
808
809 modified = 1;
810 }
811
812 if (tb[IFLA_ADDRESS]) {
813 struct sockaddr *sa;
814 int len;
815
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800816 if (!ops->ndo_set_mac_address) {
Patrick McHardy0157f602007-06-13 12:03:36 -0700817 err = -EOPNOTSUPP;
818 goto errout;
819 }
820
821 if (!netif_device_present(dev)) {
822 err = -ENODEV;
823 goto errout;
824 }
825
826 len = sizeof(sa_family_t) + dev->addr_len;
827 sa = kmalloc(len, GFP_KERNEL);
828 if (!sa) {
829 err = -ENOMEM;
830 goto errout;
831 }
832 sa->sa_family = dev->type;
833 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
834 dev->addr_len);
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800835 err = ops->ndo_set_mac_address(dev, sa);
Patrick McHardy0157f602007-06-13 12:03:36 -0700836 kfree(sa);
837 if (err)
838 goto errout;
839 send_addr_notify = 1;
840 modified = 1;
841 }
842
843 if (tb[IFLA_MTU]) {
844 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
845 if (err < 0)
846 goto errout;
847 modified = 1;
848 }
849
850 /*
851 * Interface selected by interface index but interface
852 * name provided implies that a name change has been
853 * requested.
854 */
855 if (ifm->ifi_index > 0 && ifname[0]) {
856 err = dev_change_name(dev, ifname);
857 if (err < 0)
858 goto errout;
859 modified = 1;
860 }
861
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700862 if (tb[IFLA_IFALIAS]) {
863 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
864 nla_len(tb[IFLA_IFALIAS]));
865 if (err < 0)
866 goto errout;
867 modified = 1;
868 }
869
Patrick McHardy0157f602007-06-13 12:03:36 -0700870 if (tb[IFLA_BROADCAST]) {
871 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
872 send_addr_notify = 1;
873 }
874
875 if (ifm->ifi_flags || ifm->ifi_change) {
876 unsigned int flags = ifm->ifi_flags;
877
878 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
879 if (ifm->ifi_change)
880 flags = (flags & ifm->ifi_change) |
881 (dev->flags & ~ifm->ifi_change);
Johannes Berg5f9021c2008-11-16 23:20:31 -0800882 err = dev_change_flags(dev, flags);
883 if (err < 0)
884 goto errout;
Patrick McHardy0157f602007-06-13 12:03:36 -0700885 }
886
David S. Miller93b2d4a2008-02-17 18:35:07 -0800887 if (tb[IFLA_TXQLEN])
888 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
Patrick McHardy0157f602007-06-13 12:03:36 -0700889
Patrick McHardy0157f602007-06-13 12:03:36 -0700890 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -0800891 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Patrick McHardy0157f602007-06-13 12:03:36 -0700892
893 if (tb[IFLA_LINKMODE]) {
David S. Miller93b2d4a2008-02-17 18:35:07 -0800894 write_lock_bh(&dev_base_lock);
895 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
896 write_unlock_bh(&dev_base_lock);
Patrick McHardy0157f602007-06-13 12:03:36 -0700897 }
898
899 err = 0;
900
901errout:
902 if (err < 0 && modified && net_ratelimit())
903 printk(KERN_WARNING "A link change request failed with "
904 "some changes comitted already. Interface %s may "
905 "have been left with an inconsistent configuration, "
906 "please check.\n", dev->name);
907
908 if (send_addr_notify)
909 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
910 return err;
911}
912
Thomas Grafda5e0492006-08-10 21:17:37 -0700913static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900915 struct net *net = sock_net(skb->sk);
Thomas Grafda5e0492006-08-10 21:17:37 -0700916 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -0700918 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -0700919 struct nlattr *tb[IFLA_MAX+1];
920 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Thomas Grafda5e0492006-08-10 21:17:37 -0700922 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
923 if (err < 0)
924 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Thomas Graf5176f912006-08-26 20:13:18 -0700926 if (tb[IFLA_IFNAME])
927 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -0700928 else
929 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -0700932 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -0700933 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700934 dev = dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -0700935 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -0700936 dev = dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -0700937 else
938 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Thomas Grafda5e0492006-08-10 21:17:37 -0700940 if (dev == NULL) {
941 err = -ENODEV;
942 goto errout;
943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Thomas Graf1840bb12008-02-23 19:54:36 -0800945 if ((err = validate_linkmsg(dev, tb)) < 0)
Thomas Grafda5e0492006-08-10 21:17:37 -0700946 goto errout_dev;
947
Patrick McHardy38f7b872007-06-13 12:03:51 -0700948 err = do_setlink(dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -0700949errout_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 dev_put(dev);
Thomas Grafda5e0492006-08-10 21:17:37 -0700951errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 return err;
953}
954
Patrick McHardy38f7b872007-06-13 12:03:51 -0700955static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
956{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900957 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -0700958 const struct rtnl_link_ops *ops;
959 struct net_device *dev;
960 struct ifinfomsg *ifm;
961 char ifname[IFNAMSIZ];
962 struct nlattr *tb[IFLA_MAX+1];
963 int err;
964
965 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
966 if (err < 0)
967 return err;
968
969 if (tb[IFLA_IFNAME])
970 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
971
972 ifm = nlmsg_data(nlh);
973 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700974 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -0700975 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -0700976 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -0700977 else
978 return -EINVAL;
979
980 if (!dev)
981 return -ENODEV;
982
983 ops = dev->rtnl_link_ops;
984 if (!ops)
985 return -EOPNOTSUPP;
986
987 ops->dellink(dev);
988 return 0;
989}
990
Eric W. Biederman881d9662007-09-17 11:56:21 -0700991struct net_device *rtnl_create_link(struct net *net, char *ifname,
Pavel Emelianove7199282007-08-08 22:16:38 -0700992 const struct rtnl_link_ops *ops, struct nlattr *tb[])
993{
994 int err;
995 struct net_device *dev;
996
997 err = -ENOMEM;
998 dev = alloc_netdev(ops->priv_size, ifname, ops->setup);
999 if (!dev)
1000 goto err;
1001
1002 if (strchr(dev->name, '%')) {
1003 err = dev_alloc_name(dev, dev->name);
1004 if (err < 0)
1005 goto err_free;
1006 }
1007
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001008 dev_net_set(dev, net);
Pavel Emelianove7199282007-08-08 22:16:38 -07001009 dev->rtnl_link_ops = ops;
1010
1011 if (tb[IFLA_MTU])
1012 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
1013 if (tb[IFLA_ADDRESS])
1014 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1015 nla_len(tb[IFLA_ADDRESS]));
1016 if (tb[IFLA_BROADCAST])
1017 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1018 nla_len(tb[IFLA_BROADCAST]));
1019 if (tb[IFLA_TXQLEN])
1020 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1021 if (tb[IFLA_OPERSTATE])
David S. Miller93b2d4a2008-02-17 18:35:07 -08001022 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
Pavel Emelianove7199282007-08-08 22:16:38 -07001023 if (tb[IFLA_LINKMODE])
1024 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1025
1026 return dev;
1027
1028err_free:
1029 free_netdev(dev);
1030err:
1031 return ERR_PTR(err);
1032}
1033
Patrick McHardy38f7b872007-06-13 12:03:51 -07001034static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1035{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001036 struct net *net = sock_net(skb->sk);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001037 const struct rtnl_link_ops *ops;
1038 struct net_device *dev;
1039 struct ifinfomsg *ifm;
1040 char kind[MODULE_NAME_LEN];
1041 char ifname[IFNAMSIZ];
1042 struct nlattr *tb[IFLA_MAX+1];
1043 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1044 int err;
1045
Johannes Berg95a5afc2008-10-16 15:24:51 -07001046#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001047replay:
Thomas Graf8072f082007-07-31 14:13:50 -07001048#endif
Patrick McHardy38f7b872007-06-13 12:03:51 -07001049 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1050 if (err < 0)
1051 return err;
1052
1053 if (tb[IFLA_IFNAME])
1054 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1055 else
1056 ifname[0] = '\0';
1057
1058 ifm = nlmsg_data(nlh);
1059 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001060 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001061 else if (ifname[0])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001062 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001063 else
1064 dev = NULL;
1065
Thomas Graf1840bb12008-02-23 19:54:36 -08001066 if ((err = validate_linkmsg(dev, tb)) < 0)
1067 return err;
1068
Patrick McHardy38f7b872007-06-13 12:03:51 -07001069 if (tb[IFLA_LINKINFO]) {
1070 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1071 tb[IFLA_LINKINFO], ifla_info_policy);
1072 if (err < 0)
1073 return err;
1074 } else
1075 memset(linkinfo, 0, sizeof(linkinfo));
1076
1077 if (linkinfo[IFLA_INFO_KIND]) {
1078 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1079 ops = rtnl_link_ops_get(kind);
1080 } else {
1081 kind[0] = '\0';
1082 ops = NULL;
1083 }
1084
1085 if (1) {
1086 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
1087
1088 if (ops) {
1089 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1090 err = nla_parse_nested(attr, ops->maxtype,
1091 linkinfo[IFLA_INFO_DATA],
1092 ops->policy);
1093 if (err < 0)
1094 return err;
1095 data = attr;
1096 }
1097 if (ops->validate) {
1098 err = ops->validate(tb, data);
1099 if (err < 0)
1100 return err;
1101 }
1102 }
1103
1104 if (dev) {
1105 int modified = 0;
1106
1107 if (nlh->nlmsg_flags & NLM_F_EXCL)
1108 return -EEXIST;
1109 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1110 return -EOPNOTSUPP;
1111
1112 if (linkinfo[IFLA_INFO_DATA]) {
1113 if (!ops || ops != dev->rtnl_link_ops ||
1114 !ops->changelink)
1115 return -EOPNOTSUPP;
1116
1117 err = ops->changelink(dev, tb, data);
1118 if (err < 0)
1119 return err;
1120 modified = 1;
1121 }
1122
1123 return do_setlink(dev, ifm, tb, ifname, modified);
1124 }
1125
1126 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
1127 return -ENODEV;
1128
1129 if (ifm->ifi_index || ifm->ifi_flags || ifm->ifi_change)
1130 return -EOPNOTSUPP;
Patrick McHardy0e068772007-07-11 19:42:31 -07001131 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
Patrick McHardy38f7b872007-06-13 12:03:51 -07001132 return -EOPNOTSUPP;
1133
1134 if (!ops) {
Johannes Berg95a5afc2008-10-16 15:24:51 -07001135#ifdef CONFIG_MODULES
Patrick McHardy38f7b872007-06-13 12:03:51 -07001136 if (kind[0]) {
1137 __rtnl_unlock();
1138 request_module("rtnl-link-%s", kind);
1139 rtnl_lock();
1140 ops = rtnl_link_ops_get(kind);
1141 if (ops)
1142 goto replay;
1143 }
1144#endif
1145 return -EOPNOTSUPP;
1146 }
1147
1148 if (!ifname[0])
1149 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001150
Eric W. Biederman881d9662007-09-17 11:56:21 -07001151 dev = rtnl_create_link(net, ifname, ops, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001152
Pavel Emelianove7199282007-08-08 22:16:38 -07001153 if (IS_ERR(dev))
1154 err = PTR_ERR(dev);
1155 else if (ops->newlink)
Patrick McHardy2d85cba2007-07-11 19:42:13 -07001156 err = ops->newlink(dev, tb, data);
1157 else
1158 err = register_netdevice(dev);
Pavel Emelianove7199282007-08-08 22:16:38 -07001159
1160 if (err < 0 && !IS_ERR(dev))
Patrick McHardy38f7b872007-06-13 12:03:51 -07001161 free_netdev(dev);
1162 return err;
1163 }
1164}
1165
Thomas Grafb60c5112006-08-04 23:05:34 -07001166static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001167{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001168 struct net *net = sock_net(skb->sk);
Thomas Grafb60c5112006-08-04 23:05:34 -07001169 struct ifinfomsg *ifm;
1170 struct nlattr *tb[IFLA_MAX+1];
1171 struct net_device *dev = NULL;
1172 struct sk_buff *nskb;
Thomas Graf339bf982006-11-10 14:10:15 -08001173 int err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001174
Thomas Grafb60c5112006-08-04 23:05:34 -07001175 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1176 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07001177 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07001178
1179 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -07001180 if (ifm->ifi_index > 0) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001181 dev = dev_get_by_index(net, ifm->ifi_index);
Thomas Grafb60c5112006-08-04 23:05:34 -07001182 if (dev == NULL)
1183 return -ENODEV;
1184 } else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001185 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07001186
Patrick McHardy38f7b872007-06-13 12:03:51 -07001187 nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Thomas Grafb60c5112006-08-04 23:05:34 -07001188 if (nskb == NULL) {
1189 err = -ENOBUFS;
1190 goto errout;
1191 }
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001192
Patrick McHardy575c3e22007-05-22 17:00:49 -07001193 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1194 nlh->nlmsg_seq, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001195 if (err < 0) {
1196 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1197 WARN_ON(err == -EMSGSIZE);
1198 kfree_skb(nskb);
1199 goto errout;
1200 }
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001201 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid);
Thomas Grafb60c5112006-08-04 23:05:34 -07001202errout:
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001203 dev_put(dev);
Thomas Grafb60c5112006-08-04 23:05:34 -07001204
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001205 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001206}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001207
Adrian Bunk42bad1d2007-04-26 00:57:41 -07001208static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
1210 int idx;
1211 int s_idx = cb->family;
1212
1213 if (s_idx == 0)
1214 s_idx = 1;
1215 for (idx=1; idx<NPROTO; idx++) {
1216 int type = cb->nlh->nlmsg_type-RTM_BASE;
1217 if (idx < s_idx || idx == PF_PACKET)
1218 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07001219 if (rtnl_msg_handlers[idx] == NULL ||
1220 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 continue;
1222 if (idx > s_idx)
1223 memset(&cb->args[0], 0, sizeof(cb->args));
Thomas Grafe2849862007-03-22 11:48:11 -07001224 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 break;
1226 }
1227 cb->family = idx;
1228
1229 return skb->len;
1230}
1231
1232void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1233{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001234 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001236 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Patrick McHardy38f7b872007-06-13 12:03:51 -07001238 skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001239 if (skb == NULL)
1240 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Patrick McHardy575c3e22007-05-22 17:00:49 -07001242 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001243 if (err < 0) {
1244 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1245 WARN_ON(err == -EMSGSIZE);
1246 kfree_skb(skb);
1247 goto errout;
1248 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001249 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1250 return;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001251errout:
1252 if (err < 0)
Eric W. Biederman4b3da702007-11-19 22:27:40 -08001253 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256/* Protected by RTNL sempahore. */
1257static struct rtattr **rta_buf;
1258static int rtattr_max;
1259
1260/* Process one rtnetlink message. */
1261
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001262static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001264 struct net *net = sock_net(skb->sk);
Thomas Grafe2849862007-03-22 11:48:11 -07001265 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 int sz_idx, kind;
1267 int min_len;
1268 int family;
1269 int type;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001270 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07001274 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 type -= RTM_BASE;
1277
1278 /* All the messages must have at least 1 byte length */
1279 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1280 return 0;
1281
1282 family = ((struct rtgenmsg*)NLMSG_DATA(nlh))->rtgen_family;
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001283 if (family >= NPROTO)
1284 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 sz_idx = type>>2;
1287 kind = type&3;
1288
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001289 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
1290 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001293 struct sock *rtnl;
Thomas Grafe2849862007-03-22 11:48:11 -07001294 rtnl_dumpit_func dumpit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Thomas Grafe2849862007-03-22 11:48:11 -07001296 dumpit = rtnl_get_dumpit(family, type);
1297 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001298 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001300 __rtnl_unlock();
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001301 rtnl = net->rtnl;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001302 err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL);
1303 rtnl_lock();
1304 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
1306
1307 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
1308
1309 min_len = rtm_min[sz_idx];
1310 if (nlh->nlmsg_len < min_len)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001311 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 if (nlh->nlmsg_len > min_len) {
1314 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
1315 struct rtattr *attr = (void*)nlh + NLMSG_ALIGN(min_len);
1316
1317 while (RTA_OK(attr, attrlen)) {
1318 unsigned flavor = attr->rta_type;
1319 if (flavor) {
1320 if (flavor > rta_max[sz_idx])
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001321 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 rta_buf[flavor-1] = attr;
1323 }
1324 attr = RTA_NEXT(attr, attrlen);
1325 }
1326 }
1327
Thomas Grafe2849862007-03-22 11:48:11 -07001328 doit = rtnl_get_doit(family, type);
1329 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001330 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001332 return doit(skb, nlh, (void *)&rta_buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333}
1334
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001335static void rtnetlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001337 rtnl_lock();
1338 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
1339 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
1343{
1344 struct net_device *dev = ptr;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 switch (event) {
1347 case NETDEV_UNREGISTER:
1348 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
1349 break;
1350 case NETDEV_REGISTER:
1351 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1352 break;
1353 case NETDEV_UP:
1354 case NETDEV_DOWN:
1355 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
1356 break;
1357 case NETDEV_CHANGE:
1358 case NETDEV_GOING_DOWN:
1359 break;
1360 default:
1361 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1362 break;
1363 }
1364 return NOTIFY_DONE;
1365}
1366
1367static struct notifier_block rtnetlink_dev_notifier = {
1368 .notifier_call = rtnetlink_event,
1369};
1370
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001371
1372static int rtnetlink_net_init(struct net *net)
1373{
1374 struct sock *sk;
1375 sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX,
1376 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
1377 if (!sk)
1378 return -ENOMEM;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001379 net->rtnl = sk;
1380 return 0;
1381}
1382
1383static void rtnetlink_net_exit(struct net *net)
1384{
Denis V. Lunev775516b2008-01-18 23:55:19 -08001385 netlink_kernel_release(net->rtnl);
1386 net->rtnl = NULL;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001387}
1388
1389static struct pernet_operations rtnetlink_net_ops = {
1390 .init = rtnetlink_net_init,
1391 .exit = rtnetlink_net_exit,
1392};
1393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394void __init rtnetlink_init(void)
1395{
1396 int i;
1397
1398 rtattr_max = 0;
1399 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
1400 if (rta_max[i] > rtattr_max)
1401 rtattr_max = rta_max[i];
1402 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
1403 if (!rta_buf)
1404 panic("rtnetlink_init: cannot allocate rta_buf\n");
1405
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001406 if (register_pernet_subsys(&rtnetlink_net_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 panic("rtnetlink_init: cannot initialize rtnetlink\n");
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
1410 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07001411
1412 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo);
1413 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001414 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL);
1415 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07001416
1417 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all);
1418 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
1421EXPORT_SYMBOL(__rta_fill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423EXPORT_SYMBOL(rtnl_lock);
Stephen Hemminger6756ae42006-03-20 22:23:58 -08001424EXPORT_SYMBOL(rtnl_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425EXPORT_SYMBOL(rtnl_unlock);
Patrick McHardyc9c10142008-04-23 22:10:48 -07001426EXPORT_SYMBOL(rtnl_is_locked);
Thomas Graf2942e902006-08-15 00:30:25 -07001427EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf97676b62006-08-15 00:31:41 -07001428EXPORT_SYMBOL(rtnl_notify);
1429EXPORT_SYMBOL(rtnl_set_sk_err);
Pavel Emelianove7199282007-08-08 22:16:38 -07001430EXPORT_SYMBOL(rtnl_create_link);
1431EXPORT_SYMBOL(ifla_policy);