Fedora Core 2 - 1.492
[linux-2.6.git] / 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/config.h>
20 #include <linux/errno.h>
21 #include <linux/module.h>
22 #include <linux/types.h>
23 #include <linux/socket.h>
24 #include <linux/kernel.h>
25 #include <linux/major.h>
26 #include <linux/sched.h>
27 #include <linux/timer.h>
28 #include <linux/string.h>
29 #include <linux/sockios.h>
30 #include <linux/net.h>
31 #include <linux/fcntl.h>
32 #include <linux/mm.h>
33 #include <linux/slab.h>
34 #include <linux/interrupt.h>
35 #include <linux/capability.h>
36 #include <linux/skbuff.h>
37 #include <linux/init.h>
38 #include <linux/security.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
54 DECLARE_MUTEX(rtnl_sem);
55
56 void rtnl_lock(void)
57 {
58         rtnl_shlock();
59         rtnl_exlock();
60 }
61  
62 void rtnl_unlock(void)
63 {
64         rtnl_exunlock();
65         rtnl_shunlock();
66
67         netdev_run_todo();
68 }
69
70 int rtattr_parse(struct rtattr *tb[], int maxattr, struct rtattr *rta, int len)
71 {
72         memset(tb, 0, sizeof(struct rtattr*)*maxattr);
73
74         while (RTA_OK(rta, len)) {
75                 unsigned flavor = rta->rta_type;
76                 if (flavor && flavor <= maxattr)
77                         tb[flavor-1] = rta;
78                 rta = RTA_NEXT(rta, len);
79         }
80         return 0;
81 }
82
83 struct sock *rtnl;
84
85 struct rtnetlink_link * rtnetlink_links[NPROTO];
86
87 static const int rtm_min[(RTM_MAX+1-RTM_BASE)/4] =
88 {
89         NLMSG_LENGTH(sizeof(struct ifinfomsg)),
90         NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
91         NLMSG_LENGTH(sizeof(struct rtmsg)),
92         NLMSG_LENGTH(sizeof(struct ndmsg)),
93         NLMSG_LENGTH(sizeof(struct rtmsg)),
94         NLMSG_LENGTH(sizeof(struct tcmsg)),
95         NLMSG_LENGTH(sizeof(struct tcmsg)),
96         NLMSG_LENGTH(sizeof(struct tcmsg)),
97         NLMSG_LENGTH(sizeof(struct tcamsg))
98 };
99
100 static const int rta_max[(RTM_MAX+1-RTM_BASE)/4] =
101 {
102         IFLA_MAX,
103         IFA_MAX,
104         RTA_MAX,
105         NDA_MAX,
106         RTA_MAX,
107         TCA_MAX,
108         TCA_MAX,
109         TCA_MAX,
110         TCAA_MAX
111 };
112
113 void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
114 {
115         struct rtattr *rta;
116         int size = RTA_LENGTH(attrlen);
117
118         rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
119         rta->rta_type = attrtype;
120         rta->rta_len = size;
121         memcpy(RTA_DATA(rta), data, attrlen);
122 }
123
124 int rtnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo)
125 {
126         int err = 0;
127
128         NETLINK_CB(skb).dst_groups = group;
129         if (echo)
130                 atomic_inc(&skb->users);
131         netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
132         if (echo)
133                 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
134         return err;
135 }
136
137 int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
138 {
139         struct rtattr *mx = (struct rtattr*)skb->tail;
140         int i;
141
142         RTA_PUT(skb, RTA_METRICS, 0, NULL);
143         for (i=0; i<RTAX_MAX; i++) {
144                 if (metrics[i])
145                         RTA_PUT(skb, i+1, sizeof(u32), metrics+i);
146         }
147         mx->rta_len = skb->tail - (u8*)mx;
148         if (mx->rta_len == RTA_LENGTH(0))
149                 skb_trim(skb, (u8*)mx - skb->data);
150         return 0;
151
152 rtattr_failure:
153         skb_trim(skb, (u8*)mx - skb->data);
154         return -1;
155 }
156
157
158 static int rtnetlink_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
159                                  int type, u32 pid, u32 seq, u32 change)
160 {
161         struct ifinfomsg *r;
162         struct nlmsghdr  *nlh;
163         unsigned char    *b = skb->tail;
164
165         nlh = NLMSG_PUT(skb, pid, seq, type, sizeof(*r));
166         if (pid) nlh->nlmsg_flags |= NLM_F_MULTI;
167         r = NLMSG_DATA(nlh);
168         r->ifi_family = AF_UNSPEC;
169         r->ifi_type = dev->type;
170         r->ifi_index = dev->ifindex;
171         r->ifi_flags = dev->flags;
172         r->ifi_change = change;
173
174         if (!netif_running(dev) || !netif_carrier_ok(dev))
175                 r->ifi_flags &= ~IFF_RUNNING;
176         else
177                 r->ifi_flags |= IFF_RUNNING;
178
179         RTA_PUT(skb, IFLA_IFNAME, strlen(dev->name)+1, dev->name);
180         if (dev->addr_len) {
181                 RTA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
182                 RTA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
183         }
184         if (1) {
185                 unsigned mtu = dev->mtu;
186                 RTA_PUT(skb, IFLA_MTU, sizeof(mtu), &mtu);
187         }
188         if (dev->ifindex != dev->iflink)
189                 RTA_PUT(skb, IFLA_LINK, sizeof(int), &dev->iflink);
190         if (dev->qdisc_sleeping)
191                 RTA_PUT(skb, IFLA_QDISC,
192                         strlen(dev->qdisc_sleeping->ops->id) + 1,
193                         dev->qdisc_sleeping->ops->id);
194         if (dev->master)
195                 RTA_PUT(skb, IFLA_MASTER, sizeof(int), &dev->master->ifindex);
196         if (dev->get_stats) {
197                 unsigned long *stats = (unsigned long*)dev->get_stats(dev);
198                 if (stats) {
199                         struct rtattr  *a;
200                         __u32          *s;
201                         int             i;
202                         int             n = sizeof(struct rtnl_link_stats)/4;
203
204                         a = __RTA_PUT(skb, IFLA_STATS, n*4);
205                         s = RTA_DATA(a);
206                         for (i=0; i<n; i++)
207                                 s[i] = stats[i];
208                 }
209         }
210         nlh->nlmsg_len = skb->tail - b;
211         return skb->len;
212
213 nlmsg_failure:
214 rtattr_failure:
215         skb_trim(skb, b - skb->data);
216         return -1;
217 }
218
219 int rtnetlink_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
220 {
221         int idx;
222         int s_idx = cb->args[0];
223         struct net_device *dev;
224
225         read_lock(&dev_base_lock);
226         for (dev=dev_base, idx=0; dev; dev = dev->next, idx++) {
227                 if (idx < s_idx)
228                         continue;
229                 if (rtnetlink_fill_ifinfo(skb, dev, RTM_NEWLINK, NETLINK_CB(cb->skb).pid, cb->nlh->nlmsg_seq, 0) <= 0)
230                         break;
231         }
232         read_unlock(&dev_base_lock);
233         cb->args[0] = idx;
234
235         return skb->len;
236 }
237
238 static int do_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
239 {
240         struct ifinfomsg  *ifm = NLMSG_DATA(nlh);
241         struct rtattr    **ida = arg;
242         struct net_device *dev;
243         int err;
244
245         dev = dev_get_by_index(ifm->ifi_index);
246         if (!dev)
247                 return -ENODEV;
248
249         err = -EINVAL;
250
251         if (ida[IFLA_ADDRESS - 1]) {
252                 if (!dev->set_mac_address) {
253                         err = -EOPNOTSUPP;
254                         goto out;
255                 }
256                 if (!netif_device_present(dev)) {
257                         err = -ENODEV;
258                         goto out;
259                 }
260                 if (ida[IFLA_ADDRESS - 1]->rta_len != RTA_LENGTH(dev->addr_len))
261                         goto out;
262
263                 err = dev->set_mac_address(dev, RTA_DATA(ida[IFLA_ADDRESS - 1]));
264                 if (err)
265                         goto out;
266         }
267
268         if (ida[IFLA_BROADCAST - 1]) {
269                 if (ida[IFLA_BROADCAST - 1]->rta_len != RTA_LENGTH(dev->addr_len))
270                         goto out;
271                 memcpy(dev->broadcast, RTA_DATA(ida[IFLA_BROADCAST - 1]),
272                        dev->addr_len);
273         }
274
275         err = 0;
276
277 out:
278         if (!err)
279                 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
280
281         dev_put(dev);
282         return err;
283 }
284
285 static int rtnetlink_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
286 {
287         int idx;
288         int s_idx = cb->family;
289
290         if (s_idx == 0)
291                 s_idx = 1;
292         for (idx=1; idx<NPROTO; idx++) {
293                 int type = cb->nlh->nlmsg_type-RTM_BASE;
294                 if (idx < s_idx || idx == PF_PACKET)
295                         continue;
296                 if (rtnetlink_links[idx] == NULL ||
297                     rtnetlink_links[idx][type].dumpit == NULL)
298                         continue;
299                 if (idx > s_idx)
300                         memset(&cb->args[0], 0, sizeof(cb->args));
301                 if (rtnetlink_links[idx][type].dumpit(skb, cb))
302                         break;
303         }
304         cb->family = idx;
305
306         return skb->len;
307 }
308
309 void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
310 {
311         struct sk_buff *skb;
312         int size = NLMSG_GOODSIZE;
313
314         skb = alloc_skb(size, GFP_KERNEL);
315         if (!skb)
316                 return;
317
318         if (rtnetlink_fill_ifinfo(skb, dev, type, 0, 0, change) < 0) {
319                 kfree_skb(skb);
320                 return;
321         }
322         NETLINK_CB(skb).dst_groups = RTMGRP_LINK;
323         netlink_broadcast(rtnl, skb, 0, RTMGRP_LINK, GFP_KERNEL);
324 }
325
326 static int rtnetlink_done(struct netlink_callback *cb)
327 {
328         return 0;
329 }
330
331 /* Process one rtnetlink message. */
332
333 static __inline__ int
334 rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, int *errp)
335 {
336         struct rtnetlink_link *link;
337         struct rtnetlink_link *link_tab;
338         struct rtattr   *rta[RTATTR_MAX];
339
340         int exclusive = 0;
341         int sz_idx, kind;
342         int min_len;
343         int family;
344         int type;
345         int err;
346
347         /* Only requests are handled by kernel now */
348         if (!(nlh->nlmsg_flags&NLM_F_REQUEST))
349                 return 0;
350
351         type = nlh->nlmsg_type;
352
353         /* A control message: ignore them */
354         if (type < RTM_BASE)
355                 return 0;
356
357         /* Unknown message: reply with EINVAL */
358         if (type > RTM_MAX)
359                 goto err_inval;
360
361         type -= RTM_BASE;
362
363         /* All the messages must have at least 1 byte length */
364         if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
365                 return 0;
366
367         family = ((struct rtgenmsg*)NLMSG_DATA(nlh))->rtgen_family;
368         if (family >= NPROTO) {
369                 *errp = -EAFNOSUPPORT;
370                 return -1;
371         }
372
373         link_tab = rtnetlink_links[family];
374         if (link_tab == NULL)
375                 link_tab = rtnetlink_links[PF_UNSPEC];
376         link = &link_tab[type];
377
378         sz_idx = type>>2;
379         kind = type&3;
380
381         if (kind != 2 && security_netlink_recv(skb)) {
382                 *errp = -EPERM;
383                 return -1;
384         }
385
386         if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
387                 u32 rlen;
388
389                 if (link->dumpit == NULL)
390                         link = &(rtnetlink_links[PF_UNSPEC][type]);
391
392                 if (link->dumpit == NULL)
393                         goto err_inval;
394
395                 if ((*errp = netlink_dump_start(rtnl, skb, nlh,
396                                                 link->dumpit,
397                                                 rtnetlink_done)) != 0) {
398                         return -1;
399                 }
400                 rlen = NLMSG_ALIGN(nlh->nlmsg_len);
401                 if (rlen > skb->len)
402                         rlen = skb->len;
403                 skb_pull(skb, rlen);
404                 return -1;
405         }
406
407         if (kind != 2) {
408                 if (rtnl_exlock_nowait()) {
409                         *errp = 0;
410                         return -1;
411                 }
412                 exclusive = 1;
413         }
414
415         memset(&rta, 0, sizeof(rta));
416
417         min_len = rtm_min[sz_idx];
418         if (nlh->nlmsg_len < min_len)
419                 goto err_inval;
420
421         if (nlh->nlmsg_len > min_len) {
422                 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
423                 struct rtattr *attr = (void*)nlh + NLMSG_ALIGN(min_len);
424
425                 while (RTA_OK(attr, attrlen)) {
426                         unsigned flavor = attr->rta_type;
427                         if (flavor) {
428                                 if (flavor > rta_max[sz_idx])
429                                         goto err_inval;
430                                 rta[flavor-1] = attr;
431                         }
432                         attr = RTA_NEXT(attr, attrlen);
433                 }
434         }
435
436         if (link->doit == NULL)
437                 link = &(rtnetlink_links[PF_UNSPEC][type]);
438         if (link->doit == NULL)
439                 goto err_inval;
440         err = link->doit(skb, nlh, (void *)&rta);
441
442         if (exclusive)
443                 rtnl_exunlock();
444         *errp = err;
445         return err;
446
447 err_inval:
448         if (exclusive)
449                 rtnl_exunlock();
450         *errp = -EINVAL;
451         return -1;
452 }
453
454 /* 
455  * Process one packet of messages.
456  * Malformed skbs with wrong lengths of messages are discarded silently.
457  */
458
459 static inline int rtnetlink_rcv_skb(struct sk_buff *skb)
460 {
461         int err;
462         struct nlmsghdr * nlh;
463
464         while (skb->len >= NLMSG_SPACE(0)) {
465                 u32 rlen;
466
467                 nlh = (struct nlmsghdr *)skb->data;
468                 if (nlh->nlmsg_len < sizeof(*nlh) || skb->len < nlh->nlmsg_len)
469                         return 0;
470                 rlen = NLMSG_ALIGN(nlh->nlmsg_len);
471                 if (rlen > skb->len)
472                         rlen = skb->len;
473                 if (rtnetlink_rcv_msg(skb, nlh, &err)) {
474                         /* Not error, but we must interrupt processing here:
475                          *   Note, that in this case we do not pull message
476                          *   from skb, it will be processed later.
477                          */
478                         if (err == 0)
479                                 return -1;
480                         netlink_ack(skb, nlh, err);
481                 } else if (nlh->nlmsg_flags&NLM_F_ACK)
482                         netlink_ack(skb, nlh, 0);
483                 skb_pull(skb, rlen);
484         }
485
486         return 0;
487 }
488
489 /*
490  *  rtnetlink input queue processing routine:
491  *      - try to acquire shared lock. If it is failed, defer processing.
492  *      - feed skbs to rtnetlink_rcv_skb, until it refuse a message,
493  *        that will occur, when a dump started and/or acquisition of
494  *        exclusive lock failed.
495  */
496
497 static void rtnetlink_rcv(struct sock *sk, int len)
498 {
499         do {
500                 struct sk_buff *skb;
501
502                 if (rtnl_shlock_nowait())
503                         return;
504
505                 while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) {
506                         if (rtnetlink_rcv_skb(skb)) {
507                                 if (skb->len)
508                                         skb_queue_head(&sk->sk_receive_queue,
509                                                        skb);
510                                 else
511                                         kfree_skb(skb);
512                                 break;
513                         }
514                         kfree_skb(skb);
515                 }
516
517                 up(&rtnl_sem);
518
519                 netdev_run_todo();
520         } while (rtnl && rtnl->sk_receive_queue.qlen);
521 }
522
523 static struct rtnetlink_link link_rtnetlink_table[RTM_MAX-RTM_BASE+1] =
524 {
525         [RTM_GETLINK  - RTM_BASE] = { .dumpit = rtnetlink_dump_ifinfo },
526         [RTM_SETLINK  - RTM_BASE] = { .doit   = do_setlink            },
527         [RTM_GETADDR  - RTM_BASE] = { .dumpit = rtnetlink_dump_all    },
528         [RTM_GETROUTE - RTM_BASE] = { .dumpit = rtnetlink_dump_all    },
529         [RTM_NEWNEIGH - RTM_BASE] = { .doit   = neigh_add             },
530         [RTM_DELNEIGH - RTM_BASE] = { .doit   = neigh_delete          },
531         [RTM_GETNEIGH - RTM_BASE] = { .dumpit = neigh_dump_info       }
532 };
533
534 static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
535 {
536         struct net_device *dev = ptr;
537         switch (event) {
538         case NETDEV_UNREGISTER:
539                 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
540                 break;
541         case NETDEV_REGISTER:
542                 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
543                 break;
544         case NETDEV_UP:
545         case NETDEV_DOWN:
546                 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
547                 break;
548         case NETDEV_CHANGE:
549         case NETDEV_GOING_DOWN:
550                 break;
551         default:
552                 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
553                 break;
554         }
555         return NOTIFY_DONE;
556 }
557
558 static struct notifier_block rtnetlink_dev_notifier = {
559         .notifier_call  = rtnetlink_event,
560 };
561
562 void __init rtnetlink_init(void)
563 {
564         rtnl = netlink_kernel_create(NETLINK_ROUTE, rtnetlink_rcv);
565         if (rtnl == NULL)
566                 panic("rtnetlink_init: cannot initialize rtnetlink\n");
567         netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
568         register_netdevice_notifier(&rtnetlink_dev_notifier);
569         rtnetlink_links[PF_UNSPEC] = link_rtnetlink_table;
570         rtnetlink_links[PF_PACKET] = link_rtnetlink_table;
571 }
572
573 EXPORT_SYMBOL(__rta_fill);
574 EXPORT_SYMBOL(rtattr_parse);
575 EXPORT_SYMBOL(rtnetlink_dump_ifinfo);
576 EXPORT_SYMBOL(rtnetlink_links);
577 EXPORT_SYMBOL(rtnetlink_put_metrics);
578 EXPORT_SYMBOL(rtnl);
579 EXPORT_SYMBOL(rtnl_lock);
580 EXPORT_SYMBOL(rtnl_sem);
581 EXPORT_SYMBOL(rtnl_unlock);