blob: 30cc1ba6ed5c46259bc939e425b88b0402e2a436 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/errno.h>
20#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/socket.h>
23#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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>
Stephen Hemminger6756ae42006-03-20 22:23:58 -080037#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/uaccess.h>
40#include <asm/system.h>
41#include <asm/string.h>
42
43#include <linux/inet.h>
44#include <linux/netdevice.h>
45#include <net/ip.h>
46#include <net/protocol.h>
47#include <net/arp.h>
48#include <net/route.h>
49#include <net/udp.h>
50#include <net/sock.h>
51#include <net/pkt_sched.h>
Thomas Graf9ac4a162005-11-10 02:25:55 +010052#include <net/netlink.h>
Jean Tourrilhes711e2c32006-02-22 15:10:56 -080053#ifdef CONFIG_NET_WIRELESS_RTNETLINK
54#include <linux/wireless.h>
55#include <net/iw_handler.h>
56#endif /* CONFIG_NET_WIRELESS_RTNETLINK */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Stephen Hemminger6756ae42006-03-20 22:23:58 -080058static DEFINE_MUTEX(rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60void rtnl_lock(void)
61{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080062 mutex_lock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
Stephen Hemminger6756ae42006-03-20 22:23:58 -080065void __rtnl_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080067 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
Stephen Hemminger6756ae42006-03-20 22:23:58 -080069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070void rtnl_unlock(void)
71{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080072 mutex_unlock(&rtnl_mutex);
73 if (rtnl && rtnl->sk_receive_queue.qlen)
74 rtnl->sk_data_ready(rtnl, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 netdev_run_todo();
76}
77
Stephen Hemminger6756ae42006-03-20 22:23:58 -080078int rtnl_trylock(void)
79{
80 return mutex_trylock(&rtnl_mutex);
81}
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083int rtattr_parse(struct rtattr *tb[], int maxattr, struct rtattr *rta, int len)
84{
85 memset(tb, 0, sizeof(struct rtattr*)*maxattr);
86
87 while (RTA_OK(rta, len)) {
88 unsigned flavor = rta->rta_type;
89 if (flavor && flavor <= maxattr)
90 tb[flavor-1] = rta;
91 rta = RTA_NEXT(rta, len);
92 }
93 return 0;
94}
95
96struct sock *rtnl;
97
98struct rtnetlink_link * rtnetlink_links[NPROTO];
99
Thomas Grafdb46edc2005-05-03 14:29:39 -0700100static const int rtm_min[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Thomas Graff90a0a72005-05-03 14:29:00 -0700102 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
103 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
104 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
105 [RTM_FAM(RTM_NEWNEIGH)] = NLMSG_LENGTH(sizeof(struct ndmsg)),
106 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
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)),
Thomas Grafc7fb64d2005-06-18 22:50:55 -0700114 [RTM_FAM(RTM_NEWNEIGHTBL)] = NLMSG_LENGTH(sizeof(struct ndtmsg)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
Thomas Grafdb46edc2005-05-03 14:29:39 -0700117static const int rta_max[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Thomas Graff90a0a72005-05-03 14:29:00 -0700119 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
120 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
121 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
122 [RTM_FAM(RTM_NEWNEIGH)] = NDA_MAX,
123 [RTM_FAM(RTM_NEWRULE)] = RTA_MAX,
124 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
125 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
126 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
127 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
Thomas Grafc7fb64d2005-06-18 22:50:55 -0700128 [RTM_FAM(RTM_NEWNEIGHTBL)] = NDTA_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130
131void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
132{
133 struct rtattr *rta;
134 int size = RTA_LENGTH(attrlen);
135
136 rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
137 rta->rta_type = attrtype;
138 rta->rta_len = size;
139 memcpy(RTA_DATA(rta), data, attrlen);
Patrick McHardyb3563c42005-06-28 12:54:43 -0700140 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
143size_t rtattr_strlcpy(char *dest, const struct rtattr *rta, size_t size)
144{
145 size_t ret = RTA_PAYLOAD(rta);
146 char *src = RTA_DATA(rta);
147
148 if (ret > 0 && src[ret - 1] == '\0')
149 ret--;
150 if (size > 0) {
151 size_t len = (ret >= size) ? size - 1 : ret;
152 memset(dest, 0, size);
153 memcpy(dest, src, len);
154 }
155 return ret;
156}
157
158int rtnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo)
159{
160 int err = 0;
161
Patrick McHardyac6d4392005-08-14 19:29:52 -0700162 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 if (echo)
164 atomic_inc(&skb->users);
165 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
166 if (echo)
167 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
168 return err;
169}
170
171int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
172{
173 struct rtattr *mx = (struct rtattr*)skb->tail;
174 int i;
175
176 RTA_PUT(skb, RTA_METRICS, 0, NULL);
177 for (i=0; i<RTAX_MAX; i++) {
178 if (metrics[i])
179 RTA_PUT(skb, i+1, sizeof(u32), metrics+i);
180 }
181 mx->rta_len = skb->tail - (u8*)mx;
182 if (mx->rta_len == RTA_LENGTH(0))
183 skb_trim(skb, (u8*)mx - skb->data);
184 return 0;
185
186rtattr_failure:
187 skb_trim(skb, (u8*)mx - skb->data);
188 return -1;
189}
190
191
Stefan Rompfb00055a2006-03-20 17:09:11 -0800192static void set_operstate(struct net_device *dev, unsigned char transition)
193{
194 unsigned char operstate = dev->operstate;
195
196 switch(transition) {
197 case IF_OPER_UP:
198 if ((operstate == IF_OPER_DORMANT ||
199 operstate == IF_OPER_UNKNOWN) &&
200 !netif_dormant(dev))
201 operstate = IF_OPER_UP;
202 break;
203
204 case IF_OPER_DORMANT:
205 if (operstate == IF_OPER_UP ||
206 operstate == IF_OPER_UNKNOWN)
207 operstate = IF_OPER_DORMANT;
208 break;
209 };
210
211 if (dev->operstate != operstate) {
212 write_lock_bh(&dev_base_lock);
213 dev->operstate = operstate;
214 write_unlock_bh(&dev_base_lock);
215 netdev_state_change(dev);
216 }
217}
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219static int rtnetlink_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -0700220 int type, u32 pid, u32 seq, u32 change,
221 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct ifinfomsg *r;
224 struct nlmsghdr *nlh;
225 unsigned char *b = skb->tail;
226
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -0700227 nlh = NLMSG_NEW(skb, pid, seq, type, sizeof(*r), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 r = NLMSG_DATA(nlh);
229 r->ifi_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -0700230 r->__ifi_pad = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 r->ifi_type = dev->type;
232 r->ifi_index = dev->ifindex;
233 r->ifi_flags = dev_get_flags(dev);
234 r->ifi_change = change;
235
236 RTA_PUT(skb, IFLA_IFNAME, strlen(dev->name)+1, dev->name);
237
238 if (1) {
239 u32 txqlen = dev->tx_queue_len;
240 RTA_PUT(skb, IFLA_TXQLEN, sizeof(txqlen), &txqlen);
241 }
242
243 if (1) {
244 u32 weight = dev->weight;
245 RTA_PUT(skb, IFLA_WEIGHT, sizeof(weight), &weight);
246 }
247
248 if (1) {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800249 u8 operstate = netif_running(dev)?dev->operstate:IF_OPER_DOWN;
250 u8 link_mode = dev->link_mode;
251 RTA_PUT(skb, IFLA_OPERSTATE, sizeof(operstate), &operstate);
252 RTA_PUT(skb, IFLA_LINKMODE, sizeof(link_mode), &link_mode);
253 }
254
255 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 struct rtnl_link_ifmap map = {
257 .mem_start = dev->mem_start,
258 .mem_end = dev->mem_end,
259 .base_addr = dev->base_addr,
260 .irq = dev->irq,
261 .dma = dev->dma,
262 .port = dev->if_port,
263 };
264 RTA_PUT(skb, IFLA_MAP, sizeof(map), &map);
265 }
266
267 if (dev->addr_len) {
268 RTA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
269 RTA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
270 }
271
272 if (1) {
273 u32 mtu = dev->mtu;
274 RTA_PUT(skb, IFLA_MTU, sizeof(mtu), &mtu);
275 }
276
277 if (dev->ifindex != dev->iflink) {
278 u32 iflink = dev->iflink;
279 RTA_PUT(skb, IFLA_LINK, sizeof(iflink), &iflink);
280 }
281
282 if (dev->qdisc_sleeping)
283 RTA_PUT(skb, IFLA_QDISC,
284 strlen(dev->qdisc_sleeping->ops->id) + 1,
285 dev->qdisc_sleeping->ops->id);
286
287 if (dev->master) {
288 u32 master = dev->master->ifindex;
289 RTA_PUT(skb, IFLA_MASTER, sizeof(master), &master);
290 }
291
292 if (dev->get_stats) {
293 unsigned long *stats = (unsigned long*)dev->get_stats(dev);
294 if (stats) {
295 struct rtattr *a;
296 __u32 *s;
297 int i;
298 int n = sizeof(struct rtnl_link_stats)/4;
299
300 a = __RTA_PUT(skb, IFLA_STATS, n*4);
301 s = RTA_DATA(a);
302 for (i=0; i<n; i++)
303 s[i] = stats[i];
304 }
305 }
306 nlh->nlmsg_len = skb->tail - b;
307 return skb->len;
308
309nlmsg_failure:
310rtattr_failure:
311 skb_trim(skb, b - skb->data);
312 return -1;
313}
314
315static int rtnetlink_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
316{
317 int idx;
318 int s_idx = cb->args[0];
319 struct net_device *dev;
320
321 read_lock(&dev_base_lock);
322 for (dev=dev_base, idx=0; dev; dev = dev->next, idx++) {
323 if (idx < s_idx)
324 continue;
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -0700325 if (rtnetlink_fill_ifinfo(skb, dev, RTM_NEWLINK,
326 NETLINK_CB(cb->skb).pid,
327 cb->nlh->nlmsg_seq, 0,
328 NLM_F_MULTI) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 break;
330 }
331 read_unlock(&dev_base_lock);
332 cb->args[0] = idx;
333
334 return skb->len;
335}
336
337static int do_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
338{
339 struct ifinfomsg *ifm = NLMSG_DATA(nlh);
340 struct rtattr **ida = arg;
341 struct net_device *dev;
342 int err, send_addr_notify = 0;
343
344 if (ifm->ifi_index >= 0)
345 dev = dev_get_by_index(ifm->ifi_index);
346 else if (ida[IFLA_IFNAME - 1]) {
347 char ifname[IFNAMSIZ];
348
349 if (rtattr_strlcpy(ifname, ida[IFLA_IFNAME - 1],
350 IFNAMSIZ) >= IFNAMSIZ)
351 return -EINVAL;
352 dev = dev_get_by_name(ifname);
353 } else
354 return -EINVAL;
355
356 if (!dev)
357 return -ENODEV;
358
359 err = -EINVAL;
360
361 if (ifm->ifi_flags)
362 dev_change_flags(dev, ifm->ifi_flags);
363
364 if (ida[IFLA_MAP - 1]) {
365 struct rtnl_link_ifmap *u_map;
366 struct ifmap k_map;
367
368 if (!dev->set_config) {
369 err = -EOPNOTSUPP;
370 goto out;
371 }
372
373 if (!netif_device_present(dev)) {
374 err = -ENODEV;
375 goto out;
376 }
377
378 if (ida[IFLA_MAP - 1]->rta_len != RTA_LENGTH(sizeof(*u_map)))
379 goto out;
380
381 u_map = RTA_DATA(ida[IFLA_MAP - 1]);
382
383 k_map.mem_start = (unsigned long) u_map->mem_start;
384 k_map.mem_end = (unsigned long) u_map->mem_end;
385 k_map.base_addr = (unsigned short) u_map->base_addr;
386 k_map.irq = (unsigned char) u_map->irq;
387 k_map.dma = (unsigned char) u_map->dma;
388 k_map.port = (unsigned char) u_map->port;
389
390 err = dev->set_config(dev, &k_map);
391
392 if (err)
393 goto out;
394 }
395
396 if (ida[IFLA_ADDRESS - 1]) {
David S. Miller70f8e782006-08-08 16:47:37 -0700397 struct sockaddr *sa;
398 int len;
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (!dev->set_mac_address) {
401 err = -EOPNOTSUPP;
402 goto out;
403 }
404 if (!netif_device_present(dev)) {
405 err = -ENODEV;
406 goto out;
407 }
408 if (ida[IFLA_ADDRESS - 1]->rta_len != RTA_LENGTH(dev->addr_len))
409 goto out;
410
David S. Miller70f8e782006-08-08 16:47:37 -0700411 len = sizeof(sa_family_t) + dev->addr_len;
412 sa = kmalloc(len, GFP_KERNEL);
413 if (!sa) {
414 err = -ENOMEM;
415 goto out;
416 }
417 sa->sa_family = dev->type;
418 memcpy(sa->sa_data, RTA_DATA(ida[IFLA_ADDRESS - 1]),
419 dev->addr_len);
420 err = dev->set_mac_address(dev, sa);
421 kfree(sa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (err)
423 goto out;
424 send_addr_notify = 1;
425 }
426
427 if (ida[IFLA_BROADCAST - 1]) {
428 if (ida[IFLA_BROADCAST - 1]->rta_len != RTA_LENGTH(dev->addr_len))
429 goto out;
430 memcpy(dev->broadcast, RTA_DATA(ida[IFLA_BROADCAST - 1]),
431 dev->addr_len);
432 send_addr_notify = 1;
433 }
434
435 if (ida[IFLA_MTU - 1]) {
436 if (ida[IFLA_MTU - 1]->rta_len != RTA_LENGTH(sizeof(u32)))
437 goto out;
438 err = dev_set_mtu(dev, *((u32 *) RTA_DATA(ida[IFLA_MTU - 1])));
439
440 if (err)
441 goto out;
442
443 }
444
445 if (ida[IFLA_TXQLEN - 1]) {
446 if (ida[IFLA_TXQLEN - 1]->rta_len != RTA_LENGTH(sizeof(u32)))
447 goto out;
448
449 dev->tx_queue_len = *((u32 *) RTA_DATA(ida[IFLA_TXQLEN - 1]));
450 }
451
452 if (ida[IFLA_WEIGHT - 1]) {
453 if (ida[IFLA_WEIGHT - 1]->rta_len != RTA_LENGTH(sizeof(u32)))
454 goto out;
455
456 dev->weight = *((u32 *) RTA_DATA(ida[IFLA_WEIGHT - 1]));
457 }
458
Stefan Rompfb00055a2006-03-20 17:09:11 -0800459 if (ida[IFLA_OPERSTATE - 1]) {
460 if (ida[IFLA_OPERSTATE - 1]->rta_len != RTA_LENGTH(sizeof(u8)))
461 goto out;
462
463 set_operstate(dev, *((u8 *) RTA_DATA(ida[IFLA_OPERSTATE - 1])));
464 }
465
466 if (ida[IFLA_LINKMODE - 1]) {
467 if (ida[IFLA_LINKMODE - 1]->rta_len != RTA_LENGTH(sizeof(u8)))
468 goto out;
469
470 write_lock_bh(&dev_base_lock);
471 dev->link_mode = *((u8 *) RTA_DATA(ida[IFLA_LINKMODE - 1]));
472 write_unlock_bh(&dev_base_lock);
473 }
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 if (ifm->ifi_index >= 0 && ida[IFLA_IFNAME - 1]) {
476 char ifname[IFNAMSIZ];
477
478 if (rtattr_strlcpy(ifname, ida[IFLA_IFNAME - 1],
479 IFNAMSIZ) >= IFNAMSIZ)
480 goto out;
481 err = dev_change_name(dev, ifname);
482 if (err)
483 goto out;
484 }
485
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800486#ifdef CONFIG_NET_WIRELESS_RTNETLINK
487 if (ida[IFLA_WIRELESS - 1]) {
488
489 /* Call Wireless Extensions.
490 * Various stuff checked in there... */
491 err = wireless_rtnetlink_set(dev, RTA_DATA(ida[IFLA_WIRELESS - 1]), ida[IFLA_WIRELESS - 1]->rta_len);
492 if (err)
493 goto out;
494 }
495#endif /* CONFIG_NET_WIRELESS_RTNETLINK */
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 err = 0;
498
499out:
500 if (send_addr_notify)
501 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
502
503 dev_put(dev);
504 return err;
505}
506
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800507#ifdef CONFIG_NET_WIRELESS_RTNETLINK
508static int do_getlink(struct sk_buff *in_skb, struct nlmsghdr* in_nlh, void *arg)
509{
510 struct ifinfomsg *ifm = NLMSG_DATA(in_nlh);
511 struct rtattr **ida = arg;
512 struct net_device *dev;
513 struct ifinfomsg *r;
514 struct nlmsghdr *nlh;
515 int err = -ENOBUFS;
516 struct sk_buff *skb;
517 unsigned char *b;
518 char *iw_buf = NULL;
519 int iw_buf_len = 0;
520
521 if (ifm->ifi_index >= 0)
522 dev = dev_get_by_index(ifm->ifi_index);
523 else
524 return -EINVAL;
525 if (!dev)
526 return -ENODEV;
527
528#ifdef CONFIG_NET_WIRELESS_RTNETLINK
529 if (ida[IFLA_WIRELESS - 1]) {
530
531 /* Call Wireless Extensions. We need to know the size before
532 * we can alloc. Various stuff checked in there... */
533 err = wireless_rtnetlink_get(dev, RTA_DATA(ida[IFLA_WIRELESS - 1]), ida[IFLA_WIRELESS - 1]->rta_len, &iw_buf, &iw_buf_len);
534 if (err)
535 goto out;
536 }
537#endif /* CONFIG_NET_WIRELESS_RTNETLINK */
538
539 /* Create a skb big enough to include all the data.
540 * Some requests are way bigger than 4k... Jean II */
541 skb = alloc_skb((NLMSG_LENGTH(sizeof(*r))) + (RTA_SPACE(iw_buf_len)),
542 GFP_KERNEL);
543 if (!skb)
544 goto out;
545 b = skb->tail;
546
547 /* Put in the message the usual good stuff */
548 nlh = NLMSG_PUT(skb, NETLINK_CB(in_skb).pid, in_nlh->nlmsg_seq,
549 RTM_NEWLINK, sizeof(*r));
550 r = NLMSG_DATA(nlh);
551 r->ifi_family = AF_UNSPEC;
552 r->__ifi_pad = 0;
553 r->ifi_type = dev->type;
554 r->ifi_index = dev->ifindex;
555 r->ifi_flags = dev->flags;
556 r->ifi_change = 0;
557
558 /* Put the wireless payload if it exist */
559 if(iw_buf != NULL)
560 RTA_PUT(skb, IFLA_WIRELESS, iw_buf_len,
561 iw_buf + IW_EV_POINT_OFF);
562
563 nlh->nlmsg_len = skb->tail - b;
564
565 /* Needed ? */
566 NETLINK_CB(skb).dst_pid = NETLINK_CB(in_skb).pid;
567
568 err = netlink_unicast(rtnl, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
569 if (err > 0)
570 err = 0;
571out:
572 if(iw_buf != NULL)
573 kfree(iw_buf);
574 dev_put(dev);
575 return err;
576
577rtattr_failure:
578nlmsg_failure:
579 kfree_skb(skb);
580 goto out;
581}
582#endif /* CONFIG_NET_WIRELESS_RTNETLINK */
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584static int rtnetlink_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
585{
586 int idx;
587 int s_idx = cb->family;
588
589 if (s_idx == 0)
590 s_idx = 1;
591 for (idx=1; idx<NPROTO; idx++) {
592 int type = cb->nlh->nlmsg_type-RTM_BASE;
593 if (idx < s_idx || idx == PF_PACKET)
594 continue;
595 if (rtnetlink_links[idx] == NULL ||
596 rtnetlink_links[idx][type].dumpit == NULL)
597 continue;
598 if (idx > s_idx)
599 memset(&cb->args[0], 0, sizeof(cb->args));
600 if (rtnetlink_links[idx][type].dumpit(skb, cb))
601 break;
602 }
603 cb->family = idx;
604
605 return skb->len;
606}
607
608void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
609{
610 struct sk_buff *skb;
611 int size = NLMSG_SPACE(sizeof(struct ifinfomsg) +
612 sizeof(struct rtnl_link_ifmap) +
613 sizeof(struct rtnl_link_stats) + 128);
614
615 skb = alloc_skb(size, GFP_KERNEL);
616 if (!skb)
617 return;
618
Alexey Kuznetsov28633512006-02-09 16:40:58 -0800619 if (rtnetlink_fill_ifinfo(skb, dev, type, 0, 0, change, 0) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 kfree_skb(skb);
621 return;
622 }
Patrick McHardyac6d4392005-08-14 19:29:52 -0700623 NETLINK_CB(skb).dst_group = RTNLGRP_LINK;
624 netlink_broadcast(rtnl, skb, 0, RTNLGRP_LINK, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627/* Protected by RTNL sempahore. */
628static struct rtattr **rta_buf;
629static int rtattr_max;
630
631/* Process one rtnetlink message. */
632
633static __inline__ int
634rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, int *errp)
635{
636 struct rtnetlink_link *link;
637 struct rtnetlink_link *link_tab;
638 int sz_idx, kind;
639 int min_len;
640 int family;
641 int type;
642 int err;
643
644 /* Only requests are handled by kernel now */
645 if (!(nlh->nlmsg_flags&NLM_F_REQUEST))
646 return 0;
647
648 type = nlh->nlmsg_type;
649
650 /* A control message: ignore them */
651 if (type < RTM_BASE)
652 return 0;
653
654 /* Unknown message: reply with EINVAL */
655 if (type > RTM_MAX)
656 goto err_inval;
657
658 type -= RTM_BASE;
659
660 /* All the messages must have at least 1 byte length */
661 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
662 return 0;
663
664 family = ((struct rtgenmsg*)NLMSG_DATA(nlh))->rtgen_family;
665 if (family >= NPROTO) {
666 *errp = -EAFNOSUPPORT;
667 return -1;
668 }
669
670 link_tab = rtnetlink_links[family];
671 if (link_tab == NULL)
672 link_tab = rtnetlink_links[PF_UNSPEC];
673 link = &link_tab[type];
674
675 sz_idx = type>>2;
676 kind = type&3;
677
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700678 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 *errp = -EPERM;
680 return -1;
681 }
682
683 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 if (link->dumpit == NULL)
685 link = &(rtnetlink_links[PF_UNSPEC][type]);
686
687 if (link->dumpit == NULL)
688 goto err_inval;
689
690 if ((*errp = netlink_dump_start(rtnl, skb, nlh,
Thomas Grafa8f74b22005-11-10 02:25:52 +0100691 link->dumpit, NULL)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return -1;
693 }
Thomas Graf9ac4a162005-11-10 02:25:55 +0100694
695 netlink_queue_skip(nlh, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return -1;
697 }
698
699 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
700
701 min_len = rtm_min[sz_idx];
702 if (nlh->nlmsg_len < min_len)
703 goto err_inval;
704
705 if (nlh->nlmsg_len > min_len) {
706 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
707 struct rtattr *attr = (void*)nlh + NLMSG_ALIGN(min_len);
708
709 while (RTA_OK(attr, attrlen)) {
710 unsigned flavor = attr->rta_type;
711 if (flavor) {
712 if (flavor > rta_max[sz_idx])
713 goto err_inval;
714 rta_buf[flavor-1] = attr;
715 }
716 attr = RTA_NEXT(attr, attrlen);
717 }
718 }
719
720 if (link->doit == NULL)
721 link = &(rtnetlink_links[PF_UNSPEC][type]);
722 if (link->doit == NULL)
723 goto err_inval;
724 err = link->doit(skb, nlh, (void *)&rta_buf[0]);
725
726 *errp = err;
727 return err;
728
729err_inval:
730 *errp = -EINVAL;
731 return -1;
732}
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734static void rtnetlink_rcv(struct sock *sk, int len)
735{
Thomas Graf9ac4a162005-11-10 02:25:55 +0100736 unsigned int qlen = 0;
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 do {
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800739 mutex_lock(&rtnl_mutex);
Thomas Graf9ac4a162005-11-10 02:25:55 +0100740 netlink_run_queue(sk, &qlen, &rtnetlink_rcv_msg);
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800741 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 netdev_run_todo();
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700744 } while (qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
Thomas Grafdb46edc2005-05-03 14:29:39 -0700747static struct rtnetlink_link link_rtnetlink_table[RTM_NR_MSGTYPES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800749 [RTM_GETLINK - RTM_BASE] = {
750#ifdef CONFIG_NET_WIRELESS_RTNETLINK
751 .doit = do_getlink,
752#endif /* CONFIG_NET_WIRELESS_RTNETLINK */
753 .dumpit = rtnetlink_dump_ifinfo },
Thomas Grafc7fb64d2005-06-18 22:50:55 -0700754 [RTM_SETLINK - RTM_BASE] = { .doit = do_setlink },
755 [RTM_GETADDR - RTM_BASE] = { .dumpit = rtnetlink_dump_all },
756 [RTM_GETROUTE - RTM_BASE] = { .dumpit = rtnetlink_dump_all },
757 [RTM_NEWNEIGH - RTM_BASE] = { .doit = neigh_add },
758 [RTM_DELNEIGH - RTM_BASE] = { .doit = neigh_delete },
759 [RTM_GETNEIGH - RTM_BASE] = { .dumpit = neigh_dump_info },
760 [RTM_GETRULE - RTM_BASE] = { .dumpit = rtnetlink_dump_all },
761 [RTM_GETNEIGHTBL - RTM_BASE] = { .dumpit = neightbl_dump_info },
762 [RTM_SETNEIGHTBL - RTM_BASE] = { .doit = neightbl_set },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763};
764
765static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
766{
767 struct net_device *dev = ptr;
768 switch (event) {
769 case NETDEV_UNREGISTER:
770 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
771 break;
772 case NETDEV_REGISTER:
773 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
774 break;
775 case NETDEV_UP:
776 case NETDEV_DOWN:
777 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
778 break;
779 case NETDEV_CHANGE:
780 case NETDEV_GOING_DOWN:
781 break;
782 default:
783 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
784 break;
785 }
786 return NOTIFY_DONE;
787}
788
789static struct notifier_block rtnetlink_dev_notifier = {
790 .notifier_call = rtnetlink_event,
791};
792
793void __init rtnetlink_init(void)
794{
795 int i;
796
797 rtattr_max = 0;
798 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
799 if (rta_max[i] > rtattr_max)
800 rtattr_max = rta_max[i];
801 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
802 if (!rta_buf)
803 panic("rtnetlink_init: cannot allocate rta_buf\n");
804
Patrick McHardy06628602005-08-15 12:33:26 -0700805 rtnl = netlink_kernel_create(NETLINK_ROUTE, RTNLGRP_MAX, rtnetlink_rcv,
806 THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (rtnl == NULL)
808 panic("rtnetlink_init: cannot initialize rtnetlink\n");
809 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
810 register_netdevice_notifier(&rtnetlink_dev_notifier);
811 rtnetlink_links[PF_UNSPEC] = link_rtnetlink_table;
812 rtnetlink_links[PF_PACKET] = link_rtnetlink_table;
813}
814
815EXPORT_SYMBOL(__rta_fill);
816EXPORT_SYMBOL(rtattr_strlcpy);
817EXPORT_SYMBOL(rtattr_parse);
818EXPORT_SYMBOL(rtnetlink_links);
819EXPORT_SYMBOL(rtnetlink_put_metrics);
820EXPORT_SYMBOL(rtnl);
821EXPORT_SYMBOL(rtnl_lock);
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800822EXPORT_SYMBOL(rtnl_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823EXPORT_SYMBOL(rtnl_unlock);