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> |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 39 | #include <linux/if_vlan.h> |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 40 | #include <linux/pci.h> |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 41 | #include <linux/etherdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | #include <asm/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | #include <linux/inet.h> |
| 46 | #include <linux/netdevice.h> |
Jiri Pirko | 82f2841 | 2014-11-28 14:34:18 +0100 | [diff] [blame] | 47 | #include <net/switchdev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include <net/ip.h> |
| 49 | #include <net/protocol.h> |
| 50 | #include <net/arp.h> |
| 51 | #include <net/route.h> |
| 52 | #include <net/udp.h> |
Daniel Borkmann | ea69763 | 2015-01-05 23:57:47 +0100 | [diff] [blame] | 53 | #include <net/tcp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #include <net/sock.h> |
| 55 | #include <net/pkt_sched.h> |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 56 | #include <net/fib_rules.h> |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 57 | #include <net/rtnetlink.h> |
Johannes Berg | 30ffee8 | 2009-07-10 09:51:35 +0000 | [diff] [blame] | 58 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 60 | struct rtnl_link { |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 61 | rtnl_doit_func doit; |
| 62 | rtnl_dumpit_func dumpit; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 63 | rtnl_calcit_func calcit; |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 66 | static DEFINE_MUTEX(rtnl_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | void rtnl_lock(void) |
| 69 | { |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 70 | mutex_lock(&rtnl_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 72 | EXPORT_SYMBOL(rtnl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Eric Dumazet | 1b5c549 | 2016-06-13 20:21:50 -0700 | [diff] [blame] | 74 | static struct sk_buff *defer_kfree_skb_list; |
| 75 | void rtnl_kfree_skbs(struct sk_buff *head, struct sk_buff *tail) |
| 76 | { |
| 77 | if (head && tail) { |
| 78 | tail->next = defer_kfree_skb_list; |
| 79 | defer_kfree_skb_list = head; |
| 80 | } |
| 81 | } |
| 82 | EXPORT_SYMBOL(rtnl_kfree_skbs); |
| 83 | |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 84 | void __rtnl_unlock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | { |
Eric Dumazet | 1b5c549 | 2016-06-13 20:21:50 -0700 | [diff] [blame] | 86 | struct sk_buff *head = defer_kfree_skb_list; |
| 87 | |
| 88 | defer_kfree_skb_list = NULL; |
| 89 | |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 90 | mutex_unlock(&rtnl_mutex); |
Eric Dumazet | 1b5c549 | 2016-06-13 20:21:50 -0700 | [diff] [blame] | 91 | |
| 92 | while (head) { |
| 93 | struct sk_buff *next = head->next; |
| 94 | |
| 95 | kfree_skb(head); |
| 96 | cond_resched(); |
| 97 | head = next; |
| 98 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | } |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | void rtnl_unlock(void) |
| 102 | { |
Herbert Xu | 58ec3b4 | 2008-10-07 15:50:03 -0700 | [diff] [blame] | 103 | /* This fellow will unlock it for us. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | netdev_run_todo(); |
| 105 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 106 | EXPORT_SYMBOL(rtnl_unlock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 108 | int rtnl_trylock(void) |
| 109 | { |
| 110 | return mutex_trylock(&rtnl_mutex); |
| 111 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 112 | EXPORT_SYMBOL(rtnl_trylock); |
Stephen Hemminger | 6756ae4 | 2006-03-20 22:23:58 -0800 | [diff] [blame] | 113 | |
Patrick McHardy | c9c1014 | 2008-04-23 22:10:48 -0700 | [diff] [blame] | 114 | int rtnl_is_locked(void) |
| 115 | { |
| 116 | return mutex_is_locked(&rtnl_mutex); |
| 117 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 118 | EXPORT_SYMBOL(rtnl_is_locked); |
Patrick McHardy | c9c1014 | 2008-04-23 22:10:48 -0700 | [diff] [blame] | 119 | |
Paul E. McKenney | a898def | 2010-02-22 17:04:49 -0800 | [diff] [blame] | 120 | #ifdef CONFIG_PROVE_LOCKING |
Yaowei Bai | 0cbf334 | 2015-10-08 21:29:02 +0800 | [diff] [blame] | 121 | bool lockdep_rtnl_is_held(void) |
Paul E. McKenney | a898def | 2010-02-22 17:04:49 -0800 | [diff] [blame] | 122 | { |
| 123 | return lockdep_is_held(&rtnl_mutex); |
| 124 | } |
| 125 | EXPORT_SYMBOL(lockdep_rtnl_is_held); |
| 126 | #endif /* #ifdef CONFIG_PROVE_LOCKING */ |
| 127 | |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 128 | static struct rtnl_link *rtnl_msg_handlers[RTNL_FAMILY_MAX + 1]; |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 129 | |
| 130 | static inline int rtm_msgindex(int msgtype) |
| 131 | { |
| 132 | int msgindex = msgtype - RTM_BASE; |
| 133 | |
| 134 | /* |
| 135 | * msgindex < 0 implies someone tried to register a netlink |
| 136 | * control code. msgindex >= RTM_NR_MSGTYPES may indicate that |
| 137 | * the message type has not been added to linux/rtnetlink.h |
| 138 | */ |
| 139 | BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES); |
| 140 | |
| 141 | return msgindex; |
| 142 | } |
| 143 | |
| 144 | static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex) |
| 145 | { |
| 146 | struct rtnl_link *tab; |
| 147 | |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 148 | if (protocol <= RTNL_FAMILY_MAX) |
Patrick McHardy | 0f87b1d | 2010-04-13 05:03:17 +0000 | [diff] [blame] | 149 | tab = rtnl_msg_handlers[protocol]; |
| 150 | else |
| 151 | tab = NULL; |
| 152 | |
Thomas Graf | 51057f2 | 2007-03-22 21:41:06 -0700 | [diff] [blame] | 153 | if (tab == NULL || tab[msgindex].doit == NULL) |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 154 | tab = rtnl_msg_handlers[PF_UNSPEC]; |
| 155 | |
Hans Zhang | c80bbea | 2012-10-22 22:21:23 +0000 | [diff] [blame] | 156 | return tab[msgindex].doit; |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex) |
| 160 | { |
| 161 | struct rtnl_link *tab; |
| 162 | |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 163 | if (protocol <= RTNL_FAMILY_MAX) |
Patrick McHardy | 0f87b1d | 2010-04-13 05:03:17 +0000 | [diff] [blame] | 164 | tab = rtnl_msg_handlers[protocol]; |
| 165 | else |
| 166 | tab = NULL; |
| 167 | |
Thomas Graf | 51057f2 | 2007-03-22 21:41:06 -0700 | [diff] [blame] | 168 | if (tab == NULL || tab[msgindex].dumpit == NULL) |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 169 | tab = rtnl_msg_handlers[PF_UNSPEC]; |
| 170 | |
Hans Zhang | c80bbea | 2012-10-22 22:21:23 +0000 | [diff] [blame] | 171 | return tab[msgindex].dumpit; |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 172 | } |
| 173 | |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 174 | static rtnl_calcit_func rtnl_get_calcit(int protocol, int msgindex) |
| 175 | { |
| 176 | struct rtnl_link *tab; |
| 177 | |
| 178 | if (protocol <= RTNL_FAMILY_MAX) |
| 179 | tab = rtnl_msg_handlers[protocol]; |
| 180 | else |
| 181 | tab = NULL; |
| 182 | |
| 183 | if (tab == NULL || tab[msgindex].calcit == NULL) |
| 184 | tab = rtnl_msg_handlers[PF_UNSPEC]; |
| 185 | |
Hans Zhang | c80bbea | 2012-10-22 22:21:23 +0000 | [diff] [blame] | 186 | return tab[msgindex].calcit; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 187 | } |
| 188 | |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 189 | /** |
| 190 | * __rtnl_register - Register a rtnetlink message type |
| 191 | * @protocol: Protocol family or PF_UNSPEC |
| 192 | * @msgtype: rtnetlink message type |
| 193 | * @doit: Function pointer called for each request message |
| 194 | * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 195 | * @calcit: Function pointer to calc size of dump message |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 196 | * |
| 197 | * Registers the specified function pointers (at least one of them has |
| 198 | * to be non-NULL) to be called whenever a request message for the |
| 199 | * specified protocol family and message type is received. |
| 200 | * |
| 201 | * The special protocol family PF_UNSPEC may be used to define fallback |
| 202 | * function pointers for the case when no entry for the specific protocol |
| 203 | * family exists. |
| 204 | * |
| 205 | * Returns 0 on success or a negative error code. |
| 206 | */ |
| 207 | int __rtnl_register(int protocol, int msgtype, |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 208 | rtnl_doit_func doit, rtnl_dumpit_func dumpit, |
| 209 | rtnl_calcit_func calcit) |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 210 | { |
| 211 | struct rtnl_link *tab; |
| 212 | int msgindex; |
| 213 | |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 214 | BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX); |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 215 | msgindex = rtm_msgindex(msgtype); |
| 216 | |
| 217 | tab = rtnl_msg_handlers[protocol]; |
| 218 | if (tab == NULL) { |
| 219 | tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL); |
| 220 | if (tab == NULL) |
| 221 | return -ENOBUFS; |
| 222 | |
| 223 | rtnl_msg_handlers[protocol] = tab; |
| 224 | } |
| 225 | |
| 226 | if (doit) |
| 227 | tab[msgindex].doit = doit; |
| 228 | |
| 229 | if (dumpit) |
| 230 | tab[msgindex].dumpit = dumpit; |
| 231 | |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 232 | if (calcit) |
| 233 | tab[msgindex].calcit = calcit; |
| 234 | |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 235 | return 0; |
| 236 | } |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 237 | EXPORT_SYMBOL_GPL(__rtnl_register); |
| 238 | |
| 239 | /** |
| 240 | * rtnl_register - Register a rtnetlink message type |
| 241 | * |
| 242 | * Identical to __rtnl_register() but panics on failure. This is useful |
| 243 | * as failure of this function is very unlikely, it can only happen due |
| 244 | * to lack of memory when allocating the chain to store all message |
| 245 | * 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] | 246 | * of memory implies no sense in continuing. |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 247 | */ |
| 248 | void rtnl_register(int protocol, int msgtype, |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 249 | rtnl_doit_func doit, rtnl_dumpit_func dumpit, |
| 250 | rtnl_calcit_func calcit) |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 251 | { |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 252 | if (__rtnl_register(protocol, msgtype, doit, dumpit, calcit) < 0) |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 253 | panic("Unable to register rtnetlink message handler, " |
| 254 | "protocol = %d, message type = %d\n", |
| 255 | protocol, msgtype); |
| 256 | } |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 257 | EXPORT_SYMBOL_GPL(rtnl_register); |
| 258 | |
| 259 | /** |
| 260 | * rtnl_unregister - Unregister a rtnetlink message type |
| 261 | * @protocol: Protocol family or PF_UNSPEC |
| 262 | * @msgtype: rtnetlink message type |
| 263 | * |
| 264 | * Returns 0 on success or a negative error code. |
| 265 | */ |
| 266 | int rtnl_unregister(int protocol, int msgtype) |
| 267 | { |
| 268 | int msgindex; |
| 269 | |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 270 | BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX); |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 271 | msgindex = rtm_msgindex(msgtype); |
| 272 | |
| 273 | if (rtnl_msg_handlers[protocol] == NULL) |
| 274 | return -ENOENT; |
| 275 | |
| 276 | rtnl_msg_handlers[protocol][msgindex].doit = NULL; |
| 277 | rtnl_msg_handlers[protocol][msgindex].dumpit = NULL; |
Mathias Krause | f567e95 | 2016-11-07 23:22:19 +0100 | [diff] [blame] | 278 | rtnl_msg_handlers[protocol][msgindex].calcit = NULL; |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 279 | |
| 280 | return 0; |
| 281 | } |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 282 | EXPORT_SYMBOL_GPL(rtnl_unregister); |
| 283 | |
| 284 | /** |
| 285 | * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol |
| 286 | * @protocol : Protocol family or PF_UNSPEC |
| 287 | * |
| 288 | * Identical to calling rtnl_unregster() for all registered message types |
| 289 | * of a certain protocol family. |
| 290 | */ |
| 291 | void rtnl_unregister_all(int protocol) |
| 292 | { |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 293 | BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX); |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 294 | |
| 295 | kfree(rtnl_msg_handlers[protocol]); |
| 296 | rtnl_msg_handlers[protocol] = NULL; |
| 297 | } |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 298 | EXPORT_SYMBOL_GPL(rtnl_unregister_all); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 300 | static LIST_HEAD(link_ops); |
| 301 | |
Eric Dumazet | c63044f | 2011-12-13 11:38:00 +0000 | [diff] [blame] | 302 | static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind) |
| 303 | { |
| 304 | const struct rtnl_link_ops *ops; |
| 305 | |
| 306 | list_for_each_entry(ops, &link_ops, list) { |
| 307 | if (!strcmp(ops->kind, kind)) |
| 308 | return ops; |
| 309 | } |
| 310 | return NULL; |
| 311 | } |
| 312 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 313 | /** |
| 314 | * __rtnl_link_register - Register rtnl_link_ops with rtnetlink. |
| 315 | * @ops: struct rtnl_link_ops * to register |
| 316 | * |
| 317 | * The caller must hold the rtnl_mutex. This function should be used |
| 318 | * by drivers that create devices during module initialization. It |
| 319 | * must be called before registering the devices. |
| 320 | * |
| 321 | * Returns 0 on success or a negative error code. |
| 322 | */ |
| 323 | int __rtnl_link_register(struct rtnl_link_ops *ops) |
| 324 | { |
Eric Dumazet | c63044f | 2011-12-13 11:38:00 +0000 | [diff] [blame] | 325 | if (rtnl_link_ops_get(ops->kind)) |
| 326 | return -EEXIST; |
| 327 | |
Jiri Pirko | b0ab2fa | 2014-06-26 09:58:25 +0200 | [diff] [blame] | 328 | /* The check for setup is here because if ops |
| 329 | * does not have that filled up, it is not possible |
| 330 | * to use the ops for creating device. So do not |
| 331 | * fill up dellink as well. That disables rtnl_dellink. |
| 332 | */ |
| 333 | if (ops->setup && !ops->dellink) |
Eric Dumazet | 23289a3 | 2009-10-27 07:06:36 +0000 | [diff] [blame] | 334 | ops->dellink = unregister_netdevice_queue; |
Patrick McHardy | 2d85cba | 2007-07-11 19:42:13 -0700 | [diff] [blame] | 335 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 336 | list_add_tail(&ops->list, &link_ops); |
| 337 | return 0; |
| 338 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 339 | EXPORT_SYMBOL_GPL(__rtnl_link_register); |
| 340 | |
| 341 | /** |
| 342 | * rtnl_link_register - Register rtnl_link_ops with rtnetlink. |
| 343 | * @ops: struct rtnl_link_ops * to register |
| 344 | * |
| 345 | * Returns 0 on success or a negative error code. |
| 346 | */ |
| 347 | int rtnl_link_register(struct rtnl_link_ops *ops) |
| 348 | { |
| 349 | int err; |
| 350 | |
| 351 | rtnl_lock(); |
| 352 | err = __rtnl_link_register(ops); |
| 353 | rtnl_unlock(); |
| 354 | return err; |
| 355 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 356 | EXPORT_SYMBOL_GPL(rtnl_link_register); |
| 357 | |
Pavel Emelyanov | 669f87b | 2008-04-16 00:46:52 -0700 | [diff] [blame] | 358 | static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops) |
| 359 | { |
| 360 | struct net_device *dev; |
Eric Dumazet | 23289a3 | 2009-10-27 07:06:36 +0000 | [diff] [blame] | 361 | LIST_HEAD(list_kill); |
| 362 | |
Pavel Emelyanov | 669f87b | 2008-04-16 00:46:52 -0700 | [diff] [blame] | 363 | for_each_netdev(net, dev) { |
Eric Dumazet | 23289a3 | 2009-10-27 07:06:36 +0000 | [diff] [blame] | 364 | if (dev->rtnl_link_ops == ops) |
| 365 | ops->dellink(dev, &list_kill); |
Pavel Emelyanov | 669f87b | 2008-04-16 00:46:52 -0700 | [diff] [blame] | 366 | } |
Eric Dumazet | 23289a3 | 2009-10-27 07:06:36 +0000 | [diff] [blame] | 367 | unregister_netdevice_many(&list_kill); |
Pavel Emelyanov | 669f87b | 2008-04-16 00:46:52 -0700 | [diff] [blame] | 368 | } |
| 369 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 370 | /** |
| 371 | * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink. |
| 372 | * @ops: struct rtnl_link_ops * to unregister |
| 373 | * |
Patrick McHardy | 2d85cba | 2007-07-11 19:42:13 -0700 | [diff] [blame] | 374 | * The caller must hold the rtnl_mutex. |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 375 | */ |
| 376 | void __rtnl_link_unregister(struct rtnl_link_ops *ops) |
| 377 | { |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 378 | struct net *net; |
Patrick McHardy | 2d85cba | 2007-07-11 19:42:13 -0700 | [diff] [blame] | 379 | |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 380 | for_each_net(net) { |
Pavel Emelyanov | 669f87b | 2008-04-16 00:46:52 -0700 | [diff] [blame] | 381 | __rtnl_kill_links(net, ops); |
Patrick McHardy | 2d85cba | 2007-07-11 19:42:13 -0700 | [diff] [blame] | 382 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 383 | list_del(&ops->list); |
| 384 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 385 | EXPORT_SYMBOL_GPL(__rtnl_link_unregister); |
| 386 | |
Cong Wang | 200b916 | 2014-05-12 15:11:20 -0700 | [diff] [blame] | 387 | /* Return with the rtnl_lock held when there are no network |
| 388 | * devices unregistering in any network namespace. |
| 389 | */ |
| 390 | static void rtnl_lock_unregistering_all(void) |
| 391 | { |
| 392 | struct net *net; |
| 393 | bool unregistering; |
Peter Zijlstra | ff960a7 | 2014-10-29 17:04:56 +0100 | [diff] [blame] | 394 | DEFINE_WAIT_FUNC(wait, woken_wake_function); |
Cong Wang | 200b916 | 2014-05-12 15:11:20 -0700 | [diff] [blame] | 395 | |
Peter Zijlstra | ff960a7 | 2014-10-29 17:04:56 +0100 | [diff] [blame] | 396 | add_wait_queue(&netdev_unregistering_wq, &wait); |
Cong Wang | 200b916 | 2014-05-12 15:11:20 -0700 | [diff] [blame] | 397 | for (;;) { |
Cong Wang | 200b916 | 2014-05-12 15:11:20 -0700 | [diff] [blame] | 398 | unregistering = false; |
| 399 | rtnl_lock(); |
| 400 | for_each_net(net) { |
| 401 | if (net->dev_unreg_count > 0) { |
| 402 | unregistering = true; |
| 403 | break; |
| 404 | } |
| 405 | } |
| 406 | if (!unregistering) |
| 407 | break; |
| 408 | __rtnl_unlock(); |
Peter Zijlstra | ff960a7 | 2014-10-29 17:04:56 +0100 | [diff] [blame] | 409 | |
| 410 | wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); |
Cong Wang | 200b916 | 2014-05-12 15:11:20 -0700 | [diff] [blame] | 411 | } |
Peter Zijlstra | ff960a7 | 2014-10-29 17:04:56 +0100 | [diff] [blame] | 412 | remove_wait_queue(&netdev_unregistering_wq, &wait); |
Cong Wang | 200b916 | 2014-05-12 15:11:20 -0700 | [diff] [blame] | 413 | } |
| 414 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 415 | /** |
| 416 | * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink. |
| 417 | * @ops: struct rtnl_link_ops * to unregister |
| 418 | */ |
| 419 | void rtnl_link_unregister(struct rtnl_link_ops *ops) |
| 420 | { |
Cong Wang | 200b916 | 2014-05-12 15:11:20 -0700 | [diff] [blame] | 421 | /* Close the race with cleanup_net() */ |
| 422 | mutex_lock(&net_mutex); |
| 423 | rtnl_lock_unregistering_all(); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 424 | __rtnl_link_unregister(ops); |
| 425 | rtnl_unlock(); |
Cong Wang | 200b916 | 2014-05-12 15:11:20 -0700 | [diff] [blame] | 426 | mutex_unlock(&net_mutex); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 427 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 428 | EXPORT_SYMBOL_GPL(rtnl_link_unregister); |
| 429 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 430 | static size_t rtnl_link_get_slave_info_data_size(const struct net_device *dev) |
| 431 | { |
| 432 | struct net_device *master_dev; |
| 433 | const struct rtnl_link_ops *ops; |
| 434 | |
| 435 | master_dev = netdev_master_upper_dev_get((struct net_device *) dev); |
| 436 | if (!master_dev) |
| 437 | return 0; |
| 438 | ops = master_dev->rtnl_link_ops; |
Fernando Luis Vazquez Cao | 6049f25 | 2014-02-04 19:35:02 +0900 | [diff] [blame] | 439 | if (!ops || !ops->get_slave_size) |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 440 | return 0; |
| 441 | /* IFLA_INFO_SLAVE_DATA + nested data */ |
| 442 | return nla_total_size(sizeof(struct nlattr)) + |
| 443 | ops->get_slave_size(master_dev, dev); |
| 444 | } |
| 445 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 446 | static size_t rtnl_link_get_size(const struct net_device *dev) |
| 447 | { |
| 448 | const struct rtnl_link_ops *ops = dev->rtnl_link_ops; |
| 449 | size_t size; |
| 450 | |
| 451 | if (!ops) |
| 452 | return 0; |
| 453 | |
Thomas Graf | 369cf77 | 2010-11-11 15:47:59 +0000 | [diff] [blame] | 454 | size = nla_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */ |
| 455 | nla_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */ |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 456 | |
| 457 | if (ops->get_size) |
| 458 | /* IFLA_INFO_DATA + nested data */ |
Thomas Graf | 369cf77 | 2010-11-11 15:47:59 +0000 | [diff] [blame] | 459 | size += nla_total_size(sizeof(struct nlattr)) + |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 460 | ops->get_size(dev); |
| 461 | |
| 462 | if (ops->get_xstats_size) |
Thomas Graf | 369cf77 | 2010-11-11 15:47:59 +0000 | [diff] [blame] | 463 | /* IFLA_INFO_XSTATS */ |
| 464 | size += nla_total_size(ops->get_xstats_size(dev)); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 465 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 466 | size += rtnl_link_get_slave_info_data_size(dev); |
| 467 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 468 | return size; |
| 469 | } |
| 470 | |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 471 | static LIST_HEAD(rtnl_af_ops); |
| 472 | |
| 473 | static const struct rtnl_af_ops *rtnl_af_lookup(const int family) |
| 474 | { |
| 475 | const struct rtnl_af_ops *ops; |
| 476 | |
| 477 | list_for_each_entry(ops, &rtnl_af_ops, list) { |
| 478 | if (ops->family == family) |
| 479 | return ops; |
| 480 | } |
| 481 | |
| 482 | return NULL; |
| 483 | } |
| 484 | |
| 485 | /** |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 486 | * rtnl_af_register - Register rtnl_af_ops with rtnetlink. |
| 487 | * @ops: struct rtnl_af_ops * to register |
| 488 | * |
| 489 | * Returns 0 on success or a negative error code. |
| 490 | */ |
stephen hemminger | 3678a9d | 2013-12-30 10:41:32 -0800 | [diff] [blame] | 491 | void rtnl_af_register(struct rtnl_af_ops *ops) |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 492 | { |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 493 | rtnl_lock(); |
stephen hemminger | 3678a9d | 2013-12-30 10:41:32 -0800 | [diff] [blame] | 494 | list_add_tail(&ops->list, &rtnl_af_ops); |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 495 | rtnl_unlock(); |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 496 | } |
| 497 | EXPORT_SYMBOL_GPL(rtnl_af_register); |
| 498 | |
| 499 | /** |
| 500 | * __rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink. |
| 501 | * @ops: struct rtnl_af_ops * to unregister |
| 502 | * |
| 503 | * The caller must hold the rtnl_mutex. |
| 504 | */ |
| 505 | void __rtnl_af_unregister(struct rtnl_af_ops *ops) |
| 506 | { |
| 507 | list_del(&ops->list); |
| 508 | } |
| 509 | EXPORT_SYMBOL_GPL(__rtnl_af_unregister); |
| 510 | |
| 511 | /** |
| 512 | * rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink. |
| 513 | * @ops: struct rtnl_af_ops * to unregister |
| 514 | */ |
| 515 | void rtnl_af_unregister(struct rtnl_af_ops *ops) |
| 516 | { |
| 517 | rtnl_lock(); |
| 518 | __rtnl_af_unregister(ops); |
| 519 | rtnl_unlock(); |
| 520 | } |
| 521 | EXPORT_SYMBOL_GPL(rtnl_af_unregister); |
| 522 | |
Arad, Ronen | b1974ed | 2015-10-19 09:23:28 -0700 | [diff] [blame] | 523 | static size_t rtnl_link_get_af_size(const struct net_device *dev, |
| 524 | u32 ext_filter_mask) |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 525 | { |
| 526 | struct rtnl_af_ops *af_ops; |
| 527 | size_t size; |
| 528 | |
| 529 | /* IFLA_AF_SPEC */ |
| 530 | size = nla_total_size(sizeof(struct nlattr)); |
| 531 | |
| 532 | list_for_each_entry(af_ops, &rtnl_af_ops, list) { |
| 533 | if (af_ops->get_link_af_size) { |
| 534 | /* AF_* + nested data */ |
| 535 | size += nla_total_size(sizeof(struct nlattr)) + |
Arad, Ronen | b1974ed | 2015-10-19 09:23:28 -0700 | [diff] [blame] | 536 | af_ops->get_link_af_size(dev, ext_filter_mask); |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 537 | } |
| 538 | } |
| 539 | |
| 540 | return size; |
| 541 | } |
| 542 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 543 | static bool rtnl_have_link_slave_info(const struct net_device *dev) |
| 544 | { |
| 545 | struct net_device *master_dev; |
| 546 | |
| 547 | master_dev = netdev_master_upper_dev_get((struct net_device *) dev); |
Jiri Pirko | 813f020 | 2014-01-23 19:19:21 +0100 | [diff] [blame] | 548 | if (master_dev && master_dev->rtnl_link_ops) |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 549 | return true; |
| 550 | return false; |
| 551 | } |
| 552 | |
| 553 | static int rtnl_link_slave_info_fill(struct sk_buff *skb, |
| 554 | const struct net_device *dev) |
| 555 | { |
| 556 | struct net_device *master_dev; |
| 557 | const struct rtnl_link_ops *ops; |
| 558 | struct nlattr *slave_data; |
| 559 | int err; |
| 560 | |
| 561 | master_dev = netdev_master_upper_dev_get((struct net_device *) dev); |
| 562 | if (!master_dev) |
| 563 | return 0; |
| 564 | ops = master_dev->rtnl_link_ops; |
| 565 | if (!ops) |
| 566 | return 0; |
| 567 | if (nla_put_string(skb, IFLA_INFO_SLAVE_KIND, ops->kind) < 0) |
| 568 | return -EMSGSIZE; |
| 569 | if (ops->fill_slave_info) { |
| 570 | slave_data = nla_nest_start(skb, IFLA_INFO_SLAVE_DATA); |
| 571 | if (!slave_data) |
| 572 | return -EMSGSIZE; |
| 573 | err = ops->fill_slave_info(skb, master_dev, dev); |
| 574 | if (err < 0) |
| 575 | goto err_cancel_slave_data; |
| 576 | nla_nest_end(skb, slave_data); |
| 577 | } |
| 578 | return 0; |
| 579 | |
| 580 | err_cancel_slave_data: |
| 581 | nla_nest_cancel(skb, slave_data); |
| 582 | return err; |
| 583 | } |
| 584 | |
| 585 | static int rtnl_link_info_fill(struct sk_buff *skb, |
| 586 | const struct net_device *dev) |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 587 | { |
| 588 | const struct rtnl_link_ops *ops = dev->rtnl_link_ops; |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 589 | struct nlattr *data; |
| 590 | int err; |
| 591 | |
| 592 | if (!ops) |
| 593 | return 0; |
| 594 | if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0) |
| 595 | return -EMSGSIZE; |
| 596 | if (ops->fill_xstats) { |
| 597 | err = ops->fill_xstats(skb, dev); |
| 598 | if (err < 0) |
| 599 | return err; |
| 600 | } |
| 601 | if (ops->fill_info) { |
| 602 | data = nla_nest_start(skb, IFLA_INFO_DATA); |
| 603 | if (data == NULL) |
| 604 | return -EMSGSIZE; |
| 605 | err = ops->fill_info(skb, dev); |
| 606 | if (err < 0) |
| 607 | goto err_cancel_data; |
| 608 | nla_nest_end(skb, data); |
| 609 | } |
| 610 | return 0; |
| 611 | |
| 612 | err_cancel_data: |
| 613 | nla_nest_cancel(skb, data); |
| 614 | return err; |
| 615 | } |
| 616 | |
| 617 | static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev) |
| 618 | { |
| 619 | struct nlattr *linkinfo; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 620 | int err = -EMSGSIZE; |
| 621 | |
| 622 | linkinfo = nla_nest_start(skb, IFLA_LINKINFO); |
| 623 | if (linkinfo == NULL) |
| 624 | goto out; |
| 625 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 626 | err = rtnl_link_info_fill(skb, dev); |
| 627 | if (err < 0) |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 628 | goto err_cancel_link; |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 629 | |
| 630 | err = rtnl_link_slave_info_fill(skb, dev); |
| 631 | if (err < 0) |
| 632 | goto err_cancel_link; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 633 | |
| 634 | nla_nest_end(skb, linkinfo); |
| 635 | return 0; |
| 636 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 637 | err_cancel_link: |
| 638 | nla_nest_cancel(skb, linkinfo); |
| 639 | out: |
| 640 | return err; |
| 641 | } |
| 642 | |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 643 | 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] | 644 | { |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 645 | struct sock *rtnl = net->rtnl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | int err = 0; |
| 647 | |
Patrick McHardy | ac6d439 | 2005-08-14 19:29:52 -0700 | [diff] [blame] | 648 | NETLINK_CB(skb).dst_group = group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | if (echo) |
| 650 | atomic_inc(&skb->users); |
| 651 | netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL); |
| 652 | if (echo) |
| 653 | err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT); |
| 654 | return err; |
| 655 | } |
| 656 | |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 657 | int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid) |
Thomas Graf | 2942e90 | 2006-08-15 00:30:25 -0700 | [diff] [blame] | 658 | { |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 659 | struct sock *rtnl = net->rtnl; |
| 660 | |
Thomas Graf | 2942e90 | 2006-08-15 00:30:25 -0700 | [diff] [blame] | 661 | return nlmsg_unicast(rtnl, skb, pid); |
| 662 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 663 | EXPORT_SYMBOL(rtnl_unicast); |
Thomas Graf | 2942e90 | 2006-08-15 00:30:25 -0700 | [diff] [blame] | 664 | |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 665 | void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group, |
| 666 | struct nlmsghdr *nlh, gfp_t flags) |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 667 | { |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 668 | struct sock *rtnl = net->rtnl; |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 669 | int report = 0; |
| 670 | |
| 671 | if (nlh) |
| 672 | report = nlmsg_report(nlh); |
| 673 | |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 674 | nlmsg_notify(rtnl, skb, pid, group, report, flags); |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 675 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 676 | EXPORT_SYMBOL(rtnl_notify); |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 677 | |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 678 | void rtnl_set_sk_err(struct net *net, u32 group, int error) |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 679 | { |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 680 | struct sock *rtnl = net->rtnl; |
| 681 | |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 682 | netlink_set_err(rtnl, 0, group, error); |
| 683 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 684 | EXPORT_SYMBOL(rtnl_set_sk_err); |
Thomas Graf | 97676b6 | 2006-08-15 00:31:41 -0700 | [diff] [blame] | 685 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics) |
| 687 | { |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 688 | struct nlattr *mx; |
| 689 | int i, valid = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 691 | mx = nla_nest_start(skb, RTA_METRICS); |
| 692 | if (mx == NULL) |
| 693 | return -ENOBUFS; |
| 694 | |
| 695 | for (i = 0; i < RTAX_MAX; i++) { |
| 696 | if (metrics[i]) { |
Daniel Borkmann | ea69763 | 2015-01-05 23:57:47 +0100 | [diff] [blame] | 697 | if (i == RTAX_CC_ALGO - 1) { |
| 698 | char tmp[TCP_CA_NAME_MAX], *name; |
| 699 | |
| 700 | name = tcp_ca_get_name_by_key(metrics[i], tmp); |
| 701 | if (!name) |
| 702 | continue; |
| 703 | if (nla_put_string(skb, i + 1, name)) |
| 704 | goto nla_put_failure; |
Daniel Borkmann | c3a8d94 | 2015-08-31 15:58:47 +0200 | [diff] [blame] | 705 | } else if (i == RTAX_FEATURES - 1) { |
| 706 | u32 user_features = metrics[i] & RTAX_FEATURE_MASK; |
| 707 | |
Phil Sutter | f8edcd1 | 2016-08-23 13:14:31 +0200 | [diff] [blame] | 708 | if (!user_features) |
| 709 | continue; |
Daniel Borkmann | c3a8d94 | 2015-08-31 15:58:47 +0200 | [diff] [blame] | 710 | BUILD_BUG_ON(RTAX_FEATURE_MASK & DST_FEATURE_MASK); |
| 711 | if (nla_put_u32(skb, i + 1, user_features)) |
| 712 | goto nla_put_failure; |
Daniel Borkmann | ea69763 | 2015-01-05 23:57:47 +0100 | [diff] [blame] | 713 | } else { |
| 714 | if (nla_put_u32(skb, i + 1, metrics[i])) |
| 715 | goto nla_put_failure; |
| 716 | } |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 717 | valid++; |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 718 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | |
David S. Miller | a57d27f | 2006-08-22 22:20:14 -0700 | [diff] [blame] | 721 | if (!valid) { |
| 722 | nla_nest_cancel(skb, mx); |
| 723 | return 0; |
| 724 | } |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 725 | |
| 726 | return nla_nest_end(skb, mx); |
| 727 | |
| 728 | nla_put_failure: |
Thomas Graf | bc3ed28 | 2008-06-03 16:36:54 -0700 | [diff] [blame] | 729 | nla_nest_cancel(skb, mx); |
| 730 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 732 | EXPORT_SYMBOL(rtnetlink_put_metrics); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 734 | 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] | 735 | long expires, u32 error) |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 736 | { |
| 737 | struct rta_cacheinfo ci = { |
Eric Dumazet | a399a80 | 2012-08-08 21:13:53 +0000 | [diff] [blame] | 738 | .rta_lastuse = jiffies_delta_to_clock_t(jiffies - dst->lastuse), |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 739 | .rta_used = dst->__use, |
| 740 | .rta_clntref = atomic_read(&(dst->__refcnt)), |
| 741 | .rta_error = error, |
| 742 | .rta_id = id, |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 743 | }; |
| 744 | |
Li Wei | 8253947 | 2012-07-29 16:01:30 +0000 | [diff] [blame] | 745 | if (expires) { |
| 746 | unsigned long clock; |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 747 | |
Li Wei | 8253947 | 2012-07-29 16:01:30 +0000 | [diff] [blame] | 748 | clock = jiffies_to_clock_t(abs(expires)); |
| 749 | clock = min_t(unsigned long, clock, INT_MAX); |
| 750 | ci.rta_expires = (expires > 0) ? clock : -clock; |
| 751 | } |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 752 | return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci); |
| 753 | } |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 754 | EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | |
David S. Miller | 93b2d4a | 2008-02-17 18:35:07 -0800 | [diff] [blame] | 756 | static void set_operstate(struct net_device *dev, unsigned char transition) |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 757 | { |
| 758 | unsigned char operstate = dev->operstate; |
| 759 | |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 760 | switch (transition) { |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 761 | case IF_OPER_UP: |
| 762 | if ((operstate == IF_OPER_DORMANT || |
| 763 | operstate == IF_OPER_UNKNOWN) && |
| 764 | !netif_dormant(dev)) |
| 765 | operstate = IF_OPER_UP; |
| 766 | break; |
| 767 | |
| 768 | case IF_OPER_DORMANT: |
| 769 | if (operstate == IF_OPER_UP || |
| 770 | operstate == IF_OPER_UNKNOWN) |
| 771 | operstate = IF_OPER_DORMANT; |
| 772 | break; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 773 | } |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 774 | |
| 775 | if (dev->operstate != operstate) { |
| 776 | write_lock_bh(&dev_base_lock); |
| 777 | dev->operstate = operstate; |
| 778 | write_unlock_bh(&dev_base_lock); |
David S. Miller | 93b2d4a | 2008-02-17 18:35:07 -0800 | [diff] [blame] | 779 | netdev_state_change(dev); |
| 780 | } |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 781 | } |
| 782 | |
Jiri Benc | b1beb68 | 2012-07-27 02:58:22 +0000 | [diff] [blame] | 783 | static unsigned int rtnl_dev_get_flags(const struct net_device *dev) |
| 784 | { |
| 785 | return (dev->flags & ~(IFF_PROMISC | IFF_ALLMULTI)) | |
| 786 | (dev->gflags & (IFF_PROMISC | IFF_ALLMULTI)); |
| 787 | } |
| 788 | |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 789 | static unsigned int rtnl_dev_combine_flags(const struct net_device *dev, |
| 790 | const struct ifinfomsg *ifm) |
| 791 | { |
| 792 | unsigned int flags = ifm->ifi_flags; |
| 793 | |
| 794 | /* bugwards compatibility: ifi_change == 0 is treated as ~0 */ |
| 795 | if (ifm->ifi_change) |
| 796 | flags = (flags & ifm->ifi_change) | |
Jiri Benc | b1beb68 | 2012-07-27 02:58:22 +0000 | [diff] [blame] | 797 | (rtnl_dev_get_flags(dev) & ~ifm->ifi_change); |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 798 | |
| 799 | return flags; |
| 800 | } |
| 801 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 802 | static void copy_rtnl_link_stats(struct rtnl_link_stats *a, |
Ben Hutchings | be1f3c2 | 2010-06-08 07:19:54 +0000 | [diff] [blame] | 803 | const struct rtnl_link_stats64 *b) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | { |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 805 | a->rx_packets = b->rx_packets; |
| 806 | a->tx_packets = b->tx_packets; |
| 807 | a->rx_bytes = b->rx_bytes; |
| 808 | a->tx_bytes = b->tx_bytes; |
| 809 | a->rx_errors = b->rx_errors; |
| 810 | a->tx_errors = b->tx_errors; |
| 811 | a->rx_dropped = b->rx_dropped; |
| 812 | a->tx_dropped = b->tx_dropped; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 814 | a->multicast = b->multicast; |
| 815 | a->collisions = b->collisions; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 817 | a->rx_length_errors = b->rx_length_errors; |
| 818 | a->rx_over_errors = b->rx_over_errors; |
| 819 | a->rx_crc_errors = b->rx_crc_errors; |
| 820 | a->rx_frame_errors = b->rx_frame_errors; |
| 821 | a->rx_fifo_errors = b->rx_fifo_errors; |
| 822 | a->rx_missed_errors = b->rx_missed_errors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 824 | a->tx_aborted_errors = b->tx_aborted_errors; |
| 825 | a->tx_carrier_errors = b->tx_carrier_errors; |
| 826 | a->tx_fifo_errors = b->tx_fifo_errors; |
| 827 | a->tx_heartbeat_errors = b->tx_heartbeat_errors; |
| 828 | a->tx_window_errors = b->tx_window_errors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 830 | a->rx_compressed = b->rx_compressed; |
| 831 | a->tx_compressed = b->tx_compressed; |
Jarod Wilson | 6e7333d | 2016-02-01 18:51:05 -0500 | [diff] [blame] | 832 | |
| 833 | a->rx_nohandler = b->rx_nohandler; |
Jan Engelhardt | 10708f3 | 2010-03-11 09:57:29 +0000 | [diff] [blame] | 834 | } |
| 835 | |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 836 | /* All VF info */ |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 837 | static inline int rtnl_vfinfo_size(const struct net_device *dev, |
| 838 | u32 ext_filter_mask) |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 839 | { |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 840 | if (dev->dev.parent && dev_is_pci(dev->dev.parent) && |
| 841 | (ext_filter_mask & RTEXT_FILTER_VF)) { |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 842 | int num_vfs = dev_num_vf(dev->dev.parent); |
Sabrina Dubroca | 7e75f74 | 2016-11-15 10:39:03 +0100 | [diff] [blame] | 843 | size_t size = nla_total_size(0); |
Scott Feldman | 045de01 | 2010-05-28 03:42:43 -0700 | [diff] [blame] | 844 | size += num_vfs * |
Sabrina Dubroca | 7e75f74 | 2016-11-15 10:39:03 +0100 | [diff] [blame] | 845 | (nla_total_size(0) + |
| 846 | nla_total_size(sizeof(struct ifla_vf_mac)) + |
| 847 | nla_total_size(sizeof(struct ifla_vf_vlan)) + |
| 848 | nla_total_size(0) + /* nest IFLA_VF_VLAN_LIST */ |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 849 | nla_total_size(MAX_VLAN_LIST_LEN * |
| 850 | sizeof(struct ifla_vf_vlan_info)) + |
Sucheta Chakraborty | ed61668 | 2014-05-22 09:59:05 -0400 | [diff] [blame] | 851 | nla_total_size(sizeof(struct ifla_vf_spoofchk)) + |
Sabrina Dubroca | 7e75f74 | 2016-11-15 10:39:03 +0100 | [diff] [blame] | 852 | nla_total_size(sizeof(struct ifla_vf_tx_rate)) + |
Jiri Benc | 945a367 | 2014-08-08 16:44:32 +0200 | [diff] [blame] | 853 | nla_total_size(sizeof(struct ifla_vf_rate)) + |
Vlad Zolotarov | 01a3d79 | 2015-03-30 21:35:23 +0300 | [diff] [blame] | 854 | nla_total_size(sizeof(struct ifla_vf_link_state)) + |
Eran Ben Elisha | 3b766cd | 2015-06-15 17:59:07 +0300 | [diff] [blame] | 855 | nla_total_size(sizeof(struct ifla_vf_rss_query_en)) + |
Sabrina Dubroca | 7e75f74 | 2016-11-15 10:39:03 +0100 | [diff] [blame] | 856 | nla_total_size(0) + /* nest IFLA_VF_STATS */ |
Eran Ben Elisha | 3b766cd | 2015-06-15 17:59:07 +0300 | [diff] [blame] | 857 | /* IFLA_VF_STATS_RX_PACKETS */ |
Nicolas Dichtel | 343a6d8 | 2016-04-25 10:25:14 +0200 | [diff] [blame] | 858 | nla_total_size_64bit(sizeof(__u64)) + |
Eran Ben Elisha | 3b766cd | 2015-06-15 17:59:07 +0300 | [diff] [blame] | 859 | /* IFLA_VF_STATS_TX_PACKETS */ |
Nicolas Dichtel | 343a6d8 | 2016-04-25 10:25:14 +0200 | [diff] [blame] | 860 | nla_total_size_64bit(sizeof(__u64)) + |
Eran Ben Elisha | 3b766cd | 2015-06-15 17:59:07 +0300 | [diff] [blame] | 861 | /* IFLA_VF_STATS_RX_BYTES */ |
Nicolas Dichtel | 343a6d8 | 2016-04-25 10:25:14 +0200 | [diff] [blame] | 862 | nla_total_size_64bit(sizeof(__u64)) + |
Eran Ben Elisha | 3b766cd | 2015-06-15 17:59:07 +0300 | [diff] [blame] | 863 | /* IFLA_VF_STATS_TX_BYTES */ |
Nicolas Dichtel | 343a6d8 | 2016-04-25 10:25:14 +0200 | [diff] [blame] | 864 | nla_total_size_64bit(sizeof(__u64)) + |
Eran Ben Elisha | 3b766cd | 2015-06-15 17:59:07 +0300 | [diff] [blame] | 865 | /* IFLA_VF_STATS_BROADCAST */ |
Nicolas Dichtel | 343a6d8 | 2016-04-25 10:25:14 +0200 | [diff] [blame] | 866 | nla_total_size_64bit(sizeof(__u64)) + |
Eran Ben Elisha | 3b766cd | 2015-06-15 17:59:07 +0300 | [diff] [blame] | 867 | /* IFLA_VF_STATS_MULTICAST */ |
Nicolas Dichtel | 343a6d8 | 2016-04-25 10:25:14 +0200 | [diff] [blame] | 868 | nla_total_size_64bit(sizeof(__u64)) + |
Hiroshi Shimamoto | dd461d6 | 2015-08-28 06:57:55 +0000 | [diff] [blame] | 869 | nla_total_size(sizeof(struct ifla_vf_trust))); |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 870 | return size; |
| 871 | } else |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 872 | return 0; |
| 873 | } |
| 874 | |
David Gibson | c53864f | 2014-04-24 10:22:36 +1000 | [diff] [blame] | 875 | static size_t rtnl_port_size(const struct net_device *dev, |
| 876 | u32 ext_filter_mask) |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 877 | { |
| 878 | size_t port_size = nla_total_size(4) /* PORT_VF */ |
| 879 | + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */ |
| 880 | + nla_total_size(sizeof(struct ifla_port_vsi)) |
| 881 | /* PORT_VSI_TYPE */ |
| 882 | + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */ |
| 883 | + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */ |
| 884 | + nla_total_size(1) /* PROT_VDP_REQUEST */ |
| 885 | + nla_total_size(2); /* PORT_VDP_RESPONSE */ |
| 886 | size_t vf_ports_size = nla_total_size(sizeof(struct nlattr)); |
| 887 | size_t vf_port_size = nla_total_size(sizeof(struct nlattr)) |
| 888 | + port_size; |
| 889 | size_t port_self_size = nla_total_size(sizeof(struct nlattr)) |
| 890 | + port_size; |
| 891 | |
David Gibson | c53864f | 2014-04-24 10:22:36 +1000 | [diff] [blame] | 892 | if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent || |
| 893 | !(ext_filter_mask & RTEXT_FILTER_VF)) |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 894 | return 0; |
| 895 | if (dev_num_vf(dev->dev.parent)) |
| 896 | return port_self_size + vf_ports_size + |
| 897 | vf_port_size * dev_num_vf(dev->dev.parent); |
| 898 | else |
| 899 | return port_self_size; |
| 900 | } |
| 901 | |
Brenden Blanco | d1fdd91 | 2016-07-19 12:16:49 -0700 | [diff] [blame] | 902 | static size_t rtnl_xdp_size(const struct net_device *dev) |
| 903 | { |
Sabrina Dubroca | b3cfaa3 | 2016-11-15 11:16:35 +0100 | [diff] [blame] | 904 | size_t xdp_size = nla_total_size(0) + /* nest IFLA_XDP */ |
| 905 | nla_total_size(1); /* XDP_ATTACHED */ |
Brenden Blanco | d1fdd91 | 2016-07-19 12:16:49 -0700 | [diff] [blame] | 906 | |
| 907 | if (!dev->netdev_ops->ndo_xdp) |
| 908 | return 0; |
| 909 | else |
| 910 | return xdp_size; |
| 911 | } |
| 912 | |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 913 | static noinline size_t if_nlmsg_size(const struct net_device *dev, |
| 914 | u32 ext_filter_mask) |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 915 | { |
| 916 | return NLMSG_ALIGN(sizeof(struct ifinfomsg)) |
| 917 | + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */ |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 918 | + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */ |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 919 | + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */ |
Nicolas Dichtel | 270cb4d | 2016-04-26 10:06:16 +0200 | [diff] [blame] | 920 | + nla_total_size_64bit(sizeof(struct rtnl_link_ifmap)) |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 921 | + nla_total_size(sizeof(struct rtnl_link_stats)) |
David S. Miller | 35c5845 | 2016-04-19 19:49:29 -0400 | [diff] [blame] | 922 | + nla_total_size_64bit(sizeof(struct rtnl_link_stats64)) |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 923 | + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */ |
| 924 | + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */ |
| 925 | + nla_total_size(4) /* IFLA_TXQLEN */ |
| 926 | + nla_total_size(4) /* IFLA_WEIGHT */ |
| 927 | + nla_total_size(4) /* IFLA_MTU */ |
| 928 | + nla_total_size(4) /* IFLA_LINK */ |
| 929 | + nla_total_size(4) /* IFLA_MASTER */ |
Jiri Pirko | 9a57247 | 2012-12-27 23:49:39 +0000 | [diff] [blame] | 930 | + nla_total_size(1) /* IFLA_CARRIER */ |
Ben Greear | edbc0bb | 2012-03-29 12:51:30 +0000 | [diff] [blame] | 931 | + nla_total_size(4) /* IFLA_PROMISCUITY */ |
Jiri Pirko | 76ff5cc | 2012-07-20 02:28:48 +0000 | [diff] [blame] | 932 | + nla_total_size(4) /* IFLA_NUM_TX_QUEUES */ |
| 933 | + nla_total_size(4) /* IFLA_NUM_RX_QUEUES */ |
Tobias Klauser | 6919756 | 2016-11-30 14:30:37 +0100 | [diff] [blame] | 934 | + nla_total_size(4) /* IFLA_GSO_MAX_SEGS */ |
| 935 | + nla_total_size(4) /* IFLA_GSO_MAX_SIZE */ |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 936 | + nla_total_size(1) /* IFLA_OPERSTATE */ |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 937 | + nla_total_size(1) /* IFLA_LINKMODE */ |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 938 | + nla_total_size(4) /* IFLA_CARRIER_CHANGES */ |
Nicolas Dichtel | d37512a | 2015-01-15 15:11:16 +0100 | [diff] [blame] | 939 | + nla_total_size(4) /* IFLA_LINK_NETNSID */ |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 940 | + nla_total_size(ext_filter_mask |
| 941 | & RTEXT_FILTER_VF ? 4 : 0) /* IFLA_NUM_VF */ |
| 942 | + rtnl_vfinfo_size(dev, ext_filter_mask) /* IFLA_VFINFO_LIST */ |
David Gibson | c53864f | 2014-04-24 10:22:36 +1000 | [diff] [blame] | 943 | + 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] | 944 | + rtnl_link_get_size(dev) /* IFLA_LINKINFO */ |
Arad, Ronen | b1974ed | 2015-10-19 09:23:28 -0700 | [diff] [blame] | 945 | + rtnl_link_get_af_size(dev, ext_filter_mask) /* IFLA_AF_SPEC */ |
Jiri Pirko | 82f2841 | 2014-11-28 14:34:18 +0100 | [diff] [blame] | 946 | + nla_total_size(MAX_PHYS_ITEM_ID_LEN) /* IFLA_PHYS_PORT_ID */ |
Anuradha Karuppiah | 88d6378 | 2015-07-14 13:43:20 -0700 | [diff] [blame] | 947 | + nla_total_size(MAX_PHYS_ITEM_ID_LEN) /* IFLA_PHYS_SWITCH_ID */ |
Nicolas Dichtel | c57c7a9 | 2016-03-31 18:10:31 +0200 | [diff] [blame] | 948 | + nla_total_size(IFNAMSIZ) /* IFLA_PHYS_PORT_NAME */ |
Brenden Blanco | d1fdd91 | 2016-07-19 12:16:49 -0700 | [diff] [blame] | 949 | + rtnl_xdp_size(dev) /* IFLA_XDP */ |
Anuradha Karuppiah | 88d6378 | 2015-07-14 13:43:20 -0700 | [diff] [blame] | 950 | + nla_total_size(1); /* IFLA_PROTO_DOWN */ |
| 951 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 952 | } |
| 953 | |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 954 | static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev) |
| 955 | { |
| 956 | struct nlattr *vf_ports; |
| 957 | struct nlattr *vf_port; |
| 958 | int vf; |
| 959 | int err; |
| 960 | |
| 961 | vf_ports = nla_nest_start(skb, IFLA_VF_PORTS); |
| 962 | if (!vf_ports) |
| 963 | return -EMSGSIZE; |
| 964 | |
| 965 | for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) { |
| 966 | vf_port = nla_nest_start(skb, IFLA_VF_PORT); |
Scott Feldman | 8ca9418 | 2010-05-28 03:42:18 -0700 | [diff] [blame] | 967 | if (!vf_port) |
| 968 | goto nla_put_failure; |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 969 | if (nla_put_u32(skb, IFLA_PORT_VF, vf)) |
| 970 | goto nla_put_failure; |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 971 | err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb); |
Scott Feldman | 8ca9418 | 2010-05-28 03:42:18 -0700 | [diff] [blame] | 972 | if (err == -EMSGSIZE) |
| 973 | goto nla_put_failure; |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 974 | if (err) { |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 975 | nla_nest_cancel(skb, vf_port); |
| 976 | continue; |
| 977 | } |
| 978 | nla_nest_end(skb, vf_port); |
| 979 | } |
| 980 | |
| 981 | nla_nest_end(skb, vf_ports); |
| 982 | |
| 983 | return 0; |
Scott Feldman | 8ca9418 | 2010-05-28 03:42:18 -0700 | [diff] [blame] | 984 | |
| 985 | nla_put_failure: |
| 986 | nla_nest_cancel(skb, vf_ports); |
| 987 | return -EMSGSIZE; |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 988 | } |
| 989 | |
| 990 | static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev) |
| 991 | { |
| 992 | struct nlattr *port_self; |
| 993 | int err; |
| 994 | |
| 995 | port_self = nla_nest_start(skb, IFLA_PORT_SELF); |
| 996 | if (!port_self) |
| 997 | return -EMSGSIZE; |
| 998 | |
| 999 | err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb); |
| 1000 | if (err) { |
| 1001 | nla_nest_cancel(skb, port_self); |
Scott Feldman | 8ca9418 | 2010-05-28 03:42:18 -0700 | [diff] [blame] | 1002 | return (err == -EMSGSIZE) ? err : 0; |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 1003 | } |
| 1004 | |
| 1005 | nla_nest_end(skb, port_self); |
| 1006 | |
| 1007 | return 0; |
| 1008 | } |
| 1009 | |
David Gibson | c53864f | 2014-04-24 10:22:36 +1000 | [diff] [blame] | 1010 | static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev, |
| 1011 | u32 ext_filter_mask) |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 1012 | { |
| 1013 | int err; |
| 1014 | |
David Gibson | c53864f | 2014-04-24 10:22:36 +1000 | [diff] [blame] | 1015 | if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent || |
| 1016 | !(ext_filter_mask & RTEXT_FILTER_VF)) |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 1017 | return 0; |
| 1018 | |
| 1019 | err = rtnl_port_self_fill(skb, dev); |
| 1020 | if (err) |
| 1021 | return err; |
| 1022 | |
| 1023 | if (dev_num_vf(dev->dev.parent)) { |
| 1024 | err = rtnl_vf_ports_fill(skb, dev); |
| 1025 | if (err) |
| 1026 | return err; |
| 1027 | } |
| 1028 | |
| 1029 | return 0; |
| 1030 | } |
| 1031 | |
Jiri Pirko | 66cae9e | 2013-07-29 18:16:50 +0200 | [diff] [blame] | 1032 | static int rtnl_phys_port_id_fill(struct sk_buff *skb, struct net_device *dev) |
| 1033 | { |
| 1034 | int err; |
Jiri Pirko | 02637fc | 2014-11-28 14:34:16 +0100 | [diff] [blame] | 1035 | struct netdev_phys_item_id ppid; |
Jiri Pirko | 66cae9e | 2013-07-29 18:16:50 +0200 | [diff] [blame] | 1036 | |
| 1037 | err = dev_get_phys_port_id(dev, &ppid); |
| 1038 | if (err) { |
| 1039 | if (err == -EOPNOTSUPP) |
| 1040 | return 0; |
| 1041 | return err; |
| 1042 | } |
| 1043 | |
| 1044 | if (nla_put(skb, IFLA_PHYS_PORT_ID, ppid.id_len, ppid.id)) |
| 1045 | return -EMSGSIZE; |
| 1046 | |
| 1047 | return 0; |
| 1048 | } |
| 1049 | |
David Ahern | db24a90 | 2015-03-17 20:23:15 -0600 | [diff] [blame] | 1050 | static int rtnl_phys_port_name_fill(struct sk_buff *skb, struct net_device *dev) |
| 1051 | { |
| 1052 | char name[IFNAMSIZ]; |
| 1053 | int err; |
| 1054 | |
| 1055 | err = dev_get_phys_port_name(dev, name, sizeof(name)); |
| 1056 | if (err) { |
| 1057 | if (err == -EOPNOTSUPP) |
| 1058 | return 0; |
| 1059 | return err; |
| 1060 | } |
| 1061 | |
Michal Schmidt | 5d8e077 | 2017-05-04 16:48:58 +0200 | [diff] [blame] | 1062 | if (nla_put_string(skb, IFLA_PHYS_PORT_NAME, name)) |
David Ahern | db24a90 | 2015-03-17 20:23:15 -0600 | [diff] [blame] | 1063 | return -EMSGSIZE; |
| 1064 | |
| 1065 | return 0; |
| 1066 | } |
| 1067 | |
Jiri Pirko | 82f2841 | 2014-11-28 14:34:18 +0100 | [diff] [blame] | 1068 | static int rtnl_phys_switch_id_fill(struct sk_buff *skb, struct net_device *dev) |
| 1069 | { |
| 1070 | int err; |
Scott Feldman | f8e20a9 | 2015-05-10 09:47:49 -0700 | [diff] [blame] | 1071 | struct switchdev_attr attr = { |
Ido Schimmel | 6ff64f6 | 2015-12-15 16:03:35 +0100 | [diff] [blame] | 1072 | .orig_dev = dev, |
Jiri Pirko | 1f86839 | 2015-10-01 11:03:42 +0200 | [diff] [blame] | 1073 | .id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID, |
Scott Feldman | f8e20a9 | 2015-05-10 09:47:49 -0700 | [diff] [blame] | 1074 | .flags = SWITCHDEV_F_NO_RECURSE, |
| 1075 | }; |
Jiri Pirko | 82f2841 | 2014-11-28 14:34:18 +0100 | [diff] [blame] | 1076 | |
Scott Feldman | f8e20a9 | 2015-05-10 09:47:49 -0700 | [diff] [blame] | 1077 | err = switchdev_port_attr_get(dev, &attr); |
Jiri Pirko | 82f2841 | 2014-11-28 14:34:18 +0100 | [diff] [blame] | 1078 | if (err) { |
| 1079 | if (err == -EOPNOTSUPP) |
| 1080 | return 0; |
| 1081 | return err; |
| 1082 | } |
| 1083 | |
Scott Feldman | 42275bd | 2015-05-13 11:16:50 -0700 | [diff] [blame] | 1084 | if (nla_put(skb, IFLA_PHYS_SWITCH_ID, attr.u.ppid.id_len, |
| 1085 | attr.u.ppid.id)) |
Jiri Pirko | 82f2841 | 2014-11-28 14:34:18 +0100 | [diff] [blame] | 1086 | return -EMSGSIZE; |
| 1087 | |
| 1088 | return 0; |
| 1089 | } |
| 1090 | |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1091 | static noinline_for_stack int rtnl_fill_stats(struct sk_buff *skb, |
| 1092 | struct net_device *dev) |
| 1093 | { |
Roopa Prabhu | 550bce5 | 2016-04-15 20:36:25 -0700 | [diff] [blame] | 1094 | struct rtnl_link_stats64 *sp; |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1095 | struct nlattr *attr; |
| 1096 | |
Nicolas Dichtel | 58414d3 | 2016-04-21 18:58:25 +0200 | [diff] [blame] | 1097 | attr = nla_reserve_64bit(skb, IFLA_STATS64, |
| 1098 | sizeof(struct rtnl_link_stats64), IFLA_PAD); |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1099 | if (!attr) |
| 1100 | return -EMSGSIZE; |
| 1101 | |
Roopa Prabhu | 550bce5 | 2016-04-15 20:36:25 -0700 | [diff] [blame] | 1102 | sp = nla_data(attr); |
| 1103 | dev_get_stats(dev, sp); |
| 1104 | |
| 1105 | attr = nla_reserve(skb, IFLA_STATS, |
| 1106 | sizeof(struct rtnl_link_stats)); |
| 1107 | if (!attr) |
| 1108 | return -EMSGSIZE; |
| 1109 | |
| 1110 | copy_rtnl_link_stats(nla_data(attr), sp); |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1111 | |
| 1112 | return 0; |
| 1113 | } |
| 1114 | |
| 1115 | static noinline_for_stack int rtnl_fill_vfinfo(struct sk_buff *skb, |
| 1116 | struct net_device *dev, |
| 1117 | int vfs_num, |
| 1118 | struct nlattr *vfinfo) |
| 1119 | { |
| 1120 | struct ifla_vf_rss_query_en vf_rss_query_en; |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 1121 | struct nlattr *vf, *vfstats, *vfvlanlist; |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1122 | struct ifla_vf_link_state vf_linkstate; |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 1123 | struct ifla_vf_vlan_info vf_vlan_info; |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1124 | struct ifla_vf_spoofchk vf_spoofchk; |
| 1125 | struct ifla_vf_tx_rate vf_tx_rate; |
| 1126 | struct ifla_vf_stats vf_stats; |
| 1127 | struct ifla_vf_trust vf_trust; |
| 1128 | struct ifla_vf_vlan vf_vlan; |
| 1129 | struct ifla_vf_rate vf_rate; |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1130 | struct ifla_vf_mac vf_mac; |
| 1131 | struct ifla_vf_info ivi; |
| 1132 | |
| 1133 | /* Not all SR-IOV capable drivers support the |
| 1134 | * spoofcheck and "RSS query enable" query. Preset to |
| 1135 | * -1 so the user space tool can detect that the driver |
| 1136 | * didn't report anything. |
| 1137 | */ |
| 1138 | ivi.spoofchk = -1; |
| 1139 | ivi.rss_query_en = -1; |
| 1140 | ivi.trusted = -1; |
| 1141 | memset(ivi.mac, 0, sizeof(ivi.mac)); |
| 1142 | /* The default value for VF link state is "auto" |
| 1143 | * IFLA_VF_LINK_STATE_AUTO which equals zero |
| 1144 | */ |
| 1145 | ivi.linkstate = 0; |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 1146 | /* VLAN Protocol by default is 802.1Q */ |
| 1147 | ivi.vlan_proto = htons(ETH_P_8021Q); |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1148 | if (dev->netdev_ops->ndo_get_vf_config(dev, vfs_num, &ivi)) |
| 1149 | return 0; |
| 1150 | |
Dan Carpenter | 775f4f0 | 2016-10-13 11:45:28 +0300 | [diff] [blame] | 1151 | memset(&vf_vlan_info, 0, sizeof(vf_vlan_info)); |
| 1152 | |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1153 | vf_mac.vf = |
| 1154 | vf_vlan.vf = |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 1155 | vf_vlan_info.vf = |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1156 | vf_rate.vf = |
| 1157 | vf_tx_rate.vf = |
| 1158 | vf_spoofchk.vf = |
| 1159 | vf_linkstate.vf = |
| 1160 | vf_rss_query_en.vf = |
| 1161 | vf_trust.vf = ivi.vf; |
| 1162 | |
| 1163 | memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac)); |
| 1164 | vf_vlan.vlan = ivi.vlan; |
| 1165 | vf_vlan.qos = ivi.qos; |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 1166 | vf_vlan_info.vlan = ivi.vlan; |
| 1167 | vf_vlan_info.qos = ivi.qos; |
| 1168 | vf_vlan_info.vlan_proto = ivi.vlan_proto; |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1169 | vf_tx_rate.rate = ivi.max_tx_rate; |
| 1170 | vf_rate.min_tx_rate = ivi.min_tx_rate; |
| 1171 | vf_rate.max_tx_rate = ivi.max_tx_rate; |
| 1172 | vf_spoofchk.setting = ivi.spoofchk; |
| 1173 | vf_linkstate.link_state = ivi.linkstate; |
| 1174 | vf_rss_query_en.setting = ivi.rss_query_en; |
| 1175 | vf_trust.setting = ivi.trusted; |
| 1176 | vf = nla_nest_start(skb, IFLA_VF_INFO); |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 1177 | if (!vf) |
| 1178 | goto nla_put_vfinfo_failure; |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1179 | if (nla_put(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac) || |
| 1180 | nla_put(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan) || |
| 1181 | nla_put(skb, IFLA_VF_RATE, sizeof(vf_rate), |
| 1182 | &vf_rate) || |
| 1183 | nla_put(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate), |
| 1184 | &vf_tx_rate) || |
| 1185 | nla_put(skb, IFLA_VF_SPOOFCHK, sizeof(vf_spoofchk), |
| 1186 | &vf_spoofchk) || |
| 1187 | nla_put(skb, IFLA_VF_LINK_STATE, sizeof(vf_linkstate), |
| 1188 | &vf_linkstate) || |
| 1189 | nla_put(skb, IFLA_VF_RSS_QUERY_EN, |
| 1190 | sizeof(vf_rss_query_en), |
| 1191 | &vf_rss_query_en) || |
| 1192 | nla_put(skb, IFLA_VF_TRUST, |
| 1193 | sizeof(vf_trust), &vf_trust)) |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 1194 | goto nla_put_vf_failure; |
| 1195 | vfvlanlist = nla_nest_start(skb, IFLA_VF_VLAN_LIST); |
| 1196 | if (!vfvlanlist) |
| 1197 | goto nla_put_vf_failure; |
| 1198 | if (nla_put(skb, IFLA_VF_VLAN_INFO, sizeof(vf_vlan_info), |
| 1199 | &vf_vlan_info)) { |
| 1200 | nla_nest_cancel(skb, vfvlanlist); |
| 1201 | goto nla_put_vf_failure; |
| 1202 | } |
| 1203 | nla_nest_end(skb, vfvlanlist); |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1204 | memset(&vf_stats, 0, sizeof(vf_stats)); |
| 1205 | if (dev->netdev_ops->ndo_get_vf_stats) |
| 1206 | dev->netdev_ops->ndo_get_vf_stats(dev, vfs_num, |
| 1207 | &vf_stats); |
| 1208 | vfstats = nla_nest_start(skb, IFLA_VF_STATS); |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 1209 | if (!vfstats) |
| 1210 | goto nla_put_vf_failure; |
Nicolas Dichtel | 343a6d8 | 2016-04-25 10:25:14 +0200 | [diff] [blame] | 1211 | if (nla_put_u64_64bit(skb, IFLA_VF_STATS_RX_PACKETS, |
| 1212 | vf_stats.rx_packets, IFLA_VF_STATS_PAD) || |
| 1213 | nla_put_u64_64bit(skb, IFLA_VF_STATS_TX_PACKETS, |
| 1214 | vf_stats.tx_packets, IFLA_VF_STATS_PAD) || |
| 1215 | nla_put_u64_64bit(skb, IFLA_VF_STATS_RX_BYTES, |
| 1216 | vf_stats.rx_bytes, IFLA_VF_STATS_PAD) || |
| 1217 | nla_put_u64_64bit(skb, IFLA_VF_STATS_TX_BYTES, |
| 1218 | vf_stats.tx_bytes, IFLA_VF_STATS_PAD) || |
| 1219 | nla_put_u64_64bit(skb, IFLA_VF_STATS_BROADCAST, |
| 1220 | vf_stats.broadcast, IFLA_VF_STATS_PAD) || |
| 1221 | nla_put_u64_64bit(skb, IFLA_VF_STATS_MULTICAST, |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 1222 | vf_stats.multicast, IFLA_VF_STATS_PAD)) { |
| 1223 | nla_nest_cancel(skb, vfstats); |
| 1224 | goto nla_put_vf_failure; |
| 1225 | } |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1226 | nla_nest_end(skb, vfstats); |
| 1227 | nla_nest_end(skb, vf); |
| 1228 | return 0; |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 1229 | |
| 1230 | nla_put_vf_failure: |
| 1231 | nla_nest_cancel(skb, vf); |
| 1232 | nla_put_vfinfo_failure: |
| 1233 | nla_nest_cancel(skb, vfinfo); |
| 1234 | return -EMSGSIZE; |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1235 | } |
| 1236 | |
| 1237 | static int rtnl_fill_link_ifmap(struct sk_buff *skb, struct net_device *dev) |
| 1238 | { |
Kangjie Lu | 5f8e447 | 2016-05-03 16:46:24 -0400 | [diff] [blame] | 1239 | struct rtnl_link_ifmap map; |
| 1240 | |
| 1241 | memset(&map, 0, sizeof(map)); |
| 1242 | map.mem_start = dev->mem_start; |
| 1243 | map.mem_end = dev->mem_end; |
| 1244 | map.base_addr = dev->base_addr; |
| 1245 | map.irq = dev->irq; |
| 1246 | map.dma = dev->dma; |
| 1247 | map.port = dev->if_port; |
| 1248 | |
Nicolas Dichtel | 270cb4d | 2016-04-26 10:06:16 +0200 | [diff] [blame] | 1249 | if (nla_put_64bit(skb, IFLA_MAP, sizeof(map), &map, IFLA_PAD)) |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1250 | return -EMSGSIZE; |
| 1251 | |
| 1252 | return 0; |
| 1253 | } |
| 1254 | |
Brenden Blanco | d1fdd91 | 2016-07-19 12:16:49 -0700 | [diff] [blame] | 1255 | static int rtnl_xdp_fill(struct sk_buff *skb, struct net_device *dev) |
| 1256 | { |
| 1257 | struct netdev_xdp xdp_op = {}; |
| 1258 | struct nlattr *xdp; |
| 1259 | int err; |
| 1260 | |
| 1261 | if (!dev->netdev_ops->ndo_xdp) |
| 1262 | return 0; |
| 1263 | xdp = nla_nest_start(skb, IFLA_XDP); |
| 1264 | if (!xdp) |
| 1265 | return -EMSGSIZE; |
| 1266 | xdp_op.command = XDP_QUERY_PROG; |
| 1267 | err = dev->netdev_ops->ndo_xdp(dev, &xdp_op); |
| 1268 | if (err) |
| 1269 | goto err_cancel; |
| 1270 | err = nla_put_u8(skb, IFLA_XDP_ATTACHED, xdp_op.prog_attached); |
| 1271 | if (err) |
| 1272 | goto err_cancel; |
| 1273 | |
| 1274 | nla_nest_end(skb, xdp); |
| 1275 | return 0; |
| 1276 | |
| 1277 | err_cancel: |
| 1278 | nla_nest_cancel(skb, xdp); |
| 1279 | return err; |
| 1280 | } |
| 1281 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 1282 | 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] | 1283 | int type, u32 pid, u32 seq, u32 change, |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 1284 | unsigned int flags, u32 ext_filter_mask) |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 1285 | { |
| 1286 | struct ifinfomsg *ifm; |
| 1287 | struct nlmsghdr *nlh; |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1288 | struct nlattr *af_spec; |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 1289 | struct rtnl_af_ops *af_ops; |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1290 | struct net_device *upper_dev = netdev_master_upper_dev_get(dev); |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 1291 | |
Eric Dumazet | 2907c35 | 2011-05-25 07:34:04 +0000 | [diff] [blame] | 1292 | ASSERT_RTNL(); |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 1293 | nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags); |
| 1294 | if (nlh == NULL) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 1295 | return -EMSGSIZE; |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 1296 | |
| 1297 | ifm = nlmsg_data(nlh); |
| 1298 | ifm->ifi_family = AF_UNSPEC; |
| 1299 | ifm->__ifi_pad = 0; |
| 1300 | ifm->ifi_type = dev->type; |
| 1301 | ifm->ifi_index = dev->ifindex; |
| 1302 | ifm->ifi_flags = dev_get_flags(dev); |
| 1303 | ifm->ifi_change = change; |
| 1304 | |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1305 | if (nla_put_string(skb, IFLA_IFNAME, dev->name) || |
| 1306 | nla_put_u32(skb, IFLA_TXQLEN, dev->tx_queue_len) || |
| 1307 | nla_put_u8(skb, IFLA_OPERSTATE, |
| 1308 | netif_running(dev) ? dev->operstate : IF_OPER_DOWN) || |
| 1309 | nla_put_u8(skb, IFLA_LINKMODE, dev->link_mode) || |
| 1310 | nla_put_u32(skb, IFLA_MTU, dev->mtu) || |
| 1311 | nla_put_u32(skb, IFLA_GROUP, dev->group) || |
Ben Greear | edbc0bb | 2012-03-29 12:51:30 +0000 | [diff] [blame] | 1312 | nla_put_u32(skb, IFLA_PROMISCUITY, dev->promiscuity) || |
Jiri Pirko | 76ff5cc | 2012-07-20 02:28:48 +0000 | [diff] [blame] | 1313 | nla_put_u32(skb, IFLA_NUM_TX_QUEUES, dev->num_tx_queues) || |
Eric Dumazet | c70ce02 | 2016-03-21 09:55:10 -0700 | [diff] [blame] | 1314 | nla_put_u32(skb, IFLA_GSO_MAX_SEGS, dev->gso_max_segs) || |
| 1315 | nla_put_u32(skb, IFLA_GSO_MAX_SIZE, dev->gso_max_size) || |
Mark A. Greer | 1d69c2b | 2012-07-20 13:35:13 +0000 | [diff] [blame] | 1316 | #ifdef CONFIG_RPS |
Jiri Pirko | 76ff5cc | 2012-07-20 02:28:48 +0000 | [diff] [blame] | 1317 | 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] | 1318 | #endif |
Nicolas Dichtel | a54acb3 | 2015-04-02 17:07:00 +0200 | [diff] [blame] | 1319 | (dev->ifindex != dev_get_iflink(dev) && |
| 1320 | nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev))) || |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1321 | (upper_dev && |
| 1322 | nla_put_u32(skb, IFLA_MASTER, upper_dev->ifindex)) || |
Jiri Pirko | 9a57247 | 2012-12-27 23:49:39 +0000 | [diff] [blame] | 1323 | nla_put_u8(skb, IFLA_CARRIER, netif_carrier_ok(dev)) || |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1324 | (dev->qdisc && |
| 1325 | nla_put_string(skb, IFLA_QDISC, dev->qdisc->ops->id)) || |
| 1326 | (dev->ifalias && |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 1327 | nla_put_string(skb, IFLA_IFALIAS, dev->ifalias)) || |
| 1328 | nla_put_u32(skb, IFLA_CARRIER_CHANGES, |
Anuradha Karuppiah | 88d6378 | 2015-07-14 13:43:20 -0700 | [diff] [blame] | 1329 | atomic_read(&dev->carrier_changes)) || |
| 1330 | nla_put_u8(skb, IFLA_PROTO_DOWN, dev->proto_down)) |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1331 | goto nla_put_failure; |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 1332 | |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1333 | if (rtnl_fill_link_ifmap(skb, dev)) |
| 1334 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | |
| 1336 | if (dev->addr_len) { |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1337 | if (nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr) || |
| 1338 | nla_put(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast)) |
| 1339 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | } |
| 1341 | |
Jiri Pirko | 66cae9e | 2013-07-29 18:16:50 +0200 | [diff] [blame] | 1342 | if (rtnl_phys_port_id_fill(skb, dev)) |
| 1343 | goto nla_put_failure; |
| 1344 | |
David Ahern | db24a90 | 2015-03-17 20:23:15 -0600 | [diff] [blame] | 1345 | if (rtnl_phys_port_name_fill(skb, dev)) |
| 1346 | goto nla_put_failure; |
| 1347 | |
Jiri Pirko | 82f2841 | 2014-11-28 14:34:18 +0100 | [diff] [blame] | 1348 | if (rtnl_phys_switch_id_fill(skb, dev)) |
| 1349 | goto nla_put_failure; |
| 1350 | |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1351 | if (rtnl_fill_stats(skb, dev)) |
Pavel Emelyanov | 96e7408 | 2008-05-21 14:12:46 -0700 | [diff] [blame] | 1352 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | |
David S. Miller | a657434 | 2012-04-01 20:12:00 -0400 | [diff] [blame] | 1354 | if (dev->dev.parent && (ext_filter_mask & RTEXT_FILTER_VF) && |
| 1355 | nla_put_u32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent))) |
| 1356 | goto nla_put_failure; |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 1357 | |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1358 | if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent && |
| 1359 | ext_filter_mask & RTEXT_FILTER_VF) { |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 1360 | int i; |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1361 | struct nlattr *vfinfo; |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1362 | int num_vfs = dev_num_vf(dev->dev.parent); |
| 1363 | |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1364 | vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST); |
| 1365 | if (!vfinfo) |
| 1366 | goto nla_put_failure; |
| 1367 | for (i = 0; i < num_vfs; i++) { |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1368 | if (rtnl_fill_vfinfo(skb, dev, i, vfinfo)) |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1369 | goto nla_put_failure; |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 1370 | } |
Hannes Frederic Sowa | b22b941 | 2015-11-17 14:16:52 +0100 | [diff] [blame] | 1371 | |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1372 | nla_nest_end(skb, vfinfo); |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 1373 | } |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 1374 | |
David Gibson | c53864f | 2014-04-24 10:22:36 +1000 | [diff] [blame] | 1375 | if (rtnl_port_fill(skb, dev, ext_filter_mask)) |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 1376 | goto nla_put_failure; |
| 1377 | |
Brenden Blanco | d1fdd91 | 2016-07-19 12:16:49 -0700 | [diff] [blame] | 1378 | if (rtnl_xdp_fill(skb, dev)) |
| 1379 | goto nla_put_failure; |
| 1380 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 1381 | if (dev->rtnl_link_ops || rtnl_have_link_slave_info(dev)) { |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 1382 | if (rtnl_link_fill(skb, dev) < 0) |
| 1383 | goto nla_put_failure; |
| 1384 | } |
| 1385 | |
Nicolas Dichtel | d37512a | 2015-01-15 15:11:16 +0100 | [diff] [blame] | 1386 | if (dev->rtnl_link_ops && |
| 1387 | dev->rtnl_link_ops->get_link_net) { |
| 1388 | struct net *link_net = dev->rtnl_link_ops->get_link_net(dev); |
| 1389 | |
| 1390 | if (!net_eq(dev_net(dev), link_net)) { |
Nicolas Dichtel | 7a0877d | 2015-05-07 11:02:49 +0200 | [diff] [blame] | 1391 | int id = peernet2id_alloc(dev_net(dev), link_net); |
Nicolas Dichtel | d37512a | 2015-01-15 15:11:16 +0100 | [diff] [blame] | 1392 | |
| 1393 | if (nla_put_s32(skb, IFLA_LINK_NETNSID, id)) |
| 1394 | goto nla_put_failure; |
| 1395 | } |
| 1396 | } |
| 1397 | |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 1398 | if (!(af_spec = nla_nest_start(skb, IFLA_AF_SPEC))) |
| 1399 | goto nla_put_failure; |
| 1400 | |
| 1401 | list_for_each_entry(af_ops, &rtnl_af_ops, list) { |
| 1402 | if (af_ops->fill_link_af) { |
| 1403 | struct nlattr *af; |
| 1404 | int err; |
| 1405 | |
| 1406 | if (!(af = nla_nest_start(skb, af_ops->family))) |
| 1407 | goto nla_put_failure; |
| 1408 | |
Sowmini Varadhan | d5566fd | 2015-09-11 16:48:48 -0400 | [diff] [blame] | 1409 | err = af_ops->fill_link_af(skb, dev, ext_filter_mask); |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 1410 | |
| 1411 | /* |
| 1412 | * Caller may return ENODATA to indicate that there |
| 1413 | * was no data to be dumped. This is not an error, it |
| 1414 | * means we should trim the attribute header and |
| 1415 | * continue. |
| 1416 | */ |
| 1417 | if (err == -ENODATA) |
| 1418 | nla_nest_cancel(skb, af); |
| 1419 | else if (err < 0) |
| 1420 | goto nla_put_failure; |
| 1421 | |
| 1422 | nla_nest_end(skb, af); |
| 1423 | } |
| 1424 | } |
| 1425 | |
| 1426 | nla_nest_end(skb, af_spec); |
| 1427 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 1428 | nlmsg_end(skb, nlh); |
| 1429 | return 0; |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 1430 | |
| 1431 | nla_put_failure: |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 1432 | nlmsg_cancel(skb, nlh); |
| 1433 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | } |
| 1435 | |
Jiri Pirko | f7b1260 | 2014-02-18 20:53:18 +0100 | [diff] [blame] | 1436 | static const struct nla_policy ifla_policy[IFLA_MAX+1] = { |
| 1437 | [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 }, |
| 1438 | [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN }, |
| 1439 | [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN }, |
| 1440 | [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) }, |
| 1441 | [IFLA_MTU] = { .type = NLA_U32 }, |
| 1442 | [IFLA_LINK] = { .type = NLA_U32 }, |
| 1443 | [IFLA_MASTER] = { .type = NLA_U32 }, |
| 1444 | [IFLA_CARRIER] = { .type = NLA_U8 }, |
| 1445 | [IFLA_TXQLEN] = { .type = NLA_U32 }, |
| 1446 | [IFLA_WEIGHT] = { .type = NLA_U32 }, |
| 1447 | [IFLA_OPERSTATE] = { .type = NLA_U8 }, |
| 1448 | [IFLA_LINKMODE] = { .type = NLA_U8 }, |
| 1449 | [IFLA_LINKINFO] = { .type = NLA_NESTED }, |
| 1450 | [IFLA_NET_NS_PID] = { .type = NLA_U32 }, |
| 1451 | [IFLA_NET_NS_FD] = { .type = NLA_U32 }, |
| 1452 | [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 }, |
| 1453 | [IFLA_VFINFO_LIST] = {. type = NLA_NESTED }, |
| 1454 | [IFLA_VF_PORTS] = { .type = NLA_NESTED }, |
| 1455 | [IFLA_PORT_SELF] = { .type = NLA_NESTED }, |
| 1456 | [IFLA_AF_SPEC] = { .type = NLA_NESTED }, |
| 1457 | [IFLA_EXT_MASK] = { .type = NLA_U32 }, |
| 1458 | [IFLA_PROMISCUITY] = { .type = NLA_U32 }, |
| 1459 | [IFLA_NUM_TX_QUEUES] = { .type = NLA_U32 }, |
| 1460 | [IFLA_NUM_RX_QUEUES] = { .type = NLA_U32 }, |
Jiri Pirko | 02637fc | 2014-11-28 14:34:16 +0100 | [diff] [blame] | 1461 | [IFLA_PHYS_PORT_ID] = { .type = NLA_BINARY, .len = MAX_PHYS_ITEM_ID_LEN }, |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 1462 | [IFLA_CARRIER_CHANGES] = { .type = NLA_U32 }, /* ignored */ |
Jiri Pirko | 82f2841 | 2014-11-28 14:34:18 +0100 | [diff] [blame] | 1463 | [IFLA_PHYS_SWITCH_ID] = { .type = NLA_BINARY, .len = MAX_PHYS_ITEM_ID_LEN }, |
Nicolas Dichtel | 317f481 | 2015-01-15 15:11:18 +0100 | [diff] [blame] | 1464 | [IFLA_LINK_NETNSID] = { .type = NLA_S32 }, |
Anuradha Karuppiah | 88d6378 | 2015-07-14 13:43:20 -0700 | [diff] [blame] | 1465 | [IFLA_PROTO_DOWN] = { .type = NLA_U8 }, |
Brenden Blanco | d1fdd91 | 2016-07-19 12:16:49 -0700 | [diff] [blame] | 1466 | [IFLA_XDP] = { .type = NLA_NESTED }, |
Jiri Pirko | f7b1260 | 2014-02-18 20:53:18 +0100 | [diff] [blame] | 1467 | }; |
| 1468 | |
| 1469 | static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = { |
| 1470 | [IFLA_INFO_KIND] = { .type = NLA_STRING }, |
| 1471 | [IFLA_INFO_DATA] = { .type = NLA_NESTED }, |
| 1472 | [IFLA_INFO_SLAVE_KIND] = { .type = NLA_STRING }, |
| 1473 | [IFLA_INFO_SLAVE_DATA] = { .type = NLA_NESTED }, |
| 1474 | }; |
| 1475 | |
Jiri Pirko | f7b1260 | 2014-02-18 20:53:18 +0100 | [diff] [blame] | 1476 | static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = { |
Daniel Borkmann | 364d571 | 2015-02-05 18:44:04 +0100 | [diff] [blame] | 1477 | [IFLA_VF_MAC] = { .len = sizeof(struct ifla_vf_mac) }, |
| 1478 | [IFLA_VF_VLAN] = { .len = sizeof(struct ifla_vf_vlan) }, |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 1479 | [IFLA_VF_VLAN_LIST] = { .type = NLA_NESTED }, |
Daniel Borkmann | 364d571 | 2015-02-05 18:44:04 +0100 | [diff] [blame] | 1480 | [IFLA_VF_TX_RATE] = { .len = sizeof(struct ifla_vf_tx_rate) }, |
| 1481 | [IFLA_VF_SPOOFCHK] = { .len = sizeof(struct ifla_vf_spoofchk) }, |
| 1482 | [IFLA_VF_RATE] = { .len = sizeof(struct ifla_vf_rate) }, |
| 1483 | [IFLA_VF_LINK_STATE] = { .len = sizeof(struct ifla_vf_link_state) }, |
Vlad Zolotarov | 01a3d79 | 2015-03-30 21:35:23 +0300 | [diff] [blame] | 1484 | [IFLA_VF_RSS_QUERY_EN] = { .len = sizeof(struct ifla_vf_rss_query_en) }, |
Eran Ben Elisha | 3b766cd | 2015-06-15 17:59:07 +0300 | [diff] [blame] | 1485 | [IFLA_VF_STATS] = { .type = NLA_NESTED }, |
Hiroshi Shimamoto | dd461d6 | 2015-08-28 06:57:55 +0000 | [diff] [blame] | 1486 | [IFLA_VF_TRUST] = { .len = sizeof(struct ifla_vf_trust) }, |
Eli Cohen | cc8e27c | 2016-03-11 22:58:34 +0200 | [diff] [blame] | 1487 | [IFLA_VF_IB_NODE_GUID] = { .len = sizeof(struct ifla_vf_guid) }, |
| 1488 | [IFLA_VF_IB_PORT_GUID] = { .len = sizeof(struct ifla_vf_guid) }, |
Eran Ben Elisha | 3b766cd | 2015-06-15 17:59:07 +0300 | [diff] [blame] | 1489 | }; |
| 1490 | |
Jiri Pirko | f7b1260 | 2014-02-18 20:53:18 +0100 | [diff] [blame] | 1491 | static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = { |
| 1492 | [IFLA_PORT_VF] = { .type = NLA_U32 }, |
| 1493 | [IFLA_PORT_PROFILE] = { .type = NLA_STRING, |
| 1494 | .len = PORT_PROFILE_MAX }, |
| 1495 | [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY, |
| 1496 | .len = sizeof(struct ifla_port_vsi)}, |
| 1497 | [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY, |
| 1498 | .len = PORT_UUID_MAX }, |
| 1499 | [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING, |
| 1500 | .len = PORT_UUID_MAX }, |
| 1501 | [IFLA_PORT_REQUEST] = { .type = NLA_U8, }, |
| 1502 | [IFLA_PORT_RESPONSE] = { .type = NLA_U16, }, |
| 1503 | }; |
| 1504 | |
Brenden Blanco | d1fdd91 | 2016-07-19 12:16:49 -0700 | [diff] [blame] | 1505 | static const struct nla_policy ifla_xdp_policy[IFLA_XDP_MAX + 1] = { |
| 1506 | [IFLA_XDP_FD] = { .type = NLA_S32 }, |
| 1507 | [IFLA_XDP_ATTACHED] = { .type = NLA_U8 }, |
| 1508 | }; |
| 1509 | |
David Ahern | dc599f7 | 2016-02-02 08:17:07 -0800 | [diff] [blame] | 1510 | static const struct rtnl_link_ops *linkinfo_to_kind_ops(const struct nlattr *nla) |
| 1511 | { |
| 1512 | const struct rtnl_link_ops *ops = NULL; |
| 1513 | struct nlattr *linfo[IFLA_INFO_MAX + 1]; |
| 1514 | |
| 1515 | if (nla_parse_nested(linfo, IFLA_INFO_MAX, nla, ifla_info_policy) < 0) |
| 1516 | return NULL; |
| 1517 | |
| 1518 | if (linfo[IFLA_INFO_KIND]) { |
| 1519 | char kind[MODULE_NAME_LEN]; |
| 1520 | |
| 1521 | nla_strlcpy(kind, linfo[IFLA_INFO_KIND], sizeof(kind)); |
| 1522 | ops = rtnl_link_ops_get(kind); |
| 1523 | } |
| 1524 | |
| 1525 | return ops; |
| 1526 | } |
| 1527 | |
| 1528 | static bool link_master_filtered(struct net_device *dev, int master_idx) |
| 1529 | { |
| 1530 | struct net_device *master; |
| 1531 | |
| 1532 | if (!master_idx) |
| 1533 | return false; |
| 1534 | |
| 1535 | master = netdev_master_upper_dev_get(dev); |
| 1536 | if (!master || master->ifindex != master_idx) |
| 1537 | return true; |
| 1538 | |
| 1539 | return false; |
| 1540 | } |
| 1541 | |
| 1542 | static bool link_kind_filtered(const struct net_device *dev, |
| 1543 | const struct rtnl_link_ops *kind_ops) |
| 1544 | { |
| 1545 | if (kind_ops && dev->rtnl_link_ops != kind_ops) |
| 1546 | return true; |
| 1547 | |
| 1548 | return false; |
| 1549 | } |
| 1550 | |
| 1551 | static bool link_dump_filtered(struct net_device *dev, |
| 1552 | int master_idx, |
| 1553 | const struct rtnl_link_ops *kind_ops) |
| 1554 | { |
| 1555 | if (link_master_filtered(dev, master_idx) || |
| 1556 | link_kind_filtered(dev, kind_ops)) |
| 1557 | return true; |
| 1558 | |
| 1559 | return false; |
| 1560 | } |
| 1561 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 1562 | 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] | 1563 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1564 | struct net *net = sock_net(skb->sk); |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1565 | int h, s_h; |
| 1566 | int idx = 0, s_idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | struct net_device *dev; |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1568 | struct hlist_head *head; |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 1569 | struct nlattr *tb[IFLA_MAX+1]; |
| 1570 | u32 ext_filter_mask = 0; |
David Ahern | dc599f7 | 2016-02-02 08:17:07 -0800 | [diff] [blame] | 1571 | const struct rtnl_link_ops *kind_ops = NULL; |
| 1572 | unsigned int flags = NLM_F_MULTI; |
| 1573 | int master_idx = 0; |
David Gibson | 973462b | 2014-04-24 10:22:35 +1000 | [diff] [blame] | 1574 | int err; |
Michal Schmidt | e5eca6d | 2014-05-28 14:15:19 +0200 | [diff] [blame] | 1575 | int hdrlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1577 | s_h = cb->args[0]; |
| 1578 | s_idx = cb->args[1]; |
| 1579 | |
Thomas Graf | 4e985ad | 2011-06-21 03:11:20 +0000 | [diff] [blame] | 1580 | cb->seq = net->dev_base_seq; |
| 1581 | |
Michal Schmidt | e5eca6d | 2014-05-28 14:15:19 +0200 | [diff] [blame] | 1582 | /* A hack to preserve kernel<->userspace interface. |
| 1583 | * The correct header is ifinfomsg. It is consistent with rtnl_getlink. |
| 1584 | * However, before Linux v3.9 the code here assumed rtgenmsg and that's |
| 1585 | * what iproute2 < v3.9.0 used. |
| 1586 | * We can detect the old iproute2. Even including the IFLA_EXT_MASK |
| 1587 | * attribute, its netlink message is shorter than struct ifinfomsg. |
| 1588 | */ |
| 1589 | hdrlen = nlmsg_len(cb->nlh) < sizeof(struct ifinfomsg) ? |
| 1590 | sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg); |
| 1591 | |
| 1592 | if (nlmsg_parse(cb->nlh, hdrlen, tb, IFLA_MAX, ifla_policy) >= 0) { |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 1593 | |
Eric Dumazet | a4b64fb | 2012-03-04 12:32:10 +0000 | [diff] [blame] | 1594 | if (tb[IFLA_EXT_MASK]) |
| 1595 | ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]); |
David Ahern | dc599f7 | 2016-02-02 08:17:07 -0800 | [diff] [blame] | 1596 | |
| 1597 | if (tb[IFLA_MASTER]) |
| 1598 | master_idx = nla_get_u32(tb[IFLA_MASTER]); |
| 1599 | |
| 1600 | if (tb[IFLA_LINKINFO]) |
| 1601 | kind_ops = linkinfo_to_kind_ops(tb[IFLA_LINKINFO]); |
| 1602 | |
| 1603 | if (master_idx || kind_ops) |
| 1604 | flags |= NLM_F_DUMP_FILTERED; |
Eric Dumazet | a4b64fb | 2012-03-04 12:32:10 +0000 | [diff] [blame] | 1605 | } |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 1606 | |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1607 | for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { |
| 1608 | idx = 0; |
| 1609 | head = &net->dev_index_head[h]; |
Eric Dumazet | cac5e65 | 2015-02-27 09:42:50 -0800 | [diff] [blame] | 1610 | hlist_for_each_entry(dev, head, index_hlist) { |
David Ahern | dc599f7 | 2016-02-02 08:17:07 -0800 | [diff] [blame] | 1611 | if (link_dump_filtered(dev, master_idx, kind_ops)) |
Zhang Shengju | 3f0ae05 | 2016-11-19 23:28:32 +0800 | [diff] [blame] | 1612 | goto cont; |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1613 | if (idx < s_idx) |
| 1614 | goto cont; |
David Gibson | 973462b | 2014-04-24 10:22:35 +1000 | [diff] [blame] | 1615 | err = rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK, |
| 1616 | NETLINK_CB(cb->skb).portid, |
| 1617 | cb->nlh->nlmsg_seq, 0, |
David Ahern | dc599f7 | 2016-02-02 08:17:07 -0800 | [diff] [blame] | 1618 | flags, |
David Gibson | 973462b | 2014-04-24 10:22:35 +1000 | [diff] [blame] | 1619 | ext_filter_mask); |
| 1620 | /* If we ran out of room on the first message, |
| 1621 | * we're in trouble |
| 1622 | */ |
| 1623 | WARN_ON((err == -EMSGSIZE) && (skb->len == 0)); |
| 1624 | |
David S. Miller | 7b46a64 | 2015-01-18 23:36:08 -0500 | [diff] [blame] | 1625 | if (err < 0) |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1626 | goto out; |
Thomas Graf | 4e985ad | 2011-06-21 03:11:20 +0000 | [diff] [blame] | 1627 | |
| 1628 | nl_dump_check_consistent(cb, nlmsg_hdr(skb)); |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 1629 | cont: |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1630 | idx++; |
| 1631 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | } |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 1633 | out: |
| 1634 | cb->args[1] = idx; |
| 1635 | cb->args[0] = h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | |
| 1637 | return skb->len; |
| 1638 | } |
| 1639 | |
Jiri Pirko | f7b1260 | 2014-02-18 20:53:18 +0100 | [diff] [blame] | 1640 | int rtnl_nla_parse_ifla(struct nlattr **tb, const struct nlattr *head, int len) |
| 1641 | { |
| 1642 | return nla_parse(tb, IFLA_MAX, head, len, ifla_policy); |
| 1643 | } |
| 1644 | EXPORT_SYMBOL(rtnl_nla_parse_ifla); |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 1645 | |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 1646 | struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[]) |
| 1647 | { |
| 1648 | struct net *net; |
| 1649 | /* Examine the link attributes and figure out which |
| 1650 | * network namespace we are talking about. |
| 1651 | */ |
| 1652 | if (tb[IFLA_NET_NS_PID]) |
| 1653 | 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] | 1654 | else if (tb[IFLA_NET_NS_FD]) |
| 1655 | 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] | 1656 | else |
| 1657 | net = get_net(src_net); |
| 1658 | return net; |
| 1659 | } |
| 1660 | EXPORT_SYMBOL(rtnl_link_get_net); |
| 1661 | |
Thomas Graf | 1840bb1 | 2008-02-23 19:54:36 -0800 | [diff] [blame] | 1662 | static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[]) |
| 1663 | { |
| 1664 | if (dev) { |
| 1665 | if (tb[IFLA_ADDRESS] && |
| 1666 | nla_len(tb[IFLA_ADDRESS]) < dev->addr_len) |
| 1667 | return -EINVAL; |
| 1668 | |
| 1669 | if (tb[IFLA_BROADCAST] && |
| 1670 | nla_len(tb[IFLA_BROADCAST]) < dev->addr_len) |
| 1671 | return -EINVAL; |
| 1672 | } |
| 1673 | |
Thomas Graf | cf7afbf | 2010-11-22 01:31:54 +0000 | [diff] [blame] | 1674 | if (tb[IFLA_AF_SPEC]) { |
| 1675 | struct nlattr *af; |
| 1676 | int rem, err; |
| 1677 | |
| 1678 | nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) { |
| 1679 | const struct rtnl_af_ops *af_ops; |
| 1680 | |
| 1681 | if (!(af_ops = rtnl_af_lookup(nla_type(af)))) |
| 1682 | return -EAFNOSUPPORT; |
| 1683 | |
| 1684 | if (!af_ops->set_link_af) |
| 1685 | return -EOPNOTSUPP; |
| 1686 | |
| 1687 | if (af_ops->validate_link_af) { |
Kurt Van Dijck | 6d3a9a6 | 2011-01-26 04:55:24 +0000 | [diff] [blame] | 1688 | err = af_ops->validate_link_af(dev, af); |
Thomas Graf | cf7afbf | 2010-11-22 01:31:54 +0000 | [diff] [blame] | 1689 | if (err < 0) |
| 1690 | return err; |
| 1691 | } |
| 1692 | } |
| 1693 | } |
| 1694 | |
Thomas Graf | 1840bb1 | 2008-02-23 19:54:36 -0800 | [diff] [blame] | 1695 | return 0; |
| 1696 | } |
| 1697 | |
Eli Cohen | cc8e27c | 2016-03-11 22:58:34 +0200 | [diff] [blame] | 1698 | static int handle_infiniband_guid(struct net_device *dev, struct ifla_vf_guid *ivt, |
| 1699 | int guid_type) |
| 1700 | { |
| 1701 | const struct net_device_ops *ops = dev->netdev_ops; |
| 1702 | |
| 1703 | return ops->ndo_set_vf_guid(dev, ivt->vf, ivt->guid, guid_type); |
| 1704 | } |
| 1705 | |
| 1706 | static int handle_vf_guid(struct net_device *dev, struct ifla_vf_guid *ivt, int guid_type) |
| 1707 | { |
| 1708 | if (dev->type != ARPHRD_INFINIBAND) |
| 1709 | return -EOPNOTSUPP; |
| 1710 | |
| 1711 | return handle_infiniband_guid(dev, ivt, guid_type); |
| 1712 | } |
| 1713 | |
Daniel Borkmann | 4f7d2cd | 2015-07-07 00:07:52 +0200 | [diff] [blame] | 1714 | static int do_setvfinfo(struct net_device *dev, struct nlattr **tb) |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1715 | { |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1716 | const struct net_device_ops *ops = dev->netdev_ops; |
Daniel Borkmann | 4f7d2cd | 2015-07-07 00:07:52 +0200 | [diff] [blame] | 1717 | int err = -EINVAL; |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1718 | |
Daniel Borkmann | 4f7d2cd | 2015-07-07 00:07:52 +0200 | [diff] [blame] | 1719 | if (tb[IFLA_VF_MAC]) { |
| 1720 | struct ifla_vf_mac *ivm = nla_data(tb[IFLA_VF_MAC]); |
Vlad Zolotarov | 01a3d79 | 2015-03-30 21:35:23 +0300 | [diff] [blame] | 1721 | |
Daniel Borkmann | 4f7d2cd | 2015-07-07 00:07:52 +0200 | [diff] [blame] | 1722 | err = -EOPNOTSUPP; |
| 1723 | if (ops->ndo_set_vf_mac) |
| 1724 | err = ops->ndo_set_vf_mac(dev, ivm->vf, |
| 1725 | ivm->mac); |
| 1726 | if (err < 0) |
| 1727 | return err; |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1728 | } |
Daniel Borkmann | 4f7d2cd | 2015-07-07 00:07:52 +0200 | [diff] [blame] | 1729 | |
| 1730 | if (tb[IFLA_VF_VLAN]) { |
| 1731 | struct ifla_vf_vlan *ivv = nla_data(tb[IFLA_VF_VLAN]); |
| 1732 | |
| 1733 | err = -EOPNOTSUPP; |
| 1734 | if (ops->ndo_set_vf_vlan) |
| 1735 | err = ops->ndo_set_vf_vlan(dev, ivv->vf, ivv->vlan, |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 1736 | ivv->qos, |
| 1737 | htons(ETH_P_8021Q)); |
| 1738 | if (err < 0) |
| 1739 | return err; |
| 1740 | } |
| 1741 | |
| 1742 | if (tb[IFLA_VF_VLAN_LIST]) { |
| 1743 | struct ifla_vf_vlan_info *ivvl[MAX_VLAN_LIST_LEN]; |
| 1744 | struct nlattr *attr; |
| 1745 | int rem, len = 0; |
| 1746 | |
| 1747 | err = -EOPNOTSUPP; |
| 1748 | if (!ops->ndo_set_vf_vlan) |
| 1749 | return err; |
| 1750 | |
| 1751 | nla_for_each_nested(attr, tb[IFLA_VF_VLAN_LIST], rem) { |
| 1752 | if (nla_type(attr) != IFLA_VF_VLAN_INFO || |
| 1753 | nla_len(attr) < NLA_HDRLEN) { |
| 1754 | return -EINVAL; |
| 1755 | } |
| 1756 | if (len >= MAX_VLAN_LIST_LEN) |
| 1757 | return -EOPNOTSUPP; |
| 1758 | ivvl[len] = nla_data(attr); |
| 1759 | |
| 1760 | len++; |
| 1761 | } |
Arnd Bergmann | fa34cd9 | 2016-09-30 18:13:49 +0200 | [diff] [blame] | 1762 | if (len == 0) |
| 1763 | return -EINVAL; |
| 1764 | |
Moshe Shemesh | 79aab09 | 2016-09-22 12:11:15 +0300 | [diff] [blame] | 1765 | err = ops->ndo_set_vf_vlan(dev, ivvl[0]->vf, ivvl[0]->vlan, |
| 1766 | ivvl[0]->qos, ivvl[0]->vlan_proto); |
Daniel Borkmann | 4f7d2cd | 2015-07-07 00:07:52 +0200 | [diff] [blame] | 1767 | if (err < 0) |
| 1768 | return err; |
| 1769 | } |
| 1770 | |
| 1771 | if (tb[IFLA_VF_TX_RATE]) { |
| 1772 | struct ifla_vf_tx_rate *ivt = nla_data(tb[IFLA_VF_TX_RATE]); |
| 1773 | struct ifla_vf_info ivf; |
| 1774 | |
| 1775 | err = -EOPNOTSUPP; |
| 1776 | if (ops->ndo_get_vf_config) |
| 1777 | err = ops->ndo_get_vf_config(dev, ivt->vf, &ivf); |
| 1778 | if (err < 0) |
| 1779 | return err; |
| 1780 | |
| 1781 | err = -EOPNOTSUPP; |
| 1782 | if (ops->ndo_set_vf_rate) |
| 1783 | err = ops->ndo_set_vf_rate(dev, ivt->vf, |
| 1784 | ivf.min_tx_rate, |
| 1785 | ivt->rate); |
| 1786 | if (err < 0) |
| 1787 | return err; |
| 1788 | } |
| 1789 | |
| 1790 | if (tb[IFLA_VF_RATE]) { |
| 1791 | struct ifla_vf_rate *ivt = nla_data(tb[IFLA_VF_RATE]); |
| 1792 | |
| 1793 | err = -EOPNOTSUPP; |
| 1794 | if (ops->ndo_set_vf_rate) |
| 1795 | err = ops->ndo_set_vf_rate(dev, ivt->vf, |
| 1796 | ivt->min_tx_rate, |
| 1797 | ivt->max_tx_rate); |
| 1798 | if (err < 0) |
| 1799 | return err; |
| 1800 | } |
| 1801 | |
| 1802 | if (tb[IFLA_VF_SPOOFCHK]) { |
| 1803 | struct ifla_vf_spoofchk *ivs = nla_data(tb[IFLA_VF_SPOOFCHK]); |
| 1804 | |
| 1805 | err = -EOPNOTSUPP; |
| 1806 | if (ops->ndo_set_vf_spoofchk) |
| 1807 | err = ops->ndo_set_vf_spoofchk(dev, ivs->vf, |
| 1808 | ivs->setting); |
| 1809 | if (err < 0) |
| 1810 | return err; |
| 1811 | } |
| 1812 | |
| 1813 | if (tb[IFLA_VF_LINK_STATE]) { |
| 1814 | struct ifla_vf_link_state *ivl = nla_data(tb[IFLA_VF_LINK_STATE]); |
| 1815 | |
| 1816 | err = -EOPNOTSUPP; |
| 1817 | if (ops->ndo_set_vf_link_state) |
| 1818 | err = ops->ndo_set_vf_link_state(dev, ivl->vf, |
| 1819 | ivl->link_state); |
| 1820 | if (err < 0) |
| 1821 | return err; |
| 1822 | } |
| 1823 | |
| 1824 | if (tb[IFLA_VF_RSS_QUERY_EN]) { |
| 1825 | struct ifla_vf_rss_query_en *ivrssq_en; |
| 1826 | |
| 1827 | err = -EOPNOTSUPP; |
| 1828 | ivrssq_en = nla_data(tb[IFLA_VF_RSS_QUERY_EN]); |
| 1829 | if (ops->ndo_set_vf_rss_query_en) |
| 1830 | err = ops->ndo_set_vf_rss_query_en(dev, ivrssq_en->vf, |
| 1831 | ivrssq_en->setting); |
| 1832 | if (err < 0) |
| 1833 | return err; |
| 1834 | } |
| 1835 | |
Hiroshi Shimamoto | dd461d6 | 2015-08-28 06:57:55 +0000 | [diff] [blame] | 1836 | if (tb[IFLA_VF_TRUST]) { |
| 1837 | struct ifla_vf_trust *ivt = nla_data(tb[IFLA_VF_TRUST]); |
| 1838 | |
| 1839 | err = -EOPNOTSUPP; |
| 1840 | if (ops->ndo_set_vf_trust) |
| 1841 | err = ops->ndo_set_vf_trust(dev, ivt->vf, ivt->setting); |
| 1842 | if (err < 0) |
| 1843 | return err; |
| 1844 | } |
| 1845 | |
Eli Cohen | cc8e27c | 2016-03-11 22:58:34 +0200 | [diff] [blame] | 1846 | if (tb[IFLA_VF_IB_NODE_GUID]) { |
| 1847 | struct ifla_vf_guid *ivt = nla_data(tb[IFLA_VF_IB_NODE_GUID]); |
| 1848 | |
| 1849 | if (!ops->ndo_set_vf_guid) |
| 1850 | return -EOPNOTSUPP; |
| 1851 | |
| 1852 | return handle_vf_guid(dev, ivt, IFLA_VF_IB_NODE_GUID); |
| 1853 | } |
| 1854 | |
| 1855 | if (tb[IFLA_VF_IB_PORT_GUID]) { |
| 1856 | struct ifla_vf_guid *ivt = nla_data(tb[IFLA_VF_IB_PORT_GUID]); |
| 1857 | |
| 1858 | if (!ops->ndo_set_vf_guid) |
| 1859 | return -EOPNOTSUPP; |
| 1860 | |
| 1861 | return handle_vf_guid(dev, ivt, IFLA_VF_IB_PORT_GUID); |
| 1862 | } |
| 1863 | |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 1864 | return err; |
| 1865 | } |
| 1866 | |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1867 | static int do_set_master(struct net_device *dev, int ifindex) |
| 1868 | { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1869 | struct net_device *upper_dev = netdev_master_upper_dev_get(dev); |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1870 | const struct net_device_ops *ops; |
| 1871 | int err; |
| 1872 | |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1873 | if (upper_dev) { |
| 1874 | if (upper_dev->ifindex == ifindex) |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1875 | return 0; |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1876 | ops = upper_dev->netdev_ops; |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1877 | if (ops->ndo_del_slave) { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1878 | err = ops->ndo_del_slave(upper_dev, dev); |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1879 | if (err) |
| 1880 | return err; |
| 1881 | } else { |
| 1882 | return -EOPNOTSUPP; |
| 1883 | } |
| 1884 | } |
| 1885 | |
| 1886 | if (ifindex) { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1887 | upper_dev = __dev_get_by_index(dev_net(dev), ifindex); |
| 1888 | if (!upper_dev) |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1889 | return -EINVAL; |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1890 | ops = upper_dev->netdev_ops; |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1891 | if (ops->ndo_add_slave) { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 1892 | err = ops->ndo_add_slave(upper_dev, dev); |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 1893 | if (err) |
| 1894 | return err; |
| 1895 | } else { |
| 1896 | return -EOPNOTSUPP; |
| 1897 | } |
| 1898 | } |
| 1899 | return 0; |
| 1900 | } |
| 1901 | |
Nicolas Dichtel | 90c325e | 2014-09-01 16:07:28 +0200 | [diff] [blame] | 1902 | #define DO_SETLINK_MODIFIED 0x01 |
Nicolas Dichtel | ba99890 | 2014-09-01 16:07:29 +0200 | [diff] [blame] | 1903 | /* notify flag means notify + modified. */ |
| 1904 | #define DO_SETLINK_NOTIFY 0x03 |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 1905 | static int do_setlink(const struct sk_buff *skb, |
| 1906 | struct net_device *dev, struct ifinfomsg *ifm, |
Nicolas Dichtel | 90c325e | 2014-09-01 16:07:28 +0200 | [diff] [blame] | 1907 | struct nlattr **tb, char *ifname, int status) |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1908 | { |
Stephen Hemminger | d314774 | 2008-11-19 21:32:24 -0800 | [diff] [blame] | 1909 | const struct net_device_ops *ops = dev->netdev_ops; |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1910 | int err; |
| 1911 | |
Eric W. Biederman | f063052 | 2011-05-04 17:51:50 -0700 | [diff] [blame] | 1912 | if (tb[IFLA_NET_NS_PID] || tb[IFLA_NET_NS_FD]) { |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 1913 | struct net *net = rtnl_link_get_net(dev_net(dev), tb); |
Eric W. Biederman | d8a5ec6 | 2007-09-12 13:57:04 +0200 | [diff] [blame] | 1914 | if (IS_ERR(net)) { |
| 1915 | err = PTR_ERR(net); |
| 1916 | goto errout; |
| 1917 | } |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 1918 | if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN)) { |
Nicolas Dichtel | e0ebde0 | 2014-11-27 10:16:15 +0100 | [diff] [blame] | 1919 | put_net(net); |
Eric W. Biederman | b51642f | 2012-11-16 03:03:11 +0000 | [diff] [blame] | 1920 | err = -EPERM; |
| 1921 | goto errout; |
| 1922 | } |
Eric W. Biederman | d8a5ec6 | 2007-09-12 13:57:04 +0200 | [diff] [blame] | 1923 | err = dev_change_net_namespace(dev, net, ifname); |
| 1924 | put_net(net); |
| 1925 | if (err) |
| 1926 | goto errout; |
Nicolas Dichtel | 90c325e | 2014-09-01 16:07:28 +0200 | [diff] [blame] | 1927 | status |= DO_SETLINK_MODIFIED; |
Eric W. Biederman | d8a5ec6 | 2007-09-12 13:57:04 +0200 | [diff] [blame] | 1928 | } |
| 1929 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1930 | if (tb[IFLA_MAP]) { |
| 1931 | struct rtnl_link_ifmap *u_map; |
| 1932 | struct ifmap k_map; |
| 1933 | |
Stephen Hemminger | d314774 | 2008-11-19 21:32:24 -0800 | [diff] [blame] | 1934 | if (!ops->ndo_set_config) { |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1935 | err = -EOPNOTSUPP; |
| 1936 | goto errout; |
| 1937 | } |
| 1938 | |
| 1939 | if (!netif_device_present(dev)) { |
| 1940 | err = -ENODEV; |
| 1941 | goto errout; |
| 1942 | } |
| 1943 | |
| 1944 | u_map = nla_data(tb[IFLA_MAP]); |
| 1945 | k_map.mem_start = (unsigned long) u_map->mem_start; |
| 1946 | k_map.mem_end = (unsigned long) u_map->mem_end; |
| 1947 | k_map.base_addr = (unsigned short) u_map->base_addr; |
| 1948 | k_map.irq = (unsigned char) u_map->irq; |
| 1949 | k_map.dma = (unsigned char) u_map->dma; |
| 1950 | k_map.port = (unsigned char) u_map->port; |
| 1951 | |
Stephen Hemminger | d314774 | 2008-11-19 21:32:24 -0800 | [diff] [blame] | 1952 | err = ops->ndo_set_config(dev, &k_map); |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1953 | if (err < 0) |
| 1954 | goto errout; |
| 1955 | |
Nicolas Dichtel | ba99890 | 2014-09-01 16:07:29 +0200 | [diff] [blame] | 1956 | status |= DO_SETLINK_NOTIFY; |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1957 | } |
| 1958 | |
| 1959 | if (tb[IFLA_ADDRESS]) { |
| 1960 | struct sockaddr *sa; |
| 1961 | int len; |
| 1962 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1963 | len = sizeof(sa_family_t) + dev->addr_len; |
| 1964 | sa = kmalloc(len, GFP_KERNEL); |
| 1965 | if (!sa) { |
| 1966 | err = -ENOMEM; |
| 1967 | goto errout; |
| 1968 | } |
| 1969 | sa->sa_family = dev->type; |
| 1970 | memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]), |
| 1971 | dev->addr_len); |
Jiri Pirko | e7c3273 | 2013-01-01 03:30:13 +0000 | [diff] [blame] | 1972 | err = dev_set_mac_address(dev, sa); |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1973 | kfree(sa); |
| 1974 | if (err) |
| 1975 | goto errout; |
Nicolas Dichtel | 90c325e | 2014-09-01 16:07:28 +0200 | [diff] [blame] | 1976 | status |= DO_SETLINK_MODIFIED; |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1977 | } |
| 1978 | |
| 1979 | if (tb[IFLA_MTU]) { |
| 1980 | err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU])); |
| 1981 | if (err < 0) |
| 1982 | goto errout; |
Nicolas Dichtel | 90c325e | 2014-09-01 16:07:28 +0200 | [diff] [blame] | 1983 | status |= DO_SETLINK_MODIFIED; |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1984 | } |
| 1985 | |
Vlad Dogaru | cbda10f | 2011-01-13 23:38:30 +0000 | [diff] [blame] | 1986 | if (tb[IFLA_GROUP]) { |
| 1987 | dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP])); |
Nicolas Dichtel | ba99890 | 2014-09-01 16:07:29 +0200 | [diff] [blame] | 1988 | status |= DO_SETLINK_NOTIFY; |
Vlad Dogaru | cbda10f | 2011-01-13 23:38:30 +0000 | [diff] [blame] | 1989 | } |
| 1990 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 1991 | /* |
| 1992 | * Interface selected by interface index but interface |
| 1993 | * name provided implies that a name change has been |
| 1994 | * requested. |
| 1995 | */ |
| 1996 | if (ifm->ifi_index > 0 && ifname[0]) { |
| 1997 | err = dev_change_name(dev, ifname); |
| 1998 | if (err < 0) |
| 1999 | goto errout; |
Nicolas Dichtel | 90c325e | 2014-09-01 16:07:28 +0200 | [diff] [blame] | 2000 | status |= DO_SETLINK_MODIFIED; |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 2001 | } |
| 2002 | |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 2003 | if (tb[IFLA_IFALIAS]) { |
| 2004 | err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]), |
| 2005 | nla_len(tb[IFLA_IFALIAS])); |
| 2006 | if (err < 0) |
| 2007 | goto errout; |
Nicolas Dichtel | ba99890 | 2014-09-01 16:07:29 +0200 | [diff] [blame] | 2008 | status |= DO_SETLINK_NOTIFY; |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 2009 | } |
| 2010 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 2011 | if (tb[IFLA_BROADCAST]) { |
| 2012 | nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len); |
Jiri Pirko | e7c3273 | 2013-01-01 03:30:13 +0000 | [diff] [blame] | 2013 | call_netdevice_notifiers(NETDEV_CHANGEADDR, dev); |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 2014 | } |
| 2015 | |
| 2016 | if (ifm->ifi_flags || ifm->ifi_change) { |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 2017 | err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm)); |
Johannes Berg | 5f9021c | 2008-11-16 23:20:31 -0800 | [diff] [blame] | 2018 | if (err < 0) |
| 2019 | goto errout; |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 2020 | } |
| 2021 | |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 2022 | if (tb[IFLA_MASTER]) { |
| 2023 | err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER])); |
| 2024 | if (err) |
| 2025 | goto errout; |
Nicolas Dichtel | 90c325e | 2014-09-01 16:07:28 +0200 | [diff] [blame] | 2026 | status |= DO_SETLINK_MODIFIED; |
Jiri Pirko | fbaec0e | 2011-02-13 10:15:37 +0000 | [diff] [blame] | 2027 | } |
| 2028 | |
Jiri Pirko | 9a57247 | 2012-12-27 23:49:39 +0000 | [diff] [blame] | 2029 | if (tb[IFLA_CARRIER]) { |
| 2030 | err = dev_change_carrier(dev, nla_get_u8(tb[IFLA_CARRIER])); |
| 2031 | if (err) |
| 2032 | goto errout; |
Nicolas Dichtel | 90c325e | 2014-09-01 16:07:28 +0200 | [diff] [blame] | 2033 | status |= DO_SETLINK_MODIFIED; |
Jiri Pirko | 9a57247 | 2012-12-27 23:49:39 +0000 | [diff] [blame] | 2034 | } |
| 2035 | |
Nicolas Dichtel | 5d1180f | 2014-09-01 16:07:26 +0200 | [diff] [blame] | 2036 | if (tb[IFLA_TXQLEN]) { |
| 2037 | unsigned long value = nla_get_u32(tb[IFLA_TXQLEN]); |
Jason Wang | 08294a2 | 2016-06-30 14:45:35 +0800 | [diff] [blame] | 2038 | unsigned long orig_len = dev->tx_queue_len; |
Nicolas Dichtel | 5d1180f | 2014-09-01 16:07:26 +0200 | [diff] [blame] | 2039 | |
Jason Wang | 08294a2 | 2016-06-30 14:45:35 +0800 | [diff] [blame] | 2040 | if (dev->tx_queue_len ^ value) { |
| 2041 | dev->tx_queue_len = value; |
| 2042 | err = call_netdevice_notifiers( |
| 2043 | NETDEV_CHANGE_TX_QUEUE_LEN, dev); |
| 2044 | err = notifier_to_errno(err); |
| 2045 | if (err) { |
| 2046 | dev->tx_queue_len = orig_len; |
| 2047 | goto errout; |
| 2048 | } |
Nicolas Dichtel | ba99890 | 2014-09-01 16:07:29 +0200 | [diff] [blame] | 2049 | status |= DO_SETLINK_NOTIFY; |
Jason Wang | 08294a2 | 2016-06-30 14:45:35 +0800 | [diff] [blame] | 2050 | } |
Nicolas Dichtel | 5d1180f | 2014-09-01 16:07:26 +0200 | [diff] [blame] | 2051 | } |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 2052 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 2053 | if (tb[IFLA_OPERSTATE]) |
David S. Miller | 93b2d4a | 2008-02-17 18:35:07 -0800 | [diff] [blame] | 2054 | set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE])); |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 2055 | |
| 2056 | if (tb[IFLA_LINKMODE]) { |
Nicolas Dichtel | 1889b0e | 2014-09-01 16:07:27 +0200 | [diff] [blame] | 2057 | unsigned char value = nla_get_u8(tb[IFLA_LINKMODE]); |
| 2058 | |
David S. Miller | 93b2d4a | 2008-02-17 18:35:07 -0800 | [diff] [blame] | 2059 | write_lock_bh(&dev_base_lock); |
Nicolas Dichtel | 1889b0e | 2014-09-01 16:07:27 +0200 | [diff] [blame] | 2060 | if (dev->link_mode ^ value) |
Nicolas Dichtel | ba99890 | 2014-09-01 16:07:29 +0200 | [diff] [blame] | 2061 | status |= DO_SETLINK_NOTIFY; |
Nicolas Dichtel | 1889b0e | 2014-09-01 16:07:27 +0200 | [diff] [blame] | 2062 | dev->link_mode = value; |
David S. Miller | 93b2d4a | 2008-02-17 18:35:07 -0800 | [diff] [blame] | 2063 | write_unlock_bh(&dev_base_lock); |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 2064 | } |
| 2065 | |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 2066 | if (tb[IFLA_VFINFO_LIST]) { |
Daniel Borkmann | 4f7d2cd | 2015-07-07 00:07:52 +0200 | [diff] [blame] | 2067 | struct nlattr *vfinfo[IFLA_VF_MAX + 1]; |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 2068 | struct nlattr *attr; |
| 2069 | int rem; |
Daniel Borkmann | 4f7d2cd | 2015-07-07 00:07:52 +0200 | [diff] [blame] | 2070 | |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 2071 | nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) { |
Daniel Borkmann | 4f7d2cd | 2015-07-07 00:07:52 +0200 | [diff] [blame] | 2072 | if (nla_type(attr) != IFLA_VF_INFO || |
| 2073 | nla_len(attr) < NLA_HDRLEN) { |
David Howells | 253683b | 2010-05-21 02:25:27 +0000 | [diff] [blame] | 2074 | err = -EINVAL; |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 2075 | goto errout; |
David Howells | 253683b | 2010-05-21 02:25:27 +0000 | [diff] [blame] | 2076 | } |
Daniel Borkmann | 4f7d2cd | 2015-07-07 00:07:52 +0200 | [diff] [blame] | 2077 | err = nla_parse_nested(vfinfo, IFLA_VF_MAX, attr, |
| 2078 | ifla_vf_policy); |
| 2079 | if (err < 0) |
| 2080 | goto errout; |
| 2081 | err = do_setvfinfo(dev, vfinfo); |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 2082 | if (err < 0) |
| 2083 | goto errout; |
Nicolas Dichtel | ba99890 | 2014-09-01 16:07:29 +0200 | [diff] [blame] | 2084 | status |= DO_SETLINK_NOTIFY; |
Chris Wright | c02db8c | 2010-05-16 01:05:45 -0700 | [diff] [blame] | 2085 | } |
Williams, Mitch A | ebc08a6 | 2010-02-10 01:44:05 +0000 | [diff] [blame] | 2086 | } |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 2087 | err = 0; |
| 2088 | |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 2089 | if (tb[IFLA_VF_PORTS]) { |
| 2090 | struct nlattr *port[IFLA_PORT_MAX+1]; |
| 2091 | struct nlattr *attr; |
| 2092 | int vf; |
| 2093 | int rem; |
| 2094 | |
| 2095 | err = -EOPNOTSUPP; |
| 2096 | if (!ops->ndo_set_vf_port) |
| 2097 | goto errout; |
| 2098 | |
| 2099 | nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) { |
Daniel Borkmann | 035d210 | 2015-07-13 00:06:02 +0200 | [diff] [blame] | 2100 | if (nla_type(attr) != IFLA_VF_PORT || |
| 2101 | nla_len(attr) < NLA_HDRLEN) { |
| 2102 | err = -EINVAL; |
| 2103 | goto errout; |
| 2104 | } |
| 2105 | err = nla_parse_nested(port, IFLA_PORT_MAX, attr, |
| 2106 | ifla_port_policy); |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 2107 | if (err < 0) |
| 2108 | goto errout; |
| 2109 | if (!port[IFLA_PORT_VF]) { |
| 2110 | err = -EOPNOTSUPP; |
| 2111 | goto errout; |
| 2112 | } |
| 2113 | vf = nla_get_u32(port[IFLA_PORT_VF]); |
| 2114 | err = ops->ndo_set_vf_port(dev, vf, port); |
| 2115 | if (err < 0) |
| 2116 | goto errout; |
Nicolas Dichtel | ba99890 | 2014-09-01 16:07:29 +0200 | [diff] [blame] | 2117 | status |= DO_SETLINK_NOTIFY; |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 2118 | } |
| 2119 | } |
| 2120 | err = 0; |
| 2121 | |
| 2122 | if (tb[IFLA_PORT_SELF]) { |
| 2123 | struct nlattr *port[IFLA_PORT_MAX+1]; |
| 2124 | |
| 2125 | err = nla_parse_nested(port, IFLA_PORT_MAX, |
| 2126 | tb[IFLA_PORT_SELF], ifla_port_policy); |
| 2127 | if (err < 0) |
| 2128 | goto errout; |
| 2129 | |
| 2130 | err = -EOPNOTSUPP; |
| 2131 | if (ops->ndo_set_vf_port) |
| 2132 | err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port); |
| 2133 | if (err < 0) |
| 2134 | goto errout; |
Nicolas Dichtel | ba99890 | 2014-09-01 16:07:29 +0200 | [diff] [blame] | 2135 | status |= DO_SETLINK_NOTIFY; |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 2136 | } |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 2137 | |
| 2138 | if (tb[IFLA_AF_SPEC]) { |
| 2139 | struct nlattr *af; |
| 2140 | int rem; |
| 2141 | |
| 2142 | nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) { |
| 2143 | const struct rtnl_af_ops *af_ops; |
| 2144 | |
| 2145 | if (!(af_ops = rtnl_af_lookup(nla_type(af)))) |
Thomas Graf | cf7afbf | 2010-11-22 01:31:54 +0000 | [diff] [blame] | 2146 | BUG(); |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 2147 | |
Thomas Graf | cf7afbf | 2010-11-22 01:31:54 +0000 | [diff] [blame] | 2148 | err = af_ops->set_link_af(dev, af); |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 2149 | if (err < 0) |
| 2150 | goto errout; |
| 2151 | |
Nicolas Dichtel | ba99890 | 2014-09-01 16:07:29 +0200 | [diff] [blame] | 2152 | status |= DO_SETLINK_NOTIFY; |
Thomas Graf | f8ff182 | 2010-11-16 04:30:14 +0000 | [diff] [blame] | 2153 | } |
| 2154 | } |
Scott Feldman | 57b6108 | 2010-05-17 22:49:55 -0700 | [diff] [blame] | 2155 | err = 0; |
| 2156 | |
Anuradha Karuppiah | 88d6378 | 2015-07-14 13:43:20 -0700 | [diff] [blame] | 2157 | if (tb[IFLA_PROTO_DOWN]) { |
| 2158 | err = dev_change_proto_down(dev, |
| 2159 | nla_get_u8(tb[IFLA_PROTO_DOWN])); |
| 2160 | if (err) |
| 2161 | goto errout; |
| 2162 | status |= DO_SETLINK_NOTIFY; |
| 2163 | } |
| 2164 | |
Brenden Blanco | d1fdd91 | 2016-07-19 12:16:49 -0700 | [diff] [blame] | 2165 | if (tb[IFLA_XDP]) { |
| 2166 | struct nlattr *xdp[IFLA_XDP_MAX + 1]; |
| 2167 | |
| 2168 | err = nla_parse_nested(xdp, IFLA_XDP_MAX, tb[IFLA_XDP], |
| 2169 | ifla_xdp_policy); |
| 2170 | if (err < 0) |
| 2171 | goto errout; |
| 2172 | |
Brenden Blanco | 262d862 | 2016-07-20 17:22:34 -0700 | [diff] [blame] | 2173 | if (xdp[IFLA_XDP_ATTACHED]) { |
| 2174 | err = -EINVAL; |
| 2175 | goto errout; |
| 2176 | } |
Brenden Blanco | d1fdd91 | 2016-07-19 12:16:49 -0700 | [diff] [blame] | 2177 | if (xdp[IFLA_XDP_FD]) { |
| 2178 | err = dev_change_xdp_fd(dev, |
| 2179 | nla_get_s32(xdp[IFLA_XDP_FD])); |
| 2180 | if (err) |
| 2181 | goto errout; |
| 2182 | status |= DO_SETLINK_NOTIFY; |
| 2183 | } |
| 2184 | } |
| 2185 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 2186 | errout: |
Nicolas Dichtel | ba99890 | 2014-09-01 16:07:29 +0200 | [diff] [blame] | 2187 | if (status & DO_SETLINK_MODIFIED) { |
| 2188 | if (status & DO_SETLINK_NOTIFY) |
| 2189 | netdev_state_change(dev); |
| 2190 | |
| 2191 | if (err < 0) |
| 2192 | 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", |
| 2193 | dev->name); |
| 2194 | } |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 2195 | |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 2196 | return err; |
| 2197 | } |
| 2198 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 2199 | static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2200 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 2201 | struct net *net = sock_net(skb->sk); |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 2202 | struct ifinfomsg *ifm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | struct net_device *dev; |
Patrick McHardy | 0157f60 | 2007-06-13 12:03:36 -0700 | [diff] [blame] | 2204 | int err; |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 2205 | struct nlattr *tb[IFLA_MAX+1]; |
| 2206 | char ifname[IFNAMSIZ]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 2208 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); |
| 2209 | if (err < 0) |
| 2210 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | |
Thomas Graf | 5176f91 | 2006-08-26 20:13:18 -0700 | [diff] [blame] | 2212 | if (tb[IFLA_IFNAME]) |
| 2213 | nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); |
Patrick McHardy | 78e5b891 | 2006-09-13 20:35:36 -0700 | [diff] [blame] | 2214 | else |
| 2215 | ifname[0] = '\0'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | err = -EINVAL; |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 2218 | ifm = nlmsg_data(nlh); |
Patrick McHardy | 51055be | 2007-06-05 12:40:01 -0700 | [diff] [blame] | 2219 | if (ifm->ifi_index > 0) |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2220 | dev = __dev_get_by_index(net, ifm->ifi_index); |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 2221 | else if (tb[IFLA_IFNAME]) |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2222 | dev = __dev_get_by_name(net, ifname); |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 2223 | else |
| 2224 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2225 | |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 2226 | if (dev == NULL) { |
| 2227 | err = -ENODEV; |
| 2228 | goto errout; |
| 2229 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 2231 | err = validate_linkmsg(dev, tb); |
| 2232 | if (err < 0) |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2233 | goto errout; |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 2234 | |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 2235 | err = do_setlink(skb, dev, ifm, tb, ifname, 0); |
Thomas Graf | da5e049 | 2006-08-10 21:17:37 -0700 | [diff] [blame] | 2236 | errout: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | return err; |
| 2238 | } |
| 2239 | |
WANG Cong | 66400d5 | 2015-03-24 11:53:31 -0700 | [diff] [blame] | 2240 | static int rtnl_group_dellink(const struct net *net, int group) |
| 2241 | { |
| 2242 | struct net_device *dev, *aux; |
| 2243 | LIST_HEAD(list_kill); |
| 2244 | bool found = false; |
| 2245 | |
| 2246 | if (!group) |
| 2247 | return -EPERM; |
| 2248 | |
| 2249 | for_each_netdev(net, dev) { |
| 2250 | if (dev->group == group) { |
| 2251 | const struct rtnl_link_ops *ops; |
| 2252 | |
| 2253 | found = true; |
| 2254 | ops = dev->rtnl_link_ops; |
| 2255 | if (!ops || !ops->dellink) |
| 2256 | return -EOPNOTSUPP; |
| 2257 | } |
| 2258 | } |
| 2259 | |
| 2260 | if (!found) |
| 2261 | return -ENODEV; |
| 2262 | |
| 2263 | for_each_netdev_safe(net, dev, aux) { |
| 2264 | if (dev->group == group) { |
| 2265 | const struct rtnl_link_ops *ops; |
| 2266 | |
| 2267 | ops = dev->rtnl_link_ops; |
| 2268 | ops->dellink(dev, &list_kill); |
| 2269 | } |
| 2270 | } |
| 2271 | unregister_netdevice_many(&list_kill); |
| 2272 | |
| 2273 | return 0; |
| 2274 | } |
| 2275 | |
Thomas Graf | 614732e | 2015-07-21 10:44:06 +0200 | [diff] [blame] | 2276 | int rtnl_delete_link(struct net_device *dev) |
| 2277 | { |
| 2278 | const struct rtnl_link_ops *ops; |
| 2279 | LIST_HEAD(list_kill); |
| 2280 | |
| 2281 | ops = dev->rtnl_link_ops; |
| 2282 | if (!ops || !ops->dellink) |
| 2283 | return -EOPNOTSUPP; |
| 2284 | |
| 2285 | ops->dellink(dev, &list_kill); |
| 2286 | unregister_netdevice_many(&list_kill); |
| 2287 | |
| 2288 | return 0; |
| 2289 | } |
| 2290 | EXPORT_SYMBOL_GPL(rtnl_delete_link); |
| 2291 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 2292 | static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh) |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2293 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 2294 | struct net *net = sock_net(skb->sk); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2295 | struct net_device *dev; |
| 2296 | struct ifinfomsg *ifm; |
| 2297 | char ifname[IFNAMSIZ]; |
| 2298 | struct nlattr *tb[IFLA_MAX+1]; |
| 2299 | int err; |
| 2300 | |
| 2301 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); |
| 2302 | if (err < 0) |
| 2303 | return err; |
| 2304 | |
| 2305 | if (tb[IFLA_IFNAME]) |
| 2306 | nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); |
| 2307 | |
| 2308 | ifm = nlmsg_data(nlh); |
| 2309 | if (ifm->ifi_index > 0) |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 2310 | dev = __dev_get_by_index(net, ifm->ifi_index); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2311 | else if (tb[IFLA_IFNAME]) |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 2312 | dev = __dev_get_by_name(net, ifname); |
WANG Cong | 66400d5 | 2015-03-24 11:53:31 -0700 | [diff] [blame] | 2313 | else if (tb[IFLA_GROUP]) |
| 2314 | return rtnl_group_dellink(net, nla_get_u32(tb[IFLA_GROUP])); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2315 | else |
| 2316 | return -EINVAL; |
| 2317 | |
| 2318 | if (!dev) |
| 2319 | return -ENODEV; |
| 2320 | |
Thomas Graf | 614732e | 2015-07-21 10:44:06 +0200 | [diff] [blame] | 2321 | return rtnl_delete_link(dev); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2322 | } |
| 2323 | |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 2324 | int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm) |
| 2325 | { |
| 2326 | unsigned int old_flags; |
| 2327 | int err; |
| 2328 | |
| 2329 | old_flags = dev->flags; |
| 2330 | if (ifm && (ifm->ifi_flags || ifm->ifi_change)) { |
| 2331 | err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm)); |
| 2332 | if (err < 0) |
| 2333 | return err; |
| 2334 | } |
| 2335 | |
| 2336 | dev->rtnl_link_state = RTNL_LINK_INITIALIZED; |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 2337 | |
Nicolas Dichtel | a528c21 | 2013-09-25 12:02:44 +0200 | [diff] [blame] | 2338 | __dev_notify_flags(dev, old_flags, ~0U); |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 2339 | return 0; |
| 2340 | } |
| 2341 | EXPORT_SYMBOL(rtnl_configure_link); |
| 2342 | |
Rami Rosen | c071356 | 2012-11-30 01:08:47 +0000 | [diff] [blame] | 2343 | struct net_device *rtnl_create_link(struct net *net, |
Thomas Graf | 78ebb0d | 2015-04-10 01:45:53 +0200 | [diff] [blame] | 2344 | const char *ifname, unsigned char name_assign_type, |
Tom Gundersen | 5517750 | 2014-07-14 16:37:25 +0200 | [diff] [blame] | 2345 | const struct rtnl_link_ops *ops, struct nlattr *tb[]) |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 2346 | { |
| 2347 | int err; |
| 2348 | struct net_device *dev; |
Jiri Pirko | d40156a | 2012-07-20 02:28:47 +0000 | [diff] [blame] | 2349 | unsigned int num_tx_queues = 1; |
| 2350 | unsigned int num_rx_queues = 1; |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 2351 | |
Jiri Pirko | 76ff5cc | 2012-07-20 02:28:48 +0000 | [diff] [blame] | 2352 | if (tb[IFLA_NUM_TX_QUEUES]) |
| 2353 | num_tx_queues = nla_get_u32(tb[IFLA_NUM_TX_QUEUES]); |
| 2354 | else if (ops->get_num_tx_queues) |
Jiri Pirko | d40156a | 2012-07-20 02:28:47 +0000 | [diff] [blame] | 2355 | num_tx_queues = ops->get_num_tx_queues(); |
Jiri Pirko | 76ff5cc | 2012-07-20 02:28:48 +0000 | [diff] [blame] | 2356 | |
| 2357 | if (tb[IFLA_NUM_RX_QUEUES]) |
| 2358 | num_rx_queues = nla_get_u32(tb[IFLA_NUM_RX_QUEUES]); |
| 2359 | else if (ops->get_num_rx_queues) |
Jiri Pirko | d40156a | 2012-07-20 02:28:47 +0000 | [diff] [blame] | 2360 | num_rx_queues = ops->get_num_rx_queues(); |
stephen hemminger | efacb30 | 2012-04-10 18:34:43 +0000 | [diff] [blame] | 2361 | |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 2362 | err = -ENOMEM; |
Tom Gundersen | 5517750 | 2014-07-14 16:37:25 +0200 | [diff] [blame] | 2363 | dev = alloc_netdev_mqs(ops->priv_size, ifname, name_assign_type, |
Tom Gundersen | c835a67 | 2014-07-14 16:37:24 +0200 | [diff] [blame] | 2364 | ops->setup, num_tx_queues, num_rx_queues); |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 2365 | if (!dev) |
| 2366 | goto err; |
| 2367 | |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 2368 | dev_net_set(dev, net); |
| 2369 | dev->rtnl_link_ops = ops; |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 2370 | dev->rtnl_link_state = RTNL_LINK_INITIALIZING; |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 2371 | |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 2372 | if (tb[IFLA_MTU]) |
| 2373 | dev->mtu = nla_get_u32(tb[IFLA_MTU]); |
Jiri Pirko | 2afb9b5 | 2013-01-06 12:41:57 +0000 | [diff] [blame] | 2374 | if (tb[IFLA_ADDRESS]) { |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 2375 | memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]), |
| 2376 | nla_len(tb[IFLA_ADDRESS])); |
Jiri Pirko | 2afb9b5 | 2013-01-06 12:41:57 +0000 | [diff] [blame] | 2377 | dev->addr_assign_type = NET_ADDR_SET; |
| 2378 | } |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 2379 | if (tb[IFLA_BROADCAST]) |
| 2380 | memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]), |
| 2381 | nla_len(tb[IFLA_BROADCAST])); |
| 2382 | if (tb[IFLA_TXQLEN]) |
| 2383 | dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]); |
| 2384 | if (tb[IFLA_OPERSTATE]) |
David S. Miller | 93b2d4a | 2008-02-17 18:35:07 -0800 | [diff] [blame] | 2385 | set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE])); |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 2386 | if (tb[IFLA_LINKMODE]) |
| 2387 | dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]); |
Patrick McHardy | ffa934f | 2011-01-20 03:00:42 +0000 | [diff] [blame] | 2388 | if (tb[IFLA_GROUP]) |
| 2389 | dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP])); |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 2390 | |
| 2391 | return dev; |
| 2392 | |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 2393 | err: |
| 2394 | return ERR_PTR(err); |
| 2395 | } |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 2396 | EXPORT_SYMBOL(rtnl_create_link); |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 2397 | |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 2398 | static int rtnl_group_changelink(const struct sk_buff *skb, |
| 2399 | struct net *net, int group, |
Vlad Dogaru | e7ed828 | 2011-01-13 23:38:31 +0000 | [diff] [blame] | 2400 | struct ifinfomsg *ifm, |
| 2401 | struct nlattr **tb) |
| 2402 | { |
WANG Cong | d079535 | 2015-03-23 16:31:09 -0700 | [diff] [blame] | 2403 | struct net_device *dev, *aux; |
Vlad Dogaru | e7ed828 | 2011-01-13 23:38:31 +0000 | [diff] [blame] | 2404 | int err; |
| 2405 | |
WANG Cong | d079535 | 2015-03-23 16:31:09 -0700 | [diff] [blame] | 2406 | for_each_netdev_safe(net, dev, aux) { |
Vlad Dogaru | e7ed828 | 2011-01-13 23:38:31 +0000 | [diff] [blame] | 2407 | if (dev->group == group) { |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 2408 | err = do_setlink(skb, dev, ifm, tb, NULL, 0); |
Vlad Dogaru | e7ed828 | 2011-01-13 23:38:31 +0000 | [diff] [blame] | 2409 | if (err < 0) |
| 2410 | return err; |
| 2411 | } |
| 2412 | } |
| 2413 | |
| 2414 | return 0; |
| 2415 | } |
| 2416 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 2417 | static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh) |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2418 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 2419 | struct net *net = sock_net(skb->sk); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2420 | const struct rtnl_link_ops *ops; |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 2421 | const struct rtnl_link_ops *m_ops = NULL; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2422 | struct net_device *dev; |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 2423 | struct net_device *master_dev = NULL; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2424 | struct ifinfomsg *ifm; |
| 2425 | char kind[MODULE_NAME_LEN]; |
| 2426 | char ifname[IFNAMSIZ]; |
| 2427 | struct nlattr *tb[IFLA_MAX+1]; |
| 2428 | struct nlattr *linkinfo[IFLA_INFO_MAX+1]; |
Tom Gundersen | 5517750 | 2014-07-14 16:37:25 +0200 | [diff] [blame] | 2429 | unsigned char name_assign_type = NET_NAME_USER; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2430 | int err; |
| 2431 | |
Johannes Berg | 95a5afc | 2008-10-16 15:24:51 -0700 | [diff] [blame] | 2432 | #ifdef CONFIG_MODULES |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2433 | replay: |
Thomas Graf | 8072f08 | 2007-07-31 14:13:50 -0700 | [diff] [blame] | 2434 | #endif |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2435 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); |
| 2436 | if (err < 0) |
| 2437 | return err; |
| 2438 | |
| 2439 | if (tb[IFLA_IFNAME]) |
| 2440 | nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); |
| 2441 | else |
| 2442 | ifname[0] = '\0'; |
| 2443 | |
| 2444 | ifm = nlmsg_data(nlh); |
| 2445 | if (ifm->ifi_index > 0) |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 2446 | dev = __dev_get_by_index(net, ifm->ifi_index); |
Vlad Dogaru | e7ed828 | 2011-01-13 23:38:31 +0000 | [diff] [blame] | 2447 | else { |
| 2448 | if (ifname[0]) |
| 2449 | dev = __dev_get_by_name(net, ifname); |
Vlad Dogaru | e7ed828 | 2011-01-13 23:38:31 +0000 | [diff] [blame] | 2450 | else |
| 2451 | dev = NULL; |
| 2452 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2453 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 2454 | if (dev) { |
| 2455 | master_dev = netdev_master_upper_dev_get(dev); |
| 2456 | if (master_dev) |
| 2457 | m_ops = master_dev->rtnl_link_ops; |
| 2458 | } |
| 2459 | |
Eric Dumazet | e0d087a | 2009-11-07 01:26:17 -0800 | [diff] [blame] | 2460 | err = validate_linkmsg(dev, tb); |
| 2461 | if (err < 0) |
Thomas Graf | 1840bb1 | 2008-02-23 19:54:36 -0800 | [diff] [blame] | 2462 | return err; |
| 2463 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2464 | if (tb[IFLA_LINKINFO]) { |
| 2465 | err = nla_parse_nested(linkinfo, IFLA_INFO_MAX, |
| 2466 | tb[IFLA_LINKINFO], ifla_info_policy); |
| 2467 | if (err < 0) |
| 2468 | return err; |
| 2469 | } else |
| 2470 | memset(linkinfo, 0, sizeof(linkinfo)); |
| 2471 | |
| 2472 | if (linkinfo[IFLA_INFO_KIND]) { |
| 2473 | nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind)); |
| 2474 | ops = rtnl_link_ops_get(kind); |
| 2475 | } else { |
| 2476 | kind[0] = '\0'; |
| 2477 | ops = NULL; |
| 2478 | } |
| 2479 | |
| 2480 | if (1) { |
Sasha Levin | 4e10fd5 | 2015-02-24 14:14:35 -0500 | [diff] [blame] | 2481 | struct nlattr *attr[ops ? ops->maxtype + 1 : 1]; |
| 2482 | struct nlattr *slave_attr[m_ops ? m_ops->slave_maxtype + 1 : 1]; |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 2483 | struct nlattr **data = NULL; |
| 2484 | struct nlattr **slave_data = NULL; |
Nicolas Dichtel | 317f481 | 2015-01-15 15:11:18 +0100 | [diff] [blame] | 2485 | struct net *dest_net, *link_net = NULL; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2486 | |
| 2487 | if (ops) { |
| 2488 | if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) { |
| 2489 | err = nla_parse_nested(attr, ops->maxtype, |
| 2490 | linkinfo[IFLA_INFO_DATA], |
| 2491 | ops->policy); |
| 2492 | if (err < 0) |
| 2493 | return err; |
| 2494 | data = attr; |
| 2495 | } |
| 2496 | if (ops->validate) { |
| 2497 | err = ops->validate(tb, data); |
| 2498 | if (err < 0) |
| 2499 | return err; |
| 2500 | } |
| 2501 | } |
| 2502 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 2503 | if (m_ops) { |
| 2504 | if (m_ops->slave_maxtype && |
| 2505 | linkinfo[IFLA_INFO_SLAVE_DATA]) { |
| 2506 | err = nla_parse_nested(slave_attr, |
| 2507 | m_ops->slave_maxtype, |
| 2508 | linkinfo[IFLA_INFO_SLAVE_DATA], |
| 2509 | m_ops->slave_policy); |
| 2510 | if (err < 0) |
| 2511 | return err; |
| 2512 | slave_data = slave_attr; |
| 2513 | } |
| 2514 | if (m_ops->slave_validate) { |
| 2515 | err = m_ops->slave_validate(tb, slave_data); |
| 2516 | if (err < 0) |
| 2517 | return err; |
| 2518 | } |
| 2519 | } |
| 2520 | |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2521 | if (dev) { |
Nicolas Dichtel | 90c325e | 2014-09-01 16:07:28 +0200 | [diff] [blame] | 2522 | int status = 0; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2523 | |
| 2524 | if (nlh->nlmsg_flags & NLM_F_EXCL) |
| 2525 | return -EEXIST; |
| 2526 | if (nlh->nlmsg_flags & NLM_F_REPLACE) |
| 2527 | return -EOPNOTSUPP; |
| 2528 | |
| 2529 | if (linkinfo[IFLA_INFO_DATA]) { |
| 2530 | if (!ops || ops != dev->rtnl_link_ops || |
| 2531 | !ops->changelink) |
| 2532 | return -EOPNOTSUPP; |
| 2533 | |
| 2534 | err = ops->changelink(dev, tb, data); |
| 2535 | if (err < 0) |
| 2536 | return err; |
Nicolas Dichtel | ba99890 | 2014-09-01 16:07:29 +0200 | [diff] [blame] | 2537 | status |= DO_SETLINK_NOTIFY; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2538 | } |
| 2539 | |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 2540 | if (linkinfo[IFLA_INFO_SLAVE_DATA]) { |
| 2541 | if (!m_ops || !m_ops->slave_changelink) |
| 2542 | return -EOPNOTSUPP; |
| 2543 | |
| 2544 | err = m_ops->slave_changelink(master_dev, dev, |
| 2545 | tb, slave_data); |
| 2546 | if (err < 0) |
| 2547 | return err; |
Nicolas Dichtel | ba99890 | 2014-09-01 16:07:29 +0200 | [diff] [blame] | 2548 | status |= DO_SETLINK_NOTIFY; |
Jiri Pirko | ba7d49b | 2014-01-22 09:05:55 +0100 | [diff] [blame] | 2549 | } |
| 2550 | |
Nicolas Dichtel | 90c325e | 2014-09-01 16:07:28 +0200 | [diff] [blame] | 2551 | return do_setlink(skb, dev, ifm, tb, ifname, status); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2552 | } |
| 2553 | |
Patrick McHardy | ffa934f | 2011-01-20 03:00:42 +0000 | [diff] [blame] | 2554 | if (!(nlh->nlmsg_flags & NLM_F_CREATE)) { |
| 2555 | if (ifm->ifi_index == 0 && tb[IFLA_GROUP]) |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 2556 | return rtnl_group_changelink(skb, net, |
Patrick McHardy | ffa934f | 2011-01-20 03:00:42 +0000 | [diff] [blame] | 2557 | nla_get_u32(tb[IFLA_GROUP]), |
| 2558 | ifm, tb); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2559 | return -ENODEV; |
Patrick McHardy | ffa934f | 2011-01-20 03:00:42 +0000 | [diff] [blame] | 2560 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2561 | |
Patrick McHardy | 0e06877 | 2007-07-11 19:42:31 -0700 | [diff] [blame] | 2562 | if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO]) |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2563 | return -EOPNOTSUPP; |
| 2564 | |
| 2565 | if (!ops) { |
Johannes Berg | 95a5afc | 2008-10-16 15:24:51 -0700 | [diff] [blame] | 2566 | #ifdef CONFIG_MODULES |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2567 | if (kind[0]) { |
| 2568 | __rtnl_unlock(); |
| 2569 | request_module("rtnl-link-%s", kind); |
| 2570 | rtnl_lock(); |
| 2571 | ops = rtnl_link_ops_get(kind); |
| 2572 | if (ops) |
| 2573 | goto replay; |
| 2574 | } |
| 2575 | #endif |
| 2576 | return -EOPNOTSUPP; |
| 2577 | } |
| 2578 | |
Jiri Pirko | b0ab2fa | 2014-06-26 09:58:25 +0200 | [diff] [blame] | 2579 | if (!ops->setup) |
| 2580 | return -EOPNOTSUPP; |
| 2581 | |
Tom Gundersen | 5517750 | 2014-07-14 16:37:25 +0200 | [diff] [blame] | 2582 | if (!ifname[0]) { |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2583 | snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind); |
Tom Gundersen | 5517750 | 2014-07-14 16:37:25 +0200 | [diff] [blame] | 2584 | name_assign_type = NET_NAME_ENUM; |
| 2585 | } |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2586 | |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 2587 | dest_net = rtnl_link_get_net(net, tb); |
Eric W. Biederman | 13ad177 | 2011-01-29 14:57:22 +0000 | [diff] [blame] | 2588 | if (IS_ERR(dest_net)) |
| 2589 | return PTR_ERR(dest_net); |
| 2590 | |
Eric W. Biederman | 505ce41 | 2015-02-26 16:19:00 -0600 | [diff] [blame] | 2591 | err = -EPERM; |
| 2592 | if (!netlink_ns_capable(skb, dest_net->user_ns, CAP_NET_ADMIN)) |
| 2593 | goto out; |
| 2594 | |
Nicolas Dichtel | 317f481 | 2015-01-15 15:11:18 +0100 | [diff] [blame] | 2595 | if (tb[IFLA_LINK_NETNSID]) { |
| 2596 | int id = nla_get_s32(tb[IFLA_LINK_NETNSID]); |
| 2597 | |
| 2598 | link_net = get_net_ns_by_id(dest_net, id); |
| 2599 | if (!link_net) { |
| 2600 | err = -EINVAL; |
| 2601 | goto out; |
| 2602 | } |
Eric W. Biederman | 06615be | 2015-02-26 16:20:07 -0600 | [diff] [blame] | 2603 | err = -EPERM; |
| 2604 | if (!netlink_ns_capable(skb, link_net->user_ns, CAP_NET_ADMIN)) |
| 2605 | goto out; |
Nicolas Dichtel | 317f481 | 2015-01-15 15:11:18 +0100 | [diff] [blame] | 2606 | } |
| 2607 | |
| 2608 | dev = rtnl_create_link(link_net ? : dest_net, ifname, |
| 2609 | name_assign_type, ops, tb); |
Pavel Emelyanov | 9c7dafb | 2012-08-08 21:52:46 +0000 | [diff] [blame] | 2610 | if (IS_ERR(dev)) { |
Pavel Emelianov | e719928 | 2007-08-08 22:16:38 -0700 | [diff] [blame] | 2611 | err = PTR_ERR(dev); |
Pavel Emelyanov | 9c7dafb | 2012-08-08 21:52:46 +0000 | [diff] [blame] | 2612 | goto out; |
| 2613 | } |
| 2614 | |
| 2615 | dev->ifindex = ifm->ifi_index; |
| 2616 | |
Cong Wang | 0e0eee2 | 2014-02-11 15:51:30 -0800 | [diff] [blame] | 2617 | if (ops->newlink) { |
Nicolas Dichtel | 7b4ce69 | 2015-01-27 11:13:08 +0100 | [diff] [blame] | 2618 | err = ops->newlink(link_net ? : net, dev, tb, data); |
Cong Wang | 0e0eee2 | 2014-02-11 15:51:30 -0800 | [diff] [blame] | 2619 | /* Drivers should call free_netdev() in ->destructor |
Cong Wang | e51fb15 | 2014-06-03 16:40:47 -0700 | [diff] [blame] | 2620 | * and unregister it on failure after registration |
| 2621 | * so that device could be finally freed in rtnl_unlock. |
Cong Wang | 0e0eee2 | 2014-02-11 15:51:30 -0800 | [diff] [blame] | 2622 | */ |
Cong Wang | e51fb15 | 2014-06-03 16:40:47 -0700 | [diff] [blame] | 2623 | if (err < 0) { |
| 2624 | /* If device is not registered at all, free it now */ |
| 2625 | if (dev->reg_state == NETREG_UNINITIALIZED) |
| 2626 | free_netdev(dev); |
Cong Wang | 0e0eee2 | 2014-02-11 15:51:30 -0800 | [diff] [blame] | 2627 | goto out; |
Cong Wang | e51fb15 | 2014-06-03 16:40:47 -0700 | [diff] [blame] | 2628 | } |
Cong Wang | 0e0eee2 | 2014-02-11 15:51:30 -0800 | [diff] [blame] | 2629 | } else { |
Patrick McHardy | 2d85cba | 2007-07-11 19:42:13 -0700 | [diff] [blame] | 2630 | err = register_netdevice(dev); |
Cong Wang | 0e0eee2 | 2014-02-11 15:51:30 -0800 | [diff] [blame] | 2631 | if (err < 0) { |
| 2632 | free_netdev(dev); |
| 2633 | goto out; |
| 2634 | } |
Dan Carpenter | fce9b9b | 2013-08-14 12:35:42 +0300 | [diff] [blame] | 2635 | } |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 2636 | err = rtnl_configure_link(dev, ifm); |
David S. Miller | 4363890 | 2015-03-10 21:58:32 -0400 | [diff] [blame] | 2637 | if (err < 0) |
| 2638 | goto out_unregister; |
Nicolas Dichtel | bdef279 | 2015-01-20 15:15:42 +0100 | [diff] [blame] | 2639 | if (link_net) { |
Nicolas Dichtel | 317f481 | 2015-01-15 15:11:18 +0100 | [diff] [blame] | 2640 | err = dev_change_net_namespace(dev, dest_net, ifname); |
Nicolas Dichtel | bdef279 | 2015-01-20 15:15:42 +0100 | [diff] [blame] | 2641 | if (err < 0) |
David S. Miller | 4363890 | 2015-03-10 21:58:32 -0400 | [diff] [blame] | 2642 | goto out_unregister; |
Nicolas Dichtel | bdef279 | 2015-01-20 15:15:42 +0100 | [diff] [blame] | 2643 | } |
Patrick McHardy | 3729d50 | 2010-02-26 06:34:54 +0000 | [diff] [blame] | 2644 | out: |
Nicolas Dichtel | 317f481 | 2015-01-15 15:11:18 +0100 | [diff] [blame] | 2645 | if (link_net) |
| 2646 | put_net(link_net); |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 2647 | put_net(dest_net); |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2648 | return err; |
David S. Miller | 4363890 | 2015-03-10 21:58:32 -0400 | [diff] [blame] | 2649 | out_unregister: |
| 2650 | if (ops->newlink) { |
| 2651 | LIST_HEAD(list_kill); |
| 2652 | |
| 2653 | ops->dellink(dev, &list_kill); |
| 2654 | unregister_netdevice_many(&list_kill); |
| 2655 | } else { |
| 2656 | unregister_netdevice(dev); |
| 2657 | } |
| 2658 | goto out; |
Patrick McHardy | 38f7b87 | 2007-06-13 12:03:51 -0700 | [diff] [blame] | 2659 | } |
| 2660 | } |
| 2661 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 2662 | static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh) |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2663 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 2664 | struct net *net = sock_net(skb->sk); |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2665 | struct ifinfomsg *ifm; |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2666 | char ifname[IFNAMSIZ]; |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2667 | struct nlattr *tb[IFLA_MAX+1]; |
| 2668 | struct net_device *dev = NULL; |
| 2669 | struct sk_buff *nskb; |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 2670 | int err; |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2671 | u32 ext_filter_mask = 0; |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2672 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2673 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); |
| 2674 | if (err < 0) |
Eric Sesterhenn | 9918f23 | 2006-09-26 23:26:38 -0700 | [diff] [blame] | 2675 | return err; |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2676 | |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2677 | if (tb[IFLA_IFNAME]) |
| 2678 | nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); |
| 2679 | |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2680 | if (tb[IFLA_EXT_MASK]) |
| 2681 | ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]); |
| 2682 | |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2683 | ifm = nlmsg_data(nlh); |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2684 | if (ifm->ifi_index > 0) |
| 2685 | dev = __dev_get_by_index(net, ifm->ifi_index); |
| 2686 | else if (tb[IFLA_IFNAME]) |
| 2687 | dev = __dev_get_by_name(net, ifname); |
| 2688 | else |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2689 | return -EINVAL; |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2690 | |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2691 | if (dev == NULL) |
| 2692 | return -ENODEV; |
| 2693 | |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2694 | nskb = nlmsg_new(if_nlmsg_size(dev, ext_filter_mask), GFP_KERNEL); |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2695 | if (nskb == NULL) |
| 2696 | return -ENOBUFS; |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2697 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2698 | err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).portid, |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2699 | nlh->nlmsg_seq, 0, 0, ext_filter_mask); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 2700 | if (err < 0) { |
| 2701 | /* -EMSGSIZE implies BUG in if_nlmsg_size */ |
| 2702 | WARN_ON(err == -EMSGSIZE); |
| 2703 | kfree_skb(nskb); |
Eric Dumazet | a3d1289 | 2009-10-21 10:59:31 +0000 | [diff] [blame] | 2704 | } else |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2705 | err = rtnl_unicast(nskb, net, NETLINK_CB(skb).portid); |
Thomas Graf | b60c511 | 2006-08-04 23:05:34 -0700 | [diff] [blame] | 2706 | |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2707 | return err; |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2708 | } |
Jean Tourrilhes | 711e2c3 | 2006-02-22 15:10:56 -0800 | [diff] [blame] | 2709 | |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2710 | static u16 rtnl_calcit(struct sk_buff *skb, struct nlmsghdr *nlh) |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2711 | { |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2712 | struct net *net = sock_net(skb->sk); |
| 2713 | struct net_device *dev; |
| 2714 | struct nlattr *tb[IFLA_MAX+1]; |
| 2715 | u32 ext_filter_mask = 0; |
| 2716 | u16 min_ifinfo_dump_size = 0; |
Michal Schmidt | e5eca6d | 2014-05-28 14:15:19 +0200 | [diff] [blame] | 2717 | int hdrlen; |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2718 | |
Michal Schmidt | e5eca6d | 2014-05-28 14:15:19 +0200 | [diff] [blame] | 2719 | /* Same kernel<->userspace interface hack as in rtnl_dump_ifinfo. */ |
| 2720 | hdrlen = nlmsg_len(nlh) < sizeof(struct ifinfomsg) ? |
| 2721 | sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg); |
| 2722 | |
| 2723 | if (nlmsg_parse(nlh, hdrlen, tb, IFLA_MAX, ifla_policy) >= 0) { |
Eric Dumazet | a4b64fb | 2012-03-04 12:32:10 +0000 | [diff] [blame] | 2724 | if (tb[IFLA_EXT_MASK]) |
| 2725 | ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]); |
| 2726 | } |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2727 | |
| 2728 | if (!ext_filter_mask) |
| 2729 | return NLMSG_GOODSIZE; |
| 2730 | /* |
| 2731 | * traverse the list of net devices and compute the minimum |
| 2732 | * buffer size based upon the filter mask. |
| 2733 | */ |
| 2734 | list_for_each_entry(dev, &net->dev_base_head, dev_list) { |
| 2735 | min_ifinfo_dump_size = max_t(u16, min_ifinfo_dump_size, |
| 2736 | if_nlmsg_size(dev, |
| 2737 | ext_filter_mask)); |
| 2738 | } |
| 2739 | |
Zhang Shengju | 93af205 | 2016-11-22 14:14:28 +0800 | [diff] [blame] | 2740 | return nlmsg_total_size(min_ifinfo_dump_size); |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2741 | } |
| 2742 | |
Adrian Bunk | 42bad1d | 2007-04-26 00:57:41 -0700 | [diff] [blame] | 2743 | 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] | 2744 | { |
| 2745 | int idx; |
| 2746 | int s_idx = cb->family; |
| 2747 | |
| 2748 | if (s_idx == 0) |
| 2749 | s_idx = 1; |
Patrick McHardy | 25239ce | 2010-04-26 16:02:05 +0200 | [diff] [blame] | 2750 | for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2751 | int type = cb->nlh->nlmsg_type-RTM_BASE; |
| 2752 | if (idx < s_idx || idx == PF_PACKET) |
| 2753 | continue; |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 2754 | if (rtnl_msg_handlers[idx] == NULL || |
| 2755 | rtnl_msg_handlers[idx][type].dumpit == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2756 | continue; |
Nicolas Dichtel | 0465277 | 2013-03-22 06:28:42 +0000 | [diff] [blame] | 2757 | if (idx > s_idx) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2758 | memset(&cb->args[0], 0, sizeof(cb->args)); |
Nicolas Dichtel | 0465277 | 2013-03-22 06:28:42 +0000 | [diff] [blame] | 2759 | cb->prev_seq = 0; |
| 2760 | cb->seq = 0; |
| 2761 | } |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 2762 | if (rtnl_msg_handlers[idx][type].dumpit(skb, cb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2763 | break; |
| 2764 | } |
| 2765 | cb->family = idx; |
| 2766 | |
| 2767 | return skb->len; |
| 2768 | } |
| 2769 | |
Mahesh Bandewar | 395eea6 | 2014-12-03 13:46:24 -0800 | [diff] [blame] | 2770 | struct sk_buff *rtmsg_ifinfo_build_skb(int type, struct net_device *dev, |
| 2771 | unsigned int change, gfp_t flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2772 | { |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 2773 | struct net *net = dev_net(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2774 | struct sk_buff *skb; |
Thomas Graf | 0ec6d3f | 2006-08-15 00:37:09 -0700 | [diff] [blame] | 2775 | int err = -ENOBUFS; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2776 | size_t if_info_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | |
Alexei Starovoitov | 7f29405 | 2013-10-23 16:02:42 -0700 | [diff] [blame] | 2778 | skb = nlmsg_new((if_info_size = if_nlmsg_size(dev, 0)), flags); |
Thomas Graf | 0ec6d3f | 2006-08-15 00:37:09 -0700 | [diff] [blame] | 2779 | if (skb == NULL) |
| 2780 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2781 | |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 2782 | err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0, 0); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 2783 | if (err < 0) { |
| 2784 | /* -EMSGSIZE implies BUG in if_nlmsg_size() */ |
| 2785 | WARN_ON(err == -EMSGSIZE); |
| 2786 | kfree_skb(skb); |
| 2787 | goto errout; |
| 2788 | } |
Mahesh Bandewar | 395eea6 | 2014-12-03 13:46:24 -0800 | [diff] [blame] | 2789 | return skb; |
Thomas Graf | 0ec6d3f | 2006-08-15 00:37:09 -0700 | [diff] [blame] | 2790 | errout: |
| 2791 | if (err < 0) |
Eric W. Biederman | 4b3da70 | 2007-11-19 22:27:40 -0800 | [diff] [blame] | 2792 | rtnl_set_sk_err(net, RTNLGRP_LINK, err); |
Mahesh Bandewar | 395eea6 | 2014-12-03 13:46:24 -0800 | [diff] [blame] | 2793 | return NULL; |
| 2794 | } |
| 2795 | |
| 2796 | void rtmsg_ifinfo_send(struct sk_buff *skb, struct net_device *dev, gfp_t flags) |
| 2797 | { |
| 2798 | struct net *net = dev_net(dev); |
| 2799 | |
| 2800 | rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, flags); |
| 2801 | } |
| 2802 | |
| 2803 | void rtmsg_ifinfo(int type, struct net_device *dev, unsigned int change, |
| 2804 | gfp_t flags) |
| 2805 | { |
| 2806 | struct sk_buff *skb; |
| 2807 | |
Nicolas Dichtel | ed2a80a | 2015-05-13 14:19:42 +0200 | [diff] [blame] | 2808 | if (dev->reg_state != NETREG_REGISTERED) |
| 2809 | return; |
| 2810 | |
Mahesh Bandewar | 395eea6 | 2014-12-03 13:46:24 -0800 | [diff] [blame] | 2811 | skb = rtmsg_ifinfo_build_skb(type, dev, change, flags); |
| 2812 | if (skb) |
| 2813 | rtmsg_ifinfo_send(skb, dev, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2814 | } |
Jiri Pirko | 471cb5a | 2013-01-03 22:49:01 +0000 | [diff] [blame] | 2815 | EXPORT_SYMBOL(rtmsg_ifinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2816 | |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2817 | static int nlmsg_populate_fdb_fill(struct sk_buff *skb, |
| 2818 | struct net_device *dev, |
Hubert Sokolowski | 1e53d5b | 2015-04-09 12:16:17 +0000 | [diff] [blame] | 2819 | u8 *addr, u16 vid, u32 pid, u32 seq, |
Nicolas Dichtel | 1c104a6 | 2014-03-19 17:47:49 +0100 | [diff] [blame] | 2820 | int type, unsigned int flags, |
Hubert Sokolowski | b337904 | 2015-12-15 13:20:30 +0000 | [diff] [blame] | 2821 | int nlflags, u16 ndm_state) |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2822 | { |
| 2823 | struct nlmsghdr *nlh; |
| 2824 | struct ndmsg *ndm; |
| 2825 | |
Nicolas Dichtel | 1c104a6 | 2014-03-19 17:47:49 +0100 | [diff] [blame] | 2826 | nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), nlflags); |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2827 | if (!nlh) |
| 2828 | return -EMSGSIZE; |
| 2829 | |
| 2830 | ndm = nlmsg_data(nlh); |
| 2831 | ndm->ndm_family = AF_BRIDGE; |
| 2832 | ndm->ndm_pad1 = 0; |
| 2833 | ndm->ndm_pad2 = 0; |
| 2834 | ndm->ndm_flags = flags; |
| 2835 | ndm->ndm_type = 0; |
| 2836 | ndm->ndm_ifindex = dev->ifindex; |
Hubert Sokolowski | b337904 | 2015-12-15 13:20:30 +0000 | [diff] [blame] | 2837 | ndm->ndm_state = ndm_state; |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2838 | |
| 2839 | if (nla_put(skb, NDA_LLADDR, ETH_ALEN, addr)) |
| 2840 | goto nla_put_failure; |
Hubert Sokolowski | 1e53d5b | 2015-04-09 12:16:17 +0000 | [diff] [blame] | 2841 | if (vid) |
| 2842 | if (nla_put(skb, NDA_VLAN, sizeof(u16), &vid)) |
| 2843 | goto nla_put_failure; |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2844 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 2845 | nlmsg_end(skb, nlh); |
| 2846 | return 0; |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 2847 | |
| 2848 | nla_put_failure: |
| 2849 | nlmsg_cancel(skb, nlh); |
| 2850 | return -EMSGSIZE; |
| 2851 | } |
| 2852 | |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 2853 | static inline size_t rtnl_fdb_nlmsg_size(void) |
| 2854 | { |
Sabrina Dubroca | f82ef3e | 2016-11-18 15:50:39 +0100 | [diff] [blame] | 2855 | return NLMSG_ALIGN(sizeof(struct ndmsg)) + |
| 2856 | nla_total_size(ETH_ALEN) + /* NDA_LLADDR */ |
| 2857 | nla_total_size(sizeof(u16)) + /* NDA_VLAN */ |
| 2858 | 0; |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 2859 | } |
| 2860 | |
Hubert Sokolowski | b337904 | 2015-12-15 13:20:30 +0000 | [diff] [blame] | 2861 | static void rtnl_fdb_notify(struct net_device *dev, u8 *addr, u16 vid, int type, |
| 2862 | u16 ndm_state) |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 2863 | { |
| 2864 | struct net *net = dev_net(dev); |
| 2865 | struct sk_buff *skb; |
| 2866 | int err = -ENOBUFS; |
| 2867 | |
| 2868 | skb = nlmsg_new(rtnl_fdb_nlmsg_size(), GFP_ATOMIC); |
| 2869 | if (!skb) |
| 2870 | goto errout; |
| 2871 | |
Hubert Sokolowski | 1e53d5b | 2015-04-09 12:16:17 +0000 | [diff] [blame] | 2872 | err = nlmsg_populate_fdb_fill(skb, dev, addr, vid, |
Hubert Sokolowski | b337904 | 2015-12-15 13:20:30 +0000 | [diff] [blame] | 2873 | 0, 0, type, NTF_SELF, 0, ndm_state); |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 2874 | if (err < 0) { |
| 2875 | kfree_skb(skb); |
| 2876 | goto errout; |
| 2877 | } |
| 2878 | |
| 2879 | rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC); |
| 2880 | return; |
| 2881 | errout: |
| 2882 | rtnl_set_sk_err(net, RTNLGRP_NEIGH, err); |
| 2883 | } |
| 2884 | |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 2885 | /** |
| 2886 | * ndo_dflt_fdb_add - default netdevice operation to add an FDB entry |
| 2887 | */ |
| 2888 | int ndo_dflt_fdb_add(struct ndmsg *ndm, |
| 2889 | struct nlattr *tb[], |
| 2890 | struct net_device *dev, |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 2891 | const unsigned char *addr, u16 vid, |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 2892 | u16 flags) |
| 2893 | { |
| 2894 | int err = -EINVAL; |
| 2895 | |
| 2896 | /* If aging addresses are supported device will need to |
| 2897 | * implement its own handler for this. |
| 2898 | */ |
| 2899 | if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) { |
| 2900 | pr_info("%s: FDB only supports static addresses\n", dev->name); |
| 2901 | return err; |
| 2902 | } |
| 2903 | |
Or Gerlitz | 65891fe | 2014-12-14 18:19:05 +0200 | [diff] [blame] | 2904 | if (vid) { |
| 2905 | pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name); |
| 2906 | return err; |
| 2907 | } |
| 2908 | |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 2909 | if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) |
| 2910 | err = dev_uc_add_excl(dev, addr); |
| 2911 | else if (is_multicast_ether_addr(addr)) |
| 2912 | err = dev_mc_add_excl(dev, addr); |
| 2913 | |
| 2914 | /* Only return duplicate errors if NLM_F_EXCL is set */ |
| 2915 | if (err == -EEXIST && !(flags & NLM_F_EXCL)) |
| 2916 | err = 0; |
| 2917 | |
| 2918 | return err; |
| 2919 | } |
| 2920 | EXPORT_SYMBOL(ndo_dflt_fdb_add); |
| 2921 | |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 2922 | static int fdb_vid_parse(struct nlattr *vlan_attr, u16 *p_vid) |
| 2923 | { |
| 2924 | u16 vid = 0; |
| 2925 | |
| 2926 | if (vlan_attr) { |
| 2927 | if (nla_len(vlan_attr) != sizeof(u16)) { |
| 2928 | pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid vlan\n"); |
| 2929 | return -EINVAL; |
| 2930 | } |
| 2931 | |
| 2932 | vid = nla_get_u16(vlan_attr); |
| 2933 | |
| 2934 | if (!vid || vid >= VLAN_VID_MASK) { |
| 2935 | pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid vlan id %d\n", |
| 2936 | vid); |
| 2937 | return -EINVAL; |
| 2938 | } |
| 2939 | } |
| 2940 | *p_vid = vid; |
| 2941 | return 0; |
| 2942 | } |
| 2943 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 2944 | static int rtnl_fdb_add(struct sk_buff *skb, struct nlmsghdr *nlh) |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2945 | { |
| 2946 | struct net *net = sock_net(skb->sk); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2947 | struct ndmsg *ndm; |
| 2948 | struct nlattr *tb[NDA_MAX+1]; |
| 2949 | struct net_device *dev; |
| 2950 | u8 *addr; |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 2951 | u16 vid; |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2952 | int err; |
| 2953 | |
| 2954 | err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL); |
| 2955 | if (err < 0) |
| 2956 | return err; |
| 2957 | |
| 2958 | ndm = nlmsg_data(nlh); |
| 2959 | if (ndm->ndm_ifindex == 0) { |
| 2960 | pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid ifindex\n"); |
| 2961 | return -EINVAL; |
| 2962 | } |
| 2963 | |
| 2964 | dev = __dev_get_by_index(net, ndm->ndm_ifindex); |
| 2965 | if (dev == NULL) { |
| 2966 | pr_info("PF_BRIDGE: RTM_NEWNEIGH with unknown ifindex\n"); |
| 2967 | return -ENODEV; |
| 2968 | } |
| 2969 | |
| 2970 | if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) { |
| 2971 | pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid address\n"); |
| 2972 | return -EINVAL; |
| 2973 | } |
| 2974 | |
| 2975 | addr = nla_data(tb[NDA_LLADDR]); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2976 | |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 2977 | err = fdb_vid_parse(tb[NDA_VLAN], &vid); |
| 2978 | if (err) |
| 2979 | return err; |
| 2980 | |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2981 | err = -EOPNOTSUPP; |
| 2982 | |
| 2983 | /* Support fdb on master device the net/bridge default case */ |
| 2984 | if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) && |
| 2985 | (dev->priv_flags & IFF_BRIDGE_PORT)) { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 2986 | struct net_device *br_dev = netdev_master_upper_dev_get(dev); |
| 2987 | const struct net_device_ops *ops = br_dev->netdev_ops; |
| 2988 | |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 2989 | err = ops->ndo_fdb_add(ndm, tb, dev, addr, vid, |
| 2990 | nlh->nlmsg_flags); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 2991 | if (err) |
| 2992 | goto out; |
| 2993 | else |
| 2994 | ndm->ndm_flags &= ~NTF_MASTER; |
| 2995 | } |
| 2996 | |
| 2997 | /* Embedded bridge, macvlan, and any other device support */ |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 2998 | if ((ndm->ndm_flags & NTF_SELF)) { |
| 2999 | if (dev->netdev_ops->ndo_fdb_add) |
| 3000 | err = dev->netdev_ops->ndo_fdb_add(ndm, tb, dev, addr, |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 3001 | vid, |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 3002 | nlh->nlmsg_flags); |
| 3003 | else |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 3004 | err = ndo_dflt_fdb_add(ndm, tb, dev, addr, vid, |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 3005 | nlh->nlmsg_flags); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3006 | |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 3007 | if (!err) { |
Hubert Sokolowski | b337904 | 2015-12-15 13:20:30 +0000 | [diff] [blame] | 3008 | rtnl_fdb_notify(dev, addr, vid, RTM_NEWNEIGH, |
| 3009 | ndm->ndm_state); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3010 | ndm->ndm_flags &= ~NTF_SELF; |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 3011 | } |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3012 | } |
| 3013 | out: |
| 3014 | return err; |
| 3015 | } |
| 3016 | |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 3017 | /** |
| 3018 | * ndo_dflt_fdb_del - default netdevice operation to delete an FDB entry |
| 3019 | */ |
| 3020 | int ndo_dflt_fdb_del(struct ndmsg *ndm, |
| 3021 | struct nlattr *tb[], |
| 3022 | struct net_device *dev, |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 3023 | const unsigned char *addr, u16 vid) |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 3024 | { |
Alexander Duyck | c8a89c4 | 2014-07-15 15:15:20 -0700 | [diff] [blame] | 3025 | int err = -EINVAL; |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 3026 | |
| 3027 | /* If aging addresses are supported device will need to |
| 3028 | * implement its own handler for this. |
| 3029 | */ |
Sridhar Samudrala | 6453599 | 2013-08-08 15:19:48 -0700 | [diff] [blame] | 3030 | if (!(ndm->ndm_state & NUD_PERMANENT)) { |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 3031 | pr_info("%s: FDB only supports static addresses\n", dev->name); |
Alexander Duyck | c8a89c4 | 2014-07-15 15:15:20 -0700 | [diff] [blame] | 3032 | return err; |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 3033 | } |
| 3034 | |
| 3035 | if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) |
| 3036 | err = dev_uc_del(dev, addr); |
| 3037 | else if (is_multicast_ether_addr(addr)) |
| 3038 | err = dev_mc_del(dev, addr); |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 3039 | |
| 3040 | return err; |
| 3041 | } |
| 3042 | EXPORT_SYMBOL(ndo_dflt_fdb_del); |
| 3043 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 3044 | static int rtnl_fdb_del(struct sk_buff *skb, struct nlmsghdr *nlh) |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3045 | { |
| 3046 | struct net *net = sock_net(skb->sk); |
| 3047 | struct ndmsg *ndm; |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 3048 | struct nlattr *tb[NDA_MAX+1]; |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3049 | struct net_device *dev; |
| 3050 | int err = -EINVAL; |
| 3051 | __u8 *addr; |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 3052 | u16 vid; |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3053 | |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 3054 | if (!netlink_capable(skb, CAP_NET_ADMIN)) |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 3055 | return -EPERM; |
| 3056 | |
| 3057 | err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL); |
| 3058 | if (err < 0) |
| 3059 | return err; |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3060 | |
| 3061 | ndm = nlmsg_data(nlh); |
| 3062 | if (ndm->ndm_ifindex == 0) { |
| 3063 | pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid ifindex\n"); |
| 3064 | return -EINVAL; |
| 3065 | } |
| 3066 | |
| 3067 | dev = __dev_get_by_index(net, ndm->ndm_ifindex); |
| 3068 | if (dev == NULL) { |
| 3069 | pr_info("PF_BRIDGE: RTM_DELNEIGH with unknown ifindex\n"); |
| 3070 | return -ENODEV; |
| 3071 | } |
| 3072 | |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 3073 | if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) { |
| 3074 | pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid address\n"); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3075 | return -EINVAL; |
| 3076 | } |
| 3077 | |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 3078 | addr = nla_data(tb[NDA_LLADDR]); |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 3079 | |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 3080 | err = fdb_vid_parse(tb[NDA_VLAN], &vid); |
| 3081 | if (err) |
| 3082 | return err; |
| 3083 | |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3084 | err = -EOPNOTSUPP; |
| 3085 | |
| 3086 | /* Support fdb on master device the net/bridge default case */ |
| 3087 | if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) && |
| 3088 | (dev->priv_flags & IFF_BRIDGE_PORT)) { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 3089 | struct net_device *br_dev = netdev_master_upper_dev_get(dev); |
| 3090 | const struct net_device_ops *ops = br_dev->netdev_ops; |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3091 | |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 3092 | if (ops->ndo_fdb_del) |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 3093 | err = ops->ndo_fdb_del(ndm, tb, dev, addr, vid); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3094 | |
| 3095 | if (err) |
| 3096 | goto out; |
| 3097 | else |
| 3098 | ndm->ndm_flags &= ~NTF_MASTER; |
| 3099 | } |
| 3100 | |
| 3101 | /* Embedded bridge, macvlan, and any other device support */ |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 3102 | if (ndm->ndm_flags & NTF_SELF) { |
| 3103 | if (dev->netdev_ops->ndo_fdb_del) |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 3104 | err = dev->netdev_ops->ndo_fdb_del(ndm, tb, dev, addr, |
| 3105 | vid); |
Vlad Yasevich | 090096b | 2013-03-06 15:39:42 +0000 | [diff] [blame] | 3106 | else |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 3107 | err = ndo_dflt_fdb_del(ndm, tb, dev, addr, vid); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3108 | |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 3109 | if (!err) { |
Hubert Sokolowski | b337904 | 2015-12-15 13:20:30 +0000 | [diff] [blame] | 3110 | rtnl_fdb_notify(dev, addr, vid, RTM_DELNEIGH, |
| 3111 | ndm->ndm_state); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3112 | ndm->ndm_flags &= ~NTF_SELF; |
John Fastabend | 3ff661c | 2012-04-15 06:44:14 +0000 | [diff] [blame] | 3113 | } |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3114 | } |
| 3115 | out: |
| 3116 | return err; |
| 3117 | } |
| 3118 | |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 3119 | static int nlmsg_populate_fdb(struct sk_buff *skb, |
| 3120 | struct netlink_callback *cb, |
| 3121 | struct net_device *dev, |
| 3122 | int *idx, |
| 3123 | struct netdev_hw_addr_list *list) |
| 3124 | { |
| 3125 | struct netdev_hw_addr *ha; |
| 3126 | int err; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 3127 | u32 portid, seq; |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 3128 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 3129 | portid = NETLINK_CB(cb->skb).portid; |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 3130 | seq = cb->nlh->nlmsg_seq; |
| 3131 | |
| 3132 | list_for_each_entry(ha, &list->list, list) { |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 3133 | if (*idx < cb->args[2]) |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 3134 | goto skip; |
| 3135 | |
Hubert Sokolowski | 1e53d5b | 2015-04-09 12:16:17 +0000 | [diff] [blame] | 3136 | err = nlmsg_populate_fdb_fill(skb, dev, ha->addr, 0, |
John Fastabend | a7a558f | 2012-11-01 16:23:10 +0000 | [diff] [blame] | 3137 | portid, seq, |
Nicolas Dichtel | 1c104a6 | 2014-03-19 17:47:49 +0100 | [diff] [blame] | 3138 | RTM_NEWNEIGH, NTF_SELF, |
Hubert Sokolowski | b337904 | 2015-12-15 13:20:30 +0000 | [diff] [blame] | 3139 | NLM_F_MULTI, NUD_PERMANENT); |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 3140 | if (err < 0) |
| 3141 | return err; |
| 3142 | skip: |
| 3143 | *idx += 1; |
| 3144 | } |
| 3145 | return 0; |
| 3146 | } |
| 3147 | |
| 3148 | /** |
Ben Hutchings | 2c53040 | 2012-07-10 10:55:09 +0000 | [diff] [blame] | 3149 | * ndo_dflt_fdb_dump - default netdevice operation to dump an FDB table. |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 3150 | * @nlh: netlink message header |
| 3151 | * @dev: netdevice |
| 3152 | * |
| 3153 | * Default netdevice operation to dump the existing unicast address list. |
John Fastabend | 91f3e7b | 2013-03-29 08:18:37 +0000 | [diff] [blame] | 3154 | * Returns number of addresses from list put in skb. |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 3155 | */ |
| 3156 | int ndo_dflt_fdb_dump(struct sk_buff *skb, |
| 3157 | struct netlink_callback *cb, |
| 3158 | struct net_device *dev, |
Jamal Hadi Salim | 5d5eacb | 2014-07-10 07:01:58 -0400 | [diff] [blame] | 3159 | struct net_device *filter_dev, |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 3160 | int *idx) |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 3161 | { |
| 3162 | int err; |
| 3163 | |
| 3164 | netif_addr_lock_bh(dev); |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 3165 | err = nlmsg_populate_fdb(skb, cb, dev, idx, &dev->uc); |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 3166 | if (err) |
| 3167 | goto out; |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 3168 | nlmsg_populate_fdb(skb, cb, dev, idx, &dev->mc); |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 3169 | out: |
| 3170 | netif_addr_unlock_bh(dev); |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 3171 | return err; |
John Fastabend | d83b060 | 2012-04-15 06:44:08 +0000 | [diff] [blame] | 3172 | } |
| 3173 | EXPORT_SYMBOL(ndo_dflt_fdb_dump); |
| 3174 | |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3175 | static int rtnl_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb) |
| 3176 | { |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3177 | struct net_device *dev; |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 3178 | struct nlattr *tb[IFLA_MAX+1]; |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 3179 | struct net_device *br_dev = NULL; |
| 3180 | const struct net_device_ops *ops = NULL; |
| 3181 | const struct net_device_ops *cops = NULL; |
| 3182 | struct ifinfomsg *ifm = nlmsg_data(cb->nlh); |
| 3183 | struct net *net = sock_net(skb->sk); |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 3184 | struct hlist_head *head; |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 3185 | int brport_idx = 0; |
| 3186 | int br_idx = 0; |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 3187 | int h, s_h; |
| 3188 | int idx = 0, s_idx; |
| 3189 | int err = 0; |
| 3190 | int fidx = 0; |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3191 | |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 3192 | if (nlmsg_parse(cb->nlh, sizeof(struct ifinfomsg), tb, IFLA_MAX, |
| 3193 | ifla_policy) == 0) { |
| 3194 | if (tb[IFLA_MASTER]) |
| 3195 | br_idx = nla_get_u32(tb[IFLA_MASTER]); |
| 3196 | } |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3197 | |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 3198 | brport_idx = ifm->ifi_index; |
| 3199 | |
| 3200 | if (br_idx) { |
| 3201 | br_dev = __dev_get_by_index(net, br_idx); |
| 3202 | if (!br_dev) |
| 3203 | return -ENODEV; |
| 3204 | |
| 3205 | ops = br_dev->netdev_ops; |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 3206 | } |
| 3207 | |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 3208 | s_h = cb->args[0]; |
| 3209 | s_idx = cb->args[1]; |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 3210 | |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 3211 | for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { |
| 3212 | idx = 0; |
| 3213 | head = &net->dev_index_head[h]; |
| 3214 | hlist_for_each_entry(dev, head, index_hlist) { |
| 3215 | |
| 3216 | if (brport_idx && (dev->ifindex != brport_idx)) |
| 3217 | continue; |
| 3218 | |
| 3219 | if (!br_idx) { /* user did not specify a specific bridge */ |
| 3220 | if (dev->priv_flags & IFF_BRIDGE_PORT) { |
| 3221 | br_dev = netdev_master_upper_dev_get(dev); |
| 3222 | cops = br_dev->netdev_ops; |
| 3223 | } |
| 3224 | } else { |
| 3225 | if (dev != br_dev && |
| 3226 | !(dev->priv_flags & IFF_BRIDGE_PORT)) |
| 3227 | continue; |
| 3228 | |
| 3229 | if (br_dev != netdev_master_upper_dev_get(dev) && |
| 3230 | !(dev->priv_flags & IFF_EBRIDGE)) |
| 3231 | continue; |
| 3232 | cops = ops; |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 3233 | } |
| 3234 | |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 3235 | if (idx < s_idx) |
| 3236 | goto cont; |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 3237 | |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 3238 | if (dev->priv_flags & IFF_BRIDGE_PORT) { |
| 3239 | if (cops && cops->ndo_fdb_dump) { |
| 3240 | err = cops->ndo_fdb_dump(skb, cb, |
| 3241 | br_dev, dev, |
| 3242 | &fidx); |
| 3243 | if (err == -EMSGSIZE) |
| 3244 | goto out; |
| 3245 | } |
| 3246 | } |
Jamal Hadi Salim | 5e6d243 | 2014-07-10 07:01:59 -0400 | [diff] [blame] | 3247 | |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 3248 | if (dev->netdev_ops->ndo_fdb_dump) |
| 3249 | err = dev->netdev_ops->ndo_fdb_dump(skb, cb, |
| 3250 | dev, NULL, |
| 3251 | &fidx); |
| 3252 | else |
| 3253 | err = ndo_dflt_fdb_dump(skb, cb, dev, NULL, |
| 3254 | &fidx); |
| 3255 | if (err == -EMSGSIZE) |
| 3256 | goto out; |
| 3257 | |
| 3258 | cops = NULL; |
| 3259 | |
| 3260 | /* reset fdb offset to 0 for rest of the interfaces */ |
| 3261 | cb->args[2] = 0; |
| 3262 | fidx = 0; |
| 3263 | cont: |
| 3264 | idx++; |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3265 | } |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3266 | } |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3267 | |
Roopa Prabhu | d297653 | 2016-08-30 21:56:45 -0700 | [diff] [blame] | 3268 | out: |
| 3269 | cb->args[0] = h; |
| 3270 | cb->args[1] = idx; |
| 3271 | cb->args[2] = fidx; |
| 3272 | |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 3273 | return skb->len; |
| 3274 | } |
| 3275 | |
Scott Feldman | 2c3c031 | 2014-11-28 14:34:25 +0100 | [diff] [blame] | 3276 | static int brport_nla_put_flag(struct sk_buff *skb, u32 flags, u32 mask, |
| 3277 | unsigned int attrnum, unsigned int flag) |
| 3278 | { |
| 3279 | if (mask & flag) |
| 3280 | return nla_put_u8(skb, attrnum, !!(flags & flag)); |
| 3281 | return 0; |
| 3282 | } |
| 3283 | |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 3284 | int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq, |
Scott Feldman | 2c3c031 | 2014-11-28 14:34:25 +0100 | [diff] [blame] | 3285 | struct net_device *dev, u16 mode, |
Scott Feldman | 7d4f8d8 | 2015-06-22 00:27:17 -0700 | [diff] [blame] | 3286 | u32 flags, u32 mask, int nlflags, |
| 3287 | u32 filter_mask, |
| 3288 | int (*vlan_fill)(struct sk_buff *skb, |
| 3289 | struct net_device *dev, |
| 3290 | u32 filter_mask)) |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 3291 | { |
| 3292 | struct nlmsghdr *nlh; |
| 3293 | struct ifinfomsg *ifm; |
| 3294 | struct nlattr *br_afspec; |
Scott Feldman | 2c3c031 | 2014-11-28 14:34:25 +0100 | [diff] [blame] | 3295 | struct nlattr *protinfo; |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 3296 | u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN; |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 3297 | struct net_device *br_dev = netdev_master_upper_dev_get(dev); |
Scott Feldman | 7d4f8d8 | 2015-06-22 00:27:17 -0700 | [diff] [blame] | 3298 | int err = 0; |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 3299 | |
Nicolas Dichtel | 46c264d | 2015-04-28 18:33:49 +0200 | [diff] [blame] | 3300 | nlh = nlmsg_put(skb, pid, seq, RTM_NEWLINK, sizeof(*ifm), nlflags); |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 3301 | if (nlh == NULL) |
| 3302 | return -EMSGSIZE; |
| 3303 | |
| 3304 | ifm = nlmsg_data(nlh); |
| 3305 | ifm->ifi_family = AF_BRIDGE; |
| 3306 | ifm->__ifi_pad = 0; |
| 3307 | ifm->ifi_type = dev->type; |
| 3308 | ifm->ifi_index = dev->ifindex; |
| 3309 | ifm->ifi_flags = dev_get_flags(dev); |
| 3310 | ifm->ifi_change = 0; |
| 3311 | |
| 3312 | |
| 3313 | if (nla_put_string(skb, IFLA_IFNAME, dev->name) || |
| 3314 | nla_put_u32(skb, IFLA_MTU, dev->mtu) || |
| 3315 | nla_put_u8(skb, IFLA_OPERSTATE, operstate) || |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 3316 | (br_dev && |
| 3317 | nla_put_u32(skb, IFLA_MASTER, br_dev->ifindex)) || |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 3318 | (dev->addr_len && |
| 3319 | nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) || |
Nicolas Dichtel | a54acb3 | 2015-04-02 17:07:00 +0200 | [diff] [blame] | 3320 | (dev->ifindex != dev_get_iflink(dev) && |
| 3321 | nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev)))) |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 3322 | goto nla_put_failure; |
| 3323 | |
| 3324 | br_afspec = nla_nest_start(skb, IFLA_AF_SPEC); |
| 3325 | if (!br_afspec) |
| 3326 | goto nla_put_failure; |
| 3327 | |
Roopa Prabhu | 1d460b9 | 2014-12-08 14:04:20 -0800 | [diff] [blame] | 3328 | if (nla_put_u16(skb, IFLA_BRIDGE_FLAGS, BRIDGE_FLAGS_SELF)) { |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 3329 | nla_nest_cancel(skb, br_afspec); |
| 3330 | goto nla_put_failure; |
| 3331 | } |
Roopa Prabhu | 1d460b9 | 2014-12-08 14:04:20 -0800 | [diff] [blame] | 3332 | |
| 3333 | if (mode != BRIDGE_MODE_UNDEF) { |
| 3334 | if (nla_put_u16(skb, IFLA_BRIDGE_MODE, mode)) { |
| 3335 | nla_nest_cancel(skb, br_afspec); |
| 3336 | goto nla_put_failure; |
| 3337 | } |
| 3338 | } |
Scott Feldman | 7d4f8d8 | 2015-06-22 00:27:17 -0700 | [diff] [blame] | 3339 | if (vlan_fill) { |
| 3340 | err = vlan_fill(skb, dev, filter_mask); |
| 3341 | if (err) { |
| 3342 | nla_nest_cancel(skb, br_afspec); |
| 3343 | goto nla_put_failure; |
| 3344 | } |
| 3345 | } |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 3346 | nla_nest_end(skb, br_afspec); |
| 3347 | |
Scott Feldman | 2c3c031 | 2014-11-28 14:34:25 +0100 | [diff] [blame] | 3348 | protinfo = nla_nest_start(skb, IFLA_PROTINFO | NLA_F_NESTED); |
| 3349 | if (!protinfo) |
| 3350 | goto nla_put_failure; |
| 3351 | |
| 3352 | if (brport_nla_put_flag(skb, flags, mask, |
| 3353 | IFLA_BRPORT_MODE, BR_HAIRPIN_MODE) || |
| 3354 | brport_nla_put_flag(skb, flags, mask, |
| 3355 | IFLA_BRPORT_GUARD, BR_BPDU_GUARD) || |
| 3356 | brport_nla_put_flag(skb, flags, mask, |
| 3357 | IFLA_BRPORT_FAST_LEAVE, |
| 3358 | BR_MULTICAST_FAST_LEAVE) || |
| 3359 | brport_nla_put_flag(skb, flags, mask, |
| 3360 | IFLA_BRPORT_PROTECT, BR_ROOT_BLOCK) || |
| 3361 | brport_nla_put_flag(skb, flags, mask, |
| 3362 | IFLA_BRPORT_LEARNING, BR_LEARNING) || |
| 3363 | brport_nla_put_flag(skb, flags, mask, |
| 3364 | IFLA_BRPORT_LEARNING_SYNC, BR_LEARNING_SYNC) || |
| 3365 | brport_nla_put_flag(skb, flags, mask, |
| 3366 | IFLA_BRPORT_UNICAST_FLOOD, BR_FLOOD) || |
| 3367 | brport_nla_put_flag(skb, flags, mask, |
| 3368 | IFLA_BRPORT_PROXYARP, BR_PROXYARP)) { |
| 3369 | nla_nest_cancel(skb, protinfo); |
| 3370 | goto nla_put_failure; |
| 3371 | } |
| 3372 | |
| 3373 | nla_nest_end(skb, protinfo); |
| 3374 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 3375 | nlmsg_end(skb, nlh); |
| 3376 | return 0; |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 3377 | nla_put_failure: |
| 3378 | nlmsg_cancel(skb, nlh); |
Scott Feldman | 7d4f8d8 | 2015-06-22 00:27:17 -0700 | [diff] [blame] | 3379 | return err ? err : -EMSGSIZE; |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 3380 | } |
Scott Feldman | 7d4f8d8 | 2015-06-22 00:27:17 -0700 | [diff] [blame] | 3381 | EXPORT_SYMBOL_GPL(ndo_dflt_bridge_getlink); |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 3382 | |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 3383 | static int rtnl_bridge_getlink(struct sk_buff *skb, struct netlink_callback *cb) |
| 3384 | { |
| 3385 | struct net *net = sock_net(skb->sk); |
| 3386 | struct net_device *dev; |
| 3387 | int idx = 0; |
| 3388 | u32 portid = NETLINK_CB(cb->skb).portid; |
| 3389 | u32 seq = cb->nlh->nlmsg_seq; |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 3390 | u32 filter_mask = 0; |
Roopa Prabhu | d64f69b | 2015-09-15 14:44:29 -0700 | [diff] [blame] | 3391 | int err; |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 3392 | |
Thomas Graf | aa68c20 | 2014-11-26 13:42:20 +0100 | [diff] [blame] | 3393 | if (nlmsg_len(cb->nlh) > sizeof(struct ifinfomsg)) { |
| 3394 | struct nlattr *extfilt; |
| 3395 | |
| 3396 | extfilt = nlmsg_find_attr(cb->nlh, sizeof(struct ifinfomsg), |
| 3397 | IFLA_EXT_MASK); |
| 3398 | if (extfilt) { |
| 3399 | if (nla_len(extfilt) < sizeof(filter_mask)) |
| 3400 | return -EINVAL; |
| 3401 | |
| 3402 | filter_mask = nla_get_u32(extfilt); |
| 3403 | } |
| 3404 | } |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 3405 | |
| 3406 | rcu_read_lock(); |
| 3407 | for_each_netdev_rcu(net, dev) { |
| 3408 | const struct net_device_ops *ops = dev->netdev_ops; |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 3409 | struct net_device *br_dev = netdev_master_upper_dev_get(dev); |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 3410 | |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 3411 | if (br_dev && br_dev->netdev_ops->ndo_bridge_getlink) { |
Roopa Prabhu | d64f69b | 2015-09-15 14:44:29 -0700 | [diff] [blame] | 3412 | if (idx >= cb->args[0]) { |
| 3413 | err = br_dev->netdev_ops->ndo_bridge_getlink( |
| 3414 | skb, portid, seq, dev, |
| 3415 | filter_mask, NLM_F_MULTI); |
| 3416 | if (err < 0 && err != -EOPNOTSUPP) |
| 3417 | break; |
| 3418 | } |
Ben Hutchings | 25b1e67 | 2012-11-02 12:56:52 +0000 | [diff] [blame] | 3419 | idx++; |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 3420 | } |
| 3421 | |
| 3422 | if (ops->ndo_bridge_getlink) { |
Roopa Prabhu | d64f69b | 2015-09-15 14:44:29 -0700 | [diff] [blame] | 3423 | if (idx >= cb->args[0]) { |
| 3424 | err = ops->ndo_bridge_getlink(skb, portid, |
| 3425 | seq, dev, |
| 3426 | filter_mask, |
| 3427 | NLM_F_MULTI); |
| 3428 | if (err < 0 && err != -EOPNOTSUPP) |
| 3429 | break; |
| 3430 | } |
Ben Hutchings | 25b1e67 | 2012-11-02 12:56:52 +0000 | [diff] [blame] | 3431 | idx++; |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 3432 | } |
| 3433 | } |
| 3434 | rcu_read_unlock(); |
| 3435 | cb->args[0] = idx; |
| 3436 | |
| 3437 | return skb->len; |
| 3438 | } |
| 3439 | |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3440 | static inline size_t bridge_nlmsg_size(void) |
| 3441 | { |
| 3442 | return NLMSG_ALIGN(sizeof(struct ifinfomsg)) |
| 3443 | + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */ |
| 3444 | + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */ |
| 3445 | + nla_total_size(sizeof(u32)) /* IFLA_MASTER */ |
| 3446 | + nla_total_size(sizeof(u32)) /* IFLA_MTU */ |
| 3447 | + nla_total_size(sizeof(u32)) /* IFLA_LINK */ |
| 3448 | + nla_total_size(sizeof(u32)) /* IFLA_OPERSTATE */ |
| 3449 | + nla_total_size(sizeof(u8)) /* IFLA_PROTINFO */ |
| 3450 | + nla_total_size(sizeof(struct nlattr)) /* IFLA_AF_SPEC */ |
| 3451 | + nla_total_size(sizeof(u16)) /* IFLA_BRIDGE_FLAGS */ |
| 3452 | + nla_total_size(sizeof(u16)); /* IFLA_BRIDGE_MODE */ |
| 3453 | } |
| 3454 | |
Roopa Prabhu | 02dba43 | 2015-01-14 20:02:25 -0800 | [diff] [blame] | 3455 | static int rtnl_bridge_notify(struct net_device *dev) |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3456 | { |
| 3457 | struct net *net = dev_net(dev); |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3458 | struct sk_buff *skb; |
| 3459 | int err = -EOPNOTSUPP; |
| 3460 | |
Roopa Prabhu | 02dba43 | 2015-01-14 20:02:25 -0800 | [diff] [blame] | 3461 | if (!dev->netdev_ops->ndo_bridge_getlink) |
| 3462 | return 0; |
| 3463 | |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3464 | skb = nlmsg_new(bridge_nlmsg_size(), GFP_ATOMIC); |
| 3465 | if (!skb) { |
| 3466 | err = -ENOMEM; |
| 3467 | goto errout; |
| 3468 | } |
| 3469 | |
Nicolas Dichtel | 46c264d | 2015-04-28 18:33:49 +0200 | [diff] [blame] | 3470 | err = dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0, 0); |
Roopa Prabhu | 02dba43 | 2015-01-14 20:02:25 -0800 | [diff] [blame] | 3471 | if (err < 0) |
| 3472 | goto errout; |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3473 | |
Roopa Prabhu | 59ccaaa | 2015-01-28 16:23:11 -0800 | [diff] [blame] | 3474 | if (!skb->len) |
| 3475 | goto errout; |
| 3476 | |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3477 | rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC); |
| 3478 | return 0; |
| 3479 | errout: |
| 3480 | WARN_ON(err == -EMSGSIZE); |
| 3481 | kfree_skb(skb); |
Roopa Prabhu | 59ccaaa | 2015-01-28 16:23:11 -0800 | [diff] [blame] | 3482 | if (err) |
| 3483 | rtnl_set_sk_err(net, RTNLGRP_LINK, err); |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3484 | return err; |
| 3485 | } |
| 3486 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 3487 | static int rtnl_bridge_setlink(struct sk_buff *skb, struct nlmsghdr *nlh) |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 3488 | { |
| 3489 | struct net *net = sock_net(skb->sk); |
| 3490 | struct ifinfomsg *ifm; |
| 3491 | struct net_device *dev; |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3492 | struct nlattr *br_spec, *attr = NULL; |
| 3493 | int rem, err = -EOPNOTSUPP; |
Rosen, Rami | 4de8b41 | 2015-01-19 11:45:04 +0200 | [diff] [blame] | 3494 | u16 flags = 0; |
John Fastabend | c38e01b | 2012-11-02 16:32:36 +0000 | [diff] [blame] | 3495 | bool have_flags = false; |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 3496 | |
| 3497 | if (nlmsg_len(nlh) < sizeof(*ifm)) |
| 3498 | return -EINVAL; |
| 3499 | |
| 3500 | ifm = nlmsg_data(nlh); |
| 3501 | if (ifm->ifi_family != AF_BRIDGE) |
| 3502 | return -EPFNOSUPPORT; |
| 3503 | |
| 3504 | dev = __dev_get_by_index(net, ifm->ifi_index); |
| 3505 | if (!dev) { |
| 3506 | pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n"); |
| 3507 | return -ENODEV; |
| 3508 | } |
| 3509 | |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3510 | br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC); |
| 3511 | if (br_spec) { |
| 3512 | nla_for_each_nested(attr, br_spec, rem) { |
| 3513 | if (nla_type(attr) == IFLA_BRIDGE_FLAGS) { |
Thomas Graf | 6e8d1c5 | 2014-11-26 13:42:16 +0100 | [diff] [blame] | 3514 | if (nla_len(attr) < sizeof(flags)) |
| 3515 | return -EINVAL; |
| 3516 | |
John Fastabend | c38e01b | 2012-11-02 16:32:36 +0000 | [diff] [blame] | 3517 | have_flags = true; |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3518 | flags = nla_get_u16(attr); |
| 3519 | break; |
| 3520 | } |
| 3521 | } |
| 3522 | } |
| 3523 | |
| 3524 | if (!flags || (flags & BRIDGE_FLAGS_MASTER)) { |
Jiri Pirko | 898e506 | 2013-01-03 22:48:52 +0000 | [diff] [blame] | 3525 | struct net_device *br_dev = netdev_master_upper_dev_get(dev); |
| 3526 | |
| 3527 | if (!br_dev || !br_dev->netdev_ops->ndo_bridge_setlink) { |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3528 | err = -EOPNOTSUPP; |
| 3529 | goto out; |
| 3530 | } |
| 3531 | |
Roopa Prabhu | add511b | 2015-01-29 22:40:12 -0800 | [diff] [blame] | 3532 | err = br_dev->netdev_ops->ndo_bridge_setlink(dev, nlh, flags); |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 3533 | if (err) |
| 3534 | goto out; |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3535 | |
| 3536 | flags &= ~BRIDGE_FLAGS_MASTER; |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 3537 | } |
| 3538 | |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3539 | if ((flags & BRIDGE_FLAGS_SELF)) { |
| 3540 | if (!dev->netdev_ops->ndo_bridge_setlink) |
| 3541 | err = -EOPNOTSUPP; |
| 3542 | else |
Roopa Prabhu | add511b | 2015-01-29 22:40:12 -0800 | [diff] [blame] | 3543 | err = dev->netdev_ops->ndo_bridge_setlink(dev, nlh, |
| 3544 | flags); |
Roopa Prabhu | 02dba43 | 2015-01-14 20:02:25 -0800 | [diff] [blame] | 3545 | if (!err) { |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3546 | flags &= ~BRIDGE_FLAGS_SELF; |
Roopa Prabhu | 02dba43 | 2015-01-14 20:02:25 -0800 | [diff] [blame] | 3547 | |
| 3548 | /* Generate event to notify upper layer of bridge |
| 3549 | * change |
| 3550 | */ |
| 3551 | err = rtnl_bridge_notify(dev); |
| 3552 | } |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3553 | } |
| 3554 | |
John Fastabend | c38e01b | 2012-11-02 16:32:36 +0000 | [diff] [blame] | 3555 | if (have_flags) |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 3556 | memcpy(nla_data(attr), &flags, sizeof(flags)); |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 3557 | out: |
| 3558 | return err; |
| 3559 | } |
| 3560 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 3561 | static int rtnl_bridge_dellink(struct sk_buff *skb, struct nlmsghdr *nlh) |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 3562 | { |
| 3563 | struct net *net = sock_net(skb->sk); |
| 3564 | struct ifinfomsg *ifm; |
| 3565 | struct net_device *dev; |
| 3566 | struct nlattr *br_spec, *attr = NULL; |
| 3567 | int rem, err = -EOPNOTSUPP; |
Rosen, Rami | 4de8b41 | 2015-01-19 11:45:04 +0200 | [diff] [blame] | 3568 | u16 flags = 0; |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 3569 | bool have_flags = false; |
| 3570 | |
| 3571 | if (nlmsg_len(nlh) < sizeof(*ifm)) |
| 3572 | return -EINVAL; |
| 3573 | |
| 3574 | ifm = nlmsg_data(nlh); |
| 3575 | if (ifm->ifi_family != AF_BRIDGE) |
| 3576 | return -EPFNOSUPPORT; |
| 3577 | |
| 3578 | dev = __dev_get_by_index(net, ifm->ifi_index); |
| 3579 | if (!dev) { |
| 3580 | pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n"); |
| 3581 | return -ENODEV; |
| 3582 | } |
| 3583 | |
| 3584 | br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC); |
| 3585 | if (br_spec) { |
| 3586 | nla_for_each_nested(attr, br_spec, rem) { |
| 3587 | if (nla_type(attr) == IFLA_BRIDGE_FLAGS) { |
Thomas Graf | 6e8d1c5 | 2014-11-26 13:42:16 +0100 | [diff] [blame] | 3588 | if (nla_len(attr) < sizeof(flags)) |
| 3589 | return -EINVAL; |
| 3590 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 3591 | have_flags = true; |
| 3592 | flags = nla_get_u16(attr); |
| 3593 | break; |
| 3594 | } |
| 3595 | } |
| 3596 | } |
| 3597 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 3598 | if (!flags || (flags & BRIDGE_FLAGS_MASTER)) { |
| 3599 | struct net_device *br_dev = netdev_master_upper_dev_get(dev); |
| 3600 | |
| 3601 | if (!br_dev || !br_dev->netdev_ops->ndo_bridge_dellink) { |
| 3602 | err = -EOPNOTSUPP; |
| 3603 | goto out; |
| 3604 | } |
| 3605 | |
Roopa Prabhu | add511b | 2015-01-29 22:40:12 -0800 | [diff] [blame] | 3606 | err = br_dev->netdev_ops->ndo_bridge_dellink(dev, nlh, flags); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 3607 | if (err) |
| 3608 | goto out; |
| 3609 | |
| 3610 | flags &= ~BRIDGE_FLAGS_MASTER; |
| 3611 | } |
| 3612 | |
| 3613 | if ((flags & BRIDGE_FLAGS_SELF)) { |
| 3614 | if (!dev->netdev_ops->ndo_bridge_dellink) |
| 3615 | err = -EOPNOTSUPP; |
| 3616 | else |
Roopa Prabhu | add511b | 2015-01-29 22:40:12 -0800 | [diff] [blame] | 3617 | err = dev->netdev_ops->ndo_bridge_dellink(dev, nlh, |
| 3618 | flags); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 3619 | |
Roopa Prabhu | 02dba43 | 2015-01-14 20:02:25 -0800 | [diff] [blame] | 3620 | if (!err) { |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 3621 | flags &= ~BRIDGE_FLAGS_SELF; |
Roopa Prabhu | 02dba43 | 2015-01-14 20:02:25 -0800 | [diff] [blame] | 3622 | |
| 3623 | /* Generate event to notify upper layer of bridge |
| 3624 | * change |
| 3625 | */ |
| 3626 | err = rtnl_bridge_notify(dev); |
| 3627 | } |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 3628 | } |
| 3629 | |
| 3630 | if (have_flags) |
| 3631 | memcpy(nla_data(attr), &flags, sizeof(flags)); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 3632 | out: |
| 3633 | return err; |
| 3634 | } |
| 3635 | |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3636 | static bool stats_attr_valid(unsigned int mask, int attrid, int idxattr) |
| 3637 | { |
| 3638 | return (mask & IFLA_STATS_FILTER_BIT(attrid)) && |
| 3639 | (!idxattr || idxattr == attrid); |
| 3640 | } |
| 3641 | |
Nogah Frankel | 69ae6ad | 2016-09-16 15:05:37 +0200 | [diff] [blame] | 3642 | #define IFLA_OFFLOAD_XSTATS_FIRST (IFLA_OFFLOAD_XSTATS_UNSPEC + 1) |
| 3643 | static int rtnl_get_offload_stats_attr_size(int attr_id) |
| 3644 | { |
| 3645 | switch (attr_id) { |
| 3646 | case IFLA_OFFLOAD_XSTATS_CPU_HIT: |
| 3647 | return sizeof(struct rtnl_link_stats64); |
| 3648 | } |
| 3649 | |
| 3650 | return 0; |
| 3651 | } |
| 3652 | |
| 3653 | static int rtnl_get_offload_stats(struct sk_buff *skb, struct net_device *dev, |
| 3654 | int *prividx) |
| 3655 | { |
| 3656 | struct nlattr *attr = NULL; |
| 3657 | int attr_id, size; |
| 3658 | void *attr_data; |
| 3659 | int err; |
| 3660 | |
| 3661 | if (!(dev->netdev_ops && dev->netdev_ops->ndo_has_offload_stats && |
| 3662 | dev->netdev_ops->ndo_get_offload_stats)) |
| 3663 | return -ENODATA; |
| 3664 | |
| 3665 | for (attr_id = IFLA_OFFLOAD_XSTATS_FIRST; |
| 3666 | attr_id <= IFLA_OFFLOAD_XSTATS_MAX; attr_id++) { |
| 3667 | if (attr_id < *prividx) |
| 3668 | continue; |
| 3669 | |
| 3670 | size = rtnl_get_offload_stats_attr_size(attr_id); |
| 3671 | if (!size) |
| 3672 | continue; |
| 3673 | |
| 3674 | if (!dev->netdev_ops->ndo_has_offload_stats(attr_id)) |
| 3675 | continue; |
| 3676 | |
| 3677 | attr = nla_reserve_64bit(skb, attr_id, size, |
| 3678 | IFLA_OFFLOAD_XSTATS_UNSPEC); |
| 3679 | if (!attr) |
| 3680 | goto nla_put_failure; |
| 3681 | |
| 3682 | attr_data = nla_data(attr); |
| 3683 | memset(attr_data, 0, size); |
| 3684 | err = dev->netdev_ops->ndo_get_offload_stats(attr_id, dev, |
| 3685 | attr_data); |
| 3686 | if (err) |
| 3687 | goto get_offload_stats_failure; |
| 3688 | } |
| 3689 | |
| 3690 | if (!attr) |
| 3691 | return -ENODATA; |
| 3692 | |
| 3693 | *prividx = 0; |
| 3694 | return 0; |
| 3695 | |
| 3696 | nla_put_failure: |
| 3697 | err = -EMSGSIZE; |
| 3698 | get_offload_stats_failure: |
| 3699 | *prividx = attr_id; |
| 3700 | return err; |
| 3701 | } |
| 3702 | |
| 3703 | static int rtnl_get_offload_stats_size(const struct net_device *dev) |
| 3704 | { |
| 3705 | int nla_size = 0; |
| 3706 | int attr_id; |
| 3707 | int size; |
| 3708 | |
| 3709 | if (!(dev->netdev_ops && dev->netdev_ops->ndo_has_offload_stats && |
| 3710 | dev->netdev_ops->ndo_get_offload_stats)) |
| 3711 | return 0; |
| 3712 | |
| 3713 | for (attr_id = IFLA_OFFLOAD_XSTATS_FIRST; |
| 3714 | attr_id <= IFLA_OFFLOAD_XSTATS_MAX; attr_id++) { |
| 3715 | if (!dev->netdev_ops->ndo_has_offload_stats(attr_id)) |
| 3716 | continue; |
| 3717 | size = rtnl_get_offload_stats_attr_size(attr_id); |
| 3718 | nla_size += nla_total_size_64bit(size); |
| 3719 | } |
| 3720 | |
| 3721 | if (nla_size != 0) |
| 3722 | nla_size += nla_total_size(0); |
| 3723 | |
| 3724 | return nla_size; |
| 3725 | } |
| 3726 | |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3727 | static int rtnl_fill_statsinfo(struct sk_buff *skb, struct net_device *dev, |
| 3728 | int type, u32 pid, u32 seq, u32 change, |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3729 | unsigned int flags, unsigned int filter_mask, |
| 3730 | int *idxattr, int *prividx) |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3731 | { |
| 3732 | struct if_stats_msg *ifsm; |
| 3733 | struct nlmsghdr *nlh; |
| 3734 | struct nlattr *attr; |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3735 | int s_prividx = *prividx; |
Nogah Frankel | 69ae6ad | 2016-09-16 15:05:37 +0200 | [diff] [blame] | 3736 | int err; |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3737 | |
| 3738 | ASSERT_RTNL(); |
| 3739 | |
| 3740 | nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifsm), flags); |
| 3741 | if (!nlh) |
| 3742 | return -EMSGSIZE; |
| 3743 | |
| 3744 | ifsm = nlmsg_data(nlh); |
| 3745 | ifsm->ifindex = dev->ifindex; |
| 3746 | ifsm->filter_mask = filter_mask; |
| 3747 | |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3748 | if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_64, *idxattr)) { |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3749 | struct rtnl_link_stats64 *sp; |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3750 | |
Nicolas Dichtel | 58414d3 | 2016-04-21 18:58:25 +0200 | [diff] [blame] | 3751 | attr = nla_reserve_64bit(skb, IFLA_STATS_LINK_64, |
| 3752 | sizeof(struct rtnl_link_stats64), |
| 3753 | IFLA_STATS_UNSPEC); |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3754 | if (!attr) |
| 3755 | goto nla_put_failure; |
| 3756 | |
| 3757 | sp = nla_data(attr); |
| 3758 | dev_get_stats(dev, sp); |
| 3759 | } |
| 3760 | |
Nikolay Aleksandrov | 97a47fa | 2016-04-30 10:25:27 +0200 | [diff] [blame] | 3761 | if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_XSTATS, *idxattr)) { |
| 3762 | const struct rtnl_link_ops *ops = dev->rtnl_link_ops; |
| 3763 | |
| 3764 | if (ops && ops->fill_linkxstats) { |
Nikolay Aleksandrov | 97a47fa | 2016-04-30 10:25:27 +0200 | [diff] [blame] | 3765 | *idxattr = IFLA_STATS_LINK_XSTATS; |
| 3766 | attr = nla_nest_start(skb, |
| 3767 | IFLA_STATS_LINK_XSTATS); |
| 3768 | if (!attr) |
| 3769 | goto nla_put_failure; |
| 3770 | |
Nikolay Aleksandrov | 80e73cc | 2016-06-28 16:57:05 +0200 | [diff] [blame] | 3771 | err = ops->fill_linkxstats(skb, dev, prividx, *idxattr); |
| 3772 | nla_nest_end(skb, attr); |
| 3773 | if (err) |
| 3774 | goto nla_put_failure; |
| 3775 | *idxattr = 0; |
| 3776 | } |
| 3777 | } |
| 3778 | |
| 3779 | if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_XSTATS_SLAVE, |
| 3780 | *idxattr)) { |
| 3781 | const struct rtnl_link_ops *ops = NULL; |
| 3782 | const struct net_device *master; |
| 3783 | |
| 3784 | master = netdev_master_upper_dev_get(dev); |
| 3785 | if (master) |
| 3786 | ops = master->rtnl_link_ops; |
| 3787 | if (ops && ops->fill_linkxstats) { |
Nikolay Aleksandrov | 80e73cc | 2016-06-28 16:57:05 +0200 | [diff] [blame] | 3788 | *idxattr = IFLA_STATS_LINK_XSTATS_SLAVE; |
| 3789 | attr = nla_nest_start(skb, |
| 3790 | IFLA_STATS_LINK_XSTATS_SLAVE); |
| 3791 | if (!attr) |
| 3792 | goto nla_put_failure; |
| 3793 | |
| 3794 | err = ops->fill_linkxstats(skb, dev, prividx, *idxattr); |
Nikolay Aleksandrov | 97a47fa | 2016-04-30 10:25:27 +0200 | [diff] [blame] | 3795 | nla_nest_end(skb, attr); |
| 3796 | if (err) |
| 3797 | goto nla_put_failure; |
| 3798 | *idxattr = 0; |
| 3799 | } |
| 3800 | } |
| 3801 | |
Nogah Frankel | 69ae6ad | 2016-09-16 15:05:37 +0200 | [diff] [blame] | 3802 | if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_OFFLOAD_XSTATS, |
| 3803 | *idxattr)) { |
| 3804 | *idxattr = IFLA_STATS_LINK_OFFLOAD_XSTATS; |
| 3805 | attr = nla_nest_start(skb, IFLA_STATS_LINK_OFFLOAD_XSTATS); |
| 3806 | if (!attr) |
| 3807 | goto nla_put_failure; |
| 3808 | |
| 3809 | err = rtnl_get_offload_stats(skb, dev, prividx); |
| 3810 | if (err == -ENODATA) |
| 3811 | nla_nest_cancel(skb, attr); |
| 3812 | else |
| 3813 | nla_nest_end(skb, attr); |
| 3814 | |
| 3815 | if (err && err != -ENODATA) |
| 3816 | goto nla_put_failure; |
| 3817 | *idxattr = 0; |
| 3818 | } |
| 3819 | |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3820 | nlmsg_end(skb, nlh); |
| 3821 | |
| 3822 | return 0; |
| 3823 | |
| 3824 | nla_put_failure: |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3825 | /* not a multi message or no progress mean a real error */ |
| 3826 | if (!(flags & NLM_F_MULTI) || s_prividx == *prividx) |
| 3827 | nlmsg_cancel(skb, nlh); |
| 3828 | else |
| 3829 | nlmsg_end(skb, nlh); |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3830 | |
| 3831 | return -EMSGSIZE; |
| 3832 | } |
| 3833 | |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3834 | static size_t if_nlmsg_stats_size(const struct net_device *dev, |
| 3835 | u32 filter_mask) |
| 3836 | { |
| 3837 | size_t size = 0; |
| 3838 | |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3839 | if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_64, 0)) |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3840 | size += nla_total_size_64bit(sizeof(struct rtnl_link_stats64)); |
| 3841 | |
Nikolay Aleksandrov | 97a47fa | 2016-04-30 10:25:27 +0200 | [diff] [blame] | 3842 | if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_XSTATS, 0)) { |
| 3843 | const struct rtnl_link_ops *ops = dev->rtnl_link_ops; |
Nikolay Aleksandrov | 80e73cc | 2016-06-28 16:57:05 +0200 | [diff] [blame] | 3844 | int attr = IFLA_STATS_LINK_XSTATS; |
Nikolay Aleksandrov | 97a47fa | 2016-04-30 10:25:27 +0200 | [diff] [blame] | 3845 | |
| 3846 | if (ops && ops->get_linkxstats_size) { |
Nikolay Aleksandrov | 80e73cc | 2016-06-28 16:57:05 +0200 | [diff] [blame] | 3847 | size += nla_total_size(ops->get_linkxstats_size(dev, |
| 3848 | attr)); |
Nikolay Aleksandrov | 97a47fa | 2016-04-30 10:25:27 +0200 | [diff] [blame] | 3849 | /* for IFLA_STATS_LINK_XSTATS */ |
| 3850 | size += nla_total_size(0); |
| 3851 | } |
| 3852 | } |
| 3853 | |
Nikolay Aleksandrov | 80e73cc | 2016-06-28 16:57:05 +0200 | [diff] [blame] | 3854 | if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_XSTATS_SLAVE, 0)) { |
| 3855 | struct net_device *_dev = (struct net_device *)dev; |
| 3856 | const struct rtnl_link_ops *ops = NULL; |
| 3857 | const struct net_device *master; |
| 3858 | |
| 3859 | /* netdev_master_upper_dev_get can't take const */ |
| 3860 | master = netdev_master_upper_dev_get(_dev); |
| 3861 | if (master) |
| 3862 | ops = master->rtnl_link_ops; |
| 3863 | if (ops && ops->get_linkxstats_size) { |
| 3864 | int attr = IFLA_STATS_LINK_XSTATS_SLAVE; |
| 3865 | |
| 3866 | size += nla_total_size(ops->get_linkxstats_size(dev, |
| 3867 | attr)); |
| 3868 | /* for IFLA_STATS_LINK_XSTATS_SLAVE */ |
| 3869 | size += nla_total_size(0); |
| 3870 | } |
| 3871 | } |
| 3872 | |
Nogah Frankel | 69ae6ad | 2016-09-16 15:05:37 +0200 | [diff] [blame] | 3873 | if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_OFFLOAD_XSTATS, 0)) |
| 3874 | size += rtnl_get_offload_stats_size(dev); |
| 3875 | |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3876 | return size; |
| 3877 | } |
| 3878 | |
| 3879 | static int rtnl_stats_get(struct sk_buff *skb, struct nlmsghdr *nlh) |
| 3880 | { |
| 3881 | struct net *net = sock_net(skb->sk); |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3882 | struct net_device *dev = NULL; |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3883 | int idxattr = 0, prividx = 0; |
| 3884 | struct if_stats_msg *ifsm; |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3885 | struct sk_buff *nskb; |
| 3886 | u32 filter_mask; |
| 3887 | int err; |
| 3888 | |
Mathias Krause | 2ffc694 | 2016-12-28 17:52:15 +0100 | [diff] [blame] | 3889 | if (nlmsg_len(nlh) < sizeof(*ifsm)) |
| 3890 | return -EINVAL; |
| 3891 | |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3892 | ifsm = nlmsg_data(nlh); |
| 3893 | if (ifsm->ifindex > 0) |
| 3894 | dev = __dev_get_by_index(net, ifsm->ifindex); |
| 3895 | else |
| 3896 | return -EINVAL; |
| 3897 | |
| 3898 | if (!dev) |
| 3899 | return -ENODEV; |
| 3900 | |
| 3901 | filter_mask = ifsm->filter_mask; |
| 3902 | if (!filter_mask) |
| 3903 | return -EINVAL; |
| 3904 | |
| 3905 | nskb = nlmsg_new(if_nlmsg_stats_size(dev, filter_mask), GFP_KERNEL); |
| 3906 | if (!nskb) |
| 3907 | return -ENOBUFS; |
| 3908 | |
| 3909 | err = rtnl_fill_statsinfo(nskb, dev, RTM_NEWSTATS, |
| 3910 | NETLINK_CB(skb).portid, nlh->nlmsg_seq, 0, |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3911 | 0, filter_mask, &idxattr, &prividx); |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3912 | if (err < 0) { |
| 3913 | /* -EMSGSIZE implies BUG in if_nlmsg_stats_size */ |
| 3914 | WARN_ON(err == -EMSGSIZE); |
| 3915 | kfree_skb(nskb); |
| 3916 | } else { |
| 3917 | err = rtnl_unicast(nskb, net, NETLINK_CB(skb).portid); |
| 3918 | } |
| 3919 | |
| 3920 | return err; |
| 3921 | } |
| 3922 | |
| 3923 | static int rtnl_stats_dump(struct sk_buff *skb, struct netlink_callback *cb) |
| 3924 | { |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3925 | int h, s_h, err, s_idx, s_idxattr, s_prividx; |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3926 | struct net *net = sock_net(skb->sk); |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3927 | unsigned int flags = NLM_F_MULTI; |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3928 | struct if_stats_msg *ifsm; |
| 3929 | struct hlist_head *head; |
| 3930 | struct net_device *dev; |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3931 | u32 filter_mask = 0; |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3932 | int idx = 0; |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3933 | |
| 3934 | s_h = cb->args[0]; |
| 3935 | s_idx = cb->args[1]; |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3936 | s_idxattr = cb->args[2]; |
| 3937 | s_prividx = cb->args[3]; |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3938 | |
| 3939 | cb->seq = net->dev_base_seq; |
| 3940 | |
Mathias Krause | 2ffc694 | 2016-12-28 17:52:15 +0100 | [diff] [blame] | 3941 | if (nlmsg_len(cb->nlh) < sizeof(*ifsm)) |
| 3942 | return -EINVAL; |
| 3943 | |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3944 | ifsm = nlmsg_data(cb->nlh); |
| 3945 | filter_mask = ifsm->filter_mask; |
| 3946 | if (!filter_mask) |
| 3947 | return -EINVAL; |
| 3948 | |
| 3949 | for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { |
| 3950 | idx = 0; |
| 3951 | head = &net->dev_index_head[h]; |
| 3952 | hlist_for_each_entry(dev, head, index_hlist) { |
| 3953 | if (idx < s_idx) |
| 3954 | goto cont; |
| 3955 | err = rtnl_fill_statsinfo(skb, dev, RTM_NEWSTATS, |
| 3956 | NETLINK_CB(cb->skb).portid, |
| 3957 | cb->nlh->nlmsg_seq, 0, |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3958 | flags, filter_mask, |
| 3959 | &s_idxattr, &s_prividx); |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3960 | /* If we ran out of room on the first message, |
| 3961 | * we're in trouble |
| 3962 | */ |
| 3963 | WARN_ON((err == -EMSGSIZE) && (skb->len == 0)); |
| 3964 | |
| 3965 | if (err < 0) |
| 3966 | goto out; |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3967 | s_prividx = 0; |
| 3968 | s_idxattr = 0; |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3969 | nl_dump_check_consistent(cb, nlmsg_hdr(skb)); |
| 3970 | cont: |
| 3971 | idx++; |
| 3972 | } |
| 3973 | } |
| 3974 | out: |
Nikolay Aleksandrov | e8872a2 | 2016-04-30 10:25:26 +0200 | [diff] [blame] | 3975 | cb->args[3] = s_prividx; |
| 3976 | cb->args[2] = s_idxattr; |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 3977 | cb->args[1] = idx; |
| 3978 | cb->args[0] = h; |
| 3979 | |
| 3980 | return skb->len; |
| 3981 | } |
| 3982 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3983 | /* Process one rtnetlink message. */ |
| 3984 | |
Thomas Graf | 1d00a4e | 2007-03-22 23:30:12 -0700 | [diff] [blame] | 3985 | static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3986 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 3987 | struct net *net = sock_net(skb->sk); |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 3988 | rtnl_doit_func doit; |
Alexander Kuleshov | 617cfc7 | 2016-01-10 21:26:57 +0600 | [diff] [blame] | 3989 | int kind; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3990 | int family; |
| 3991 | int type; |
Eric Dumazet | 2907c35 | 2011-05-25 07:34:04 +0000 | [diff] [blame] | 3992 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3993 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3994 | type = nlh->nlmsg_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3995 | if (type > RTM_MAX) |
Thomas Graf | 038890f | 2007-04-05 14:35:52 -0700 | [diff] [blame] | 3996 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3997 | |
| 3998 | type -= RTM_BASE; |
| 3999 | |
| 4000 | /* All the messages must have at least 1 byte length */ |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 4001 | if (nlmsg_len(nlh) < sizeof(struct rtgenmsg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4002 | return 0; |
| 4003 | |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 4004 | family = ((struct rtgenmsg *)nlmsg_data(nlh))->rtgen_family; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4005 | kind = type&3; |
| 4006 | |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 4007 | if (kind != 2 && !netlink_net_capable(skb, CAP_NET_ADMIN)) |
Thomas Graf | 1d00a4e | 2007-03-22 23:30:12 -0700 | [diff] [blame] | 4008 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4009 | |
David S. Miller | b8f3ab4 | 2011-01-18 12:40:38 -0800 | [diff] [blame] | 4010 | if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) { |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 4011 | struct sock *rtnl; |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 4012 | rtnl_dumpit_func dumpit; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 4013 | rtnl_calcit_func calcit; |
| 4014 | u16 min_dump_alloc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4015 | |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 4016 | dumpit = rtnl_get_dumpit(family, type); |
| 4017 | if (dumpit == NULL) |
Thomas Graf | 038890f | 2007-04-05 14:35:52 -0700 | [diff] [blame] | 4018 | return -EOPNOTSUPP; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 4019 | calcit = rtnl_get_calcit(family, type); |
| 4020 | if (calcit) |
Greg Rose | 115c9b8 | 2012-02-21 16:54:48 -0500 | [diff] [blame] | 4021 | min_dump_alloc = calcit(skb, nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4022 | |
Eric Dumazet | 2907c35 | 2011-05-25 07:34:04 +0000 | [diff] [blame] | 4023 | __rtnl_unlock(); |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 4024 | rtnl = net->rtnl; |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 4025 | { |
| 4026 | struct netlink_dump_control c = { |
| 4027 | .dump = dumpit, |
| 4028 | .min_dump_alloc = min_dump_alloc, |
| 4029 | }; |
| 4030 | err = netlink_dump_start(rtnl, skb, nlh, &c); |
| 4031 | } |
Eric Dumazet | 2907c35 | 2011-05-25 07:34:04 +0000 | [diff] [blame] | 4032 | rtnl_lock(); |
| 4033 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4034 | } |
| 4035 | |
Thomas Graf | e284986 | 2007-03-22 11:48:11 -0700 | [diff] [blame] | 4036 | doit = rtnl_get_doit(family, type); |
| 4037 | if (doit == NULL) |
Thomas Graf | 038890f | 2007-04-05 14:35:52 -0700 | [diff] [blame] | 4038 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4039 | |
Thomas Graf | 661d296 | 2013-03-21 07:45:29 +0000 | [diff] [blame] | 4040 | return doit(skb, nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4041 | } |
| 4042 | |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 4043 | static void rtnetlink_rcv(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4044 | { |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 4045 | rtnl_lock(); |
| 4046 | netlink_rcv_skb(skb, &rtnetlink_rcv_msg); |
| 4047 | rtnl_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4048 | } |
| 4049 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4050 | static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr) |
| 4051 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 4052 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Eric W. Biederman | e9dc865 | 2007-09-12 13:02:17 +0200 | [diff] [blame] | 4053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4054 | switch (event) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4055 | case NETDEV_UP: |
| 4056 | case NETDEV_DOWN: |
Patrick McHardy | 10de05a | 2010-02-26 06:34:50 +0000 | [diff] [blame] | 4057 | case NETDEV_PRE_UP: |
Eric W. Biederman | d90a909 | 2009-12-12 22:11:15 +0000 | [diff] [blame] | 4058 | case NETDEV_POST_INIT: |
| 4059 | case NETDEV_REGISTER: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4060 | case NETDEV_CHANGE: |
Patrick McHardy | 755d0e7 | 2010-03-19 04:42:24 +0000 | [diff] [blame] | 4061 | case NETDEV_PRE_TYPE_CHANGE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4062 | case NETDEV_GOING_DOWN: |
Patrick McHardy | a283576 | 2010-02-26 06:34:51 +0000 | [diff] [blame] | 4063 | case NETDEV_UNREGISTER: |
Eric Dumazet | 0115e8e | 2012-08-22 17:19:46 +0000 | [diff] [blame] | 4064 | case NETDEV_UNREGISTER_FINAL: |
Amerigo Wang | ac3d3f8 | 2011-05-19 23:06:32 +0000 | [diff] [blame] | 4065 | case NETDEV_RELEASE: |
| 4066 | case NETDEV_JOIN: |
Moni Shoua | 61bd385 | 2015-02-03 16:48:29 +0200 | [diff] [blame] | 4067 | case NETDEV_BONDING_INFO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4068 | break; |
| 4069 | default: |
Alexei Starovoitov | 7f29405 | 2013-10-23 16:02:42 -0700 | [diff] [blame] | 4070 | rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4071 | break; |
| 4072 | } |
| 4073 | return NOTIFY_DONE; |
| 4074 | } |
| 4075 | |
| 4076 | static struct notifier_block rtnetlink_dev_notifier = { |
| 4077 | .notifier_call = rtnetlink_event, |
| 4078 | }; |
| 4079 | |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 4080 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 4081 | static int __net_init rtnetlink_net_init(struct net *net) |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 4082 | { |
| 4083 | struct sock *sk; |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 4084 | struct netlink_kernel_cfg cfg = { |
| 4085 | .groups = RTNLGRP_MAX, |
| 4086 | .input = rtnetlink_rcv, |
| 4087 | .cb_mutex = &rtnl_mutex, |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 4088 | .flags = NL_CFG_F_NONROOT_RECV, |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 4089 | }; |
| 4090 | |
Pablo Neira Ayuso | 9f00d97 | 2012-09-08 02:53:54 +0000 | [diff] [blame] | 4091 | sk = netlink_kernel_create(net, NETLINK_ROUTE, &cfg); |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 4092 | if (!sk) |
| 4093 | return -ENOMEM; |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 4094 | net->rtnl = sk; |
| 4095 | return 0; |
| 4096 | } |
| 4097 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 4098 | static void __net_exit rtnetlink_net_exit(struct net *net) |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 4099 | { |
Denis V. Lunev | 775516b | 2008-01-18 23:55:19 -0800 | [diff] [blame] | 4100 | netlink_kernel_release(net->rtnl); |
| 4101 | net->rtnl = NULL; |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 4102 | } |
| 4103 | |
| 4104 | static struct pernet_operations rtnetlink_net_ops = { |
| 4105 | .init = rtnetlink_net_init, |
| 4106 | .exit = rtnetlink_net_exit, |
| 4107 | }; |
| 4108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4109 | void __init rtnetlink_init(void) |
| 4110 | { |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 4111 | if (register_pernet_subsys(&rtnetlink_net_ops)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4112 | panic("rtnetlink_init: cannot initialize rtnetlink\n"); |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 4113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4114 | register_netdevice_notifier(&rtnetlink_dev_notifier); |
Thomas Graf | 340d17f | 2007-03-22 11:49:22 -0700 | [diff] [blame] | 4115 | |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 4116 | rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, |
| 4117 | rtnl_dump_ifinfo, rtnl_calcit); |
| 4118 | rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL, NULL); |
| 4119 | rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL, NULL); |
| 4120 | rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL, NULL); |
Thomas Graf | 687ad8c | 2007-03-22 11:59:42 -0700 | [diff] [blame] | 4121 | |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 4122 | rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all, NULL); |
| 4123 | rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all, NULL); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 4124 | |
| 4125 | rtnl_register(PF_BRIDGE, RTM_NEWNEIGH, rtnl_fdb_add, NULL, NULL); |
| 4126 | rtnl_register(PF_BRIDGE, RTM_DELNEIGH, rtnl_fdb_del, NULL, NULL); |
| 4127 | rtnl_register(PF_BRIDGE, RTM_GETNEIGH, NULL, rtnl_fdb_dump, NULL); |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 4128 | |
| 4129 | rtnl_register(PF_BRIDGE, RTM_GETLINK, NULL, rtnl_bridge_getlink, NULL); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 4130 | rtnl_register(PF_BRIDGE, RTM_DELLINK, rtnl_bridge_dellink, NULL, NULL); |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 4131 | rtnl_register(PF_BRIDGE, RTM_SETLINK, rtnl_bridge_setlink, NULL, NULL); |
Roopa Prabhu | 10c9ead | 2016-04-20 08:43:43 -0700 | [diff] [blame] | 4132 | |
| 4133 | rtnl_register(PF_UNSPEC, RTM_GETSTATS, rtnl_stats_get, rtnl_stats_dump, |
| 4134 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4135 | } |