blob: 9bf9ae05f1571ed5a474b06749cbdb8b743a4d4d [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>
Thomas Graf18237302006-08-04 23:04:54 -070038#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
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>
Thomas Graf14c0b972006-08-04 03:38:38 -070053#include <net/fib_rules.h>
Thomas Graf9ac4a162005-11-10 02:25:55 +010054#include <net/netlink.h>
Jean Tourrilhes711e2c32006-02-22 15:10:56 -080055#ifdef CONFIG_NET_WIRELESS_RTNETLINK
56#include <linux/wireless.h>
57#include <net/iw_handler.h>
58#endif /* CONFIG_NET_WIRELESS_RTNETLINK */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Stephen Hemminger6756ae42006-03-20 22:23:58 -080060static DEFINE_MUTEX(rtnl_mutex);
Thomas Graf56fc85a2006-08-15 00:37:29 -070061static struct sock *rtnl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63void rtnl_lock(void)
64{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080065 mutex_lock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
Stephen Hemminger6756ae42006-03-20 22:23:58 -080068void __rtnl_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080070 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
Stephen Hemminger6756ae42006-03-20 22:23:58 -080072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073void rtnl_unlock(void)
74{
Stephen Hemminger6756ae42006-03-20 22:23:58 -080075 mutex_unlock(&rtnl_mutex);
76 if (rtnl && rtnl->sk_receive_queue.qlen)
77 rtnl->sk_data_ready(rtnl, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 netdev_run_todo();
79}
80
Stephen Hemminger6756ae42006-03-20 22:23:58 -080081int rtnl_trylock(void)
82{
83 return mutex_trylock(&rtnl_mutex);
84}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086int 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070099struct rtnetlink_link * rtnetlink_links[NPROTO];
100
Thomas Grafdb46edc2005-05-03 14:29:39 -0700101static const int rtm_min[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Thomas Graff90a0a72005-05-03 14:29:00 -0700103 [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)),
Thomas Graf14c0b972006-08-04 03:38:38 -0700106 [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700107 [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)),
Thomas Graff90a0a72005-05-03 14:29:00 -0700111 [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
112 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113};
114
Thomas Grafdb46edc2005-05-03 14:29:39 -0700115static const int rta_max[RTM_NR_FAMILIES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Thomas Graff90a0a72005-05-03 14:29:00 -0700117 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
118 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
119 [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX,
Thomas Graf14c0b972006-08-04 03:38:38 -0700120 [RTM_FAM(RTM_NEWRULE)] = FRA_MAX,
Thomas Graff90a0a72005-05-03 14:29:00 -0700121 [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX,
122 [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX,
123 [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX,
124 [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
127void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data)
128{
129 struct rtattr *rta;
130 int size = RTA_LENGTH(attrlen);
131
132 rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
133 rta->rta_type = attrtype;
134 rta->rta_len = size;
135 memcpy(RTA_DATA(rta), data, attrlen);
Patrick McHardyb3563c42005-06-28 12:54:43 -0700136 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
139size_t rtattr_strlcpy(char *dest, const struct rtattr *rta, size_t size)
140{
141 size_t ret = RTA_PAYLOAD(rta);
142 char *src = RTA_DATA(rta);
143
144 if (ret > 0 && src[ret - 1] == '\0')
145 ret--;
146 if (size > 0) {
147 size_t len = (ret >= size) ? size - 1 : ret;
148 memset(dest, 0, size);
149 memcpy(dest, src, len);
150 }
151 return ret;
152}
153
154int rtnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo)
155{
156 int err = 0;
157
Patrick McHardyac6d4392005-08-14 19:29:52 -0700158 NETLINK_CB(skb).dst_group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (echo)
160 atomic_inc(&skb->users);
161 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
162 if (echo)
163 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
164 return err;
165}
166
Thomas Graf2942e902006-08-15 00:30:25 -0700167int rtnl_unicast(struct sk_buff *skb, u32 pid)
168{
169 return nlmsg_unicast(rtnl, skb, pid);
170}
171
Thomas Graf97676b62006-08-15 00:31:41 -0700172int rtnl_notify(struct sk_buff *skb, u32 pid, u32 group,
173 struct nlmsghdr *nlh, gfp_t flags)
174{
175 int report = 0;
176
177 if (nlh)
178 report = nlmsg_report(nlh);
179
180 return nlmsg_notify(rtnl, skb, pid, group, report, flags);
181}
182
183void rtnl_set_sk_err(u32 group, int error)
184{
185 netlink_set_err(rtnl, 0, group, error);
186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
189{
Thomas Graf2d7202b2006-08-22 00:01:27 -0700190 struct nlattr *mx;
191 int i, valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Thomas Graf2d7202b2006-08-22 00:01:27 -0700193 mx = nla_nest_start(skb, RTA_METRICS);
194 if (mx == NULL)
195 return -ENOBUFS;
196
197 for (i = 0; i < RTAX_MAX; i++) {
198 if (metrics[i]) {
199 valid++;
200 NLA_PUT_U32(skb, i+1, metrics[i]);
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
David S. Millera57d27f2006-08-22 22:20:14 -0700204 if (!valid) {
205 nla_nest_cancel(skb, mx);
206 return 0;
207 }
Thomas Graf2d7202b2006-08-22 00:01:27 -0700208
209 return nla_nest_end(skb, mx);
210
211nla_put_failure:
212 return nla_nest_cancel(skb, mx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
Thomas Grafe3703b32006-11-27 09:27:07 -0800215int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
216 u32 ts, u32 tsage, long expires, u32 error)
217{
218 struct rta_cacheinfo ci = {
219 .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse),
220 .rta_used = dst->__use,
221 .rta_clntref = atomic_read(&(dst->__refcnt)),
222 .rta_error = error,
223 .rta_id = id,
224 .rta_ts = ts,
225 .rta_tsage = tsage,
226 };
227
228 if (expires)
229 ci.rta_expires = jiffies_to_clock_t(expires);
230
231 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
232}
233
234EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Stefan Rompfb00055a2006-03-20 17:09:11 -0800236static void set_operstate(struct net_device *dev, unsigned char transition)
237{
238 unsigned char operstate = dev->operstate;
239
240 switch(transition) {
241 case IF_OPER_UP:
242 if ((operstate == IF_OPER_DORMANT ||
243 operstate == IF_OPER_UNKNOWN) &&
244 !netif_dormant(dev))
245 operstate = IF_OPER_UP;
246 break;
247
248 case IF_OPER_DORMANT:
249 if (operstate == IF_OPER_UP ||
250 operstate == IF_OPER_UNKNOWN)
251 operstate = IF_OPER_DORMANT;
252 break;
253 };
254
255 if (dev->operstate != operstate) {
256 write_lock_bh(&dev_base_lock);
257 dev->operstate = operstate;
258 write_unlock_bh(&dev_base_lock);
259 netdev_state_change(dev);
260 }
261}
262
Thomas Grafb60c5112006-08-04 23:05:34 -0700263static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
264 struct net_device_stats *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Thomas Grafb60c5112006-08-04 23:05:34 -0700266 a->rx_packets = b->rx_packets;
267 a->tx_packets = b->tx_packets;
268 a->rx_bytes = b->rx_bytes;
269 a->tx_bytes = b->tx_bytes;
270 a->rx_errors = b->rx_errors;
271 a->tx_errors = b->tx_errors;
272 a->rx_dropped = b->rx_dropped;
273 a->tx_dropped = b->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Thomas Grafb60c5112006-08-04 23:05:34 -0700275 a->multicast = b->multicast;
276 a->collisions = b->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Thomas Grafb60c5112006-08-04 23:05:34 -0700278 a->rx_length_errors = b->rx_length_errors;
279 a->rx_over_errors = b->rx_over_errors;
280 a->rx_crc_errors = b->rx_crc_errors;
281 a->rx_frame_errors = b->rx_frame_errors;
282 a->rx_fifo_errors = b->rx_fifo_errors;
283 a->rx_missed_errors = b->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Thomas Grafb60c5112006-08-04 23:05:34 -0700285 a->tx_aborted_errors = b->tx_aborted_errors;
286 a->tx_carrier_errors = b->tx_carrier_errors;
287 a->tx_fifo_errors = b->tx_fifo_errors;
288 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
289 a->tx_window_errors = b->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Thomas Grafb60c5112006-08-04 23:05:34 -0700291 a->rx_compressed = b->rx_compressed;
292 a->tx_compressed = b->tx_compressed;
293};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Thomas Graf339bf982006-11-10 14:10:15 -0800295static inline size_t if_nlmsg_size(int iwbuflen)
296{
297 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
298 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
299 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
300 + nla_total_size(sizeof(struct rtnl_link_ifmap))
301 + nla_total_size(sizeof(struct rtnl_link_stats))
302 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
303 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
304 + nla_total_size(4) /* IFLA_TXQLEN */
305 + nla_total_size(4) /* IFLA_WEIGHT */
306 + nla_total_size(4) /* IFLA_MTU */
307 + nla_total_size(4) /* IFLA_LINK */
308 + nla_total_size(4) /* IFLA_MASTER */
309 + nla_total_size(1) /* IFLA_OPERSTATE */
310 + nla_total_size(1) /* IFLA_LINKMODE */
311 + nla_total_size(iwbuflen);
312}
313
Thomas Grafb60c5112006-08-04 23:05:34 -0700314static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
315 void *iwbuf, int iwbuflen, int type, u32 pid,
316 u32 seq, u32 change, unsigned int flags)
317{
318 struct ifinfomsg *ifm;
319 struct nlmsghdr *nlh;
320
321 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
322 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800323 return -EMSGSIZE;
Thomas Grafb60c5112006-08-04 23:05:34 -0700324
325 ifm = nlmsg_data(nlh);
326 ifm->ifi_family = AF_UNSPEC;
327 ifm->__ifi_pad = 0;
328 ifm->ifi_type = dev->type;
329 ifm->ifi_index = dev->ifindex;
330 ifm->ifi_flags = dev_get_flags(dev);
331 ifm->ifi_change = change;
332
333 NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name);
334 NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len);
335 NLA_PUT_U32(skb, IFLA_WEIGHT, dev->weight);
336 NLA_PUT_U8(skb, IFLA_OPERSTATE,
337 netif_running(dev) ? dev->operstate : IF_OPER_DOWN);
338 NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode);
339 NLA_PUT_U32(skb, IFLA_MTU, dev->mtu);
340
341 if (dev->ifindex != dev->iflink)
342 NLA_PUT_U32(skb, IFLA_LINK, dev->iflink);
343
344 if (dev->master)
345 NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex);
346
347 if (dev->qdisc_sleeping)
348 NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc_sleeping->ops->id);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800349
350 if (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 struct rtnl_link_ifmap map = {
352 .mem_start = dev->mem_start,
353 .mem_end = dev->mem_end,
354 .base_addr = dev->base_addr,
355 .irq = dev->irq,
356 .dma = dev->dma,
357 .port = dev->if_port,
358 };
Thomas Grafb60c5112006-08-04 23:05:34 -0700359 NLA_PUT(skb, IFLA_MAP, sizeof(map), &map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361
362 if (dev->addr_len) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700363 NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr);
364 NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366
367 if (dev->get_stats) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700368 struct net_device_stats *stats = dev->get_stats(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (stats) {
Thomas Grafb60c5112006-08-04 23:05:34 -0700370 struct nlattr *attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Thomas Grafb60c5112006-08-04 23:05:34 -0700372 attr = nla_reserve(skb, IFLA_STATS,
373 sizeof(struct rtnl_link_stats));
374 if (attr == NULL)
375 goto nla_put_failure;
376
377 copy_rtnl_link_stats(nla_data(attr), stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Thomas Grafb60c5112006-08-04 23:05:34 -0700381 if (iwbuf)
382 NLA_PUT(skb, IFLA_WIRELESS, iwbuflen, iwbuf);
383
384 return nlmsg_end(skb, nlh);
385
386nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800387 nlmsg_cancel(skb, nlh);
388 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
Thomas Grafb60c5112006-08-04 23:05:34 -0700391static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 int idx;
394 int s_idx = cb->args[0];
395 struct net_device *dev;
396
397 read_lock(&dev_base_lock);
398 for (dev=dev_base, idx=0; dev; dev = dev->next, idx++) {
399 if (idx < s_idx)
400 continue;
Thomas Grafb60c5112006-08-04 23:05:34 -0700401 if (rtnl_fill_ifinfo(skb, dev, NULL, 0, RTM_NEWLINK,
402 NETLINK_CB(cb->skb).pid,
403 cb->nlh->nlmsg_seq, 0, NLM_F_MULTI) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 break;
405 }
406 read_unlock(&dev_base_lock);
407 cb->args[0] = idx;
408
409 return skb->len;
410}
411
Thomas Grafda5e0492006-08-10 21:17:37 -0700412static struct nla_policy ifla_policy[IFLA_MAX+1] __read_mostly = {
Thomas Graf5176f912006-08-26 20:13:18 -0700413 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
414 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
Thomas Grafda5e0492006-08-10 21:17:37 -0700415 [IFLA_MTU] = { .type = NLA_U32 },
416 [IFLA_TXQLEN] = { .type = NLA_U32 },
417 [IFLA_WEIGHT] = { .type = NLA_U32 },
418 [IFLA_OPERSTATE] = { .type = NLA_U8 },
419 [IFLA_LINKMODE] = { .type = NLA_U8 },
420};
421
422static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Thomas Grafda5e0492006-08-10 21:17:37 -0700424 struct ifinfomsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 struct net_device *dev;
Thomas Grafda5e0492006-08-10 21:17:37 -0700426 int err, send_addr_notify = 0, modified = 0;
427 struct nlattr *tb[IFLA_MAX+1];
428 char ifname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Thomas Grafda5e0492006-08-10 21:17:37 -0700430 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
431 if (err < 0)
432 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Thomas Graf5176f912006-08-26 20:13:18 -0700434 if (tb[IFLA_IFNAME])
435 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
Patrick McHardy78e5b8912006-09-13 20:35:36 -0700436 else
437 ifname[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 err = -EINVAL;
Thomas Grafda5e0492006-08-10 21:17:37 -0700440 ifm = nlmsg_data(nlh);
441 if (ifm->ifi_index >= 0)
442 dev = dev_get_by_index(ifm->ifi_index);
443 else if (tb[IFLA_IFNAME])
444 dev = dev_get_by_name(ifname);
445 else
446 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Thomas Grafda5e0492006-08-10 21:17:37 -0700448 if (dev == NULL) {
449 err = -ENODEV;
450 goto errout;
451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Thomas Grafda5e0492006-08-10 21:17:37 -0700453 if (tb[IFLA_ADDRESS] &&
454 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
455 goto errout_dev;
456
457 if (tb[IFLA_BROADCAST] &&
458 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
459 goto errout_dev;
460
461 if (tb[IFLA_MAP]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 struct rtnl_link_ifmap *u_map;
463 struct ifmap k_map;
464
465 if (!dev->set_config) {
466 err = -EOPNOTSUPP;
Thomas Grafda5e0492006-08-10 21:17:37 -0700467 goto errout_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469
470 if (!netif_device_present(dev)) {
471 err = -ENODEV;
Thomas Grafda5e0492006-08-10 21:17:37 -0700472 goto errout_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Thomas Grafda5e0492006-08-10 21:17:37 -0700475 u_map = nla_data(tb[IFLA_MAP]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 k_map.mem_start = (unsigned long) u_map->mem_start;
477 k_map.mem_end = (unsigned long) u_map->mem_end;
478 k_map.base_addr = (unsigned short) u_map->base_addr;
479 k_map.irq = (unsigned char) u_map->irq;
480 k_map.dma = (unsigned char) u_map->dma;
481 k_map.port = (unsigned char) u_map->port;
482
483 err = dev->set_config(dev, &k_map);
Thomas Grafda5e0492006-08-10 21:17:37 -0700484 if (err < 0)
485 goto errout_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Thomas Grafda5e0492006-08-10 21:17:37 -0700487 modified = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489
Thomas Grafda5e0492006-08-10 21:17:37 -0700490 if (tb[IFLA_ADDRESS]) {
David S. Miller70f8e782006-08-08 16:47:37 -0700491 struct sockaddr *sa;
492 int len;
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (!dev->set_mac_address) {
495 err = -EOPNOTSUPP;
Thomas Grafda5e0492006-08-10 21:17:37 -0700496 goto errout_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
Thomas Grafda5e0492006-08-10 21:17:37 -0700498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (!netif_device_present(dev)) {
500 err = -ENODEV;
Thomas Grafda5e0492006-08-10 21:17:37 -0700501 goto errout_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
David S. Miller70f8e782006-08-08 16:47:37 -0700504 len = sizeof(sa_family_t) + dev->addr_len;
505 sa = kmalloc(len, GFP_KERNEL);
506 if (!sa) {
507 err = -ENOMEM;
Thomas Grafda5e0492006-08-10 21:17:37 -0700508 goto errout_dev;
David S. Miller70f8e782006-08-08 16:47:37 -0700509 }
510 sa->sa_family = dev->type;
Thomas Grafda5e0492006-08-10 21:17:37 -0700511 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
David S. Miller70f8e782006-08-08 16:47:37 -0700512 dev->addr_len);
513 err = dev->set_mac_address(dev, sa);
514 kfree(sa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (err)
Thomas Grafda5e0492006-08-10 21:17:37 -0700516 goto errout_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 send_addr_notify = 1;
Thomas Grafda5e0492006-08-10 21:17:37 -0700518 modified = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520
Thomas Grafda5e0492006-08-10 21:17:37 -0700521 if (tb[IFLA_MTU]) {
522 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
523 if (err < 0)
524 goto errout_dev;
525 modified = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
527
Thomas Grafda5e0492006-08-10 21:17:37 -0700528 /*
529 * Interface selected by interface index but interface
530 * name provided implies that a name change has been
531 * requested.
532 */
533 if (ifm->ifi_index >= 0 && ifname[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 err = dev_change_name(dev, ifname);
Thomas Grafda5e0492006-08-10 21:17:37 -0700535 if (err < 0)
536 goto errout_dev;
537 modified = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
539
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800540#ifdef CONFIG_NET_WIRELESS_RTNETLINK
Thomas Grafda5e0492006-08-10 21:17:37 -0700541 if (tb[IFLA_WIRELESS]) {
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800542 /* Call Wireless Extensions.
543 * Various stuff checked in there... */
Thomas Grafda5e0492006-08-10 21:17:37 -0700544 err = wireless_rtnetlink_set(dev, nla_data(tb[IFLA_WIRELESS]),
545 nla_len(tb[IFLA_WIRELESS]));
546 if (err < 0)
547 goto errout_dev;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800548 }
549#endif /* CONFIG_NET_WIRELESS_RTNETLINK */
550
Thomas Grafda5e0492006-08-10 21:17:37 -0700551 if (tb[IFLA_BROADCAST]) {
552 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
553 send_addr_notify = 1;
554 }
555
556
557 if (ifm->ifi_flags)
558 dev_change_flags(dev, ifm->ifi_flags);
559
560 if (tb[IFLA_TXQLEN])
561 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
562
563 if (tb[IFLA_WEIGHT])
564 dev->weight = nla_get_u32(tb[IFLA_WEIGHT]);
565
566 if (tb[IFLA_OPERSTATE])
567 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
568
569 if (tb[IFLA_LINKMODE]) {
570 write_lock_bh(&dev_base_lock);
571 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
572 write_unlock_bh(&dev_base_lock);
573 }
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 err = 0;
576
Thomas Grafda5e0492006-08-10 21:17:37 -0700577errout_dev:
578 if (err < 0 && modified && net_ratelimit())
579 printk(KERN_WARNING "A link change request failed with "
580 "some changes comitted already. Interface %s may "
581 "have been left with an inconsistent configuration, "
582 "please check.\n", dev->name);
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (send_addr_notify)
585 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
586
587 dev_put(dev);
Thomas Grafda5e0492006-08-10 21:17:37 -0700588errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return err;
590}
591
Thomas Grafb60c5112006-08-04 23:05:34 -0700592static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800593{
Thomas Grafb60c5112006-08-04 23:05:34 -0700594 struct ifinfomsg *ifm;
595 struct nlattr *tb[IFLA_MAX+1];
596 struct net_device *dev = NULL;
597 struct sk_buff *nskb;
598 char *iw_buf = NULL, *iw = NULL;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800599 int iw_buf_len = 0;
Thomas Graf339bf982006-11-10 14:10:15 -0800600 int err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800601
Thomas Grafb60c5112006-08-04 23:05:34 -0700602 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
603 if (err < 0)
Eric Sesterhenn9918f232006-09-26 23:26:38 -0700604 return err;
Thomas Grafb60c5112006-08-04 23:05:34 -0700605
606 ifm = nlmsg_data(nlh);
607 if (ifm->ifi_index >= 0) {
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800608 dev = dev_get_by_index(ifm->ifi_index);
Thomas Grafb60c5112006-08-04 23:05:34 -0700609 if (dev == NULL)
610 return -ENODEV;
611 } else
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800612 return -EINVAL;
Thomas Grafb60c5112006-08-04 23:05:34 -0700613
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800614
615#ifdef CONFIG_NET_WIRELESS_RTNETLINK
Thomas Grafb60c5112006-08-04 23:05:34 -0700616 if (tb[IFLA_WIRELESS]) {
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800617 /* Call Wireless Extensions. We need to know the size before
618 * we can alloc. Various stuff checked in there... */
Thomas Grafb60c5112006-08-04 23:05:34 -0700619 err = wireless_rtnetlink_get(dev, nla_data(tb[IFLA_WIRELESS]),
620 nla_len(tb[IFLA_WIRELESS]),
621 &iw_buf, &iw_buf_len);
622 if (err < 0)
623 goto errout;
624
625 iw += IW_EV_POINT_OFF;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800626 }
627#endif /* CONFIG_NET_WIRELESS_RTNETLINK */
628
Thomas Graf339bf982006-11-10 14:10:15 -0800629 nskb = nlmsg_new(if_nlmsg_size(iw_buf_len), GFP_KERNEL);
Thomas Grafb60c5112006-08-04 23:05:34 -0700630 if (nskb == NULL) {
631 err = -ENOBUFS;
632 goto errout;
633 }
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800634
Thomas Grafb60c5112006-08-04 23:05:34 -0700635 err = rtnl_fill_ifinfo(nskb, dev, iw, iw_buf_len, RTM_NEWLINK,
636 NETLINK_CB(skb).pid, nlh->nlmsg_seq, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -0800637 if (err < 0) {
638 /* -EMSGSIZE implies BUG in if_nlmsg_size */
639 WARN_ON(err == -EMSGSIZE);
640 kfree_skb(nskb);
641 goto errout;
642 }
Patrick McHardyb9741792006-10-12 01:50:30 -0700643 err = rtnl_unicast(nskb, NETLINK_CB(skb).pid);
Thomas Grafb60c5112006-08-04 23:05:34 -0700644errout:
645 kfree(iw_buf);
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800646 dev_put(dev);
Thomas Grafb60c5112006-08-04 23:05:34 -0700647
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800648 return err;
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800649}
Jean Tourrilhes711e2c32006-02-22 15:10:56 -0800650
Thomas Grafb60c5112006-08-04 23:05:34 -0700651static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
653 int idx;
654 int s_idx = cb->family;
655
656 if (s_idx == 0)
657 s_idx = 1;
658 for (idx=1; idx<NPROTO; idx++) {
659 int type = cb->nlh->nlmsg_type-RTM_BASE;
660 if (idx < s_idx || idx == PF_PACKET)
661 continue;
662 if (rtnetlink_links[idx] == NULL ||
663 rtnetlink_links[idx][type].dumpit == NULL)
664 continue;
665 if (idx > s_idx)
666 memset(&cb->args[0], 0, sizeof(cb->args));
667 if (rtnetlink_links[idx][type].dumpit(skb, cb))
668 break;
669 }
670 cb->family = idx;
671
672 return skb->len;
673}
674
675void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change)
676{
677 struct sk_buff *skb;
Thomas Graf0ec6d3f2006-08-15 00:37:09 -0700678 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Thomas Graf339bf982006-11-10 14:10:15 -0800680 skb = nlmsg_new(if_nlmsg_size(0), GFP_KERNEL);
Thomas Graf0ec6d3f2006-08-15 00:37:09 -0700681 if (skb == NULL)
682 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Thomas Graf0ec6d3f2006-08-15 00:37:09 -0700684 err = rtnl_fill_ifinfo(skb, dev, NULL, 0, type, 0, 0, change, 0);
Patrick McHardy26932562007-01-31 23:16:40 -0800685 if (err < 0) {
686 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
687 WARN_ON(err == -EMSGSIZE);
688 kfree_skb(skb);
689 goto errout;
690 }
Thomas Graf0ec6d3f2006-08-15 00:37:09 -0700691 err = rtnl_notify(skb, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
692errout:
693 if (err < 0)
694 rtnl_set_sk_err(RTNLGRP_LINK, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697/* Protected by RTNL sempahore. */
698static struct rtattr **rta_buf;
699static int rtattr_max;
700
701/* Process one rtnetlink message. */
702
703static __inline__ int
704rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, int *errp)
705{
706 struct rtnetlink_link *link;
707 struct rtnetlink_link *link_tab;
708 int sz_idx, kind;
709 int min_len;
710 int family;
711 int type;
712 int err;
713
714 /* Only requests are handled by kernel now */
715 if (!(nlh->nlmsg_flags&NLM_F_REQUEST))
716 return 0;
717
718 type = nlh->nlmsg_type;
719
720 /* A control message: ignore them */
721 if (type < RTM_BASE)
722 return 0;
723
724 /* Unknown message: reply with EINVAL */
725 if (type > RTM_MAX)
726 goto err_inval;
727
728 type -= RTM_BASE;
729
730 /* All the messages must have at least 1 byte length */
731 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg)))
732 return 0;
733
734 family = ((struct rtgenmsg*)NLMSG_DATA(nlh))->rtgen_family;
735 if (family >= NPROTO) {
736 *errp = -EAFNOSUPPORT;
737 return -1;
738 }
739
740 link_tab = rtnetlink_links[family];
741 if (link_tab == NULL)
742 link_tab = rtnetlink_links[PF_UNSPEC];
743 link = &link_tab[type];
744
745 sz_idx = type>>2;
746 kind = type&3;
747
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700748 if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 *errp = -EPERM;
750 return -1;
751 }
752
753 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (link->dumpit == NULL)
755 link = &(rtnetlink_links[PF_UNSPEC][type]);
756
757 if (link->dumpit == NULL)
758 goto err_inval;
759
760 if ((*errp = netlink_dump_start(rtnl, skb, nlh,
Thomas Grafa8f74b22005-11-10 02:25:52 +0100761 link->dumpit, NULL)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return -1;
763 }
Thomas Graf9ac4a162005-11-10 02:25:55 +0100764
765 netlink_queue_skip(nlh, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return -1;
767 }
768
769 memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *)));
770
771 min_len = rtm_min[sz_idx];
772 if (nlh->nlmsg_len < min_len)
773 goto err_inval;
774
775 if (nlh->nlmsg_len > min_len) {
776 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
777 struct rtattr *attr = (void*)nlh + NLMSG_ALIGN(min_len);
778
779 while (RTA_OK(attr, attrlen)) {
780 unsigned flavor = attr->rta_type;
781 if (flavor) {
782 if (flavor > rta_max[sz_idx])
783 goto err_inval;
784 rta_buf[flavor-1] = attr;
785 }
786 attr = RTA_NEXT(attr, attrlen);
787 }
788 }
789
790 if (link->doit == NULL)
791 link = &(rtnetlink_links[PF_UNSPEC][type]);
792 if (link->doit == NULL)
793 goto err_inval;
794 err = link->doit(skb, nlh, (void *)&rta_buf[0]);
795
796 *errp = err;
797 return err;
798
799err_inval:
800 *errp = -EINVAL;
801 return -1;
802}
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804static void rtnetlink_rcv(struct sock *sk, int len)
805{
Thomas Graf9ac4a162005-11-10 02:25:55 +0100806 unsigned int qlen = 0;
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 do {
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800809 mutex_lock(&rtnl_mutex);
Thomas Graf9ac4a162005-11-10 02:25:55 +0100810 netlink_run_queue(sk, &qlen, &rtnetlink_rcv_msg);
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800811 mutex_unlock(&rtnl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 netdev_run_todo();
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700814 } while (qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
Thomas Grafdb46edc2005-05-03 14:29:39 -0700817static struct rtnetlink_link link_rtnetlink_table[RTM_NR_MSGTYPES] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Thomas Grafb60c5112006-08-04 23:05:34 -0700819 [RTM_GETLINK - RTM_BASE] = { .doit = rtnl_getlink,
820 .dumpit = rtnl_dump_ifinfo },
Thomas Grafda5e0492006-08-10 21:17:37 -0700821 [RTM_SETLINK - RTM_BASE] = { .doit = rtnl_setlink },
Thomas Grafb60c5112006-08-04 23:05:34 -0700822 [RTM_GETADDR - RTM_BASE] = { .dumpit = rtnl_dump_all },
823 [RTM_GETROUTE - RTM_BASE] = { .dumpit = rtnl_dump_all },
Thomas Grafc7fb64d2005-06-18 22:50:55 -0700824 [RTM_NEWNEIGH - RTM_BASE] = { .doit = neigh_add },
825 [RTM_DELNEIGH - RTM_BASE] = { .doit = neigh_delete },
826 [RTM_GETNEIGH - RTM_BASE] = { .dumpit = neigh_dump_info },
Thomas Graf14c0b972006-08-04 03:38:38 -0700827#ifdef CONFIG_FIB_RULES
828 [RTM_NEWRULE - RTM_BASE] = { .doit = fib_nl_newrule },
829 [RTM_DELRULE - RTM_BASE] = { .doit = fib_nl_delrule },
830#endif
Thomas Grafb60c5112006-08-04 23:05:34 -0700831 [RTM_GETRULE - RTM_BASE] = { .dumpit = rtnl_dump_all },
Thomas Grafc7fb64d2005-06-18 22:50:55 -0700832 [RTM_GETNEIGHTBL - RTM_BASE] = { .dumpit = neightbl_dump_info },
833 [RTM_SETNEIGHTBL - RTM_BASE] = { .doit = neightbl_set },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834};
835
836static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
837{
838 struct net_device *dev = ptr;
839 switch (event) {
840 case NETDEV_UNREGISTER:
841 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
842 break;
843 case NETDEV_REGISTER:
844 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
845 break;
846 case NETDEV_UP:
847 case NETDEV_DOWN:
848 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
849 break;
850 case NETDEV_CHANGE:
851 case NETDEV_GOING_DOWN:
852 break;
853 default:
854 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
855 break;
856 }
857 return NOTIFY_DONE;
858}
859
860static struct notifier_block rtnetlink_dev_notifier = {
861 .notifier_call = rtnetlink_event,
862};
863
864void __init rtnetlink_init(void)
865{
866 int i;
867
868 rtattr_max = 0;
869 for (i = 0; i < ARRAY_SIZE(rta_max); i++)
870 if (rta_max[i] > rtattr_max)
871 rtattr_max = rta_max[i];
872 rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL);
873 if (!rta_buf)
874 panic("rtnetlink_init: cannot allocate rta_buf\n");
875
Patrick McHardy06628602005-08-15 12:33:26 -0700876 rtnl = netlink_kernel_create(NETLINK_ROUTE, RTNLGRP_MAX, rtnetlink_rcv,
877 THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (rtnl == NULL)
879 panic("rtnetlink_init: cannot initialize rtnetlink\n");
880 netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV);
881 register_netdevice_notifier(&rtnetlink_dev_notifier);
882 rtnetlink_links[PF_UNSPEC] = link_rtnetlink_table;
883 rtnetlink_links[PF_PACKET] = link_rtnetlink_table;
884}
885
886EXPORT_SYMBOL(__rta_fill);
887EXPORT_SYMBOL(rtattr_strlcpy);
888EXPORT_SYMBOL(rtattr_parse);
889EXPORT_SYMBOL(rtnetlink_links);
890EXPORT_SYMBOL(rtnetlink_put_metrics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891EXPORT_SYMBOL(rtnl_lock);
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800892EXPORT_SYMBOL(rtnl_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893EXPORT_SYMBOL(rtnl_unlock);
Thomas Graf2942e902006-08-15 00:30:25 -0700894EXPORT_SYMBOL(rtnl_unicast);
Thomas Graf97676b62006-08-15 00:31:41 -0700895EXPORT_SYMBOL(rtnl_notify);
896EXPORT_SYMBOL(rtnl_set_sk_err);