blob: 4edc3dac4ccdf98459918e5736bb6a708d378925 [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);
Thomas Graf56fc85a2006-08-15 00:37:29 -070063static struct sock *rtnl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65void rtnl_lock(void)
66{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080067 mutex_lock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
Stephen Hemminger6756ae42006-03-20 22:23:58 -080070void __rtnl_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080072 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
Stephen Hemminger6756ae42006-03-20 22:23:58 -080074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075void rtnl_unlock(void)
76{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080077 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 netdev_run_todo();
79}
80
Stephen Hemminger6756ae42006-03-20 22:23:58 -080081int rtnl_trylock(void)
82{
83 return mutex_trylock(&rtnl_mutex);
84}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086int rtattr_parse(struct rtattr *tb[], int maxattr, struct rtattr *rta, int len)
87{
88 memset(tb, 0, sizeof(struct rtattr*)*maxattr);
89
90 while (RTA_OK(rta, len)) {
91 unsigned flavor = rta->rta_type;
92 if (flavor && flavor <= maxattr)
93 tb[flavor-1] = rta;
94 rta = RTA_NEXT(rta, len);
95 }
96 return 0;
97}
98
Patrick McHardy2371baa2007-06-26 03:23:44 -070099int __rtattr_parse_nested_compat(struct rtattr *tb[], int maxattr,
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +0900100 struct rtattr *rta, int len)
Patrick McHardyafdc3232007-06-25 14:30:16 -0700101{
102 if (RTA_PAYLOAD(rta) < len)
103 return -1;
Patrick McHardyafdc3232007-06-25 14:30:16 -0700104 if (RTA_PAYLOAD(rta) >= RTA_ALIGN(len) + sizeof(struct rtattr)) {
105 rta = RTA_DATA(rta) + RTA_ALIGN(len);
106 return rtattr_parse_nested(tb, maxattr, rta);
107 }
108 memset(tb, 0, sizeof(struct rtattr *) * maxattr);
109 return 0;
110}
111
Adrian Bunk42bad1d2007-04-26 00:57:41 -0700112static struct rtnl_link *rtnl_msg_handlers[NPROTO];
Thomas Grafe2849862007-03-22 11:48:11 -0700113
114static inline int rtm_msgindex(int msgtype)
115{
116 int msgindex = msgtype - RTM_BASE;
117
118 /*
119 * msgindex < 0 implies someone tried to register a netlink
120 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
121 * the message type has not been added to linux/rtnetlink.h
122 */
123 BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
124
125 return msgindex;
126}
127
128static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
129{
130 struct rtnl_link *tab;
131
132 tab = rtnl_msg_handlers[protocol];
Thomas Graf51057f22007-03-22 21:41:06 -0700133 if (tab == NULL || tab[msgindex].doit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700134 tab = rtnl_msg_handlers[PF_UNSPEC];
135
Thomas Graf51057f22007-03-22 21:41:06 -0700136 return tab ? tab[msgindex].doit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700137}
138
139static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
140{
141 struct rtnl_link *tab;
142
143 tab = rtnl_msg_handlers[protocol];
Thomas Graf51057f22007-03-22 21:41:06 -0700144 if (tab == NULL || tab[msgindex].dumpit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700145 tab = rtnl_msg_handlers[PF_UNSPEC];
146
Thomas Graf51057f22007-03-22 21:41:06 -0700147 return tab ? tab[msgindex].dumpit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700148}
149
150/**
151 * __rtnl_register - Register a rtnetlink message type
152 * @protocol: Protocol family or PF_UNSPEC
153 * @msgtype: rtnetlink message type
154 * @doit: Function pointer called for each request message
155 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
156 *
157 * Registers the specified function pointers (at least one of them has
158 * to be non-NULL) to be called whenever a request message for the
159 * specified protocol family and message type is received.
160 *
161 * The special protocol family PF_UNSPEC may be used to define fallback
162 * function pointers for the case when no entry for the specific protocol
163 * family exists.
164 *
165 * Returns 0 on success or a negative error code.
166 */
167int __rtnl_register(int protocol, int msgtype,
168 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
169{
170 struct rtnl_link *tab;
171 int msgindex;
172
173 BUG_ON(protocol < 0 || protocol >= NPROTO);
174 msgindex = rtm_msgindex(msgtype);
175
176 tab = rtnl_msg_handlers[protocol];
177 if (tab == NULL) {
178 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
179 if (tab == NULL)
180 return -ENOBUFS;
181
182 rtnl_msg_handlers[protocol] = tab;
183 }
184
185 if (doit)
186 tab[msgindex].doit = doit;
187
188 if (dumpit)
189 tab[msgindex].dumpit = dumpit;
190
191 return 0;
192}
193
194EXPORT_SYMBOL_GPL(__rtnl_register);
195
196/**
197 * rtnl_register - Register a rtnetlink message type
198 *
199 * Identical to __rtnl_register() but panics on failure. This is useful
200 * as failure of this function is very unlikely, it can only happen due
201 * to lack of memory when allocating the chain to store all message
202 * handlers for a protocol. Meant for use in init functions where lack
203 * of memory implies no sense in continueing.
204 */
205void rtnl_register(int protocol, int msgtype,
206 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
207{
208 if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0)
209 panic("Unable to register rtnetlink message handler, "
210 "protocol = %d, message type = %d\n",
211 protocol, msgtype);
212}
213
214EXPORT_SYMBOL_GPL(rtnl_register);
215
216/**
217 * rtnl_unregister - Unregister a rtnetlink message type
218 * @protocol: Protocol family or PF_UNSPEC
219 * @msgtype: rtnetlink message type
220 *
221 * Returns 0 on success or a negative error code.
222 */
223int rtnl_unregister(int protocol, int msgtype)
224{
225 int msgindex;
226
227 BUG_ON(protocol < 0 || protocol >= NPROTO);
228 msgindex = rtm_msgindex(msgtype);
229
230 if (rtnl_msg_handlers[protocol] == NULL)
231 return -ENOENT;
232
233 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
234 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
235
236 return 0;
237}
238
239EXPORT_SYMBOL_GPL(rtnl_unregister);
240
241/**
242 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
243 * @protocol : Protocol family or PF_UNSPEC
244 *
245 * Identical to calling rtnl_unregster() for all registered message types
246 * of a certain protocol family.
247 */
248void rtnl_unregister_all(int protocol)
249{
250 BUG_ON(protocol < 0 || protocol >= NPROTO);
251
252 kfree(rtnl_msg_handlers[protocol]);
253 rtnl_msg_handlers[protocol] = NULL;
254}
255
256EXPORT_SYMBOL_GPL(rtnl_unregister_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Patrick McHardy38f7b872007-06-13 12:03:51 -0700258static LIST_HEAD(link_ops);
259
260/**
261 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
262 * @ops: struct rtnl_link_ops * to register
263 *
264 * The caller must hold the rtnl_mutex. This function should be used
265 * by drivers that create devices during module initialization. It
266 * must be called before registering the devices.
267 *
268 * Returns 0 on success or a negative error code.
269 */
270int __rtnl_link_register(struct rtnl_link_ops *ops)
271{
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700272 if (!ops->dellink)
273 ops->dellink = unregister_netdevice;
274
Patrick McHardy38f7b872007-06-13 12:03:51 -0700275 list_add_tail(&ops->list, &link_ops);
276 return 0;
277}
278
279EXPORT_SYMBOL_GPL(__rtnl_link_register);
280
281/**
282 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
283 * @ops: struct rtnl_link_ops * to register
284 *
285 * Returns 0 on success or a negative error code.
286 */
287int rtnl_link_register(struct rtnl_link_ops *ops)
288{
289 int err;
290
291 rtnl_lock();
292 err = __rtnl_link_register(ops);
293 rtnl_unlock();
294 return err;
295}
296
297EXPORT_SYMBOL_GPL(rtnl_link_register);
298
299/**
300 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
301 * @ops: struct rtnl_link_ops * to unregister
302 *
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700303 * The caller must hold the rtnl_mutex.
Patrick McHardy38f7b872007-06-13 12:03:51 -0700304 */
305void __rtnl_link_unregister(struct rtnl_link_ops *ops)
306{
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700307 struct net_device *dev, *n;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700308 struct net *net;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700309
Eric W. Biederman881d9662007-09-17 11:56:21 -0700310 for_each_net(net) {
Patrick McHardy68365452008-01-20 17:25:14 -0800311restart:
Eric W. Biederman881d9662007-09-17 11:56:21 -0700312 for_each_netdev_safe(net, dev, n) {
Patrick McHardy68365452008-01-20 17:25:14 -0800313 if (dev->rtnl_link_ops == ops) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700314 ops->dellink(dev);
Patrick McHardy68365452008-01-20 17:25:14 -0800315 goto restart;
316 }
Eric W. Biederman881d9662007-09-17 11:56:21 -0700317 }
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700318 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700319 list_del(&ops->list);
320}
321
322EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
323
324/**
325 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
326 * @ops: struct rtnl_link_ops * to unregister
327 */
328void rtnl_link_unregister(struct rtnl_link_ops *ops)
329{
330 rtnl_lock();
331 __rtnl_link_unregister(ops);
332 rtnl_unlock();
333}
334
335EXPORT_SYMBOL_GPL(rtnl_link_unregister);
336
337static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
338{
339 const struct rtnl_link_ops *ops;
340
341 list_for_each_entry(ops, &link_ops, list) {
342 if (!strcmp(ops->kind, kind))
343 return ops;
344 }
345 return NULL;
346}
347
348static size_t rtnl_link_get_size(const struct net_device *dev)
349{
350 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
351 size_t size;
352
353 if (!ops)
354 return 0;
355
356 size = nlmsg_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
357 nlmsg_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
358
359 if (ops->get_size)
360 /* IFLA_INFO_DATA + nested data */
361 size += nlmsg_total_size(sizeof(struct nlattr)) +
362 ops->get_size(dev);
363
364 if (ops->get_xstats_size)
365 size += ops->get_xstats_size(dev); /* IFLA_INFO_XSTATS */
366
367 return size;
368}
369
370static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
371{
372 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
373 struct nlattr *linkinfo, *data;
374 int err = -EMSGSIZE;
375
376 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
377 if (linkinfo == NULL)
378 goto out;
379
380 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
381 goto err_cancel_link;
382 if (ops->fill_xstats) {
383 err = ops->fill_xstats(skb, dev);
384 if (err < 0)
385 goto err_cancel_link;
386 }
387 if (ops->fill_info) {
388 data = nla_nest_start(skb, IFLA_INFO_DATA);
389 if (data == NULL)
390 goto err_cancel_link;
391 err = ops->fill_info(skb, dev);
392 if (err < 0)
393 goto err_cancel_data;
394 nla_nest_end(skb, data);
395 }
396
397 nla_nest_end(skb, linkinfo);
398 return 0;
399
400err_cancel_data:
401 nla_nest_cancel(skb, data);
402err_cancel_link:
403 nla_nest_cancel(skb, linkinfo);
404out:
405 return err;
406}
407
Thomas Grafdb46edc2005-05-03 14:29:39 -0700408static const int rtm_min[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Thomas Graff90a0a72005-05-03 14:29:00 -0700410 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
411 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
412 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
Thomas Graf14c0b972006-08-04 03:38:38 -0700413 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700414 [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
415 [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
416 [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
417 [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700418 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
419 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420};
421
Thomas Grafdb46edc2005-05-03 14:29:39 -0700422static const int rta_max[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Thomas Graff90a0a72005-05-03 14:29:00 -0700424 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
425 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
426 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
Thomas Graf14c0b972006-08-04 03:38:38 -0700427 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
Thomas Graff90a0a72005-05-03 14:29:00 -0700428 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
429 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
430 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
431 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432};
433
434void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
435{
436 struct rtattr *rta;
437 int size = RTA_LENGTH(attrlen);
438
439 rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
440 rta->rta_type = attrtype;
441 rta->rta_len = size;
442 memcpy(RTA_DATA(rta), data, attrlen);
Patrick McHardyb3563c42005-06-28 12:54:43 -0700443 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
446size_t rtattr_strlcpy(char *dest, const struct rtattr *rta, size_t size)
447{
448 size_t ret = RTA_PAYLOAD(rta);
449 char *src = RTA_DATA(rta);
450
451 if (ret > 0 && src[ret - 1] == '\0')
452 ret--;
453 if (size > 0) {
454 size_t len = (ret >= size) ? size - 1 : ret;
455 memset(dest, 0, size);
456 memcpy(dest, src, len);
457 }
458 return ret;
459}
460
461int rtnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo)
462{
463 int err = 0;
464
Patrick McHardyac6d4392005-08-14 19:29:52 -0700465 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (echo)
467 atomic_inc(&skb->users);
468 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
469 if (echo)
470 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
471 return err;
472}
473
Thomas Graf2942e902006-08-15 00:30:25 -0700474int rtnl_unicast(struct sk_buff *skb, u32 pid)
475{
476 return nlmsg_unicast(rtnl, skb, pid);
477}
478
Thomas Graf97676b62006-08-15 00:31:41 -0700479int rtnl_notify(struct sk_buff *skb, u32 pid, u32 group,
480 struct nlmsghdr *nlh, gfp_t flags)
481{
482 int report = 0;
483
484 if (nlh)
485 report = nlmsg_report(nlh);
486
487 return nlmsg_notify(rtnl, skb, pid, group, report, flags);
488}
489
490void rtnl_set_sk_err(u32 group, int error)
491{
492 netlink_set_err(rtnl, 0, group, error);
493}
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
496{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700497 struct nlattr *mx;
498 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Thomas Graf2d7202b2006-08-22 00:01:27 -0700500 mx = nla_nest_start(skb, RTA_METRICS);
501 if (mx == NULL)
502 return -ENOBUFS;
503
504 for (i = 0; i < RTAX_MAX; i++) {
505 if (metrics[i]) {
506 valid++;
507 NLA_PUT_U32(skb, i+1, metrics[i]);
508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
David S. Millera57d27f2006-08-22 22:20:14 -0700511 if (!valid) {
512 nla_nest_cancel(skb, mx);
513 return 0;
514 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700515
516 return nla_nest_end(skb, mx);
517
518nla_put_failure:
519 return nla_nest_cancel(skb, mx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
Thomas Grafe3703b32006-11-27 09:27:07 -0800522int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
523 u32 ts, u32 tsage, long expires, u32 error)
524{
525 struct rta_cacheinfo ci = {
526 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
527 .rta_used = dst->__use,
528 .rta_clntref = atomic_read(&(dst->__refcnt)),
529 .rta_error = error,
530 .rta_id = id,
531 .rta_ts = ts,
532 .rta_tsage = tsage,
533 };
534
535 if (expires)
536 ci.rta_expires = jiffies_to_clock_t(expires);
537
538 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
539}
540
541EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Stefan Rompfb00055a2006-03-20 17:09:11 -0800543static void set_operstate(struct net_device *dev, unsigned char transition)
544{
545 unsigned char operstate = dev->operstate;
546
547 switch(transition) {
548 case IF_OPER_UP:
549 if ((operstate == IF_OPER_DORMANT ||
550 operstate == IF_OPER_UNKNOWN) &&
551 !netif_dormant(dev))
552 operstate = IF_OPER_UP;
553 break;
554
555 case IF_OPER_DORMANT:
556 if (operstate == IF_OPER_UP ||
557 operstate == IF_OPER_UNKNOWN)
558 operstate = IF_OPER_DORMANT;
559 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700560 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800561
562 if (dev->operstate != operstate) {
563 write_lock_bh(&dev_base_lock);
564 dev->operstate = operstate;
565 write_unlock_bh(&dev_base_lock);
566 netdev_state_change(dev);
567 }
568}
569
Thomas Grafb60c5112006-08-04 23:05:34 -0700570static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
571 struct net_device_stats *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Thomas Grafb60c5112006-08-04 23:05:34 -0700573 a->rx_packets = b->rx_packets;
574 a->tx_packets = b->tx_packets;
575 a->rx_bytes = b->rx_bytes;
576 a->tx_bytes = b->tx_bytes;
577 a->rx_errors = b->rx_errors;
578 a->tx_errors = b->tx_errors;
579 a->rx_dropped = b->rx_dropped;
580 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Thomas Grafb60c5112006-08-04 23:05:34 -0700582 a->multicast = b->multicast;
583 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Thomas Grafb60c5112006-08-04 23:05:34 -0700585 a->rx_length_errors = b->rx_length_errors;
586 a->rx_over_errors = b->rx_over_errors;
587 a->rx_crc_errors = b->rx_crc_errors;
588 a->rx_frame_errors = b->rx_frame_errors;
589 a->rx_fifo_errors = b->rx_fifo_errors;
590 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Thomas Grafb60c5112006-08-04 23:05:34 -0700592 a->tx_aborted_errors = b->tx_aborted_errors;
593 a->tx_carrier_errors = b->tx_carrier_errors;
594 a->tx_fifo_errors = b->tx_fifo_errors;
595 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
596 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Thomas Grafb60c5112006-08-04 23:05:34 -0700598 a->rx_compressed = b->rx_compressed;
599 a->tx_compressed = b->tx_compressed;
600};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Patrick McHardy38f7b872007-06-13 12:03:51 -0700602static inline size_t if_nlmsg_size(const struct net_device *dev)
Thomas Graf339bf982006-11-10 14:10:15 -0800603{
604 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
605 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
606 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
607 + nla_total_size(sizeof(struct rtnl_link_ifmap))
608 + nla_total_size(sizeof(struct rtnl_link_stats))
609 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
610 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
611 + nla_total_size(4) /* IFLA_TXQLEN */
612 + nla_total_size(4) /* IFLA_WEIGHT */
613 + nla_total_size(4) /* IFLA_MTU */
614 + nla_total_size(4) /* IFLA_LINK */
615 + nla_total_size(4) /* IFLA_MASTER */
616 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700617 + nla_total_size(1) /* IFLA_LINKMODE */
618 + rtnl_link_get_size(dev); /* IFLA_LINKINFO */
Thomas Graf339bf982006-11-10 14:10:15 -0800619}
620
Thomas Grafb60c5112006-08-04 23:05:34 -0700621static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -0700622 int type, u32 pid, u32 seq, u32 change,
623 unsigned int flags)
Thomas Grafb60c5112006-08-04 23:05:34 -0700624{
625 struct ifinfomsg *ifm;
626 struct nlmsghdr *nlh;
627
628 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
629 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800630 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700631
632 ifm = nlmsg_data(nlh);
633 ifm->ifi_family = AF_UNSPEC;
634 ifm->__ifi_pad = 0;
635 ifm->ifi_type = dev->type;
636 ifm->ifi_index = dev->ifindex;
637 ifm->ifi_flags = dev_get_flags(dev);
638 ifm->ifi_change = change;
639
640 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
641 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
Thomas Grafb60c5112006-08-04 23:05:34 -0700642 NLA_PUT_U8(skb, IFLA_OPERSTATE,
643 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
644 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
645 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
646
647 if (dev->ifindex != dev->iflink)
648 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
649
650 if (dev->master)
651 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
652
653 if (dev->qdisc_sleeping)
654 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc_sleeping->ops->id);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800655
656 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 struct rtnl_link_ifmap map = {
658 .mem_start = dev->mem_start,
659 .mem_end = dev->mem_end,
660 .base_addr = dev->base_addr,
661 .irq = dev->irq,
662 .dma = dev->dma,
663 .port = dev->if_port,
664 };
Thomas Grafb60c5112006-08-04 23:05:34 -0700665 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667
668 if (dev->addr_len) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700669 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
670 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
672
673 if (dev->get_stats) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700674 struct net_device_stats *stats = dev->get_stats(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (stats) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700676 struct nlattr *attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Thomas Grafb60c5112006-08-04 23:05:34 -0700678 attr = nla_reserve(skb, IFLA_STATS,
679 sizeof(struct rtnl_link_stats));
680 if (attr == NULL)
681 goto nla_put_failure;
682
683 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Patrick McHardy38f7b872007-06-13 12:03:51 -0700687 if (dev->rtnl_link_ops) {
688 if (rtnl_link_fill(skb, dev) < 0)
689 goto nla_put_failure;
690 }
691
Thomas Grafb60c5112006-08-04 23:05:34 -0700692 return nlmsg_end(skb, nlh);
693
694nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800695 nlmsg_cancel(skb, nlh);
696 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Thomas Grafb60c5112006-08-04 23:05:34 -0700699static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700701 struct net *net = skb->sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 int idx;
703 int s_idx = cb->args[0];
704 struct net_device *dev;
705
Denis V. Lunevb8542722007-12-01 00:21:31 +1100706 if (net != &init_net)
707 return 0;
708
Pavel Emelianov7562f872007-05-03 15:13:45 -0700709 idx = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700710 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (idx < s_idx)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700712 goto cont;
Patrick McHardy575c3e22007-05-22 17:00:49 -0700713 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
Thomas Grafb60c5112006-08-04 23:05:34 -0700714 NETLINK_CB(cb->skb).pid,
715 cb->nlh->nlmsg_seq, 0, NLM_F_MULTI) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 break;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700717cont:
718 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 cb->args[0] = idx;
721
722 return skb->len;
723}
724
Pavel Emelianove7199282007-08-08 22:16:38 -0700725const struct nla_policy ifla_policy[IFLA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -0700726 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
Patrick McHardy38f7b872007-06-13 12:03:51 -0700727 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
728 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
Thomas Graf5176f912006-08-26 20:13:18 -0700729 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -0700730 [IFLA_MTU] = { .type = NLA_U32 },
731 [IFLA_TXQLEN] = { .type = NLA_U32 },
732 [IFLA_WEIGHT] = { .type = NLA_U32 },
733 [IFLA_OPERSTATE] = { .type = NLA_U8 },
734 [IFLA_LINKMODE] = { .type = NLA_U8 },
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200735 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
Thomas Grafda5e0492006-08-10 21:17:37 -0700736};
737
Patrick McHardy38f7b872007-06-13 12:03:51 -0700738static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
739 [IFLA_INFO_KIND] = { .type = NLA_STRING },
740 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
741};
742
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200743static struct net *get_net_ns_by_pid(pid_t pid)
744{
745 struct task_struct *tsk;
746 struct net *net;
747
748 /* Lookup the network namespace */
749 net = ERR_PTR(-ESRCH);
750 rcu_read_lock();
Eric W. Biedermanceaa79c42007-10-26 22:56:12 -0700751 tsk = find_task_by_vpid(pid);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200752 if (tsk) {
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700753 struct nsproxy *nsproxy;
754 nsproxy = task_nsproxy(tsk);
755 if (nsproxy)
756 net = get_net(nsproxy->net_ns);
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200757 }
758 rcu_read_unlock();
759 return net;
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{
Patrick McHardy38f7b872007-06-13 12:03:51 -0700765 int send_addr_notify = 0;
Patrick McHardy0157f602007-06-13 12:03:36 -0700766 int err;
767
Eric W. Biedermand8a5ec62007-09-12 13:57:04 +0200768 if (tb[IFLA_NET_NS_PID]) {
769 struct net *net;
770 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
771 if (IS_ERR(net)) {
772 err = PTR_ERR(net);
773 goto errout;
774 }
775 err = dev_change_net_namespace(dev, net, ifname);
776 put_net(net);
777 if (err)
778 goto errout;
779 modified = 1;
780 }
781
Patrick McHardy0157f602007-06-13 12:03:36 -0700782 if (tb[IFLA_MAP]) {
783 struct rtnl_link_ifmap *u_map;
784 struct ifmap k_map;
785
786 if (!dev->set_config) {
787 err = -EOPNOTSUPP;
788 goto errout;
789 }
790
791 if (!netif_device_present(dev)) {
792 err = -ENODEV;
793 goto errout;
794 }
795
796 u_map = nla_data(tb[IFLA_MAP]);
797 k_map.mem_start = (unsigned long) u_map->mem_start;
798 k_map.mem_end = (unsigned long) u_map->mem_end;
799 k_map.base_addr = (unsigned short) u_map->base_addr;
800 k_map.irq = (unsigned char) u_map->irq;
801 k_map.dma = (unsigned char) u_map->dma;
802 k_map.port = (unsigned char) u_map->port;
803
804 err = dev->set_config(dev, &k_map);
805 if (err < 0)
806 goto errout;
807
808 modified = 1;
809 }
810
811 if (tb[IFLA_ADDRESS]) {
812 struct sockaddr *sa;
813 int len;
814
815 if (!dev->set_mac_address) {
816 err = -EOPNOTSUPP;
817 goto errout;
818 }
819
820 if (!netif_device_present(dev)) {
821 err = -ENODEV;
822 goto errout;
823 }
824
825 len = sizeof(sa_family_t) + dev->addr_len;
826 sa = kmalloc(len, GFP_KERNEL);
827 if (!sa) {
828 err = -ENOMEM;
829 goto errout;
830 }
831 sa->sa_family = dev->type;
832 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
833 dev->addr_len);
834 err = dev->set_mac_address(dev, sa);
835 kfree(sa);
836 if (err)
837 goto errout;
838 send_addr_notify = 1;
839 modified = 1;
840 }
841
842 if (tb[IFLA_MTU]) {
843 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
844 if (err < 0)
845 goto errout;
846 modified = 1;
847 }
848
849 /*
850 * Interface selected by interface index but interface
851 * name provided implies that a name change has been
852 * requested.
853 */
854 if (ifm->ifi_index > 0 && ifname[0]) {
855 err = dev_change_name(dev, ifname);
856 if (err < 0)
857 goto errout;
858 modified = 1;
859 }
860
861 if (tb[IFLA_BROADCAST]) {
862 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
863 send_addr_notify = 1;
864 }
865
866 if (ifm->ifi_flags || ifm->ifi_change) {
867 unsigned int flags = ifm->ifi_flags;
868
869 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
870 if (ifm->ifi_change)
871 flags = (flags & ifm->ifi_change) |
872 (dev->flags & ~ifm->ifi_change);
873 dev_change_flags(dev, flags);
874 }
875
876 if (tb[IFLA_TXQLEN])
877 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
878
Patrick McHardy0157f602007-06-13 12:03:36 -0700879 if (tb[IFLA_OPERSTATE])
880 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
881
882 if (tb[IFLA_LINKMODE]) {
883 write_lock_bh(&dev_base_lock);
884 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
885 write_unlock_bh(&dev_base_lock);
886 }
887
888 err = 0;
889
890errout:
891 if (err < 0 && modified && net_ratelimit())
892 printk(KERN_WARNING "A link change request failed with "
893 "some changes comitted already. Interface %s may "
894 "have been left with an inconsistent configuration, "
895 "please check.\n", dev->name);
896
897 if (send_addr_notify)
898 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
899 return err;
900}
901
Thomas Grafda5e0492006-08-10 21:17:37 -0700902static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700904 struct net *net = skb->sk->sk_net;
Thomas Grafda5e0492006-08-10 21:17:37 -0700905 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -0700907 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -0700908 struct nlattr *tb[IFLA_MAX+1];
909 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Denis V. Lunevb8542722007-12-01 00:21:31 +1100911 if (net != &init_net)
912 return -EINVAL;
913
Thomas Grafda5e0492006-08-10 21:17:37 -0700914 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
915 if (err < 0)
916 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Thomas Graf5176f912006-08-26 20:13:18 -0700918 if (tb[IFLA_IFNAME])
919 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -0700920 else
921 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -0700924 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -0700925 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700926 dev = dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -0700927 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -0700928 dev = dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -0700929 else
930 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Thomas Grafda5e0492006-08-10 21:17:37 -0700932 if (dev == NULL) {
933 err = -ENODEV;
934 goto errout;
935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Thomas Grafda5e0492006-08-10 21:17:37 -0700937 if (tb[IFLA_ADDRESS] &&
938 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
939 goto errout_dev;
940
941 if (tb[IFLA_BROADCAST] &&
942 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
943 goto errout_dev;
944
Patrick McHardy38f7b872007-06-13 12:03:51 -0700945 err = do_setlink(dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -0700946errout_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 dev_put(dev);
Thomas Grafda5e0492006-08-10 21:17:37 -0700948errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return err;
950}
951
Patrick McHardy38f7b872007-06-13 12:03:51 -0700952static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
953{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700954 struct net *net = skb->sk->sk_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -0700955 const struct rtnl_link_ops *ops;
956 struct net_device *dev;
957 struct ifinfomsg *ifm;
958 char ifname[IFNAMSIZ];
959 struct nlattr *tb[IFLA_MAX+1];
960 int err;
961
Denis V. Lunevb8542722007-12-01 00:21:31 +1100962 if (net != &init_net)
963 return -EINVAL;
964
Patrick McHardy38f7b872007-06-13 12:03:51 -0700965 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
Eric W. Biederman881d9662007-09-17 11:56:21 -07001008 dev->nd_net = 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])
1022 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
1023 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{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001036 struct net *net = skb->sk->sk_net;
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
Denis V. Lunevb8542722007-12-01 00:21:31 +11001046 if (net != &init_net)
1047 return -EINVAL;
1048
Thomas Graf8072f082007-07-31 14:13:50 -07001049#ifdef CONFIG_KMOD
Patrick McHardy38f7b872007-06-13 12:03:51 -07001050replay:
Thomas Graf8072f082007-07-31 14:13:50 -07001051#endif
Patrick McHardy38f7b872007-06-13 12:03:51 -07001052 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1053 if (err < 0)
1054 return err;
1055
1056 if (tb[IFLA_IFNAME])
1057 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1058 else
1059 ifname[0] = '\0';
1060
1061 ifm = nlmsg_data(nlh);
1062 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001063 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001064 else if (ifname[0])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001065 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001066 else
1067 dev = NULL;
1068
1069 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) {
1135#ifdef CONFIG_KMOD
1136 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{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001168 struct net *net = skb->sk->sk_net;
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
Denis V. Lunevb8542722007-12-01 00:21:31 +11001175 if (net != &init_net)
1176 return -EINVAL;
1177
Thomas Grafb60c5112006-08-04 23:05:34 -07001178 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1179 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07001180 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07001181
1182 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -07001183 if (ifm->ifi_index > 0) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001184 dev = dev_get_by_index(net, ifm->ifi_index);
Thomas Grafb60c5112006-08-04 23:05:34 -07001185 if (dev == NULL)
1186 return -ENODEV;
1187 } else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001188 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07001189
Patrick McHardy38f7b872007-06-13 12:03:51 -07001190 nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Thomas Grafb60c5112006-08-04 23:05:34 -07001191 if (nskb == NULL) {
1192 err = -ENOBUFS;
1193 goto errout;
1194 }
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001195
Patrick McHardy575c3e22007-05-22 17:00:49 -07001196 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1197 nlh->nlmsg_seq, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001198 if (err < 0) {
1199 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1200 WARN_ON(err == -EMSGSIZE);
1201 kfree_skb(nskb);
1202 goto errout;
1203 }
Patrick McHardyb9741792006-10-12 01:50:30 -07001204 err = rtnl_unicast(nskb, NETLINK_CB(skb).pid);
Thomas Grafb60c5112006-08-04 23:05:34 -07001205errout:
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001206 dev_put(dev);
Thomas Grafb60c5112006-08-04 23:05:34 -07001207
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001208 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001209}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001210
Adrian Bunk42bad1d2007-04-26 00:57:41 -07001211static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Denis V. Lunevb8542722007-12-01 00:21:31 +11001213 struct net *net = skb->sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 int idx;
1215 int s_idx = cb->family;
1216
Denis V. Lunevb8542722007-12-01 00:21:31 +11001217 if (net != &init_net)
1218 return 0;
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (s_idx == 0)
1221 s_idx = 1;
1222 for (idx=1; idx<NPROTO; idx++) {
1223 int type = cb->nlh->nlmsg_type-RTM_BASE;
1224 if (idx < s_idx || idx == PF_PACKET)
1225 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07001226 if (rtnl_msg_handlers[idx] == NULL ||
1227 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 continue;
1229 if (idx > s_idx)
1230 memset(&cb->args[0], 0, sizeof(cb->args));
Thomas Grafe2849862007-03-22 11:48:11 -07001231 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 break;
1233 }
1234 cb->family = idx;
1235
1236 return skb->len;
1237}
1238
1239void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1240{
1241 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001242 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Patrick McHardy38f7b872007-06-13 12:03:51 -07001244 skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001245 if (skb == NULL)
1246 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Patrick McHardy575c3e22007-05-22 17:00:49 -07001248 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001249 if (err < 0) {
1250 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1251 WARN_ON(err == -EMSGSIZE);
1252 kfree_skb(skb);
1253 goto errout;
1254 }
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001255 err = rtnl_notify(skb, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1256errout:
1257 if (err < 0)
1258 rtnl_set_sk_err(RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259}
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261/* Protected by RTNL sempahore. */
1262static struct rtattr **rta_buf;
1263static int rtattr_max;
1264
1265/* Process one rtnetlink message. */
1266
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001267static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Thomas Grafe2849862007-03-22 11:48:11 -07001269 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 int sz_idx, kind;
1271 int min_len;
1272 int family;
1273 int type;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001274 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07001278 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 type -= RTM_BASE;
1281
1282 /* All the messages must have at least 1 byte length */
1283 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1284 return 0;
1285
1286 family = ((struct rtgenmsg*)NLMSG_DATA(nlh))->rtgen_family;
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001287 if (family >= NPROTO)
1288 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 sz_idx = type>>2;
1291 kind = type&3;
1292
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001293 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
1294 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Thomas Grafe2849862007-03-22 11:48:11 -07001297 rtnl_dumpit_func dumpit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Thomas Grafe2849862007-03-22 11:48:11 -07001299 dumpit = rtnl_get_dumpit(family, type);
1300 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001301 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001303 __rtnl_unlock();
1304 err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL);
1305 rtnl_lock();
1306 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 }
1308
1309 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
1310
1311 min_len = rtm_min[sz_idx];
1312 if (nlh->nlmsg_len < min_len)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001313 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 if (nlh->nlmsg_len > min_len) {
1316 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
1317 struct rtattr *attr = (void*)nlh + NLMSG_ALIGN(min_len);
1318
1319 while (RTA_OK(attr, attrlen)) {
1320 unsigned flavor = attr->rta_type;
1321 if (flavor) {
1322 if (flavor > rta_max[sz_idx])
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001323 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 rta_buf[flavor-1] = attr;
1325 }
1326 attr = RTA_NEXT(attr, attrlen);
1327 }
1328 }
1329
Thomas Grafe2849862007-03-22 11:48:11 -07001330 doit = rtnl_get_doit(family, type);
1331 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001332 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001334 return doit(skb, nlh, (void *)&rta_buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001337static void rtnetlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001339 rtnl_lock();
1340 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
1341 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
1345{
1346 struct net_device *dev = ptr;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001347
1348 if (dev->nd_net != &init_net)
1349 return NOTIFY_DONE;
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 switch (event) {
1352 case NETDEV_UNREGISTER:
1353 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
1354 break;
1355 case NETDEV_REGISTER:
1356 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1357 break;
1358 case NETDEV_UP:
1359 case NETDEV_DOWN:
1360 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
1361 break;
1362 case NETDEV_CHANGE:
1363 case NETDEV_GOING_DOWN:
1364 break;
1365 default:
1366 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1367 break;
1368 }
1369 return NOTIFY_DONE;
1370}
1371
1372static struct notifier_block rtnetlink_dev_notifier = {
1373 .notifier_call = rtnetlink_event,
1374};
1375
1376void __init rtnetlink_init(void)
1377{
1378 int i;
1379
1380 rtattr_max = 0;
1381 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
1382 if (rta_max[i] > rtattr_max)
1383 rtattr_max = rta_max[i];
1384 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
1385 if (!rta_buf)
1386 panic("rtnetlink_init: cannot allocate rta_buf\n");
1387
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001388 rtnl = netlink_kernel_create(&init_net, NETLINK_ROUTE, RTNLGRP_MAX,
1389 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (rtnl == NULL)
1391 panic("rtnetlink_init: cannot initialize rtnetlink\n");
1392 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
1393 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07001394
1395 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo);
1396 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001397 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL);
1398 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07001399
1400 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all);
1401 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402}
1403
1404EXPORT_SYMBOL(__rta_fill);
1405EXPORT_SYMBOL(rtattr_strlcpy);
1406EXPORT_SYMBOL(rtattr_parse);
Patrick McHardy2371baa2007-06-26 03:23:44 -07001407EXPORT_SYMBOL(__rtattr_parse_nested_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409EXPORT_SYMBOL(rtnl_lock);
Stephen Hemminger6756ae42006-03-20 22:23:58 -08001410EXPORT_SYMBOL(rtnl_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411EXPORT_SYMBOL(rtnl_unlock);
Thomas Graf2942e902006-08-15 00:30:25 -07001412EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf97676b62006-08-15 00:31:41 -07001413EXPORT_SYMBOL(rtnl_notify);
1414EXPORT_SYMBOL(rtnl_set_sk_err);
Pavel Emelianove7199282007-08-08 22:16:38 -07001415EXPORT_SYMBOL(rtnl_create_link);
1416EXPORT_SYMBOL(ifla_policy);