]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/core/rtnetlink.c
Net: can: Makefile: Remove deprecated kbuild goal definitions
[net-next-2.6.git] / net / core / rtnetlink.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4
LT
19#include <linux/errno.h>
20#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/socket.h>
23#include <linux/kernel.h>
1da177e4
LT
24#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>
6756ae4b 36#include <linux/mutex.h>
1823730f 37#include <linux/if_addr.h>
ebc08a6f 38#include <linux/pci.h>
1da177e4
LT
39
40#include <asm/uaccess.h>
41#include <asm/system.h>
1da177e4
LT
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>
14c0b97d 52#include <net/fib_rules.h>
e2849863 53#include <net/rtnetlink.h>
30ffee84 54#include <net/net_namespace.h>
1da177e4 55
e0d087af 56struct rtnl_link {
e2849863
TG
57 rtnl_doit_func doit;
58 rtnl_dumpit_func dumpit;
59};
60
6756ae4b 61static DEFINE_MUTEX(rtnl_mutex);
1da177e4
LT
62
63void rtnl_lock(void)
64{
6756ae4b 65 mutex_lock(&rtnl_mutex);
1da177e4 66}
e0d087af 67EXPORT_SYMBOL(rtnl_lock);
1da177e4 68
6756ae4b 69void __rtnl_unlock(void)
1da177e4 70{
6756ae4b 71 mutex_unlock(&rtnl_mutex);
1da177e4 72}
6756ae4b 73
1da177e4
LT
74void rtnl_unlock(void)
75{
58ec3b4d 76 /* This fellow will unlock it for us. */
1da177e4
LT
77 netdev_run_todo();
78}
e0d087af 79EXPORT_SYMBOL(rtnl_unlock);
1da177e4 80
6756ae4b
SH
81int rtnl_trylock(void)
82{
83 return mutex_trylock(&rtnl_mutex);
84}
e0d087af 85EXPORT_SYMBOL(rtnl_trylock);
6756ae4b 86
c9c1014b
PM
87int rtnl_is_locked(void)
88{
89 return mutex_is_locked(&rtnl_mutex);
90}
e0d087af 91EXPORT_SYMBOL(rtnl_is_locked);
c9c1014b 92
a898def2
PM
93#ifdef CONFIG_PROVE_LOCKING
94int lockdep_rtnl_is_held(void)
95{
96 return lockdep_is_held(&rtnl_mutex);
97}
98EXPORT_SYMBOL(lockdep_rtnl_is_held);
99#endif /* #ifdef CONFIG_PROVE_LOCKING */
100
25239cee 101static struct rtnl_link *rtnl_msg_handlers[RTNL_FAMILY_MAX + 1];
e2849863
TG
102
103static inline int rtm_msgindex(int msgtype)
104{
105 int msgindex = msgtype - RTM_BASE;
106
107 /*
108 * msgindex < 0 implies someone tried to register a netlink
109 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
110 * the message type has not been added to linux/rtnetlink.h
111 */
112 BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
113
114 return msgindex;
115}
116
117static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
118{
119 struct rtnl_link *tab;
120
25239cee 121 if (protocol <= RTNL_FAMILY_MAX)
0f87b1dd
PM
122 tab = rtnl_msg_handlers[protocol];
123 else
124 tab = NULL;
125
51057f2f 126 if (tab == NULL || tab[msgindex].doit == NULL)
e2849863
TG
127 tab = rtnl_msg_handlers[PF_UNSPEC];
128
51057f2f 129 return tab ? tab[msgindex].doit : NULL;
e2849863
TG
130}
131
132static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
133{
134 struct rtnl_link *tab;
135
25239cee 136 if (protocol <= RTNL_FAMILY_MAX)
0f87b1dd
PM
137 tab = rtnl_msg_handlers[protocol];
138 else
139 tab = NULL;
140
51057f2f 141 if (tab == NULL || tab[msgindex].dumpit == NULL)
e2849863
TG
142 tab = rtnl_msg_handlers[PF_UNSPEC];
143
51057f2f 144 return tab ? tab[msgindex].dumpit : NULL;
e2849863
TG
145}
146
147/**
148 * __rtnl_register - Register a rtnetlink message type
149 * @protocol: Protocol family or PF_UNSPEC
150 * @msgtype: rtnetlink message type
151 * @doit: Function pointer called for each request message
152 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
153 *
154 * Registers the specified function pointers (at least one of them has
155 * to be non-NULL) to be called whenever a request message for the
156 * specified protocol family and message type is received.
157 *
158 * The special protocol family PF_UNSPEC may be used to define fallback
159 * function pointers for the case when no entry for the specific protocol
160 * family exists.
161 *
162 * Returns 0 on success or a negative error code.
163 */
164int __rtnl_register(int protocol, int msgtype,
165 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
166{
167 struct rtnl_link *tab;
168 int msgindex;
169
25239cee 170 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
e2849863
TG
171 msgindex = rtm_msgindex(msgtype);
172
173 tab = rtnl_msg_handlers[protocol];
174 if (tab == NULL) {
175 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
176 if (tab == NULL)
177 return -ENOBUFS;
178
179 rtnl_msg_handlers[protocol] = tab;
180 }
181
182 if (doit)
183 tab[msgindex].doit = doit;
184
185 if (dumpit)
186 tab[msgindex].dumpit = dumpit;
187
188 return 0;
189}
e2849863
TG
190EXPORT_SYMBOL_GPL(__rtnl_register);
191
192/**
193 * rtnl_register - Register a rtnetlink message type
194 *
195 * Identical to __rtnl_register() but panics on failure. This is useful
196 * as failure of this function is very unlikely, it can only happen due
197 * to lack of memory when allocating the chain to store all message
198 * handlers for a protocol. Meant for use in init functions where lack
199 * of memory implies no sense in continueing.
200 */
201void rtnl_register(int protocol, int msgtype,
202 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
203{
204 if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0)
205 panic("Unable to register rtnetlink message handler, "
206 "protocol = %d, message type = %d\n",
207 protocol, msgtype);
208}
e2849863
TG
209EXPORT_SYMBOL_GPL(rtnl_register);
210
211/**
212 * rtnl_unregister - Unregister a rtnetlink message type
213 * @protocol: Protocol family or PF_UNSPEC
214 * @msgtype: rtnetlink message type
215 *
216 * Returns 0 on success or a negative error code.
217 */
218int rtnl_unregister(int protocol, int msgtype)
219{
220 int msgindex;
221
25239cee 222 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
e2849863
TG
223 msgindex = rtm_msgindex(msgtype);
224
225 if (rtnl_msg_handlers[protocol] == NULL)
226 return -ENOENT;
227
228 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
229 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
230
231 return 0;
232}
e2849863
TG
233EXPORT_SYMBOL_GPL(rtnl_unregister);
234
235/**
236 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
237 * @protocol : Protocol family or PF_UNSPEC
238 *
239 * Identical to calling rtnl_unregster() for all registered message types
240 * of a certain protocol family.
241 */
242void rtnl_unregister_all(int protocol)
243{
25239cee 244 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
e2849863
TG
245
246 kfree(rtnl_msg_handlers[protocol]);
247 rtnl_msg_handlers[protocol] = NULL;
248}
e2849863 249EXPORT_SYMBOL_GPL(rtnl_unregister_all);
1da177e4 250
38f7b870
PM
251static LIST_HEAD(link_ops);
252
253/**
254 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
255 * @ops: struct rtnl_link_ops * to register
256 *
257 * The caller must hold the rtnl_mutex. This function should be used
258 * by drivers that create devices during module initialization. It
259 * must be called before registering the devices.
260 *
261 * Returns 0 on success or a negative error code.
262 */
263int __rtnl_link_register(struct rtnl_link_ops *ops)
264{
2d85cba2 265 if (!ops->dellink)
23289a37 266 ops->dellink = unregister_netdevice_queue;
2d85cba2 267
38f7b870
PM
268 list_add_tail(&ops->list, &link_ops);
269 return 0;
270}
38f7b870
PM
271EXPORT_SYMBOL_GPL(__rtnl_link_register);
272
273/**
274 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
275 * @ops: struct rtnl_link_ops * to register
276 *
277 * Returns 0 on success or a negative error code.
278 */
279int rtnl_link_register(struct rtnl_link_ops *ops)
280{
281 int err;
282
283 rtnl_lock();
284 err = __rtnl_link_register(ops);
285 rtnl_unlock();
286 return err;
287}
38f7b870
PM
288EXPORT_SYMBOL_GPL(rtnl_link_register);
289
669f87ba
PE
290static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
291{
292 struct net_device *dev;
23289a37
ED
293 LIST_HEAD(list_kill);
294
669f87ba 295 for_each_netdev(net, dev) {
23289a37
ED
296 if (dev->rtnl_link_ops == ops)
297 ops->dellink(dev, &list_kill);
669f87ba 298 }
23289a37 299 unregister_netdevice_many(&list_kill);
669f87ba
PE
300}
301
38f7b870
PM
302/**
303 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
304 * @ops: struct rtnl_link_ops * to unregister
305 *
2d85cba2 306 * The caller must hold the rtnl_mutex.
38f7b870
PM
307 */
308void __rtnl_link_unregister(struct rtnl_link_ops *ops)
309{
881d966b 310 struct net *net;
2d85cba2 311
881d966b 312 for_each_net(net) {
669f87ba 313 __rtnl_kill_links(net, ops);
2d85cba2 314 }
38f7b870
PM
315 list_del(&ops->list);
316}
38f7b870
PM
317EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
318
319/**
320 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
321 * @ops: struct rtnl_link_ops * to unregister
322 */
323void rtnl_link_unregister(struct rtnl_link_ops *ops)
324{
325 rtnl_lock();
326 __rtnl_link_unregister(ops);
327 rtnl_unlock();
328}
38f7b870
PM
329EXPORT_SYMBOL_GPL(rtnl_link_unregister);
330
331static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
332{
333 const struct rtnl_link_ops *ops;
334
335 list_for_each_entry(ops, &link_ops, list) {
336 if (!strcmp(ops->kind, kind))
337 return ops;
338 }
339 return NULL;
340}
341
342static size_t rtnl_link_get_size(const struct net_device *dev)
343{
344 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
345 size_t size;
346
347 if (!ops)
348 return 0;
349
369cf77a
TG
350 size = nla_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
351 nla_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
38f7b870
PM
352
353 if (ops->get_size)
354 /* IFLA_INFO_DATA + nested data */
369cf77a 355 size += nla_total_size(sizeof(struct nlattr)) +
38f7b870
PM
356 ops->get_size(dev);
357
358 if (ops->get_xstats_size)
369cf77a
TG
359 /* IFLA_INFO_XSTATS */
360 size += nla_total_size(ops->get_xstats_size(dev));
38f7b870
PM
361
362 return size;
363}
364
f8ff182c
TG
365static LIST_HEAD(rtnl_af_ops);
366
367static const struct rtnl_af_ops *rtnl_af_lookup(const int family)
368{
369 const struct rtnl_af_ops *ops;
370
371 list_for_each_entry(ops, &rtnl_af_ops, list) {
372 if (ops->family == family)
373 return ops;
374 }
375
376 return NULL;
377}
378
379/**
380 * __rtnl_af_register - Register rtnl_af_ops with rtnetlink.
381 * @ops: struct rtnl_af_ops * to register
382 *
383 * The caller must hold the rtnl_mutex.
384 *
385 * Returns 0 on success or a negative error code.
386 */
387int __rtnl_af_register(struct rtnl_af_ops *ops)
388{
389 list_add_tail(&ops->list, &rtnl_af_ops);
390 return 0;
391}
392EXPORT_SYMBOL_GPL(__rtnl_af_register);
393
394/**
395 * rtnl_af_register - Register rtnl_af_ops with rtnetlink.
396 * @ops: struct rtnl_af_ops * to register
397 *
398 * Returns 0 on success or a negative error code.
399 */
400int rtnl_af_register(struct rtnl_af_ops *ops)
401{
402 int err;
403
404 rtnl_lock();
405 err = __rtnl_af_register(ops);
406 rtnl_unlock();
407 return err;
408}
409EXPORT_SYMBOL_GPL(rtnl_af_register);
410
411/**
412 * __rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
413 * @ops: struct rtnl_af_ops * to unregister
414 *
415 * The caller must hold the rtnl_mutex.
416 */
417void __rtnl_af_unregister(struct rtnl_af_ops *ops)
418{
419 list_del(&ops->list);
420}
421EXPORT_SYMBOL_GPL(__rtnl_af_unregister);
422
423/**
424 * rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
425 * @ops: struct rtnl_af_ops * to unregister
426 */
427void rtnl_af_unregister(struct rtnl_af_ops *ops)
428{
429 rtnl_lock();
430 __rtnl_af_unregister(ops);
431 rtnl_unlock();
432}
433EXPORT_SYMBOL_GPL(rtnl_af_unregister);
434
435static size_t rtnl_link_get_af_size(const struct net_device *dev)
436{
437 struct rtnl_af_ops *af_ops;
438 size_t size;
439
440 /* IFLA_AF_SPEC */
441 size = nla_total_size(sizeof(struct nlattr));
442
443 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
444 if (af_ops->get_link_af_size) {
445 /* AF_* + nested data */
446 size += nla_total_size(sizeof(struct nlattr)) +
447 af_ops->get_link_af_size(dev);
448 }
449 }
450
451 return size;
452}
453
38f7b870
PM
454static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
455{
456 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
457 struct nlattr *linkinfo, *data;
458 int err = -EMSGSIZE;
459
460 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
461 if (linkinfo == NULL)
462 goto out;
463
464 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
465 goto err_cancel_link;
466 if (ops->fill_xstats) {
467 err = ops->fill_xstats(skb, dev);
468 if (err < 0)
469 goto err_cancel_link;
470 }
471 if (ops->fill_info) {
472 data = nla_nest_start(skb, IFLA_INFO_DATA);
473 if (data == NULL)
474 goto err_cancel_link;
475 err = ops->fill_info(skb, dev);
476 if (err < 0)
477 goto err_cancel_data;
478 nla_nest_end(skb, data);
479 }
480
481 nla_nest_end(skb, linkinfo);
482 return 0;
483
484err_cancel_data:
485 nla_nest_cancel(skb, data);
486err_cancel_link:
487 nla_nest_cancel(skb, linkinfo);
488out:
489 return err;
490}
491
db46edc6 492static const int rtm_min[RTM_NR_FAMILIES] =
1da177e4 493{
f90a0a74
TG
494 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
495 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
496 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
14c0b97d 497 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
f90a0a74
TG
498 [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
499 [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
500 [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
501 [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)),
f90a0a74
TG
502 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
503 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
1da177e4
LT
504};
505
db46edc6 506static const int rta_max[RTM_NR_FAMILIES] =
1da177e4 507{
f90a0a74
TG
508 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
509 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
510 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
14c0b97d 511 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
f90a0a74
TG
512 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
513 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
514 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
515 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
1da177e4
LT
516};
517
518void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
519{
520 struct rtattr *rta;
521 int size = RTA_LENGTH(attrlen);
522
e0d087af 523 rta = (struct rtattr *)skb_put(skb, RTA_ALIGN(size));
1da177e4
LT
524 rta->rta_type = attrtype;
525 rta->rta_len = size;
526 memcpy(RTA_DATA(rta), data, attrlen);
b3563c4f 527 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
1da177e4 528}
e0d087af 529EXPORT_SYMBOL(__rta_fill);
1da177e4 530
97c53cac 531int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned group, int echo)
1da177e4 532{
97c53cac 533 struct sock *rtnl = net->rtnl;
1da177e4
LT
534 int err = 0;
535
ac6d439d 536 NETLINK_CB(skb).dst_group = group;
1da177e4
LT
537 if (echo)
538 atomic_inc(&skb->users);
539 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
540 if (echo)
541 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
542 return err;
543}
544
97c53cac 545int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
2942e900 546{
97c53cac
DL
547 struct sock *rtnl = net->rtnl;
548
2942e900
TG
549 return nlmsg_unicast(rtnl, skb, pid);
550}
e0d087af 551EXPORT_SYMBOL(rtnl_unicast);
2942e900 552
1ce85fe4
PNA
553void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
554 struct nlmsghdr *nlh, gfp_t flags)
97676b6b 555{
97c53cac 556 struct sock *rtnl = net->rtnl;
97676b6b
TG
557 int report = 0;
558
559 if (nlh)
560 report = nlmsg_report(nlh);
561
1ce85fe4 562 nlmsg_notify(rtnl, skb, pid, group, report, flags);
97676b6b 563}
e0d087af 564EXPORT_SYMBOL(rtnl_notify);
97676b6b 565
97c53cac 566void rtnl_set_sk_err(struct net *net, u32 group, int error)
97676b6b 567{
97c53cac
DL
568 struct sock *rtnl = net->rtnl;
569
97676b6b
TG
570 netlink_set_err(rtnl, 0, group, error);
571}
e0d087af 572EXPORT_SYMBOL(rtnl_set_sk_err);
97676b6b 573
1da177e4
LT
574int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
575{
2d7202bf
TG
576 struct nlattr *mx;
577 int i, valid = 0;
578
579 mx = nla_nest_start(skb, RTA_METRICS);
580 if (mx == NULL)
581 return -ENOBUFS;
582
583 for (i = 0; i < RTAX_MAX; i++) {
584 if (metrics[i]) {
585 valid++;
586 NLA_PUT_U32(skb, i+1, metrics[i]);
587 }
1da177e4 588 }
1da177e4 589
a57d27fc
DM
590 if (!valid) {
591 nla_nest_cancel(skb, mx);
592 return 0;
593 }
2d7202bf
TG
594
595 return nla_nest_end(skb, mx);
596
597nla_put_failure:
bc3ed28c
TG
598 nla_nest_cancel(skb, mx);
599 return -EMSGSIZE;
1da177e4 600}
e0d087af 601EXPORT_SYMBOL(rtnetlink_put_metrics);
1da177e4 602
e3703b3d
TG
603int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
604 u32 ts, u32 tsage, long expires, u32 error)
605{
606 struct rta_cacheinfo ci = {
607 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
608 .rta_used = dst->__use,
609 .rta_clntref = atomic_read(&(dst->__refcnt)),
610 .rta_error = error,
611 .rta_id = id,
612 .rta_ts = ts,
613 .rta_tsage = tsage,
614 };
615
616 if (expires)
617 ci.rta_expires = jiffies_to_clock_t(expires);
618
619 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
620}
e3703b3d 621EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
1da177e4 622
93b2d4a2 623static void set_operstate(struct net_device *dev, unsigned char transition)
b00055aa
SR
624{
625 unsigned char operstate = dev->operstate;
626
e0d087af 627 switch (transition) {
b00055aa
SR
628 case IF_OPER_UP:
629 if ((operstate == IF_OPER_DORMANT ||
630 operstate == IF_OPER_UNKNOWN) &&
631 !netif_dormant(dev))
632 operstate = IF_OPER_UP;
633 break;
634
635 case IF_OPER_DORMANT:
636 if (operstate == IF_OPER_UP ||
637 operstate == IF_OPER_UNKNOWN)
638 operstate = IF_OPER_DORMANT;
639 break;
3ff50b79 640 }
b00055aa
SR
641
642 if (dev->operstate != operstate) {
643 write_lock_bh(&dev_base_lock);
644 dev->operstate = operstate;
645 write_unlock_bh(&dev_base_lock);
93b2d4a2
DM
646 netdev_state_change(dev);
647 }
b00055aa
SR
648}
649
3729d502
PM
650static unsigned int rtnl_dev_combine_flags(const struct net_device *dev,
651 const struct ifinfomsg *ifm)
652{
653 unsigned int flags = ifm->ifi_flags;
654
655 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
656 if (ifm->ifi_change)
657 flags = (flags & ifm->ifi_change) |
658 (dev->flags & ~ifm->ifi_change);
659
660 return flags;
661}
662
b60c5115 663static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
be1f3c2c 664 const struct rtnl_link_stats64 *b)
1da177e4 665{
b60c5115
TG
666 a->rx_packets = b->rx_packets;
667 a->tx_packets = b->tx_packets;
668 a->rx_bytes = b->rx_bytes;
669 a->tx_bytes = b->tx_bytes;
670 a->rx_errors = b->rx_errors;
671 a->tx_errors = b->tx_errors;
672 a->rx_dropped = b->rx_dropped;
673 a->tx_dropped = b->tx_dropped;
674
675 a->multicast = b->multicast;
676 a->collisions = b->collisions;
677
678 a->rx_length_errors = b->rx_length_errors;
679 a->rx_over_errors = b->rx_over_errors;
680 a->rx_crc_errors = b->rx_crc_errors;
681 a->rx_frame_errors = b->rx_frame_errors;
682 a->rx_fifo_errors = b->rx_fifo_errors;
683 a->rx_missed_errors = b->rx_missed_errors;
684
685 a->tx_aborted_errors = b->tx_aborted_errors;
686 a->tx_carrier_errors = b->tx_carrier_errors;
687 a->tx_fifo_errors = b->tx_fifo_errors;
688 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
689 a->tx_window_errors = b->tx_window_errors;
690
691 a->rx_compressed = b->rx_compressed;
692 a->tx_compressed = b->tx_compressed;
10708f37
JE
693}
694
be1f3c2c 695static void copy_rtnl_link_stats64(void *v, const struct rtnl_link_stats64 *b)
10708f37 696{
afdcba37 697 memcpy(v, b, sizeof(*b));
10708f37 698}
1da177e4 699
c02db8c6 700/* All VF info */
ebc08a6f
WM
701static inline int rtnl_vfinfo_size(const struct net_device *dev)
702{
c02db8c6
CW
703 if (dev->dev.parent && dev_is_pci(dev->dev.parent)) {
704
705 int num_vfs = dev_num_vf(dev->dev.parent);
045de01a
SF
706 size_t size = nla_total_size(sizeof(struct nlattr));
707 size += nla_total_size(num_vfs * sizeof(struct nlattr));
708 size += num_vfs *
709 (nla_total_size(sizeof(struct ifla_vf_mac)) +
710 nla_total_size(sizeof(struct ifla_vf_vlan)) +
711 nla_total_size(sizeof(struct ifla_vf_tx_rate)));
c02db8c6
CW
712 return size;
713 } else
ebc08a6f
WM
714 return 0;
715}
716
57b61080
SF
717static size_t rtnl_port_size(const struct net_device *dev)
718{
719 size_t port_size = nla_total_size(4) /* PORT_VF */
720 + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */
721 + nla_total_size(sizeof(struct ifla_port_vsi))
722 /* PORT_VSI_TYPE */
723 + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */
724 + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */
725 + nla_total_size(1) /* PROT_VDP_REQUEST */
726 + nla_total_size(2); /* PORT_VDP_RESPONSE */
727 size_t vf_ports_size = nla_total_size(sizeof(struct nlattr));
728 size_t vf_port_size = nla_total_size(sizeof(struct nlattr))
729 + port_size;
730 size_t port_self_size = nla_total_size(sizeof(struct nlattr))
731 + port_size;
732
733 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
734 return 0;
735 if (dev_num_vf(dev->dev.parent))
736 return port_self_size + vf_ports_size +
737 vf_port_size * dev_num_vf(dev->dev.parent);
738 else
739 return port_self_size;
740}
741
9e34a5b5 742static noinline size_t if_nlmsg_size(const struct net_device *dev)
339bf98f
TG
743{
744 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
745 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
0b815a1a 746 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
339bf98f
TG
747 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
748 + nla_total_size(sizeof(struct rtnl_link_ifmap))
749 + nla_total_size(sizeof(struct rtnl_link_stats))
adcfe196 750 + nla_total_size(sizeof(struct rtnl_link_stats64))
339bf98f
TG
751 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
752 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
753 + nla_total_size(4) /* IFLA_TXQLEN */
754 + nla_total_size(4) /* IFLA_WEIGHT */
755 + nla_total_size(4) /* IFLA_MTU */
756 + nla_total_size(4) /* IFLA_LINK */
757 + nla_total_size(4) /* IFLA_MASTER */
758 + nla_total_size(1) /* IFLA_OPERSTATE */
38f7b870 759 + nla_total_size(1) /* IFLA_LINKMODE */
ebc08a6f 760 + nla_total_size(4) /* IFLA_NUM_VF */
c02db8c6 761 + rtnl_vfinfo_size(dev) /* IFLA_VFINFO_LIST */
57b61080 762 + rtnl_port_size(dev) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
f8ff182c
TG
763 + rtnl_link_get_size(dev) /* IFLA_LINKINFO */
764 + rtnl_link_get_af_size(dev); /* IFLA_AF_SPEC */
339bf98f
TG
765}
766
57b61080
SF
767static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev)
768{
769 struct nlattr *vf_ports;
770 struct nlattr *vf_port;
771 int vf;
772 int err;
773
774 vf_ports = nla_nest_start(skb, IFLA_VF_PORTS);
775 if (!vf_ports)
776 return -EMSGSIZE;
777
778 for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) {
779 vf_port = nla_nest_start(skb, IFLA_VF_PORT);
8ca94183
SF
780 if (!vf_port)
781 goto nla_put_failure;
57b61080
SF
782 NLA_PUT_U32(skb, IFLA_PORT_VF, vf);
783 err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb);
8ca94183
SF
784 if (err == -EMSGSIZE)
785 goto nla_put_failure;
57b61080 786 if (err) {
57b61080
SF
787 nla_nest_cancel(skb, vf_port);
788 continue;
789 }
790 nla_nest_end(skb, vf_port);
791 }
792
793 nla_nest_end(skb, vf_ports);
794
795 return 0;
8ca94183
SF
796
797nla_put_failure:
798 nla_nest_cancel(skb, vf_ports);
799 return -EMSGSIZE;
57b61080
SF
800}
801
802static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev)
803{
804 struct nlattr *port_self;
805 int err;
806
807 port_self = nla_nest_start(skb, IFLA_PORT_SELF);
808 if (!port_self)
809 return -EMSGSIZE;
810
811 err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb);
812 if (err) {
813 nla_nest_cancel(skb, port_self);
8ca94183 814 return (err == -EMSGSIZE) ? err : 0;
57b61080
SF
815 }
816
817 nla_nest_end(skb, port_self);
818
819 return 0;
820}
821
822static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev)
823{
824 int err;
825
826 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
827 return 0;
828
829 err = rtnl_port_self_fill(skb, dev);
830 if (err)
831 return err;
832
833 if (dev_num_vf(dev->dev.parent)) {
834 err = rtnl_vf_ports_fill(skb, dev);
835 if (err)
836 return err;
837 }
838
839 return 0;
840}
841
b60c5115 842static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
575c3e2a
PM
843 int type, u32 pid, u32 seq, u32 change,
844 unsigned int flags)
b60c5115
TG
845{
846 struct ifinfomsg *ifm;
847 struct nlmsghdr *nlh;
28172739 848 struct rtnl_link_stats64 temp;
be1f3c2c 849 const struct rtnl_link_stats64 *stats;
f8ff182c
TG
850 struct nlattr *attr, *af_spec;
851 struct rtnl_af_ops *af_ops;
1da177e4 852
b60c5115
TG
853 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
854 if (nlh == NULL)
26932566 855 return -EMSGSIZE;
1da177e4 856
b60c5115
TG
857 ifm = nlmsg_data(nlh);
858 ifm->ifi_family = AF_UNSPEC;
859 ifm->__ifi_pad = 0;
860 ifm->ifi_type = dev->type;
861 ifm->ifi_index = dev->ifindex;
862 ifm->ifi_flags = dev_get_flags(dev);
863 ifm->ifi_change = change;
864
865 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
866 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
b60c5115
TG
867 NLA_PUT_U8(skb, IFLA_OPERSTATE,
868 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
869 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
870 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
871
872 if (dev->ifindex != dev->iflink)
873 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
874
875 if (dev->master)
876 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
1da177e4 877
af356afa
PM
878 if (dev->qdisc)
879 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc->ops->id);
b00055aa 880
0b815a1a
SH
881 if (dev->ifalias)
882 NLA_PUT_STRING(skb, IFLA_IFALIAS, dev->ifalias);
883
1da177e4
LT
884 if (1) {
885 struct rtnl_link_ifmap map = {
886 .mem_start = dev->mem_start,
887 .mem_end = dev->mem_end,
888 .base_addr = dev->base_addr,
889 .irq = dev->irq,
890 .dma = dev->dma,
891 .port = dev->if_port,
892 };
b60c5115 893 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
1da177e4
LT
894 }
895
896 if (dev->addr_len) {
b60c5115
TG
897 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
898 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
1da177e4
LT
899 }
900
96e74088
PE
901 attr = nla_reserve(skb, IFLA_STATS,
902 sizeof(struct rtnl_link_stats));
903 if (attr == NULL)
904 goto nla_put_failure;
b60c5115 905
28172739 906 stats = dev_get_stats(dev, &temp);
96e74088 907 copy_rtnl_link_stats(nla_data(attr), stats);
1da177e4 908
10708f37
JE
909 attr = nla_reserve(skb, IFLA_STATS64,
910 sizeof(struct rtnl_link_stats64));
911 if (attr == NULL)
912 goto nla_put_failure;
10708f37
JE
913 copy_rtnl_link_stats64(nla_data(attr), stats);
914
57b61080
SF
915 if (dev->dev.parent)
916 NLA_PUT_U32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent));
917
ebc08a6f
WM
918 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent) {
919 int i;
ebc08a6f 920
c02db8c6
CW
921 struct nlattr *vfinfo, *vf;
922 int num_vfs = dev_num_vf(dev->dev.parent);
923
c02db8c6
CW
924 vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST);
925 if (!vfinfo)
926 goto nla_put_failure;
927 for (i = 0; i < num_vfs; i++) {
928 struct ifla_vf_info ivi;
929 struct ifla_vf_mac vf_mac;
930 struct ifla_vf_vlan vf_vlan;
931 struct ifla_vf_tx_rate vf_tx_rate;
ebc08a6f
WM
932 if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi))
933 break;
c02db8c6
CW
934 vf_mac.vf = vf_vlan.vf = vf_tx_rate.vf = ivi.vf;
935 memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac));
936 vf_vlan.vlan = ivi.vlan;
937 vf_vlan.qos = ivi.qos;
938 vf_tx_rate.rate = ivi.tx_rate;
939 vf = nla_nest_start(skb, IFLA_VF_INFO);
940 if (!vf) {
941 nla_nest_cancel(skb, vfinfo);
942 goto nla_put_failure;
943 }
944 NLA_PUT(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac);
945 NLA_PUT(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan);
946 NLA_PUT(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate), &vf_tx_rate);
947 nla_nest_end(skb, vf);
ebc08a6f 948 }
c02db8c6 949 nla_nest_end(skb, vfinfo);
ebc08a6f 950 }
57b61080
SF
951
952 if (rtnl_port_fill(skb, dev))
953 goto nla_put_failure;
954
38f7b870
PM
955 if (dev->rtnl_link_ops) {
956 if (rtnl_link_fill(skb, dev) < 0)
957 goto nla_put_failure;
958 }
959
f8ff182c
TG
960 if (!(af_spec = nla_nest_start(skb, IFLA_AF_SPEC)))
961 goto nla_put_failure;
962
963 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
964 if (af_ops->fill_link_af) {
965 struct nlattr *af;
966 int err;
967
968 if (!(af = nla_nest_start(skb, af_ops->family)))
969 goto nla_put_failure;
970
971 err = af_ops->fill_link_af(skb, dev);
972
973 /*
974 * Caller may return ENODATA to indicate that there
975 * was no data to be dumped. This is not an error, it
976 * means we should trim the attribute header and
977 * continue.
978 */
979 if (err == -ENODATA)
980 nla_nest_cancel(skb, af);
981 else if (err < 0)
982 goto nla_put_failure;
983
984 nla_nest_end(skb, af);
985 }
986 }
987
988 nla_nest_end(skb, af_spec);
989
b60c5115
TG
990 return nlmsg_end(skb, nlh);
991
992nla_put_failure:
26932566
PM
993 nlmsg_cancel(skb, nlh);
994 return -EMSGSIZE;
1da177e4
LT
995}
996
b60c5115 997static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
1da177e4 998{
3b1e0a65 999 struct net *net = sock_net(skb->sk);
7c28bd0b
ED
1000 int h, s_h;
1001 int idx = 0, s_idx;
1da177e4 1002 struct net_device *dev;
7c28bd0b
ED
1003 struct hlist_head *head;
1004 struct hlist_node *node;
1005
1006 s_h = cb->args[0];
1007 s_idx = cb->args[1];
1008
1009 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
1010 idx = 0;
1011 head = &net->dev_index_head[h];
1012 hlist_for_each_entry(dev, node, head, index_hlist) {
1013 if (idx < s_idx)
1014 goto cont;
1015 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
1016 NETLINK_CB(cb->skb).pid,
1017 cb->nlh->nlmsg_seq, 0,
1018 NLM_F_MULTI) <= 0)
1019 goto out;
7562f876 1020cont:
7c28bd0b
ED
1021 idx++;
1022 }
1da177e4 1023 }
7c28bd0b
ED
1024out:
1025 cb->args[1] = idx;
1026 cb->args[0] = h;
1da177e4
LT
1027
1028 return skb->len;
1029}
1030
e7199288 1031const struct nla_policy ifla_policy[IFLA_MAX+1] = {
5176f91e 1032 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
38f7b870
PM
1033 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1034 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
5176f91e 1035 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
da5e0494 1036 [IFLA_MTU] = { .type = NLA_U32 },
76e87306 1037 [IFLA_LINK] = { .type = NLA_U32 },
da5e0494
TG
1038 [IFLA_TXQLEN] = { .type = NLA_U32 },
1039 [IFLA_WEIGHT] = { .type = NLA_U32 },
1040 [IFLA_OPERSTATE] = { .type = NLA_U8 },
1041 [IFLA_LINKMODE] = { .type = NLA_U8 },
76e87306 1042 [IFLA_LINKINFO] = { .type = NLA_NESTED },
d8a5ec67 1043 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
0b815a1a 1044 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
c02db8c6 1045 [IFLA_VFINFO_LIST] = {. type = NLA_NESTED },
57b61080
SF
1046 [IFLA_VF_PORTS] = { .type = NLA_NESTED },
1047 [IFLA_PORT_SELF] = { .type = NLA_NESTED },
f8ff182c 1048 [IFLA_AF_SPEC] = { .type = NLA_NESTED },
da5e0494 1049};
e0d087af 1050EXPORT_SYMBOL(ifla_policy);
da5e0494 1051
38f7b870
PM
1052static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
1053 [IFLA_INFO_KIND] = { .type = NLA_STRING },
1054 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
1055};
1056
c02db8c6
CW
1057static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = {
1058 [IFLA_VF_INFO] = { .type = NLA_NESTED },
1059};
1060
1061static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
1062 [IFLA_VF_MAC] = { .type = NLA_BINARY,
1063 .len = sizeof(struct ifla_vf_mac) },
1064 [IFLA_VF_VLAN] = { .type = NLA_BINARY,
1065 .len = sizeof(struct ifla_vf_vlan) },
1066 [IFLA_VF_TX_RATE] = { .type = NLA_BINARY,
1067 .len = sizeof(struct ifla_vf_tx_rate) },
1068};
1069
57b61080
SF
1070static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = {
1071 [IFLA_PORT_VF] = { .type = NLA_U32 },
1072 [IFLA_PORT_PROFILE] = { .type = NLA_STRING,
1073 .len = PORT_PROFILE_MAX },
1074 [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY,
1075 .len = sizeof(struct ifla_port_vsi)},
1076 [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY,
1077 .len = PORT_UUID_MAX },
1078 [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING,
1079 .len = PORT_UUID_MAX },
1080 [IFLA_PORT_REQUEST] = { .type = NLA_U8, },
1081 [IFLA_PORT_RESPONSE] = { .type = NLA_U16, },
1082};
1083
81adee47
EB
1084struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
1085{
1086 struct net *net;
1087 /* Examine the link attributes and figure out which
1088 * network namespace we are talking about.
1089 */
1090 if (tb[IFLA_NET_NS_PID])
1091 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
1092 else
1093 net = get_net(src_net);
1094 return net;
1095}
1096EXPORT_SYMBOL(rtnl_link_get_net);
1097
1840bb13
TG
1098static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
1099{
1100 if (dev) {
1101 if (tb[IFLA_ADDRESS] &&
1102 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
1103 return -EINVAL;
1104
1105 if (tb[IFLA_BROADCAST] &&
1106 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
1107 return -EINVAL;
1108 }
1109
1110 return 0;
1111}
1112
c02db8c6
CW
1113static int do_setvfinfo(struct net_device *dev, struct nlattr *attr)
1114{
1115 int rem, err = -EINVAL;
1116 struct nlattr *vf;
1117 const struct net_device_ops *ops = dev->netdev_ops;
1118
1119 nla_for_each_nested(vf, attr, rem) {
1120 switch (nla_type(vf)) {
1121 case IFLA_VF_MAC: {
1122 struct ifla_vf_mac *ivm;
1123 ivm = nla_data(vf);
1124 err = -EOPNOTSUPP;
1125 if (ops->ndo_set_vf_mac)
1126 err = ops->ndo_set_vf_mac(dev, ivm->vf,
1127 ivm->mac);
1128 break;
1129 }
1130 case IFLA_VF_VLAN: {
1131 struct ifla_vf_vlan *ivv;
1132 ivv = nla_data(vf);
1133 err = -EOPNOTSUPP;
1134 if (ops->ndo_set_vf_vlan)
1135 err = ops->ndo_set_vf_vlan(dev, ivv->vf,
1136 ivv->vlan,
1137 ivv->qos);
1138 break;
1139 }
1140 case IFLA_VF_TX_RATE: {
1141 struct ifla_vf_tx_rate *ivt;
1142 ivt = nla_data(vf);
1143 err = -EOPNOTSUPP;
1144 if (ops->ndo_set_vf_tx_rate)
1145 err = ops->ndo_set_vf_tx_rate(dev, ivt->vf,
1146 ivt->rate);
1147 break;
1148 }
1149 default:
1150 err = -EINVAL;
1151 break;
1152 }
1153 if (err)
1154 break;
1155 }
1156 return err;
1157}
1158
0157f60c 1159static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
38f7b870 1160 struct nlattr **tb, char *ifname, int modified)
1da177e4 1161{
d314774c 1162 const struct net_device_ops *ops = dev->netdev_ops;
38f7b870 1163 int send_addr_notify = 0;
0157f60c 1164 int err;
1da177e4 1165
d8a5ec67 1166 if (tb[IFLA_NET_NS_PID]) {
81adee47 1167 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
d8a5ec67
EB
1168 if (IS_ERR(net)) {
1169 err = PTR_ERR(net);
1170 goto errout;
1171 }
1172 err = dev_change_net_namespace(dev, net, ifname);
1173 put_net(net);
1174 if (err)
1175 goto errout;
1176 modified = 1;
1177 }
1178
da5e0494 1179 if (tb[IFLA_MAP]) {
1da177e4
LT
1180 struct rtnl_link_ifmap *u_map;
1181 struct ifmap k_map;
1182
d314774c 1183 if (!ops->ndo_set_config) {
1da177e4 1184 err = -EOPNOTSUPP;
0157f60c 1185 goto errout;
1da177e4
LT
1186 }
1187
1188 if (!netif_device_present(dev)) {
1189 err = -ENODEV;
0157f60c 1190 goto errout;
1da177e4 1191 }
1da177e4 1192
da5e0494 1193 u_map = nla_data(tb[IFLA_MAP]);
1da177e4
LT
1194 k_map.mem_start = (unsigned long) u_map->mem_start;
1195 k_map.mem_end = (unsigned long) u_map->mem_end;
1196 k_map.base_addr = (unsigned short) u_map->base_addr;
1197 k_map.irq = (unsigned char) u_map->irq;
1198 k_map.dma = (unsigned char) u_map->dma;
1199 k_map.port = (unsigned char) u_map->port;
1200
d314774c 1201 err = ops->ndo_set_config(dev, &k_map);
da5e0494 1202 if (err < 0)
0157f60c 1203 goto errout;
1da177e4 1204
da5e0494 1205 modified = 1;
1da177e4
LT
1206 }
1207
da5e0494 1208 if (tb[IFLA_ADDRESS]) {
70f8e78e
DM
1209 struct sockaddr *sa;
1210 int len;
1211
d314774c 1212 if (!ops->ndo_set_mac_address) {
1da177e4 1213 err = -EOPNOTSUPP;
0157f60c 1214 goto errout;
1da177e4 1215 }
da5e0494 1216
1da177e4
LT
1217 if (!netif_device_present(dev)) {
1218 err = -ENODEV;
0157f60c 1219 goto errout;
1da177e4 1220 }
1da177e4 1221
70f8e78e
DM
1222 len = sizeof(sa_family_t) + dev->addr_len;
1223 sa = kmalloc(len, GFP_KERNEL);
1224 if (!sa) {
1225 err = -ENOMEM;
0157f60c 1226 goto errout;
70f8e78e
DM
1227 }
1228 sa->sa_family = dev->type;
da5e0494 1229 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
70f8e78e 1230 dev->addr_len);
d314774c 1231 err = ops->ndo_set_mac_address(dev, sa);
70f8e78e 1232 kfree(sa);
1da177e4 1233 if (err)
0157f60c 1234 goto errout;
1da177e4 1235 send_addr_notify = 1;
da5e0494 1236 modified = 1;
1da177e4
LT
1237 }
1238
da5e0494
TG
1239 if (tb[IFLA_MTU]) {
1240 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1241 if (err < 0)
0157f60c 1242 goto errout;
da5e0494 1243 modified = 1;
1da177e4
LT
1244 }
1245
da5e0494
TG
1246 /*
1247 * Interface selected by interface index but interface
1248 * name provided implies that a name change has been
1249 * requested.
1250 */
51055be8 1251 if (ifm->ifi_index > 0 && ifname[0]) {
da5e0494
TG
1252 err = dev_change_name(dev, ifname);
1253 if (err < 0)
0157f60c 1254 goto errout;
da5e0494 1255 modified = 1;
1da177e4
LT
1256 }
1257
0b815a1a
SH
1258 if (tb[IFLA_IFALIAS]) {
1259 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
1260 nla_len(tb[IFLA_IFALIAS]));
1261 if (err < 0)
1262 goto errout;
1263 modified = 1;
1264 }
1265
da5e0494
TG
1266 if (tb[IFLA_BROADCAST]) {
1267 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
1268 send_addr_notify = 1;
1da177e4
LT
1269 }
1270
83b496e9 1271 if (ifm->ifi_flags || ifm->ifi_change) {
3729d502 1272 err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
5f9021cf
JB
1273 if (err < 0)
1274 goto errout;
83b496e9 1275 }
1da177e4 1276
93b2d4a2
DM
1277 if (tb[IFLA_TXQLEN])
1278 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
b00055aa 1279
da5e0494 1280 if (tb[IFLA_OPERSTATE])
93b2d4a2 1281 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
b00055aa 1282
da5e0494 1283 if (tb[IFLA_LINKMODE]) {
93b2d4a2
DM
1284 write_lock_bh(&dev_base_lock);
1285 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1286 write_unlock_bh(&dev_base_lock);
b00055aa
SR
1287 }
1288
c02db8c6
CW
1289 if (tb[IFLA_VFINFO_LIST]) {
1290 struct nlattr *attr;
1291 int rem;
1292 nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) {
253683bb
DH
1293 if (nla_type(attr) != IFLA_VF_INFO) {
1294 err = -EINVAL;
c02db8c6 1295 goto errout;
253683bb 1296 }
c02db8c6
CW
1297 err = do_setvfinfo(dev, attr);
1298 if (err < 0)
1299 goto errout;
1300 modified = 1;
1301 }
ebc08a6f 1302 }
1da177e4
LT
1303 err = 0;
1304
57b61080
SF
1305 if (tb[IFLA_VF_PORTS]) {
1306 struct nlattr *port[IFLA_PORT_MAX+1];
1307 struct nlattr *attr;
1308 int vf;
1309 int rem;
1310
1311 err = -EOPNOTSUPP;
1312 if (!ops->ndo_set_vf_port)
1313 goto errout;
1314
1315 nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) {
1316 if (nla_type(attr) != IFLA_VF_PORT)
1317 continue;
1318 err = nla_parse_nested(port, IFLA_PORT_MAX,
1319 attr, ifla_port_policy);
1320 if (err < 0)
1321 goto errout;
1322 if (!port[IFLA_PORT_VF]) {
1323 err = -EOPNOTSUPP;
1324 goto errout;
1325 }
1326 vf = nla_get_u32(port[IFLA_PORT_VF]);
1327 err = ops->ndo_set_vf_port(dev, vf, port);
1328 if (err < 0)
1329 goto errout;
1330 modified = 1;
1331 }
1332 }
1333 err = 0;
1334
1335 if (tb[IFLA_PORT_SELF]) {
1336 struct nlattr *port[IFLA_PORT_MAX+1];
1337
1338 err = nla_parse_nested(port, IFLA_PORT_MAX,
1339 tb[IFLA_PORT_SELF], ifla_port_policy);
1340 if (err < 0)
1341 goto errout;
1342
1343 err = -EOPNOTSUPP;
1344 if (ops->ndo_set_vf_port)
1345 err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port);
1346 if (err < 0)
1347 goto errout;
1348 modified = 1;
1349 }
f8ff182c
TG
1350
1351 if (tb[IFLA_AF_SPEC]) {
1352 struct nlattr *af;
1353 int rem;
1354
1355 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1356 const struct rtnl_af_ops *af_ops;
1357
1358 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
1359 continue;
1360
1361 if (!af_ops->parse_link_af)
1362 continue;
1363
1364 err = af_ops->parse_link_af(dev, af);
1365 if (err < 0)
1366 goto errout;
1367
1368 modified = 1;
1369 }
1370 }
57b61080
SF
1371 err = 0;
1372
0157f60c 1373errout:
da5e0494
TG
1374 if (err < 0 && modified && net_ratelimit())
1375 printk(KERN_WARNING "A link change request failed with "
1376 "some changes comitted already. Interface %s may "
1377 "have been left with an inconsistent configuration, "
1378 "please check.\n", dev->name);
1379
1da177e4
LT
1380 if (send_addr_notify)
1381 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
0157f60c
PM
1382 return err;
1383}
1da177e4 1384
0157f60c
PM
1385static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1386{
3b1e0a65 1387 struct net *net = sock_net(skb->sk);
0157f60c
PM
1388 struct ifinfomsg *ifm;
1389 struct net_device *dev;
1390 int err;
1391 struct nlattr *tb[IFLA_MAX+1];
1392 char ifname[IFNAMSIZ];
1393
1394 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1395 if (err < 0)
1396 goto errout;
1397
1398 if (tb[IFLA_IFNAME])
1399 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1400 else
1401 ifname[0] = '\0';
1402
1403 err = -EINVAL;
1404 ifm = nlmsg_data(nlh);
1405 if (ifm->ifi_index > 0)
a3d12891 1406 dev = __dev_get_by_index(net, ifm->ifi_index);
0157f60c 1407 else if (tb[IFLA_IFNAME])
a3d12891 1408 dev = __dev_get_by_name(net, ifname);
0157f60c
PM
1409 else
1410 goto errout;
1411
1412 if (dev == NULL) {
1413 err = -ENODEV;
1414 goto errout;
1415 }
1416
e0d087af
ED
1417 err = validate_linkmsg(dev, tb);
1418 if (err < 0)
a3d12891 1419 goto errout;
0157f60c 1420
38f7b870 1421 err = do_setlink(dev, ifm, tb, ifname, 0);
da5e0494 1422errout:
1da177e4
LT
1423 return err;
1424}
1425
38f7b870
PM
1426static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1427{
3b1e0a65 1428 struct net *net = sock_net(skb->sk);
38f7b870
PM
1429 const struct rtnl_link_ops *ops;
1430 struct net_device *dev;
1431 struct ifinfomsg *ifm;
1432 char ifname[IFNAMSIZ];
1433 struct nlattr *tb[IFLA_MAX+1];
1434 int err;
1435
1436 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1437 if (err < 0)
1438 return err;
1439
1440 if (tb[IFLA_IFNAME])
1441 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1442
1443 ifm = nlmsg_data(nlh);
1444 if (ifm->ifi_index > 0)
881d966b 1445 dev = __dev_get_by_index(net, ifm->ifi_index);
38f7b870 1446 else if (tb[IFLA_IFNAME])
881d966b 1447 dev = __dev_get_by_name(net, ifname);
38f7b870
PM
1448 else
1449 return -EINVAL;
1450
1451 if (!dev)
1452 return -ENODEV;
1453
1454 ops = dev->rtnl_link_ops;
1455 if (!ops)
1456 return -EOPNOTSUPP;
1457
23289a37 1458 ops->dellink(dev, NULL);
38f7b870
PM
1459 return 0;
1460}
1461
3729d502
PM
1462int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
1463{
1464 unsigned int old_flags;
1465 int err;
1466
1467 old_flags = dev->flags;
1468 if (ifm && (ifm->ifi_flags || ifm->ifi_change)) {
1469 err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
1470 if (err < 0)
1471 return err;
1472 }
1473
1474 dev->rtnl_link_state = RTNL_LINK_INITIALIZED;
1475 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1476
1477 __dev_notify_flags(dev, old_flags);
1478 return 0;
1479}
1480EXPORT_SYMBOL(rtnl_configure_link);
1481
81adee47
EB
1482struct net_device *rtnl_create_link(struct net *src_net, struct net *net,
1483 char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[])
e7199288
PE
1484{
1485 int err;
1486 struct net_device *dev;
2e59af3d
ED
1487 unsigned int num_queues = 1;
1488 unsigned int real_num_queues = 1;
e7199288 1489
2e59af3d 1490 if (ops->get_tx_queues) {
81adee47 1491 err = ops->get_tx_queues(src_net, tb, &num_queues,
e0d087af 1492 &real_num_queues);
2e59af3d
ED
1493 if (err)
1494 goto err;
1495 }
e7199288 1496 err = -ENOMEM;
2e59af3d 1497 dev = alloc_netdev_mq(ops->priv_size, ifname, ops->setup, num_queues);
e7199288
PE
1498 if (!dev)
1499 goto err;
1500
81adee47
EB
1501 dev_net_set(dev, net);
1502 dev->rtnl_link_ops = ops;
3729d502 1503 dev->rtnl_link_state = RTNL_LINK_INITIALIZING;
2e59af3d 1504 dev->real_num_tx_queues = real_num_queues;
81adee47 1505
e7199288
PE
1506 if (strchr(dev->name, '%')) {
1507 err = dev_alloc_name(dev, dev->name);
1508 if (err < 0)
1509 goto err_free;
1510 }
1511
e7199288
PE
1512 if (tb[IFLA_MTU])
1513 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
1514 if (tb[IFLA_ADDRESS])
1515 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1516 nla_len(tb[IFLA_ADDRESS]));
1517 if (tb[IFLA_BROADCAST])
1518 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1519 nla_len(tb[IFLA_BROADCAST]));
1520 if (tb[IFLA_TXQLEN])
1521 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1522 if (tb[IFLA_OPERSTATE])
93b2d4a2 1523 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
e7199288
PE
1524 if (tb[IFLA_LINKMODE])
1525 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1526
1527 return dev;
1528
1529err_free:
1530 free_netdev(dev);
1531err:
1532 return ERR_PTR(err);
1533}
e0d087af 1534EXPORT_SYMBOL(rtnl_create_link);
e7199288 1535
38f7b870
PM
1536static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1537{
3b1e0a65 1538 struct net *net = sock_net(skb->sk);
38f7b870
PM
1539 const struct rtnl_link_ops *ops;
1540 struct net_device *dev;
1541 struct ifinfomsg *ifm;
1542 char kind[MODULE_NAME_LEN];
1543 char ifname[IFNAMSIZ];
1544 struct nlattr *tb[IFLA_MAX+1];
1545 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1546 int err;
1547
95a5afca 1548#ifdef CONFIG_MODULES
38f7b870 1549replay:
8072f085 1550#endif
38f7b870
PM
1551 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1552 if (err < 0)
1553 return err;
1554
1555 if (tb[IFLA_IFNAME])
1556 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1557 else
1558 ifname[0] = '\0';
1559
1560 ifm = nlmsg_data(nlh);
1561 if (ifm->ifi_index > 0)
881d966b 1562 dev = __dev_get_by_index(net, ifm->ifi_index);
38f7b870 1563 else if (ifname[0])
881d966b 1564 dev = __dev_get_by_name(net, ifname);
38f7b870
PM
1565 else
1566 dev = NULL;
1567
e0d087af
ED
1568 err = validate_linkmsg(dev, tb);
1569 if (err < 0)
1840bb13
TG
1570 return err;
1571
38f7b870
PM
1572 if (tb[IFLA_LINKINFO]) {
1573 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1574 tb[IFLA_LINKINFO], ifla_info_policy);
1575 if (err < 0)
1576 return err;
1577 } else
1578 memset(linkinfo, 0, sizeof(linkinfo));
1579
1580 if (linkinfo[IFLA_INFO_KIND]) {
1581 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1582 ops = rtnl_link_ops_get(kind);
1583 } else {
1584 kind[0] = '\0';
1585 ops = NULL;
1586 }
1587
1588 if (1) {
1589 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
81adee47 1590 struct net *dest_net;
38f7b870
PM
1591
1592 if (ops) {
1593 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1594 err = nla_parse_nested(attr, ops->maxtype,
1595 linkinfo[IFLA_INFO_DATA],
1596 ops->policy);
1597 if (err < 0)
1598 return err;
1599 data = attr;
1600 }
1601 if (ops->validate) {
1602 err = ops->validate(tb, data);
1603 if (err < 0)
1604 return err;
1605 }
1606 }
1607
1608 if (dev) {
1609 int modified = 0;
1610
1611 if (nlh->nlmsg_flags & NLM_F_EXCL)
1612 return -EEXIST;
1613 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1614 return -EOPNOTSUPP;
1615
1616 if (linkinfo[IFLA_INFO_DATA]) {
1617 if (!ops || ops != dev->rtnl_link_ops ||
1618 !ops->changelink)
1619 return -EOPNOTSUPP;
1620
1621 err = ops->changelink(dev, tb, data);
1622 if (err < 0)
1623 return err;
1624 modified = 1;
1625 }
1626
1627 return do_setlink(dev, ifm, tb, ifname, modified);
1628 }
1629
1630 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
1631 return -ENODEV;
1632
3729d502 1633 if (ifm->ifi_index)
38f7b870 1634 return -EOPNOTSUPP;
0e06877c 1635 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
38f7b870
PM
1636 return -EOPNOTSUPP;
1637
1638 if (!ops) {
95a5afca 1639#ifdef CONFIG_MODULES
38f7b870
PM
1640 if (kind[0]) {
1641 __rtnl_unlock();
1642 request_module("rtnl-link-%s", kind);
1643 rtnl_lock();
1644 ops = rtnl_link_ops_get(kind);
1645 if (ops)
1646 goto replay;
1647 }
1648#endif
1649 return -EOPNOTSUPP;
1650 }
1651
1652 if (!ifname[0])
1653 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
e7199288 1654
81adee47
EB
1655 dest_net = rtnl_link_get_net(net, tb);
1656 dev = rtnl_create_link(net, dest_net, ifname, ops, tb);
e7199288
PE
1657
1658 if (IS_ERR(dev))
1659 err = PTR_ERR(dev);
1660 else if (ops->newlink)
81adee47 1661 err = ops->newlink(net, dev, tb, data);
2d85cba2
PM
1662 else
1663 err = register_netdevice(dev);
80032cff
DC
1664
1665 if (err < 0 && !IS_ERR(dev))
38f7b870 1666 free_netdev(dev);
80032cff 1667 if (err < 0)
3729d502 1668 goto out;
81adee47 1669
3729d502
PM
1670 err = rtnl_configure_link(dev, ifm);
1671 if (err < 0)
1672 unregister_netdevice(dev);
1673out:
81adee47 1674 put_net(dest_net);
38f7b870
PM
1675 return err;
1676 }
1677}
1678
b60c5115 1679static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
711e2c33 1680{
3b1e0a65 1681 struct net *net = sock_net(skb->sk);
b60c5115 1682 struct ifinfomsg *ifm;
a3d12891 1683 char ifname[IFNAMSIZ];
b60c5115
TG
1684 struct nlattr *tb[IFLA_MAX+1];
1685 struct net_device *dev = NULL;
1686 struct sk_buff *nskb;
339bf98f 1687 int err;
711e2c33 1688
b60c5115
TG
1689 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1690 if (err < 0)
9918f230 1691 return err;
b60c5115 1692
a3d12891
ED
1693 if (tb[IFLA_IFNAME])
1694 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1695
b60c5115 1696 ifm = nlmsg_data(nlh);
a3d12891
ED
1697 if (ifm->ifi_index > 0)
1698 dev = __dev_get_by_index(net, ifm->ifi_index);
1699 else if (tb[IFLA_IFNAME])
1700 dev = __dev_get_by_name(net, ifname);
1701 else
711e2c33 1702 return -EINVAL;
711e2c33 1703
a3d12891
ED
1704 if (dev == NULL)
1705 return -ENODEV;
1706
38f7b870 1707 nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
a3d12891
ED
1708 if (nskb == NULL)
1709 return -ENOBUFS;
b60c5115 1710
575c3e2a
PM
1711 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1712 nlh->nlmsg_seq, 0, 0);
26932566
PM
1713 if (err < 0) {
1714 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1715 WARN_ON(err == -EMSGSIZE);
1716 kfree_skb(nskb);
a3d12891
ED
1717 } else
1718 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid);
711e2c33 1719
b60c5115 1720 return err;
711e2c33 1721}
711e2c33 1722
42bad1da 1723static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
1da177e4
LT
1724{
1725 int idx;
1726 int s_idx = cb->family;
1727
1728 if (s_idx == 0)
1729 s_idx = 1;
25239cee 1730 for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) {
1da177e4
LT
1731 int type = cb->nlh->nlmsg_type-RTM_BASE;
1732 if (idx < s_idx || idx == PF_PACKET)
1733 continue;
e2849863
TG
1734 if (rtnl_msg_handlers[idx] == NULL ||
1735 rtnl_msg_handlers[idx][type].dumpit == NULL)
1da177e4
LT
1736 continue;
1737 if (idx > s_idx)
1738 memset(&cb->args[0], 0, sizeof(cb->args));
e2849863 1739 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
1da177e4
LT
1740 break;
1741 }
1742 cb->family = idx;
1743
1744 return skb->len;
1745}
1746
1747void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1748{
c346dca1 1749 struct net *net = dev_net(dev);
1da177e4 1750 struct sk_buff *skb;
0ec6d3f4 1751 int err = -ENOBUFS;
1da177e4 1752
38f7b870 1753 skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
0ec6d3f4
TG
1754 if (skb == NULL)
1755 goto errout;
1da177e4 1756
575c3e2a 1757 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
26932566
PM
1758 if (err < 0) {
1759 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1760 WARN_ON(err == -EMSGSIZE);
1761 kfree_skb(skb);
1762 goto errout;
1763 }
1ce85fe4
PNA
1764 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1765 return;
0ec6d3f4
TG
1766errout:
1767 if (err < 0)
4b3da706 1768 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
1da177e4
LT
1769}
1770
1da177e4
LT
1771/* Protected by RTNL sempahore. */
1772static struct rtattr **rta_buf;
1773static int rtattr_max;
1774
1775/* Process one rtnetlink message. */
1776
1d00a4eb 1777static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
1da177e4 1778{
3b1e0a65 1779 struct net *net = sock_net(skb->sk);
e2849863 1780 rtnl_doit_func doit;
1da177e4
LT
1781 int sz_idx, kind;
1782 int min_len;
1783 int family;
1784 int type;
1c2d670f 1785 int err;
1da177e4 1786
1da177e4 1787 type = nlh->nlmsg_type;
1da177e4 1788 if (type > RTM_MAX)
038890fe 1789 return -EOPNOTSUPP;
1da177e4
LT
1790
1791 type -= RTM_BASE;
1792
1793 /* All the messages must have at least 1 byte length */
1794 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1795 return 0;
1796
e0d087af 1797 family = ((struct rtgenmsg *)NLMSG_DATA(nlh))->rtgen_family;
1da177e4
LT
1798 sz_idx = type>>2;
1799 kind = type&3;
1800
1d00a4eb
TG
1801 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
1802 return -EPERM;
1da177e4
LT
1803
1804 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
97c53cac 1805 struct sock *rtnl;
e2849863 1806 rtnl_dumpit_func dumpit;
1da177e4 1807
e2849863
TG
1808 dumpit = rtnl_get_dumpit(family, type);
1809 if (dumpit == NULL)
038890fe 1810 return -EOPNOTSUPP;
9ac4a169 1811
1c2d670f 1812 __rtnl_unlock();
97c53cac 1813 rtnl = net->rtnl;
1c2d670f
PM
1814 err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL);
1815 rtnl_lock();
1816 return err;
1da177e4
LT
1817 }
1818
1819 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
1820
1821 min_len = rtm_min[sz_idx];
1822 if (nlh->nlmsg_len < min_len)
1d00a4eb 1823 return -EINVAL;
1da177e4
LT
1824
1825 if (nlh->nlmsg_len > min_len) {
1826 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
e0d087af 1827 struct rtattr *attr = (void *)nlh + NLMSG_ALIGN(min_len);
1da177e4
LT
1828
1829 while (RTA_OK(attr, attrlen)) {
1830 unsigned flavor = attr->rta_type;
1831 if (flavor) {
1832 if (flavor > rta_max[sz_idx])
1d00a4eb 1833 return -EINVAL;
1da177e4
LT
1834 rta_buf[flavor-1] = attr;
1835 }
1836 attr = RTA_NEXT(attr, attrlen);
1837 }
1838 }
1839
e2849863
TG
1840 doit = rtnl_get_doit(family, type);
1841 if (doit == NULL)
038890fe 1842 return -EOPNOTSUPP;
1da177e4 1843
1d00a4eb 1844 return doit(skb, nlh, (void *)&rta_buf[0]);
1da177e4
LT
1845}
1846
cd40b7d3 1847static void rtnetlink_rcv(struct sk_buff *skb)
1da177e4 1848{
cd40b7d3
DL
1849 rtnl_lock();
1850 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
1851 rtnl_unlock();
1da177e4
LT
1852}
1853
1da177e4
LT
1854static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
1855{
1856 struct net_device *dev = ptr;
e9dc8653 1857
1da177e4 1858 switch (event) {
1da177e4
LT
1859 case NETDEV_UP:
1860 case NETDEV_DOWN:
10de05af 1861 case NETDEV_PRE_UP:
d90a909e
EB
1862 case NETDEV_POST_INIT:
1863 case NETDEV_REGISTER:
1da177e4 1864 case NETDEV_CHANGE:
755d0e77 1865 case NETDEV_PRE_TYPE_CHANGE:
1da177e4 1866 case NETDEV_GOING_DOWN:
a2835763 1867 case NETDEV_UNREGISTER:
d90a909e 1868 case NETDEV_UNREGISTER_BATCH:
1da177e4
LT
1869 break;
1870 default:
1871 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1872 break;
1873 }
1874 return NOTIFY_DONE;
1875}
1876
1877static struct notifier_block rtnetlink_dev_notifier = {
1878 .notifier_call = rtnetlink_event,
1879};
1880
97c53cac 1881
2c8c1e72 1882static int __net_init rtnetlink_net_init(struct net *net)
97c53cac
DL
1883{
1884 struct sock *sk;
1885 sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX,
1886 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
1887 if (!sk)
1888 return -ENOMEM;
97c53cac
DL
1889 net->rtnl = sk;
1890 return 0;
1891}
1892
2c8c1e72 1893static void __net_exit rtnetlink_net_exit(struct net *net)
97c53cac 1894{
775516bf
DL
1895 netlink_kernel_release(net->rtnl);
1896 net->rtnl = NULL;
97c53cac
DL
1897}
1898
1899static struct pernet_operations rtnetlink_net_ops = {
1900 .init = rtnetlink_net_init,
1901 .exit = rtnetlink_net_exit,
1902};
1903
1da177e4
LT
1904void __init rtnetlink_init(void)
1905{
1906 int i;
1907
1908 rtattr_max = 0;
1909 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
1910 if (rta_max[i] > rtattr_max)
1911 rtattr_max = rta_max[i];
1912 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
1913 if (!rta_buf)
1914 panic("rtnetlink_init: cannot allocate rta_buf\n");
1915
97c53cac 1916 if (register_pernet_subsys(&rtnetlink_net_ops))
1da177e4 1917 panic("rtnetlink_init: cannot initialize rtnetlink\n");
97c53cac 1918
1da177e4
LT
1919 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
1920 register_netdevice_notifier(&rtnetlink_dev_notifier);
340d17fc
TG
1921
1922 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo);
1923 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL);
38f7b870
PM
1924 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL);
1925 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL);
687ad8cc
TG
1926
1927 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all);
1928 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all);
1da177e4
LT
1929}
1930