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.
6 * Routing netlink socket interface: protocol independent part.
8 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
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.
16 * Vitaly E. Lavrov RTA_OK arithmetics was wrong.
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>
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>
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>
37 #include <linux/mutex.h>
38 #include <linux/if_addr.h>
40 #include <asm/uaccess.h>
41 #include <asm/system.h>
42 #include <asm/string.h>
44 #include <linux/inet.h>
45 #include <linux/netdevice.h>
47 #include <net/protocol.h>
49 #include <net/route.h>
52 #include <net/pkt_sched.h>
53 #include <net/fib_rules.h>
54 #include <net/netlink.h>
55 #ifdef CONFIG_NET_WIRELESS_RTNETLINK
56 #include <linux/wireless.h>
57 #include <net/iw_handler.h>
58 #endif /* CONFIG_NET_WIRELESS_RTNETLINK */
60 static DEFINE_MUTEX(rtnl_mutex
);
61 static struct sock
*rtnl
;
65 mutex_lock(&rtnl_mutex
);
68 void __rtnl_unlock(void)
70 mutex_unlock(&rtnl_mutex
);
73 void rtnl_unlock(void)
75 mutex_unlock(&rtnl_mutex
);
76 if (rtnl
&& rtnl
->sk_receive_queue
.qlen
)
77 rtnl
->sk_data_ready(rtnl
, 0);
81 int rtnl_trylock(void)
83 return mutex_trylock(&rtnl_mutex
);
86 int rtattr_parse(struct rtattr
*tb
[], int maxattr
, struct rtattr
*rta
, int len
)
88 memset(tb
, 0, sizeof(struct rtattr
*)*maxattr
);
90 while (RTA_OK(rta
, len
)) {
91 unsigned flavor
= rta
->rta_type
;
92 if (flavor
&& flavor
<= maxattr
)
94 rta
= RTA_NEXT(rta
, len
);
99 struct rtnetlink_link
* rtnetlink_links
[NPROTO
];
101 static const int rtm_min
[RTM_NR_FAMILIES
] =
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
)),
106 [RTM_FAM(RTM_NEWRULE
)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr
)),
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
)),
116 static const int rta_max
[RTM_NR_FAMILIES
] =
118 [RTM_FAM(RTM_NEWLINK
)] = IFLA_MAX
,
119 [RTM_FAM(RTM_NEWADDR
)] = IFA_MAX
,
120 [RTM_FAM(RTM_NEWROUTE
)] = RTA_MAX
,
121 [RTM_FAM(RTM_NEWRULE
)] = FRA_MAX
,
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
,
128 void __rta_fill(struct sk_buff
*skb
, int attrtype
, int attrlen
, const void *data
)
131 int size
= RTA_LENGTH(attrlen
);
133 rta
= (struct rtattr
*)skb_put(skb
, RTA_ALIGN(size
));
134 rta
->rta_type
= attrtype
;
136 memcpy(RTA_DATA(rta
), data
, attrlen
);
137 memset(RTA_DATA(rta
) + attrlen
, 0, RTA_ALIGN(size
) - size
);
140 size_t rtattr_strlcpy(char *dest
, const struct rtattr
*rta
, size_t size
)
142 size_t ret
= RTA_PAYLOAD(rta
);
143 char *src
= RTA_DATA(rta
);
145 if (ret
> 0 && src
[ret
- 1] == '\0')
148 size_t len
= (ret
>= size
) ? size
- 1 : ret
;
149 memset(dest
, 0, size
);
150 memcpy(dest
, src
, len
);
155 int rtnetlink_send(struct sk_buff
*skb
, u32 pid
, unsigned group
, int echo
)
159 NETLINK_CB(skb
).dst_group
= group
;
161 atomic_inc(&skb
->users
);
162 netlink_broadcast(rtnl
, skb
, pid
, group
, GFP_KERNEL
);
164 err
= netlink_unicast(rtnl
, skb
, pid
, MSG_DONTWAIT
);
168 int rtnl_unicast(struct sk_buff
*skb
, u32 pid
)
170 return nlmsg_unicast(rtnl
, skb
, pid
);
173 int rtnl_notify(struct sk_buff
*skb
, u32 pid
, u32 group
,
174 struct nlmsghdr
*nlh
, gfp_t flags
)
179 report
= nlmsg_report(nlh
);
181 return nlmsg_notify(rtnl
, skb
, pid
, group
, report
, flags
);
184 void rtnl_set_sk_err(u32 group
, int error
)
186 netlink_set_err(rtnl
, 0, group
, error
);
189 int rtnetlink_put_metrics(struct sk_buff
*skb
, u32
*metrics
)
194 mx
= nla_nest_start(skb
, RTA_METRICS
);
198 for (i
= 0; i
< RTAX_MAX
; i
++) {
201 NLA_PUT_U32(skb
, i
+1, metrics
[i
]);
206 nla_nest_cancel(skb
, mx
);
210 return nla_nest_end(skb
, mx
);
213 return nla_nest_cancel(skb
, mx
);
217 static void set_operstate(struct net_device
*dev
, unsigned char transition
)
219 unsigned char operstate
= dev
->operstate
;
223 if ((operstate
== IF_OPER_DORMANT
||
224 operstate
== IF_OPER_UNKNOWN
) &&
226 operstate
= IF_OPER_UP
;
229 case IF_OPER_DORMANT
:
230 if (operstate
== IF_OPER_UP
||
231 operstate
== IF_OPER_UNKNOWN
)
232 operstate
= IF_OPER_DORMANT
;
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
);
244 static void copy_rtnl_link_stats(struct rtnl_link_stats
*a
,
245 struct net_device_stats
*b
)
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
;
256 a
->multicast
= b
->multicast
;
257 a
->collisions
= b
->collisions
;
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
;
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
;
272 a
->rx_compressed
= b
->rx_compressed
;
273 a
->tx_compressed
= b
->tx_compressed
;
276 static 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
)
280 struct ifinfomsg
*ifm
;
281 struct nlmsghdr
*nlh
;
283 nlh
= nlmsg_put(skb
, pid
, seq
, type
, sizeof(*ifm
), flags
);
287 ifm
= nlmsg_data(nlh
);
288 ifm
->ifi_family
= AF_UNSPEC
;
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
;
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
);
303 if (dev
->ifindex
!= dev
->iflink
)
304 NLA_PUT_U32(skb
, IFLA_LINK
, dev
->iflink
);
307 NLA_PUT_U32(skb
, IFLA_MASTER
, dev
->master
->ifindex
);
309 if (dev
->qdisc_sleeping
)
310 NLA_PUT_STRING(skb
, IFLA_QDISC
, dev
->qdisc_sleeping
->ops
->id
);
313 struct rtnl_link_ifmap map
= {
314 .mem_start
= dev
->mem_start
,
315 .mem_end
= dev
->mem_end
,
316 .base_addr
= dev
->base_addr
,
319 .port
= dev
->if_port
,
321 NLA_PUT(skb
, IFLA_MAP
, sizeof(map
), &map
);
325 NLA_PUT(skb
, IFLA_ADDRESS
, dev
->addr_len
, dev
->dev_addr
);
326 NLA_PUT(skb
, IFLA_BROADCAST
, dev
->addr_len
, dev
->broadcast
);
329 if (dev
->get_stats
) {
330 struct net_device_stats
*stats
= dev
->get_stats(dev
);
334 attr
= nla_reserve(skb
, IFLA_STATS
,
335 sizeof(struct rtnl_link_stats
));
337 goto nla_put_failure
;
339 copy_rtnl_link_stats(nla_data(attr
), stats
);
344 NLA_PUT(skb
, IFLA_WIRELESS
, iwbuflen
, iwbuf
);
346 return nlmsg_end(skb
, nlh
);
349 return nlmsg_cancel(skb
, nlh
);
352 static int rtnl_dump_ifinfo(struct sk_buff
*skb
, struct netlink_callback
*cb
)
355 int s_idx
= cb
->args
[0];
356 struct net_device
*dev
;
358 read_lock(&dev_base_lock
);
359 for (dev
=dev_base
, idx
=0; dev
; dev
= dev
->next
, idx
++) {
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)
367 read_unlock(&dev_base_lock
);
373 static struct nla_policy ifla_policy
[IFLA_MAX
+1] __read_mostly
= {
374 [IFLA_IFNAME
] = { .type
= NLA_STRING
, .len
= IFNAMSIZ
-1 },
375 [IFLA_MAP
] = { .len
= sizeof(struct rtnl_link_ifmap
) },
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
},
383 static int rtnl_setlink(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void *arg
)
385 struct ifinfomsg
*ifm
;
386 struct net_device
*dev
;
387 int err
, send_addr_notify
= 0, modified
= 0;
388 struct nlattr
*tb
[IFLA_MAX
+1];
389 char ifname
[IFNAMSIZ
];
391 err
= nlmsg_parse(nlh
, sizeof(*ifm
), tb
, IFLA_MAX
, ifla_policy
);
396 nla_strlcpy(ifname
, tb
[IFLA_IFNAME
], IFNAMSIZ
);
401 ifm
= nlmsg_data(nlh
);
402 if (ifm
->ifi_index
>= 0)
403 dev
= dev_get_by_index(ifm
->ifi_index
);
404 else if (tb
[IFLA_IFNAME
])
405 dev
= dev_get_by_name(ifname
);
414 if (tb
[IFLA_ADDRESS
] &&
415 nla_len(tb
[IFLA_ADDRESS
]) < dev
->addr_len
)
418 if (tb
[IFLA_BROADCAST
] &&
419 nla_len(tb
[IFLA_BROADCAST
]) < dev
->addr_len
)
423 struct rtnl_link_ifmap
*u_map
;
426 if (!dev
->set_config
) {
431 if (!netif_device_present(dev
)) {
436 u_map
= nla_data(tb
[IFLA_MAP
]);
437 k_map
.mem_start
= (unsigned long) u_map
->mem_start
;
438 k_map
.mem_end
= (unsigned long) u_map
->mem_end
;
439 k_map
.base_addr
= (unsigned short) u_map
->base_addr
;
440 k_map
.irq
= (unsigned char) u_map
->irq
;
441 k_map
.dma
= (unsigned char) u_map
->dma
;
442 k_map
.port
= (unsigned char) u_map
->port
;
444 err
= dev
->set_config(dev
, &k_map
);
451 if (tb
[IFLA_ADDRESS
]) {
455 if (!dev
->set_mac_address
) {
460 if (!netif_device_present(dev
)) {
465 len
= sizeof(sa_family_t
) + dev
->addr_len
;
466 sa
= kmalloc(len
, GFP_KERNEL
);
471 sa
->sa_family
= dev
->type
;
472 memcpy(sa
->sa_data
, nla_data(tb
[IFLA_ADDRESS
]),
474 err
= dev
->set_mac_address(dev
, sa
);
478 send_addr_notify
= 1;
483 err
= dev_set_mtu(dev
, nla_get_u32(tb
[IFLA_MTU
]));
490 * Interface selected by interface index but interface
491 * name provided implies that a name change has been
494 if (ifm
->ifi_index
>= 0 && ifname
[0]) {
495 err
= dev_change_name(dev
, ifname
);
501 #ifdef CONFIG_NET_WIRELESS_RTNETLINK
502 if (tb
[IFLA_WIRELESS
]) {
503 /* Call Wireless Extensions.
504 * Various stuff checked in there... */
505 err
= wireless_rtnetlink_set(dev
, nla_data(tb
[IFLA_WIRELESS
]),
506 nla_len(tb
[IFLA_WIRELESS
]));
510 #endif /* CONFIG_NET_WIRELESS_RTNETLINK */
512 if (tb
[IFLA_BROADCAST
]) {
513 nla_memcpy(dev
->broadcast
, tb
[IFLA_BROADCAST
], dev
->addr_len
);
514 send_addr_notify
= 1;
519 dev_change_flags(dev
, ifm
->ifi_flags
);
522 dev
->tx_queue_len
= nla_get_u32(tb
[IFLA_TXQLEN
]);
525 dev
->weight
= nla_get_u32(tb
[IFLA_WEIGHT
]);
527 if (tb
[IFLA_OPERSTATE
])
528 set_operstate(dev
, nla_get_u8(tb
[IFLA_OPERSTATE
]));
530 if (tb
[IFLA_LINKMODE
]) {
531 write_lock_bh(&dev_base_lock
);
532 dev
->link_mode
= nla_get_u8(tb
[IFLA_LINKMODE
]);
533 write_unlock_bh(&dev_base_lock
);
539 if (err
< 0 && modified
&& net_ratelimit())
540 printk(KERN_WARNING
"A link change request failed with "
541 "some changes comitted already. Interface %s may "
542 "have been left with an inconsistent configuration, "
543 "please check.\n", dev
->name
);
545 if (send_addr_notify
)
546 call_netdevice_notifiers(NETDEV_CHANGEADDR
, dev
);
553 static int rtnl_getlink(struct sk_buff
*skb
, struct nlmsghdr
* nlh
, void *arg
)
555 struct ifinfomsg
*ifm
;
556 struct nlattr
*tb
[IFLA_MAX
+1];
557 struct net_device
*dev
= NULL
;
558 struct sk_buff
*nskb
;
559 char *iw_buf
= NULL
, *iw
= NULL
;
563 err
= nlmsg_parse(nlh
, sizeof(*ifm
), tb
, IFLA_MAX
, ifla_policy
);
567 ifm
= nlmsg_data(nlh
);
568 if (ifm
->ifi_index
>= 0) {
569 dev
= dev_get_by_index(ifm
->ifi_index
);
576 #ifdef CONFIG_NET_WIRELESS_RTNETLINK
577 if (tb
[IFLA_WIRELESS
]) {
578 /* Call Wireless Extensions. We need to know the size before
579 * we can alloc. Various stuff checked in there... */
580 err
= wireless_rtnetlink_get(dev
, nla_data(tb
[IFLA_WIRELESS
]),
581 nla_len(tb
[IFLA_WIRELESS
]),
582 &iw_buf
, &iw_buf_len
);
586 iw
+= IW_EV_POINT_OFF
;
588 #endif /* CONFIG_NET_WIRELESS_RTNETLINK */
590 payload
= NLMSG_ALIGN(sizeof(struct ifinfomsg
) +
591 nla_total_size(iw_buf_len
));
592 nskb
= nlmsg_new(nlmsg_total_size(payload
), GFP_KERNEL
);
598 err
= rtnl_fill_ifinfo(nskb
, dev
, iw
, iw_buf_len
, RTM_NEWLINK
,
599 NETLINK_CB(skb
).pid
, nlh
->nlmsg_seq
, 0, 0);
605 err
= rtnl_unicast(nskb
, NETLINK_CB(skb
).pid
);
613 static int rtnl_dump_all(struct sk_buff
*skb
, struct netlink_callback
*cb
)
616 int s_idx
= cb
->family
;
620 for (idx
=1; idx
<NPROTO
; idx
++) {
621 int type
= cb
->nlh
->nlmsg_type
-RTM_BASE
;
622 if (idx
< s_idx
|| idx
== PF_PACKET
)
624 if (rtnetlink_links
[idx
] == NULL
||
625 rtnetlink_links
[idx
][type
].dumpit
== NULL
)
628 memset(&cb
->args
[0], 0, sizeof(cb
->args
));
629 if (rtnetlink_links
[idx
][type
].dumpit(skb
, cb
))
637 void rtmsg_ifinfo(int type
, struct net_device
*dev
, unsigned change
)
642 skb
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
646 err
= rtnl_fill_ifinfo(skb
, dev
, NULL
, 0, type
, 0, 0, change
, 0);
652 err
= rtnl_notify(skb
, 0, RTNLGRP_LINK
, NULL
, GFP_KERNEL
);
655 rtnl_set_sk_err(RTNLGRP_LINK
, err
);
658 /* Protected by RTNL sempahore. */
659 static struct rtattr
**rta_buf
;
660 static int rtattr_max
;
662 /* Process one rtnetlink message. */
664 static __inline__
int
665 rtnetlink_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, int *errp
)
667 struct rtnetlink_link
*link
;
668 struct rtnetlink_link
*link_tab
;
675 /* Only requests are handled by kernel now */
676 if (!(nlh
->nlmsg_flags
&NLM_F_REQUEST
))
679 type
= nlh
->nlmsg_type
;
681 /* A control message: ignore them */
685 /* Unknown message: reply with EINVAL */
691 /* All the messages must have at least 1 byte length */
692 if (nlh
->nlmsg_len
< NLMSG_LENGTH(sizeof(struct rtgenmsg
)))
695 family
= ((struct rtgenmsg
*)NLMSG_DATA(nlh
))->rtgen_family
;
696 if (family
>= NPROTO
) {
697 *errp
= -EAFNOSUPPORT
;
701 link_tab
= rtnetlink_links
[family
];
702 if (link_tab
== NULL
)
703 link_tab
= rtnetlink_links
[PF_UNSPEC
];
704 link
= &link_tab
[type
];
709 if (kind
!= 2 && security_netlink_recv(skb
, CAP_NET_ADMIN
)) {
714 if (kind
== 2 && nlh
->nlmsg_flags
&NLM_F_DUMP
) {
715 if (link
->dumpit
== NULL
)
716 link
= &(rtnetlink_links
[PF_UNSPEC
][type
]);
718 if (link
->dumpit
== NULL
)
721 if ((*errp
= netlink_dump_start(rtnl
, skb
, nlh
,
722 link
->dumpit
, NULL
)) != 0) {
726 netlink_queue_skip(nlh
, skb
);
730 memset(rta_buf
, 0, (rtattr_max
* sizeof(struct rtattr
*)));
732 min_len
= rtm_min
[sz_idx
];
733 if (nlh
->nlmsg_len
< min_len
)
736 if (nlh
->nlmsg_len
> min_len
) {
737 int attrlen
= nlh
->nlmsg_len
- NLMSG_ALIGN(min_len
);
738 struct rtattr
*attr
= (void*)nlh
+ NLMSG_ALIGN(min_len
);
740 while (RTA_OK(attr
, attrlen
)) {
741 unsigned flavor
= attr
->rta_type
;
743 if (flavor
> rta_max
[sz_idx
])
745 rta_buf
[flavor
-1] = attr
;
747 attr
= RTA_NEXT(attr
, attrlen
);
751 if (link
->doit
== NULL
)
752 link
= &(rtnetlink_links
[PF_UNSPEC
][type
]);
753 if (link
->doit
== NULL
)
755 err
= link
->doit(skb
, nlh
, (void *)&rta_buf
[0]);
765 static void rtnetlink_rcv(struct sock
*sk
, int len
)
767 unsigned int qlen
= 0;
770 mutex_lock(&rtnl_mutex
);
771 netlink_run_queue(sk
, &qlen
, &rtnetlink_rcv_msg
);
772 mutex_unlock(&rtnl_mutex
);
778 static struct rtnetlink_link link_rtnetlink_table
[RTM_NR_MSGTYPES
] =
780 [RTM_GETLINK
- RTM_BASE
] = { .doit
= rtnl_getlink
,
781 .dumpit
= rtnl_dump_ifinfo
},
782 [RTM_SETLINK
- RTM_BASE
] = { .doit
= rtnl_setlink
},
783 [RTM_GETADDR
- RTM_BASE
] = { .dumpit
= rtnl_dump_all
},
784 [RTM_GETROUTE
- RTM_BASE
] = { .dumpit
= rtnl_dump_all
},
785 [RTM_NEWNEIGH
- RTM_BASE
] = { .doit
= neigh_add
},
786 [RTM_DELNEIGH
- RTM_BASE
] = { .doit
= neigh_delete
},
787 [RTM_GETNEIGH
- RTM_BASE
] = { .dumpit
= neigh_dump_info
},
788 #ifdef CONFIG_FIB_RULES
789 [RTM_NEWRULE
- RTM_BASE
] = { .doit
= fib_nl_newrule
},
790 [RTM_DELRULE
- RTM_BASE
] = { .doit
= fib_nl_delrule
},
792 [RTM_GETRULE
- RTM_BASE
] = { .dumpit
= rtnl_dump_all
},
793 [RTM_GETNEIGHTBL
- RTM_BASE
] = { .dumpit
= neightbl_dump_info
},
794 [RTM_SETNEIGHTBL
- RTM_BASE
] = { .doit
= neightbl_set
},
797 static int rtnetlink_event(struct notifier_block
*this, unsigned long event
, void *ptr
)
799 struct net_device
*dev
= ptr
;
801 case NETDEV_UNREGISTER
:
802 rtmsg_ifinfo(RTM_DELLINK
, dev
, ~0U);
804 case NETDEV_REGISTER
:
805 rtmsg_ifinfo(RTM_NEWLINK
, dev
, ~0U);
809 rtmsg_ifinfo(RTM_NEWLINK
, dev
, IFF_UP
|IFF_RUNNING
);
812 case NETDEV_GOING_DOWN
:
815 rtmsg_ifinfo(RTM_NEWLINK
, dev
, 0);
821 static struct notifier_block rtnetlink_dev_notifier
= {
822 .notifier_call
= rtnetlink_event
,
825 void __init
rtnetlink_init(void)
830 for (i
= 0; i
< ARRAY_SIZE(rta_max
); i
++)
831 if (rta_max
[i
] > rtattr_max
)
832 rtattr_max
= rta_max
[i
];
833 rta_buf
= kmalloc(rtattr_max
* sizeof(struct rtattr
*), GFP_KERNEL
);
835 panic("rtnetlink_init: cannot allocate rta_buf\n");
837 rtnl
= netlink_kernel_create(NETLINK_ROUTE
, RTNLGRP_MAX
, rtnetlink_rcv
,
840 panic("rtnetlink_init: cannot initialize rtnetlink\n");
841 netlink_set_nonroot(NETLINK_ROUTE
, NL_NONROOT_RECV
);
842 register_netdevice_notifier(&rtnetlink_dev_notifier
);
843 rtnetlink_links
[PF_UNSPEC
] = link_rtnetlink_table
;
844 rtnetlink_links
[PF_PACKET
] = link_rtnetlink_table
;
847 EXPORT_SYMBOL(__rta_fill
);
848 EXPORT_SYMBOL(rtattr_strlcpy
);
849 EXPORT_SYMBOL(rtattr_parse
);
850 EXPORT_SYMBOL(rtnetlink_links
);
851 EXPORT_SYMBOL(rtnetlink_put_metrics
);
852 EXPORT_SYMBOL(rtnl_lock
);
853 EXPORT_SYMBOL(rtnl_trylock
);
854 EXPORT_SYMBOL(rtnl_unlock
);
855 EXPORT_SYMBOL(rtnl_unicast
);
856 EXPORT_SYMBOL(rtnl_notify
);
857 EXPORT_SYMBOL(rtnl_set_sk_err
);