]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/core/rtnetlink.c
rtnetlink: remove rtnl_kill_links
[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
350 size = nlmsg_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
351 nlmsg_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
352
353 if (ops->get_size)
354 /* IFLA_INFO_DATA + nested data */
355 size += nlmsg_total_size(sizeof(struct nlattr)) +
356 ops->get_size(dev);
357
358 if (ops->get_xstats_size)
359 size += ops->get_xstats_size(dev); /* IFLA_INFO_XSTATS */
360
361 return size;
362}
363
364static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
365{
366 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
367 struct nlattr *linkinfo, *data;
368 int err = -EMSGSIZE;
369
370 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
371 if (linkinfo == NULL)
372 goto out;
373
374 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
375 goto err_cancel_link;
376 if (ops->fill_xstats) {
377 err = ops->fill_xstats(skb, dev);
378 if (err < 0)
379 goto err_cancel_link;
380 }
381 if (ops->fill_info) {
382 data = nla_nest_start(skb, IFLA_INFO_DATA);
383 if (data == NULL)
384 goto err_cancel_link;
385 err = ops->fill_info(skb, dev);
386 if (err < 0)
387 goto err_cancel_data;
388 nla_nest_end(skb, data);
389 }
390
391 nla_nest_end(skb, linkinfo);
392 return 0;
393
394err_cancel_data:
395 nla_nest_cancel(skb, data);
396err_cancel_link:
397 nla_nest_cancel(skb, linkinfo);
398out:
399 return err;
400}
401
db46edc6 402static const int rtm_min[RTM_NR_FAMILIES] =
1da177e4 403{
f90a0a74
TG
404 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
405 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
406 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
14c0b97d 407 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
f90a0a74
TG
408 [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
409 [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
410 [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
411 [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)),
f90a0a74
TG
412 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
413 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
1da177e4
LT
414};
415
db46edc6 416static const int rta_max[RTM_NR_FAMILIES] =
1da177e4 417{
f90a0a74
TG
418 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
419 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
420 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
14c0b97d 421 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
f90a0a74
TG
422 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
423 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
424 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
425 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
1da177e4
LT
426};
427
428void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
429{
430 struct rtattr *rta;
431 int size = RTA_LENGTH(attrlen);
432
e0d087af 433 rta = (struct rtattr *)skb_put(skb, RTA_ALIGN(size));
1da177e4
LT
434 rta->rta_type = attrtype;
435 rta->rta_len = size;
436 memcpy(RTA_DATA(rta), data, attrlen);
b3563c4f 437 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
1da177e4 438}
e0d087af 439EXPORT_SYMBOL(__rta_fill);
1da177e4 440
97c53cac 441int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned group, int echo)
1da177e4 442{
97c53cac 443 struct sock *rtnl = net->rtnl;
1da177e4
LT
444 int err = 0;
445
ac6d439d 446 NETLINK_CB(skb).dst_group = group;
1da177e4
LT
447 if (echo)
448 atomic_inc(&skb->users);
449 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
450 if (echo)
451 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
452 return err;
453}
454
97c53cac 455int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
2942e900 456{
97c53cac
DL
457 struct sock *rtnl = net->rtnl;
458
2942e900
TG
459 return nlmsg_unicast(rtnl, skb, pid);
460}
e0d087af 461EXPORT_SYMBOL(rtnl_unicast);
2942e900 462
1ce85fe4
PNA
463void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
464 struct nlmsghdr *nlh, gfp_t flags)
97676b6b 465{
97c53cac 466 struct sock *rtnl = net->rtnl;
97676b6b
TG
467 int report = 0;
468
469 if (nlh)
470 report = nlmsg_report(nlh);
471
1ce85fe4 472 nlmsg_notify(rtnl, skb, pid, group, report, flags);
97676b6b 473}
e0d087af 474EXPORT_SYMBOL(rtnl_notify);
97676b6b 475
97c53cac 476void rtnl_set_sk_err(struct net *net, u32 group, int error)
97676b6b 477{
97c53cac
DL
478 struct sock *rtnl = net->rtnl;
479
97676b6b
TG
480 netlink_set_err(rtnl, 0, group, error);
481}
e0d087af 482EXPORT_SYMBOL(rtnl_set_sk_err);
97676b6b 483
1da177e4
LT
484int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
485{
2d7202bf
TG
486 struct nlattr *mx;
487 int i, valid = 0;
488
489 mx = nla_nest_start(skb, RTA_METRICS);
490 if (mx == NULL)
491 return -ENOBUFS;
492
493 for (i = 0; i < RTAX_MAX; i++) {
494 if (metrics[i]) {
495 valid++;
496 NLA_PUT_U32(skb, i+1, metrics[i]);
497 }
1da177e4 498 }
1da177e4 499
a57d27fc
DM
500 if (!valid) {
501 nla_nest_cancel(skb, mx);
502 return 0;
503 }
2d7202bf
TG
504
505 return nla_nest_end(skb, mx);
506
507nla_put_failure:
bc3ed28c
TG
508 nla_nest_cancel(skb, mx);
509 return -EMSGSIZE;
1da177e4 510}
e0d087af 511EXPORT_SYMBOL(rtnetlink_put_metrics);
1da177e4 512
e3703b3d
TG
513int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
514 u32 ts, u32 tsage, long expires, u32 error)
515{
516 struct rta_cacheinfo ci = {
517 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
518 .rta_used = dst->__use,
519 .rta_clntref = atomic_read(&(dst->__refcnt)),
520 .rta_error = error,
521 .rta_id = id,
522 .rta_ts = ts,
523 .rta_tsage = tsage,
524 };
525
526 if (expires)
527 ci.rta_expires = jiffies_to_clock_t(expires);
528
529 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
530}
e3703b3d 531EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
1da177e4 532
93b2d4a2 533static void set_operstate(struct net_device *dev, unsigned char transition)
b00055aa
SR
534{
535 unsigned char operstate = dev->operstate;
536
e0d087af 537 switch (transition) {
b00055aa
SR
538 case IF_OPER_UP:
539 if ((operstate == IF_OPER_DORMANT ||
540 operstate == IF_OPER_UNKNOWN) &&
541 !netif_dormant(dev))
542 operstate = IF_OPER_UP;
543 break;
544
545 case IF_OPER_DORMANT:
546 if (operstate == IF_OPER_UP ||
547 operstate == IF_OPER_UNKNOWN)
548 operstate = IF_OPER_DORMANT;
549 break;
3ff50b79 550 }
b00055aa
SR
551
552 if (dev->operstate != operstate) {
553 write_lock_bh(&dev_base_lock);
554 dev->operstate = operstate;
555 write_unlock_bh(&dev_base_lock);
93b2d4a2
DM
556 netdev_state_change(dev);
557 }
b00055aa
SR
558}
559
3729d502
PM
560static unsigned int rtnl_dev_combine_flags(const struct net_device *dev,
561 const struct ifinfomsg *ifm)
562{
563 unsigned int flags = ifm->ifi_flags;
564
565 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
566 if (ifm->ifi_change)
567 flags = (flags & ifm->ifi_change) |
568 (dev->flags & ~ifm->ifi_change);
569
570 return flags;
571}
572
b60c5115 573static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
be1f3c2c 574 const struct rtnl_link_stats64 *b)
1da177e4 575{
b60c5115
TG
576 a->rx_packets = b->rx_packets;
577 a->tx_packets = b->tx_packets;
578 a->rx_bytes = b->rx_bytes;
579 a->tx_bytes = b->tx_bytes;
580 a->rx_errors = b->rx_errors;
581 a->tx_errors = b->tx_errors;
582 a->rx_dropped = b->rx_dropped;
583 a->tx_dropped = b->tx_dropped;
584
585 a->multicast = b->multicast;
586 a->collisions = b->collisions;
587
588 a->rx_length_errors = b->rx_length_errors;
589 a->rx_over_errors = b->rx_over_errors;
590 a->rx_crc_errors = b->rx_crc_errors;
591 a->rx_frame_errors = b->rx_frame_errors;
592 a->rx_fifo_errors = b->rx_fifo_errors;
593 a->rx_missed_errors = b->rx_missed_errors;
594
595 a->tx_aborted_errors = b->tx_aborted_errors;
596 a->tx_carrier_errors = b->tx_carrier_errors;
597 a->tx_fifo_errors = b->tx_fifo_errors;
598 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
599 a->tx_window_errors = b->tx_window_errors;
600
601 a->rx_compressed = b->rx_compressed;
602 a->tx_compressed = b->tx_compressed;
10708f37
JE
603}
604
be1f3c2c 605static void copy_rtnl_link_stats64(void *v, const struct rtnl_link_stats64 *b)
10708f37 606{
afdcba37 607 memcpy(v, b, sizeof(*b));
10708f37 608}
1da177e4 609
c02db8c6 610/* All VF info */
ebc08a6f
WM
611static inline int rtnl_vfinfo_size(const struct net_device *dev)
612{
c02db8c6
CW
613 if (dev->dev.parent && dev_is_pci(dev->dev.parent)) {
614
615 int num_vfs = dev_num_vf(dev->dev.parent);
045de01a
SF
616 size_t size = nla_total_size(sizeof(struct nlattr));
617 size += nla_total_size(num_vfs * sizeof(struct nlattr));
618 size += num_vfs *
619 (nla_total_size(sizeof(struct ifla_vf_mac)) +
620 nla_total_size(sizeof(struct ifla_vf_vlan)) +
621 nla_total_size(sizeof(struct ifla_vf_tx_rate)));
c02db8c6
CW
622 return size;
623 } else
ebc08a6f
WM
624 return 0;
625}
626
57b61080
SF
627static size_t rtnl_port_size(const struct net_device *dev)
628{
629 size_t port_size = nla_total_size(4) /* PORT_VF */
630 + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */
631 + nla_total_size(sizeof(struct ifla_port_vsi))
632 /* PORT_VSI_TYPE */
633 + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */
634 + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */
635 + nla_total_size(1) /* PROT_VDP_REQUEST */
636 + nla_total_size(2); /* PORT_VDP_RESPONSE */
637 size_t vf_ports_size = nla_total_size(sizeof(struct nlattr));
638 size_t vf_port_size = nla_total_size(sizeof(struct nlattr))
639 + port_size;
640 size_t port_self_size = nla_total_size(sizeof(struct nlattr))
641 + port_size;
642
643 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
644 return 0;
645 if (dev_num_vf(dev->dev.parent))
646 return port_self_size + vf_ports_size +
647 vf_port_size * dev_num_vf(dev->dev.parent);
648 else
649 return port_self_size;
650}
651
9e34a5b5 652static noinline size_t if_nlmsg_size(const struct net_device *dev)
339bf98f
TG
653{
654 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
655 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
0b815a1a 656 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
339bf98f
TG
657 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
658 + nla_total_size(sizeof(struct rtnl_link_ifmap))
659 + nla_total_size(sizeof(struct rtnl_link_stats))
adcfe196 660 + nla_total_size(sizeof(struct rtnl_link_stats64))
339bf98f
TG
661 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
662 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
663 + nla_total_size(4) /* IFLA_TXQLEN */
664 + nla_total_size(4) /* IFLA_WEIGHT */
665 + nla_total_size(4) /* IFLA_MTU */
666 + nla_total_size(4) /* IFLA_LINK */
667 + nla_total_size(4) /* IFLA_MASTER */
668 + nla_total_size(1) /* IFLA_OPERSTATE */
38f7b870 669 + nla_total_size(1) /* IFLA_LINKMODE */
ebc08a6f 670 + nla_total_size(4) /* IFLA_NUM_VF */
c02db8c6 671 + rtnl_vfinfo_size(dev) /* IFLA_VFINFO_LIST */
57b61080 672 + rtnl_port_size(dev) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
38f7b870 673 + rtnl_link_get_size(dev); /* IFLA_LINKINFO */
339bf98f
TG
674}
675
57b61080
SF
676static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev)
677{
678 struct nlattr *vf_ports;
679 struct nlattr *vf_port;
680 int vf;
681 int err;
682
683 vf_ports = nla_nest_start(skb, IFLA_VF_PORTS);
684 if (!vf_ports)
685 return -EMSGSIZE;
686
687 for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) {
688 vf_port = nla_nest_start(skb, IFLA_VF_PORT);
8ca94183
SF
689 if (!vf_port)
690 goto nla_put_failure;
57b61080
SF
691 NLA_PUT_U32(skb, IFLA_PORT_VF, vf);
692 err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb);
8ca94183
SF
693 if (err == -EMSGSIZE)
694 goto nla_put_failure;
57b61080 695 if (err) {
57b61080
SF
696 nla_nest_cancel(skb, vf_port);
697 continue;
698 }
699 nla_nest_end(skb, vf_port);
700 }
701
702 nla_nest_end(skb, vf_ports);
703
704 return 0;
8ca94183
SF
705
706nla_put_failure:
707 nla_nest_cancel(skb, vf_ports);
708 return -EMSGSIZE;
57b61080
SF
709}
710
711static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev)
712{
713 struct nlattr *port_self;
714 int err;
715
716 port_self = nla_nest_start(skb, IFLA_PORT_SELF);
717 if (!port_self)
718 return -EMSGSIZE;
719
720 err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb);
721 if (err) {
722 nla_nest_cancel(skb, port_self);
8ca94183 723 return (err == -EMSGSIZE) ? err : 0;
57b61080
SF
724 }
725
726 nla_nest_end(skb, port_self);
727
728 return 0;
729}
730
731static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev)
732{
733 int err;
734
735 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent)
736 return 0;
737
738 err = rtnl_port_self_fill(skb, dev);
739 if (err)
740 return err;
741
742 if (dev_num_vf(dev->dev.parent)) {
743 err = rtnl_vf_ports_fill(skb, dev);
744 if (err)
745 return err;
746 }
747
748 return 0;
749}
750
b60c5115 751static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
575c3e2a
PM
752 int type, u32 pid, u32 seq, u32 change,
753 unsigned int flags)
b60c5115
TG
754{
755 struct ifinfomsg *ifm;
756 struct nlmsghdr *nlh;
28172739 757 struct rtnl_link_stats64 temp;
be1f3c2c 758 const struct rtnl_link_stats64 *stats;
96e74088 759 struct nlattr *attr;
1da177e4 760
b60c5115
TG
761 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
762 if (nlh == NULL)
26932566 763 return -EMSGSIZE;
1da177e4 764
b60c5115
TG
765 ifm = nlmsg_data(nlh);
766 ifm->ifi_family = AF_UNSPEC;
767 ifm->__ifi_pad = 0;
768 ifm->ifi_type = dev->type;
769 ifm->ifi_index = dev->ifindex;
770 ifm->ifi_flags = dev_get_flags(dev);
771 ifm->ifi_change = change;
772
773 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
774 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
b60c5115
TG
775 NLA_PUT_U8(skb, IFLA_OPERSTATE,
776 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
777 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
778 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
779
780 if (dev->ifindex != dev->iflink)
781 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
782
783 if (dev->master)
784 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
1da177e4 785
af356afa
PM
786 if (dev->qdisc)
787 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc->ops->id);
b00055aa 788
0b815a1a
SH
789 if (dev->ifalias)
790 NLA_PUT_STRING(skb, IFLA_IFALIAS, dev->ifalias);
791
1da177e4
LT
792 if (1) {
793 struct rtnl_link_ifmap map = {
794 .mem_start = dev->mem_start,
795 .mem_end = dev->mem_end,
796 .base_addr = dev->base_addr,
797 .irq = dev->irq,
798 .dma = dev->dma,
799 .port = dev->if_port,
800 };
b60c5115 801 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
1da177e4
LT
802 }
803
804 if (dev->addr_len) {
b60c5115
TG
805 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
806 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
1da177e4
LT
807 }
808
96e74088
PE
809 attr = nla_reserve(skb, IFLA_STATS,
810 sizeof(struct rtnl_link_stats));
811 if (attr == NULL)
812 goto nla_put_failure;
b60c5115 813
28172739 814 stats = dev_get_stats(dev, &temp);
96e74088 815 copy_rtnl_link_stats(nla_data(attr), stats);
1da177e4 816
10708f37
JE
817 attr = nla_reserve(skb, IFLA_STATS64,
818 sizeof(struct rtnl_link_stats64));
819 if (attr == NULL)
820 goto nla_put_failure;
10708f37
JE
821 copy_rtnl_link_stats64(nla_data(attr), stats);
822
57b61080
SF
823 if (dev->dev.parent)
824 NLA_PUT_U32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent));
825
ebc08a6f
WM
826 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent) {
827 int i;
ebc08a6f 828
c02db8c6
CW
829 struct nlattr *vfinfo, *vf;
830 int num_vfs = dev_num_vf(dev->dev.parent);
831
c02db8c6
CW
832 vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST);
833 if (!vfinfo)
834 goto nla_put_failure;
835 for (i = 0; i < num_vfs; i++) {
836 struct ifla_vf_info ivi;
837 struct ifla_vf_mac vf_mac;
838 struct ifla_vf_vlan vf_vlan;
839 struct ifla_vf_tx_rate vf_tx_rate;
ebc08a6f
WM
840 if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi))
841 break;
c02db8c6
CW
842 vf_mac.vf = vf_vlan.vf = vf_tx_rate.vf = ivi.vf;
843 memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac));
844 vf_vlan.vlan = ivi.vlan;
845 vf_vlan.qos = ivi.qos;
846 vf_tx_rate.rate = ivi.tx_rate;
847 vf = nla_nest_start(skb, IFLA_VF_INFO);
848 if (!vf) {
849 nla_nest_cancel(skb, vfinfo);
850 goto nla_put_failure;
851 }
852 NLA_PUT(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac);
853 NLA_PUT(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan);
854 NLA_PUT(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate), &vf_tx_rate);
855 nla_nest_end(skb, vf);
ebc08a6f 856 }
c02db8c6 857 nla_nest_end(skb, vfinfo);
ebc08a6f 858 }
57b61080
SF
859
860 if (rtnl_port_fill(skb, dev))
861 goto nla_put_failure;
862
38f7b870
PM
863 if (dev->rtnl_link_ops) {
864 if (rtnl_link_fill(skb, dev) < 0)
865 goto nla_put_failure;
866 }
867
b60c5115
TG
868 return nlmsg_end(skb, nlh);
869
870nla_put_failure:
26932566
PM
871 nlmsg_cancel(skb, nlh);
872 return -EMSGSIZE;
1da177e4
LT
873}
874
b60c5115 875static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
1da177e4 876{
3b1e0a65 877 struct net *net = sock_net(skb->sk);
7c28bd0b
ED
878 int h, s_h;
879 int idx = 0, s_idx;
1da177e4 880 struct net_device *dev;
7c28bd0b
ED
881 struct hlist_head *head;
882 struct hlist_node *node;
883
884 s_h = cb->args[0];
885 s_idx = cb->args[1];
886
887 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
888 idx = 0;
889 head = &net->dev_index_head[h];
890 hlist_for_each_entry(dev, node, head, index_hlist) {
891 if (idx < s_idx)
892 goto cont;
893 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
894 NETLINK_CB(cb->skb).pid,
895 cb->nlh->nlmsg_seq, 0,
896 NLM_F_MULTI) <= 0)
897 goto out;
7562f876 898cont:
7c28bd0b
ED
899 idx++;
900 }
1da177e4 901 }
7c28bd0b
ED
902out:
903 cb->args[1] = idx;
904 cb->args[0] = h;
1da177e4
LT
905
906 return skb->len;
907}
908
e7199288 909const struct nla_policy ifla_policy[IFLA_MAX+1] = {
5176f91e 910 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
38f7b870
PM
911 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
912 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
5176f91e 913 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
da5e0494 914 [IFLA_MTU] = { .type = NLA_U32 },
76e87306 915 [IFLA_LINK] = { .type = NLA_U32 },
da5e0494
TG
916 [IFLA_TXQLEN] = { .type = NLA_U32 },
917 [IFLA_WEIGHT] = { .type = NLA_U32 },
918 [IFLA_OPERSTATE] = { .type = NLA_U8 },
919 [IFLA_LINKMODE] = { .type = NLA_U8 },
76e87306 920 [IFLA_LINKINFO] = { .type = NLA_NESTED },
d8a5ec67 921 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
0b815a1a 922 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
c02db8c6 923 [IFLA_VFINFO_LIST] = {. type = NLA_NESTED },
57b61080
SF
924 [IFLA_VF_PORTS] = { .type = NLA_NESTED },
925 [IFLA_PORT_SELF] = { .type = NLA_NESTED },
da5e0494 926};
e0d087af 927EXPORT_SYMBOL(ifla_policy);
da5e0494 928
38f7b870
PM
929static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
930 [IFLA_INFO_KIND] = { .type = NLA_STRING },
931 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
932};
933
c02db8c6
CW
934static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = {
935 [IFLA_VF_INFO] = { .type = NLA_NESTED },
936};
937
938static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
939 [IFLA_VF_MAC] = { .type = NLA_BINARY,
940 .len = sizeof(struct ifla_vf_mac) },
941 [IFLA_VF_VLAN] = { .type = NLA_BINARY,
942 .len = sizeof(struct ifla_vf_vlan) },
943 [IFLA_VF_TX_RATE] = { .type = NLA_BINARY,
944 .len = sizeof(struct ifla_vf_tx_rate) },
945};
946
57b61080
SF
947static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = {
948 [IFLA_PORT_VF] = { .type = NLA_U32 },
949 [IFLA_PORT_PROFILE] = { .type = NLA_STRING,
950 .len = PORT_PROFILE_MAX },
951 [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY,
952 .len = sizeof(struct ifla_port_vsi)},
953 [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY,
954 .len = PORT_UUID_MAX },
955 [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING,
956 .len = PORT_UUID_MAX },
957 [IFLA_PORT_REQUEST] = { .type = NLA_U8, },
958 [IFLA_PORT_RESPONSE] = { .type = NLA_U16, },
959};
960
81adee47
EB
961struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
962{
963 struct net *net;
964 /* Examine the link attributes and figure out which
965 * network namespace we are talking about.
966 */
967 if (tb[IFLA_NET_NS_PID])
968 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
969 else
970 net = get_net(src_net);
971 return net;
972}
973EXPORT_SYMBOL(rtnl_link_get_net);
974
1840bb13
TG
975static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
976{
977 if (dev) {
978 if (tb[IFLA_ADDRESS] &&
979 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
980 return -EINVAL;
981
982 if (tb[IFLA_BROADCAST] &&
983 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
984 return -EINVAL;
985 }
986
987 return 0;
988}
989
c02db8c6
CW
990static int do_setvfinfo(struct net_device *dev, struct nlattr *attr)
991{
992 int rem, err = -EINVAL;
993 struct nlattr *vf;
994 const struct net_device_ops *ops = dev->netdev_ops;
995
996 nla_for_each_nested(vf, attr, rem) {
997 switch (nla_type(vf)) {
998 case IFLA_VF_MAC: {
999 struct ifla_vf_mac *ivm;
1000 ivm = nla_data(vf);
1001 err = -EOPNOTSUPP;
1002 if (ops->ndo_set_vf_mac)
1003 err = ops->ndo_set_vf_mac(dev, ivm->vf,
1004 ivm->mac);
1005 break;
1006 }
1007 case IFLA_VF_VLAN: {
1008 struct ifla_vf_vlan *ivv;
1009 ivv = nla_data(vf);
1010 err = -EOPNOTSUPP;
1011 if (ops->ndo_set_vf_vlan)
1012 err = ops->ndo_set_vf_vlan(dev, ivv->vf,
1013 ivv->vlan,
1014 ivv->qos);
1015 break;
1016 }
1017 case IFLA_VF_TX_RATE: {
1018 struct ifla_vf_tx_rate *ivt;
1019 ivt = nla_data(vf);
1020 err = -EOPNOTSUPP;
1021 if (ops->ndo_set_vf_tx_rate)
1022 err = ops->ndo_set_vf_tx_rate(dev, ivt->vf,
1023 ivt->rate);
1024 break;
1025 }
1026 default:
1027 err = -EINVAL;
1028 break;
1029 }
1030 if (err)
1031 break;
1032 }
1033 return err;
1034}
1035
0157f60c 1036static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
38f7b870 1037 struct nlattr **tb, char *ifname, int modified)
1da177e4 1038{
d314774c 1039 const struct net_device_ops *ops = dev->netdev_ops;
38f7b870 1040 int send_addr_notify = 0;
0157f60c 1041 int err;
1da177e4 1042
d8a5ec67 1043 if (tb[IFLA_NET_NS_PID]) {
81adee47 1044 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
d8a5ec67
EB
1045 if (IS_ERR(net)) {
1046 err = PTR_ERR(net);
1047 goto errout;
1048 }
1049 err = dev_change_net_namespace(dev, net, ifname);
1050 put_net(net);
1051 if (err)
1052 goto errout;
1053 modified = 1;
1054 }
1055
da5e0494 1056 if (tb[IFLA_MAP]) {
1da177e4
LT
1057 struct rtnl_link_ifmap *u_map;
1058 struct ifmap k_map;
1059
d314774c 1060 if (!ops->ndo_set_config) {
1da177e4 1061 err = -EOPNOTSUPP;
0157f60c 1062 goto errout;
1da177e4
LT
1063 }
1064
1065 if (!netif_device_present(dev)) {
1066 err = -ENODEV;
0157f60c 1067 goto errout;
1da177e4 1068 }
1da177e4 1069
da5e0494 1070 u_map = nla_data(tb[IFLA_MAP]);
1da177e4
LT
1071 k_map.mem_start = (unsigned long) u_map->mem_start;
1072 k_map.mem_end = (unsigned long) u_map->mem_end;
1073 k_map.base_addr = (unsigned short) u_map->base_addr;
1074 k_map.irq = (unsigned char) u_map->irq;
1075 k_map.dma = (unsigned char) u_map->dma;
1076 k_map.port = (unsigned char) u_map->port;
1077
d314774c 1078 err = ops->ndo_set_config(dev, &k_map);
da5e0494 1079 if (err < 0)
0157f60c 1080 goto errout;
1da177e4 1081
da5e0494 1082 modified = 1;
1da177e4
LT
1083 }
1084
da5e0494 1085 if (tb[IFLA_ADDRESS]) {
70f8e78e
DM
1086 struct sockaddr *sa;
1087 int len;
1088
d314774c 1089 if (!ops->ndo_set_mac_address) {
1da177e4 1090 err = -EOPNOTSUPP;
0157f60c 1091 goto errout;
1da177e4 1092 }
da5e0494 1093
1da177e4
LT
1094 if (!netif_device_present(dev)) {
1095 err = -ENODEV;
0157f60c 1096 goto errout;
1da177e4 1097 }
1da177e4 1098
70f8e78e
DM
1099 len = sizeof(sa_family_t) + dev->addr_len;
1100 sa = kmalloc(len, GFP_KERNEL);
1101 if (!sa) {
1102 err = -ENOMEM;
0157f60c 1103 goto errout;
70f8e78e
DM
1104 }
1105 sa->sa_family = dev->type;
da5e0494 1106 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
70f8e78e 1107 dev->addr_len);
d314774c 1108 err = ops->ndo_set_mac_address(dev, sa);
70f8e78e 1109 kfree(sa);
1da177e4 1110 if (err)
0157f60c 1111 goto errout;
1da177e4 1112 send_addr_notify = 1;
da5e0494 1113 modified = 1;
1da177e4
LT
1114 }
1115
da5e0494
TG
1116 if (tb[IFLA_MTU]) {
1117 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1118 if (err < 0)
0157f60c 1119 goto errout;
da5e0494 1120 modified = 1;
1da177e4
LT
1121 }
1122
da5e0494
TG
1123 /*
1124 * Interface selected by interface index but interface
1125 * name provided implies that a name change has been
1126 * requested.
1127 */
51055be8 1128 if (ifm->ifi_index > 0 && ifname[0]) {
da5e0494
TG
1129 err = dev_change_name(dev, ifname);
1130 if (err < 0)
0157f60c 1131 goto errout;
da5e0494 1132 modified = 1;
1da177e4
LT
1133 }
1134
0b815a1a
SH
1135 if (tb[IFLA_IFALIAS]) {
1136 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
1137 nla_len(tb[IFLA_IFALIAS]));
1138 if (err < 0)
1139 goto errout;
1140 modified = 1;
1141 }
1142
da5e0494
TG
1143 if (tb[IFLA_BROADCAST]) {
1144 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
1145 send_addr_notify = 1;
1da177e4
LT
1146 }
1147
83b496e9 1148 if (ifm->ifi_flags || ifm->ifi_change) {
3729d502 1149 err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
5f9021cf
JB
1150 if (err < 0)
1151 goto errout;
83b496e9 1152 }
1da177e4 1153
93b2d4a2
DM
1154 if (tb[IFLA_TXQLEN])
1155 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
b00055aa 1156
da5e0494 1157 if (tb[IFLA_OPERSTATE])
93b2d4a2 1158 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
b00055aa 1159
da5e0494 1160 if (tb[IFLA_LINKMODE]) {
93b2d4a2
DM
1161 write_lock_bh(&dev_base_lock);
1162 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1163 write_unlock_bh(&dev_base_lock);
b00055aa
SR
1164 }
1165
c02db8c6
CW
1166 if (tb[IFLA_VFINFO_LIST]) {
1167 struct nlattr *attr;
1168 int rem;
1169 nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) {
253683bb
DH
1170 if (nla_type(attr) != IFLA_VF_INFO) {
1171 err = -EINVAL;
c02db8c6 1172 goto errout;
253683bb 1173 }
c02db8c6
CW
1174 err = do_setvfinfo(dev, attr);
1175 if (err < 0)
1176 goto errout;
1177 modified = 1;
1178 }
ebc08a6f 1179 }
1da177e4
LT
1180 err = 0;
1181
57b61080
SF
1182 if (tb[IFLA_VF_PORTS]) {
1183 struct nlattr *port[IFLA_PORT_MAX+1];
1184 struct nlattr *attr;
1185 int vf;
1186 int rem;
1187
1188 err = -EOPNOTSUPP;
1189 if (!ops->ndo_set_vf_port)
1190 goto errout;
1191
1192 nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) {
1193 if (nla_type(attr) != IFLA_VF_PORT)
1194 continue;
1195 err = nla_parse_nested(port, IFLA_PORT_MAX,
1196 attr, ifla_port_policy);
1197 if (err < 0)
1198 goto errout;
1199 if (!port[IFLA_PORT_VF]) {
1200 err = -EOPNOTSUPP;
1201 goto errout;
1202 }
1203 vf = nla_get_u32(port[IFLA_PORT_VF]);
1204 err = ops->ndo_set_vf_port(dev, vf, port);
1205 if (err < 0)
1206 goto errout;
1207 modified = 1;
1208 }
1209 }
1210 err = 0;
1211
1212 if (tb[IFLA_PORT_SELF]) {
1213 struct nlattr *port[IFLA_PORT_MAX+1];
1214
1215 err = nla_parse_nested(port, IFLA_PORT_MAX,
1216 tb[IFLA_PORT_SELF], ifla_port_policy);
1217 if (err < 0)
1218 goto errout;
1219
1220 err = -EOPNOTSUPP;
1221 if (ops->ndo_set_vf_port)
1222 err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port);
1223 if (err < 0)
1224 goto errout;
1225 modified = 1;
1226 }
1227 err = 0;
1228
0157f60c 1229errout:
da5e0494
TG
1230 if (err < 0 && modified && net_ratelimit())
1231 printk(KERN_WARNING "A link change request failed with "
1232 "some changes comitted already. Interface %s may "
1233 "have been left with an inconsistent configuration, "
1234 "please check.\n", dev->name);
1235
1da177e4
LT
1236 if (send_addr_notify)
1237 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
0157f60c
PM
1238 return err;
1239}
1da177e4 1240
0157f60c
PM
1241static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1242{
3b1e0a65 1243 struct net *net = sock_net(skb->sk);
0157f60c
PM
1244 struct ifinfomsg *ifm;
1245 struct net_device *dev;
1246 int err;
1247 struct nlattr *tb[IFLA_MAX+1];
1248 char ifname[IFNAMSIZ];
1249
1250 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1251 if (err < 0)
1252 goto errout;
1253
1254 if (tb[IFLA_IFNAME])
1255 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1256 else
1257 ifname[0] = '\0';
1258
1259 err = -EINVAL;
1260 ifm = nlmsg_data(nlh);
1261 if (ifm->ifi_index > 0)
a3d12891 1262 dev = __dev_get_by_index(net, ifm->ifi_index);
0157f60c 1263 else if (tb[IFLA_IFNAME])
a3d12891 1264 dev = __dev_get_by_name(net, ifname);
0157f60c
PM
1265 else
1266 goto errout;
1267
1268 if (dev == NULL) {
1269 err = -ENODEV;
1270 goto errout;
1271 }
1272
e0d087af
ED
1273 err = validate_linkmsg(dev, tb);
1274 if (err < 0)
a3d12891 1275 goto errout;
0157f60c 1276
38f7b870 1277 err = do_setlink(dev, ifm, tb, ifname, 0);
da5e0494 1278errout:
1da177e4
LT
1279 return err;
1280}
1281
38f7b870
PM
1282static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1283{
3b1e0a65 1284 struct net *net = sock_net(skb->sk);
38f7b870
PM
1285 const struct rtnl_link_ops *ops;
1286 struct net_device *dev;
1287 struct ifinfomsg *ifm;
1288 char ifname[IFNAMSIZ];
1289 struct nlattr *tb[IFLA_MAX+1];
1290 int err;
1291
1292 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1293 if (err < 0)
1294 return err;
1295
1296 if (tb[IFLA_IFNAME])
1297 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1298
1299 ifm = nlmsg_data(nlh);
1300 if (ifm->ifi_index > 0)
881d966b 1301 dev = __dev_get_by_index(net, ifm->ifi_index);
38f7b870 1302 else if (tb[IFLA_IFNAME])
881d966b 1303 dev = __dev_get_by_name(net, ifname);
38f7b870
PM
1304 else
1305 return -EINVAL;
1306
1307 if (!dev)
1308 return -ENODEV;
1309
1310 ops = dev->rtnl_link_ops;
1311 if (!ops)
1312 return -EOPNOTSUPP;
1313
23289a37 1314 ops->dellink(dev, NULL);
38f7b870
PM
1315 return 0;
1316}
1317
3729d502
PM
1318int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
1319{
1320 unsigned int old_flags;
1321 int err;
1322
1323 old_flags = dev->flags;
1324 if (ifm && (ifm->ifi_flags || ifm->ifi_change)) {
1325 err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
1326 if (err < 0)
1327 return err;
1328 }
1329
1330 dev->rtnl_link_state = RTNL_LINK_INITIALIZED;
1331 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1332
1333 __dev_notify_flags(dev, old_flags);
1334 return 0;
1335}
1336EXPORT_SYMBOL(rtnl_configure_link);
1337
81adee47
EB
1338struct net_device *rtnl_create_link(struct net *src_net, struct net *net,
1339 char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[])
e7199288
PE
1340{
1341 int err;
1342 struct net_device *dev;
2e59af3d
ED
1343 unsigned int num_queues = 1;
1344 unsigned int real_num_queues = 1;
e7199288 1345
2e59af3d 1346 if (ops->get_tx_queues) {
81adee47 1347 err = ops->get_tx_queues(src_net, tb, &num_queues,
e0d087af 1348 &real_num_queues);
2e59af3d
ED
1349 if (err)
1350 goto err;
1351 }
e7199288 1352 err = -ENOMEM;
2e59af3d 1353 dev = alloc_netdev_mq(ops->priv_size, ifname, ops->setup, num_queues);
e7199288
PE
1354 if (!dev)
1355 goto err;
1356
81adee47
EB
1357 dev_net_set(dev, net);
1358 dev->rtnl_link_ops = ops;
3729d502 1359 dev->rtnl_link_state = RTNL_LINK_INITIALIZING;
2e59af3d 1360 dev->real_num_tx_queues = real_num_queues;
81adee47 1361
e7199288
PE
1362 if (strchr(dev->name, '%')) {
1363 err = dev_alloc_name(dev, dev->name);
1364 if (err < 0)
1365 goto err_free;
1366 }
1367
e7199288
PE
1368 if (tb[IFLA_MTU])
1369 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
1370 if (tb[IFLA_ADDRESS])
1371 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1372 nla_len(tb[IFLA_ADDRESS]));
1373 if (tb[IFLA_BROADCAST])
1374 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1375 nla_len(tb[IFLA_BROADCAST]));
1376 if (tb[IFLA_TXQLEN])
1377 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1378 if (tb[IFLA_OPERSTATE])
93b2d4a2 1379 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
e7199288
PE
1380 if (tb[IFLA_LINKMODE])
1381 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1382
1383 return dev;
1384
1385err_free:
1386 free_netdev(dev);
1387err:
1388 return ERR_PTR(err);
1389}
e0d087af 1390EXPORT_SYMBOL(rtnl_create_link);
e7199288 1391
38f7b870
PM
1392static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1393{
3b1e0a65 1394 struct net *net = sock_net(skb->sk);
38f7b870
PM
1395 const struct rtnl_link_ops *ops;
1396 struct net_device *dev;
1397 struct ifinfomsg *ifm;
1398 char kind[MODULE_NAME_LEN];
1399 char ifname[IFNAMSIZ];
1400 struct nlattr *tb[IFLA_MAX+1];
1401 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1402 int err;
1403
95a5afca 1404#ifdef CONFIG_MODULES
38f7b870 1405replay:
8072f085 1406#endif
38f7b870
PM
1407 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1408 if (err < 0)
1409 return err;
1410
1411 if (tb[IFLA_IFNAME])
1412 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1413 else
1414 ifname[0] = '\0';
1415
1416 ifm = nlmsg_data(nlh);
1417 if (ifm->ifi_index > 0)
881d966b 1418 dev = __dev_get_by_index(net, ifm->ifi_index);
38f7b870 1419 else if (ifname[0])
881d966b 1420 dev = __dev_get_by_name(net, ifname);
38f7b870
PM
1421 else
1422 dev = NULL;
1423
e0d087af
ED
1424 err = validate_linkmsg(dev, tb);
1425 if (err < 0)
1840bb13
TG
1426 return err;
1427
38f7b870
PM
1428 if (tb[IFLA_LINKINFO]) {
1429 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1430 tb[IFLA_LINKINFO], ifla_info_policy);
1431 if (err < 0)
1432 return err;
1433 } else
1434 memset(linkinfo, 0, sizeof(linkinfo));
1435
1436 if (linkinfo[IFLA_INFO_KIND]) {
1437 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1438 ops = rtnl_link_ops_get(kind);
1439 } else {
1440 kind[0] = '\0';
1441 ops = NULL;
1442 }
1443
1444 if (1) {
1445 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
81adee47 1446 struct net *dest_net;
38f7b870
PM
1447
1448 if (ops) {
1449 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1450 err = nla_parse_nested(attr, ops->maxtype,
1451 linkinfo[IFLA_INFO_DATA],
1452 ops->policy);
1453 if (err < 0)
1454 return err;
1455 data = attr;
1456 }
1457 if (ops->validate) {
1458 err = ops->validate(tb, data);
1459 if (err < 0)
1460 return err;
1461 }
1462 }
1463
1464 if (dev) {
1465 int modified = 0;
1466
1467 if (nlh->nlmsg_flags & NLM_F_EXCL)
1468 return -EEXIST;
1469 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1470 return -EOPNOTSUPP;
1471
1472 if (linkinfo[IFLA_INFO_DATA]) {
1473 if (!ops || ops != dev->rtnl_link_ops ||
1474 !ops->changelink)
1475 return -EOPNOTSUPP;
1476
1477 err = ops->changelink(dev, tb, data);
1478 if (err < 0)
1479 return err;
1480 modified = 1;
1481 }
1482
1483 return do_setlink(dev, ifm, tb, ifname, modified);
1484 }
1485
1486 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
1487 return -ENODEV;
1488
3729d502 1489 if (ifm->ifi_index)
38f7b870 1490 return -EOPNOTSUPP;
0e06877c 1491 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
38f7b870
PM
1492 return -EOPNOTSUPP;
1493
1494 if (!ops) {
95a5afca 1495#ifdef CONFIG_MODULES
38f7b870
PM
1496 if (kind[0]) {
1497 __rtnl_unlock();
1498 request_module("rtnl-link-%s", kind);
1499 rtnl_lock();
1500 ops = rtnl_link_ops_get(kind);
1501 if (ops)
1502 goto replay;
1503 }
1504#endif
1505 return -EOPNOTSUPP;
1506 }
1507
1508 if (!ifname[0])
1509 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
e7199288 1510
81adee47
EB
1511 dest_net = rtnl_link_get_net(net, tb);
1512 dev = rtnl_create_link(net, dest_net, ifname, ops, tb);
e7199288
PE
1513
1514 if (IS_ERR(dev))
1515 err = PTR_ERR(dev);
1516 else if (ops->newlink)
81adee47 1517 err = ops->newlink(net, dev, tb, data);
2d85cba2
PM
1518 else
1519 err = register_netdevice(dev);
80032cff
DC
1520
1521 if (err < 0 && !IS_ERR(dev))
38f7b870 1522 free_netdev(dev);
80032cff 1523 if (err < 0)
3729d502 1524 goto out;
81adee47 1525
3729d502
PM
1526 err = rtnl_configure_link(dev, ifm);
1527 if (err < 0)
1528 unregister_netdevice(dev);
1529out:
81adee47 1530 put_net(dest_net);
38f7b870
PM
1531 return err;
1532 }
1533}
1534
b60c5115 1535static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
711e2c33 1536{
3b1e0a65 1537 struct net *net = sock_net(skb->sk);
b60c5115 1538 struct ifinfomsg *ifm;
a3d12891 1539 char ifname[IFNAMSIZ];
b60c5115
TG
1540 struct nlattr *tb[IFLA_MAX+1];
1541 struct net_device *dev = NULL;
1542 struct sk_buff *nskb;
339bf98f 1543 int err;
711e2c33 1544
b60c5115
TG
1545 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1546 if (err < 0)
9918f230 1547 return err;
b60c5115 1548
a3d12891
ED
1549 if (tb[IFLA_IFNAME])
1550 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1551
b60c5115 1552 ifm = nlmsg_data(nlh);
a3d12891
ED
1553 if (ifm->ifi_index > 0)
1554 dev = __dev_get_by_index(net, ifm->ifi_index);
1555 else if (tb[IFLA_IFNAME])
1556 dev = __dev_get_by_name(net, ifname);
1557 else
711e2c33 1558 return -EINVAL;
711e2c33 1559
a3d12891
ED
1560 if (dev == NULL)
1561 return -ENODEV;
1562
38f7b870 1563 nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
a3d12891
ED
1564 if (nskb == NULL)
1565 return -ENOBUFS;
b60c5115 1566
575c3e2a
PM
1567 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1568 nlh->nlmsg_seq, 0, 0);
26932566
PM
1569 if (err < 0) {
1570 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1571 WARN_ON(err == -EMSGSIZE);
1572 kfree_skb(nskb);
a3d12891
ED
1573 } else
1574 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid);
711e2c33 1575
b60c5115 1576 return err;
711e2c33 1577}
711e2c33 1578
42bad1da 1579static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
1da177e4
LT
1580{
1581 int idx;
1582 int s_idx = cb->family;
1583
1584 if (s_idx == 0)
1585 s_idx = 1;
25239cee 1586 for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) {
1da177e4
LT
1587 int type = cb->nlh->nlmsg_type-RTM_BASE;
1588 if (idx < s_idx || idx == PF_PACKET)
1589 continue;
e2849863
TG
1590 if (rtnl_msg_handlers[idx] == NULL ||
1591 rtnl_msg_handlers[idx][type].dumpit == NULL)
1da177e4
LT
1592 continue;
1593 if (idx > s_idx)
1594 memset(&cb->args[0], 0, sizeof(cb->args));
e2849863 1595 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
1da177e4
LT
1596 break;
1597 }
1598 cb->family = idx;
1599
1600 return skb->len;
1601}
1602
1603void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1604{
c346dca1 1605 struct net *net = dev_net(dev);
1da177e4 1606 struct sk_buff *skb;
0ec6d3f4 1607 int err = -ENOBUFS;
1da177e4 1608
38f7b870 1609 skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
0ec6d3f4
TG
1610 if (skb == NULL)
1611 goto errout;
1da177e4 1612
575c3e2a 1613 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
26932566
PM
1614 if (err < 0) {
1615 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1616 WARN_ON(err == -EMSGSIZE);
1617 kfree_skb(skb);
1618 goto errout;
1619 }
1ce85fe4
PNA
1620 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1621 return;
0ec6d3f4
TG
1622errout:
1623 if (err < 0)
4b3da706 1624 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
1da177e4
LT
1625}
1626
1da177e4
LT
1627/* Protected by RTNL sempahore. */
1628static struct rtattr **rta_buf;
1629static int rtattr_max;
1630
1631/* Process one rtnetlink message. */
1632
1d00a4eb 1633static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
1da177e4 1634{
3b1e0a65 1635 struct net *net = sock_net(skb->sk);
e2849863 1636 rtnl_doit_func doit;
1da177e4
LT
1637 int sz_idx, kind;
1638 int min_len;
1639 int family;
1640 int type;
1c2d670f 1641 int err;
1da177e4 1642
1da177e4 1643 type = nlh->nlmsg_type;
1da177e4 1644 if (type > RTM_MAX)
038890fe 1645 return -EOPNOTSUPP;
1da177e4
LT
1646
1647 type -= RTM_BASE;
1648
1649 /* All the messages must have at least 1 byte length */
1650 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1651 return 0;
1652
e0d087af 1653 family = ((struct rtgenmsg *)NLMSG_DATA(nlh))->rtgen_family;
1da177e4
LT
1654 sz_idx = type>>2;
1655 kind = type&3;
1656
1d00a4eb
TG
1657 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
1658 return -EPERM;
1da177e4
LT
1659
1660 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
97c53cac 1661 struct sock *rtnl;
e2849863 1662 rtnl_dumpit_func dumpit;
1da177e4 1663
e2849863
TG
1664 dumpit = rtnl_get_dumpit(family, type);
1665 if (dumpit == NULL)
038890fe 1666 return -EOPNOTSUPP;
9ac4a169 1667
1c2d670f 1668 __rtnl_unlock();
97c53cac 1669 rtnl = net->rtnl;
1c2d670f
PM
1670 err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL);
1671 rtnl_lock();
1672 return err;
1da177e4
LT
1673 }
1674
1675 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
1676
1677 min_len = rtm_min[sz_idx];
1678 if (nlh->nlmsg_len < min_len)
1d00a4eb 1679 return -EINVAL;
1da177e4
LT
1680
1681 if (nlh->nlmsg_len > min_len) {
1682 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
e0d087af 1683 struct rtattr *attr = (void *)nlh + NLMSG_ALIGN(min_len);
1da177e4
LT
1684
1685 while (RTA_OK(attr, attrlen)) {
1686 unsigned flavor = attr->rta_type;
1687 if (flavor) {
1688 if (flavor > rta_max[sz_idx])
1d00a4eb 1689 return -EINVAL;
1da177e4
LT
1690 rta_buf[flavor-1] = attr;
1691 }
1692 attr = RTA_NEXT(attr, attrlen);
1693 }
1694 }
1695
e2849863
TG
1696 doit = rtnl_get_doit(family, type);
1697 if (doit == NULL)
038890fe 1698 return -EOPNOTSUPP;
1da177e4 1699
1d00a4eb 1700 return doit(skb, nlh, (void *)&rta_buf[0]);
1da177e4
LT
1701}
1702
cd40b7d3 1703static void rtnetlink_rcv(struct sk_buff *skb)
1da177e4 1704{
cd40b7d3
DL
1705 rtnl_lock();
1706 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
1707 rtnl_unlock();
1da177e4
LT
1708}
1709
1da177e4
LT
1710static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
1711{
1712 struct net_device *dev = ptr;
e9dc8653 1713
1da177e4 1714 switch (event) {
1da177e4
LT
1715 case NETDEV_UP:
1716 case NETDEV_DOWN:
10de05af 1717 case NETDEV_PRE_UP:
d90a909e
EB
1718 case NETDEV_POST_INIT:
1719 case NETDEV_REGISTER:
1da177e4 1720 case NETDEV_CHANGE:
755d0e77 1721 case NETDEV_PRE_TYPE_CHANGE:
1da177e4 1722 case NETDEV_GOING_DOWN:
a2835763 1723 case NETDEV_UNREGISTER:
d90a909e 1724 case NETDEV_UNREGISTER_BATCH:
1da177e4
LT
1725 break;
1726 default:
1727 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1728 break;
1729 }
1730 return NOTIFY_DONE;
1731}
1732
1733static struct notifier_block rtnetlink_dev_notifier = {
1734 .notifier_call = rtnetlink_event,
1735};
1736
97c53cac 1737
2c8c1e72 1738static int __net_init rtnetlink_net_init(struct net *net)
97c53cac
DL
1739{
1740 struct sock *sk;
1741 sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX,
1742 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
1743 if (!sk)
1744 return -ENOMEM;
97c53cac
DL
1745 net->rtnl = sk;
1746 return 0;
1747}
1748
2c8c1e72 1749static void __net_exit rtnetlink_net_exit(struct net *net)
97c53cac 1750{
775516bf
DL
1751 netlink_kernel_release(net->rtnl);
1752 net->rtnl = NULL;
97c53cac
DL
1753}
1754
1755static struct pernet_operations rtnetlink_net_ops = {
1756 .init = rtnetlink_net_init,
1757 .exit = rtnetlink_net_exit,
1758};
1759
1da177e4
LT
1760void __init rtnetlink_init(void)
1761{
1762 int i;
1763
1764 rtattr_max = 0;
1765 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
1766 if (rta_max[i] > rtattr_max)
1767 rtattr_max = rta_max[i];
1768 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
1769 if (!rta_buf)
1770 panic("rtnetlink_init: cannot allocate rta_buf\n");
1771
97c53cac 1772 if (register_pernet_subsys(&rtnetlink_net_ops))
1da177e4 1773 panic("rtnetlink_init: cannot initialize rtnetlink\n");
97c53cac 1774
1da177e4
LT
1775 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
1776 register_netdevice_notifier(&rtnetlink_dev_notifier);
340d17fc
TG
1777
1778 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo);
1779 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL);
38f7b870
PM
1780 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL);
1781 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL);
687ad8cc
TG
1782
1783 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all);
1784 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all);
1da177e4
LT
1785}
1786