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/timer.h> |
| 25 | #include <linux/string.h> |
| 26 | #include <linux/sockios.h> |
| 27 | #include <linux/net.h> |
| 28 | #include <linux/fcntl.h> |
| 29 | #include <linux/mm.h> |
| 30 | #include <linux/slab.h> |
| 31 | #include <linux/interrupt.h> |
| 32 | #include <linux/capability.h> |
| 33 | #include <linux/skbuff.h> |
| 34 | #include <linux/init.h> |
| 35 | #include <linux/security.h> |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 36 | #include <linux/mutex.h> |
Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 37 | #include <linux/if_addr.h> |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 38 | #include <linux/if_bridge.h> |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 39 | #include <linux/pci.h> |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 40 | #include <linux/etherdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
| 42 | #include <asm/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 54 | #include <net/rtnetlink.h> |
Johannes Berg | 30ffee8 | 2009-07-10 09:51:35 +0000 | [diff] [blame] | 55 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 57 | struct rtnl_link { |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 58 | rtnl_doit_func doit; |
| 59 | rtnl_dumpit_func dumpit; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 60 | rtnl_calcit_func calcit; |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 61 | }; |
| 62 | |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 63 | static DEFINE_MUTEX(rtnl_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | void rtnl_lock(void) |
| 66 | { |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 67 | mutex_lock(&rtnl_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 69 | EXPORT_SYMBOL(rtnl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 71 | void __rtnl_unlock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 73 | mutex_unlock(&rtnl_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | void rtnl_unlock(void) |
| 77 | { |
Herbert Xu | 58ec3b4 | 2008-10-07 15:50:03 -0700 | [diff] [blame] | 78 | /* This fellow will unlock it for us. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | netdev_run_todo(); |
| 80 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 81 | EXPORT_SYMBOL(rtnl_unlock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 83 | int rtnl_trylock(void) |
| 84 | { |
| 85 | return mutex_trylock(&rtnl_mutex); |
| 86 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 87 | EXPORT_SYMBOL(rtnl_trylock); |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 88 | |
Patrick McHardy | c9c1014 | 2008-04-23 22:10:48 -0700 | [diff] [blame] | 89 | int rtnl_is_locked(void) |
| 90 | { |
| 91 | return mutex_is_locked(&rtnl_mutex); |
| 92 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 93 | EXPORT_SYMBOL(rtnl_is_locked); |
Patrick McHardy | c9c1014 | 2008-04-23 22:10:48 -0700 | [diff] [blame] | 94 | |
Paul E. McKenney | a898def | 2010-02-22 17:04:49 -0800 | [diff] [blame] | 95 | #ifdef CONFIG_PROVE_LOCKING |
| 96 | int lockdep_rtnl_is_held(void) |
| 97 | { |
| 98 | return lockdep_is_held(&rtnl_mutex); |
| 99 | } |
| 100 | EXPORT_SYMBOL(lockdep_rtnl_is_held); |
| 101 | #endif /* #ifdef CONFIG_PROVE_LOCKING */ |
| 102 | |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 103 | static struct rtnl_link *rtnl_msg_handlers[RTNL_FAMILY_MAX + 1]; |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 104 | |
| 105 | static inline int rtm_msgindex(int msgtype) |
| 106 | { |
| 107 | int msgindex = msgtype - RTM_BASE; |
| 108 | |
| 109 | /* |
| 110 | * msgindex < 0 implies someone tried to register a netlink |
| 111 | * control code. msgindex >= RTM_NR_MSGTYPES may indicate that |
| 112 | * the message type has not been added to linux/rtnetlink.h |
| 113 | */ |
| 114 | BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES); |
| 115 | |
| 116 | return msgindex; |
| 117 | } |
| 118 | |
| 119 | static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex) |
| 120 | { |
| 121 | struct rtnl_link *tab; |
| 122 | |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 123 | if (protocol <= RTNL_FAMILY_MAX) |
Patrick McHardy | 0f87b1d | 2010-04-13 05:03:17 +0000 | [diff] [blame] | 124 | tab = rtnl_msg_handlers[protocol]; |
| 125 | else |
| 126 | tab = NULL; |
| 127 | |
Thomas Graf | 51057f2 | 2007-03-22 21:41:06 -0700 | [diff] [blame] | 128 | if (tab == NULL || tab[msgindex].doit == NULL) |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 129 | tab = rtnl_msg_handlers[PF_UNSPEC]; |
| 130 | |
Hans Zhang | c80bbea | 2012-10-22 22:21:23 +0000 | [diff] [blame] | 131 | return tab[msgindex].doit; |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex) |
| 135 | { |
| 136 | struct rtnl_link *tab; |
| 137 | |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 138 | if (protocol <= RTNL_FAMILY_MAX) |
Patrick McHardy | 0f87b1d | 2010-04-13 05:03:17 +0000 | [diff] [blame] | 139 | tab = rtnl_msg_handlers[protocol]; |
| 140 | else |
| 141 | tab = NULL; |
| 142 | |
Thomas Graf | 51057f2 | 2007-03-22 21:41:06 -0700 | [diff] [blame] | 143 | if (tab == NULL || tab[msgindex].dumpit == NULL) |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 144 | tab = rtnl_msg_handlers[PF_UNSPEC]; |
| 145 | |
Hans Zhang | c80bbea | 2012-10-22 22:21:23 +0000 | [diff] [blame] | 146 | return tab[msgindex].dumpit; |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 147 | } |
| 148 | |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 149 | static rtnl_calcit_func rtnl_get_calcit(int protocol, int msgindex) |
| 150 | { |
| 151 | struct rtnl_link *tab; |
| 152 | |
| 153 | if (protocol <= RTNL_FAMILY_MAX) |
| 154 | tab = rtnl_msg_handlers[protocol]; |
| 155 | else |
| 156 | tab = NULL; |
| 157 | |
| 158 | if (tab == NULL || tab[msgindex].calcit == NULL) |
| 159 | tab = rtnl_msg_handlers[PF_UNSPEC]; |
| 160 | |
Hans Zhang | c80bbea | 2012-10-22 22:21:23 +0000 | [diff] [blame] | 161 | return tab[msgindex].calcit; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 162 | } |
| 163 | |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 164 | /** |
| 165 | * __rtnl_register - Register a rtnetlink message type |
| 166 | * @protocol: Protocol family or PF_UNSPEC |
| 167 | * @msgtype: rtnetlink message type |
| 168 | * @doit: Function pointer called for each request message |
| 169 | * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 170 | * @calcit: Function pointer to calc size of dump message |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 171 | * |
| 172 | * Registers the specified function pointers (at least one of them has |
| 173 | * to be non-NULL) to be called whenever a request message for the |
| 174 | * specified protocol family and message type is received. |
| 175 | * |
| 176 | * The special protocol family PF_UNSPEC may be used to define fallback |
| 177 | * function pointers for the case when no entry for the specific protocol |
| 178 | * family exists. |
| 179 | * |
| 180 | * Returns 0 on success or a negative error code. |
| 181 | */ |
| 182 | int __rtnl_register(int protocol, int msgtype, |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 183 | rtnl_doit_func doit, rtnl_dumpit_func dumpit, |
| 184 | rtnl_calcit_func calcit) |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 185 | { |
| 186 | struct rtnl_link *tab; |
| 187 | int msgindex; |
| 188 | |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 189 | BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX); |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 190 | msgindex = rtm_msgindex(msgtype); |
| 191 | |
| 192 | tab = rtnl_msg_handlers[protocol]; |
| 193 | if (tab == NULL) { |
| 194 | tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL); |
| 195 | if (tab == NULL) |
| 196 | return -ENOBUFS; |
| 197 | |
| 198 | rtnl_msg_handlers[protocol] = tab; |
| 199 | } |
| 200 | |
| 201 | if (doit) |
| 202 | tab[msgindex].doit = doit; |
| 203 | |
| 204 | if (dumpit) |
| 205 | tab[msgindex].dumpit = dumpit; |
| 206 | |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 207 | if (calcit) |
| 208 | tab[msgindex].calcit = calcit; |
| 209 | |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 210 | return 0; |
| 211 | } |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 212 | EXPORT_SYMBOL_GPL(__rtnl_register); |
| 213 | |
| 214 | /** |
| 215 | * rtnl_register - Register a rtnetlink message type |
| 216 | * |
| 217 | * Identical to __rtnl_register() but panics on failure. This is useful |
| 218 | * as failure of this function is very unlikely, it can only happen due |
| 219 | * to lack of memory when allocating the chain to store all message |
| 220 | * handlers for a protocol. Meant for use in init functions where lack |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 221 | * of memory implies no sense in continuing. |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 222 | */ |
| 223 | void rtnl_register(int protocol, int msgtype, |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 224 | rtnl_doit_func doit, rtnl_dumpit_func dumpit, |
| 225 | rtnl_calcit_func calcit) |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 226 | { |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 227 | if (__rtnl_register(protocol, msgtype, doit, dumpit, calcit) < 0) |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 228 | panic("Unable to register rtnetlink message handler, " |
| 229 | "protocol = %d, message type = %d\n", |
| 230 | protocol, msgtype); |
| 231 | } |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 232 | EXPORT_SYMBOL_GPL(rtnl_register); |
| 233 | |
| 234 | /** |
| 235 | * rtnl_unregister - Unregister a rtnetlink message type |
| 236 | * @protocol: Protocol family or PF_UNSPEC |
| 237 | * @msgtype: rtnetlink message type |
| 238 | * |
| 239 | * Returns 0 on success or a negative error code. |
| 240 | */ |
| 241 | int rtnl_unregister(int protocol, int msgtype) |
| 242 | { |
| 243 | int msgindex; |
| 244 | |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 245 | BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX); |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 246 | msgindex = rtm_msgindex(msgtype); |
| 247 | |
| 248 | if (rtnl_msg_handlers[protocol] == NULL) |
| 249 | return -ENOENT; |
| 250 | |
| 251 | rtnl_msg_handlers[protocol][msgindex].doit = NULL; |
| 252 | rtnl_msg_handlers[protocol][msgindex].dumpit = NULL; |
| 253 | |
| 254 | return 0; |
| 255 | } |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 256 | EXPORT_SYMBOL_GPL(rtnl_unregister); |
| 257 | |
| 258 | /** |
| 259 | * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol |
| 260 | * @protocol : Protocol family or PF_UNSPEC |
| 261 | * |
| 262 | * Identical to calling rtnl_unregster() for all registered message types |
| 263 | * of a certain protocol family. |
| 264 | */ |
| 265 | void rtnl_unregister_all(int protocol) |
| 266 | { |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 267 | BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX); |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 268 | |
| 269 | kfree(rtnl_msg_handlers[protocol]); |
| 270 | rtnl_msg_handlers[protocol] = NULL; |
| 271 | } |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 272 | EXPORT_SYMBOL_GPL(rtnl_unregister_all); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 274 | static LIST_HEAD(link_ops); |
| 275 | |
Eric Dumazet | c63044f | 2011-12-13 11:38:00 +0000 | [diff] [blame] | 276 | static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind) |
| 277 | { |
| 278 | const struct rtnl_link_ops *ops; |
| 279 | |
| 280 | list_for_each_entry(ops, &link_ops, list) { |
| 281 | if (!strcmp(ops->kind, kind)) |
| 282 | return ops; |
| 283 | } |
| 284 | return NULL; |
| 285 | } |
| 286 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 287 | /** |
| 288 | * __rtnl_link_register - Register rtnl_link_ops with rtnetlink. |
| 289 | * @ops: struct rtnl_link_ops * to register |
| 290 | * |
| 291 | * The caller must hold the rtnl_mutex. This function should be used |
| 292 | * by drivers that create devices during module initialization. It |
| 293 | * must be called before registering the devices. |
| 294 | * |
| 295 | * Returns 0 on success or a negative error code. |
| 296 | */ |
| 297 | int __rtnl_link_register(struct rtnl_link_ops *ops) |
| 298 | { |
Eric Dumazet | c63044f | 2011-12-13 11:38:00 +0000 | [diff] [blame] | 299 | if (rtnl_link_ops_get(ops->kind)) |
| 300 | return -EEXIST; |
| 301 | |
Jiri Pirko | b0ab2fa | 2014-06-26 09:58:25 +0200 | [diff] [blame] | 302 | /* The check for setup is here because if ops |
| 303 | * does not have that filled up, it is not possible |
| 304 | * to use the ops for creating device. So do not |
| 305 | * fill up dellink as well. That disables rtnl_dellink. |
| 306 | */ |
| 307 | if (ops->setup && !ops->dellink) |
Eric Dumazet | 23289a3 | 2009-10-27 07:06:36 +0000 | [diff] [blame] | 308 | ops->dellink = unregister_netdevice_queue; |
Patrick McHardy | 2d85cba | 2007-07-11 19:42:13 -0700 | [diff] [blame] | 309 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 310 | list_add_tail(&ops->list, &link_ops); |
| 311 | return 0; |
| 312 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 313 | EXPORT_SYMBOL_GPL(__rtnl_link_register); |
| 314 | |
| 315 | /** |
| 316 | * rtnl_link_register - Register rtnl_link_ops with rtnetlink. |
| 317 | * @ops: struct rtnl_link_ops * to register |
| 318 | * |
| 319 | * Returns 0 on success or a negative error code. |
| 320 | */ |
| 321 | int rtnl_link_register(struct rtnl_link_ops *ops) |
| 322 | { |
| 323 | int err; |
| 324 | |
| 325 | rtnl_lock(); |
| 326 | err = __rtnl_link_register(ops); |
| 327 | rtnl_unlock(); |
| 328 | return err; |
| 329 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 330 | EXPORT_SYMBOL_GPL(rtnl_link_register); |
| 331 | |
Pavel Emelyanov | 669f87b | 2008-04-16 00:46:52 -0700 | [diff] [blame] | 332 | static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops) |
| 333 | { |
| 334 | struct net_device *dev; |
Eric Dumazet | 23289a3 | 2009-10-27 07:06:36 +0000 | [diff] [blame] | 335 | LIST_HEAD(list_kill); |
| 336 | |
Pavel Emelyanov | 669f87b | 2008-04-16 00:46:52 -0700 | [diff] [blame] | 337 | for_each_netdev(net, dev) { |
Eric Dumazet | 23289a3 | 2009-10-27 07:06:36 +0000 | [diff] [blame] | 338 | if (dev->rtnl_link_ops == ops) |
| 339 | ops->dellink(dev, &list_kill); |
Pavel Emelyanov | 669f87b | 2008-04-16 00:46:52 -0700 | [diff] [blame] | 340 | } |
Eric Dumazet | 23289a3 | 2009-10-27 07:06:36 +0000 | [diff] [blame] | 341 | unregister_netdevice_many(&list_kill); |
Pavel Emelyanov | 669f87b | 2008-04-16 00:46:52 -0700 | [diff] [blame] | 342 | } |
| 343 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 344 | /** |
| 345 | * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink. |
| 346 | * @ops: struct rtnl_link_ops * to unregister |
| 347 | * |
Patrick McHardy | 2d85cba | 2007-07-11 19:42:13 -0700 | [diff] [blame] | 348 | * The caller must hold the rtnl_mutex. |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 349 | */ |
| 350 | void __rtnl_link_unregister(struct rtnl_link_ops *ops) |
| 351 | { |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 352 | struct net *net; |
Patrick McHardy | 2d85cba | 2007-07-11 19:42:13 -0700 | [diff] [blame] | 353 | |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 354 | for_each_net(net) { |
Pavel Emelyanov | 669f87b | 2008-04-16 00:46:52 -0700 | [diff] [blame] | 355 | __rtnl_kill_links(net, ops); |
Patrick McHardy | 2d85cba | 2007-07-11 19:42:13 -0700 | [diff] [blame] | 356 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 357 | list_del(&ops->list); |
| 358 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 359 | EXPORT_SYMBOL_GPL(__rtnl_link_unregister); |
| 360 | |
Cong Wang | 200b916 | 2014-05-12 15:11:20 -0700 | [diff] [blame] | 361 | /* Return with the rtnl_lock held when there are no network |
| 362 | * devices unregistering in any network namespace. |
| 363 | */ |
| 364 | static void rtnl_lock_unregistering_all(void) |
| 365 | { |
| 366 | struct net *net; |
| 367 | bool unregistering; |
| 368 | DEFINE_WAIT(wait); |
| 369 | |
| 370 | for (;;) { |
| 371 | prepare_to_wait(&netdev_unregistering_wq, &wait, |
| 372 | TASK_UNINTERRUPTIBLE); |
| 373 | unregistering = false; |
| 374 | rtnl_lock(); |
| 375 | for_each_net(net) { |
| 376 | if (net->dev_unreg_count > 0) { |
| 377 | unregistering = true; |
| 378 | break; |
| 379 | } |
| 380 | } |
| 381 | if (!unregistering) |
| 382 | break; |
| 383 | __rtnl_unlock(); |
| 384 | schedule(); |
| 385 | } |
| 386 | finish_wait(&netdev_unregistering_wq, &wait); |
| 387 | } |
| 388 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 389 | /** |
| 390 | * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink. |
| 391 | * @ops: struct rtnl_link_ops * to unregister |
| 392 | */ |
| 393 | void rtnl_link_unregister(struct rtnl_link_ops *ops) |
| 394 | { |
Cong Wang | 200b916 | 2014-05-12 15:11:20 -0700 | [diff] [blame] | 395 | /* Close the race with cleanup_net() */ |
| 396 | mutex_lock(&net_mutex); |
| 397 | rtnl_lock_unregistering_all(); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 398 | __rtnl_link_unregister(ops); |
| 399 | rtnl_unlock(); |
Cong Wang | 200b916 | 2014-05-12 15:11:20 -0700 | [diff] [blame] | 400 | mutex_unlock(&net_mutex); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 401 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 402 | EXPORT_SYMBOL_GPL(rtnl_link_unregister); |
| 403 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 404 | static size_t rtnl_link_get_slave_info_data_size(const struct net_device *dev) |
| 405 | { |
| 406 | struct net_device *master_dev; |
| 407 | const struct rtnl_link_ops *ops; |
| 408 | |
| 409 | master_dev = netdev_master_upper_dev_get((struct net_device *) dev); |
| 410 | if (!master_dev) |
| 411 | return 0; |
| 412 | ops = master_dev->rtnl_link_ops; |
Fernando Luis Vazquez Cao | 6049f25 | 2014-02-04 19:35:02 +0900 | [diff] [blame] | 413 | if (!ops || !ops->get_slave_size) |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 414 | return 0; |
| 415 | /* IFLA_INFO_SLAVE_DATA + nested data */ |
| 416 | return nla_total_size(sizeof(struct nlattr)) + |
| 417 | ops->get_slave_size(master_dev, dev); |
| 418 | } |
| 419 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 420 | static size_t rtnl_link_get_size(const struct net_device *dev) |
| 421 | { |
| 422 | const struct rtnl_link_ops *ops = dev->rtnl_link_ops; |
| 423 | size_t size; |
| 424 | |
| 425 | if (!ops) |
| 426 | return 0; |
| 427 | |
Thomas Graf | 369cf77 | 2010-11-11 15:47:59 +0000 | [diff] [blame] | 428 | size = nla_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */ |
| 429 | nla_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */ |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 430 | |
| 431 | if (ops->get_size) |
| 432 | /* IFLA_INFO_DATA + nested data */ |
Thomas Graf | 369cf77 | 2010-11-11 15:47:59 +0000 | [diff] [blame] | 433 | size += nla_total_size(sizeof(struct nlattr)) + |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 434 | ops->get_size(dev); |
| 435 | |
| 436 | if (ops->get_xstats_size) |
Thomas Graf | 369cf77 | 2010-11-11 15:47:59 +0000 | [diff] [blame] | 437 | /* IFLA_INFO_XSTATS */ |
| 438 | size += nla_total_size(ops->get_xstats_size(dev)); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 439 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 440 | size += rtnl_link_get_slave_info_data_size(dev); |
| 441 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 442 | return size; |
| 443 | } |
| 444 | |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 445 | static LIST_HEAD(rtnl_af_ops); |
| 446 | |
| 447 | static const struct rtnl_af_ops *rtnl_af_lookup(const int family) |
| 448 | { |
| 449 | const struct rtnl_af_ops *ops; |
| 450 | |
| 451 | list_for_each_entry(ops, &rtnl_af_ops, list) { |
| 452 | if (ops->family == family) |
| 453 | return ops; |
| 454 | } |
| 455 | |
| 456 | return NULL; |
| 457 | } |
| 458 | |
| 459 | /** |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 460 | * rtnl_af_register - Register rtnl_af_ops with rtnetlink. |
| 461 | * @ops: struct rtnl_af_ops * to register |
| 462 | * |
| 463 | * Returns 0 on success or a negative error code. |
| 464 | */ |
stephen hemminger | 3678a9d | 2013-12-30 10:41:32 -0800 | [diff] [blame] | 465 | void rtnl_af_register(struct rtnl_af_ops *ops) |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 466 | { |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 467 | rtnl_lock(); |
stephen hemminger | 3678a9d | 2013-12-30 10:41:32 -0800 | [diff] [blame] | 468 | list_add_tail(&ops->list, &rtnl_af_ops); |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 469 | rtnl_unlock(); |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 470 | } |
| 471 | EXPORT_SYMBOL_GPL(rtnl_af_register); |
| 472 | |
| 473 | /** |
| 474 | * __rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink. |
| 475 | * @ops: struct rtnl_af_ops * to unregister |
| 476 | * |
| 477 | * The caller must hold the rtnl_mutex. |
| 478 | */ |
| 479 | void __rtnl_af_unregister(struct rtnl_af_ops *ops) |
| 480 | { |
| 481 | list_del(&ops->list); |
| 482 | } |
| 483 | EXPORT_SYMBOL_GPL(__rtnl_af_unregister); |
| 484 | |
| 485 | /** |
| 486 | * rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink. |
| 487 | * @ops: struct rtnl_af_ops * to unregister |
| 488 | */ |
| 489 | void rtnl_af_unregister(struct rtnl_af_ops *ops) |
| 490 | { |
| 491 | rtnl_lock(); |
| 492 | __rtnl_af_unregister(ops); |
| 493 | rtnl_unlock(); |
| 494 | } |
| 495 | EXPORT_SYMBOL_GPL(rtnl_af_unregister); |
| 496 | |
| 497 | static size_t rtnl_link_get_af_size(const struct net_device *dev) |
| 498 | { |
| 499 | struct rtnl_af_ops *af_ops; |
| 500 | size_t size; |
| 501 | |
| 502 | /* IFLA_AF_SPEC */ |
| 503 | size = nla_total_size(sizeof(struct nlattr)); |
| 504 | |
| 505 | list_for_each_entry(af_ops, &rtnl_af_ops, list) { |
| 506 | if (af_ops->get_link_af_size) { |
| 507 | /* AF_* + nested data */ |
| 508 | size += nla_total_size(sizeof(struct nlattr)) + |
| 509 | af_ops->get_link_af_size(dev); |
| 510 | } |
| 511 | } |
| 512 | |
| 513 | return size; |
| 514 | } |
| 515 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 516 | static bool rtnl_have_link_slave_info(const struct net_device *dev) |
| 517 | { |
| 518 | struct net_device *master_dev; |
| 519 | |
| 520 | master_dev = netdev_master_upper_dev_get((struct net_device *) dev); |
Jiri Pirko | 813f020 | 2014-01-23 19:19:21 +0100 | [diff] [blame] | 521 | if (master_dev && master_dev->rtnl_link_ops) |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 522 | return true; |
| 523 | return false; |
| 524 | } |
| 525 | |
| 526 | static int rtnl_link_slave_info_fill(struct sk_buff *skb, |
| 527 | const struct net_device *dev) |
| 528 | { |
| 529 | struct net_device *master_dev; |
| 530 | const struct rtnl_link_ops *ops; |
| 531 | struct nlattr *slave_data; |
| 532 | int err; |
| 533 | |
| 534 | master_dev = netdev_master_upper_dev_get((struct net_device *) dev); |
| 535 | if (!master_dev) |
| 536 | return 0; |
| 537 | ops = master_dev->rtnl_link_ops; |
| 538 | if (!ops) |
| 539 | return 0; |
| 540 | if (nla_put_string(skb, IFLA_INFO_SLAVE_KIND, ops->kind) < 0) |
| 541 | return -EMSGSIZE; |
| 542 | if (ops->fill_slave_info) { |
| 543 | slave_data = nla_nest_start(skb, IFLA_INFO_SLAVE_DATA); |
| 544 | if (!slave_data) |
| 545 | return -EMSGSIZE; |
| 546 | err = ops->fill_slave_info(skb, master_dev, dev); |
| 547 | if (err < 0) |
| 548 | goto err_cancel_slave_data; |
| 549 | nla_nest_end(skb, slave_data); |
| 550 | } |
| 551 | return 0; |
| 552 | |
| 553 | err_cancel_slave_data: |
| 554 | nla_nest_cancel(skb, slave_data); |
| 555 | return err; |
| 556 | } |
| 557 | |
| 558 | static int rtnl_link_info_fill(struct sk_buff *skb, |
| 559 | const struct net_device *dev) |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 560 | { |
| 561 | const struct rtnl_link_ops *ops = dev->rtnl_link_ops; |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 562 | struct nlattr *data; |
| 563 | int err; |
| 564 | |
| 565 | if (!ops) |
| 566 | return 0; |
| 567 | if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0) |
| 568 | return -EMSGSIZE; |
| 569 | if (ops->fill_xstats) { |
| 570 | err = ops->fill_xstats(skb, dev); |
| 571 | if (err < 0) |
| 572 | return err; |
| 573 | } |
| 574 | if (ops->fill_info) { |
| 575 | data = nla_nest_start(skb, IFLA_INFO_DATA); |
| 576 | if (data == NULL) |
| 577 | return -EMSGSIZE; |
| 578 | err = ops->fill_info(skb, dev); |
| 579 | if (err < 0) |
| 580 | goto err_cancel_data; |
| 581 | nla_nest_end(skb, data); |
| 582 | } |
| 583 | return 0; |
| 584 | |
| 585 | err_cancel_data: |
| 586 | nla_nest_cancel(skb, data); |
| 587 | return err; |
| 588 | } |
| 589 | |
| 590 | static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev) |
| 591 | { |
| 592 | struct nlattr *linkinfo; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 593 | int err = -EMSGSIZE; |
| 594 | |
| 595 | linkinfo = nla_nest_start(skb, IFLA_LINKINFO); |
| 596 | if (linkinfo == NULL) |
| 597 | goto out; |
| 598 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 599 | err = rtnl_link_info_fill(skb, dev); |
| 600 | if (err < 0) |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 601 | goto err_cancel_link; |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 602 | |
| 603 | err = rtnl_link_slave_info_fill(skb, dev); |
| 604 | if (err < 0) |
| 605 | goto err_cancel_link; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 606 | |
| 607 | nla_nest_end(skb, linkinfo); |
| 608 | return 0; |
| 609 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 610 | err_cancel_link: |
| 611 | nla_nest_cancel(skb, linkinfo); |
| 612 | out: |
| 613 | return err; |
| 614 | } |
| 615 | |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 616 | int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned int group, int echo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | { |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 618 | struct sock *rtnl = net->rtnl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | int err = 0; |
| 620 | |
Patrick McHardy | ac6d439 | 2005-08-14 19:29:52 -0700 | [diff] [blame] | 621 | NETLINK_CB(skb).dst_group = group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | if (echo) |
| 623 | atomic_inc(&skb->users); |
| 624 | netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL); |
| 625 | if (echo) |
| 626 | err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT); |
| 627 | return err; |
| 628 | } |
| 629 | |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 630 | int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid) |
Thomas Graf | 2942e90 | 2006-08-15 00:30:25 -0700 | [diff] [blame] | 631 | { |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 632 | struct sock *rtnl = net->rtnl; |
| 633 | |
Thomas Graf | 2942e90 | 2006-08-15 00:30:25 -0700 | [diff] [blame] | 634 | return nlmsg_unicast(rtnl, skb, pid); |
| 635 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 636 | EXPORT_SYMBOL(rtnl_unicast); |
Thomas Graf | 2942e90 | 2006-08-15 00:30:25 -0700 | [diff] [blame] | 637 | |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 638 | void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group, |
| 639 | struct nlmsghdr *nlh, gfp_t flags) |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 640 | { |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 641 | struct sock *rtnl = net->rtnl; |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 642 | int report = 0; |
| 643 | |
| 644 | if (nlh) |
| 645 | report = nlmsg_report(nlh); |
| 646 | |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 647 | nlmsg_notify(rtnl, skb, pid, group, report, flags); |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 648 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 649 | EXPORT_SYMBOL(rtnl_notify); |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 650 | |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 651 | void rtnl_set_sk_err(struct net *net, u32 group, int error) |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 652 | { |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 653 | struct sock *rtnl = net->rtnl; |
| 654 | |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 655 | netlink_set_err(rtnl, 0, group, error); |
| 656 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 657 | EXPORT_SYMBOL(rtnl_set_sk_err); |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 658 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics) |
| 660 | { |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 661 | struct nlattr *mx; |
| 662 | int i, valid = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 664 | mx = nla_nest_start(skb, RTA_METRICS); |
| 665 | if (mx == NULL) |
| 666 | return -ENOBUFS; |
| 667 | |
| 668 | for (i = 0; i < RTAX_MAX; i++) { |
| 669 | if (metrics[i]) { |
| 670 | valid++; |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 671 | if (nla_put_u32(skb, i+1, metrics[i])) |
| 672 | goto nla_put_failure; |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 673 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | |
David S. Miller | a57d27f | 2006-08-22 22:20:14 -0700 | [diff] [blame] | 676 | if (!valid) { |
| 677 | nla_nest_cancel(skb, mx); |
| 678 | return 0; |
| 679 | } |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 680 | |
| 681 | return nla_nest_end(skb, mx); |
| 682 | |
| 683 | nla_put_failure: |
Thomas Graf | bc3ed28 | 2008-06-03 16:36:54 -0700 | [diff] [blame] | 684 | nla_nest_cancel(skb, mx); |
| 685 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 687 | EXPORT_SYMBOL(rtnetlink_put_metrics); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 689 | int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id, |
David S. Miller | 87a5069 | 2012-07-10 05:06:14 -0700 | [diff] [blame] | 690 | long expires, u32 error) |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 691 | { |
| 692 | struct rta_cacheinfo ci = { |
Eric Dumazet | a399a80 | 2012-08-08 21:13:53 +0000 | [diff] [blame] | 693 | .rta_lastuse = jiffies_delta_to_clock_t(jiffies - dst->lastuse), |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 694 | .rta_used = dst->__use, |
| 695 | .rta_clntref = atomic_read(&(dst->__refcnt)), |
| 696 | .rta_error = error, |
| 697 | .rta_id = id, |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 698 | }; |
| 699 | |
Li Wei | 8253947 | 2012-07-29 16:01:30 +0000 | [diff] [blame] | 700 | if (expires) { |
| 701 | unsigned long clock; |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 702 | |
Li Wei | 8253947 | 2012-07-29 16:01:30 +0000 | [diff] [blame] | 703 | clock = jiffies_to_clock_t(abs(expires)); |
| 704 | clock = min_t(unsigned long, clock, INT_MAX); |
| 705 | ci.rta_expires = (expires > 0) ? clock : -clock; |
| 706 | } |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 707 | return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci); |
| 708 | } |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 709 | EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | |
David S. Miller | 93b2d4a | 2008-02-17 18:35:07 -0800 | [diff] [blame] | 711 | static void set_operstate(struct net_device *dev, unsigned char transition) |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 712 | { |
| 713 | unsigned char operstate = dev->operstate; |
| 714 | |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 715 | switch (transition) { |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 716 | case IF_OPER_UP: |
| 717 | if ((operstate == IF_OPER_DORMANT || |
| 718 | operstate == IF_OPER_UNKNOWN) && |
| 719 | !netif_dormant(dev)) |
| 720 | operstate = IF_OPER_UP; |
| 721 | break; |
| 722 | |
| 723 | case IF_OPER_DORMANT: |
| 724 | if (operstate == IF_OPER_UP || |
| 725 | operstate == IF_OPER_UNKNOWN) |
| 726 | operstate = IF_OPER_DORMANT; |
| 727 | break; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 728 | } |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 729 | |
| 730 | if (dev->operstate != operstate) { |
| 731 | write_lock_bh(&dev_base_lock); |
| 732 | dev->operstate = operstate; |
| 733 | write_unlock_bh(&dev_base_lock); |
David S. Miller | 93b2d4a | 2008-02-17 18:35:07 -0800 | [diff] [blame] | 734 | netdev_state_change(dev); |
| 735 | } |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 736 | } |
| 737 | |
Jiri Benc | b1beb68 | 2012-07-27 02:58:22 +0000 | [diff] [blame] | 738 | static unsigned int rtnl_dev_get_flags(const struct net_device *dev) |
| 739 | { |
| 740 | return (dev->flags & ~(IFF_PROMISC | IFF_ALLMULTI)) | |
| 741 | (dev->gflags & (IFF_PROMISC | IFF_ALLMULTI)); |
| 742 | } |
| 743 | |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 744 | static unsigned int rtnl_dev_combine_flags(const struct net_device *dev, |
| 745 | const struct ifinfomsg *ifm) |
| 746 | { |
| 747 | unsigned int flags = ifm->ifi_flags; |
| 748 | |
| 749 | /* bugwards compatibility: ifi_change == 0 is treated as ~0 */ |
| 750 | if (ifm->ifi_change) |
| 751 | flags = (flags & ifm->ifi_change) | |
Jiri Benc | b1beb68 | 2012-07-27 02:58:22 +0000 | [diff] [blame] | 752 | (rtnl_dev_get_flags(dev) & ~ifm->ifi_change); |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 753 | |
| 754 | return flags; |
| 755 | } |
| 756 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 757 | static void copy_rtnl_link_stats(struct rtnl_link_stats *a, |
Ben Hutchings | be1f3c2 | 2010-06-08 07:19:54 +0000 | [diff] [blame] | 758 | const struct rtnl_link_stats64 *b) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | { |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 760 | a->rx_packets = b->rx_packets; |
| 761 | a->tx_packets = b->tx_packets; |
| 762 | a->rx_bytes = b->rx_bytes; |
| 763 | a->tx_bytes = b->tx_bytes; |
| 764 | a->rx_errors = b->rx_errors; |
| 765 | a->tx_errors = b->tx_errors; |
| 766 | a->rx_dropped = b->rx_dropped; |
| 767 | a->tx_dropped = b->tx_dropped; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 769 | a->multicast = b->multicast; |
| 770 | a->collisions = b->collisions; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 772 | a->rx_length_errors = b->rx_length_errors; |
| 773 | a->rx_over_errors = b->rx_over_errors; |
| 774 | a->rx_crc_errors = b->rx_crc_errors; |
| 775 | a->rx_frame_errors = b->rx_frame_errors; |
| 776 | a->rx_fifo_errors = b->rx_fifo_errors; |
| 777 | a->rx_missed_errors = b->rx_missed_errors; |
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 | a->tx_aborted_errors = b->tx_aborted_errors; |
| 780 | a->tx_carrier_errors = b->tx_carrier_errors; |
| 781 | a->tx_fifo_errors = b->tx_fifo_errors; |
| 782 | a->tx_heartbeat_errors = b->tx_heartbeat_errors; |
| 783 | a->tx_window_errors = b->tx_window_errors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 785 | a->rx_compressed = b->rx_compressed; |
| 786 | a->tx_compressed = b->tx_compressed; |
Jan Engelhardt | 10708f3 | 2010-03-11 09:57:29 +0000 | [diff] [blame] | 787 | } |
| 788 | |
Ben Hutchings | be1f3c2 | 2010-06-08 07:19:54 +0000 | [diff] [blame] | 789 | static void copy_rtnl_link_stats64(void *v, const struct rtnl_link_stats64 *b) |
Jan Engelhardt | 10708f3 | 2010-03-11 09:57:29 +0000 | [diff] [blame] | 790 | { |
Eric Dumazet | afdcba3 | 2010-08-23 07:14:36 +0000 | [diff] [blame] | 791 | memcpy(v, b, sizeof(*b)); |
Jan Engelhardt | 10708f3 | 2010-03-11 09:57:29 +0000 | [diff] [blame] | 792 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 794 | /* All VF info */ |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 795 | static inline int rtnl_vfinfo_size(const struct net_device *dev, |
| 796 | u32 ext_filter_mask) |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 797 | { |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 798 | if (dev->dev.parent && dev_is_pci(dev->dev.parent) && |
| 799 | (ext_filter_mask & RTEXT_FILTER_VF)) { |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 800 | int num_vfs = dev_num_vf(dev->dev.parent); |
Scott Feldman | 045de01 | 2010-05-28 03:42:43 -0700 | [diff] [blame] | 801 | size_t size = nla_total_size(sizeof(struct nlattr)); |
| 802 | size += nla_total_size(num_vfs * sizeof(struct nlattr)); |
| 803 | size += num_vfs * |
| 804 | (nla_total_size(sizeof(struct ifla_vf_mac)) + |
| 805 | nla_total_size(sizeof(struct ifla_vf_vlan)) + |
Sucheta Chakraborty | ed61668 | 2014-05-22 09:59:05 -0400 | [diff] [blame] | 806 | nla_total_size(sizeof(struct ifla_vf_spoofchk)) + |
| 807 | nla_total_size(sizeof(struct ifla_vf_rate))); |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 808 | return size; |
| 809 | } else |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 810 | return 0; |
| 811 | } |
| 812 | |
David Gibson | c53864f | 2014-04-24 10:22:36 +1000 | [diff] [blame] | 813 | static size_t rtnl_port_size(const struct net_device *dev, |
| 814 | u32 ext_filter_mask) |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 815 | { |
| 816 | size_t port_size = nla_total_size(4) /* PORT_VF */ |
| 817 | + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */ |
| 818 | + nla_total_size(sizeof(struct ifla_port_vsi)) |
| 819 | /* PORT_VSI_TYPE */ |
| 820 | + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */ |
| 821 | + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */ |
| 822 | + nla_total_size(1) /* PROT_VDP_REQUEST */ |
| 823 | + nla_total_size(2); /* PORT_VDP_RESPONSE */ |
| 824 | size_t vf_ports_size = nla_total_size(sizeof(struct nlattr)); |
| 825 | size_t vf_port_size = nla_total_size(sizeof(struct nlattr)) |
| 826 | + port_size; |
| 827 | size_t port_self_size = nla_total_size(sizeof(struct nlattr)) |
| 828 | + port_size; |
| 829 | |
David Gibson | c53864f | 2014-04-24 10:22:36 +1000 | [diff] [blame] | 830 | if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent || |
| 831 | !(ext_filter_mask & RTEXT_FILTER_VF)) |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 832 | return 0; |
| 833 | if (dev_num_vf(dev->dev.parent)) |
| 834 | return port_self_size + vf_ports_size + |
| 835 | vf_port_size * dev_num_vf(dev->dev.parent); |
| 836 | else |
| 837 | return port_self_size; |
| 838 | } |
| 839 | |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 840 | static noinline size_t if_nlmsg_size(const struct net_device *dev, |
| 841 | u32 ext_filter_mask) |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 842 | { |
| 843 | return NLMSG_ALIGN(sizeof(struct ifinfomsg)) |
| 844 | + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */ |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 845 | + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */ |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 846 | + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */ |
| 847 | + nla_total_size(sizeof(struct rtnl_link_ifmap)) |
| 848 | + nla_total_size(sizeof(struct rtnl_link_stats)) |
Jan Engelhardt | adcfe19 | 2010-03-27 17:15:29 -0700 | [diff] [blame] | 849 | + nla_total_size(sizeof(struct rtnl_link_stats64)) |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 850 | + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */ |
| 851 | + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */ |
| 852 | + nla_total_size(4) /* IFLA_TXQLEN */ |
| 853 | + nla_total_size(4) /* IFLA_WEIGHT */ |
| 854 | + nla_total_size(4) /* IFLA_MTU */ |
| 855 | + nla_total_size(4) /* IFLA_LINK */ |
| 856 | + nla_total_size(4) /* IFLA_MASTER */ |
Jiri Pirko | 9a57247 | 2012-12-27 23:49:39 +0000 | [diff] [blame] | 857 | + nla_total_size(1) /* IFLA_CARRIER */ |
Ben Greear | edbc0bb | 2012-03-29 12:51:30 +0000 | [diff] [blame] | 858 | + nla_total_size(4) /* IFLA_PROMISCUITY */ |
Jiri Pirko | 76ff5cc | 2012-07-20 02:28:48 +0000 | [diff] [blame] | 859 | + nla_total_size(4) /* IFLA_NUM_TX_QUEUES */ |
| 860 | + nla_total_size(4) /* IFLA_NUM_RX_QUEUES */ |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 861 | + nla_total_size(1) /* IFLA_OPERSTATE */ |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 862 | + nla_total_size(1) /* IFLA_LINKMODE */ |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 863 | + nla_total_size(4) /* IFLA_CARRIER_CHANGES */ |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 864 | + nla_total_size(ext_filter_mask |
| 865 | & RTEXT_FILTER_VF ? 4 : 0) /* IFLA_NUM_VF */ |
| 866 | + rtnl_vfinfo_size(dev, ext_filter_mask) /* IFLA_VFINFO_LIST */ |
David Gibson | c53864f | 2014-04-24 10:22:36 +1000 | [diff] [blame] | 867 | + rtnl_port_size(dev, ext_filter_mask) /* IFLA_VF_PORTS + IFLA_PORT_SELF */ |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 868 | + rtnl_link_get_size(dev) /* IFLA_LINKINFO */ |
Jiri Pirko | 66cae9e | 2013-07-29 18:16:50 +0200 | [diff] [blame] | 869 | + rtnl_link_get_af_size(dev) /* IFLA_AF_SPEC */ |
| 870 | + nla_total_size(MAX_PHYS_PORT_ID_LEN); /* IFLA_PHYS_PORT_ID */ |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 871 | } |
| 872 | |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 873 | static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev) |
| 874 | { |
| 875 | struct nlattr *vf_ports; |
| 876 | struct nlattr *vf_port; |
| 877 | int vf; |
| 878 | int err; |
| 879 | |
| 880 | vf_ports = nla_nest_start(skb, IFLA_VF_PORTS); |
| 881 | if (!vf_ports) |
| 882 | return -EMSGSIZE; |
| 883 | |
| 884 | for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) { |
| 885 | vf_port = nla_nest_start(skb, IFLA_VF_PORT); |
Scott Feldman | 8ca9418 | 2010-05-28 03:42:18 -0700 | [diff] [blame] | 886 | if (!vf_port) |
| 887 | goto nla_put_failure; |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 888 | if (nla_put_u32(skb, IFLA_PORT_VF, vf)) |
| 889 | goto nla_put_failure; |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 890 | err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb); |
Scott Feldman | 8ca9418 | 2010-05-28 03:42:18 -0700 | [diff] [blame] | 891 | if (err == -EMSGSIZE) |
| 892 | goto nla_put_failure; |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 893 | if (err) { |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 894 | nla_nest_cancel(skb, vf_port); |
| 895 | continue; |
| 896 | } |
| 897 | nla_nest_end(skb, vf_port); |
| 898 | } |
| 899 | |
| 900 | nla_nest_end(skb, vf_ports); |
| 901 | |
| 902 | return 0; |
Scott Feldman | 8ca9418 | 2010-05-28 03:42:18 -0700 | [diff] [blame] | 903 | |
| 904 | nla_put_failure: |
| 905 | nla_nest_cancel(skb, vf_ports); |
| 906 | return -EMSGSIZE; |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 907 | } |
| 908 | |
| 909 | static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev) |
| 910 | { |
| 911 | struct nlattr *port_self; |
| 912 | int err; |
| 913 | |
| 914 | port_self = nla_nest_start(skb, IFLA_PORT_SELF); |
| 915 | if (!port_self) |
| 916 | return -EMSGSIZE; |
| 917 | |
| 918 | err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb); |
| 919 | if (err) { |
| 920 | nla_nest_cancel(skb, port_self); |
Scott Feldman | 8ca9418 | 2010-05-28 03:42:18 -0700 | [diff] [blame] | 921 | return (err == -EMSGSIZE) ? err : 0; |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 922 | } |
| 923 | |
| 924 | nla_nest_end(skb, port_self); |
| 925 | |
| 926 | return 0; |
| 927 | } |
| 928 | |
David Gibson | c53864f | 2014-04-24 10:22:36 +1000 | [diff] [blame] | 929 | static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev, |
| 930 | u32 ext_filter_mask) |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 931 | { |
| 932 | int err; |
| 933 | |
David Gibson | c53864f | 2014-04-24 10:22:36 +1000 | [diff] [blame] | 934 | if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent || |
| 935 | !(ext_filter_mask & RTEXT_FILTER_VF)) |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 936 | return 0; |
| 937 | |
| 938 | err = rtnl_port_self_fill(skb, dev); |
| 939 | if (err) |
| 940 | return err; |
| 941 | |
| 942 | if (dev_num_vf(dev->dev.parent)) { |
| 943 | err = rtnl_vf_ports_fill(skb, dev); |
| 944 | if (err) |
| 945 | return err; |
| 946 | } |
| 947 | |
| 948 | return 0; |
| 949 | } |
| 950 | |
Jiri Pirko | 66cae9e | 2013-07-29 18:16:50 +0200 | [diff] [blame] | 951 | static int rtnl_phys_port_id_fill(struct sk_buff *skb, struct net_device *dev) |
| 952 | { |
| 953 | int err; |
| 954 | struct netdev_phys_port_id ppid; |
| 955 | |
| 956 | err = dev_get_phys_port_id(dev, &ppid); |
| 957 | if (err) { |
| 958 | if (err == -EOPNOTSUPP) |
| 959 | return 0; |
| 960 | return err; |
| 961 | } |
| 962 | |
| 963 | if (nla_put(skb, IFLA_PHYS_PORT_ID, ppid.id_len, ppid.id)) |
| 964 | return -EMSGSIZE; |
| 965 | |
| 966 | return 0; |
| 967 | } |
| 968 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 969 | static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev, |
Patrick McHardy | 575c3e2 | 2007-05-22 17:00:49 -0700 | [diff] [blame] | 970 | int type, u32 pid, u32 seq, u32 change, |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 971 | unsigned int flags, u32 ext_filter_mask) |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 972 | { |
| 973 | struct ifinfomsg *ifm; |
| 974 | struct nlmsghdr *nlh; |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 975 | struct rtnl_link_stats64 temp; |
Ben Hutchings | be1f3c2 | 2010-06-08 07:19:54 +0000 | [diff] [blame] | 976 | const struct rtnl_link_stats64 *stats; |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 977 | struct nlattr *attr, *af_spec; |
| 978 | struct rtnl_af_ops *af_ops; |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 979 | struct net_device *upper_dev = netdev_master_upper_dev_get(dev); |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 980 | |
Eric Dumazet | 2907c35 | 2011-05-25 07:34:04 +0000 | [diff] [blame] | 981 | ASSERT_RTNL(); |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 982 | nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags); |
| 983 | if (nlh == NULL) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 984 | return -EMSGSIZE; |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 985 | |
| 986 | ifm = nlmsg_data(nlh); |
| 987 | ifm->ifi_family = AF_UNSPEC; |
| 988 | ifm->__ifi_pad = 0; |
| 989 | ifm->ifi_type = dev->type; |
| 990 | ifm->ifi_index = dev->ifindex; |
| 991 | ifm->ifi_flags = dev_get_flags(dev); |
| 992 | ifm->ifi_change = change; |
| 993 | |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 994 | if (nla_put_string(skb, IFLA_IFNAME, dev->name) || |
| 995 | nla_put_u32(skb, IFLA_TXQLEN, dev->tx_queue_len) || |
| 996 | nla_put_u8(skb, IFLA_OPERSTATE, |
| 997 | netif_running(dev) ? dev->operstate : IF_OPER_DOWN) || |
| 998 | nla_put_u8(skb, IFLA_LINKMODE, dev->link_mode) || |
| 999 | nla_put_u32(skb, IFLA_MTU, dev->mtu) || |
| 1000 | nla_put_u32(skb, IFLA_GROUP, dev->group) || |
Ben Greear | edbc0bb | 2012-03-29 12:51:30 +0000 | [diff] [blame] | 1001 | nla_put_u32(skb, IFLA_PROMISCUITY, dev->promiscuity) || |
Jiri Pirko | 76ff5cc | 2012-07-20 02:28:48 +0000 | [diff] [blame] | 1002 | nla_put_u32(skb, IFLA_NUM_TX_QUEUES, dev->num_tx_queues) || |
Mark A. Greer | 1d69c2b | 2012-07-20 13:35:13 +0000 | [diff] [blame] | 1003 | #ifdef CONFIG_RPS |
Jiri Pirko | 76ff5cc | 2012-07-20 02:28:48 +0000 | [diff] [blame] | 1004 | nla_put_u32(skb, IFLA_NUM_RX_QUEUES, dev->num_rx_queues) || |
Mark A. Greer | 1d69c2b | 2012-07-20 13:35:13 +0000 | [diff] [blame] | 1005 | #endif |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1006 | (dev->ifindex != dev->iflink && |
| 1007 | nla_put_u32(skb, IFLA_LINK, dev->iflink)) || |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1008 | (upper_dev && |
| 1009 | nla_put_u32(skb, IFLA_MASTER, upper_dev->ifindex)) || |
Jiri Pirko | 9a57247 | 2012-12-27 23:49:39 +0000 | [diff] [blame] | 1010 | nla_put_u8(skb, IFLA_CARRIER, netif_carrier_ok(dev)) || |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1011 | (dev->qdisc && |
| 1012 | nla_put_string(skb, IFLA_QDISC, dev->qdisc->ops->id)) || |
| 1013 | (dev->ifalias && |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 1014 | nla_put_string(skb, IFLA_IFALIAS, dev->ifalias)) || |
| 1015 | nla_put_u32(skb, IFLA_CARRIER_CHANGES, |
| 1016 | atomic_read(&dev->carrier_changes))) |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1017 | goto nla_put_failure; |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 1018 | |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 1019 | if (1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | struct rtnl_link_ifmap map = { |
| 1021 | .mem_start = dev->mem_start, |
| 1022 | .mem_end = dev->mem_end, |
| 1023 | .base_addr = dev->base_addr, |
| 1024 | .irq = dev->irq, |
| 1025 | .dma = dev->dma, |
| 1026 | .port = dev->if_port, |
| 1027 | }; |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1028 | if (nla_put(skb, IFLA_MAP, sizeof(map), &map)) |
| 1029 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | } |
| 1031 | |
| 1032 | if (dev->addr_len) { |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1033 | if (nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr) || |
| 1034 | nla_put(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast)) |
| 1035 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | } |
| 1037 | |
Jiri Pirko | 66cae9e | 2013-07-29 18:16:50 +0200 | [diff] [blame] | 1038 | if (rtnl_phys_port_id_fill(skb, dev)) |
| 1039 | goto nla_put_failure; |
| 1040 | |
Pavel Emelyanov | 96e7408 | 2008-05-21 14:12:46 -0700 | [diff] [blame] | 1041 | attr = nla_reserve(skb, IFLA_STATS, |
| 1042 | sizeof(struct rtnl_link_stats)); |
| 1043 | if (attr == NULL) |
| 1044 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 1046 | stats = dev_get_stats(dev, &temp); |
Pavel Emelyanov | 96e7408 | 2008-05-21 14:12:46 -0700 | [diff] [blame] | 1047 | copy_rtnl_link_stats(nla_data(attr), stats); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | |
Jan Engelhardt | 10708f3 | 2010-03-11 09:57:29 +0000 | [diff] [blame] | 1049 | attr = nla_reserve(skb, IFLA_STATS64, |
| 1050 | sizeof(struct rtnl_link_stats64)); |
| 1051 | if (attr == NULL) |
| 1052 | goto nla_put_failure; |
Jan Engelhardt | 10708f3 | 2010-03-11 09:57:29 +0000 | [diff] [blame] | 1053 | copy_rtnl_link_stats64(nla_data(attr), stats); |
| 1054 | |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1055 | if (dev->dev.parent && (ext_filter_mask & RTEXT_FILTER_VF) && |
| 1056 | nla_put_u32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent))) |
| 1057 | goto nla_put_failure; |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 1058 | |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 1059 | if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent |
| 1060 | && (ext_filter_mask & RTEXT_FILTER_VF)) { |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 1061 | int i; |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 1062 | |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1063 | struct nlattr *vfinfo, *vf; |
| 1064 | int num_vfs = dev_num_vf(dev->dev.parent); |
| 1065 | |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1066 | vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST); |
| 1067 | if (!vfinfo) |
| 1068 | goto nla_put_failure; |
| 1069 | for (i = 0; i < num_vfs; i++) { |
| 1070 | struct ifla_vf_info ivi; |
| 1071 | struct ifla_vf_mac vf_mac; |
| 1072 | struct ifla_vf_vlan vf_vlan; |
Sucheta Chakraborty | ed61668 | 2014-05-22 09:59:05 -0400 | [diff] [blame] | 1073 | struct ifla_vf_rate vf_rate; |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1074 | struct ifla_vf_tx_rate vf_tx_rate; |
Greg Rose | 5f8444a | 2011-10-08 03:05:24 +0000 | [diff] [blame] | 1075 | struct ifla_vf_spoofchk vf_spoofchk; |
Rony Efraim | 1d8faf4 | 2013-06-13 13:19:10 +0300 | [diff] [blame] | 1076 | struct ifla_vf_link_state vf_linkstate; |
Greg Rose | 5f8444a | 2011-10-08 03:05:24 +0000 | [diff] [blame] | 1077 | |
| 1078 | /* |
| 1079 | * Not all SR-IOV capable drivers support the |
| 1080 | * spoofcheck query. Preset to -1 so the user |
| 1081 | * space tool can detect that the driver didn't |
| 1082 | * report anything. |
| 1083 | */ |
| 1084 | ivi.spoofchk = -1; |
Mathias Krause | 84d73cd | 2013-03-09 05:52:20 +0000 | [diff] [blame] | 1085 | memset(ivi.mac, 0, sizeof(ivi.mac)); |
Rony Efraim | 1d8faf4 | 2013-06-13 13:19:10 +0300 | [diff] [blame] | 1086 | /* The default value for VF link state is "auto" |
| 1087 | * IFLA_VF_LINK_STATE_AUTO which equals zero |
| 1088 | */ |
| 1089 | ivi.linkstate = 0; |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 1090 | if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi)) |
| 1091 | break; |
Greg Rose | 5f8444a | 2011-10-08 03:05:24 +0000 | [diff] [blame] | 1092 | vf_mac.vf = |
| 1093 | vf_vlan.vf = |
Sucheta Chakraborty | ed61668 | 2014-05-22 09:59:05 -0400 | [diff] [blame] | 1094 | vf_rate.vf = |
Greg Rose | 5f8444a | 2011-10-08 03:05:24 +0000 | [diff] [blame] | 1095 | vf_tx_rate.vf = |
Rony Efraim | 1d8faf4 | 2013-06-13 13:19:10 +0300 | [diff] [blame] | 1096 | vf_spoofchk.vf = |
| 1097 | vf_linkstate.vf = ivi.vf; |
Greg Rose | 5f8444a | 2011-10-08 03:05:24 +0000 | [diff] [blame] | 1098 | |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1099 | memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac)); |
| 1100 | vf_vlan.vlan = ivi.vlan; |
| 1101 | vf_vlan.qos = ivi.qos; |
Sucheta Chakraborty | ed61668 | 2014-05-22 09:59:05 -0400 | [diff] [blame] | 1102 | vf_tx_rate.rate = ivi.max_tx_rate; |
| 1103 | vf_rate.min_tx_rate = ivi.min_tx_rate; |
| 1104 | vf_rate.max_tx_rate = ivi.max_tx_rate; |
Greg Rose | 5f8444a | 2011-10-08 03:05:24 +0000 | [diff] [blame] | 1105 | vf_spoofchk.setting = ivi.spoofchk; |
Rony Efraim | 1d8faf4 | 2013-06-13 13:19:10 +0300 | [diff] [blame] | 1106 | vf_linkstate.link_state = ivi.linkstate; |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1107 | vf = nla_nest_start(skb, IFLA_VF_INFO); |
| 1108 | if (!vf) { |
| 1109 | nla_nest_cancel(skb, vfinfo); |
| 1110 | goto nla_put_failure; |
| 1111 | } |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1112 | if (nla_put(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac) || |
| 1113 | nla_put(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan) || |
Sucheta Chakraborty | ed61668 | 2014-05-22 09:59:05 -0400 | [diff] [blame] | 1114 | nla_put(skb, IFLA_VF_RATE, sizeof(vf_rate), |
| 1115 | &vf_rate) || |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1116 | nla_put(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate), |
| 1117 | &vf_tx_rate) || |
| 1118 | nla_put(skb, IFLA_VF_SPOOFCHK, sizeof(vf_spoofchk), |
Rony Efraim | 1d8faf4 | 2013-06-13 13:19:10 +0300 | [diff] [blame] | 1119 | &vf_spoofchk) || |
| 1120 | nla_put(skb, IFLA_VF_LINK_STATE, sizeof(vf_linkstate), |
| 1121 | &vf_linkstate)) |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1122 | goto nla_put_failure; |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1123 | nla_nest_end(skb, vf); |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 1124 | } |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1125 | nla_nest_end(skb, vfinfo); |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 1126 | } |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 1127 | |
David Gibson | c53864f | 2014-04-24 10:22:36 +1000 | [diff] [blame] | 1128 | if (rtnl_port_fill(skb, dev, ext_filter_mask)) |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 1129 | goto nla_put_failure; |
| 1130 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 1131 | if (dev->rtnl_link_ops || rtnl_have_link_slave_info(dev)) { |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1132 | if (rtnl_link_fill(skb, dev) < 0) |
| 1133 | goto nla_put_failure; |
| 1134 | } |
| 1135 | |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 1136 | if (!(af_spec = nla_nest_start(skb, IFLA_AF_SPEC))) |
| 1137 | goto nla_put_failure; |
| 1138 | |
| 1139 | list_for_each_entry(af_ops, &rtnl_af_ops, list) { |
| 1140 | if (af_ops->fill_link_af) { |
| 1141 | struct nlattr *af; |
| 1142 | int err; |
| 1143 | |
| 1144 | if (!(af = nla_nest_start(skb, af_ops->family))) |
| 1145 | goto nla_put_failure; |
| 1146 | |
| 1147 | err = af_ops->fill_link_af(skb, dev); |
| 1148 | |
| 1149 | /* |
| 1150 | * Caller may return ENODATA to indicate that there |
| 1151 | * was no data to be dumped. This is not an error, it |
| 1152 | * means we should trim the attribute header and |
| 1153 | * continue. |
| 1154 | */ |
| 1155 | if (err == -ENODATA) |
| 1156 | nla_nest_cancel(skb, af); |
| 1157 | else if (err < 0) |
| 1158 | goto nla_put_failure; |
| 1159 | |
| 1160 | nla_nest_end(skb, af); |
| 1161 | } |
| 1162 | } |
| 1163 | |
| 1164 | nla_nest_end(skb, af_spec); |
| 1165 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 1166 | return nlmsg_end(skb, nlh); |
| 1167 | |
| 1168 | nla_put_failure: |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 1169 | nlmsg_cancel(skb, nlh); |
| 1170 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | } |
| 1172 | |
Jiri Pirko | f7b1260 | 2014-02-18 20:53:18 +0100 | [diff] [blame] | 1173 | static const struct nla_policy ifla_policy[IFLA_MAX+1] = { |
| 1174 | [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 }, |
| 1175 | [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN }, |
| 1176 | [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN }, |
| 1177 | [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) }, |
| 1178 | [IFLA_MTU] = { .type = NLA_U32 }, |
| 1179 | [IFLA_LINK] = { .type = NLA_U32 }, |
| 1180 | [IFLA_MASTER] = { .type = NLA_U32 }, |
| 1181 | [IFLA_CARRIER] = { .type = NLA_U8 }, |
| 1182 | [IFLA_TXQLEN] = { .type = NLA_U32 }, |
| 1183 | [IFLA_WEIGHT] = { .type = NLA_U32 }, |
| 1184 | [IFLA_OPERSTATE] = { .type = NLA_U8 }, |
| 1185 | [IFLA_LINKMODE] = { .type = NLA_U8 }, |
| 1186 | [IFLA_LINKINFO] = { .type = NLA_NESTED }, |
| 1187 | [IFLA_NET_NS_PID] = { .type = NLA_U32 }, |
| 1188 | [IFLA_NET_NS_FD] = { .type = NLA_U32 }, |
| 1189 | [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 }, |
| 1190 | [IFLA_VFINFO_LIST] = {. type = NLA_NESTED }, |
| 1191 | [IFLA_VF_PORTS] = { .type = NLA_NESTED }, |
| 1192 | [IFLA_PORT_SELF] = { .type = NLA_NESTED }, |
| 1193 | [IFLA_AF_SPEC] = { .type = NLA_NESTED }, |
| 1194 | [IFLA_EXT_MASK] = { .type = NLA_U32 }, |
| 1195 | [IFLA_PROMISCUITY] = { .type = NLA_U32 }, |
| 1196 | [IFLA_NUM_TX_QUEUES] = { .type = NLA_U32 }, |
| 1197 | [IFLA_NUM_RX_QUEUES] = { .type = NLA_U32 }, |
| 1198 | [IFLA_PHYS_PORT_ID] = { .type = NLA_BINARY, .len = MAX_PHYS_PORT_ID_LEN }, |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 1199 | [IFLA_CARRIER_CHANGES] = { .type = NLA_U32 }, /* ignored */ |
Jiri Pirko | f7b1260 | 2014-02-18 20:53:18 +0100 | [diff] [blame] | 1200 | }; |
| 1201 | |
| 1202 | static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = { |
| 1203 | [IFLA_INFO_KIND] = { .type = NLA_STRING }, |
| 1204 | [IFLA_INFO_DATA] = { .type = NLA_NESTED }, |
| 1205 | [IFLA_INFO_SLAVE_KIND] = { .type = NLA_STRING }, |
| 1206 | [IFLA_INFO_SLAVE_DATA] = { .type = NLA_NESTED }, |
| 1207 | }; |
| 1208 | |
| 1209 | static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = { |
| 1210 | [IFLA_VF_INFO] = { .type = NLA_NESTED }, |
| 1211 | }; |
| 1212 | |
| 1213 | static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = { |
| 1214 | [IFLA_VF_MAC] = { .type = NLA_BINARY, |
| 1215 | .len = sizeof(struct ifla_vf_mac) }, |
| 1216 | [IFLA_VF_VLAN] = { .type = NLA_BINARY, |
| 1217 | .len = sizeof(struct ifla_vf_vlan) }, |
| 1218 | [IFLA_VF_TX_RATE] = { .type = NLA_BINARY, |
| 1219 | .len = sizeof(struct ifla_vf_tx_rate) }, |
| 1220 | [IFLA_VF_SPOOFCHK] = { .type = NLA_BINARY, |
| 1221 | .len = sizeof(struct ifla_vf_spoofchk) }, |
Sucheta Chakraborty | ed61668 | 2014-05-22 09:59:05 -0400 | [diff] [blame] | 1222 | [IFLA_VF_RATE] = { .type = NLA_BINARY, |
| 1223 | .len = sizeof(struct ifla_vf_rate) }, |
Doug Ledford | c5b4616 | 2014-06-11 10:38:03 -0400 | [diff] [blame] | 1224 | [IFLA_VF_LINK_STATE] = { .type = NLA_BINARY, |
| 1225 | .len = sizeof(struct ifla_vf_link_state) }, |
Jiri Pirko | f7b1260 | 2014-02-18 20:53:18 +0100 | [diff] [blame] | 1226 | }; |
| 1227 | |
| 1228 | static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = { |
| 1229 | [IFLA_PORT_VF] = { .type = NLA_U32 }, |
| 1230 | [IFLA_PORT_PROFILE] = { .type = NLA_STRING, |
| 1231 | .len = PORT_PROFILE_MAX }, |
| 1232 | [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY, |
| 1233 | .len = sizeof(struct ifla_port_vsi)}, |
| 1234 | [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY, |
| 1235 | .len = PORT_UUID_MAX }, |
| 1236 | [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING, |
| 1237 | .len = PORT_UUID_MAX }, |
| 1238 | [IFLA_PORT_REQUEST] = { .type = NLA_U8, }, |
| 1239 | [IFLA_PORT_RESPONSE] = { .type = NLA_U16, }, |
| 1240 | }; |
| 1241 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 1242 | 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] | 1243 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1244 | struct net *net = sock_net(skb->sk); |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1245 | int h, s_h; |
| 1246 | int idx = 0, s_idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | struct net_device *dev; |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1248 | struct hlist_head *head; |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 1249 | struct nlattr *tb[IFLA_MAX+1]; |
| 1250 | u32 ext_filter_mask = 0; |
David Gibson | 973462b | 2014-04-24 10:22:35 +1000 | [diff] [blame] | 1251 | int err; |
Michal Schmidt | e5eca6d | 2014-05-28 14:15:19 +0200 | [diff] [blame] | 1252 | int hdrlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1254 | s_h = cb->args[0]; |
| 1255 | s_idx = cb->args[1]; |
| 1256 | |
Eric Dumazet | e67f88d | 2011-04-27 22:56:07 +0000 | [diff] [blame] | 1257 | rcu_read_lock(); |
Thomas Graf | 4e985ad | 2011-06-21 03:11:20 +0000 | [diff] [blame] | 1258 | cb->seq = net->dev_base_seq; |
| 1259 | |
Michal Schmidt | e5eca6d | 2014-05-28 14:15:19 +0200 | [diff] [blame] | 1260 | /* A hack to preserve kernel<->userspace interface. |
| 1261 | * The correct header is ifinfomsg. It is consistent with rtnl_getlink. |
| 1262 | * However, before Linux v3.9 the code here assumed rtgenmsg and that's |
| 1263 | * what iproute2 < v3.9.0 used. |
| 1264 | * We can detect the old iproute2. Even including the IFLA_EXT_MASK |
| 1265 | * attribute, its netlink message is shorter than struct ifinfomsg. |
| 1266 | */ |
| 1267 | hdrlen = nlmsg_len(cb->nlh) < sizeof(struct ifinfomsg) ? |
| 1268 | sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg); |
| 1269 | |
| 1270 | if (nlmsg_parse(cb->nlh, hdrlen, tb, IFLA_MAX, ifla_policy) >= 0) { |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 1271 | |
Eric Dumazet | a4b64fb | 2012-03-04 12:32:10 +0000 | [diff] [blame] | 1272 | if (tb[IFLA_EXT_MASK]) |
| 1273 | ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]); |
| 1274 | } |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 1275 | |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1276 | for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { |
| 1277 | idx = 0; |
| 1278 | head = &net->dev_index_head[h]; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1279 | hlist_for_each_entry_rcu(dev, head, index_hlist) { |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1280 | if (idx < s_idx) |
| 1281 | goto cont; |
David Gibson | 973462b | 2014-04-24 10:22:35 +1000 | [diff] [blame] | 1282 | err = rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK, |
| 1283 | NETLINK_CB(cb->skb).portid, |
| 1284 | cb->nlh->nlmsg_seq, 0, |
| 1285 | NLM_F_MULTI, |
| 1286 | ext_filter_mask); |
| 1287 | /* If we ran out of room on the first message, |
| 1288 | * we're in trouble |
| 1289 | */ |
| 1290 | WARN_ON((err == -EMSGSIZE) && (skb->len == 0)); |
| 1291 | |
| 1292 | if (err <= 0) |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1293 | goto out; |
Thomas Graf | 4e985ad | 2011-06-21 03:11:20 +0000 | [diff] [blame] | 1294 | |
| 1295 | nl_dump_check_consistent(cb, nlmsg_hdr(skb)); |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 1296 | cont: |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1297 | idx++; |
| 1298 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | } |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1300 | out: |
Eric Dumazet | e67f88d | 2011-04-27 22:56:07 +0000 | [diff] [blame] | 1301 | rcu_read_unlock(); |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1302 | cb->args[1] = idx; |
| 1303 | cb->args[0] = h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | |
| 1305 | return skb->len; |
| 1306 | } |
| 1307 | |
Jiri Pirko | f7b1260 | 2014-02-18 20:53:18 +0100 | [diff] [blame] | 1308 | int rtnl_nla_parse_ifla(struct nlattr **tb, const struct nlattr *head, int len) |
| 1309 | { |
| 1310 | return nla_parse(tb, IFLA_MAX, head, len, ifla_policy); |
| 1311 | } |
| 1312 | EXPORT_SYMBOL(rtnl_nla_parse_ifla); |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 1313 | |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 1314 | struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[]) |
| 1315 | { |
| 1316 | struct net *net; |
| 1317 | /* Examine the link attributes and figure out which |
| 1318 | * network namespace we are talking about. |
| 1319 | */ |
| 1320 | if (tb[IFLA_NET_NS_PID]) |
| 1321 | net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID])); |
Eric W. Biederman | f063052 | 2011-05-04 17:51:50 -0700 | [diff] [blame] | 1322 | else if (tb[IFLA_NET_NS_FD]) |
| 1323 | net = get_net_ns_by_fd(nla_get_u32(tb[IFLA_NET_NS_FD])); |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 1324 | else |
| 1325 | net = get_net(src_net); |
| 1326 | return net; |
| 1327 | } |
| 1328 | EXPORT_SYMBOL(rtnl_link_get_net); |
| 1329 | |
Thomas Graf | 1840bb1 | 2008-02-23 19:54:36 -0800 | [diff] [blame] | 1330 | static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[]) |
| 1331 | { |
| 1332 | if (dev) { |
| 1333 | if (tb[IFLA_ADDRESS] && |
| 1334 | nla_len(tb[IFLA_ADDRESS]) < dev->addr_len) |
| 1335 | return -EINVAL; |
| 1336 | |
| 1337 | if (tb[IFLA_BROADCAST] && |
| 1338 | nla_len(tb[IFLA_BROADCAST]) < dev->addr_len) |
| 1339 | return -EINVAL; |
| 1340 | } |
| 1341 | |
Thomas Graf | cf7afbf | 2010-11-22 01:31:54 +0000 | [diff] [blame] | 1342 | if (tb[IFLA_AF_SPEC]) { |
| 1343 | struct nlattr *af; |
| 1344 | int rem, err; |
| 1345 | |
| 1346 | nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) { |
| 1347 | const struct rtnl_af_ops *af_ops; |
| 1348 | |
| 1349 | if (!(af_ops = rtnl_af_lookup(nla_type(af)))) |
| 1350 | return -EAFNOSUPPORT; |
| 1351 | |
| 1352 | if (!af_ops->set_link_af) |
| 1353 | return -EOPNOTSUPP; |
| 1354 | |
| 1355 | if (af_ops->validate_link_af) { |
Kurt Van Dijck | 6d3a9a6 | 2011-01-26 04:55:24 +0000 | [diff] [blame] | 1356 | err = af_ops->validate_link_af(dev, af); |
Thomas Graf | cf7afbf | 2010-11-22 01:31:54 +0000 | [diff] [blame] | 1357 | if (err < 0) |
| 1358 | return err; |
| 1359 | } |
| 1360 | } |
| 1361 | } |
| 1362 | |
Thomas Graf | 1840bb1 | 2008-02-23 19:54:36 -0800 | [diff] [blame] | 1363 | return 0; |
| 1364 | } |
| 1365 | |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1366 | static int do_setvfinfo(struct net_device *dev, struct nlattr *attr) |
| 1367 | { |
| 1368 | int rem, err = -EINVAL; |
| 1369 | struct nlattr *vf; |
| 1370 | const struct net_device_ops *ops = dev->netdev_ops; |
| 1371 | |
| 1372 | nla_for_each_nested(vf, attr, rem) { |
| 1373 | switch (nla_type(vf)) { |
| 1374 | case IFLA_VF_MAC: { |
| 1375 | struct ifla_vf_mac *ivm; |
| 1376 | ivm = nla_data(vf); |
| 1377 | err = -EOPNOTSUPP; |
| 1378 | if (ops->ndo_set_vf_mac) |
| 1379 | err = ops->ndo_set_vf_mac(dev, ivm->vf, |
| 1380 | ivm->mac); |
| 1381 | break; |
| 1382 | } |
| 1383 | case IFLA_VF_VLAN: { |
| 1384 | struct ifla_vf_vlan *ivv; |
| 1385 | ivv = nla_data(vf); |
| 1386 | err = -EOPNOTSUPP; |
| 1387 | if (ops->ndo_set_vf_vlan) |
| 1388 | err = ops->ndo_set_vf_vlan(dev, ivv->vf, |
| 1389 | ivv->vlan, |
| 1390 | ivv->qos); |
| 1391 | break; |
| 1392 | } |
| 1393 | case IFLA_VF_TX_RATE: { |
| 1394 | struct ifla_vf_tx_rate *ivt; |
Sucheta Chakraborty | ed61668 | 2014-05-22 09:59:05 -0400 | [diff] [blame] | 1395 | struct ifla_vf_info ivf; |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1396 | ivt = nla_data(vf); |
| 1397 | err = -EOPNOTSUPP; |
Sucheta Chakraborty | ed61668 | 2014-05-22 09:59:05 -0400 | [diff] [blame] | 1398 | if (ops->ndo_get_vf_config) |
| 1399 | err = ops->ndo_get_vf_config(dev, ivt->vf, |
| 1400 | &ivf); |
| 1401 | if (err) |
| 1402 | break; |
| 1403 | err = -EOPNOTSUPP; |
| 1404 | if (ops->ndo_set_vf_rate) |
| 1405 | err = ops->ndo_set_vf_rate(dev, ivt->vf, |
| 1406 | ivf.min_tx_rate, |
| 1407 | ivt->rate); |
| 1408 | break; |
| 1409 | } |
| 1410 | case IFLA_VF_RATE: { |
| 1411 | struct ifla_vf_rate *ivt; |
| 1412 | ivt = nla_data(vf); |
| 1413 | err = -EOPNOTSUPP; |
| 1414 | if (ops->ndo_set_vf_rate) |
| 1415 | err = ops->ndo_set_vf_rate(dev, ivt->vf, |
| 1416 | ivt->min_tx_rate, |
| 1417 | ivt->max_tx_rate); |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1418 | break; |
| 1419 | } |
Greg Rose | 5f8444a | 2011-10-08 03:05:24 +0000 | [diff] [blame] | 1420 | case IFLA_VF_SPOOFCHK: { |
| 1421 | struct ifla_vf_spoofchk *ivs; |
| 1422 | ivs = nla_data(vf); |
| 1423 | err = -EOPNOTSUPP; |
| 1424 | if (ops->ndo_set_vf_spoofchk) |
| 1425 | err = ops->ndo_set_vf_spoofchk(dev, ivs->vf, |
| 1426 | ivs->setting); |
| 1427 | break; |
| 1428 | } |
Rony Efraim | 1d8faf4 | 2013-06-13 13:19:10 +0300 | [diff] [blame] | 1429 | case IFLA_VF_LINK_STATE: { |
| 1430 | struct ifla_vf_link_state *ivl; |
| 1431 | ivl = nla_data(vf); |
| 1432 | err = -EOPNOTSUPP; |
| 1433 | if (ops->ndo_set_vf_link_state) |
| 1434 | err = ops->ndo_set_vf_link_state(dev, ivl->vf, |
| 1435 | ivl->link_state); |
| 1436 | break; |
| 1437 | } |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1438 | default: |
| 1439 | err = -EINVAL; |
| 1440 | break; |
| 1441 | } |
| 1442 | if (err) |
| 1443 | break; |
| 1444 | } |
| 1445 | return err; |
| 1446 | } |
| 1447 | |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1448 | static int do_set_master(struct net_device *dev, int ifindex) |
| 1449 | { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1450 | struct net_device *upper_dev = netdev_master_upper_dev_get(dev); |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1451 | const struct net_device_ops *ops; |
| 1452 | int err; |
| 1453 | |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1454 | if (upper_dev) { |
| 1455 | if (upper_dev->ifindex == ifindex) |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1456 | return 0; |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1457 | ops = upper_dev->netdev_ops; |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1458 | if (ops->ndo_del_slave) { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1459 | err = ops->ndo_del_slave(upper_dev, dev); |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1460 | if (err) |
| 1461 | return err; |
| 1462 | } else { |
| 1463 | return -EOPNOTSUPP; |
| 1464 | } |
| 1465 | } |
| 1466 | |
| 1467 | if (ifindex) { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1468 | upper_dev = __dev_get_by_index(dev_net(dev), ifindex); |
| 1469 | if (!upper_dev) |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1470 | return -EINVAL; |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1471 | ops = upper_dev->netdev_ops; |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1472 | if (ops->ndo_add_slave) { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1473 | err = ops->ndo_add_slave(upper_dev, dev); |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1474 | if (err) |
| 1475 | return err; |
| 1476 | } else { |
| 1477 | return -EOPNOTSUPP; |
| 1478 | } |
| 1479 | } |
| 1480 | return 0; |
| 1481 | } |
| 1482 | |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 1483 | static int do_setlink(const struct sk_buff *skb, |
| 1484 | struct net_device *dev, struct ifinfomsg *ifm, |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1485 | struct nlattr **tb, char *ifname, int modified) |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1486 | { |
Stephen Hemminger | d314774 | 2008-11-19 21:32:24 -0800 | [diff] [blame] | 1487 | const struct net_device_ops *ops = dev->netdev_ops; |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1488 | int err; |
| 1489 | |
Eric W. Biederman | f063052 | 2011-05-04 17:51:50 -0700 | [diff] [blame] | 1490 | if (tb[IFLA_NET_NS_PID] || tb[IFLA_NET_NS_FD]) { |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 1491 | struct net *net = rtnl_link_get_net(dev_net(dev), tb); |
Eric W. Biederman | d8a5ec6 | 2007-09-12 13:57:04 +0200 | [diff] [blame] | 1492 | if (IS_ERR(net)) { |
| 1493 | err = PTR_ERR(net); |
| 1494 | goto errout; |
| 1495 | } |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 1496 | if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN)) { |
Eric W. Biederman | b51642f | 2012-11-16 03:03:11 +0000 | [diff] [blame] | 1497 | err = -EPERM; |
| 1498 | goto errout; |
| 1499 | } |
Eric W. Biederman | d8a5ec6 | 2007-09-12 13:57:04 +0200 | [diff] [blame] | 1500 | err = dev_change_net_namespace(dev, net, ifname); |
| 1501 | put_net(net); |
| 1502 | if (err) |
| 1503 | goto errout; |
| 1504 | modified = 1; |
| 1505 | } |
| 1506 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1507 | if (tb[IFLA_MAP]) { |
| 1508 | struct rtnl_link_ifmap *u_map; |
| 1509 | struct ifmap k_map; |
| 1510 | |
Stephen Hemminger | d314774 | 2008-11-19 21:32:24 -0800 | [diff] [blame] | 1511 | if (!ops->ndo_set_config) { |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1512 | err = -EOPNOTSUPP; |
| 1513 | goto errout; |
| 1514 | } |
| 1515 | |
| 1516 | if (!netif_device_present(dev)) { |
| 1517 | err = -ENODEV; |
| 1518 | goto errout; |
| 1519 | } |
| 1520 | |
| 1521 | u_map = nla_data(tb[IFLA_MAP]); |
| 1522 | k_map.mem_start = (unsigned long) u_map->mem_start; |
| 1523 | k_map.mem_end = (unsigned long) u_map->mem_end; |
| 1524 | k_map.base_addr = (unsigned short) u_map->base_addr; |
| 1525 | k_map.irq = (unsigned char) u_map->irq; |
| 1526 | k_map.dma = (unsigned char) u_map->dma; |
| 1527 | k_map.port = (unsigned char) u_map->port; |
| 1528 | |
Stephen Hemminger | d314774 | 2008-11-19 21:32:24 -0800 | [diff] [blame] | 1529 | err = ops->ndo_set_config(dev, &k_map); |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1530 | if (err < 0) |
| 1531 | goto errout; |
| 1532 | |
| 1533 | modified = 1; |
| 1534 | } |
| 1535 | |
| 1536 | if (tb[IFLA_ADDRESS]) { |
| 1537 | struct sockaddr *sa; |
| 1538 | int len; |
| 1539 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1540 | len = sizeof(sa_family_t) + dev->addr_len; |
| 1541 | sa = kmalloc(len, GFP_KERNEL); |
| 1542 | if (!sa) { |
| 1543 | err = -ENOMEM; |
| 1544 | goto errout; |
| 1545 | } |
| 1546 | sa->sa_family = dev->type; |
| 1547 | memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]), |
| 1548 | dev->addr_len); |
Jiri Pirko | e7c3273 | 2013-01-01 03:30:13 +0000 | [diff] [blame] | 1549 | err = dev_set_mac_address(dev, sa); |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1550 | kfree(sa); |
| 1551 | if (err) |
| 1552 | goto errout; |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1553 | modified = 1; |
| 1554 | } |
| 1555 | |
| 1556 | if (tb[IFLA_MTU]) { |
| 1557 | err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU])); |
| 1558 | if (err < 0) |
| 1559 | goto errout; |
| 1560 | modified = 1; |
| 1561 | } |
| 1562 | |
Vlad Dogaru | cbda10f | 2011-01-13 23:38:30 +0000 | [diff] [blame] | 1563 | if (tb[IFLA_GROUP]) { |
| 1564 | dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP])); |
| 1565 | modified = 1; |
| 1566 | } |
| 1567 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1568 | /* |
| 1569 | * Interface selected by interface index but interface |
| 1570 | * name provided implies that a name change has been |
| 1571 | * requested. |
| 1572 | */ |
| 1573 | if (ifm->ifi_index > 0 && ifname[0]) { |
| 1574 | err = dev_change_name(dev, ifname); |
| 1575 | if (err < 0) |
| 1576 | goto errout; |
| 1577 | modified = 1; |
| 1578 | } |
| 1579 | |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 1580 | if (tb[IFLA_IFALIAS]) { |
| 1581 | err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]), |
| 1582 | nla_len(tb[IFLA_IFALIAS])); |
| 1583 | if (err < 0) |
| 1584 | goto errout; |
| 1585 | modified = 1; |
| 1586 | } |
| 1587 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1588 | if (tb[IFLA_BROADCAST]) { |
| 1589 | nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len); |
Jiri Pirko | e7c3273 | 2013-01-01 03:30:13 +0000 | [diff] [blame] | 1590 | call_netdevice_notifiers(NETDEV_CHANGEADDR, dev); |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1591 | } |
| 1592 | |
| 1593 | if (ifm->ifi_flags || ifm->ifi_change) { |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 1594 | err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm)); |
Johannes Berg | 5f9021c | 2008-11-16 23:20:31 -0800 | [diff] [blame] | 1595 | if (err < 0) |
| 1596 | goto errout; |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1597 | } |
| 1598 | |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1599 | if (tb[IFLA_MASTER]) { |
| 1600 | err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER])); |
| 1601 | if (err) |
| 1602 | goto errout; |
| 1603 | modified = 1; |
| 1604 | } |
| 1605 | |
Jiri Pirko | 9a57247 | 2012-12-27 23:49:39 +0000 | [diff] [blame] | 1606 | if (tb[IFLA_CARRIER]) { |
| 1607 | err = dev_change_carrier(dev, nla_get_u8(tb[IFLA_CARRIER])); |
| 1608 | if (err) |
| 1609 | goto errout; |
| 1610 | modified = 1; |
| 1611 | } |
| 1612 | |
David S. Miller | 93b2d4a | 2008-02-17 18:35:07 -0800 | [diff] [blame] | 1613 | if (tb[IFLA_TXQLEN]) |
| 1614 | dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]); |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1615 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1616 | if (tb[IFLA_OPERSTATE]) |
David S. Miller | 93b2d4a | 2008-02-17 18:35:07 -0800 | [diff] [blame] | 1617 | set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE])); |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1618 | |
| 1619 | if (tb[IFLA_LINKMODE]) { |
David S. Miller | 93b2d4a | 2008-02-17 18:35:07 -0800 | [diff] [blame] | 1620 | write_lock_bh(&dev_base_lock); |
| 1621 | dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]); |
| 1622 | write_unlock_bh(&dev_base_lock); |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1623 | } |
| 1624 | |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1625 | if (tb[IFLA_VFINFO_LIST]) { |
| 1626 | struct nlattr *attr; |
| 1627 | int rem; |
| 1628 | nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) { |
David Howells | 253683b | 2010-05-21 02:25:27 +0000 | [diff] [blame] | 1629 | if (nla_type(attr) != IFLA_VF_INFO) { |
| 1630 | err = -EINVAL; |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1631 | goto errout; |
David Howells | 253683b | 2010-05-21 02:25:27 +0000 | [diff] [blame] | 1632 | } |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1633 | err = do_setvfinfo(dev, attr); |
| 1634 | if (err < 0) |
| 1635 | goto errout; |
| 1636 | modified = 1; |
| 1637 | } |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 1638 | } |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1639 | err = 0; |
| 1640 | |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 1641 | if (tb[IFLA_VF_PORTS]) { |
| 1642 | struct nlattr *port[IFLA_PORT_MAX+1]; |
| 1643 | struct nlattr *attr; |
| 1644 | int vf; |
| 1645 | int rem; |
| 1646 | |
| 1647 | err = -EOPNOTSUPP; |
| 1648 | if (!ops->ndo_set_vf_port) |
| 1649 | goto errout; |
| 1650 | |
| 1651 | nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) { |
| 1652 | if (nla_type(attr) != IFLA_VF_PORT) |
| 1653 | continue; |
| 1654 | err = nla_parse_nested(port, IFLA_PORT_MAX, |
| 1655 | attr, ifla_port_policy); |
| 1656 | if (err < 0) |
| 1657 | goto errout; |
| 1658 | if (!port[IFLA_PORT_VF]) { |
| 1659 | err = -EOPNOTSUPP; |
| 1660 | goto errout; |
| 1661 | } |
| 1662 | vf = nla_get_u32(port[IFLA_PORT_VF]); |
| 1663 | err = ops->ndo_set_vf_port(dev, vf, port); |
| 1664 | if (err < 0) |
| 1665 | goto errout; |
| 1666 | modified = 1; |
| 1667 | } |
| 1668 | } |
| 1669 | err = 0; |
| 1670 | |
| 1671 | if (tb[IFLA_PORT_SELF]) { |
| 1672 | struct nlattr *port[IFLA_PORT_MAX+1]; |
| 1673 | |
| 1674 | err = nla_parse_nested(port, IFLA_PORT_MAX, |
| 1675 | tb[IFLA_PORT_SELF], ifla_port_policy); |
| 1676 | if (err < 0) |
| 1677 | goto errout; |
| 1678 | |
| 1679 | err = -EOPNOTSUPP; |
| 1680 | if (ops->ndo_set_vf_port) |
| 1681 | err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port); |
| 1682 | if (err < 0) |
| 1683 | goto errout; |
| 1684 | modified = 1; |
| 1685 | } |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 1686 | |
| 1687 | if (tb[IFLA_AF_SPEC]) { |
| 1688 | struct nlattr *af; |
| 1689 | int rem; |
| 1690 | |
| 1691 | nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) { |
| 1692 | const struct rtnl_af_ops *af_ops; |
| 1693 | |
| 1694 | if (!(af_ops = rtnl_af_lookup(nla_type(af)))) |
Thomas Graf | cf7afbf | 2010-11-22 01:31:54 +0000 | [diff] [blame] | 1695 | BUG(); |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 1696 | |
Thomas Graf | cf7afbf | 2010-11-22 01:31:54 +0000 | [diff] [blame] | 1697 | err = af_ops->set_link_af(dev, af); |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 1698 | if (err < 0) |
| 1699 | goto errout; |
| 1700 | |
| 1701 | modified = 1; |
| 1702 | } |
| 1703 | } |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 1704 | err = 0; |
| 1705 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1706 | errout: |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 1707 | if (err < 0 && modified) |
| 1708 | net_warn_ratelimited("A link change request failed with some changes committed already. Interface %s may have been left with an inconsistent configuration, please check.\n", |
| 1709 | dev->name); |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1710 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1711 | return err; |
| 1712 | } |
| 1713 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 1714 | static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1716 | struct net *net = sock_net(skb->sk); |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 1717 | struct ifinfomsg *ifm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | struct net_device *dev; |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1719 | int err; |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 1720 | struct nlattr *tb[IFLA_MAX+1]; |
| 1721 | char ifname[IFNAMSIZ]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 1723 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); |
| 1724 | if (err < 0) |
| 1725 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1726 | |
Thomas Graf | 5176f91 | 2006-08-26 20:13:18 -0700 | [diff] [blame] | 1727 | if (tb[IFLA_IFNAME]) |
| 1728 | nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); |
Patrick McHardy | 78e5b891 | 2006-09-13 20:35:36 -0700 | [diff] [blame] | 1729 | else |
| 1730 | ifname[0] = '\0'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | err = -EINVAL; |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 1733 | ifm = nlmsg_data(nlh); |
Patrick McHardy | 51055be | 2007-06-05 12:40:01 -0700 | [diff] [blame] | 1734 | if (ifm->ifi_index > 0) |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 1735 | dev = __dev_get_by_index(net, ifm->ifi_index); |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 1736 | else if (tb[IFLA_IFNAME]) |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 1737 | dev = __dev_get_by_name(net, ifname); |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 1738 | else |
| 1739 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 1741 | if (dev == NULL) { |
| 1742 | err = -ENODEV; |
| 1743 | goto errout; |
| 1744 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 1746 | err = validate_linkmsg(dev, tb); |
| 1747 | if (err < 0) |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 1748 | goto errout; |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 1749 | |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 1750 | err = do_setlink(skb, dev, ifm, tb, ifname, 0); |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 1751 | errout: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | return err; |
| 1753 | } |
| 1754 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 1755 | static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh) |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1756 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1757 | struct net *net = sock_net(skb->sk); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1758 | const struct rtnl_link_ops *ops; |
| 1759 | struct net_device *dev; |
| 1760 | struct ifinfomsg *ifm; |
| 1761 | char ifname[IFNAMSIZ]; |
| 1762 | struct nlattr *tb[IFLA_MAX+1]; |
| 1763 | int err; |
Eric Dumazet | 226bd34 | 2011-05-08 23:17:57 +0000 | [diff] [blame] | 1764 | LIST_HEAD(list_kill); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1765 | |
| 1766 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); |
| 1767 | if (err < 0) |
| 1768 | return err; |
| 1769 | |
| 1770 | if (tb[IFLA_IFNAME]) |
| 1771 | nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); |
| 1772 | |
| 1773 | ifm = nlmsg_data(nlh); |
| 1774 | if (ifm->ifi_index > 0) |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 1775 | dev = __dev_get_by_index(net, ifm->ifi_index); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1776 | else if (tb[IFLA_IFNAME]) |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 1777 | dev = __dev_get_by_name(net, ifname); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1778 | else |
| 1779 | return -EINVAL; |
| 1780 | |
| 1781 | if (!dev) |
| 1782 | return -ENODEV; |
| 1783 | |
| 1784 | ops = dev->rtnl_link_ops; |
Jiri Pirko | b0ab2fa | 2014-06-26 09:58:25 +0200 | [diff] [blame] | 1785 | if (!ops || !ops->dellink) |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1786 | return -EOPNOTSUPP; |
| 1787 | |
Eric Dumazet | 226bd34 | 2011-05-08 23:17:57 +0000 | [diff] [blame] | 1788 | ops->dellink(dev, &list_kill); |
| 1789 | unregister_netdevice_many(&list_kill); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1790 | return 0; |
| 1791 | } |
| 1792 | |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 1793 | int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm) |
| 1794 | { |
| 1795 | unsigned int old_flags; |
| 1796 | int err; |
| 1797 | |
| 1798 | old_flags = dev->flags; |
| 1799 | if (ifm && (ifm->ifi_flags || ifm->ifi_change)) { |
| 1800 | err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm)); |
| 1801 | if (err < 0) |
| 1802 | return err; |
| 1803 | } |
| 1804 | |
| 1805 | dev->rtnl_link_state = RTNL_LINK_INITIALIZED; |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 1806 | |
Nicolas Dichtel | a528c21 | 2013-09-25 12:02:44 +0200 | [diff] [blame] | 1807 | __dev_notify_flags(dev, old_flags, ~0U); |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 1808 | return 0; |
| 1809 | } |
| 1810 | EXPORT_SYMBOL(rtnl_configure_link); |
| 1811 | |
Rami Rosen | c071356 | 2012-11-30 01:08:47 +0000 | [diff] [blame] | 1812 | struct net_device *rtnl_create_link(struct net *net, |
Tom Gundersen | 5517750 | 2014-07-14 16:37:25 +0200 | [diff] [blame] | 1813 | char *ifname, unsigned char name_assign_type, |
| 1814 | const struct rtnl_link_ops *ops, struct nlattr *tb[]) |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 1815 | { |
| 1816 | int err; |
| 1817 | struct net_device *dev; |
Jiri Pirko | d40156a | 2012-07-20 02:28:47 +0000 | [diff] [blame] | 1818 | unsigned int num_tx_queues = 1; |
| 1819 | unsigned int num_rx_queues = 1; |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 1820 | |
Jiri Pirko | 76ff5cc | 2012-07-20 02:28:48 +0000 | [diff] [blame] | 1821 | if (tb[IFLA_NUM_TX_QUEUES]) |
| 1822 | num_tx_queues = nla_get_u32(tb[IFLA_NUM_TX_QUEUES]); |
| 1823 | else if (ops->get_num_tx_queues) |
Jiri Pirko | d40156a | 2012-07-20 02:28:47 +0000 | [diff] [blame] | 1824 | num_tx_queues = ops->get_num_tx_queues(); |
Jiri Pirko | 76ff5cc | 2012-07-20 02:28:48 +0000 | [diff] [blame] | 1825 | |
| 1826 | if (tb[IFLA_NUM_RX_QUEUES]) |
| 1827 | num_rx_queues = nla_get_u32(tb[IFLA_NUM_RX_QUEUES]); |
| 1828 | else if (ops->get_num_rx_queues) |
Jiri Pirko | d40156a | 2012-07-20 02:28:47 +0000 | [diff] [blame] | 1829 | num_rx_queues = ops->get_num_rx_queues(); |
stephen hemminger | efacb30 | 2012-04-10 18:34:43 +0000 | [diff] [blame] | 1830 | |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 1831 | err = -ENOMEM; |
Tom Gundersen | 5517750 | 2014-07-14 16:37:25 +0200 | [diff] [blame] | 1832 | dev = alloc_netdev_mqs(ops->priv_size, ifname, name_assign_type, |
Tom Gundersen | c835a67 | 2014-07-14 16:37:24 +0200 | [diff] [blame] | 1833 | ops->setup, num_tx_queues, num_rx_queues); |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 1834 | if (!dev) |
| 1835 | goto err; |
| 1836 | |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 1837 | dev_net_set(dev, net); |
| 1838 | dev->rtnl_link_ops = ops; |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 1839 | dev->rtnl_link_state = RTNL_LINK_INITIALIZING; |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 1840 | |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 1841 | if (tb[IFLA_MTU]) |
| 1842 | dev->mtu = nla_get_u32(tb[IFLA_MTU]); |
Jiri Pirko | 2afb9b5 | 2013-01-06 12:41:57 +0000 | [diff] [blame] | 1843 | if (tb[IFLA_ADDRESS]) { |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 1844 | memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]), |
| 1845 | nla_len(tb[IFLA_ADDRESS])); |
Jiri Pirko | 2afb9b5 | 2013-01-06 12:41:57 +0000 | [diff] [blame] | 1846 | dev->addr_assign_type = NET_ADDR_SET; |
| 1847 | } |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 1848 | if (tb[IFLA_BROADCAST]) |
| 1849 | memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]), |
| 1850 | nla_len(tb[IFLA_BROADCAST])); |
| 1851 | if (tb[IFLA_TXQLEN]) |
| 1852 | dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]); |
| 1853 | if (tb[IFLA_OPERSTATE]) |
David S. Miller | 93b2d4a | 2008-02-17 18:35:07 -0800 | [diff] [blame] | 1854 | set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE])); |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 1855 | if (tb[IFLA_LINKMODE]) |
| 1856 | dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]); |
Patrick McHardy | ffa934f | 2011-01-20 03:00:42 +0000 | [diff] [blame] | 1857 | if (tb[IFLA_GROUP]) |
| 1858 | dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP])); |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 1859 | |
| 1860 | return dev; |
| 1861 | |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 1862 | err: |
| 1863 | return ERR_PTR(err); |
| 1864 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 1865 | EXPORT_SYMBOL(rtnl_create_link); |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 1866 | |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 1867 | static int rtnl_group_changelink(const struct sk_buff *skb, |
| 1868 | struct net *net, int group, |
Vlad Dogaru | e7ed828 | 2011-01-13 23:38:31 +0000 | [diff] [blame] | 1869 | struct ifinfomsg *ifm, |
| 1870 | struct nlattr **tb) |
| 1871 | { |
| 1872 | struct net_device *dev; |
| 1873 | int err; |
| 1874 | |
| 1875 | for_each_netdev(net, dev) { |
| 1876 | if (dev->group == group) { |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 1877 | err = do_setlink(skb, dev, ifm, tb, NULL, 0); |
Vlad Dogaru | e7ed828 | 2011-01-13 23:38:31 +0000 | [diff] [blame] | 1878 | if (err < 0) |
| 1879 | return err; |
| 1880 | } |
| 1881 | } |
| 1882 | |
| 1883 | return 0; |
| 1884 | } |
| 1885 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 1886 | static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh) |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1887 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1888 | struct net *net = sock_net(skb->sk); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1889 | const struct rtnl_link_ops *ops; |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 1890 | const struct rtnl_link_ops *m_ops = NULL; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1891 | struct net_device *dev; |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 1892 | struct net_device *master_dev = NULL; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1893 | struct ifinfomsg *ifm; |
| 1894 | char kind[MODULE_NAME_LEN]; |
| 1895 | char ifname[IFNAMSIZ]; |
| 1896 | struct nlattr *tb[IFLA_MAX+1]; |
| 1897 | struct nlattr *linkinfo[IFLA_INFO_MAX+1]; |
Tom Gundersen | 5517750 | 2014-07-14 16:37:25 +0200 | [diff] [blame] | 1898 | unsigned char name_assign_type = NET_NAME_USER; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1899 | int err; |
| 1900 | |
Johannes Berg | 95a5afc | 2008-10-16 15:24:51 -0700 | [diff] [blame] | 1901 | #ifdef CONFIG_MODULES |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1902 | replay: |
Thomas Graf | 8072f08 | 2007-07-31 14:13:50 -0700 | [diff] [blame] | 1903 | #endif |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1904 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); |
| 1905 | if (err < 0) |
| 1906 | return err; |
| 1907 | |
| 1908 | if (tb[IFLA_IFNAME]) |
| 1909 | nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); |
| 1910 | else |
| 1911 | ifname[0] = '\0'; |
| 1912 | |
| 1913 | ifm = nlmsg_data(nlh); |
| 1914 | if (ifm->ifi_index > 0) |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 1915 | dev = __dev_get_by_index(net, ifm->ifi_index); |
Vlad Dogaru | e7ed828 | 2011-01-13 23:38:31 +0000 | [diff] [blame] | 1916 | else { |
| 1917 | if (ifname[0]) |
| 1918 | dev = __dev_get_by_name(net, ifname); |
Vlad Dogaru | e7ed828 | 2011-01-13 23:38:31 +0000 | [diff] [blame] | 1919 | else |
| 1920 | dev = NULL; |
| 1921 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1922 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 1923 | if (dev) { |
| 1924 | master_dev = netdev_master_upper_dev_get(dev); |
| 1925 | if (master_dev) |
| 1926 | m_ops = master_dev->rtnl_link_ops; |
| 1927 | } |
| 1928 | |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 1929 | err = validate_linkmsg(dev, tb); |
| 1930 | if (err < 0) |
Thomas Graf | 1840bb1 | 2008-02-23 19:54:36 -0800 | [diff] [blame] | 1931 | return err; |
| 1932 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1933 | if (tb[IFLA_LINKINFO]) { |
| 1934 | err = nla_parse_nested(linkinfo, IFLA_INFO_MAX, |
| 1935 | tb[IFLA_LINKINFO], ifla_info_policy); |
| 1936 | if (err < 0) |
| 1937 | return err; |
| 1938 | } else |
| 1939 | memset(linkinfo, 0, sizeof(linkinfo)); |
| 1940 | |
| 1941 | if (linkinfo[IFLA_INFO_KIND]) { |
| 1942 | nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind)); |
| 1943 | ops = rtnl_link_ops_get(kind); |
| 1944 | } else { |
| 1945 | kind[0] = '\0'; |
| 1946 | ops = NULL; |
| 1947 | } |
| 1948 | |
| 1949 | if (1) { |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 1950 | struct nlattr *attr[ops ? ops->maxtype + 1 : 0]; |
| 1951 | struct nlattr *slave_attr[m_ops ? m_ops->slave_maxtype + 1 : 0]; |
| 1952 | struct nlattr **data = NULL; |
| 1953 | struct nlattr **slave_data = NULL; |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 1954 | struct net *dest_net; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1955 | |
| 1956 | if (ops) { |
| 1957 | if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) { |
| 1958 | err = nla_parse_nested(attr, ops->maxtype, |
| 1959 | linkinfo[IFLA_INFO_DATA], |
| 1960 | ops->policy); |
| 1961 | if (err < 0) |
| 1962 | return err; |
| 1963 | data = attr; |
| 1964 | } |
| 1965 | if (ops->validate) { |
| 1966 | err = ops->validate(tb, data); |
| 1967 | if (err < 0) |
| 1968 | return err; |
| 1969 | } |
| 1970 | } |
| 1971 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 1972 | if (m_ops) { |
| 1973 | if (m_ops->slave_maxtype && |
| 1974 | linkinfo[IFLA_INFO_SLAVE_DATA]) { |
| 1975 | err = nla_parse_nested(slave_attr, |
| 1976 | m_ops->slave_maxtype, |
| 1977 | linkinfo[IFLA_INFO_SLAVE_DATA], |
| 1978 | m_ops->slave_policy); |
| 1979 | if (err < 0) |
| 1980 | return err; |
| 1981 | slave_data = slave_attr; |
| 1982 | } |
| 1983 | if (m_ops->slave_validate) { |
| 1984 | err = m_ops->slave_validate(tb, slave_data); |
| 1985 | if (err < 0) |
| 1986 | return err; |
| 1987 | } |
| 1988 | } |
| 1989 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1990 | if (dev) { |
| 1991 | int modified = 0; |
| 1992 | |
| 1993 | if (nlh->nlmsg_flags & NLM_F_EXCL) |
| 1994 | return -EEXIST; |
| 1995 | if (nlh->nlmsg_flags & NLM_F_REPLACE) |
| 1996 | return -EOPNOTSUPP; |
| 1997 | |
| 1998 | if (linkinfo[IFLA_INFO_DATA]) { |
| 1999 | if (!ops || ops != dev->rtnl_link_ops || |
| 2000 | !ops->changelink) |
| 2001 | return -EOPNOTSUPP; |
| 2002 | |
| 2003 | err = ops->changelink(dev, tb, data); |
| 2004 | if (err < 0) |
| 2005 | return err; |
| 2006 | modified = 1; |
| 2007 | } |
| 2008 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 2009 | if (linkinfo[IFLA_INFO_SLAVE_DATA]) { |
| 2010 | if (!m_ops || !m_ops->slave_changelink) |
| 2011 | return -EOPNOTSUPP; |
| 2012 | |
| 2013 | err = m_ops->slave_changelink(master_dev, dev, |
| 2014 | tb, slave_data); |
| 2015 | if (err < 0) |
| 2016 | return err; |
| 2017 | modified = 1; |
| 2018 | } |
| 2019 | |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 2020 | return do_setlink(skb, dev, ifm, tb, ifname, modified); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2021 | } |
| 2022 | |
Patrick McHardy | ffa934f | 2011-01-20 03:00:42 +0000 | [diff] [blame] | 2023 | if (!(nlh->nlmsg_flags & NLM_F_CREATE)) { |
| 2024 | if (ifm->ifi_index == 0 && tb[IFLA_GROUP]) |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 2025 | return rtnl_group_changelink(skb, net, |
Patrick McHardy | ffa934f | 2011-01-20 03:00:42 +0000 | [diff] [blame] | 2026 | nla_get_u32(tb[IFLA_GROUP]), |
| 2027 | ifm, tb); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2028 | return -ENODEV; |
Patrick McHardy | ffa934f | 2011-01-20 03:00:42 +0000 | [diff] [blame] | 2029 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2030 | |
Patrick McHardy | 0e06877 | 2007-07-11 19:42:31 -0700 | [diff] [blame] | 2031 | if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO]) |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2032 | return -EOPNOTSUPP; |
| 2033 | |
| 2034 | if (!ops) { |
Johannes Berg | 95a5afc | 2008-10-16 15:24:51 -0700 | [diff] [blame] | 2035 | #ifdef CONFIG_MODULES |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2036 | if (kind[0]) { |
| 2037 | __rtnl_unlock(); |
| 2038 | request_module("rtnl-link-%s", kind); |
| 2039 | rtnl_lock(); |
| 2040 | ops = rtnl_link_ops_get(kind); |
| 2041 | if (ops) |
| 2042 | goto replay; |
| 2043 | } |
| 2044 | #endif |
| 2045 | return -EOPNOTSUPP; |
| 2046 | } |
| 2047 | |
Jiri Pirko | b0ab2fa | 2014-06-26 09:58:25 +0200 | [diff] [blame] | 2048 | if (!ops->setup) |
| 2049 | return -EOPNOTSUPP; |
| 2050 | |
Tom Gundersen | 5517750 | 2014-07-14 16:37:25 +0200 | [diff] [blame] | 2051 | if (!ifname[0]) { |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2052 | snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind); |
Tom Gundersen | 5517750 | 2014-07-14 16:37:25 +0200 | [diff] [blame] | 2053 | name_assign_type = NET_NAME_ENUM; |
| 2054 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2055 | |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 2056 | dest_net = rtnl_link_get_net(net, tb); |
Eric W. Biederman | 13ad177 | 2011-01-29 14:57:22 +0000 | [diff] [blame] | 2057 | if (IS_ERR(dest_net)) |
| 2058 | return PTR_ERR(dest_net); |
| 2059 | |
Tom Gundersen | 5517750 | 2014-07-14 16:37:25 +0200 | [diff] [blame] | 2060 | dev = rtnl_create_link(dest_net, ifname, name_assign_type, ops, tb); |
Pavel Emelyanov | 9c7dafb | 2012-08-08 21:52:46 +0000 | [diff] [blame] | 2061 | if (IS_ERR(dev)) { |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 2062 | err = PTR_ERR(dev); |
Pavel Emelyanov | 9c7dafb | 2012-08-08 21:52:46 +0000 | [diff] [blame] | 2063 | goto out; |
| 2064 | } |
| 2065 | |
| 2066 | dev->ifindex = ifm->ifi_index; |
| 2067 | |
Cong Wang | 0e0eee2 | 2014-02-11 15:51:30 -0800 | [diff] [blame] | 2068 | if (ops->newlink) { |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 2069 | err = ops->newlink(net, dev, tb, data); |
Cong Wang | 0e0eee2 | 2014-02-11 15:51:30 -0800 | [diff] [blame] | 2070 | /* Drivers should call free_netdev() in ->destructor |
Cong Wang | e51fb15 | 2014-06-03 16:40:47 -0700 | [diff] [blame] | 2071 | * and unregister it on failure after registration |
| 2072 | * so that device could be finally freed in rtnl_unlock. |
Cong Wang | 0e0eee2 | 2014-02-11 15:51:30 -0800 | [diff] [blame] | 2073 | */ |
Cong Wang | e51fb15 | 2014-06-03 16:40:47 -0700 | [diff] [blame] | 2074 | if (err < 0) { |
| 2075 | /* If device is not registered at all, free it now */ |
| 2076 | if (dev->reg_state == NETREG_UNINITIALIZED) |
| 2077 | free_netdev(dev); |
Cong Wang | 0e0eee2 | 2014-02-11 15:51:30 -0800 | [diff] [blame] | 2078 | goto out; |
Cong Wang | e51fb15 | 2014-06-03 16:40:47 -0700 | [diff] [blame] | 2079 | } |
Cong Wang | 0e0eee2 | 2014-02-11 15:51:30 -0800 | [diff] [blame] | 2080 | } else { |
Patrick McHardy | 2d85cba | 2007-07-11 19:42:13 -0700 | [diff] [blame] | 2081 | err = register_netdevice(dev); |
Cong Wang | 0e0eee2 | 2014-02-11 15:51:30 -0800 | [diff] [blame] | 2082 | if (err < 0) { |
| 2083 | free_netdev(dev); |
| 2084 | goto out; |
| 2085 | } |
Dan Carpenter | fce9b9b | 2013-08-14 12:35:42 +0300 | [diff] [blame] | 2086 | } |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 2087 | err = rtnl_configure_link(dev, ifm); |
| 2088 | if (err < 0) |
| 2089 | unregister_netdevice(dev); |
| 2090 | out: |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 2091 | put_net(dest_net); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2092 | return err; |
| 2093 | } |
| 2094 | } |
| 2095 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 2096 | static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh) |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2097 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 2098 | struct net *net = sock_net(skb->sk); |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2099 | struct ifinfomsg *ifm; |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2100 | char ifname[IFNAMSIZ]; |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2101 | struct nlattr *tb[IFLA_MAX+1]; |
| 2102 | struct net_device *dev = NULL; |
| 2103 | struct sk_buff *nskb; |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 2104 | int err; |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2105 | u32 ext_filter_mask = 0; |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2106 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2107 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); |
| 2108 | if (err < 0) |
Eric Sesterhenn | 9918f23 | 2006-09-26 23:26:38 -0700 | [diff] [blame] | 2109 | return err; |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2110 | |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2111 | if (tb[IFLA_IFNAME]) |
| 2112 | nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); |
| 2113 | |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2114 | if (tb[IFLA_EXT_MASK]) |
| 2115 | ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]); |
| 2116 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2117 | ifm = nlmsg_data(nlh); |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2118 | if (ifm->ifi_index > 0) |
| 2119 | dev = __dev_get_by_index(net, ifm->ifi_index); |
| 2120 | else if (tb[IFLA_IFNAME]) |
| 2121 | dev = __dev_get_by_name(net, ifname); |
| 2122 | else |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2123 | return -EINVAL; |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2124 | |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2125 | if (dev == NULL) |
| 2126 | return -ENODEV; |
| 2127 | |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2128 | nskb = nlmsg_new(if_nlmsg_size(dev, ext_filter_mask), GFP_KERNEL); |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2129 | if (nskb == NULL) |
| 2130 | return -ENOBUFS; |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2131 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2132 | err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).portid, |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2133 | nlh->nlmsg_seq, 0, 0, ext_filter_mask); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 2134 | if (err < 0) { |
| 2135 | /* -EMSGSIZE implies BUG in if_nlmsg_size */ |
| 2136 | WARN_ON(err == -EMSGSIZE); |
| 2137 | kfree_skb(nskb); |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2138 | } else |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2139 | err = rtnl_unicast(nskb, net, NETLINK_CB(skb).portid); |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2140 | |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2141 | return err; |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2142 | } |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2143 | |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2144 | static u16 rtnl_calcit(struct sk_buff *skb, struct nlmsghdr *nlh) |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2145 | { |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2146 | struct net *net = sock_net(skb->sk); |
| 2147 | struct net_device *dev; |
| 2148 | struct nlattr *tb[IFLA_MAX+1]; |
| 2149 | u32 ext_filter_mask = 0; |
| 2150 | u16 min_ifinfo_dump_size = 0; |
Michal Schmidt | e5eca6d | 2014-05-28 14:15:19 +0200 | [diff] [blame] | 2151 | int hdrlen; |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2152 | |
Michal Schmidt | e5eca6d | 2014-05-28 14:15:19 +0200 | [diff] [blame] | 2153 | /* Same kernel<->userspace interface hack as in rtnl_dump_ifinfo. */ |
| 2154 | hdrlen = nlmsg_len(nlh) < sizeof(struct ifinfomsg) ? |
| 2155 | sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg); |
| 2156 | |
| 2157 | if (nlmsg_parse(nlh, hdrlen, tb, IFLA_MAX, ifla_policy) >= 0) { |
Eric Dumazet | a4b64fb | 2012-03-04 12:32:10 +0000 | [diff] [blame] | 2158 | if (tb[IFLA_EXT_MASK]) |
| 2159 | ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]); |
| 2160 | } |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2161 | |
| 2162 | if (!ext_filter_mask) |
| 2163 | return NLMSG_GOODSIZE; |
| 2164 | /* |
| 2165 | * traverse the list of net devices and compute the minimum |
| 2166 | * buffer size based upon the filter mask. |
| 2167 | */ |
| 2168 | list_for_each_entry(dev, &net->dev_base_head, dev_list) { |
| 2169 | min_ifinfo_dump_size = max_t(u16, min_ifinfo_dump_size, |
| 2170 | if_nlmsg_size(dev, |
| 2171 | ext_filter_mask)); |
| 2172 | } |
| 2173 | |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2174 | return min_ifinfo_dump_size; |
| 2175 | } |
| 2176 | |
Adrian Bunk | 42bad1d | 2007-04-26 00:57:41 -0700 | [diff] [blame] | 2177 | 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] | 2178 | { |
| 2179 | int idx; |
| 2180 | int s_idx = cb->family; |
| 2181 | |
| 2182 | if (s_idx == 0) |
| 2183 | s_idx = 1; |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 2184 | for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2185 | int type = cb->nlh->nlmsg_type-RTM_BASE; |
| 2186 | if (idx < s_idx || idx == PF_PACKET) |
| 2187 | continue; |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 2188 | if (rtnl_msg_handlers[idx] == NULL || |
| 2189 | rtnl_msg_handlers[idx][type].dumpit == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2190 | continue; |
Nicolas Dichtel | 0465277 | 2013-03-22 06:28:42 +0000 | [diff] [blame] | 2191 | if (idx > s_idx) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2192 | memset(&cb->args[0], 0, sizeof(cb->args)); |
Nicolas Dichtel | 0465277 | 2013-03-22 06:28:42 +0000 | [diff] [blame] | 2193 | cb->prev_seq = 0; |
| 2194 | cb->seq = 0; |
| 2195 | } |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 2196 | if (rtnl_msg_handlers[idx][type].dumpit(skb, cb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2197 | break; |
| 2198 | } |
| 2199 | cb->family = idx; |
| 2200 | |
| 2201 | return skb->len; |
| 2202 | } |
| 2203 | |
Alexei Starovoitov | 7f29405 | 2013-10-23 16:02:42 -0700 | [diff] [blame] | 2204 | void rtmsg_ifinfo(int type, struct net_device *dev, unsigned int change, |
| 2205 | gfp_t flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | { |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 2207 | struct net *net = dev_net(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2208 | struct sk_buff *skb; |
Thomas Graf | 0ec6d3f | 2006-08-15 00:37:09 -0700 | [diff] [blame] | 2209 | int err = -ENOBUFS; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2210 | size_t if_info_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | |
Alexei Starovoitov | 7f29405 | 2013-10-23 16:02:42 -0700 | [diff] [blame] | 2212 | skb = nlmsg_new((if_info_size = if_nlmsg_size(dev, 0)), flags); |
Thomas Graf | 0ec6d3f | 2006-08-15 00:37:09 -0700 | [diff] [blame] | 2213 | if (skb == NULL) |
| 2214 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2215 | |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2216 | err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0, 0); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 2217 | if (err < 0) { |
| 2218 | /* -EMSGSIZE implies BUG in if_nlmsg_size() */ |
| 2219 | WARN_ON(err == -EMSGSIZE); |
| 2220 | kfree_skb(skb); |
| 2221 | goto errout; |
| 2222 | } |
Alexei Starovoitov | 7f29405 | 2013-10-23 16:02:42 -0700 | [diff] [blame] | 2223 | rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, flags); |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 2224 | return; |
Thomas Graf | 0ec6d3f | 2006-08-15 00:37:09 -0700 | [diff] [blame] | 2225 | errout: |
| 2226 | if (err < 0) |
Eric W. Biederman | 4b3da70 | 2007-11-19 22:27:40 -0800 | [diff] [blame] | 2227 | rtnl_set_sk_err(net, RTNLGRP_LINK, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2228 | } |
Jiri Pirko | 471cb5a | 2013-01-03 22:49:01 +0000 | [diff] [blame] | 2229 | EXPORT_SYMBOL(rtmsg_ifinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2231 | static int nlmsg_populate_fdb_fill(struct sk_buff *skb, |
| 2232 | struct net_device *dev, |
| 2233 | u8 *addr, u32 pid, u32 seq, |
Nicolas Dichtel | 1c104a6 | 2014-03-19 17:47:49 +0100 | [diff] [blame] | 2234 | int type, unsigned int flags, |
| 2235 | int nlflags) |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2236 | { |
| 2237 | struct nlmsghdr *nlh; |
| 2238 | struct ndmsg *ndm; |
| 2239 | |
Nicolas Dichtel | 1c104a6 | 2014-03-19 17:47:49 +0100 | [diff] [blame] | 2240 | nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), nlflags); |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2241 | if (!nlh) |
| 2242 | return -EMSGSIZE; |
| 2243 | |
| 2244 | ndm = nlmsg_data(nlh); |
| 2245 | ndm->ndm_family = AF_BRIDGE; |
| 2246 | ndm->ndm_pad1 = 0; |
| 2247 | ndm->ndm_pad2 = 0; |
| 2248 | ndm->ndm_flags = flags; |
| 2249 | ndm->ndm_type = 0; |
| 2250 | ndm->ndm_ifindex = dev->ifindex; |
| 2251 | ndm->ndm_state = NUD_PERMANENT; |
| 2252 | |
| 2253 | if (nla_put(skb, NDA_LLADDR, ETH_ALEN, addr)) |
| 2254 | goto nla_put_failure; |
| 2255 | |
| 2256 | return nlmsg_end(skb, nlh); |
| 2257 | |
| 2258 | nla_put_failure: |
| 2259 | nlmsg_cancel(skb, nlh); |
| 2260 | return -EMSGSIZE; |
| 2261 | } |
| 2262 | |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 2263 | static inline size_t rtnl_fdb_nlmsg_size(void) |
| 2264 | { |
| 2265 | return NLMSG_ALIGN(sizeof(struct ndmsg)) + nla_total_size(ETH_ALEN); |
| 2266 | } |
| 2267 | |
| 2268 | static void rtnl_fdb_notify(struct net_device *dev, u8 *addr, int type) |
| 2269 | { |
| 2270 | struct net *net = dev_net(dev); |
| 2271 | struct sk_buff *skb; |
| 2272 | int err = -ENOBUFS; |
| 2273 | |
| 2274 | skb = nlmsg_new(rtnl_fdb_nlmsg_size(), GFP_ATOMIC); |
| 2275 | if (!skb) |
| 2276 | goto errout; |
| 2277 | |
Nicolas Dichtel | 1c104a6 | 2014-03-19 17:47:49 +0100 | [diff] [blame] | 2278 | err = nlmsg_populate_fdb_fill(skb, dev, addr, 0, 0, type, NTF_SELF, 0); |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 2279 | if (err < 0) { |
| 2280 | kfree_skb(skb); |
| 2281 | goto errout; |
| 2282 | } |
| 2283 | |
| 2284 | rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC); |
| 2285 | return; |
| 2286 | errout: |
| 2287 | rtnl_set_sk_err(net, RTNLGRP_NEIGH, err); |
| 2288 | } |
| 2289 | |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 2290 | /** |
| 2291 | * ndo_dflt_fdb_add - default netdevice operation to add an FDB entry |
| 2292 | */ |
| 2293 | int ndo_dflt_fdb_add(struct ndmsg *ndm, |
| 2294 | struct nlattr *tb[], |
| 2295 | struct net_device *dev, |
| 2296 | const unsigned char *addr, |
| 2297 | u16 flags) |
| 2298 | { |
| 2299 | int err = -EINVAL; |
| 2300 | |
| 2301 | /* If aging addresses are supported device will need to |
| 2302 | * implement its own handler for this. |
| 2303 | */ |
| 2304 | if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) { |
| 2305 | pr_info("%s: FDB only supports static addresses\n", dev->name); |
| 2306 | return err; |
| 2307 | } |
| 2308 | |
| 2309 | if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) |
| 2310 | err = dev_uc_add_excl(dev, addr); |
| 2311 | else if (is_multicast_ether_addr(addr)) |
| 2312 | err = dev_mc_add_excl(dev, addr); |
| 2313 | |
| 2314 | /* Only return duplicate errors if NLM_F_EXCL is set */ |
| 2315 | if (err == -EEXIST && !(flags & NLM_F_EXCL)) |
| 2316 | err = 0; |
| 2317 | |
| 2318 | return err; |
| 2319 | } |
| 2320 | EXPORT_SYMBOL(ndo_dflt_fdb_add); |
| 2321 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 2322 | static int rtnl_fdb_add(struct sk_buff *skb, struct nlmsghdr *nlh) |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2323 | { |
| 2324 | struct net *net = sock_net(skb->sk); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2325 | struct ndmsg *ndm; |
| 2326 | struct nlattr *tb[NDA_MAX+1]; |
| 2327 | struct net_device *dev; |
| 2328 | u8 *addr; |
| 2329 | int err; |
| 2330 | |
| 2331 | err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL); |
| 2332 | if (err < 0) |
| 2333 | return err; |
| 2334 | |
| 2335 | ndm = nlmsg_data(nlh); |
| 2336 | if (ndm->ndm_ifindex == 0) { |
| 2337 | pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid ifindex\n"); |
| 2338 | return -EINVAL; |
| 2339 | } |
| 2340 | |
| 2341 | dev = __dev_get_by_index(net, ndm->ndm_ifindex); |
| 2342 | if (dev == NULL) { |
| 2343 | pr_info("PF_BRIDGE: RTM_NEWNEIGH with unknown ifindex\n"); |
| 2344 | return -ENODEV; |
| 2345 | } |
| 2346 | |
| 2347 | if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) { |
| 2348 | pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid address\n"); |
| 2349 | return -EINVAL; |
| 2350 | } |
| 2351 | |
| 2352 | addr = nla_data(tb[NDA_LLADDR]); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2353 | |
| 2354 | err = -EOPNOTSUPP; |
| 2355 | |
| 2356 | /* Support fdb on master device the net/bridge default case */ |
| 2357 | if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) && |
| 2358 | (dev->priv_flags & IFF_BRIDGE_PORT)) { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 2359 | struct net_device *br_dev = netdev_master_upper_dev_get(dev); |
| 2360 | const struct net_device_ops *ops = br_dev->netdev_ops; |
| 2361 | |
| 2362 | err = ops->ndo_fdb_add(ndm, tb, dev, addr, nlh->nlmsg_flags); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2363 | if (err) |
| 2364 | goto out; |
| 2365 | else |
| 2366 | ndm->ndm_flags &= ~NTF_MASTER; |
| 2367 | } |
| 2368 | |
| 2369 | /* Embedded bridge, macvlan, and any other device support */ |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 2370 | if ((ndm->ndm_flags & NTF_SELF)) { |
| 2371 | if (dev->netdev_ops->ndo_fdb_add) |
| 2372 | err = dev->netdev_ops->ndo_fdb_add(ndm, tb, dev, addr, |
| 2373 | nlh->nlmsg_flags); |
| 2374 | else |
| 2375 | err = ndo_dflt_fdb_add(ndm, tb, dev, addr, |
| 2376 | nlh->nlmsg_flags); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2377 | |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 2378 | if (!err) { |
| 2379 | rtnl_fdb_notify(dev, addr, RTM_NEWNEIGH); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2380 | ndm->ndm_flags &= ~NTF_SELF; |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 2381 | } |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2382 | } |
| 2383 | out: |
| 2384 | return err; |
| 2385 | } |
| 2386 | |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 2387 | /** |
| 2388 | * ndo_dflt_fdb_del - default netdevice operation to delete an FDB entry |
| 2389 | */ |
| 2390 | int ndo_dflt_fdb_del(struct ndmsg *ndm, |
| 2391 | struct nlattr *tb[], |
| 2392 | struct net_device *dev, |
| 2393 | const unsigned char *addr) |
| 2394 | { |
Alexander Duyck | c8a89c4 | 2014-07-15 15:15:20 -0700 | [diff] [blame] | 2395 | int err = -EINVAL; |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 2396 | |
| 2397 | /* If aging addresses are supported device will need to |
| 2398 | * implement its own handler for this. |
| 2399 | */ |
Sridhar Samudrala | 6453599 | 2013-08-08 15:19:48 -0700 | [diff] [blame] | 2400 | if (!(ndm->ndm_state & NUD_PERMANENT)) { |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 2401 | pr_info("%s: FDB only supports static addresses\n", dev->name); |
Alexander Duyck | c8a89c4 | 2014-07-15 15:15:20 -0700 | [diff] [blame] | 2402 | return err; |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 2403 | } |
| 2404 | |
| 2405 | if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) |
| 2406 | err = dev_uc_del(dev, addr); |
| 2407 | else if (is_multicast_ether_addr(addr)) |
| 2408 | err = dev_mc_del(dev, addr); |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 2409 | |
| 2410 | return err; |
| 2411 | } |
| 2412 | EXPORT_SYMBOL(ndo_dflt_fdb_del); |
| 2413 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 2414 | static int rtnl_fdb_del(struct sk_buff *skb, struct nlmsghdr *nlh) |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2415 | { |
| 2416 | struct net *net = sock_net(skb->sk); |
| 2417 | struct ndmsg *ndm; |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 2418 | struct nlattr *tb[NDA_MAX+1]; |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2419 | struct net_device *dev; |
| 2420 | int err = -EINVAL; |
| 2421 | __u8 *addr; |
| 2422 | |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 2423 | if (!netlink_capable(skb, CAP_NET_ADMIN)) |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 2424 | return -EPERM; |
| 2425 | |
| 2426 | err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL); |
| 2427 | if (err < 0) |
| 2428 | return err; |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2429 | |
| 2430 | ndm = nlmsg_data(nlh); |
| 2431 | if (ndm->ndm_ifindex == 0) { |
| 2432 | pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid ifindex\n"); |
| 2433 | return -EINVAL; |
| 2434 | } |
| 2435 | |
| 2436 | dev = __dev_get_by_index(net, ndm->ndm_ifindex); |
| 2437 | if (dev == NULL) { |
| 2438 | pr_info("PF_BRIDGE: RTM_DELNEIGH with unknown ifindex\n"); |
| 2439 | return -ENODEV; |
| 2440 | } |
| 2441 | |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 2442 | if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) { |
| 2443 | pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid address\n"); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2444 | return -EINVAL; |
| 2445 | } |
| 2446 | |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 2447 | addr = nla_data(tb[NDA_LLADDR]); |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 2448 | |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2449 | err = -EOPNOTSUPP; |
| 2450 | |
| 2451 | /* Support fdb on master device the net/bridge default case */ |
| 2452 | if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) && |
| 2453 | (dev->priv_flags & IFF_BRIDGE_PORT)) { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 2454 | struct net_device *br_dev = netdev_master_upper_dev_get(dev); |
| 2455 | const struct net_device_ops *ops = br_dev->netdev_ops; |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2456 | |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 2457 | if (ops->ndo_fdb_del) |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 2458 | err = ops->ndo_fdb_del(ndm, tb, dev, addr); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2459 | |
| 2460 | if (err) |
| 2461 | goto out; |
| 2462 | else |
| 2463 | ndm->ndm_flags &= ~NTF_MASTER; |
| 2464 | } |
| 2465 | |
| 2466 | /* Embedded bridge, macvlan, and any other device support */ |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 2467 | if (ndm->ndm_flags & NTF_SELF) { |
| 2468 | if (dev->netdev_ops->ndo_fdb_del) |
| 2469 | err = dev->netdev_ops->ndo_fdb_del(ndm, tb, dev, addr); |
| 2470 | else |
| 2471 | err = ndo_dflt_fdb_del(ndm, tb, dev, addr); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2472 | |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 2473 | if (!err) { |
| 2474 | rtnl_fdb_notify(dev, addr, RTM_DELNEIGH); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2475 | ndm->ndm_flags &= ~NTF_SELF; |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 2476 | } |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2477 | } |
| 2478 | out: |
| 2479 | return err; |
| 2480 | } |
| 2481 | |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2482 | static int nlmsg_populate_fdb(struct sk_buff *skb, |
| 2483 | struct netlink_callback *cb, |
| 2484 | struct net_device *dev, |
| 2485 | int *idx, |
| 2486 | struct netdev_hw_addr_list *list) |
| 2487 | { |
| 2488 | struct netdev_hw_addr *ha; |
| 2489 | int err; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2490 | u32 portid, seq; |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2491 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2492 | portid = NETLINK_CB(cb->skb).portid; |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2493 | seq = cb->nlh->nlmsg_seq; |
| 2494 | |
| 2495 | list_for_each_entry(ha, &list->list, list) { |
| 2496 | if (*idx < cb->args[0]) |
| 2497 | goto skip; |
| 2498 | |
| 2499 | err = nlmsg_populate_fdb_fill(skb, dev, ha->addr, |
John Fastabend | a7a558f | 2012-11-01 16:23:10 +0000 | [diff] [blame] | 2500 | portid, seq, |
Nicolas Dichtel | 1c104a6 | 2014-03-19 17:47:49 +0100 | [diff] [blame] | 2501 | RTM_NEWNEIGH, NTF_SELF, |
| 2502 | NLM_F_MULTI); |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2503 | if (err < 0) |
| 2504 | return err; |
| 2505 | skip: |
| 2506 | *idx += 1; |
| 2507 | } |
| 2508 | return 0; |
| 2509 | } |
| 2510 | |
| 2511 | /** |
Ben Hutchings | 2c53040 | 2012-07-10 10:55:09 +0000 | [diff] [blame] | 2512 | * ndo_dflt_fdb_dump - default netdevice operation to dump an FDB table. |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2513 | * @nlh: netlink message header |
| 2514 | * @dev: netdevice |
| 2515 | * |
| 2516 | * Default netdevice operation to dump the existing unicast address list. |
John Fastabend | 91f3e7b | 2013-03-29 08:18:37 +0000 | [diff] [blame] | 2517 | * Returns number of addresses from list put in skb. |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2518 | */ |
| 2519 | int ndo_dflt_fdb_dump(struct sk_buff *skb, |
| 2520 | struct netlink_callback *cb, |
| 2521 | struct net_device *dev, |
Jamal Hadi Salim | 5d5eacb | 2014-07-10 07:01:58 -0400 | [diff] [blame] | 2522 | struct net_device *filter_dev, |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2523 | int idx) |
| 2524 | { |
| 2525 | int err; |
| 2526 | |
| 2527 | netif_addr_lock_bh(dev); |
| 2528 | err = nlmsg_populate_fdb(skb, cb, dev, &idx, &dev->uc); |
| 2529 | if (err) |
| 2530 | goto out; |
| 2531 | nlmsg_populate_fdb(skb, cb, dev, &idx, &dev->mc); |
| 2532 | out: |
| 2533 | netif_addr_unlock_bh(dev); |
| 2534 | return idx; |
| 2535 | } |
| 2536 | EXPORT_SYMBOL(ndo_dflt_fdb_dump); |
| 2537 | |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2538 | static int rtnl_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb) |
| 2539 | { |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2540 | struct net_device *dev; |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 2541 | struct nlattr *tb[IFLA_MAX+1]; |
| 2542 | struct net_device *bdev = NULL; |
| 2543 | struct net_device *br_dev = NULL; |
| 2544 | const struct net_device_ops *ops = NULL; |
| 2545 | const struct net_device_ops *cops = NULL; |
| 2546 | struct ifinfomsg *ifm = nlmsg_data(cb->nlh); |
| 2547 | struct net *net = sock_net(skb->sk); |
| 2548 | int brport_idx = 0; |
| 2549 | int br_idx = 0; |
| 2550 | int idx = 0; |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2551 | |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 2552 | if (nlmsg_parse(cb->nlh, sizeof(struct ifinfomsg), tb, IFLA_MAX, |
| 2553 | ifla_policy) == 0) { |
| 2554 | if (tb[IFLA_MASTER]) |
| 2555 | br_idx = nla_get_u32(tb[IFLA_MASTER]); |
| 2556 | } |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2557 | |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 2558 | brport_idx = ifm->ifi_index; |
| 2559 | |
| 2560 | if (br_idx) { |
| 2561 | br_dev = __dev_get_by_index(net, br_idx); |
| 2562 | if (!br_dev) |
| 2563 | return -ENODEV; |
| 2564 | |
| 2565 | ops = br_dev->netdev_ops; |
| 2566 | bdev = br_dev; |
| 2567 | } |
| 2568 | |
| 2569 | for_each_netdev(net, dev) { |
| 2570 | if (brport_idx && (dev->ifindex != brport_idx)) |
| 2571 | continue; |
| 2572 | |
| 2573 | if (!br_idx) { /* user did not specify a specific bridge */ |
| 2574 | if (dev->priv_flags & IFF_BRIDGE_PORT) { |
| 2575 | br_dev = netdev_master_upper_dev_get(dev); |
| 2576 | cops = br_dev->netdev_ops; |
| 2577 | } |
| 2578 | |
| 2579 | bdev = dev; |
| 2580 | } else { |
| 2581 | if (dev != br_dev && |
| 2582 | !(dev->priv_flags & IFF_BRIDGE_PORT)) |
| 2583 | continue; |
| 2584 | |
| 2585 | if (br_dev != netdev_master_upper_dev_get(dev) && |
| 2586 | !(dev->priv_flags & IFF_EBRIDGE)) |
| 2587 | continue; |
| 2588 | |
| 2589 | bdev = br_dev; |
| 2590 | cops = ops; |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2591 | } |
| 2592 | |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 2593 | if (dev->priv_flags & IFF_BRIDGE_PORT) { |
| 2594 | if (cops && cops->ndo_fdb_dump) |
| 2595 | idx = cops->ndo_fdb_dump(skb, cb, br_dev, dev, |
| 2596 | idx); |
| 2597 | } |
| 2598 | |
| 2599 | idx = ndo_dflt_fdb_dump(skb, cb, dev, NULL, idx); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2600 | if (dev->netdev_ops->ndo_fdb_dump) |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 2601 | idx = dev->netdev_ops->ndo_fdb_dump(skb, cb, bdev, dev, |
Jamal Hadi Salim | 5d5eacb | 2014-07-10 07:01:58 -0400 | [diff] [blame] | 2602 | idx); |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 2603 | |
| 2604 | cops = NULL; |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2605 | } |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2606 | |
| 2607 | cb->args[0] = idx; |
| 2608 | return skb->len; |
| 2609 | } |
| 2610 | |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 2611 | int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq, |
| 2612 | struct net_device *dev, u16 mode) |
| 2613 | { |
| 2614 | struct nlmsghdr *nlh; |
| 2615 | struct ifinfomsg *ifm; |
| 2616 | struct nlattr *br_afspec; |
| 2617 | u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN; |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 2618 | struct net_device *br_dev = netdev_master_upper_dev_get(dev); |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 2619 | |
| 2620 | nlh = nlmsg_put(skb, pid, seq, RTM_NEWLINK, sizeof(*ifm), NLM_F_MULTI); |
| 2621 | if (nlh == NULL) |
| 2622 | return -EMSGSIZE; |
| 2623 | |
| 2624 | ifm = nlmsg_data(nlh); |
| 2625 | ifm->ifi_family = AF_BRIDGE; |
| 2626 | ifm->__ifi_pad = 0; |
| 2627 | ifm->ifi_type = dev->type; |
| 2628 | ifm->ifi_index = dev->ifindex; |
| 2629 | ifm->ifi_flags = dev_get_flags(dev); |
| 2630 | ifm->ifi_change = 0; |
| 2631 | |
| 2632 | |
| 2633 | if (nla_put_string(skb, IFLA_IFNAME, dev->name) || |
| 2634 | nla_put_u32(skb, IFLA_MTU, dev->mtu) || |
| 2635 | nla_put_u8(skb, IFLA_OPERSTATE, operstate) || |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 2636 | (br_dev && |
| 2637 | nla_put_u32(skb, IFLA_MASTER, br_dev->ifindex)) || |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 2638 | (dev->addr_len && |
| 2639 | nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) || |
| 2640 | (dev->ifindex != dev->iflink && |
| 2641 | nla_put_u32(skb, IFLA_LINK, dev->iflink))) |
| 2642 | goto nla_put_failure; |
| 2643 | |
| 2644 | br_afspec = nla_nest_start(skb, IFLA_AF_SPEC); |
| 2645 | if (!br_afspec) |
| 2646 | goto nla_put_failure; |
| 2647 | |
| 2648 | if (nla_put_u16(skb, IFLA_BRIDGE_FLAGS, BRIDGE_FLAGS_SELF) || |
| 2649 | nla_put_u16(skb, IFLA_BRIDGE_MODE, mode)) { |
| 2650 | nla_nest_cancel(skb, br_afspec); |
| 2651 | goto nla_put_failure; |
| 2652 | } |
| 2653 | nla_nest_end(skb, br_afspec); |
| 2654 | |
| 2655 | return nlmsg_end(skb, nlh); |
| 2656 | nla_put_failure: |
| 2657 | nlmsg_cancel(skb, nlh); |
| 2658 | return -EMSGSIZE; |
| 2659 | } |
| 2660 | EXPORT_SYMBOL(ndo_dflt_bridge_getlink); |
| 2661 | |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 2662 | static int rtnl_bridge_getlink(struct sk_buff *skb, struct netlink_callback *cb) |
| 2663 | { |
| 2664 | struct net *net = sock_net(skb->sk); |
| 2665 | struct net_device *dev; |
| 2666 | int idx = 0; |
| 2667 | u32 portid = NETLINK_CB(cb->skb).portid; |
| 2668 | u32 seq = cb->nlh->nlmsg_seq; |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 2669 | struct nlattr *extfilt; |
| 2670 | u32 filter_mask = 0; |
| 2671 | |
Asbjoern Sloth Toennesen | 3e805ad | 2013-08-12 16:30:09 +0000 | [diff] [blame] | 2672 | extfilt = nlmsg_find_attr(cb->nlh, sizeof(struct ifinfomsg), |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 2673 | IFLA_EXT_MASK); |
| 2674 | if (extfilt) |
| 2675 | filter_mask = nla_get_u32(extfilt); |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 2676 | |
| 2677 | rcu_read_lock(); |
| 2678 | for_each_netdev_rcu(net, dev) { |
| 2679 | const struct net_device_ops *ops = dev->netdev_ops; |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 2680 | struct net_device *br_dev = netdev_master_upper_dev_get(dev); |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 2681 | |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 2682 | if (br_dev && br_dev->netdev_ops->ndo_bridge_getlink) { |
Ben Hutchings | 25b1e67 | 2012-11-02 12:56:52 +0000 | [diff] [blame] | 2683 | if (idx >= cb->args[0] && |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 2684 | br_dev->netdev_ops->ndo_bridge_getlink( |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 2685 | skb, portid, seq, dev, filter_mask) < 0) |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 2686 | break; |
Ben Hutchings | 25b1e67 | 2012-11-02 12:56:52 +0000 | [diff] [blame] | 2687 | idx++; |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 2688 | } |
| 2689 | |
| 2690 | if (ops->ndo_bridge_getlink) { |
Ben Hutchings | 25b1e67 | 2012-11-02 12:56:52 +0000 | [diff] [blame] | 2691 | if (idx >= cb->args[0] && |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 2692 | ops->ndo_bridge_getlink(skb, portid, seq, dev, |
| 2693 | filter_mask) < 0) |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 2694 | break; |
Ben Hutchings | 25b1e67 | 2012-11-02 12:56:52 +0000 | [diff] [blame] | 2695 | idx++; |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 2696 | } |
| 2697 | } |
| 2698 | rcu_read_unlock(); |
| 2699 | cb->args[0] = idx; |
| 2700 | |
| 2701 | return skb->len; |
| 2702 | } |
| 2703 | |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 2704 | static inline size_t bridge_nlmsg_size(void) |
| 2705 | { |
| 2706 | return NLMSG_ALIGN(sizeof(struct ifinfomsg)) |
| 2707 | + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */ |
| 2708 | + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */ |
| 2709 | + nla_total_size(sizeof(u32)) /* IFLA_MASTER */ |
| 2710 | + nla_total_size(sizeof(u32)) /* IFLA_MTU */ |
| 2711 | + nla_total_size(sizeof(u32)) /* IFLA_LINK */ |
| 2712 | + nla_total_size(sizeof(u32)) /* IFLA_OPERSTATE */ |
| 2713 | + nla_total_size(sizeof(u8)) /* IFLA_PROTINFO */ |
| 2714 | + nla_total_size(sizeof(struct nlattr)) /* IFLA_AF_SPEC */ |
| 2715 | + nla_total_size(sizeof(u16)) /* IFLA_BRIDGE_FLAGS */ |
| 2716 | + nla_total_size(sizeof(u16)); /* IFLA_BRIDGE_MODE */ |
| 2717 | } |
| 2718 | |
| 2719 | static int rtnl_bridge_notify(struct net_device *dev, u16 flags) |
| 2720 | { |
| 2721 | struct net *net = dev_net(dev); |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 2722 | struct net_device *br_dev = netdev_master_upper_dev_get(dev); |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 2723 | struct sk_buff *skb; |
| 2724 | int err = -EOPNOTSUPP; |
| 2725 | |
| 2726 | skb = nlmsg_new(bridge_nlmsg_size(), GFP_ATOMIC); |
| 2727 | if (!skb) { |
| 2728 | err = -ENOMEM; |
| 2729 | goto errout; |
| 2730 | } |
| 2731 | |
John Fastabend | c38e01b | 2012-11-02 16:32:36 +0000 | [diff] [blame] | 2732 | if ((!flags || (flags & BRIDGE_FLAGS_MASTER)) && |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 2733 | br_dev && br_dev->netdev_ops->ndo_bridge_getlink) { |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 2734 | err = br_dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0); |
John Fastabend | c38e01b | 2012-11-02 16:32:36 +0000 | [diff] [blame] | 2735 | if (err < 0) |
| 2736 | goto errout; |
| 2737 | } |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 2738 | |
John Fastabend | c38e01b | 2012-11-02 16:32:36 +0000 | [diff] [blame] | 2739 | if ((flags & BRIDGE_FLAGS_SELF) && |
| 2740 | dev->netdev_ops->ndo_bridge_getlink) { |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 2741 | err = dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0); |
John Fastabend | c38e01b | 2012-11-02 16:32:36 +0000 | [diff] [blame] | 2742 | if (err < 0) |
| 2743 | goto errout; |
| 2744 | } |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 2745 | |
| 2746 | rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC); |
| 2747 | return 0; |
| 2748 | errout: |
| 2749 | WARN_ON(err == -EMSGSIZE); |
| 2750 | kfree_skb(skb); |
| 2751 | rtnl_set_sk_err(net, RTNLGRP_LINK, err); |
| 2752 | return err; |
| 2753 | } |
| 2754 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 2755 | static int rtnl_bridge_setlink(struct sk_buff *skb, struct nlmsghdr *nlh) |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 2756 | { |
| 2757 | struct net *net = sock_net(skb->sk); |
| 2758 | struct ifinfomsg *ifm; |
| 2759 | struct net_device *dev; |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 2760 | struct nlattr *br_spec, *attr = NULL; |
| 2761 | int rem, err = -EOPNOTSUPP; |
John Fastabend | c38e01b | 2012-11-02 16:32:36 +0000 | [diff] [blame] | 2762 | u16 oflags, flags = 0; |
| 2763 | bool have_flags = false; |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 2764 | |
| 2765 | if (nlmsg_len(nlh) < sizeof(*ifm)) |
| 2766 | return -EINVAL; |
| 2767 | |
| 2768 | ifm = nlmsg_data(nlh); |
| 2769 | if (ifm->ifi_family != AF_BRIDGE) |
| 2770 | return -EPFNOSUPPORT; |
| 2771 | |
| 2772 | dev = __dev_get_by_index(net, ifm->ifi_index); |
| 2773 | if (!dev) { |
| 2774 | pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n"); |
| 2775 | return -ENODEV; |
| 2776 | } |
| 2777 | |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 2778 | br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC); |
| 2779 | if (br_spec) { |
| 2780 | nla_for_each_nested(attr, br_spec, rem) { |
| 2781 | if (nla_type(attr) == IFLA_BRIDGE_FLAGS) { |
John Fastabend | c38e01b | 2012-11-02 16:32:36 +0000 | [diff] [blame] | 2782 | have_flags = true; |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 2783 | flags = nla_get_u16(attr); |
| 2784 | break; |
| 2785 | } |
| 2786 | } |
| 2787 | } |
| 2788 | |
John Fastabend | c38e01b | 2012-11-02 16:32:36 +0000 | [diff] [blame] | 2789 | oflags = flags; |
| 2790 | |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 2791 | if (!flags || (flags & BRIDGE_FLAGS_MASTER)) { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 2792 | struct net_device *br_dev = netdev_master_upper_dev_get(dev); |
| 2793 | |
| 2794 | if (!br_dev || !br_dev->netdev_ops->ndo_bridge_setlink) { |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 2795 | err = -EOPNOTSUPP; |
| 2796 | goto out; |
| 2797 | } |
| 2798 | |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 2799 | err = br_dev->netdev_ops->ndo_bridge_setlink(dev, nlh); |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 2800 | if (err) |
| 2801 | goto out; |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 2802 | |
| 2803 | flags &= ~BRIDGE_FLAGS_MASTER; |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 2804 | } |
| 2805 | |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 2806 | if ((flags & BRIDGE_FLAGS_SELF)) { |
| 2807 | if (!dev->netdev_ops->ndo_bridge_setlink) |
| 2808 | err = -EOPNOTSUPP; |
| 2809 | else |
| 2810 | err = dev->netdev_ops->ndo_bridge_setlink(dev, nlh); |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 2811 | |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 2812 | if (!err) |
| 2813 | flags &= ~BRIDGE_FLAGS_SELF; |
| 2814 | } |
| 2815 | |
John Fastabend | c38e01b | 2012-11-02 16:32:36 +0000 | [diff] [blame] | 2816 | if (have_flags) |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 2817 | memcpy(nla_data(attr), &flags, sizeof(flags)); |
| 2818 | /* Generate event to notify upper layer of bridge change */ |
| 2819 | if (!err) |
John Fastabend | c38e01b | 2012-11-02 16:32:36 +0000 | [diff] [blame] | 2820 | err = rtnl_bridge_notify(dev, oflags); |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 2821 | out: |
| 2822 | return err; |
| 2823 | } |
| 2824 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 2825 | static int rtnl_bridge_dellink(struct sk_buff *skb, struct nlmsghdr *nlh) |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 2826 | { |
| 2827 | struct net *net = sock_net(skb->sk); |
| 2828 | struct ifinfomsg *ifm; |
| 2829 | struct net_device *dev; |
| 2830 | struct nlattr *br_spec, *attr = NULL; |
| 2831 | int rem, err = -EOPNOTSUPP; |
| 2832 | u16 oflags, flags = 0; |
| 2833 | bool have_flags = false; |
| 2834 | |
| 2835 | if (nlmsg_len(nlh) < sizeof(*ifm)) |
| 2836 | return -EINVAL; |
| 2837 | |
| 2838 | ifm = nlmsg_data(nlh); |
| 2839 | if (ifm->ifi_family != AF_BRIDGE) |
| 2840 | return -EPFNOSUPPORT; |
| 2841 | |
| 2842 | dev = __dev_get_by_index(net, ifm->ifi_index); |
| 2843 | if (!dev) { |
| 2844 | pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n"); |
| 2845 | return -ENODEV; |
| 2846 | } |
| 2847 | |
| 2848 | br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC); |
| 2849 | if (br_spec) { |
| 2850 | nla_for_each_nested(attr, br_spec, rem) { |
| 2851 | if (nla_type(attr) == IFLA_BRIDGE_FLAGS) { |
| 2852 | have_flags = true; |
| 2853 | flags = nla_get_u16(attr); |
| 2854 | break; |
| 2855 | } |
| 2856 | } |
| 2857 | } |
| 2858 | |
| 2859 | oflags = flags; |
| 2860 | |
| 2861 | if (!flags || (flags & BRIDGE_FLAGS_MASTER)) { |
| 2862 | struct net_device *br_dev = netdev_master_upper_dev_get(dev); |
| 2863 | |
| 2864 | if (!br_dev || !br_dev->netdev_ops->ndo_bridge_dellink) { |
| 2865 | err = -EOPNOTSUPP; |
| 2866 | goto out; |
| 2867 | } |
| 2868 | |
| 2869 | err = br_dev->netdev_ops->ndo_bridge_dellink(dev, nlh); |
| 2870 | if (err) |
| 2871 | goto out; |
| 2872 | |
| 2873 | flags &= ~BRIDGE_FLAGS_MASTER; |
| 2874 | } |
| 2875 | |
| 2876 | if ((flags & BRIDGE_FLAGS_SELF)) { |
| 2877 | if (!dev->netdev_ops->ndo_bridge_dellink) |
| 2878 | err = -EOPNOTSUPP; |
| 2879 | else |
| 2880 | err = dev->netdev_ops->ndo_bridge_dellink(dev, nlh); |
| 2881 | |
| 2882 | if (!err) |
| 2883 | flags &= ~BRIDGE_FLAGS_SELF; |
| 2884 | } |
| 2885 | |
| 2886 | if (have_flags) |
| 2887 | memcpy(nla_data(attr), &flags, sizeof(flags)); |
| 2888 | /* Generate event to notify upper layer of bridge change */ |
| 2889 | if (!err) |
| 2890 | err = rtnl_bridge_notify(dev, oflags); |
| 2891 | out: |
| 2892 | return err; |
| 2893 | } |
| 2894 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2895 | /* Process one rtnetlink message. */ |
| 2896 | |
Thomas Graf | 1d00a4e | 2007-03-22 23:30:12 -0700 | [diff] [blame] | 2897 | static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2898 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 2899 | struct net *net = sock_net(skb->sk); |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 2900 | rtnl_doit_func doit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2901 | int sz_idx, kind; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2902 | int family; |
| 2903 | int type; |
Eric Dumazet | 2907c35 | 2011-05-25 07:34:04 +0000 | [diff] [blame] | 2904 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2905 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2906 | type = nlh->nlmsg_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2907 | if (type > RTM_MAX) |
Thomas Graf | 038890f | 2007-04-05 14:35:52 -0700 | [diff] [blame] | 2908 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2909 | |
| 2910 | type -= RTM_BASE; |
| 2911 | |
| 2912 | /* All the messages must have at least 1 byte length */ |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 2913 | if (nlmsg_len(nlh) < sizeof(struct rtgenmsg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2914 | return 0; |
| 2915 | |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 2916 | family = ((struct rtgenmsg *)nlmsg_data(nlh))->rtgen_family; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2917 | sz_idx = type>>2; |
| 2918 | kind = type&3; |
| 2919 | |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 2920 | if (kind != 2 && !netlink_net_capable(skb, CAP_NET_ADMIN)) |
Thomas Graf | 1d00a4e | 2007-03-22 23:30:12 -0700 | [diff] [blame] | 2921 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2922 | |
David S. Miller | b8f3ab4 | 2011-01-18 12:40:38 -0800 | [diff] [blame] | 2923 | if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) { |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 2924 | struct sock *rtnl; |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 2925 | rtnl_dumpit_func dumpit; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2926 | rtnl_calcit_func calcit; |
| 2927 | u16 min_dump_alloc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2928 | |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 2929 | dumpit = rtnl_get_dumpit(family, type); |
| 2930 | if (dumpit == NULL) |
Thomas Graf | 038890f | 2007-04-05 14:35:52 -0700 | [diff] [blame] | 2931 | return -EOPNOTSUPP; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2932 | calcit = rtnl_get_calcit(family, type); |
| 2933 | if (calcit) |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2934 | min_dump_alloc = calcit(skb, nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2935 | |
Eric Dumazet | 2907c35 | 2011-05-25 07:34:04 +0000 | [diff] [blame] | 2936 | __rtnl_unlock(); |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 2937 | rtnl = net->rtnl; |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 2938 | { |
| 2939 | struct netlink_dump_control c = { |
| 2940 | .dump = dumpit, |
| 2941 | .min_dump_alloc = min_dump_alloc, |
| 2942 | }; |
| 2943 | err = netlink_dump_start(rtnl, skb, nlh, &c); |
| 2944 | } |
Eric Dumazet | 2907c35 | 2011-05-25 07:34:04 +0000 | [diff] [blame] | 2945 | rtnl_lock(); |
| 2946 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2947 | } |
| 2948 | |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 2949 | doit = rtnl_get_doit(family, type); |
| 2950 | if (doit == NULL) |
Thomas Graf | 038890f | 2007-04-05 14:35:52 -0700 | [diff] [blame] | 2951 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2952 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 2953 | return doit(skb, nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2954 | } |
| 2955 | |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 2956 | static void rtnetlink_rcv(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2957 | { |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 2958 | rtnl_lock(); |
| 2959 | netlink_rcv_skb(skb, &rtnetlink_rcv_msg); |
| 2960 | rtnl_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2961 | } |
| 2962 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2963 | static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr) |
| 2964 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 2965 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Eric W. Biederman | e9dc865 | 2007-09-12 13:02:17 +0200 | [diff] [blame] | 2966 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2967 | switch (event) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2968 | case NETDEV_UP: |
| 2969 | case NETDEV_DOWN: |
Patrick McHardy | 10de05a | 2010-02-26 06:34:50 +0000 | [diff] [blame] | 2970 | case NETDEV_PRE_UP: |
Eric W. Biederman | d90a909 | 2009-12-12 22:11:15 +0000 | [diff] [blame] | 2971 | case NETDEV_POST_INIT: |
| 2972 | case NETDEV_REGISTER: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2973 | case NETDEV_CHANGE: |
Patrick McHardy | 755d0e7 | 2010-03-19 04:42:24 +0000 | [diff] [blame] | 2974 | case NETDEV_PRE_TYPE_CHANGE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2975 | case NETDEV_GOING_DOWN: |
Patrick McHardy | a283576 | 2010-02-26 06:34:51 +0000 | [diff] [blame] | 2976 | case NETDEV_UNREGISTER: |
Eric Dumazet | 0115e8e | 2012-08-22 17:19:46 +0000 | [diff] [blame] | 2977 | case NETDEV_UNREGISTER_FINAL: |
Amerigo Wang | ac3d3f8 | 2011-05-19 23:06:32 +0000 | [diff] [blame] | 2978 | case NETDEV_RELEASE: |
| 2979 | case NETDEV_JOIN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2980 | break; |
| 2981 | default: |
Alexei Starovoitov | 7f29405 | 2013-10-23 16:02:42 -0700 | [diff] [blame] | 2982 | rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | break; |
| 2984 | } |
| 2985 | return NOTIFY_DONE; |
| 2986 | } |
| 2987 | |
| 2988 | static struct notifier_block rtnetlink_dev_notifier = { |
| 2989 | .notifier_call = rtnetlink_event, |
| 2990 | }; |
| 2991 | |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 2992 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 2993 | static int __net_init rtnetlink_net_init(struct net *net) |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 2994 | { |
| 2995 | struct sock *sk; |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 2996 | struct netlink_kernel_cfg cfg = { |
| 2997 | .groups = RTNLGRP_MAX, |
| 2998 | .input = rtnetlink_rcv, |
| 2999 | .cb_mutex = &rtnl_mutex, |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 3000 | .flags = NL_CFG_F_NONROOT_RECV, |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 3001 | }; |
| 3002 | |
Pablo Neira Ayuso | 9f00d97 | 2012-09-08 02:53:54 +0000 | [diff] [blame] | 3003 | sk = netlink_kernel_create(net, NETLINK_ROUTE, &cfg); |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 3004 | if (!sk) |
| 3005 | return -ENOMEM; |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 3006 | net->rtnl = sk; |
| 3007 | return 0; |
| 3008 | } |
| 3009 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 3010 | static void __net_exit rtnetlink_net_exit(struct net *net) |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 3011 | { |
Denis V. Lunev | 775516b | 2008-01-18 23:55:19 -0800 | [diff] [blame] | 3012 | netlink_kernel_release(net->rtnl); |
| 3013 | net->rtnl = NULL; |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 3014 | } |
| 3015 | |
| 3016 | static struct pernet_operations rtnetlink_net_ops = { |
| 3017 | .init = rtnetlink_net_init, |
| 3018 | .exit = rtnetlink_net_exit, |
| 3019 | }; |
| 3020 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3021 | void __init rtnetlink_init(void) |
| 3022 | { |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 3023 | if (register_pernet_subsys(&rtnetlink_net_ops)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3024 | panic("rtnetlink_init: cannot initialize rtnetlink\n"); |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 3025 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3026 | register_netdevice_notifier(&rtnetlink_dev_notifier); |
Thomas Graf | 340d17f | 2007-03-22 11:49:22 -0700 | [diff] [blame] | 3027 | |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 3028 | rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, |
| 3029 | rtnl_dump_ifinfo, rtnl_calcit); |
| 3030 | rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL, NULL); |
| 3031 | rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL, NULL); |
| 3032 | rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL, NULL); |
Thomas Graf | 687ad8c | 2007-03-22 11:59:42 -0700 | [diff] [blame] | 3033 | |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 3034 | rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all, NULL); |
| 3035 | rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all, NULL); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3036 | |
| 3037 | rtnl_register(PF_BRIDGE, RTM_NEWNEIGH, rtnl_fdb_add, NULL, NULL); |
| 3038 | rtnl_register(PF_BRIDGE, RTM_DELNEIGH, rtnl_fdb_del, NULL, NULL); |
| 3039 | rtnl_register(PF_BRIDGE, RTM_GETNEIGH, NULL, rtnl_fdb_dump, NULL); |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 3040 | |
| 3041 | rtnl_register(PF_BRIDGE, RTM_GETLINK, NULL, rtnl_bridge_getlink, NULL); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 3042 | rtnl_register(PF_BRIDGE, RTM_DELLINK, rtnl_bridge_dellink, NULL, NULL); |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 3043 | rtnl_register(PF_BRIDGE, RTM_SETLINK, rtnl_bridge_setlink, NULL, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3044 | } |
| 3045 | |