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