blob: 44f91bb1ae8d41f7adfcc180c97565af7949a1f7 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/uaccess.h>
40#include <asm/system.h>
41#include <asm/string.h>
42
43#include <linux/inet.h>
44#include <linux/netdevice.h>
45#include <net/ip.h>
46#include <net/protocol.h>
47#include <net/arp.h>
48#include <net/route.h>
49#include <net/udp.h>
50#include <net/sock.h>
51#include <net/pkt_sched.h>
Thomas Graf14c0b972006-08-04 03:38:38 -070052#include <net/fib_rules.h>
Thomas Grafe2849862007-03-22 11:48:11 -070053#include <net/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Thomas Grafe2849862007-03-22 11:48:11 -070055struct rtnl_link
56{
57 rtnl_doit_func doit;
58 rtnl_dumpit_func dumpit;
59};
60
Stephen Hemminger6756ae42006-03-20 22:23:58 -080061static DEFINE_MUTEX(rtnl_mutex);
Thomas Graf56fc85a2006-08-15 00:37:29 -070062static struct sock *rtnl;
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{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080076 mutex_unlock(&rtnl_mutex);
77 if (rtnl && rtnl->sk_receive_queue.qlen)
78 rtnl->sk_data_ready(rtnl, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 netdev_run_todo();
80}
81
Stephen Hemminger6756ae42006-03-20 22:23:58 -080082int rtnl_trylock(void)
83{
84 return mutex_trylock(&rtnl_mutex);
85}
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087int rtattr_parse(struct rtattr *tb[], int maxattr, struct rtattr *rta, int len)
88{
89 memset(tb, 0, sizeof(struct rtattr*)*maxattr);
90
91 while (RTA_OK(rta, len)) {
92 unsigned flavor = rta->rta_type;
93 if (flavor && flavor <= maxattr)
94 tb[flavor-1] = rta;
95 rta = RTA_NEXT(rta, len);
96 }
97 return 0;
98}
99
Patrick McHardy2371baa2007-06-26 03:23:44 -0700100int __rtattr_parse_nested_compat(struct rtattr *tb[], int maxattr,
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +0900101 struct rtattr *rta, int len)
Patrick McHardyafdc3232007-06-25 14:30:16 -0700102{
103 if (RTA_PAYLOAD(rta) < len)
104 return -1;
Patrick McHardyafdc3232007-06-25 14:30:16 -0700105 if (RTA_PAYLOAD(rta) >= RTA_ALIGN(len) + sizeof(struct rtattr)) {
106 rta = RTA_DATA(rta) + RTA_ALIGN(len);
107 return rtattr_parse_nested(tb, maxattr, rta);
108 }
109 memset(tb, 0, sizeof(struct rtattr *) * maxattr);
110 return 0;
111}
112
Adrian Bunk42bad1d2007-04-26 00:57:41 -0700113static struct rtnl_link *rtnl_msg_handlers[NPROTO];
Thomas Grafe2849862007-03-22 11:48:11 -0700114
115static inline int rtm_msgindex(int msgtype)
116{
117 int msgindex = msgtype - RTM_BASE;
118
119 /*
120 * msgindex < 0 implies someone tried to register a netlink
121 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
122 * the message type has not been added to linux/rtnetlink.h
123 */
124 BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
125
126 return msgindex;
127}
128
129static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
130{
131 struct rtnl_link *tab;
132
133 tab = rtnl_msg_handlers[protocol];
Thomas Graf51057f22007-03-22 21:41:06 -0700134 if (tab == NULL || tab[msgindex].doit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700135 tab = rtnl_msg_handlers[PF_UNSPEC];
136
Thomas Graf51057f22007-03-22 21:41:06 -0700137 return tab ? tab[msgindex].doit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700138}
139
140static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
141{
142 struct rtnl_link *tab;
143
144 tab = rtnl_msg_handlers[protocol];
Thomas Graf51057f22007-03-22 21:41:06 -0700145 if (tab == NULL || tab[msgindex].dumpit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700146 tab = rtnl_msg_handlers[PF_UNSPEC];
147
Thomas Graf51057f22007-03-22 21:41:06 -0700148 return tab ? tab[msgindex].dumpit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700149}
150
151/**
152 * __rtnl_register - Register a rtnetlink message type
153 * @protocol: Protocol family or PF_UNSPEC
154 * @msgtype: rtnetlink message type
155 * @doit: Function pointer called for each request message
156 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
157 *
158 * Registers the specified function pointers (at least one of them has
159 * to be non-NULL) to be called whenever a request message for the
160 * specified protocol family and message type is received.
161 *
162 * The special protocol family PF_UNSPEC may be used to define fallback
163 * function pointers for the case when no entry for the specific protocol
164 * family exists.
165 *
166 * Returns 0 on success or a negative error code.
167 */
168int __rtnl_register(int protocol, int msgtype,
169 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
170{
171 struct rtnl_link *tab;
172 int msgindex;
173
174 BUG_ON(protocol < 0 || protocol >= NPROTO);
175 msgindex = rtm_msgindex(msgtype);
176
177 tab = rtnl_msg_handlers[protocol];
178 if (tab == NULL) {
179 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
180 if (tab == NULL)
181 return -ENOBUFS;
182
183 rtnl_msg_handlers[protocol] = tab;
184 }
185
186 if (doit)
187 tab[msgindex].doit = doit;
188
189 if (dumpit)
190 tab[msgindex].dumpit = dumpit;
191
192 return 0;
193}
194
195EXPORT_SYMBOL_GPL(__rtnl_register);
196
197/**
198 * rtnl_register - Register a rtnetlink message type
199 *
200 * Identical to __rtnl_register() but panics on failure. This is useful
201 * as failure of this function is very unlikely, it can only happen due
202 * to lack of memory when allocating the chain to store all message
203 * handlers for a protocol. Meant for use in init functions where lack
204 * of memory implies no sense in continueing.
205 */
206void rtnl_register(int protocol, int msgtype,
207 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
208{
209 if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0)
210 panic("Unable to register rtnetlink message handler, "
211 "protocol = %d, message type = %d\n",
212 protocol, msgtype);
213}
214
215EXPORT_SYMBOL_GPL(rtnl_register);
216
217/**
218 * rtnl_unregister - Unregister a rtnetlink message type
219 * @protocol: Protocol family or PF_UNSPEC
220 * @msgtype: rtnetlink message type
221 *
222 * Returns 0 on success or a negative error code.
223 */
224int rtnl_unregister(int protocol, int msgtype)
225{
226 int msgindex;
227
228 BUG_ON(protocol < 0 || protocol >= NPROTO);
229 msgindex = rtm_msgindex(msgtype);
230
231 if (rtnl_msg_handlers[protocol] == NULL)
232 return -ENOENT;
233
234 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
235 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
236
237 return 0;
238}
239
240EXPORT_SYMBOL_GPL(rtnl_unregister);
241
242/**
243 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
244 * @protocol : Protocol family or PF_UNSPEC
245 *
246 * Identical to calling rtnl_unregster() for all registered message types
247 * of a certain protocol family.
248 */
249void rtnl_unregister_all(int protocol)
250{
251 BUG_ON(protocol < 0 || protocol >= NPROTO);
252
253 kfree(rtnl_msg_handlers[protocol]);
254 rtnl_msg_handlers[protocol] = NULL;
255}
256
257EXPORT_SYMBOL_GPL(rtnl_unregister_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Patrick McHardy38f7b872007-06-13 12:03:51 -0700259static LIST_HEAD(link_ops);
260
261/**
262 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
263 * @ops: struct rtnl_link_ops * to register
264 *
265 * The caller must hold the rtnl_mutex. This function should be used
266 * by drivers that create devices during module initialization. It
267 * must be called before registering the devices.
268 *
269 * Returns 0 on success or a negative error code.
270 */
271int __rtnl_link_register(struct rtnl_link_ops *ops)
272{
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700273 if (!ops->dellink)
274 ops->dellink = unregister_netdevice;
275
Patrick McHardy38f7b872007-06-13 12:03:51 -0700276 list_add_tail(&ops->list, &link_ops);
277 return 0;
278}
279
280EXPORT_SYMBOL_GPL(__rtnl_link_register);
281
282/**
283 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
284 * @ops: struct rtnl_link_ops * to register
285 *
286 * Returns 0 on success or a negative error code.
287 */
288int rtnl_link_register(struct rtnl_link_ops *ops)
289{
290 int err;
291
292 rtnl_lock();
293 err = __rtnl_link_register(ops);
294 rtnl_unlock();
295 return err;
296}
297
298EXPORT_SYMBOL_GPL(rtnl_link_register);
299
300/**
301 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
302 * @ops: struct rtnl_link_ops * to unregister
303 *
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700304 * The caller must hold the rtnl_mutex.
Patrick McHardy38f7b872007-06-13 12:03:51 -0700305 */
306void __rtnl_link_unregister(struct rtnl_link_ops *ops)
307{
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700308 struct net_device *dev, *n;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700309 struct net *net;
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700310
Eric W. Biederman881d9662007-09-17 11:56:21 -0700311 for_each_net(net) {
312 for_each_netdev_safe(net, dev, n) {
313 if (dev->rtnl_link_ops == ops)
314 ops->dellink(dev);
315 }
Patrick McHardy2d85cba2007-07-11 19:42:13 -0700316 }
Patrick McHardy38f7b872007-06-13 12:03:51 -0700317 list_del(&ops->list);
318}
319
320EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
321
322/**
323 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
324 * @ops: struct rtnl_link_ops * to unregister
325 */
326void rtnl_link_unregister(struct rtnl_link_ops *ops)
327{
328 rtnl_lock();
329 __rtnl_link_unregister(ops);
330 rtnl_unlock();
331}
332
333EXPORT_SYMBOL_GPL(rtnl_link_unregister);
334
335static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
336{
337 const struct rtnl_link_ops *ops;
338
339 list_for_each_entry(ops, &link_ops, list) {
340 if (!strcmp(ops->kind, kind))
341 return ops;
342 }
343 return NULL;
344}
345
346static size_t rtnl_link_get_size(const struct net_device *dev)
347{
348 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
349 size_t size;
350
351 if (!ops)
352 return 0;
353
354 size = nlmsg_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
355 nlmsg_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
356
357 if (ops->get_size)
358 /* IFLA_INFO_DATA + nested data */
359 size += nlmsg_total_size(sizeof(struct nlattr)) +
360 ops->get_size(dev);
361
362 if (ops->get_xstats_size)
363 size += ops->get_xstats_size(dev); /* IFLA_INFO_XSTATS */
364
365 return size;
366}
367
368static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
369{
370 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
371 struct nlattr *linkinfo, *data;
372 int err = -EMSGSIZE;
373
374 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
375 if (linkinfo == NULL)
376 goto out;
377
378 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
379 goto err_cancel_link;
380 if (ops->fill_xstats) {
381 err = ops->fill_xstats(skb, dev);
382 if (err < 0)
383 goto err_cancel_link;
384 }
385 if (ops->fill_info) {
386 data = nla_nest_start(skb, IFLA_INFO_DATA);
387 if (data == NULL)
388 goto err_cancel_link;
389 err = ops->fill_info(skb, dev);
390 if (err < 0)
391 goto err_cancel_data;
392 nla_nest_end(skb, data);
393 }
394
395 nla_nest_end(skb, linkinfo);
396 return 0;
397
398err_cancel_data:
399 nla_nest_cancel(skb, data);
400err_cancel_link:
401 nla_nest_cancel(skb, linkinfo);
402out:
403 return err;
404}
405
Thomas Grafdb46edc2005-05-03 14:29:39 -0700406static const int rtm_min[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Thomas Graff90a0a72005-05-03 14:29:00 -0700408 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
409 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
410 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
Thomas Graf14c0b972006-08-04 03:38:38 -0700411 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700412 [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
413 [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
414 [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
415 [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700416 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
417 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418};
419
Thomas Grafdb46edc2005-05-03 14:29:39 -0700420static const int rta_max[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Thomas Graff90a0a72005-05-03 14:29:00 -0700422 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
423 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
424 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
Thomas Graf14c0b972006-08-04 03:38:38 -0700425 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
Thomas Graff90a0a72005-05-03 14:29:00 -0700426 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
427 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
428 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
429 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430};
431
432void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
433{
434 struct rtattr *rta;
435 int size = RTA_LENGTH(attrlen);
436
437 rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
438 rta->rta_type = attrtype;
439 rta->rta_len = size;
440 memcpy(RTA_DATA(rta), data, attrlen);
Patrick McHardyb3563c42005-06-28 12:54:43 -0700441 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
444size_t rtattr_strlcpy(char *dest, const struct rtattr *rta, size_t size)
445{
446 size_t ret = RTA_PAYLOAD(rta);
447 char *src = RTA_DATA(rta);
448
449 if (ret > 0 && src[ret - 1] == '\0')
450 ret--;
451 if (size > 0) {
452 size_t len = (ret >= size) ? size - 1 : ret;
453 memset(dest, 0, size);
454 memcpy(dest, src, len);
455 }
456 return ret;
457}
458
459int rtnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo)
460{
461 int err = 0;
462
Patrick McHardyac6d4392005-08-14 19:29:52 -0700463 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (echo)
465 atomic_inc(&skb->users);
466 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
467 if (echo)
468 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
469 return err;
470}
471
Thomas Graf2942e902006-08-15 00:30:25 -0700472int rtnl_unicast(struct sk_buff *skb, u32 pid)
473{
474 return nlmsg_unicast(rtnl, skb, pid);
475}
476
Thomas Graf97676b62006-08-15 00:31:41 -0700477int rtnl_notify(struct sk_buff *skb, u32 pid, u32 group,
478 struct nlmsghdr *nlh, gfp_t flags)
479{
480 int report = 0;
481
482 if (nlh)
483 report = nlmsg_report(nlh);
484
485 return nlmsg_notify(rtnl, skb, pid, group, report, flags);
486}
487
488void rtnl_set_sk_err(u32 group, int error)
489{
490 netlink_set_err(rtnl, 0, group, error);
491}
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
494{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700495 struct nlattr *mx;
496 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Thomas Graf2d7202b2006-08-22 00:01:27 -0700498 mx = nla_nest_start(skb, RTA_METRICS);
499 if (mx == NULL)
500 return -ENOBUFS;
501
502 for (i = 0; i < RTAX_MAX; i++) {
503 if (metrics[i]) {
504 valid++;
505 NLA_PUT_U32(skb, i+1, metrics[i]);
506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
David S. Millera57d27f2006-08-22 22:20:14 -0700509 if (!valid) {
510 nla_nest_cancel(skb, mx);
511 return 0;
512 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700513
514 return nla_nest_end(skb, mx);
515
516nla_put_failure:
517 return nla_nest_cancel(skb, mx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Thomas Grafe3703b32006-11-27 09:27:07 -0800520int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
521 u32 ts, u32 tsage, long expires, u32 error)
522{
523 struct rta_cacheinfo ci = {
524 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
525 .rta_used = dst->__use,
526 .rta_clntref = atomic_read(&(dst->__refcnt)),
527 .rta_error = error,
528 .rta_id = id,
529 .rta_ts = ts,
530 .rta_tsage = tsage,
531 };
532
533 if (expires)
534 ci.rta_expires = jiffies_to_clock_t(expires);
535
536 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
537}
538
539EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Stefan Rompfb00055a2006-03-20 17:09:11 -0800541static void set_operstate(struct net_device *dev, unsigned char transition)
542{
543 unsigned char operstate = dev->operstate;
544
545 switch(transition) {
546 case IF_OPER_UP:
547 if ((operstate == IF_OPER_DORMANT ||
548 operstate == IF_OPER_UNKNOWN) &&
549 !netif_dormant(dev))
550 operstate = IF_OPER_UP;
551 break;
552
553 case IF_OPER_DORMANT:
554 if (operstate == IF_OPER_UP ||
555 operstate == IF_OPER_UNKNOWN)
556 operstate = IF_OPER_DORMANT;
557 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700558 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800559
560 if (dev->operstate != operstate) {
561 write_lock_bh(&dev_base_lock);
562 dev->operstate = operstate;
563 write_unlock_bh(&dev_base_lock);
564 netdev_state_change(dev);
565 }
566}
567
Thomas Grafb60c5112006-08-04 23:05:34 -0700568static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
569 struct net_device_stats *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Thomas Grafb60c5112006-08-04 23:05:34 -0700571 a->rx_packets = b->rx_packets;
572 a->tx_packets = b->tx_packets;
573 a->rx_bytes = b->rx_bytes;
574 a->tx_bytes = b->tx_bytes;
575 a->rx_errors = b->rx_errors;
576 a->tx_errors = b->tx_errors;
577 a->rx_dropped = b->rx_dropped;
578 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Thomas Grafb60c5112006-08-04 23:05:34 -0700580 a->multicast = b->multicast;
581 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Thomas Grafb60c5112006-08-04 23:05:34 -0700583 a->rx_length_errors = b->rx_length_errors;
584 a->rx_over_errors = b->rx_over_errors;
585 a->rx_crc_errors = b->rx_crc_errors;
586 a->rx_frame_errors = b->rx_frame_errors;
587 a->rx_fifo_errors = b->rx_fifo_errors;
588 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Thomas Grafb60c5112006-08-04 23:05:34 -0700590 a->tx_aborted_errors = b->tx_aborted_errors;
591 a->tx_carrier_errors = b->tx_carrier_errors;
592 a->tx_fifo_errors = b->tx_fifo_errors;
593 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
594 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Thomas Grafb60c5112006-08-04 23:05:34 -0700596 a->rx_compressed = b->rx_compressed;
597 a->tx_compressed = b->tx_compressed;
598};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Patrick McHardy38f7b872007-06-13 12:03:51 -0700600static inline size_t if_nlmsg_size(const struct net_device *dev)
Thomas Graf339bf982006-11-10 14:10:15 -0800601{
602 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
603 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
604 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
605 + nla_total_size(sizeof(struct rtnl_link_ifmap))
606 + nla_total_size(sizeof(struct rtnl_link_stats))
607 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
608 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
609 + nla_total_size(4) /* IFLA_TXQLEN */
610 + nla_total_size(4) /* IFLA_WEIGHT */
611 + nla_total_size(4) /* IFLA_MTU */
612 + nla_total_size(4) /* IFLA_LINK */
613 + nla_total_size(4) /* IFLA_MASTER */
614 + nla_total_size(1) /* IFLA_OPERSTATE */
Patrick McHardy38f7b872007-06-13 12:03:51 -0700615 + nla_total_size(1) /* IFLA_LINKMODE */
616 + rtnl_link_get_size(dev); /* IFLA_LINKINFO */
Thomas Graf339bf982006-11-10 14:10:15 -0800617}
618
Thomas Grafb60c5112006-08-04 23:05:34 -0700619static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy575c3e22007-05-22 17:00:49 -0700620 int type, u32 pid, u32 seq, u32 change,
621 unsigned int flags)
Thomas Grafb60c5112006-08-04 23:05:34 -0700622{
623 struct ifinfomsg *ifm;
624 struct nlmsghdr *nlh;
625
626 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
627 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800628 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700629
630 ifm = nlmsg_data(nlh);
631 ifm->ifi_family = AF_UNSPEC;
632 ifm->__ifi_pad = 0;
633 ifm->ifi_type = dev->type;
634 ifm->ifi_index = dev->ifindex;
635 ifm->ifi_flags = dev_get_flags(dev);
636 ifm->ifi_change = change;
637
638 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
639 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
Thomas Grafb60c5112006-08-04 23:05:34 -0700640 NLA_PUT_U8(skb, IFLA_OPERSTATE,
641 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
642 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
643 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
644
645 if (dev->ifindex != dev->iflink)
646 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
647
648 if (dev->master)
649 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
650
651 if (dev->qdisc_sleeping)
652 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc_sleeping->ops->id);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800653
654 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 struct rtnl_link_ifmap map = {
656 .mem_start = dev->mem_start,
657 .mem_end = dev->mem_end,
658 .base_addr = dev->base_addr,
659 .irq = dev->irq,
660 .dma = dev->dma,
661 .port = dev->if_port,
662 };
Thomas Grafb60c5112006-08-04 23:05:34 -0700663 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665
666 if (dev->addr_len) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700667 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
668 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670
671 if (dev->get_stats) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700672 struct net_device_stats *stats = dev->get_stats(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (stats) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700674 struct nlattr *attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Thomas Grafb60c5112006-08-04 23:05:34 -0700676 attr = nla_reserve(skb, IFLA_STATS,
677 sizeof(struct rtnl_link_stats));
678 if (attr == NULL)
679 goto nla_put_failure;
680
681 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Patrick McHardy38f7b872007-06-13 12:03:51 -0700685 if (dev->rtnl_link_ops) {
686 if (rtnl_link_fill(skb, dev) < 0)
687 goto nla_put_failure;
688 }
689
Thomas Grafb60c5112006-08-04 23:05:34 -0700690 return nlmsg_end(skb, nlh);
691
692nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800693 nlmsg_cancel(skb, nlh);
694 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
Thomas Grafb60c5112006-08-04 23:05:34 -0700697static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700699 struct net *net = skb->sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 int idx;
701 int s_idx = cb->args[0];
702 struct net_device *dev;
703
Pavel Emelianov7562f872007-05-03 15:13:45 -0700704 idx = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700705 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (idx < s_idx)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700707 goto cont;
Patrick McHardy575c3e22007-05-22 17:00:49 -0700708 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
Thomas Grafb60c5112006-08-04 23:05:34 -0700709 NETLINK_CB(cb->skb).pid,
710 cb->nlh->nlmsg_seq, 0, NLM_F_MULTI) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 break;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700712cont:
713 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 cb->args[0] = idx;
716
717 return skb->len;
718}
719
Pavel Emelianove7199282007-08-08 22:16:38 -0700720const struct nla_policy ifla_policy[IFLA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -0700721 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
Patrick McHardy38f7b872007-06-13 12:03:51 -0700722 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
723 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
Thomas Graf5176f912006-08-26 20:13:18 -0700724 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -0700725 [IFLA_MTU] = { .type = NLA_U32 },
726 [IFLA_TXQLEN] = { .type = NLA_U32 },
727 [IFLA_WEIGHT] = { .type = NLA_U32 },
728 [IFLA_OPERSTATE] = { .type = NLA_U8 },
729 [IFLA_LINKMODE] = { .type = NLA_U8 },
730};
731
Patrick McHardy38f7b872007-06-13 12:03:51 -0700732static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
733 [IFLA_INFO_KIND] = { .type = NLA_STRING },
734 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
735};
736
Patrick McHardy0157f602007-06-13 12:03:36 -0700737static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
Patrick McHardy38f7b872007-06-13 12:03:51 -0700738 struct nlattr **tb, char *ifname, int modified)
Patrick McHardy0157f602007-06-13 12:03:36 -0700739{
Patrick McHardy38f7b872007-06-13 12:03:51 -0700740 int send_addr_notify = 0;
Patrick McHardy0157f602007-06-13 12:03:36 -0700741 int err;
742
743 if (tb[IFLA_MAP]) {
744 struct rtnl_link_ifmap *u_map;
745 struct ifmap k_map;
746
747 if (!dev->set_config) {
748 err = -EOPNOTSUPP;
749 goto errout;
750 }
751
752 if (!netif_device_present(dev)) {
753 err = -ENODEV;
754 goto errout;
755 }
756
757 u_map = nla_data(tb[IFLA_MAP]);
758 k_map.mem_start = (unsigned long) u_map->mem_start;
759 k_map.mem_end = (unsigned long) u_map->mem_end;
760 k_map.base_addr = (unsigned short) u_map->base_addr;
761 k_map.irq = (unsigned char) u_map->irq;
762 k_map.dma = (unsigned char) u_map->dma;
763 k_map.port = (unsigned char) u_map->port;
764
765 err = dev->set_config(dev, &k_map);
766 if (err < 0)
767 goto errout;
768
769 modified = 1;
770 }
771
772 if (tb[IFLA_ADDRESS]) {
773 struct sockaddr *sa;
774 int len;
775
776 if (!dev->set_mac_address) {
777 err = -EOPNOTSUPP;
778 goto errout;
779 }
780
781 if (!netif_device_present(dev)) {
782 err = -ENODEV;
783 goto errout;
784 }
785
786 len = sizeof(sa_family_t) + dev->addr_len;
787 sa = kmalloc(len, GFP_KERNEL);
788 if (!sa) {
789 err = -ENOMEM;
790 goto errout;
791 }
792 sa->sa_family = dev->type;
793 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
794 dev->addr_len);
795 err = dev->set_mac_address(dev, sa);
796 kfree(sa);
797 if (err)
798 goto errout;
799 send_addr_notify = 1;
800 modified = 1;
801 }
802
803 if (tb[IFLA_MTU]) {
804 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
805 if (err < 0)
806 goto errout;
807 modified = 1;
808 }
809
810 /*
811 * Interface selected by interface index but interface
812 * name provided implies that a name change has been
813 * requested.
814 */
815 if (ifm->ifi_index > 0 && ifname[0]) {
816 err = dev_change_name(dev, ifname);
817 if (err < 0)
818 goto errout;
819 modified = 1;
820 }
821
822 if (tb[IFLA_BROADCAST]) {
823 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
824 send_addr_notify = 1;
825 }
826
827 if (ifm->ifi_flags || ifm->ifi_change) {
828 unsigned int flags = ifm->ifi_flags;
829
830 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
831 if (ifm->ifi_change)
832 flags = (flags & ifm->ifi_change) |
833 (dev->flags & ~ifm->ifi_change);
834 dev_change_flags(dev, flags);
835 }
836
837 if (tb[IFLA_TXQLEN])
838 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
839
Patrick McHardy0157f602007-06-13 12:03:36 -0700840 if (tb[IFLA_OPERSTATE])
841 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
842
843 if (tb[IFLA_LINKMODE]) {
844 write_lock_bh(&dev_base_lock);
845 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
846 write_unlock_bh(&dev_base_lock);
847 }
848
849 err = 0;
850
851errout:
852 if (err < 0 && modified && net_ratelimit())
853 printk(KERN_WARNING "A link change request failed with "
854 "some changes comitted already. Interface %s may "
855 "have been left with an inconsistent configuration, "
856 "please check.\n", dev->name);
857
858 if (send_addr_notify)
859 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
860 return err;
861}
862
Thomas Grafda5e0492006-08-10 21:17:37 -0700863static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700865 struct net *net = skb->sk->sk_net;
Thomas Grafda5e0492006-08-10 21:17:37 -0700866 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 struct net_device *dev;
Patrick McHardy0157f602007-06-13 12:03:36 -0700868 int err;
Thomas Grafda5e0492006-08-10 21:17:37 -0700869 struct nlattr *tb[IFLA_MAX+1];
870 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Thomas Grafda5e0492006-08-10 21:17:37 -0700872 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
873 if (err < 0)
874 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Thomas Graf5176f912006-08-26 20:13:18 -0700876 if (tb[IFLA_IFNAME])
877 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -0700878 else
879 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -0700882 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -0700883 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700884 dev = dev_get_by_index(net, ifm->ifi_index);
Thomas Grafda5e0492006-08-10 21:17:37 -0700885 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -0700886 dev = dev_get_by_name(net, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -0700887 else
888 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Thomas Grafda5e0492006-08-10 21:17:37 -0700890 if (dev == NULL) {
891 err = -ENODEV;
892 goto errout;
893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Thomas Grafda5e0492006-08-10 21:17:37 -0700895 if (tb[IFLA_ADDRESS] &&
896 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
897 goto errout_dev;
898
899 if (tb[IFLA_BROADCAST] &&
900 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
901 goto errout_dev;
902
Patrick McHardy38f7b872007-06-13 12:03:51 -0700903 err = do_setlink(dev, ifm, tb, ifname, 0);
Thomas Grafda5e0492006-08-10 21:17:37 -0700904errout_dev:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 dev_put(dev);
Thomas Grafda5e0492006-08-10 21:17:37 -0700906errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 return err;
908}
909
Patrick McHardy38f7b872007-06-13 12:03:51 -0700910static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
911{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700912 struct net *net = skb->sk->sk_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -0700913 const struct rtnl_link_ops *ops;
914 struct net_device *dev;
915 struct ifinfomsg *ifm;
916 char ifname[IFNAMSIZ];
917 struct nlattr *tb[IFLA_MAX+1];
918 int err;
919
920 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
921 if (err < 0)
922 return err;
923
924 if (tb[IFLA_IFNAME])
925 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
926
927 ifm = nlmsg_data(nlh);
928 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700929 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -0700930 else if (tb[IFLA_IFNAME])
Eric W. Biederman881d9662007-09-17 11:56:21 -0700931 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -0700932 else
933 return -EINVAL;
934
935 if (!dev)
936 return -ENODEV;
937
938 ops = dev->rtnl_link_ops;
939 if (!ops)
940 return -EOPNOTSUPP;
941
942 ops->dellink(dev);
943 return 0;
944}
945
Eric W. Biederman881d9662007-09-17 11:56:21 -0700946struct net_device *rtnl_create_link(struct net *net, char *ifname,
Pavel Emelianove7199282007-08-08 22:16:38 -0700947 const struct rtnl_link_ops *ops, struct nlattr *tb[])
948{
949 int err;
950 struct net_device *dev;
951
952 err = -ENOMEM;
953 dev = alloc_netdev(ops->priv_size, ifname, ops->setup);
954 if (!dev)
955 goto err;
956
957 if (strchr(dev->name, '%')) {
958 err = dev_alloc_name(dev, dev->name);
959 if (err < 0)
960 goto err_free;
961 }
962
Eric W. Biederman881d9662007-09-17 11:56:21 -0700963 dev->nd_net = net;
Pavel Emelianove7199282007-08-08 22:16:38 -0700964 dev->rtnl_link_ops = ops;
965
966 if (tb[IFLA_MTU])
967 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
968 if (tb[IFLA_ADDRESS])
969 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
970 nla_len(tb[IFLA_ADDRESS]));
971 if (tb[IFLA_BROADCAST])
972 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
973 nla_len(tb[IFLA_BROADCAST]));
974 if (tb[IFLA_TXQLEN])
975 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
976 if (tb[IFLA_OPERSTATE])
977 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
978 if (tb[IFLA_LINKMODE])
979 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
980
981 return dev;
982
983err_free:
984 free_netdev(dev);
985err:
986 return ERR_PTR(err);
987}
988
Patrick McHardy38f7b872007-06-13 12:03:51 -0700989static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
990{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700991 struct net *net = skb->sk->sk_net;
Patrick McHardy38f7b872007-06-13 12:03:51 -0700992 const struct rtnl_link_ops *ops;
993 struct net_device *dev;
994 struct ifinfomsg *ifm;
995 char kind[MODULE_NAME_LEN];
996 char ifname[IFNAMSIZ];
997 struct nlattr *tb[IFLA_MAX+1];
998 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
999 int err;
1000
Thomas Graf8072f082007-07-31 14:13:50 -07001001#ifdef CONFIG_KMOD
Patrick McHardy38f7b872007-06-13 12:03:51 -07001002replay:
Thomas Graf8072f082007-07-31 14:13:50 -07001003#endif
Patrick McHardy38f7b872007-06-13 12:03:51 -07001004 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1005 if (err < 0)
1006 return err;
1007
1008 if (tb[IFLA_IFNAME])
1009 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1010 else
1011 ifname[0] = '\0';
1012
1013 ifm = nlmsg_data(nlh);
1014 if (ifm->ifi_index > 0)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001015 dev = __dev_get_by_index(net, ifm->ifi_index);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001016 else if (ifname[0])
Eric W. Biederman881d9662007-09-17 11:56:21 -07001017 dev = __dev_get_by_name(net, ifname);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001018 else
1019 dev = NULL;
1020
1021 if (tb[IFLA_LINKINFO]) {
1022 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1023 tb[IFLA_LINKINFO], ifla_info_policy);
1024 if (err < 0)
1025 return err;
1026 } else
1027 memset(linkinfo, 0, sizeof(linkinfo));
1028
1029 if (linkinfo[IFLA_INFO_KIND]) {
1030 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1031 ops = rtnl_link_ops_get(kind);
1032 } else {
1033 kind[0] = '\0';
1034 ops = NULL;
1035 }
1036
1037 if (1) {
1038 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
1039
1040 if (ops) {
1041 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1042 err = nla_parse_nested(attr, ops->maxtype,
1043 linkinfo[IFLA_INFO_DATA],
1044 ops->policy);
1045 if (err < 0)
1046 return err;
1047 data = attr;
1048 }
1049 if (ops->validate) {
1050 err = ops->validate(tb, data);
1051 if (err < 0)
1052 return err;
1053 }
1054 }
1055
1056 if (dev) {
1057 int modified = 0;
1058
1059 if (nlh->nlmsg_flags & NLM_F_EXCL)
1060 return -EEXIST;
1061 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1062 return -EOPNOTSUPP;
1063
1064 if (linkinfo[IFLA_INFO_DATA]) {
1065 if (!ops || ops != dev->rtnl_link_ops ||
1066 !ops->changelink)
1067 return -EOPNOTSUPP;
1068
1069 err = ops->changelink(dev, tb, data);
1070 if (err < 0)
1071 return err;
1072 modified = 1;
1073 }
1074
1075 return do_setlink(dev, ifm, tb, ifname, modified);
1076 }
1077
1078 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
1079 return -ENODEV;
1080
1081 if (ifm->ifi_index || ifm->ifi_flags || ifm->ifi_change)
1082 return -EOPNOTSUPP;
Patrick McHardy0e068772007-07-11 19:42:31 -07001083 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
Patrick McHardy38f7b872007-06-13 12:03:51 -07001084 return -EOPNOTSUPP;
1085
1086 if (!ops) {
1087#ifdef CONFIG_KMOD
1088 if (kind[0]) {
1089 __rtnl_unlock();
1090 request_module("rtnl-link-%s", kind);
1091 rtnl_lock();
1092 ops = rtnl_link_ops_get(kind);
1093 if (ops)
1094 goto replay;
1095 }
1096#endif
1097 return -EOPNOTSUPP;
1098 }
1099
1100 if (!ifname[0])
1101 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001102
Eric W. Biederman881d9662007-09-17 11:56:21 -07001103 dev = rtnl_create_link(net, ifname, ops, tb);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001104
Pavel Emelianove7199282007-08-08 22:16:38 -07001105 if (IS_ERR(dev))
1106 err = PTR_ERR(dev);
1107 else if (ops->newlink)
Patrick McHardy2d85cba2007-07-11 19:42:13 -07001108 err = ops->newlink(dev, tb, data);
1109 else
1110 err = register_netdevice(dev);
Pavel Emelianove7199282007-08-08 22:16:38 -07001111
1112 if (err < 0 && !IS_ERR(dev))
Patrick McHardy38f7b872007-06-13 12:03:51 -07001113 free_netdev(dev);
1114 return err;
1115 }
1116}
1117
Thomas Grafb60c5112006-08-04 23:05:34 -07001118static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001119{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001120 struct net *net = skb->sk->sk_net;
Thomas Grafb60c5112006-08-04 23:05:34 -07001121 struct ifinfomsg *ifm;
1122 struct nlattr *tb[IFLA_MAX+1];
1123 struct net_device *dev = NULL;
1124 struct sk_buff *nskb;
Thomas Graf339bf982006-11-10 14:10:15 -08001125 int err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001126
Thomas Grafb60c5112006-08-04 23:05:34 -07001127 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1128 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -07001129 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -07001130
1131 ifm = nlmsg_data(nlh);
Patrick McHardy51055be2007-06-05 12:40:01 -07001132 if (ifm->ifi_index > 0) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001133 dev = dev_get_by_index(net, ifm->ifi_index);
Thomas Grafb60c5112006-08-04 23:05:34 -07001134 if (dev == NULL)
1135 return -ENODEV;
1136 } else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001137 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -07001138
Patrick McHardy38f7b872007-06-13 12:03:51 -07001139 nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Thomas Grafb60c5112006-08-04 23:05:34 -07001140 if (nskb == NULL) {
1141 err = -ENOBUFS;
1142 goto errout;
1143 }
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001144
Patrick McHardy575c3e22007-05-22 17:00:49 -07001145 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1146 nlh->nlmsg_seq, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001147 if (err < 0) {
1148 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1149 WARN_ON(err == -EMSGSIZE);
1150 kfree_skb(nskb);
1151 goto errout;
1152 }
Patrick McHardyb9741792006-10-12 01:50:30 -07001153 err = rtnl_unicast(nskb, NETLINK_CB(skb).pid);
Thomas Grafb60c5112006-08-04 23:05:34 -07001154errout:
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001155 dev_put(dev);
Thomas Grafb60c5112006-08-04 23:05:34 -07001156
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001157 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001158}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -08001159
Adrian Bunk42bad1d2007-04-26 00:57:41 -07001160static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
1162 int idx;
1163 int s_idx = cb->family;
1164
1165 if (s_idx == 0)
1166 s_idx = 1;
1167 for (idx=1; idx<NPROTO; idx++) {
1168 int type = cb->nlh->nlmsg_type-RTM_BASE;
1169 if (idx < s_idx || idx == PF_PACKET)
1170 continue;
Thomas Grafe2849862007-03-22 11:48:11 -07001171 if (rtnl_msg_handlers[idx] == NULL ||
1172 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 continue;
1174 if (idx > s_idx)
1175 memset(&cb->args[0], 0, sizeof(cb->args));
Thomas Grafe2849862007-03-22 11:48:11 -07001176 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 break;
1178 }
1179 cb->family = idx;
1180
1181 return skb->len;
1182}
1183
1184void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1185{
1186 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001187 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Patrick McHardy38f7b872007-06-13 12:03:51 -07001189 skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001190 if (skb == NULL)
1191 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Patrick McHardy575c3e22007-05-22 17:00:49 -07001193 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08001194 if (err < 0) {
1195 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1196 WARN_ON(err == -EMSGSIZE);
1197 kfree_skb(skb);
1198 goto errout;
1199 }
Thomas Graf0ec6d3f2006-08-15 00:37:09 -07001200 err = rtnl_notify(skb, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1201errout:
1202 if (err < 0)
1203 rtnl_set_sk_err(RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206/* Protected by RTNL sempahore. */
1207static struct rtattr **rta_buf;
1208static int rtattr_max;
1209
1210/* Process one rtnetlink message. */
1211
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001212static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Thomas Grafe2849862007-03-22 11:48:11 -07001214 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 int sz_idx, kind;
1216 int min_len;
1217 int family;
1218 int type;
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001219 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -07001223 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 type -= RTM_BASE;
1226
1227 /* All the messages must have at least 1 byte length */
1228 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1229 return 0;
1230
1231 family = ((struct rtgenmsg*)NLMSG_DATA(nlh))->rtgen_family;
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001232 if (family >= NPROTO)
1233 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 sz_idx = type>>2;
1236 kind = type&3;
1237
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001238 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
1239 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Thomas Grafe2849862007-03-22 11:48:11 -07001242 rtnl_dumpit_func dumpit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Thomas Grafe2849862007-03-22 11:48:11 -07001244 dumpit = rtnl_get_dumpit(family, type);
1245 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001246 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Patrick McHardy1c2d6702007-04-16 16:59:10 -07001248 __rtnl_unlock();
1249 err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL);
1250 rtnl_lock();
1251 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
1253
1254 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
1255
1256 min_len = rtm_min[sz_idx];
1257 if (nlh->nlmsg_len < min_len)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001258 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 if (nlh->nlmsg_len > min_len) {
1261 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
1262 struct rtattr *attr = (void*)nlh + NLMSG_ALIGN(min_len);
1263
1264 while (RTA_OK(attr, attrlen)) {
1265 unsigned flavor = attr->rta_type;
1266 if (flavor) {
1267 if (flavor > rta_max[sz_idx])
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001268 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 rta_buf[flavor-1] = attr;
1270 }
1271 attr = RTA_NEXT(attr, attrlen);
1272 }
1273 }
1274
Thomas Grafe2849862007-03-22 11:48:11 -07001275 doit = rtnl_get_doit(family, type);
1276 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -07001277 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001279 return doit(skb, nlh, (void *)&rta_buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282static void rtnetlink_rcv(struct sock *sk, int len)
1283{
Thomas Graf9ac4a162005-11-10 02:25:55 +01001284 unsigned int qlen = 0;
Herbert Xu2a0a6eb2005-05-03 14:55:09 -07001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 do {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08001287 mutex_lock(&rtnl_mutex);
Thomas Graf9ac4a162005-11-10 02:25:55 +01001288 netlink_run_queue(sk, &qlen, &rtnetlink_rcv_msg);
Stephen Hemminger6756ae42006-03-20 22:23:58 -08001289 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 netdev_run_todo();
Herbert Xu2a0a6eb2005-05-03 14:55:09 -07001292 } while (qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293}
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
1296{
1297 struct net_device *dev = ptr;
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001298
1299 if (dev->nd_net != &init_net)
1300 return NOTIFY_DONE;
1301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 switch (event) {
1303 case NETDEV_UNREGISTER:
1304 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
1305 break;
1306 case NETDEV_REGISTER:
1307 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1308 break;
1309 case NETDEV_UP:
1310 case NETDEV_DOWN:
1311 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
1312 break;
1313 case NETDEV_CHANGE:
1314 case NETDEV_GOING_DOWN:
1315 break;
1316 default:
1317 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1318 break;
1319 }
1320 return NOTIFY_DONE;
1321}
1322
1323static struct notifier_block rtnetlink_dev_notifier = {
1324 .notifier_call = rtnetlink_event,
1325};
1326
1327void __init rtnetlink_init(void)
1328{
1329 int i;
1330
1331 rtattr_max = 0;
1332 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
1333 if (rta_max[i] > rtattr_max)
1334 rtattr_max = rta_max[i];
1335 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
1336 if (!rta_buf)
1337 panic("rtnetlink_init: cannot allocate rta_buf\n");
1338
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001339 rtnl = netlink_kernel_create(&init_net, NETLINK_ROUTE, RTNLGRP_MAX,
1340 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if (rtnl == NULL)
1342 panic("rtnetlink_init: cannot initialize rtnetlink\n");
1343 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
1344 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -07001345
1346 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo);
1347 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL);
Patrick McHardy38f7b872007-06-13 12:03:51 -07001348 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL);
1349 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -07001350
1351 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all);
1352 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
1355EXPORT_SYMBOL(__rta_fill);
1356EXPORT_SYMBOL(rtattr_strlcpy);
1357EXPORT_SYMBOL(rtattr_parse);
Patrick McHardy2371baa2007-06-26 03:23:44 -07001358EXPORT_SYMBOL(__rtattr_parse_nested_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360EXPORT_SYMBOL(rtnl_lock);
Stephen Hemminger6756ae42006-03-20 22:23:58 -08001361EXPORT_SYMBOL(rtnl_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362EXPORT_SYMBOL(rtnl_unlock);
Thomas Graf2942e902006-08-15 00:30:25 -07001363EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf97676b62006-08-15 00:31:41 -07001364EXPORT_SYMBOL(rtnl_notify);
1365EXPORT_SYMBOL(rtnl_set_sk_err);
Pavel Emelianove7199282007-08-08 22:16:38 -07001366EXPORT_SYMBOL(rtnl_create_link);
1367EXPORT_SYMBOL(ifla_policy);