blob: 1a6c5b9d41b64d617a00719d4f2f1bb94510b92e [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/timer.h>
25#include <linux/string.h>
26#include <linux/sockios.h>
27#include <linux/net.h>
28#include <linux/fcntl.h>
29#include <linux/mm.h>
30#include <linux/slab.h>
31#include <linux/interrupt.h>
32#include <linux/capability.h>
33#include <linux/skbuff.h>
34#include <linux/init.h>
35#include <linux/security.h>
Stephen Hemminger6756ae42006-03-20 22:23:58 -080036#include <linux/mutex.h>
Thomas Graf18237302006-08-04 23:04:54 -070037#include <linux/if_addr.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 Graf14c0b972006-08-04 03:38:38 -070052#include <net/fib_rules.h>
Thomas Grafe2849862007-03-22 11:48:11 -070053#include <net/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Thomas Grafe2849862007-03-22 11:48:11 -070055struct rtnl_link
56{
57 rtnl_doit_func doit;
58 rtnl_dumpit_func dumpit;
59};
60
Stephen Hemminger6756ae42006-03-20 22:23:58 -080061static DEFINE_MUTEX(rtnl_mutex);
Thomas Graf56fc85a2006-08-15 00:37:29 -070062static struct sock *rtnl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64void rtnl_lock(void)
65{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080066 mutex_lock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
Stephen Hemminger6756ae42006-03-20 22:23:58 -080069void __rtnl_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080071 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
Stephen Hemminger6756ae42006-03-20 22:23:58 -080073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074void rtnl_unlock(void)
75{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080076 mutex_unlock(&rtnl_mutex);
77 if (rtnl && rtnl->sk_receive_queue.qlen)
78 rtnl->sk_data_ready(rtnl, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 netdev_run_todo();
80}
81
Stephen Hemminger6756ae42006-03-20 22:23:58 -080082int rtnl_trylock(void)
83{
84 return mutex_trylock(&rtnl_mutex);
85}
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087int rtattr_parse(struct rtattr *tb[], int maxattr, struct rtattr *rta, int len)
88{
89 memset(tb, 0, sizeof(struct rtattr*)*maxattr);
90
91 while (RTA_OK(rta, len)) {
92 unsigned flavor = rta->rta_type;
93 if (flavor && flavor <= maxattr)
94 tb[flavor-1] = rta;
95 rta = RTA_NEXT(rta, len);
96 }
97 return 0;
98}
99
Adrian Bunk42bad1d2007-04-26 00:57:41 -0700100static struct rtnl_link *rtnl_msg_handlers[NPROTO];
Thomas Grafe2849862007-03-22 11:48:11 -0700101
102static inline int rtm_msgindex(int msgtype)
103{
104 int msgindex = msgtype - RTM_BASE;
105
106 /*
107 * msgindex < 0 implies someone tried to register a netlink
108 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
109 * the message type has not been added to linux/rtnetlink.h
110 */
111 BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
112
113 return msgindex;
114}
115
116static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
117{
118 struct rtnl_link *tab;
119
120 tab = rtnl_msg_handlers[protocol];
Thomas Graf51057f22007-03-22 21:41:06 -0700121 if (tab == NULL || tab[msgindex].doit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700122 tab = rtnl_msg_handlers[PF_UNSPEC];
123
Thomas Graf51057f22007-03-22 21:41:06 -0700124 return tab ? tab[msgindex].doit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700125}
126
127static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
128{
129 struct rtnl_link *tab;
130
131 tab = rtnl_msg_handlers[protocol];
Thomas Graf51057f22007-03-22 21:41:06 -0700132 if (tab == NULL || tab[msgindex].dumpit == NULL)
Thomas Grafe2849862007-03-22 11:48:11 -0700133 tab = rtnl_msg_handlers[PF_UNSPEC];
134
Thomas Graf51057f22007-03-22 21:41:06 -0700135 return tab ? tab[msgindex].dumpit : NULL;
Thomas Grafe2849862007-03-22 11:48:11 -0700136}
137
138/**
139 * __rtnl_register - Register a rtnetlink message type
140 * @protocol: Protocol family or PF_UNSPEC
141 * @msgtype: rtnetlink message type
142 * @doit: Function pointer called for each request message
143 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
144 *
145 * Registers the specified function pointers (at least one of them has
146 * to be non-NULL) to be called whenever a request message for the
147 * specified protocol family and message type is received.
148 *
149 * The special protocol family PF_UNSPEC may be used to define fallback
150 * function pointers for the case when no entry for the specific protocol
151 * family exists.
152 *
153 * Returns 0 on success or a negative error code.
154 */
155int __rtnl_register(int protocol, int msgtype,
156 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
157{
158 struct rtnl_link *tab;
159 int msgindex;
160
161 BUG_ON(protocol < 0 || protocol >= NPROTO);
162 msgindex = rtm_msgindex(msgtype);
163
164 tab = rtnl_msg_handlers[protocol];
165 if (tab == NULL) {
166 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
167 if (tab == NULL)
168 return -ENOBUFS;
169
170 rtnl_msg_handlers[protocol] = tab;
171 }
172
173 if (doit)
174 tab[msgindex].doit = doit;
175
176 if (dumpit)
177 tab[msgindex].dumpit = dumpit;
178
179 return 0;
180}
181
182EXPORT_SYMBOL_GPL(__rtnl_register);
183
184/**
185 * rtnl_register - Register a rtnetlink message type
186 *
187 * Identical to __rtnl_register() but panics on failure. This is useful
188 * as failure of this function is very unlikely, it can only happen due
189 * to lack of memory when allocating the chain to store all message
190 * handlers for a protocol. Meant for use in init functions where lack
191 * of memory implies no sense in continueing.
192 */
193void rtnl_register(int protocol, int msgtype,
194 rtnl_doit_func doit, rtnl_dumpit_func dumpit)
195{
196 if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0)
197 panic("Unable to register rtnetlink message handler, "
198 "protocol = %d, message type = %d\n",
199 protocol, msgtype);
200}
201
202EXPORT_SYMBOL_GPL(rtnl_register);
203
204/**
205 * rtnl_unregister - Unregister a rtnetlink message type
206 * @protocol: Protocol family or PF_UNSPEC
207 * @msgtype: rtnetlink message type
208 *
209 * Returns 0 on success or a negative error code.
210 */
211int rtnl_unregister(int protocol, int msgtype)
212{
213 int msgindex;
214
215 BUG_ON(protocol < 0 || protocol >= NPROTO);
216 msgindex = rtm_msgindex(msgtype);
217
218 if (rtnl_msg_handlers[protocol] == NULL)
219 return -ENOENT;
220
221 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
222 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
223
224 return 0;
225}
226
227EXPORT_SYMBOL_GPL(rtnl_unregister);
228
229/**
230 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
231 * @protocol : Protocol family or PF_UNSPEC
232 *
233 * Identical to calling rtnl_unregster() for all registered message types
234 * of a certain protocol family.
235 */
236void rtnl_unregister_all(int protocol)
237{
238 BUG_ON(protocol < 0 || protocol >= NPROTO);
239
240 kfree(rtnl_msg_handlers[protocol]);
241 rtnl_msg_handlers[protocol] = NULL;
242}
243
244EXPORT_SYMBOL_GPL(rtnl_unregister_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Thomas Grafdb46edc2005-05-03 14:29:39 -0700246static const int rtm_min[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Thomas Graff90a0a72005-05-03 14:29:00 -0700248 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
249 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
250 [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)),
Thomas Graf14c0b972006-08-04 03:38:38 -0700251 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700252 [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
253 [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
254 [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)),
255 [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700256 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
257 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258};
259
Thomas Grafdb46edc2005-05-03 14:29:39 -0700260static const int rta_max[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Thomas Graff90a0a72005-05-03 14:29:00 -0700262 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
263 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
264 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
Thomas Graf14c0b972006-08-04 03:38:38 -0700265 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
Thomas Graff90a0a72005-05-03 14:29:00 -0700266 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
267 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
268 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
269 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270};
271
272void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
273{
274 struct rtattr *rta;
275 int size = RTA_LENGTH(attrlen);
276
277 rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
278 rta->rta_type = attrtype;
279 rta->rta_len = size;
280 memcpy(RTA_DATA(rta), data, attrlen);
Patrick McHardyb3563c42005-06-28 12:54:43 -0700281 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
284size_t rtattr_strlcpy(char *dest, const struct rtattr *rta, size_t size)
285{
286 size_t ret = RTA_PAYLOAD(rta);
287 char *src = RTA_DATA(rta);
288
289 if (ret > 0 && src[ret - 1] == '\0')
290 ret--;
291 if (size > 0) {
292 size_t len = (ret >= size) ? size - 1 : ret;
293 memset(dest, 0, size);
294 memcpy(dest, src, len);
295 }
296 return ret;
297}
298
299int rtnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo)
300{
301 int err = 0;
302
Patrick McHardyac6d4392005-08-14 19:29:52 -0700303 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (echo)
305 atomic_inc(&skb->users);
306 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
307 if (echo)
308 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
309 return err;
310}
311
Thomas Graf2942e902006-08-15 00:30:25 -0700312int rtnl_unicast(struct sk_buff *skb, u32 pid)
313{
314 return nlmsg_unicast(rtnl, skb, pid);
315}
316
Thomas Graf97676b62006-08-15 00:31:41 -0700317int rtnl_notify(struct sk_buff *skb, u32 pid, u32 group,
318 struct nlmsghdr *nlh, gfp_t flags)
319{
320 int report = 0;
321
322 if (nlh)
323 report = nlmsg_report(nlh);
324
325 return nlmsg_notify(rtnl, skb, pid, group, report, flags);
326}
327
328void rtnl_set_sk_err(u32 group, int error)
329{
330 netlink_set_err(rtnl, 0, group, error);
331}
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
334{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700335 struct nlattr *mx;
336 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Thomas Graf2d7202b2006-08-22 00:01:27 -0700338 mx = nla_nest_start(skb, RTA_METRICS);
339 if (mx == NULL)
340 return -ENOBUFS;
341
342 for (i = 0; i < RTAX_MAX; i++) {
343 if (metrics[i]) {
344 valid++;
345 NLA_PUT_U32(skb, i+1, metrics[i]);
346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
David S. Millera57d27f2006-08-22 22:20:14 -0700349 if (!valid) {
350 nla_nest_cancel(skb, mx);
351 return 0;
352 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700353
354 return nla_nest_end(skb, mx);
355
356nla_put_failure:
357 return nla_nest_cancel(skb, mx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
Thomas Grafe3703b32006-11-27 09:27:07 -0800360int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
361 u32 ts, u32 tsage, long expires, u32 error)
362{
363 struct rta_cacheinfo ci = {
364 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
365 .rta_used = dst->__use,
366 .rta_clntref = atomic_read(&(dst->__refcnt)),
367 .rta_error = error,
368 .rta_id = id,
369 .rta_ts = ts,
370 .rta_tsage = tsage,
371 };
372
373 if (expires)
374 ci.rta_expires = jiffies_to_clock_t(expires);
375
376 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
377}
378
379EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Stefan Rompfb00055a2006-03-20 17:09:11 -0800381static void set_operstate(struct net_device *dev, unsigned char transition)
382{
383 unsigned char operstate = dev->operstate;
384
385 switch(transition) {
386 case IF_OPER_UP:
387 if ((operstate == IF_OPER_DORMANT ||
388 operstate == IF_OPER_UNKNOWN) &&
389 !netif_dormant(dev))
390 operstate = IF_OPER_UP;
391 break;
392
393 case IF_OPER_DORMANT:
394 if (operstate == IF_OPER_UP ||
395 operstate == IF_OPER_UNKNOWN)
396 operstate = IF_OPER_DORMANT;
397 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700398 }
Stefan Rompfb00055a2006-03-20 17:09:11 -0800399
400 if (dev->operstate != operstate) {
401 write_lock_bh(&dev_base_lock);
402 dev->operstate = operstate;
403 write_unlock_bh(&dev_base_lock);
404 netdev_state_change(dev);
405 }
406}
407
Thomas Grafb60c5112006-08-04 23:05:34 -0700408static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
409 struct net_device_stats *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Thomas Grafb60c5112006-08-04 23:05:34 -0700411 a->rx_packets = b->rx_packets;
412 a->tx_packets = b->tx_packets;
413 a->rx_bytes = b->rx_bytes;
414 a->tx_bytes = b->tx_bytes;
415 a->rx_errors = b->rx_errors;
416 a->tx_errors = b->tx_errors;
417 a->rx_dropped = b->rx_dropped;
418 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Thomas Grafb60c5112006-08-04 23:05:34 -0700420 a->multicast = b->multicast;
421 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Thomas Grafb60c5112006-08-04 23:05:34 -0700423 a->rx_length_errors = b->rx_length_errors;
424 a->rx_over_errors = b->rx_over_errors;
425 a->rx_crc_errors = b->rx_crc_errors;
426 a->rx_frame_errors = b->rx_frame_errors;
427 a->rx_fifo_errors = b->rx_fifo_errors;
428 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Thomas Grafb60c5112006-08-04 23:05:34 -0700430 a->tx_aborted_errors = b->tx_aborted_errors;
431 a->tx_carrier_errors = b->tx_carrier_errors;
432 a->tx_fifo_errors = b->tx_fifo_errors;
433 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
434 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Thomas Grafb60c5112006-08-04 23:05:34 -0700436 a->rx_compressed = b->rx_compressed;
437 a->tx_compressed = b->tx_compressed;
438};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Thomas Graf339bf982006-11-10 14:10:15 -0800440static inline size_t if_nlmsg_size(int iwbuflen)
441{
442 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
443 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
444 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
445 + nla_total_size(sizeof(struct rtnl_link_ifmap))
446 + nla_total_size(sizeof(struct rtnl_link_stats))
447 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
448 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
449 + nla_total_size(4) /* IFLA_TXQLEN */
450 + nla_total_size(4) /* IFLA_WEIGHT */
451 + nla_total_size(4) /* IFLA_MTU */
452 + nla_total_size(4) /* IFLA_LINK */
453 + nla_total_size(4) /* IFLA_MASTER */
454 + nla_total_size(1) /* IFLA_OPERSTATE */
455 + nla_total_size(1) /* IFLA_LINKMODE */
456 + nla_total_size(iwbuflen);
457}
458
Thomas Grafb60c5112006-08-04 23:05:34 -0700459static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
460 void *iwbuf, int iwbuflen, int type, u32 pid,
461 u32 seq, u32 change, unsigned int flags)
462{
463 struct ifinfomsg *ifm;
464 struct nlmsghdr *nlh;
465
466 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
467 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800468 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700469
470 ifm = nlmsg_data(nlh);
471 ifm->ifi_family = AF_UNSPEC;
472 ifm->__ifi_pad = 0;
473 ifm->ifi_type = dev->type;
474 ifm->ifi_index = dev->ifindex;
475 ifm->ifi_flags = dev_get_flags(dev);
476 ifm->ifi_change = change;
477
478 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
479 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
480 NLA_PUT_U32(skb, IFLA_WEIGHT, dev->weight);
481 NLA_PUT_U8(skb, IFLA_OPERSTATE,
482 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
483 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
484 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
485
486 if (dev->ifindex != dev->iflink)
487 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
488
489 if (dev->master)
490 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
491
492 if (dev->qdisc_sleeping)
493 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc_sleeping->ops->id);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800494
495 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 struct rtnl_link_ifmap map = {
497 .mem_start = dev->mem_start,
498 .mem_end = dev->mem_end,
499 .base_addr = dev->base_addr,
500 .irq = dev->irq,
501 .dma = dev->dma,
502 .port = dev->if_port,
503 };
Thomas Grafb60c5112006-08-04 23:05:34 -0700504 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
507 if (dev->addr_len) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700508 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
509 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511
512 if (dev->get_stats) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700513 struct net_device_stats *stats = dev->get_stats(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (stats) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700515 struct nlattr *attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Thomas Grafb60c5112006-08-04 23:05:34 -0700517 attr = nla_reserve(skb, IFLA_STATS,
518 sizeof(struct rtnl_link_stats));
519 if (attr == NULL)
520 goto nla_put_failure;
521
522 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Thomas Grafb60c5112006-08-04 23:05:34 -0700526 if (iwbuf)
527 NLA_PUT(skb, IFLA_WIRELESS, iwbuflen, iwbuf);
528
529 return nlmsg_end(skb, nlh);
530
531nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800532 nlmsg_cancel(skb, nlh);
533 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Thomas Grafb60c5112006-08-04 23:05:34 -0700536static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 int idx;
539 int s_idx = cb->args[0];
540 struct net_device *dev;
541
Pavel Emelianov7562f872007-05-03 15:13:45 -0700542 idx = 0;
543 for_each_netdev(dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (idx < s_idx)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700545 goto cont;
Thomas Grafb60c5112006-08-04 23:05:34 -0700546 if (rtnl_fill_ifinfo(skb, dev, NULL, 0, RTM_NEWLINK,
547 NETLINK_CB(cb->skb).pid,
548 cb->nlh->nlmsg_seq, 0, NLM_F_MULTI) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 break;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700550cont:
551 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 cb->args[0] = idx;
554
555 return skb->len;
556}
557
Thomas Grafda5e0492006-08-10 21:17:37 -0700558static struct nla_policy ifla_policy[IFLA_MAX+1] __read_mostly = {
Thomas Graf5176f912006-08-26 20:13:18 -0700559 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
560 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -0700561 [IFLA_MTU] = { .type = NLA_U32 },
562 [IFLA_TXQLEN] = { .type = NLA_U32 },
563 [IFLA_WEIGHT] = { .type = NLA_U32 },
564 [IFLA_OPERSTATE] = { .type = NLA_U8 },
565 [IFLA_LINKMODE] = { .type = NLA_U8 },
566};
567
568static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Thomas Grafda5e0492006-08-10 21:17:37 -0700570 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 struct net_device *dev;
Thomas Grafda5e0492006-08-10 21:17:37 -0700572 int err, send_addr_notify = 0, modified = 0;
573 struct nlattr *tb[IFLA_MAX+1];
574 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Thomas Grafda5e0492006-08-10 21:17:37 -0700576 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
577 if (err < 0)
578 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Thomas Graf5176f912006-08-26 20:13:18 -0700580 if (tb[IFLA_IFNAME])
581 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -0700582 else
583 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -0700586 ifm = nlmsg_data(nlh);
587 if (ifm->ifi_index >= 0)
588 dev = dev_get_by_index(ifm->ifi_index);
589 else if (tb[IFLA_IFNAME])
590 dev = dev_get_by_name(ifname);
591 else
592 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Thomas Grafda5e0492006-08-10 21:17:37 -0700594 if (dev == NULL) {
595 err = -ENODEV;
596 goto errout;
597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Thomas Grafda5e0492006-08-10 21:17:37 -0700599 if (tb[IFLA_ADDRESS] &&
600 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
601 goto errout_dev;
602
603 if (tb[IFLA_BROADCAST] &&
604 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
605 goto errout_dev;
606
607 if (tb[IFLA_MAP]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 struct rtnl_link_ifmap *u_map;
609 struct ifmap k_map;
610
611 if (!dev->set_config) {
612 err = -EOPNOTSUPP;
Thomas Grafda5e0492006-08-10 21:17:37 -0700613 goto errout_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615
616 if (!netif_device_present(dev)) {
617 err = -ENODEV;
Thomas Grafda5e0492006-08-10 21:17:37 -0700618 goto errout_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Thomas Grafda5e0492006-08-10 21:17:37 -0700621 u_map = nla_data(tb[IFLA_MAP]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 k_map.mem_start = (unsigned long) u_map->mem_start;
623 k_map.mem_end = (unsigned long) u_map->mem_end;
624 k_map.base_addr = (unsigned short) u_map->base_addr;
625 k_map.irq = (unsigned char) u_map->irq;
626 k_map.dma = (unsigned char) u_map->dma;
627 k_map.port = (unsigned char) u_map->port;
628
629 err = dev->set_config(dev, &k_map);
Thomas Grafda5e0492006-08-10 21:17:37 -0700630 if (err < 0)
631 goto errout_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Thomas Grafda5e0492006-08-10 21:17:37 -0700633 modified = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635
Thomas Grafda5e0492006-08-10 21:17:37 -0700636 if (tb[IFLA_ADDRESS]) {
David S. Miller70f8e782006-08-08 16:47:37 -0700637 struct sockaddr *sa;
638 int len;
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (!dev->set_mac_address) {
641 err = -EOPNOTSUPP;
Thomas Grafda5e0492006-08-10 21:17:37 -0700642 goto errout_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
Thomas Grafda5e0492006-08-10 21:17:37 -0700644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (!netif_device_present(dev)) {
646 err = -ENODEV;
Thomas Grafda5e0492006-08-10 21:17:37 -0700647 goto errout_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
David S. Miller70f8e782006-08-08 16:47:37 -0700650 len = sizeof(sa_family_t) + dev->addr_len;
651 sa = kmalloc(len, GFP_KERNEL);
652 if (!sa) {
653 err = -ENOMEM;
Thomas Grafda5e0492006-08-10 21:17:37 -0700654 goto errout_dev;
David S. Miller70f8e782006-08-08 16:47:37 -0700655 }
656 sa->sa_family = dev->type;
Thomas Grafda5e0492006-08-10 21:17:37 -0700657 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
David S. Miller70f8e782006-08-08 16:47:37 -0700658 dev->addr_len);
659 err = dev->set_mac_address(dev, sa);
660 kfree(sa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 if (err)
Thomas Grafda5e0492006-08-10 21:17:37 -0700662 goto errout_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 send_addr_notify = 1;
Thomas Grafda5e0492006-08-10 21:17:37 -0700664 modified = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666
Thomas Grafda5e0492006-08-10 21:17:37 -0700667 if (tb[IFLA_MTU]) {
668 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
669 if (err < 0)
670 goto errout_dev;
671 modified = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
673
Thomas Grafda5e0492006-08-10 21:17:37 -0700674 /*
675 * Interface selected by interface index but interface
676 * name provided implies that a name change has been
677 * requested.
678 */
679 if (ifm->ifi_index >= 0 && ifname[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 err = dev_change_name(dev, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -0700681 if (err < 0)
682 goto errout_dev;
683 modified = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685
Thomas Grafda5e0492006-08-10 21:17:37 -0700686 if (tb[IFLA_BROADCAST]) {
687 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
688 send_addr_notify = 1;
689 }
690
691
Patrick McHardy83b496e2007-05-22 17:00:01 -0700692 if (ifm->ifi_flags || ifm->ifi_change) {
693 unsigned int flags = ifm->ifi_flags;
694
695 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
696 if (ifm->ifi_change)
697 flags = (flags & ifm->ifi_change) |
698 (dev->flags & ~ifm->ifi_change);
699 dev_change_flags(dev, flags);
700 }
Thomas Grafda5e0492006-08-10 21:17:37 -0700701
702 if (tb[IFLA_TXQLEN])
703 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
704
705 if (tb[IFLA_WEIGHT])
706 dev->weight = nla_get_u32(tb[IFLA_WEIGHT]);
707
708 if (tb[IFLA_OPERSTATE])
709 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
710
711 if (tb[IFLA_LINKMODE]) {
712 write_lock_bh(&dev_base_lock);
713 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
714 write_unlock_bh(&dev_base_lock);
715 }
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 err = 0;
718
Thomas Grafda5e0492006-08-10 21:17:37 -0700719errout_dev:
720 if (err < 0 && modified && net_ratelimit())
721 printk(KERN_WARNING "A link change request failed with "
722 "some changes comitted already. Interface %s may "
723 "have been left with an inconsistent configuration, "
724 "please check.\n", dev->name);
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (send_addr_notify)
727 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
728
729 dev_put(dev);
Thomas Grafda5e0492006-08-10 21:17:37 -0700730errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return err;
732}
733
Thomas Grafb60c5112006-08-04 23:05:34 -0700734static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800735{
Thomas Grafb60c5112006-08-04 23:05:34 -0700736 struct ifinfomsg *ifm;
737 struct nlattr *tb[IFLA_MAX+1];
738 struct net_device *dev = NULL;
739 struct sk_buff *nskb;
740 char *iw_buf = NULL, *iw = NULL;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800741 int iw_buf_len = 0;
Thomas Graf339bf982006-11-10 14:10:15 -0800742 int err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800743
Thomas Grafb60c5112006-08-04 23:05:34 -0700744 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
745 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -0700746 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -0700747
748 ifm = nlmsg_data(nlh);
749 if (ifm->ifi_index >= 0) {
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800750 dev = dev_get_by_index(ifm->ifi_index);
Thomas Grafb60c5112006-08-04 23:05:34 -0700751 if (dev == NULL)
752 return -ENODEV;
753 } else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800754 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -0700755
Thomas Graf339bf982006-11-10 14:10:15 -0800756 nskb = nlmsg_new(if_nlmsg_size(iw_buf_len), GFP_KERNEL);
Thomas Grafb60c5112006-08-04 23:05:34 -0700757 if (nskb == NULL) {
758 err = -ENOBUFS;
759 goto errout;
760 }
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800761
Thomas Grafb60c5112006-08-04 23:05:34 -0700762 err = rtnl_fill_ifinfo(nskb, dev, iw, iw_buf_len, RTM_NEWLINK,
763 NETLINK_CB(skb).pid, nlh->nlmsg_seq, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -0800764 if (err < 0) {
765 /* -EMSGSIZE implies BUG in if_nlmsg_size */
766 WARN_ON(err == -EMSGSIZE);
767 kfree_skb(nskb);
768 goto errout;
769 }
Patrick McHardyb9741792006-10-12 01:50:30 -0700770 err = rtnl_unicast(nskb, NETLINK_CB(skb).pid);
Thomas Grafb60c5112006-08-04 23:05:34 -0700771errout:
772 kfree(iw_buf);
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800773 dev_put(dev);
Thomas Grafb60c5112006-08-04 23:05:34 -0700774
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800775 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800776}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800777
Adrian Bunk42bad1d2007-04-26 00:57:41 -0700778static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 int idx;
781 int s_idx = cb->family;
782
783 if (s_idx == 0)
784 s_idx = 1;
785 for (idx=1; idx<NPROTO; idx++) {
786 int type = cb->nlh->nlmsg_type-RTM_BASE;
787 if (idx < s_idx || idx == PF_PACKET)
788 continue;
Thomas Grafe2849862007-03-22 11:48:11 -0700789 if (rtnl_msg_handlers[idx] == NULL ||
790 rtnl_msg_handlers[idx][type].dumpit == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 continue;
792 if (idx > s_idx)
793 memset(&cb->args[0], 0, sizeof(cb->args));
Thomas Grafe2849862007-03-22 11:48:11 -0700794 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 break;
796 }
797 cb->family = idx;
798
799 return skb->len;
800}
801
802void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
803{
804 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -0700805 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Thomas Graf339bf982006-11-10 14:10:15 -0800807 skb = nlmsg_new(if_nlmsg_size(0), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -0700808 if (skb == NULL)
809 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Thomas Graf0ec6d3f2006-08-15 00:37:09 -0700811 err = rtnl_fill_ifinfo(skb, dev, NULL, 0, type, 0, 0, change, 0);
Patrick McHardy26932562007-01-31 23:16:40 -0800812 if (err < 0) {
813 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
814 WARN_ON(err == -EMSGSIZE);
815 kfree_skb(skb);
816 goto errout;
817 }
Thomas Graf0ec6d3f2006-08-15 00:37:09 -0700818 err = rtnl_notify(skb, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
819errout:
820 if (err < 0)
821 rtnl_set_sk_err(RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824/* Protected by RTNL sempahore. */
825static struct rtattr **rta_buf;
826static int rtattr_max;
827
828/* Process one rtnetlink message. */
829
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700830static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Thomas Grafe2849862007-03-22 11:48:11 -0700832 rtnl_doit_func doit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 int sz_idx, kind;
834 int min_len;
835 int family;
836 int type;
Patrick McHardy1c2d6702007-04-16 16:59:10 -0700837 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (type > RTM_MAX)
Thomas Graf038890f2007-04-05 14:35:52 -0700841 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 type -= RTM_BASE;
844
845 /* All the messages must have at least 1 byte length */
846 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
847 return 0;
848
849 family = ((struct rtgenmsg*)NLMSG_DATA(nlh))->rtgen_family;
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700850 if (family >= NPROTO)
851 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 sz_idx = type>>2;
854 kind = type&3;
855
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700856 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
857 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Thomas Grafe2849862007-03-22 11:48:11 -0700860 rtnl_dumpit_func dumpit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Thomas Grafe2849862007-03-22 11:48:11 -0700862 dumpit = rtnl_get_dumpit(family, type);
863 if (dumpit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -0700864 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Patrick McHardy1c2d6702007-04-16 16:59:10 -0700866 __rtnl_unlock();
867 err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL);
868 rtnl_lock();
869 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
871
872 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
873
874 min_len = rtm_min[sz_idx];
875 if (nlh->nlmsg_len < min_len)
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700876 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 if (nlh->nlmsg_len > min_len) {
879 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
880 struct rtattr *attr = (void*)nlh + NLMSG_ALIGN(min_len);
881
882 while (RTA_OK(attr, attrlen)) {
883 unsigned flavor = attr->rta_type;
884 if (flavor) {
885 if (flavor > rta_max[sz_idx])
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700886 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 rta_buf[flavor-1] = attr;
888 }
889 attr = RTA_NEXT(attr, attrlen);
890 }
891 }
892
Thomas Grafe2849862007-03-22 11:48:11 -0700893 doit = rtnl_get_doit(family, type);
894 if (doit == NULL)
Thomas Graf038890f2007-04-05 14:35:52 -0700895 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700897 return doit(skb, nlh, (void *)&rta_buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900static void rtnetlink_rcv(struct sock *sk, int len)
901{
Thomas Graf9ac4a162005-11-10 02:25:55 +0100902 unsigned int qlen = 0;
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 do {
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800905 mutex_lock(&rtnl_mutex);
Thomas Graf9ac4a162005-11-10 02:25:55 +0100906 netlink_run_queue(sk, &qlen, &rtnetlink_rcv_msg);
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800907 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 netdev_run_todo();
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700910 } while (qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
914{
915 struct net_device *dev = ptr;
916 switch (event) {
917 case NETDEV_UNREGISTER:
918 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
919 break;
920 case NETDEV_REGISTER:
921 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
922 break;
923 case NETDEV_UP:
924 case NETDEV_DOWN:
925 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
926 break;
927 case NETDEV_CHANGE:
928 case NETDEV_GOING_DOWN:
929 break;
930 default:
931 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
932 break;
933 }
934 return NOTIFY_DONE;
935}
936
937static struct notifier_block rtnetlink_dev_notifier = {
938 .notifier_call = rtnetlink_event,
939};
940
941void __init rtnetlink_init(void)
942{
943 int i;
944
945 rtattr_max = 0;
946 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
947 if (rta_max[i] > rtattr_max)
948 rtattr_max = rta_max[i];
949 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
950 if (!rta_buf)
951 panic("rtnetlink_init: cannot allocate rta_buf\n");
952
Patrick McHardy06628602005-08-15 12:33:26 -0700953 rtnl = netlink_kernel_create(NETLINK_ROUTE, RTNLGRP_MAX, rtnetlink_rcv,
Patrick McHardy1c2d6702007-04-16 16:59:10 -0700954 &rtnl_mutex, THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (rtnl == NULL)
956 panic("rtnetlink_init: cannot initialize rtnetlink\n");
957 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
958 register_netdevice_notifier(&rtnetlink_dev_notifier);
Thomas Graf340d17f2007-03-22 11:49:22 -0700959
960 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo);
961 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL);
Thomas Graf687ad8c2007-03-22 11:59:42 -0700962
963 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all);
964 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
967EXPORT_SYMBOL(__rta_fill);
968EXPORT_SYMBOL(rtattr_strlcpy);
969EXPORT_SYMBOL(rtattr_parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971EXPORT_SYMBOL(rtnl_lock);
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800972EXPORT_SYMBOL(rtnl_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973EXPORT_SYMBOL(rtnl_unlock);
Thomas Graf2942e902006-08-15 00:30:25 -0700974EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf97676b62006-08-15 00:31:41 -0700975EXPORT_SYMBOL(rtnl_notify);
976EXPORT_SYMBOL(rtnl_set_sk_err);