Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
[safe/jmp/linux-2.6] / net / core / rtnetlink.c
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
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>
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>
36 #include <linux/mutex.h>
37 #include <linux/if_addr.h>
38 #include <linux/nsproxy.h>
39
40 #include <asm/uaccess.h>
41 #include <asm/system.h>
42 #include <asm/string.h>
43
44 #include <linux/inet.h>
45 #include <linux/netdevice.h>
46 #include <net/ip.h>
47 #include <net/protocol.h>
48 #include <net/arp.h>
49 #include <net/route.h>
50 #include <net/udp.h>
51 #include <net/sock.h>
52 #include <net/pkt_sched.h>
53 #include <net/fib_rules.h>
54 #include <net/rtnetlink.h>
55
56 struct rtnl_link
57 {
58         rtnl_doit_func          doit;
59         rtnl_dumpit_func        dumpit;
60 };
61
62 static DEFINE_MUTEX(rtnl_mutex);
63
64 void rtnl_lock(void)
65 {
66         mutex_lock(&rtnl_mutex);
67 }
68
69 void __rtnl_unlock(void)
70 {
71         mutex_unlock(&rtnl_mutex);
72 }
73
74 void rtnl_unlock(void)
75 {
76         mutex_unlock(&rtnl_mutex);
77         netdev_run_todo();
78 }
79
80 int rtnl_trylock(void)
81 {
82         return mutex_trylock(&rtnl_mutex);
83 }
84
85 int rtnl_is_locked(void)
86 {
87         return mutex_is_locked(&rtnl_mutex);
88 }
89
90 static struct rtnl_link *rtnl_msg_handlers[NPROTO];
91
92 static inline int rtm_msgindex(int msgtype)
93 {
94         int msgindex = msgtype - RTM_BASE;
95
96         /*
97          * msgindex < 0 implies someone tried to register a netlink
98          * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
99          * the message type has not been added to linux/rtnetlink.h
100          */
101         BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
102
103         return msgindex;
104 }
105
106 static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
107 {
108         struct rtnl_link *tab;
109
110         tab = rtnl_msg_handlers[protocol];
111         if (tab == NULL || tab[msgindex].doit == NULL)
112                 tab = rtnl_msg_handlers[PF_UNSPEC];
113
114         return tab ? tab[msgindex].doit : NULL;
115 }
116
117 static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
118 {
119         struct rtnl_link *tab;
120
121         tab = rtnl_msg_handlers[protocol];
122         if (tab == NULL || tab[msgindex].dumpit == NULL)
123                 tab = rtnl_msg_handlers[PF_UNSPEC];
124
125         return tab ? tab[msgindex].dumpit : NULL;
126 }
127
128 /**
129  * __rtnl_register - Register a rtnetlink message type
130  * @protocol: Protocol family or PF_UNSPEC
131  * @msgtype: rtnetlink message type
132  * @doit: Function pointer called for each request message
133  * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
134  *
135  * Registers the specified function pointers (at least one of them has
136  * to be non-NULL) to be called whenever a request message for the
137  * specified protocol family and message type is received.
138  *
139  * The special protocol family PF_UNSPEC may be used to define fallback
140  * function pointers for the case when no entry for the specific protocol
141  * family exists.
142  *
143  * Returns 0 on success or a negative error code.
144  */
145 int __rtnl_register(int protocol, int msgtype,
146                     rtnl_doit_func doit, rtnl_dumpit_func dumpit)
147 {
148         struct rtnl_link *tab;
149         int msgindex;
150
151         BUG_ON(protocol < 0 || protocol >= NPROTO);
152         msgindex = rtm_msgindex(msgtype);
153
154         tab = rtnl_msg_handlers[protocol];
155         if (tab == NULL) {
156                 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
157                 if (tab == NULL)
158                         return -ENOBUFS;
159
160                 rtnl_msg_handlers[protocol] = tab;
161         }
162
163         if (doit)
164                 tab[msgindex].doit = doit;
165
166         if (dumpit)
167                 tab[msgindex].dumpit = dumpit;
168
169         return 0;
170 }
171
172 EXPORT_SYMBOL_GPL(__rtnl_register);
173
174 /**
175  * rtnl_register - Register a rtnetlink message type
176  *
177  * Identical to __rtnl_register() but panics on failure. This is useful
178  * as failure of this function is very unlikely, it can only happen due
179  * to lack of memory when allocating the chain to store all message
180  * handlers for a protocol. Meant for use in init functions where lack
181  * of memory implies no sense in continueing.
182  */
183 void rtnl_register(int protocol, int msgtype,
184                    rtnl_doit_func doit, rtnl_dumpit_func dumpit)
185 {
186         if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0)
187                 panic("Unable to register rtnetlink message handler, "
188                       "protocol = %d, message type = %d\n",
189                       protocol, msgtype);
190 }
191
192 EXPORT_SYMBOL_GPL(rtnl_register);
193
194 /**
195  * rtnl_unregister - Unregister a rtnetlink message type
196  * @protocol: Protocol family or PF_UNSPEC
197  * @msgtype: rtnetlink message type
198  *
199  * Returns 0 on success or a negative error code.
200  */
201 int rtnl_unregister(int protocol, int msgtype)
202 {
203         int msgindex;
204
205         BUG_ON(protocol < 0 || protocol >= NPROTO);
206         msgindex = rtm_msgindex(msgtype);
207
208         if (rtnl_msg_handlers[protocol] == NULL)
209                 return -ENOENT;
210
211         rtnl_msg_handlers[protocol][msgindex].doit = NULL;
212         rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
213
214         return 0;
215 }
216
217 EXPORT_SYMBOL_GPL(rtnl_unregister);
218
219 /**
220  * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
221  * @protocol : Protocol family or PF_UNSPEC
222  *
223  * Identical to calling rtnl_unregster() for all registered message types
224  * of a certain protocol family.
225  */
226 void rtnl_unregister_all(int protocol)
227 {
228         BUG_ON(protocol < 0 || protocol >= NPROTO);
229
230         kfree(rtnl_msg_handlers[protocol]);
231         rtnl_msg_handlers[protocol] = NULL;
232 }
233
234 EXPORT_SYMBOL_GPL(rtnl_unregister_all);
235
236 static LIST_HEAD(link_ops);
237
238 /**
239  * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
240  * @ops: struct rtnl_link_ops * to register
241  *
242  * The caller must hold the rtnl_mutex. This function should be used
243  * by drivers that create devices during module initialization. It
244  * must be called before registering the devices.
245  *
246  * Returns 0 on success or a negative error code.
247  */
248 int __rtnl_link_register(struct rtnl_link_ops *ops)
249 {
250         if (!ops->dellink)
251                 ops->dellink = unregister_netdevice;
252
253         list_add_tail(&ops->list, &link_ops);
254         return 0;
255 }
256
257 EXPORT_SYMBOL_GPL(__rtnl_link_register);
258
259 /**
260  * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
261  * @ops: struct rtnl_link_ops * to register
262  *
263  * Returns 0 on success or a negative error code.
264  */
265 int rtnl_link_register(struct rtnl_link_ops *ops)
266 {
267         int err;
268
269         rtnl_lock();
270         err = __rtnl_link_register(ops);
271         rtnl_unlock();
272         return err;
273 }
274
275 EXPORT_SYMBOL_GPL(rtnl_link_register);
276
277 static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
278 {
279         struct net_device *dev;
280 restart:
281         for_each_netdev(net, dev) {
282                 if (dev->rtnl_link_ops == ops) {
283                         ops->dellink(dev);
284                         goto restart;
285                 }
286         }
287 }
288
289 void rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
290 {
291         rtnl_lock();
292         __rtnl_kill_links(net, ops);
293         rtnl_unlock();
294 }
295 EXPORT_SYMBOL_GPL(rtnl_kill_links);
296
297 /**
298  * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
299  * @ops: struct rtnl_link_ops * to unregister
300  *
301  * The caller must hold the rtnl_mutex.
302  */
303 void __rtnl_link_unregister(struct rtnl_link_ops *ops)
304 {
305         struct net *net;
306
307         for_each_net(net) {
308                 __rtnl_kill_links(net, ops);
309         }
310         list_del(&ops->list);
311 }
312
313 EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
314
315 /**
316  * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
317  * @ops: struct rtnl_link_ops * to unregister
318  */
319 void rtnl_link_unregister(struct rtnl_link_ops *ops)
320 {
321         rtnl_lock();
322         __rtnl_link_unregister(ops);
323         rtnl_unlock();
324 }
325
326 EXPORT_SYMBOL_GPL(rtnl_link_unregister);
327
328 static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
329 {
330         const struct rtnl_link_ops *ops;
331
332         list_for_each_entry(ops, &link_ops, list) {
333                 if (!strcmp(ops->kind, kind))
334                         return ops;
335         }
336         return NULL;
337 }
338
339 static size_t rtnl_link_get_size(const struct net_device *dev)
340 {
341         const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
342         size_t size;
343
344         if (!ops)
345                 return 0;
346
347         size = nlmsg_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
348                nlmsg_total_size(strlen(ops->kind) + 1);  /* IFLA_INFO_KIND */
349
350         if (ops->get_size)
351                 /* IFLA_INFO_DATA + nested data */
352                 size += nlmsg_total_size(sizeof(struct nlattr)) +
353                         ops->get_size(dev);
354
355         if (ops->get_xstats_size)
356                 size += ops->get_xstats_size(dev);      /* IFLA_INFO_XSTATS */
357
358         return size;
359 }
360
361 static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
362 {
363         const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
364         struct nlattr *linkinfo, *data;
365         int err = -EMSGSIZE;
366
367         linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
368         if (linkinfo == NULL)
369                 goto out;
370
371         if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
372                 goto err_cancel_link;
373         if (ops->fill_xstats) {
374                 err = ops->fill_xstats(skb, dev);
375                 if (err < 0)
376                         goto err_cancel_link;
377         }
378         if (ops->fill_info) {
379                 data = nla_nest_start(skb, IFLA_INFO_DATA);
380                 if (data == NULL)
381                         goto err_cancel_link;
382                 err = ops->fill_info(skb, dev);
383                 if (err < 0)
384                         goto err_cancel_data;
385                 nla_nest_end(skb, data);
386         }
387
388         nla_nest_end(skb, linkinfo);
389         return 0;
390
391 err_cancel_data:
392         nla_nest_cancel(skb, data);
393 err_cancel_link:
394         nla_nest_cancel(skb, linkinfo);
395 out:
396         return err;
397 }
398
399 static const int rtm_min[RTM_NR_FAMILIES] =
400 {
401         [RTM_FAM(RTM_NEWLINK)]      = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
402         [RTM_FAM(RTM_NEWADDR)]      = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
403         [RTM_FAM(RTM_NEWROUTE)]     = NLMSG_LENGTH(sizeof(struct rtmsg)),
404         [RTM_FAM(RTM_NEWRULE)]      = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
405         [RTM_FAM(RTM_NEWQDISC)]     = NLMSG_LENGTH(sizeof(struct tcmsg)),
406         [RTM_FAM(RTM_NEWTCLASS)]    = NLMSG_LENGTH(sizeof(struct tcmsg)),
407         [RTM_FAM(RTM_NEWTFILTER)]   = NLMSG_LENGTH(sizeof(struct tcmsg)),
408         [RTM_FAM(RTM_NEWACTION)]    = NLMSG_LENGTH(sizeof(struct tcamsg)),
409         [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
410         [RTM_FAM(RTM_GETANYCAST)]   = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
411 };
412
413 static const int rta_max[RTM_NR_FAMILIES] =
414 {
415         [RTM_FAM(RTM_NEWLINK)]      = IFLA_MAX,
416         [RTM_FAM(RTM_NEWADDR)]      = IFA_MAX,
417         [RTM_FAM(RTM_NEWROUTE)]     = RTA_MAX,
418         [RTM_FAM(RTM_NEWRULE)]      = FRA_MAX,
419         [RTM_FAM(RTM_NEWQDISC)]     = TCA_MAX,
420         [RTM_FAM(RTM_NEWTCLASS)]    = TCA_MAX,
421         [RTM_FAM(RTM_NEWTFILTER)]   = TCA_MAX,
422         [RTM_FAM(RTM_NEWACTION)]    = TCAA_MAX,
423 };
424
425 void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
426 {
427         struct rtattr *rta;
428         int size = RTA_LENGTH(attrlen);
429
430         rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
431         rta->rta_type = attrtype;
432         rta->rta_len = size;
433         memcpy(RTA_DATA(rta), data, attrlen);
434         memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
435 }
436
437 int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned group, int echo)
438 {
439         struct sock *rtnl = net->rtnl;
440         int err = 0;
441
442         NETLINK_CB(skb).dst_group = group;
443         if (echo)
444                 atomic_inc(&skb->users);
445         netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
446         if (echo)
447                 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
448         return err;
449 }
450
451 int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
452 {
453         struct sock *rtnl = net->rtnl;
454
455         return nlmsg_unicast(rtnl, skb, pid);
456 }
457
458 int rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
459                 struct nlmsghdr *nlh, gfp_t flags)
460 {
461         struct sock *rtnl = net->rtnl;
462         int report = 0;
463
464         if (nlh)
465                 report = nlmsg_report(nlh);
466
467         return nlmsg_notify(rtnl, skb, pid, group, report, flags);
468 }
469
470 void rtnl_set_sk_err(struct net *net, u32 group, int error)
471 {
472         struct sock *rtnl = net->rtnl;
473
474         netlink_set_err(rtnl, 0, group, error);
475 }
476
477 int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
478 {
479         struct nlattr *mx;
480         int i, valid = 0;
481
482         mx = nla_nest_start(skb, RTA_METRICS);
483         if (mx == NULL)
484                 return -ENOBUFS;
485
486         for (i = 0; i < RTAX_MAX; i++) {
487                 if (metrics[i]) {
488                         valid++;
489                         NLA_PUT_U32(skb, i+1, metrics[i]);
490                 }
491         }
492
493         if (!valid) {
494                 nla_nest_cancel(skb, mx);
495                 return 0;
496         }
497
498         return nla_nest_end(skb, mx);
499
500 nla_put_failure:
501         nla_nest_cancel(skb, mx);
502         return -EMSGSIZE;
503 }
504
505 int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
506                        u32 ts, u32 tsage, long expires, u32 error)
507 {
508         struct rta_cacheinfo ci = {
509                 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
510                 .rta_used = dst->__use,
511                 .rta_clntref = atomic_read(&(dst->__refcnt)),
512                 .rta_error = error,
513                 .rta_id =  id,
514                 .rta_ts = ts,
515                 .rta_tsage = tsage,
516         };
517
518         if (expires)
519                 ci.rta_expires = jiffies_to_clock_t(expires);
520
521         return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
522 }
523
524 EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
525
526 static void set_operstate(struct net_device *dev, unsigned char transition)
527 {
528         unsigned char operstate = dev->operstate;
529
530         switch(transition) {
531         case IF_OPER_UP:
532                 if ((operstate == IF_OPER_DORMANT ||
533                      operstate == IF_OPER_UNKNOWN) &&
534                     !netif_dormant(dev))
535                         operstate = IF_OPER_UP;
536                 break;
537
538         case IF_OPER_DORMANT:
539                 if (operstate == IF_OPER_UP ||
540                     operstate == IF_OPER_UNKNOWN)
541                         operstate = IF_OPER_DORMANT;
542                 break;
543         }
544
545         if (dev->operstate != operstate) {
546                 write_lock_bh(&dev_base_lock);
547                 dev->operstate = operstate;
548                 write_unlock_bh(&dev_base_lock);
549                 netdev_state_change(dev);
550         }
551 }
552
553 static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
554                                  struct net_device_stats *b)
555 {
556         a->rx_packets = b->rx_packets;
557         a->tx_packets = b->tx_packets;
558         a->rx_bytes = b->rx_bytes;
559         a->tx_bytes = b->tx_bytes;
560         a->rx_errors = b->rx_errors;
561         a->tx_errors = b->tx_errors;
562         a->rx_dropped = b->rx_dropped;
563         a->tx_dropped = b->tx_dropped;
564
565         a->multicast = b->multicast;
566         a->collisions = b->collisions;
567
568         a->rx_length_errors = b->rx_length_errors;
569         a->rx_over_errors = b->rx_over_errors;
570         a->rx_crc_errors = b->rx_crc_errors;
571         a->rx_frame_errors = b->rx_frame_errors;
572         a->rx_fifo_errors = b->rx_fifo_errors;
573         a->rx_missed_errors = b->rx_missed_errors;
574
575         a->tx_aborted_errors = b->tx_aborted_errors;
576         a->tx_carrier_errors = b->tx_carrier_errors;
577         a->tx_fifo_errors = b->tx_fifo_errors;
578         a->tx_heartbeat_errors = b->tx_heartbeat_errors;
579         a->tx_window_errors = b->tx_window_errors;
580
581         a->rx_compressed = b->rx_compressed;
582         a->tx_compressed = b->tx_compressed;
583 };
584
585 static inline size_t if_nlmsg_size(const struct net_device *dev)
586 {
587         return NLMSG_ALIGN(sizeof(struct ifinfomsg))
588                + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
589                + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
590                + nla_total_size(sizeof(struct rtnl_link_ifmap))
591                + nla_total_size(sizeof(struct rtnl_link_stats))
592                + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
593                + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
594                + nla_total_size(4) /* IFLA_TXQLEN */
595                + nla_total_size(4) /* IFLA_WEIGHT */
596                + nla_total_size(4) /* IFLA_MTU */
597                + nla_total_size(4) /* IFLA_LINK */
598                + nla_total_size(4) /* IFLA_MASTER */
599                + nla_total_size(1) /* IFLA_OPERSTATE */
600                + nla_total_size(1) /* IFLA_LINKMODE */
601                + rtnl_link_get_size(dev); /* IFLA_LINKINFO */
602 }
603
604 static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
605                             int type, u32 pid, u32 seq, u32 change,
606                             unsigned int flags)
607 {
608         struct ifinfomsg *ifm;
609         struct nlmsghdr *nlh;
610         struct net_device_stats *stats;
611         struct nlattr *attr;
612
613         nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
614         if (nlh == NULL)
615                 return -EMSGSIZE;
616
617         ifm = nlmsg_data(nlh);
618         ifm->ifi_family = AF_UNSPEC;
619         ifm->__ifi_pad = 0;
620         ifm->ifi_type = dev->type;
621         ifm->ifi_index = dev->ifindex;
622         ifm->ifi_flags = dev_get_flags(dev);
623         ifm->ifi_change = change;
624
625         NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
626         NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
627         NLA_PUT_U8(skb, IFLA_OPERSTATE,
628                    netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
629         NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
630         NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
631
632         if (dev->ifindex != dev->iflink)
633                 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
634
635         if (dev->master)
636                 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
637
638         if (dev->qdisc_sleeping)
639                 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc_sleeping->ops->id);
640
641         if (1) {
642                 struct rtnl_link_ifmap map = {
643                         .mem_start   = dev->mem_start,
644                         .mem_end     = dev->mem_end,
645                         .base_addr   = dev->base_addr,
646                         .irq         = dev->irq,
647                         .dma         = dev->dma,
648                         .port        = dev->if_port,
649                 };
650                 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
651         }
652
653         if (dev->addr_len) {
654                 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
655                 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
656         }
657
658         attr = nla_reserve(skb, IFLA_STATS,
659                         sizeof(struct rtnl_link_stats));
660         if (attr == NULL)
661                 goto nla_put_failure;
662
663         stats = dev->get_stats(dev);
664         copy_rtnl_link_stats(nla_data(attr), stats);
665
666         if (dev->rtnl_link_ops) {
667                 if (rtnl_link_fill(skb, dev) < 0)
668                         goto nla_put_failure;
669         }
670
671         return nlmsg_end(skb, nlh);
672
673 nla_put_failure:
674         nlmsg_cancel(skb, nlh);
675         return -EMSGSIZE;
676 }
677
678 static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
679 {
680         struct net *net = sock_net(skb->sk);
681         int idx;
682         int s_idx = cb->args[0];
683         struct net_device *dev;
684
685         idx = 0;
686         for_each_netdev(net, dev) {
687                 if (idx < s_idx)
688                         goto cont;
689                 if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
690                                      NETLINK_CB(cb->skb).pid,
691                                      cb->nlh->nlmsg_seq, 0, NLM_F_MULTI) <= 0)
692                         break;
693 cont:
694                 idx++;
695         }
696         cb->args[0] = idx;
697
698         return skb->len;
699 }
700
701 const struct nla_policy ifla_policy[IFLA_MAX+1] = {
702         [IFLA_IFNAME]           = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
703         [IFLA_ADDRESS]          = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
704         [IFLA_BROADCAST]        = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
705         [IFLA_MAP]              = { .len = sizeof(struct rtnl_link_ifmap) },
706         [IFLA_MTU]              = { .type = NLA_U32 },
707         [IFLA_LINK]             = { .type = NLA_U32 },
708         [IFLA_TXQLEN]           = { .type = NLA_U32 },
709         [IFLA_WEIGHT]           = { .type = NLA_U32 },
710         [IFLA_OPERSTATE]        = { .type = NLA_U8 },
711         [IFLA_LINKMODE]         = { .type = NLA_U8 },
712         [IFLA_LINKINFO]         = { .type = NLA_NESTED },
713         [IFLA_NET_NS_PID]       = { .type = NLA_U32 },
714 };
715
716 static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
717         [IFLA_INFO_KIND]        = { .type = NLA_STRING },
718         [IFLA_INFO_DATA]        = { .type = NLA_NESTED },
719 };
720
721 static struct net *get_net_ns_by_pid(pid_t pid)
722 {
723         struct task_struct *tsk;
724         struct net *net;
725
726         /* Lookup the network namespace */
727         net = ERR_PTR(-ESRCH);
728         rcu_read_lock();
729         tsk = find_task_by_vpid(pid);
730         if (tsk) {
731                 struct nsproxy *nsproxy;
732                 nsproxy = task_nsproxy(tsk);
733                 if (nsproxy)
734                         net = get_net(nsproxy->net_ns);
735         }
736         rcu_read_unlock();
737         return net;
738 }
739
740 static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
741 {
742         if (dev) {
743                 if (tb[IFLA_ADDRESS] &&
744                     nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
745                         return -EINVAL;
746
747                 if (tb[IFLA_BROADCAST] &&
748                     nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
749                         return -EINVAL;
750         }
751
752         return 0;
753 }
754
755 static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm,
756                       struct nlattr **tb, char *ifname, int modified)
757 {
758         int send_addr_notify = 0;
759         int err;
760
761         if (tb[IFLA_NET_NS_PID]) {
762                 struct net *net;
763                 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
764                 if (IS_ERR(net)) {
765                         err = PTR_ERR(net);
766                         goto errout;
767                 }
768                 err = dev_change_net_namespace(dev, net, ifname);
769                 put_net(net);
770                 if (err)
771                         goto errout;
772                 modified = 1;
773         }
774
775         if (tb[IFLA_MAP]) {
776                 struct rtnl_link_ifmap *u_map;
777                 struct ifmap k_map;
778
779                 if (!dev->set_config) {
780                         err = -EOPNOTSUPP;
781                         goto errout;
782                 }
783
784                 if (!netif_device_present(dev)) {
785                         err = -ENODEV;
786                         goto errout;
787                 }
788
789                 u_map = nla_data(tb[IFLA_MAP]);
790                 k_map.mem_start = (unsigned long) u_map->mem_start;
791                 k_map.mem_end = (unsigned long) u_map->mem_end;
792                 k_map.base_addr = (unsigned short) u_map->base_addr;
793                 k_map.irq = (unsigned char) u_map->irq;
794                 k_map.dma = (unsigned char) u_map->dma;
795                 k_map.port = (unsigned char) u_map->port;
796
797                 err = dev->set_config(dev, &k_map);
798                 if (err < 0)
799                         goto errout;
800
801                 modified = 1;
802         }
803
804         if (tb[IFLA_ADDRESS]) {
805                 struct sockaddr *sa;
806                 int len;
807
808                 if (!dev->set_mac_address) {
809                         err = -EOPNOTSUPP;
810                         goto errout;
811                 }
812
813                 if (!netif_device_present(dev)) {
814                         err = -ENODEV;
815                         goto errout;
816                 }
817
818                 len = sizeof(sa_family_t) + dev->addr_len;
819                 sa = kmalloc(len, GFP_KERNEL);
820                 if (!sa) {
821                         err = -ENOMEM;
822                         goto errout;
823                 }
824                 sa->sa_family = dev->type;
825                 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
826                        dev->addr_len);
827                 err = dev->set_mac_address(dev, sa);
828                 kfree(sa);
829                 if (err)
830                         goto errout;
831                 send_addr_notify = 1;
832                 modified = 1;
833         }
834
835         if (tb[IFLA_MTU]) {
836                 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
837                 if (err < 0)
838                         goto errout;
839                 modified = 1;
840         }
841
842         /*
843          * Interface selected by interface index but interface
844          * name provided implies that a name change has been
845          * requested.
846          */
847         if (ifm->ifi_index > 0 && ifname[0]) {
848                 err = dev_change_name(dev, ifname);
849                 if (err < 0)
850                         goto errout;
851                 modified = 1;
852         }
853
854         if (tb[IFLA_BROADCAST]) {
855                 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
856                 send_addr_notify = 1;
857         }
858
859         if (ifm->ifi_flags || ifm->ifi_change) {
860                 unsigned int flags = ifm->ifi_flags;
861
862                 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
863                 if (ifm->ifi_change)
864                         flags = (flags & ifm->ifi_change) |
865                                 (dev->flags & ~ifm->ifi_change);
866                 dev_change_flags(dev, flags);
867         }
868
869         if (tb[IFLA_TXQLEN])
870                 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
871
872         if (tb[IFLA_OPERSTATE])
873                 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
874
875         if (tb[IFLA_LINKMODE]) {
876                 write_lock_bh(&dev_base_lock);
877                 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
878                 write_unlock_bh(&dev_base_lock);
879         }
880
881         err = 0;
882
883 errout:
884         if (err < 0 && modified && net_ratelimit())
885                 printk(KERN_WARNING "A link change request failed with "
886                        "some changes comitted already. Interface %s may "
887                        "have been left with an inconsistent configuration, "
888                        "please check.\n", dev->name);
889
890         if (send_addr_notify)
891                 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
892         return err;
893 }
894
895 static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
896 {
897         struct net *net = sock_net(skb->sk);
898         struct ifinfomsg *ifm;
899         struct net_device *dev;
900         int err;
901         struct nlattr *tb[IFLA_MAX+1];
902         char ifname[IFNAMSIZ];
903
904         err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
905         if (err < 0)
906                 goto errout;
907
908         if (tb[IFLA_IFNAME])
909                 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
910         else
911                 ifname[0] = '\0';
912
913         err = -EINVAL;
914         ifm = nlmsg_data(nlh);
915         if (ifm->ifi_index > 0)
916                 dev = dev_get_by_index(net, ifm->ifi_index);
917         else if (tb[IFLA_IFNAME])
918                 dev = dev_get_by_name(net, ifname);
919         else
920                 goto errout;
921
922         if (dev == NULL) {
923                 err = -ENODEV;
924                 goto errout;
925         }
926
927         if ((err = validate_linkmsg(dev, tb)) < 0)
928                 goto errout_dev;
929
930         err = do_setlink(dev, ifm, tb, ifname, 0);
931 errout_dev:
932         dev_put(dev);
933 errout:
934         return err;
935 }
936
937 static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
938 {
939         struct net *net = sock_net(skb->sk);
940         const struct rtnl_link_ops *ops;
941         struct net_device *dev;
942         struct ifinfomsg *ifm;
943         char ifname[IFNAMSIZ];
944         struct nlattr *tb[IFLA_MAX+1];
945         int err;
946
947         err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
948         if (err < 0)
949                 return err;
950
951         if (tb[IFLA_IFNAME])
952                 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
953
954         ifm = nlmsg_data(nlh);
955         if (ifm->ifi_index > 0)
956                 dev = __dev_get_by_index(net, ifm->ifi_index);
957         else if (tb[IFLA_IFNAME])
958                 dev = __dev_get_by_name(net, ifname);
959         else
960                 return -EINVAL;
961
962         if (!dev)
963                 return -ENODEV;
964
965         ops = dev->rtnl_link_ops;
966         if (!ops)
967                 return -EOPNOTSUPP;
968
969         ops->dellink(dev);
970         return 0;
971 }
972
973 struct net_device *rtnl_create_link(struct net *net, char *ifname,
974                 const struct rtnl_link_ops *ops, struct nlattr *tb[])
975 {
976         int err;
977         struct net_device *dev;
978
979         err = -ENOMEM;
980         dev = alloc_netdev(ops->priv_size, ifname, ops->setup);
981         if (!dev)
982                 goto err;
983
984         if (strchr(dev->name, '%')) {
985                 err = dev_alloc_name(dev, dev->name);
986                 if (err < 0)
987                         goto err_free;
988         }
989
990         dev_net_set(dev, net);
991         dev->rtnl_link_ops = ops;
992
993         if (tb[IFLA_MTU])
994                 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
995         if (tb[IFLA_ADDRESS])
996                 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
997                                 nla_len(tb[IFLA_ADDRESS]));
998         if (tb[IFLA_BROADCAST])
999                 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1000                                 nla_len(tb[IFLA_BROADCAST]));
1001         if (tb[IFLA_TXQLEN])
1002                 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1003         if (tb[IFLA_OPERSTATE])
1004                 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
1005         if (tb[IFLA_LINKMODE])
1006                 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1007
1008         return dev;
1009
1010 err_free:
1011         free_netdev(dev);
1012 err:
1013         return ERR_PTR(err);
1014 }
1015
1016 static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
1017 {
1018         struct net *net = sock_net(skb->sk);
1019         const struct rtnl_link_ops *ops;
1020         struct net_device *dev;
1021         struct ifinfomsg *ifm;
1022         char kind[MODULE_NAME_LEN];
1023         char ifname[IFNAMSIZ];
1024         struct nlattr *tb[IFLA_MAX+1];
1025         struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1026         int err;
1027
1028 #ifdef CONFIG_KMOD
1029 replay:
1030 #endif
1031         err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1032         if (err < 0)
1033                 return err;
1034
1035         if (tb[IFLA_IFNAME])
1036                 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1037         else
1038                 ifname[0] = '\0';
1039
1040         ifm = nlmsg_data(nlh);
1041         if (ifm->ifi_index > 0)
1042                 dev = __dev_get_by_index(net, ifm->ifi_index);
1043         else if (ifname[0])
1044                 dev = __dev_get_by_name(net, ifname);
1045         else
1046                 dev = NULL;
1047
1048         if ((err = validate_linkmsg(dev, tb)) < 0)
1049                 return err;
1050
1051         if (tb[IFLA_LINKINFO]) {
1052                 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1053                                        tb[IFLA_LINKINFO], ifla_info_policy);
1054                 if (err < 0)
1055                         return err;
1056         } else
1057                 memset(linkinfo, 0, sizeof(linkinfo));
1058
1059         if (linkinfo[IFLA_INFO_KIND]) {
1060                 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1061                 ops = rtnl_link_ops_get(kind);
1062         } else {
1063                 kind[0] = '\0';
1064                 ops = NULL;
1065         }
1066
1067         if (1) {
1068                 struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL;
1069
1070                 if (ops) {
1071                         if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1072                                 err = nla_parse_nested(attr, ops->maxtype,
1073                                                        linkinfo[IFLA_INFO_DATA],
1074                                                        ops->policy);
1075                                 if (err < 0)
1076                                         return err;
1077                                 data = attr;
1078                         }
1079                         if (ops->validate) {
1080                                 err = ops->validate(tb, data);
1081                                 if (err < 0)
1082                                         return err;
1083                         }
1084                 }
1085
1086                 if (dev) {
1087                         int modified = 0;
1088
1089                         if (nlh->nlmsg_flags & NLM_F_EXCL)
1090                                 return -EEXIST;
1091                         if (nlh->nlmsg_flags & NLM_F_REPLACE)
1092                                 return -EOPNOTSUPP;
1093
1094                         if (linkinfo[IFLA_INFO_DATA]) {
1095                                 if (!ops || ops != dev->rtnl_link_ops ||
1096                                     !ops->changelink)
1097                                         return -EOPNOTSUPP;
1098
1099                                 err = ops->changelink(dev, tb, data);
1100                                 if (err < 0)
1101                                         return err;
1102                                 modified = 1;
1103                         }
1104
1105                         return do_setlink(dev, ifm, tb, ifname, modified);
1106                 }
1107
1108                 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
1109                         return -ENODEV;
1110
1111                 if (ifm->ifi_index || ifm->ifi_flags || ifm->ifi_change)
1112                         return -EOPNOTSUPP;
1113                 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
1114                         return -EOPNOTSUPP;
1115
1116                 if (!ops) {
1117 #ifdef CONFIG_KMOD
1118                         if (kind[0]) {
1119                                 __rtnl_unlock();
1120                                 request_module("rtnl-link-%s", kind);
1121                                 rtnl_lock();
1122                                 ops = rtnl_link_ops_get(kind);
1123                                 if (ops)
1124                                         goto replay;
1125                         }
1126 #endif
1127                         return -EOPNOTSUPP;
1128                 }
1129
1130                 if (!ifname[0])
1131                         snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
1132
1133                 dev = rtnl_create_link(net, ifname, ops, tb);
1134
1135                 if (IS_ERR(dev))
1136                         err = PTR_ERR(dev);
1137                 else if (ops->newlink)
1138                         err = ops->newlink(dev, tb, data);
1139                 else
1140                         err = register_netdevice(dev);
1141
1142                 if (err < 0 && !IS_ERR(dev))
1143                         free_netdev(dev);
1144                 return err;
1145         }
1146 }
1147
1148 static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
1149 {
1150         struct net *net = sock_net(skb->sk);
1151         struct ifinfomsg *ifm;
1152         struct nlattr *tb[IFLA_MAX+1];
1153         struct net_device *dev = NULL;
1154         struct sk_buff *nskb;
1155         int err;
1156
1157         err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1158         if (err < 0)
1159                 return err;
1160
1161         ifm = nlmsg_data(nlh);
1162         if (ifm->ifi_index > 0) {
1163                 dev = dev_get_by_index(net, ifm->ifi_index);
1164                 if (dev == NULL)
1165                         return -ENODEV;
1166         } else
1167                 return -EINVAL;
1168
1169         nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
1170         if (nskb == NULL) {
1171                 err = -ENOBUFS;
1172                 goto errout;
1173         }
1174
1175         err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid,
1176                                nlh->nlmsg_seq, 0, 0);
1177         if (err < 0) {
1178                 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1179                 WARN_ON(err == -EMSGSIZE);
1180                 kfree_skb(nskb);
1181                 goto errout;
1182         }
1183         err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid);
1184 errout:
1185         dev_put(dev);
1186
1187         return err;
1188 }
1189
1190 static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
1191 {
1192         int idx;
1193         int s_idx = cb->family;
1194
1195         if (s_idx == 0)
1196                 s_idx = 1;
1197         for (idx=1; idx<NPROTO; idx++) {
1198                 int type = cb->nlh->nlmsg_type-RTM_BASE;
1199                 if (idx < s_idx || idx == PF_PACKET)
1200                         continue;
1201                 if (rtnl_msg_handlers[idx] == NULL ||
1202                     rtnl_msg_handlers[idx][type].dumpit == NULL)
1203                         continue;
1204                 if (idx > s_idx)
1205                         memset(&cb->args[0], 0, sizeof(cb->args));
1206                 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
1207                         break;
1208         }
1209         cb->family = idx;
1210
1211         return skb->len;
1212 }
1213
1214 void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
1215 {
1216         struct net *net = dev_net(dev);
1217         struct sk_buff *skb;
1218         int err = -ENOBUFS;
1219
1220         skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL);
1221         if (skb == NULL)
1222                 goto errout;
1223
1224         err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0);
1225         if (err < 0) {
1226                 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1227                 WARN_ON(err == -EMSGSIZE);
1228                 kfree_skb(skb);
1229                 goto errout;
1230         }
1231         err = rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
1232 errout:
1233         if (err < 0)
1234                 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
1235 }
1236
1237 /* Protected by RTNL sempahore.  */
1238 static struct rtattr **rta_buf;
1239 static int rtattr_max;
1240
1241 /* Process one rtnetlink message. */
1242
1243 static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
1244 {
1245         struct net *net = sock_net(skb->sk);
1246         rtnl_doit_func doit;
1247         int sz_idx, kind;
1248         int min_len;
1249         int family;
1250         int type;
1251         int err;
1252
1253         type = nlh->nlmsg_type;
1254         if (type > RTM_MAX)
1255                 return -EOPNOTSUPP;
1256
1257         type -= RTM_BASE;
1258
1259         /* All the messages must have at least 1 byte length */
1260         if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
1261                 return 0;
1262
1263         family = ((struct rtgenmsg*)NLMSG_DATA(nlh))->rtgen_family;
1264         if (family >= NPROTO)
1265                 return -EAFNOSUPPORT;
1266
1267         sz_idx = type>>2;
1268         kind = type&3;
1269
1270         if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
1271                 return -EPERM;
1272
1273         if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
1274                 struct sock *rtnl;
1275                 rtnl_dumpit_func dumpit;
1276
1277                 dumpit = rtnl_get_dumpit(family, type);
1278                 if (dumpit == NULL)
1279                         return -EOPNOTSUPP;
1280
1281                 __rtnl_unlock();
1282                 rtnl = net->rtnl;
1283                 err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL);
1284                 rtnl_lock();
1285                 return err;
1286         }
1287
1288         memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
1289
1290         min_len = rtm_min[sz_idx];
1291         if (nlh->nlmsg_len < min_len)
1292                 return -EINVAL;
1293
1294         if (nlh->nlmsg_len > min_len) {
1295                 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
1296                 struct rtattr *attr = (void*)nlh + NLMSG_ALIGN(min_len);
1297
1298                 while (RTA_OK(attr, attrlen)) {
1299                         unsigned flavor = attr->rta_type;
1300                         if (flavor) {
1301                                 if (flavor > rta_max[sz_idx])
1302                                         return -EINVAL;
1303                                 rta_buf[flavor-1] = attr;
1304                         }
1305                         attr = RTA_NEXT(attr, attrlen);
1306                 }
1307         }
1308
1309         doit = rtnl_get_doit(family, type);
1310         if (doit == NULL)
1311                 return -EOPNOTSUPP;
1312
1313         return doit(skb, nlh, (void *)&rta_buf[0]);
1314 }
1315
1316 static void rtnetlink_rcv(struct sk_buff *skb)
1317 {
1318         rtnl_lock();
1319         netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
1320         rtnl_unlock();
1321 }
1322
1323 static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
1324 {
1325         struct net_device *dev = ptr;
1326
1327         switch (event) {
1328         case NETDEV_UNREGISTER:
1329                 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
1330                 break;
1331         case NETDEV_REGISTER:
1332                 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1333                 break;
1334         case NETDEV_UP:
1335         case NETDEV_DOWN:
1336                 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
1337                 break;
1338         case NETDEV_CHANGE:
1339         case NETDEV_GOING_DOWN:
1340                 break;
1341         default:
1342                 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1343                 break;
1344         }
1345         return NOTIFY_DONE;
1346 }
1347
1348 static struct notifier_block rtnetlink_dev_notifier = {
1349         .notifier_call  = rtnetlink_event,
1350 };
1351
1352
1353 static int rtnetlink_net_init(struct net *net)
1354 {
1355         struct sock *sk;
1356         sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX,
1357                                    rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
1358         if (!sk)
1359                 return -ENOMEM;
1360         net->rtnl = sk;
1361         return 0;
1362 }
1363
1364 static void rtnetlink_net_exit(struct net *net)
1365 {
1366         netlink_kernel_release(net->rtnl);
1367         net->rtnl = NULL;
1368 }
1369
1370 static struct pernet_operations rtnetlink_net_ops = {
1371         .init = rtnetlink_net_init,
1372         .exit = rtnetlink_net_exit,
1373 };
1374
1375 void __init rtnetlink_init(void)
1376 {
1377         int i;
1378
1379         rtattr_max = 0;
1380         for (i = 0; i < ARRAY_SIZE(rta_max); i++)
1381                 if (rta_max[i] > rtattr_max)
1382                         rtattr_max = rta_max[i];
1383         rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
1384         if (!rta_buf)
1385                 panic("rtnetlink_init: cannot allocate rta_buf\n");
1386
1387         if (register_pernet_subsys(&rtnetlink_net_ops))
1388                 panic("rtnetlink_init: cannot initialize rtnetlink\n");
1389
1390         netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
1391         register_netdevice_notifier(&rtnetlink_dev_notifier);
1392
1393         rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo);
1394         rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL);
1395         rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL);
1396         rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL);
1397
1398         rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all);
1399         rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all);
1400 }
1401
1402 EXPORT_SYMBOL(__rta_fill);
1403 EXPORT_SYMBOL(rtnetlink_put_metrics);
1404 EXPORT_SYMBOL(rtnl_lock);
1405 EXPORT_SYMBOL(rtnl_trylock);
1406 EXPORT_SYMBOL(rtnl_unlock);
1407 EXPORT_SYMBOL(rtnl_is_locked);
1408 EXPORT_SYMBOL(rtnl_unicast);
1409 EXPORT_SYMBOL(rtnl_notify);
1410 EXPORT_SYMBOL(rtnl_set_sk_err);
1411 EXPORT_SYMBOL(rtnl_create_link);
1412 EXPORT_SYMBOL(ifla_policy);