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