[IPv6] route: Convert FIB6 dumping to use new netlink api
[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/sched.h>
25 #include <linux/timer.h>
26 #include <linux/string.h>
27 #include <linux/sockios.h>
28 #include <linux/net.h>
29 #include <linux/fcntl.h>
30 #include <linux/mm.h>
31 #include <linux/slab.h>
32 #include <linux/interrupt.h>
33 #include <linux/capability.h>
34 #include <linux/skbuff.h>
35 #include <linux/init.h>
36 #include <linux/security.h>
37 #include <linux/mutex.h>
38 #include <linux/if_addr.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/netlink.h>
55 #ifdef CONFIG_NET_WIRELESS_RTNETLINK
56 #include <linux/wireless.h>
57 #include <net/iw_handler.h>
58 #endif  /* CONFIG_NET_WIRELESS_RTNETLINK */
59
60 static DEFINE_MUTEX(rtnl_mutex);
61 static struct sock *rtnl;
62
63 void rtnl_lock(void)
64 {
65         mutex_lock(&rtnl_mutex);
66 }
67
68 void __rtnl_unlock(void)
69 {
70         mutex_unlock(&rtnl_mutex);
71 }
72
73 void rtnl_unlock(void)
74 {
75         mutex_unlock(&rtnl_mutex);
76         if (rtnl && rtnl->sk_receive_queue.qlen)
77                 rtnl->sk_data_ready(rtnl, 0);
78         netdev_run_todo();
79 }
80
81 int rtnl_trylock(void)
82 {
83         return mutex_trylock(&rtnl_mutex);
84 }
85
86 int rtattr_parse(struct rtattr *tb[], int maxattr, struct rtattr *rta, int len)
87 {
88         memset(tb, 0, sizeof(struct rtattr*)*maxattr);
89
90         while (RTA_OK(rta, len)) {
91                 unsigned flavor = rta->rta_type;
92                 if (flavor && flavor <= maxattr)
93                         tb[flavor-1] = rta;
94                 rta = RTA_NEXT(rta, len);
95         }
96         return 0;
97 }
98
99 struct rtnetlink_link * rtnetlink_links[NPROTO];
100
101 static const int rtm_min[RTM_NR_FAMILIES] =
102 {
103         [RTM_FAM(RTM_NEWLINK)]      = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
104         [RTM_FAM(RTM_NEWADDR)]      = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
105         [RTM_FAM(RTM_NEWROUTE)]     = NLMSG_LENGTH(sizeof(struct rtmsg)),
106         [RTM_FAM(RTM_NEWRULE)]      = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
107         [RTM_FAM(RTM_NEWQDISC)]     = NLMSG_LENGTH(sizeof(struct tcmsg)),
108         [RTM_FAM(RTM_NEWTCLASS)]    = NLMSG_LENGTH(sizeof(struct tcmsg)),
109         [RTM_FAM(RTM_NEWTFILTER)]   = NLMSG_LENGTH(sizeof(struct tcmsg)),
110         [RTM_FAM(RTM_NEWACTION)]    = NLMSG_LENGTH(sizeof(struct tcamsg)),
111         [RTM_FAM(RTM_NEWPREFIX)]    = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
112         [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
113         [RTM_FAM(RTM_GETANYCAST)]   = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
114 };
115
116 static const int rta_max[RTM_NR_FAMILIES] =
117 {
118         [RTM_FAM(RTM_NEWLINK)]      = IFLA_MAX,
119         [RTM_FAM(RTM_NEWADDR)]      = IFA_MAX,
120         [RTM_FAM(RTM_NEWROUTE)]     = RTA_MAX,
121         [RTM_FAM(RTM_NEWRULE)]      = FRA_MAX,
122         [RTM_FAM(RTM_NEWQDISC)]     = TCA_MAX,
123         [RTM_FAM(RTM_NEWTCLASS)]    = TCA_MAX,
124         [RTM_FAM(RTM_NEWTFILTER)]   = TCA_MAX,
125         [RTM_FAM(RTM_NEWACTION)]    = TCAA_MAX,
126 };
127
128 void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
129 {
130         struct rtattr *rta;
131         int size = RTA_LENGTH(attrlen);
132
133         rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
134         rta->rta_type = attrtype;
135         rta->rta_len = size;
136         memcpy(RTA_DATA(rta), data, attrlen);
137         memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
138 }
139
140 size_t rtattr_strlcpy(char *dest, const struct rtattr *rta, size_t size)
141 {
142         size_t ret = RTA_PAYLOAD(rta);
143         char *src = RTA_DATA(rta);
144
145         if (ret > 0 && src[ret - 1] == '\0')
146                 ret--;
147         if (size > 0) {
148                 size_t len = (ret >= size) ? size - 1 : ret;
149                 memset(dest, 0, size);
150                 memcpy(dest, src, len);
151         }
152         return ret;
153 }
154
155 int rtnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo)
156 {
157         int err = 0;
158
159         NETLINK_CB(skb).dst_group = group;
160         if (echo)
161                 atomic_inc(&skb->users);
162         netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
163         if (echo)
164                 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
165         return err;
166 }
167
168 int rtnl_unicast(struct sk_buff *skb, u32 pid)
169 {
170         return nlmsg_unicast(rtnl, skb, pid);
171 }
172
173 int rtnl_notify(struct sk_buff *skb, u32 pid, u32 group,
174                 struct nlmsghdr *nlh, gfp_t flags)
175 {
176         int report = 0;
177
178         if (nlh)
179                 report = nlmsg_report(nlh);
180
181         return nlmsg_notify(rtnl, skb, pid, group, report, flags);
182 }
183
184 void rtnl_set_sk_err(u32 group, int error)
185 {
186         netlink_set_err(rtnl, 0, group, error);
187 }
188
189 int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
190 {
191         struct nlattr *mx;
192         int i, valid = 0;
193
194         mx = nla_nest_start(skb, RTA_METRICS);
195         if (mx == NULL)
196                 return -ENOBUFS;
197
198         for (i = 0; i < RTAX_MAX; i++) {
199                 if (metrics[i]) {
200                         valid++;
201                         NLA_PUT_U32(skb, i+1, metrics[i]);
202                 }
203         }
204
205         if (!valid)
206                 goto nla_put_failure;
207
208         return nla_nest_end(skb, mx);
209
210 nla_put_failure:
211         return nla_nest_cancel(skb, mx);
212 }
213
214
215 static void set_operstate(struct net_device *dev, unsigned char transition)
216 {
217         unsigned char operstate = dev->operstate;
218
219         switch(transition) {
220         case IF_OPER_UP:
221                 if ((operstate == IF_OPER_DORMANT ||
222                      operstate == IF_OPER_UNKNOWN) &&
223                     !netif_dormant(dev))
224                         operstate = IF_OPER_UP;
225                 break;
226
227         case IF_OPER_DORMANT:
228                 if (operstate == IF_OPER_UP ||
229                     operstate == IF_OPER_UNKNOWN)
230                         operstate = IF_OPER_DORMANT;
231                 break;
232         };
233
234         if (dev->operstate != operstate) {
235                 write_lock_bh(&dev_base_lock);
236                 dev->operstate = operstate;
237                 write_unlock_bh(&dev_base_lock);
238                 netdev_state_change(dev);
239         }
240 }
241
242 static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
243                                  struct net_device_stats *b)
244 {
245         a->rx_packets = b->rx_packets;
246         a->tx_packets = b->tx_packets;
247         a->rx_bytes = b->rx_bytes;
248         a->tx_bytes = b->tx_bytes;
249         a->rx_errors = b->rx_errors;
250         a->tx_errors = b->tx_errors;
251         a->rx_dropped = b->rx_dropped;
252         a->tx_dropped = b->tx_dropped;
253
254         a->multicast = b->multicast;
255         a->collisions = b->collisions;
256
257         a->rx_length_errors = b->rx_length_errors;
258         a->rx_over_errors = b->rx_over_errors;
259         a->rx_crc_errors = b->rx_crc_errors;
260         a->rx_frame_errors = b->rx_frame_errors;
261         a->rx_fifo_errors = b->rx_fifo_errors;
262         a->rx_missed_errors = b->rx_missed_errors;
263
264         a->tx_aborted_errors = b->tx_aborted_errors;
265         a->tx_carrier_errors = b->tx_carrier_errors;
266         a->tx_fifo_errors = b->tx_fifo_errors;
267         a->tx_heartbeat_errors = b->tx_heartbeat_errors;
268         a->tx_window_errors = b->tx_window_errors;
269
270         a->rx_compressed = b->rx_compressed;
271         a->tx_compressed = b->tx_compressed;
272 };
273
274 static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
275                             void *iwbuf, int iwbuflen, int type, u32 pid,
276                             u32 seq, u32 change, unsigned int flags)
277 {
278         struct ifinfomsg *ifm;
279         struct nlmsghdr *nlh;
280
281         nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
282         if (nlh == NULL)
283                 return -ENOBUFS;
284
285         ifm = nlmsg_data(nlh);
286         ifm->ifi_family = AF_UNSPEC;
287         ifm->__ifi_pad = 0;
288         ifm->ifi_type = dev->type;
289         ifm->ifi_index = dev->ifindex;
290         ifm->ifi_flags = dev_get_flags(dev);
291         ifm->ifi_change = change;
292
293         NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
294         NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
295         NLA_PUT_U32(skb, IFLA_WEIGHT, dev->weight);
296         NLA_PUT_U8(skb, IFLA_OPERSTATE,
297                    netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
298         NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
299         NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
300
301         if (dev->ifindex != dev->iflink)
302                 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
303
304         if (dev->master)
305                 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
306
307         if (dev->qdisc_sleeping)
308                 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc_sleeping->ops->id);
309
310         if (1) {
311                 struct rtnl_link_ifmap map = {
312                         .mem_start   = dev->mem_start,
313                         .mem_end     = dev->mem_end,
314                         .base_addr   = dev->base_addr,
315                         .irq         = dev->irq,
316                         .dma         = dev->dma,
317                         .port        = dev->if_port,
318                 };
319                 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
320         }
321
322         if (dev->addr_len) {
323                 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
324                 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
325         }
326
327         if (dev->get_stats) {
328                 struct net_device_stats *stats = dev->get_stats(dev);
329                 if (stats) {
330                         struct nlattr *attr;
331
332                         attr = nla_reserve(skb, IFLA_STATS,
333                                            sizeof(struct rtnl_link_stats));
334                         if (attr == NULL)
335                                 goto nla_put_failure;
336
337                         copy_rtnl_link_stats(nla_data(attr), stats);
338                 }
339         }
340
341         if (iwbuf)
342                 NLA_PUT(skb, IFLA_WIRELESS, iwbuflen, iwbuf);
343
344         return nlmsg_end(skb, nlh);
345
346 nla_put_failure:
347         return nlmsg_cancel(skb, nlh);
348 }
349
350 static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
351 {
352         int idx;
353         int s_idx = cb->args[0];
354         struct net_device *dev;
355
356         read_lock(&dev_base_lock);
357         for (dev=dev_base, idx=0; dev; dev = dev->next, idx++) {
358                 if (idx < s_idx)
359                         continue;
360                 if (rtnl_fill_ifinfo(skb, dev, NULL, 0, RTM_NEWLINK,
361                                      NETLINK_CB(cb->skb).pid,
362                                      cb->nlh->nlmsg_seq, 0, NLM_F_MULTI) <= 0)
363                         break;
364         }
365         read_unlock(&dev_base_lock);
366         cb->args[0] = idx;
367
368         return skb->len;
369 }
370
371 static struct nla_policy ifla_policy[IFLA_MAX+1] __read_mostly = {
372         [IFLA_IFNAME]           = { .type = NLA_STRING },
373         [IFLA_MAP]              = { .minlen = sizeof(struct rtnl_link_ifmap) },
374         [IFLA_MTU]              = { .type = NLA_U32 },
375         [IFLA_TXQLEN]           = { .type = NLA_U32 },
376         [IFLA_WEIGHT]           = { .type = NLA_U32 },
377         [IFLA_OPERSTATE]        = { .type = NLA_U8 },
378         [IFLA_LINKMODE]         = { .type = NLA_U8 },
379 };
380
381 static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
382 {
383         struct ifinfomsg *ifm;
384         struct net_device *dev;
385         int err, send_addr_notify = 0, modified = 0;
386         struct nlattr *tb[IFLA_MAX+1];
387         char ifname[IFNAMSIZ];
388
389         err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
390         if (err < 0)
391                 goto errout;
392
393         if (tb[IFLA_IFNAME] &&
394             nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ) >= IFNAMSIZ)
395                 return -EINVAL;
396
397         err = -EINVAL;
398         ifm = nlmsg_data(nlh);
399         if (ifm->ifi_index >= 0)
400                 dev = dev_get_by_index(ifm->ifi_index);
401         else if (tb[IFLA_IFNAME])
402                 dev = dev_get_by_name(ifname);
403         else
404                 goto errout;
405
406         if (dev == NULL) {
407                 err = -ENODEV;
408                 goto errout;
409         }
410
411         if (tb[IFLA_ADDRESS] &&
412             nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
413                 goto errout_dev;
414
415         if (tb[IFLA_BROADCAST] &&
416             nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
417                 goto errout_dev;
418
419         if (tb[IFLA_MAP]) {
420                 struct rtnl_link_ifmap *u_map;
421                 struct ifmap k_map;
422
423                 if (!dev->set_config) {
424                         err = -EOPNOTSUPP;
425                         goto errout_dev;
426                 }
427
428                 if (!netif_device_present(dev)) {
429                         err = -ENODEV;
430                         goto errout_dev;
431                 }
432
433                 u_map = nla_data(tb[IFLA_MAP]);
434                 k_map.mem_start = (unsigned long) u_map->mem_start;
435                 k_map.mem_end = (unsigned long) u_map->mem_end;
436                 k_map.base_addr = (unsigned short) u_map->base_addr;
437                 k_map.irq = (unsigned char) u_map->irq;
438                 k_map.dma = (unsigned char) u_map->dma;
439                 k_map.port = (unsigned char) u_map->port;
440
441                 err = dev->set_config(dev, &k_map);
442                 if (err < 0)
443                         goto errout_dev;
444
445                 modified = 1;
446         }
447
448         if (tb[IFLA_ADDRESS]) {
449                 struct sockaddr *sa;
450                 int len;
451
452                 if (!dev->set_mac_address) {
453                         err = -EOPNOTSUPP;
454                         goto errout_dev;
455                 }
456
457                 if (!netif_device_present(dev)) {
458                         err = -ENODEV;
459                         goto errout_dev;
460                 }
461
462                 len = sizeof(sa_family_t) + dev->addr_len;
463                 sa = kmalloc(len, GFP_KERNEL);
464                 if (!sa) {
465                         err = -ENOMEM;
466                         goto errout_dev;
467                 }
468                 sa->sa_family = dev->type;
469                 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
470                        dev->addr_len);
471                 err = dev->set_mac_address(dev, sa);
472                 kfree(sa);
473                 if (err)
474                         goto errout_dev;
475                 send_addr_notify = 1;
476                 modified = 1;
477         }
478
479         if (tb[IFLA_MTU]) {
480                 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
481                 if (err < 0)
482                         goto errout_dev;
483                 modified = 1;
484         }
485
486         /*
487          * Interface selected by interface index but interface
488          * name provided implies that a name change has been
489          * requested.
490          */
491         if (ifm->ifi_index >= 0 && ifname[0]) {
492                 err = dev_change_name(dev, ifname);
493                 if (err < 0)
494                         goto errout_dev;
495                 modified = 1;
496         }
497
498 #ifdef CONFIG_NET_WIRELESS_RTNETLINK
499         if (tb[IFLA_WIRELESS]) {
500                 /* Call Wireless Extensions.
501                  * Various stuff checked in there... */
502                 err = wireless_rtnetlink_set(dev, nla_data(tb[IFLA_WIRELESS]),
503                                              nla_len(tb[IFLA_WIRELESS]));
504                 if (err < 0)
505                         goto errout_dev;
506         }
507 #endif  /* CONFIG_NET_WIRELESS_RTNETLINK */
508
509         if (tb[IFLA_BROADCAST]) {
510                 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
511                 send_addr_notify = 1;
512         }
513
514
515         if (ifm->ifi_flags)
516                 dev_change_flags(dev, ifm->ifi_flags);
517
518         if (tb[IFLA_TXQLEN])
519                 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
520
521         if (tb[IFLA_WEIGHT])
522                 dev->weight = nla_get_u32(tb[IFLA_WEIGHT]);
523
524         if (tb[IFLA_OPERSTATE])
525                 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
526
527         if (tb[IFLA_LINKMODE]) {
528                 write_lock_bh(&dev_base_lock);
529                 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
530                 write_unlock_bh(&dev_base_lock);
531         }
532
533         err = 0;
534
535 errout_dev:
536         if (err < 0 && modified && net_ratelimit())
537                 printk(KERN_WARNING "A link change request failed with "
538                        "some changes comitted already. Interface %s may "
539                        "have been left with an inconsistent configuration, "
540                        "please check.\n", dev->name);
541
542         if (send_addr_notify)
543                 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
544
545         dev_put(dev);
546 errout:
547         return err;
548 }
549
550 static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
551 {
552         struct ifinfomsg *ifm;
553         struct nlattr *tb[IFLA_MAX+1];
554         struct net_device *dev = NULL;
555         struct sk_buff *nskb;
556         char *iw_buf = NULL, *iw = NULL;
557         int iw_buf_len = 0;
558         int err, payload;
559
560         err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
561         if (err < 0)
562                 goto errout;
563
564         ifm = nlmsg_data(nlh);
565         if (ifm->ifi_index >= 0) {
566                 dev = dev_get_by_index(ifm->ifi_index);
567                 if (dev == NULL)
568                         return -ENODEV;
569         } else
570                 return -EINVAL;
571
572
573 #ifdef CONFIG_NET_WIRELESS_RTNETLINK
574         if (tb[IFLA_WIRELESS]) {
575                 /* Call Wireless Extensions. We need to know the size before
576                  * we can alloc. Various stuff checked in there... */
577                 err = wireless_rtnetlink_get(dev, nla_data(tb[IFLA_WIRELESS]),
578                                              nla_len(tb[IFLA_WIRELESS]),
579                                              &iw_buf, &iw_buf_len);
580                 if (err < 0)
581                         goto errout;
582
583                 iw += IW_EV_POINT_OFF;
584         }
585 #endif  /* CONFIG_NET_WIRELESS_RTNETLINK */
586
587         payload = NLMSG_ALIGN(sizeof(struct ifinfomsg) +
588                               nla_total_size(iw_buf_len));
589         nskb = nlmsg_new(nlmsg_total_size(payload), GFP_KERNEL);
590         if (nskb == NULL) {
591                 err = -ENOBUFS;
592                 goto errout;
593         }
594
595         err = rtnl_fill_ifinfo(nskb, dev, iw, iw_buf_len, RTM_NEWLINK,
596                                NETLINK_CB(skb).pid, nlh->nlmsg_seq, 0, 0);
597         if (err <= 0) {
598                 kfree_skb(skb);
599                 goto errout;
600         }
601
602         err = rtnl_unicast(skb, NETLINK_CB(skb).pid);
603 errout:
604         kfree(iw_buf);
605         dev_put(dev);
606
607         return err;
608 }
609
610 static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
611 {
612         int idx;
613         int s_idx = cb->family;
614
615         if (s_idx == 0)
616                 s_idx = 1;
617         for (idx=1; idx<NPROTO; idx++) {
618                 int type = cb->nlh->nlmsg_type-RTM_BASE;
619                 if (idx < s_idx || idx == PF_PACKET)
620                         continue;
621                 if (rtnetlink_links[idx] == NULL ||
622                     rtnetlink_links[idx][type].dumpit == NULL)
623                         continue;
624                 if (idx > s_idx)
625                         memset(&cb->args[0], 0, sizeof(cb->args));
626                 if (rtnetlink_links[idx][type].dumpit(skb, cb))
627                         break;
628         }
629         cb->family = idx;
630
631         return skb->len;
632 }
633
634 void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
635 {
636         struct sk_buff *skb;
637         int err = -ENOBUFS;
638
639         skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
640         if (skb == NULL)
641                 goto errout;
642
643         err = rtnl_fill_ifinfo(skb, dev, NULL, 0, type, 0, 0, change, 0);
644         if (err < 0) {
645                 kfree_skb(skb);
646                 goto errout;
647         }
648
649         err = rtnl_notify(skb, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
650 errout:
651         if (err < 0)
652                 rtnl_set_sk_err(RTNLGRP_LINK, err);
653 }
654
655 /* Protected by RTNL sempahore.  */
656 static struct rtattr **rta_buf;
657 static int rtattr_max;
658
659 /* Process one rtnetlink message. */
660
661 static __inline__ int
662 rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, int *errp)
663 {
664         struct rtnetlink_link *link;
665         struct rtnetlink_link *link_tab;
666         int sz_idx, kind;
667         int min_len;
668         int family;
669         int type;
670         int err;
671
672         /* Only requests are handled by kernel now */
673         if (!(nlh->nlmsg_flags&NLM_F_REQUEST))
674                 return 0;
675
676         type = nlh->nlmsg_type;
677
678         /* A control message: ignore them */
679         if (type < RTM_BASE)
680                 return 0;
681
682         /* Unknown message: reply with EINVAL */
683         if (type > RTM_MAX)
684                 goto err_inval;
685
686         type -= RTM_BASE;
687
688         /* All the messages must have at least 1 byte length */
689         if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
690                 return 0;
691
692         family = ((struct rtgenmsg*)NLMSG_DATA(nlh))->rtgen_family;
693         if (family >= NPROTO) {
694                 *errp = -EAFNOSUPPORT;
695                 return -1;
696         }
697
698         link_tab = rtnetlink_links[family];
699         if (link_tab == NULL)
700                 link_tab = rtnetlink_links[PF_UNSPEC];
701         link = &link_tab[type];
702
703         sz_idx = type>>2;
704         kind = type&3;
705
706         if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN)) {
707                 *errp = -EPERM;
708                 return -1;
709         }
710
711         if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
712                 if (link->dumpit == NULL)
713                         link = &(rtnetlink_links[PF_UNSPEC][type]);
714
715                 if (link->dumpit == NULL)
716                         goto err_inval;
717
718                 if ((*errp = netlink_dump_start(rtnl, skb, nlh,
719                                                 link->dumpit, NULL)) != 0) {
720                         return -1;
721                 }
722
723                 netlink_queue_skip(nlh, skb);
724                 return -1;
725         }
726
727         memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
728
729         min_len = rtm_min[sz_idx];
730         if (nlh->nlmsg_len < min_len)
731                 goto err_inval;
732
733         if (nlh->nlmsg_len > min_len) {
734                 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
735                 struct rtattr *attr = (void*)nlh + NLMSG_ALIGN(min_len);
736
737                 while (RTA_OK(attr, attrlen)) {
738                         unsigned flavor = attr->rta_type;
739                         if (flavor) {
740                                 if (flavor > rta_max[sz_idx])
741                                         goto err_inval;
742                                 rta_buf[flavor-1] = attr;
743                         }
744                         attr = RTA_NEXT(attr, attrlen);
745                 }
746         }
747
748         if (link->doit == NULL)
749                 link = &(rtnetlink_links[PF_UNSPEC][type]);
750         if (link->doit == NULL)
751                 goto err_inval;
752         err = link->doit(skb, nlh, (void *)&rta_buf[0]);
753
754         *errp = err;
755         return err;
756
757 err_inval:
758         *errp = -EINVAL;
759         return -1;
760 }
761
762 static void rtnetlink_rcv(struct sock *sk, int len)
763 {
764         unsigned int qlen = 0;
765
766         do {
767                 mutex_lock(&rtnl_mutex);
768                 netlink_run_queue(sk, &qlen, &rtnetlink_rcv_msg);
769                 mutex_unlock(&rtnl_mutex);
770
771                 netdev_run_todo();
772         } while (qlen);
773 }
774
775 static struct rtnetlink_link link_rtnetlink_table[RTM_NR_MSGTYPES] =
776 {
777         [RTM_GETLINK     - RTM_BASE] = { .doit   = rtnl_getlink,
778                                          .dumpit = rtnl_dump_ifinfo      },
779         [RTM_SETLINK     - RTM_BASE] = { .doit   = rtnl_setlink          },
780         [RTM_GETADDR     - RTM_BASE] = { .dumpit = rtnl_dump_all         },
781         [RTM_GETROUTE    - RTM_BASE] = { .dumpit = rtnl_dump_all         },
782         [RTM_NEWNEIGH    - RTM_BASE] = { .doit   = neigh_add             },
783         [RTM_DELNEIGH    - RTM_BASE] = { .doit   = neigh_delete          },
784         [RTM_GETNEIGH    - RTM_BASE] = { .dumpit = neigh_dump_info       },
785 #ifdef CONFIG_FIB_RULES
786         [RTM_NEWRULE     - RTM_BASE] = { .doit   = fib_nl_newrule        },
787         [RTM_DELRULE     - RTM_BASE] = { .doit   = fib_nl_delrule        },
788 #endif
789         [RTM_GETRULE     - RTM_BASE] = { .dumpit = rtnl_dump_all         },
790         [RTM_GETNEIGHTBL - RTM_BASE] = { .dumpit = neightbl_dump_info    },
791         [RTM_SETNEIGHTBL - RTM_BASE] = { .doit   = neightbl_set          },
792 };
793
794 static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
795 {
796         struct net_device *dev = ptr;
797         switch (event) {
798         case NETDEV_UNREGISTER:
799                 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
800                 break;
801         case NETDEV_REGISTER:
802                 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
803                 break;
804         case NETDEV_UP:
805         case NETDEV_DOWN:
806                 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
807                 break;
808         case NETDEV_CHANGE:
809         case NETDEV_GOING_DOWN:
810                 break;
811         default:
812                 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
813                 break;
814         }
815         return NOTIFY_DONE;
816 }
817
818 static struct notifier_block rtnetlink_dev_notifier = {
819         .notifier_call  = rtnetlink_event,
820 };
821
822 void __init rtnetlink_init(void)
823 {
824         int i;
825
826         rtattr_max = 0;
827         for (i = 0; i < ARRAY_SIZE(rta_max); i++)
828                 if (rta_max[i] > rtattr_max)
829                         rtattr_max = rta_max[i];
830         rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
831         if (!rta_buf)
832                 panic("rtnetlink_init: cannot allocate rta_buf\n");
833
834         rtnl = netlink_kernel_create(NETLINK_ROUTE, RTNLGRP_MAX, rtnetlink_rcv,
835                                      THIS_MODULE);
836         if (rtnl == NULL)
837                 panic("rtnetlink_init: cannot initialize rtnetlink\n");
838         netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
839         register_netdevice_notifier(&rtnetlink_dev_notifier);
840         rtnetlink_links[PF_UNSPEC] = link_rtnetlink_table;
841         rtnetlink_links[PF_PACKET] = link_rtnetlink_table;
842 }
843
844 EXPORT_SYMBOL(__rta_fill);
845 EXPORT_SYMBOL(rtattr_strlcpy);
846 EXPORT_SYMBOL(rtattr_parse);
847 EXPORT_SYMBOL(rtnetlink_links);
848 EXPORT_SYMBOL(rtnetlink_put_metrics);
849 EXPORT_SYMBOL(rtnl_lock);
850 EXPORT_SYMBOL(rtnl_trylock);
851 EXPORT_SYMBOL(rtnl_unlock);
852 EXPORT_SYMBOL(rtnl_unicast);
853 EXPORT_SYMBOL(rtnl_notify);
854 EXPORT_SYMBOL(rtnl_set_sk_err);