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