Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1 | /* |
Jiri Pirko | 0d572e4 | 2012-06-19 05:54:09 +0000 | [diff] [blame] | 2 | * drivers/net/team/team.c - Network team device driver |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 3 | * Copyright (c) 2011 Jiri Pirko <jpirko@redhat.com> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/types.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/slab.h> |
| 16 | #include <linux/rcupdate.h> |
| 17 | #include <linux/errno.h> |
| 18 | #include <linux/ctype.h> |
| 19 | #include <linux/notifier.h> |
| 20 | #include <linux/netdevice.h> |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 21 | #include <linux/netpoll.h> |
Jiri Pirko | 87002b0 | 2011-12-08 04:11:17 +0000 | [diff] [blame] | 22 | #include <linux/if_vlan.h> |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 23 | #include <linux/if_arp.h> |
| 24 | #include <linux/socket.h> |
| 25 | #include <linux/etherdevice.h> |
| 26 | #include <linux/rtnetlink.h> |
| 27 | #include <net/rtnetlink.h> |
| 28 | #include <net/genetlink.h> |
| 29 | #include <net/netlink.h> |
Jiri Pirko | 6c85f2b | 2012-07-20 02:28:51 +0000 | [diff] [blame] | 30 | #include <net/sch_generic.h> |
Flavio Leitner | 7f51c58 | 2012-12-29 16:37:33 +0000 | [diff] [blame] | 31 | #include <generated/utsrelease.h> |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 32 | #include <linux/if_team.h> |
| 33 | |
| 34 | #define DRV_NAME "team" |
| 35 | |
| 36 | |
| 37 | /********** |
| 38 | * Helpers |
| 39 | **********/ |
| 40 | |
| 41 | #define team_port_exists(dev) (dev->priv_flags & IFF_TEAM_PORT) |
| 42 | |
| 43 | static struct team_port *team_port_get_rcu(const struct net_device *dev) |
| 44 | { |
| 45 | struct team_port *port = rcu_dereference(dev->rx_handler_data); |
| 46 | |
| 47 | return team_port_exists(dev) ? port : NULL; |
| 48 | } |
| 49 | |
| 50 | static struct team_port *team_port_get_rtnl(const struct net_device *dev) |
| 51 | { |
| 52 | struct team_port *port = rtnl_dereference(dev->rx_handler_data); |
| 53 | |
| 54 | return team_port_exists(dev) ? port : NULL; |
| 55 | } |
| 56 | |
| 57 | /* |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 58 | * Since the ability to change device address for open port device is tested in |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 59 | * team_port_add, this function can be called without control of return value |
| 60 | */ |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 61 | static int __set_port_dev_addr(struct net_device *port_dev, |
| 62 | const unsigned char *dev_addr) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 63 | { |
| 64 | struct sockaddr addr; |
| 65 | |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 66 | memcpy(addr.sa_data, dev_addr, port_dev->addr_len); |
| 67 | addr.sa_family = port_dev->type; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 68 | return dev_set_mac_address(port_dev, &addr); |
| 69 | } |
| 70 | |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 71 | static int team_port_set_orig_dev_addr(struct team_port *port) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 72 | { |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 73 | return __set_port_dev_addr(port->dev, port->orig.dev_addr); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Jiri Pirko | acbba0d | 2013-03-06 01:31:12 +0000 | [diff] [blame] | 76 | static int team_port_set_team_dev_addr(struct team *team, |
| 77 | struct team_port *port) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 78 | { |
Jiri Pirko | acbba0d | 2013-03-06 01:31:12 +0000 | [diff] [blame] | 79 | return __set_port_dev_addr(port->dev, team->dev->dev_addr); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 80 | } |
Jiri Pirko | acbba0d | 2013-03-06 01:31:12 +0000 | [diff] [blame] | 81 | |
| 82 | int team_modeop_port_enter(struct team *team, struct team_port *port) |
| 83 | { |
| 84 | return team_port_set_team_dev_addr(team, port); |
| 85 | } |
| 86 | EXPORT_SYMBOL(team_modeop_port_enter); |
| 87 | |
| 88 | void team_modeop_port_change_dev_addr(struct team *team, |
| 89 | struct team_port *port) |
| 90 | { |
| 91 | team_port_set_team_dev_addr(team, port); |
| 92 | } |
| 93 | EXPORT_SYMBOL(team_modeop_port_change_dev_addr); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 94 | |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 95 | static void team_refresh_port_linkup(struct team_port *port) |
| 96 | { |
| 97 | port->linkup = port->user.linkup_enabled ? port->user.linkup : |
| 98 | port->state.linkup; |
| 99 | } |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 100 | |
Jiri Pirko | 0f1aad2 | 2012-06-19 05:54:11 +0000 | [diff] [blame] | 101 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 102 | /******************* |
| 103 | * Options handling |
| 104 | *******************/ |
| 105 | |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 106 | struct team_option_inst { /* One for each option instance */ |
| 107 | struct list_head list; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 108 | struct list_head tmp_list; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 109 | struct team_option *option; |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 110 | struct team_option_inst_info info; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 111 | bool changed; |
| 112 | bool removed; |
| 113 | }; |
| 114 | |
| 115 | static struct team_option *__team_find_option(struct team *team, |
| 116 | const char *opt_name) |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 117 | { |
| 118 | struct team_option *option; |
| 119 | |
| 120 | list_for_each_entry(option, &team->option_list, list) { |
| 121 | if (strcmp(option->name, opt_name) == 0) |
| 122 | return option; |
| 123 | } |
| 124 | return NULL; |
| 125 | } |
| 126 | |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 127 | static void __team_option_inst_del(struct team_option_inst *opt_inst) |
| 128 | { |
| 129 | list_del(&opt_inst->list); |
| 130 | kfree(opt_inst); |
| 131 | } |
| 132 | |
| 133 | static void __team_option_inst_del_option(struct team *team, |
| 134 | struct team_option *option) |
| 135 | { |
| 136 | struct team_option_inst *opt_inst, *tmp; |
| 137 | |
| 138 | list_for_each_entry_safe(opt_inst, tmp, &team->option_inst_list, list) { |
| 139 | if (opt_inst->option == option) |
| 140 | __team_option_inst_del(opt_inst); |
| 141 | } |
| 142 | } |
| 143 | |
Jiri Pirko | b130332 | 2012-06-19 05:54:08 +0000 | [diff] [blame] | 144 | static int __team_option_inst_add(struct team *team, struct team_option *option, |
| 145 | struct team_port *port) |
| 146 | { |
| 147 | struct team_option_inst *opt_inst; |
| 148 | unsigned int array_size; |
| 149 | unsigned int i; |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 150 | int err; |
Jiri Pirko | b130332 | 2012-06-19 05:54:08 +0000 | [diff] [blame] | 151 | |
| 152 | array_size = option->array_size; |
| 153 | if (!array_size) |
| 154 | array_size = 1; /* No array but still need one instance */ |
| 155 | |
| 156 | for (i = 0; i < array_size; i++) { |
| 157 | opt_inst = kmalloc(sizeof(*opt_inst), GFP_KERNEL); |
| 158 | if (!opt_inst) |
| 159 | return -ENOMEM; |
| 160 | opt_inst->option = option; |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 161 | opt_inst->info.port = port; |
| 162 | opt_inst->info.array_index = i; |
Jiri Pirko | b130332 | 2012-06-19 05:54:08 +0000 | [diff] [blame] | 163 | opt_inst->changed = true; |
| 164 | opt_inst->removed = false; |
| 165 | list_add_tail(&opt_inst->list, &team->option_inst_list); |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 166 | if (option->init) { |
| 167 | err = option->init(team, &opt_inst->info); |
| 168 | if (err) |
| 169 | return err; |
| 170 | } |
| 171 | |
Jiri Pirko | b130332 | 2012-06-19 05:54:08 +0000 | [diff] [blame] | 172 | } |
| 173 | return 0; |
| 174 | } |
| 175 | |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 176 | static int __team_option_inst_add_option(struct team *team, |
| 177 | struct team_option *option) |
| 178 | { |
| 179 | struct team_port *port; |
| 180 | int err; |
| 181 | |
Jiri Pirko | b130332 | 2012-06-19 05:54:08 +0000 | [diff] [blame] | 182 | if (!option->per_port) { |
Jiri Pirko | f88725f | 2012-06-19 05:54:15 +0000 | [diff] [blame] | 183 | err = __team_option_inst_add(team, option, NULL); |
Jiri Pirko | b130332 | 2012-06-19 05:54:08 +0000 | [diff] [blame] | 184 | if (err) |
| 185 | goto inst_del_option; |
| 186 | } |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 187 | |
| 188 | list_for_each_entry(port, &team->port_list, list) { |
| 189 | err = __team_option_inst_add(team, option, port); |
| 190 | if (err) |
| 191 | goto inst_del_option; |
| 192 | } |
| 193 | return 0; |
| 194 | |
| 195 | inst_del_option: |
| 196 | __team_option_inst_del_option(team, option); |
| 197 | return err; |
| 198 | } |
| 199 | |
| 200 | static void __team_option_inst_mark_removed_option(struct team *team, |
| 201 | struct team_option *option) |
| 202 | { |
| 203 | struct team_option_inst *opt_inst; |
| 204 | |
| 205 | list_for_each_entry(opt_inst, &team->option_inst_list, list) { |
| 206 | if (opt_inst->option == option) { |
| 207 | opt_inst->changed = true; |
| 208 | opt_inst->removed = true; |
| 209 | } |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | static void __team_option_inst_del_port(struct team *team, |
| 214 | struct team_port *port) |
| 215 | { |
| 216 | struct team_option_inst *opt_inst, *tmp; |
| 217 | |
| 218 | list_for_each_entry_safe(opt_inst, tmp, &team->option_inst_list, list) { |
| 219 | if (opt_inst->option->per_port && |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 220 | opt_inst->info.port == port) |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 221 | __team_option_inst_del(opt_inst); |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | static int __team_option_inst_add_port(struct team *team, |
| 226 | struct team_port *port) |
| 227 | { |
| 228 | struct team_option *option; |
| 229 | int err; |
| 230 | |
| 231 | list_for_each_entry(option, &team->option_list, list) { |
| 232 | if (!option->per_port) |
| 233 | continue; |
| 234 | err = __team_option_inst_add(team, option, port); |
| 235 | if (err) |
| 236 | goto inst_del_port; |
| 237 | } |
| 238 | return 0; |
| 239 | |
| 240 | inst_del_port: |
| 241 | __team_option_inst_del_port(team, port); |
| 242 | return err; |
| 243 | } |
| 244 | |
| 245 | static void __team_option_inst_mark_removed_port(struct team *team, |
| 246 | struct team_port *port) |
| 247 | { |
| 248 | struct team_option_inst *opt_inst; |
| 249 | |
| 250 | list_for_each_entry(opt_inst, &team->option_inst_list, list) { |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 251 | if (opt_inst->info.port == port) { |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 252 | opt_inst->changed = true; |
| 253 | opt_inst->removed = true; |
| 254 | } |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | static int __team_options_register(struct team *team, |
| 259 | const struct team_option *option, |
| 260 | size_t option_count) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 261 | { |
| 262 | int i; |
Jiri Pirko | 2bba19f | 2011-11-17 04:16:05 +0000 | [diff] [blame] | 263 | struct team_option **dst_opts; |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 264 | int err; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 265 | |
Jiri Pirko | 2bba19f | 2011-11-17 04:16:05 +0000 | [diff] [blame] | 266 | dst_opts = kzalloc(sizeof(struct team_option *) * option_count, |
| 267 | GFP_KERNEL); |
| 268 | if (!dst_opts) |
| 269 | return -ENOMEM; |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 270 | for (i = 0; i < option_count; i++, option++) { |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 271 | if (__team_find_option(team, option->name)) { |
| 272 | err = -EEXIST; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 273 | goto alloc_rollback; |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 274 | } |
Jiri Pirko | f8a15af | 2011-11-17 06:32:37 +0000 | [diff] [blame] | 275 | dst_opts[i] = kmemdup(option, sizeof(*option), GFP_KERNEL); |
| 276 | if (!dst_opts[i]) { |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 277 | err = -ENOMEM; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 278 | goto alloc_rollback; |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 279 | } |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 280 | } |
| 281 | |
Jiri Pirko | b82b918 | 2012-01-24 05:16:00 +0000 | [diff] [blame] | 282 | for (i = 0; i < option_count; i++) { |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 283 | err = __team_option_inst_add_option(team, dst_opts[i]); |
| 284 | if (err) |
| 285 | goto inst_rollback; |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 286 | list_add_tail(&dst_opts[i]->list, &team->option_list); |
Jiri Pirko | b82b918 | 2012-01-24 05:16:00 +0000 | [diff] [blame] | 287 | } |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 288 | |
Jiri Pirko | 2bba19f | 2011-11-17 04:16:05 +0000 | [diff] [blame] | 289 | kfree(dst_opts); |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 290 | return 0; |
| 291 | |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 292 | inst_rollback: |
| 293 | for (i--; i >= 0; i--) |
| 294 | __team_option_inst_del_option(team, dst_opts[i]); |
| 295 | |
| 296 | i = option_count - 1; |
| 297 | alloc_rollback: |
| 298 | for (i--; i >= 0; i--) |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 299 | kfree(dst_opts[i]); |
| 300 | |
Jiri Pirko | 2bba19f | 2011-11-17 04:16:05 +0000 | [diff] [blame] | 301 | kfree(dst_opts); |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 302 | return err; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 303 | } |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 304 | |
Jiri Pirko | b82b918 | 2012-01-24 05:16:00 +0000 | [diff] [blame] | 305 | static void __team_options_mark_removed(struct team *team, |
| 306 | const struct team_option *option, |
| 307 | size_t option_count) |
| 308 | { |
| 309 | int i; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 310 | |
Jiri Pirko | b82b918 | 2012-01-24 05:16:00 +0000 | [diff] [blame] | 311 | for (i = 0; i < option_count; i++, option++) { |
| 312 | struct team_option *del_opt; |
| 313 | |
| 314 | del_opt = __team_find_option(team, option->name); |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 315 | if (del_opt) |
| 316 | __team_option_inst_mark_removed_option(team, del_opt); |
Jiri Pirko | b82b918 | 2012-01-24 05:16:00 +0000 | [diff] [blame] | 317 | } |
| 318 | } |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 319 | |
| 320 | static void __team_options_unregister(struct team *team, |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 321 | const struct team_option *option, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 322 | size_t option_count) |
| 323 | { |
| 324 | int i; |
| 325 | |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 326 | for (i = 0; i < option_count; i++, option++) { |
| 327 | struct team_option *del_opt; |
| 328 | |
| 329 | del_opt = __team_find_option(team, option->name); |
| 330 | if (del_opt) { |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 331 | __team_option_inst_del_option(team, del_opt); |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 332 | list_del(&del_opt->list); |
| 333 | kfree(del_opt); |
| 334 | } |
| 335 | } |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 336 | } |
| 337 | |
Jiri Pirko | b82b918 | 2012-01-24 05:16:00 +0000 | [diff] [blame] | 338 | static void __team_options_change_check(struct team *team); |
| 339 | |
| 340 | int team_options_register(struct team *team, |
| 341 | const struct team_option *option, |
| 342 | size_t option_count) |
| 343 | { |
| 344 | int err; |
| 345 | |
| 346 | err = __team_options_register(team, option, option_count); |
| 347 | if (err) |
| 348 | return err; |
| 349 | __team_options_change_check(team); |
| 350 | return 0; |
| 351 | } |
| 352 | EXPORT_SYMBOL(team_options_register); |
| 353 | |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 354 | void team_options_unregister(struct team *team, |
| 355 | const struct team_option *option, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 356 | size_t option_count) |
| 357 | { |
Jiri Pirko | b82b918 | 2012-01-24 05:16:00 +0000 | [diff] [blame] | 358 | __team_options_mark_removed(team, option, option_count); |
| 359 | __team_options_change_check(team); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 360 | __team_options_unregister(team, option, option_count); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 361 | } |
| 362 | EXPORT_SYMBOL(team_options_unregister); |
| 363 | |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 364 | static int team_option_get(struct team *team, |
| 365 | struct team_option_inst *opt_inst, |
| 366 | struct team_gsetter_ctx *ctx) |
| 367 | { |
Jiri Pirko | f82b959 | 2012-06-19 05:54:07 +0000 | [diff] [blame] | 368 | if (!opt_inst->option->getter) |
| 369 | return -EOPNOTSUPP; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 370 | return opt_inst->option->getter(team, ctx); |
| 371 | } |
| 372 | |
| 373 | static int team_option_set(struct team *team, |
| 374 | struct team_option_inst *opt_inst, |
| 375 | struct team_gsetter_ctx *ctx) |
| 376 | { |
Jiri Pirko | f82b959 | 2012-06-19 05:54:07 +0000 | [diff] [blame] | 377 | if (!opt_inst->option->setter) |
| 378 | return -EOPNOTSUPP; |
Jiri Pirko | 2fcdb2c | 2012-06-19 05:54:20 +0000 | [diff] [blame] | 379 | return opt_inst->option->setter(team, ctx); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 380 | } |
| 381 | |
Jiri Pirko | 0f1aad2 | 2012-06-19 05:54:11 +0000 | [diff] [blame] | 382 | void team_option_inst_set_change(struct team_option_inst_info *opt_inst_info) |
| 383 | { |
| 384 | struct team_option_inst *opt_inst; |
| 385 | |
| 386 | opt_inst = container_of(opt_inst_info, struct team_option_inst, info); |
| 387 | opt_inst->changed = true; |
| 388 | } |
| 389 | EXPORT_SYMBOL(team_option_inst_set_change); |
| 390 | |
| 391 | void team_options_change_check(struct team *team) |
| 392 | { |
| 393 | __team_options_change_check(team); |
| 394 | } |
| 395 | EXPORT_SYMBOL(team_options_change_check); |
| 396 | |
| 397 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 398 | /**************** |
| 399 | * Mode handling |
| 400 | ****************/ |
| 401 | |
| 402 | static LIST_HEAD(mode_list); |
| 403 | static DEFINE_SPINLOCK(mode_list_lock); |
| 404 | |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 405 | struct team_mode_item { |
| 406 | struct list_head list; |
| 407 | const struct team_mode *mode; |
| 408 | }; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 409 | |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 410 | static struct team_mode_item *__find_mode(const char *kind) |
| 411 | { |
| 412 | struct team_mode_item *mitem; |
| 413 | |
| 414 | list_for_each_entry(mitem, &mode_list, list) { |
| 415 | if (strcmp(mitem->mode->kind, kind) == 0) |
| 416 | return mitem; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 417 | } |
| 418 | return NULL; |
| 419 | } |
| 420 | |
| 421 | static bool is_good_mode_name(const char *name) |
| 422 | { |
| 423 | while (*name != '\0') { |
| 424 | if (!isalpha(*name) && !isdigit(*name) && *name != '_') |
| 425 | return false; |
| 426 | name++; |
| 427 | } |
| 428 | return true; |
| 429 | } |
| 430 | |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 431 | int team_mode_register(const struct team_mode *mode) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 432 | { |
| 433 | int err = 0; |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 434 | struct team_mode_item *mitem; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 435 | |
| 436 | if (!is_good_mode_name(mode->kind) || |
| 437 | mode->priv_size > TEAM_MODE_PRIV_SIZE) |
| 438 | return -EINVAL; |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 439 | |
| 440 | mitem = kmalloc(sizeof(*mitem), GFP_KERNEL); |
| 441 | if (!mitem) |
| 442 | return -ENOMEM; |
| 443 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 444 | spin_lock(&mode_list_lock); |
| 445 | if (__find_mode(mode->kind)) { |
| 446 | err = -EEXIST; |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 447 | kfree(mitem); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 448 | goto unlock; |
| 449 | } |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 450 | mitem->mode = mode; |
| 451 | list_add_tail(&mitem->list, &mode_list); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 452 | unlock: |
| 453 | spin_unlock(&mode_list_lock); |
| 454 | return err; |
| 455 | } |
| 456 | EXPORT_SYMBOL(team_mode_register); |
| 457 | |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 458 | void team_mode_unregister(const struct team_mode *mode) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 459 | { |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 460 | struct team_mode_item *mitem; |
| 461 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 462 | spin_lock(&mode_list_lock); |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 463 | mitem = __find_mode(mode->kind); |
| 464 | if (mitem) { |
| 465 | list_del_init(&mitem->list); |
| 466 | kfree(mitem); |
| 467 | } |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 468 | spin_unlock(&mode_list_lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 469 | } |
| 470 | EXPORT_SYMBOL(team_mode_unregister); |
| 471 | |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 472 | static const struct team_mode *team_mode_get(const char *kind) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 473 | { |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 474 | struct team_mode_item *mitem; |
| 475 | const struct team_mode *mode = NULL; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 476 | |
| 477 | spin_lock(&mode_list_lock); |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 478 | mitem = __find_mode(kind); |
| 479 | if (!mitem) { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 480 | spin_unlock(&mode_list_lock); |
| 481 | request_module("team-mode-%s", kind); |
| 482 | spin_lock(&mode_list_lock); |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 483 | mitem = __find_mode(kind); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 484 | } |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 485 | if (mitem) { |
| 486 | mode = mitem->mode; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 487 | if (!try_module_get(mode->owner)) |
| 488 | mode = NULL; |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 489 | } |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 490 | |
| 491 | spin_unlock(&mode_list_lock); |
| 492 | return mode; |
| 493 | } |
| 494 | |
| 495 | static void team_mode_put(const struct team_mode *mode) |
| 496 | { |
| 497 | module_put(mode->owner); |
| 498 | } |
| 499 | |
| 500 | static bool team_dummy_transmit(struct team *team, struct sk_buff *skb) |
| 501 | { |
| 502 | dev_kfree_skb_any(skb); |
| 503 | return false; |
| 504 | } |
| 505 | |
stephen hemminger | 2ea4659 | 2013-03-08 09:07:43 +0000 | [diff] [blame] | 506 | static rx_handler_result_t team_dummy_receive(struct team *team, |
| 507 | struct team_port *port, |
| 508 | struct sk_buff *skb) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 509 | { |
| 510 | return RX_HANDLER_ANOTHER; |
| 511 | } |
| 512 | |
Jiri Pirko | d299cd5 | 2012-06-19 05:54:04 +0000 | [diff] [blame] | 513 | static const struct team_mode __team_no_mode = { |
| 514 | .kind = "*NOMODE*", |
| 515 | }; |
| 516 | |
| 517 | static bool team_is_mode_set(struct team *team) |
| 518 | { |
| 519 | return team->mode != &__team_no_mode; |
| 520 | } |
| 521 | |
| 522 | static void team_set_no_mode(struct team *team) |
| 523 | { |
Flavio Leitner | e185483 | 2013-02-05 09:30:55 +0000 | [diff] [blame] | 524 | team->user_carrier_enabled = false; |
Jiri Pirko | d299cd5 | 2012-06-19 05:54:04 +0000 | [diff] [blame] | 525 | team->mode = &__team_no_mode; |
| 526 | } |
| 527 | |
Jiri Pirko | 735d381 | 2013-06-10 17:42:25 +0200 | [diff] [blame] | 528 | static void team_adjust_ops(struct team *team) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 529 | { |
| 530 | /* |
| 531 | * To avoid checks in rx/tx skb paths, ensure here that non-null and |
| 532 | * correct ops are always set. |
| 533 | */ |
| 534 | |
Jiri Pirko | 735d381 | 2013-06-10 17:42:25 +0200 | [diff] [blame] | 535 | if (!team->en_port_count || !team_is_mode_set(team) || |
Jiri Pirko | 122bb04 | 2012-06-26 06:52:45 +0000 | [diff] [blame] | 536 | !team->mode->ops->transmit) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 537 | team->ops.transmit = team_dummy_transmit; |
| 538 | else |
| 539 | team->ops.transmit = team->mode->ops->transmit; |
| 540 | |
Jiri Pirko | 735d381 | 2013-06-10 17:42:25 +0200 | [diff] [blame] | 541 | if (!team->en_port_count || !team_is_mode_set(team) || |
Jiri Pirko | 122bb04 | 2012-06-26 06:52:45 +0000 | [diff] [blame] | 542 | !team->mode->ops->receive) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 543 | team->ops.receive = team_dummy_receive; |
| 544 | else |
| 545 | team->ops.receive = team->mode->ops->receive; |
| 546 | } |
| 547 | |
| 548 | /* |
| 549 | * We can benefit from the fact that it's ensured no port is present |
| 550 | * at the time of mode change. Therefore no packets are in fly so there's no |
| 551 | * need to set mode operations in any special way. |
| 552 | */ |
| 553 | static int __team_change_mode(struct team *team, |
| 554 | const struct team_mode *new_mode) |
| 555 | { |
| 556 | /* Check if mode was previously set and do cleanup if so */ |
Jiri Pirko | d299cd5 | 2012-06-19 05:54:04 +0000 | [diff] [blame] | 557 | if (team_is_mode_set(team)) { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 558 | void (*exit_op)(struct team *team) = team->ops.exit; |
| 559 | |
| 560 | /* Clear ops area so no callback is called any longer */ |
| 561 | memset(&team->ops, 0, sizeof(struct team_mode_ops)); |
| 562 | team_adjust_ops(team); |
| 563 | |
| 564 | if (exit_op) |
| 565 | exit_op(team); |
| 566 | team_mode_put(team->mode); |
Jiri Pirko | d299cd5 | 2012-06-19 05:54:04 +0000 | [diff] [blame] | 567 | team_set_no_mode(team); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 568 | /* zero private data area */ |
| 569 | memset(&team->mode_priv, 0, |
| 570 | sizeof(struct team) - offsetof(struct team, mode_priv)); |
| 571 | } |
| 572 | |
| 573 | if (!new_mode) |
| 574 | return 0; |
| 575 | |
| 576 | if (new_mode->ops->init) { |
| 577 | int err; |
| 578 | |
| 579 | err = new_mode->ops->init(team); |
| 580 | if (err) |
| 581 | return err; |
| 582 | } |
| 583 | |
| 584 | team->mode = new_mode; |
| 585 | memcpy(&team->ops, new_mode->ops, sizeof(struct team_mode_ops)); |
| 586 | team_adjust_ops(team); |
| 587 | |
| 588 | return 0; |
| 589 | } |
| 590 | |
| 591 | static int team_change_mode(struct team *team, const char *kind) |
| 592 | { |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 593 | const struct team_mode *new_mode; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 594 | struct net_device *dev = team->dev; |
| 595 | int err; |
| 596 | |
| 597 | if (!list_empty(&team->port_list)) { |
| 598 | netdev_err(dev, "No ports can be present during mode change\n"); |
| 599 | return -EBUSY; |
| 600 | } |
| 601 | |
Jiri Pirko | d299cd5 | 2012-06-19 05:54:04 +0000 | [diff] [blame] | 602 | if (team_is_mode_set(team) && strcmp(team->mode->kind, kind) == 0) { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 603 | netdev_err(dev, "Unable to change to the same mode the team is in\n"); |
| 604 | return -EINVAL; |
| 605 | } |
| 606 | |
| 607 | new_mode = team_mode_get(kind); |
| 608 | if (!new_mode) { |
| 609 | netdev_err(dev, "Mode \"%s\" not found\n", kind); |
| 610 | return -EINVAL; |
| 611 | } |
| 612 | |
| 613 | err = __team_change_mode(team, new_mode); |
| 614 | if (err) { |
| 615 | netdev_err(dev, "Failed to change to mode \"%s\"\n", kind); |
| 616 | team_mode_put(new_mode); |
| 617 | return err; |
| 618 | } |
| 619 | |
| 620 | netdev_info(dev, "Mode changed to \"%s\"\n", kind); |
| 621 | return 0; |
| 622 | } |
| 623 | |
| 624 | |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 625 | /********************* |
| 626 | * Peers notification |
| 627 | *********************/ |
| 628 | |
| 629 | static void team_notify_peers_work(struct work_struct *work) |
| 630 | { |
| 631 | struct team *team; |
Jiri Pirko | b0d11b4 | 2015-01-14 18:15:30 +0100 | [diff] [blame^] | 632 | int val; |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 633 | |
| 634 | team = container_of(work, struct team, notify_peers.dw.work); |
| 635 | |
| 636 | if (!rtnl_trylock()) { |
| 637 | schedule_delayed_work(&team->notify_peers.dw, 0); |
| 638 | return; |
| 639 | } |
Jiri Pirko | b0d11b4 | 2015-01-14 18:15:30 +0100 | [diff] [blame^] | 640 | val = atomic_dec_if_positive(&team->notify_peers.count_pending); |
| 641 | if (val < 0) { |
| 642 | rtnl_unlock(); |
| 643 | return; |
| 644 | } |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 645 | call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, team->dev); |
| 646 | rtnl_unlock(); |
Jiri Pirko | b0d11b4 | 2015-01-14 18:15:30 +0100 | [diff] [blame^] | 647 | if (val) |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 648 | schedule_delayed_work(&team->notify_peers.dw, |
| 649 | msecs_to_jiffies(team->notify_peers.interval)); |
| 650 | } |
| 651 | |
| 652 | static void team_notify_peers(struct team *team) |
| 653 | { |
| 654 | if (!team->notify_peers.count || !netif_running(team->dev)) |
| 655 | return; |
Joe Lawrence | 4754965 | 2014-10-03 09:58:34 -0400 | [diff] [blame] | 656 | atomic_add(team->notify_peers.count, &team->notify_peers.count_pending); |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 657 | schedule_delayed_work(&team->notify_peers.dw, 0); |
| 658 | } |
| 659 | |
| 660 | static void team_notify_peers_init(struct team *team) |
| 661 | { |
| 662 | INIT_DELAYED_WORK(&team->notify_peers.dw, team_notify_peers_work); |
| 663 | } |
| 664 | |
| 665 | static void team_notify_peers_fini(struct team *team) |
| 666 | { |
| 667 | cancel_delayed_work_sync(&team->notify_peers.dw); |
| 668 | } |
| 669 | |
| 670 | |
Jiri Pirko | 492b200 | 2013-07-20 12:13:54 +0200 | [diff] [blame] | 671 | /******************************* |
| 672 | * Send multicast group rejoins |
| 673 | *******************************/ |
| 674 | |
| 675 | static void team_mcast_rejoin_work(struct work_struct *work) |
| 676 | { |
| 677 | struct team *team; |
Jiri Pirko | b0d11b4 | 2015-01-14 18:15:30 +0100 | [diff] [blame^] | 678 | int val; |
Jiri Pirko | 492b200 | 2013-07-20 12:13:54 +0200 | [diff] [blame] | 679 | |
| 680 | team = container_of(work, struct team, mcast_rejoin.dw.work); |
| 681 | |
| 682 | if (!rtnl_trylock()) { |
| 683 | schedule_delayed_work(&team->mcast_rejoin.dw, 0); |
| 684 | return; |
| 685 | } |
Jiri Pirko | b0d11b4 | 2015-01-14 18:15:30 +0100 | [diff] [blame^] | 686 | val = atomic_dec_if_positive(&team->mcast_rejoin.count_pending); |
| 687 | if (val < 0) { |
| 688 | rtnl_unlock(); |
| 689 | return; |
| 690 | } |
Jiri Pirko | 492b200 | 2013-07-20 12:13:54 +0200 | [diff] [blame] | 691 | call_netdevice_notifiers(NETDEV_RESEND_IGMP, team->dev); |
| 692 | rtnl_unlock(); |
Jiri Pirko | b0d11b4 | 2015-01-14 18:15:30 +0100 | [diff] [blame^] | 693 | if (val) |
Jiri Pirko | 492b200 | 2013-07-20 12:13:54 +0200 | [diff] [blame] | 694 | schedule_delayed_work(&team->mcast_rejoin.dw, |
| 695 | msecs_to_jiffies(team->mcast_rejoin.interval)); |
| 696 | } |
| 697 | |
| 698 | static void team_mcast_rejoin(struct team *team) |
| 699 | { |
| 700 | if (!team->mcast_rejoin.count || !netif_running(team->dev)) |
| 701 | return; |
Joe Lawrence | 4754965 | 2014-10-03 09:58:34 -0400 | [diff] [blame] | 702 | atomic_add(team->mcast_rejoin.count, &team->mcast_rejoin.count_pending); |
Jiri Pirko | 492b200 | 2013-07-20 12:13:54 +0200 | [diff] [blame] | 703 | schedule_delayed_work(&team->mcast_rejoin.dw, 0); |
| 704 | } |
| 705 | |
| 706 | static void team_mcast_rejoin_init(struct team *team) |
| 707 | { |
| 708 | INIT_DELAYED_WORK(&team->mcast_rejoin.dw, team_mcast_rejoin_work); |
| 709 | } |
| 710 | |
| 711 | static void team_mcast_rejoin_fini(struct team *team) |
| 712 | { |
| 713 | cancel_delayed_work_sync(&team->mcast_rejoin.dw); |
| 714 | } |
| 715 | |
| 716 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 717 | /************************ |
| 718 | * Rx path frame handler |
| 719 | ************************/ |
| 720 | |
| 721 | /* note: already called with rcu_read_lock */ |
| 722 | static rx_handler_result_t team_handle_frame(struct sk_buff **pskb) |
| 723 | { |
| 724 | struct sk_buff *skb = *pskb; |
| 725 | struct team_port *port; |
| 726 | struct team *team; |
| 727 | rx_handler_result_t res; |
| 728 | |
| 729 | skb = skb_share_check(skb, GFP_ATOMIC); |
| 730 | if (!skb) |
| 731 | return RX_HANDLER_CONSUMED; |
| 732 | |
| 733 | *pskb = skb; |
| 734 | |
| 735 | port = team_port_get_rcu(skb->dev); |
| 736 | team = port->team; |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 737 | if (!team_port_enabled(port)) { |
| 738 | /* allow exact match delivery for disabled ports */ |
| 739 | res = RX_HANDLER_EXACT; |
| 740 | } else { |
| 741 | res = team->ops.receive(team, port, skb); |
| 742 | } |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 743 | if (res == RX_HANDLER_ANOTHER) { |
| 744 | struct team_pcpu_stats *pcpu_stats; |
| 745 | |
| 746 | pcpu_stats = this_cpu_ptr(team->pcpu_stats); |
| 747 | u64_stats_update_begin(&pcpu_stats->syncp); |
| 748 | pcpu_stats->rx_packets++; |
| 749 | pcpu_stats->rx_bytes += skb->len; |
| 750 | if (skb->pkt_type == PACKET_MULTICAST) |
| 751 | pcpu_stats->rx_multicast++; |
| 752 | u64_stats_update_end(&pcpu_stats->syncp); |
| 753 | |
| 754 | skb->dev = team->dev; |
| 755 | } else { |
| 756 | this_cpu_inc(team->pcpu_stats->rx_dropped); |
| 757 | } |
| 758 | |
| 759 | return res; |
| 760 | } |
| 761 | |
| 762 | |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 763 | /************************************* |
| 764 | * Multiqueue Tx port select override |
| 765 | *************************************/ |
| 766 | |
| 767 | static int team_queue_override_init(struct team *team) |
| 768 | { |
| 769 | struct list_head *listarr; |
| 770 | unsigned int queue_cnt = team->dev->num_tx_queues - 1; |
| 771 | unsigned int i; |
| 772 | |
| 773 | if (!queue_cnt) |
| 774 | return 0; |
| 775 | listarr = kmalloc(sizeof(struct list_head) * queue_cnt, GFP_KERNEL); |
| 776 | if (!listarr) |
| 777 | return -ENOMEM; |
| 778 | team->qom_lists = listarr; |
| 779 | for (i = 0; i < queue_cnt; i++) |
| 780 | INIT_LIST_HEAD(listarr++); |
| 781 | return 0; |
| 782 | } |
| 783 | |
| 784 | static void team_queue_override_fini(struct team *team) |
| 785 | { |
| 786 | kfree(team->qom_lists); |
| 787 | } |
| 788 | |
| 789 | static struct list_head *__team_get_qom_list(struct team *team, u16 queue_id) |
| 790 | { |
| 791 | return &team->qom_lists[queue_id - 1]; |
| 792 | } |
| 793 | |
| 794 | /* |
| 795 | * note: already called with rcu_read_lock |
| 796 | */ |
| 797 | static bool team_queue_override_transmit(struct team *team, struct sk_buff *skb) |
| 798 | { |
| 799 | struct list_head *qom_list; |
| 800 | struct team_port *port; |
| 801 | |
| 802 | if (!team->queue_override_enabled || !skb->queue_mapping) |
| 803 | return false; |
| 804 | qom_list = __team_get_qom_list(team, skb->queue_mapping); |
| 805 | list_for_each_entry_rcu(port, qom_list, qom_list) { |
| 806 | if (!team_dev_queue_xmit(team, port, skb)) |
| 807 | return true; |
| 808 | } |
| 809 | return false; |
| 810 | } |
| 811 | |
| 812 | static void __team_queue_override_port_del(struct team *team, |
| 813 | struct team_port *port) |
| 814 | { |
Jiri Pirko | 6c31ff3 | 2013-06-10 17:42:23 +0200 | [diff] [blame] | 815 | if (!port->queue_id) |
| 816 | return; |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 817 | list_del_rcu(&port->qom_list); |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | static bool team_queue_override_port_has_gt_prio_than(struct team_port *port, |
| 821 | struct team_port *cur) |
| 822 | { |
| 823 | if (port->priority < cur->priority) |
| 824 | return true; |
| 825 | if (port->priority > cur->priority) |
| 826 | return false; |
| 827 | if (port->index < cur->index) |
| 828 | return true; |
| 829 | return false; |
| 830 | } |
| 831 | |
| 832 | static void __team_queue_override_port_add(struct team *team, |
| 833 | struct team_port *port) |
| 834 | { |
| 835 | struct team_port *cur; |
| 836 | struct list_head *qom_list; |
| 837 | struct list_head *node; |
| 838 | |
Jiri Pirko | 6c31ff3 | 2013-06-10 17:42:23 +0200 | [diff] [blame] | 839 | if (!port->queue_id) |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 840 | return; |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 841 | qom_list = __team_get_qom_list(team, port->queue_id); |
| 842 | node = qom_list; |
| 843 | list_for_each_entry(cur, qom_list, qom_list) { |
| 844 | if (team_queue_override_port_has_gt_prio_than(port, cur)) |
| 845 | break; |
| 846 | node = &cur->qom_list; |
| 847 | } |
| 848 | list_add_tail_rcu(&port->qom_list, node); |
| 849 | } |
| 850 | |
| 851 | static void __team_queue_override_enabled_check(struct team *team) |
| 852 | { |
| 853 | struct team_port *port; |
| 854 | bool enabled = false; |
| 855 | |
| 856 | list_for_each_entry(port, &team->port_list, list) { |
Jiri Pirko | 6c31ff3 | 2013-06-10 17:42:23 +0200 | [diff] [blame] | 857 | if (port->queue_id) { |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 858 | enabled = true; |
| 859 | break; |
| 860 | } |
| 861 | } |
| 862 | if (enabled == team->queue_override_enabled) |
| 863 | return; |
| 864 | netdev_dbg(team->dev, "%s queue override\n", |
| 865 | enabled ? "Enabling" : "Disabling"); |
| 866 | team->queue_override_enabled = enabled; |
| 867 | } |
| 868 | |
Jiri Pirko | 6c31ff3 | 2013-06-10 17:42:23 +0200 | [diff] [blame] | 869 | static void team_queue_override_port_prio_changed(struct team *team, |
| 870 | struct team_port *port) |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 871 | { |
Jiri Pirko | 6c31ff3 | 2013-06-10 17:42:23 +0200 | [diff] [blame] | 872 | if (!port->queue_id || team_port_enabled(port)) |
| 873 | return; |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 874 | __team_queue_override_port_del(team, port); |
| 875 | __team_queue_override_port_add(team, port); |
| 876 | __team_queue_override_enabled_check(team); |
| 877 | } |
| 878 | |
Jiri Pirko | 6c31ff3 | 2013-06-10 17:42:23 +0200 | [diff] [blame] | 879 | static void team_queue_override_port_change_queue_id(struct team *team, |
| 880 | struct team_port *port, |
| 881 | u16 new_queue_id) |
| 882 | { |
| 883 | if (team_port_enabled(port)) { |
| 884 | __team_queue_override_port_del(team, port); |
| 885 | port->queue_id = new_queue_id; |
| 886 | __team_queue_override_port_add(team, port); |
| 887 | __team_queue_override_enabled_check(team); |
| 888 | } else { |
| 889 | port->queue_id = new_queue_id; |
| 890 | } |
| 891 | } |
| 892 | |
| 893 | static void team_queue_override_port_add(struct team *team, |
| 894 | struct team_port *port) |
| 895 | { |
| 896 | __team_queue_override_port_add(team, port); |
| 897 | __team_queue_override_enabled_check(team); |
| 898 | } |
| 899 | |
| 900 | static void team_queue_override_port_del(struct team *team, |
| 901 | struct team_port *port) |
| 902 | { |
| 903 | __team_queue_override_port_del(team, port); |
| 904 | __team_queue_override_enabled_check(team); |
| 905 | } |
| 906 | |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 907 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 908 | /**************** |
| 909 | * Port handling |
| 910 | ****************/ |
| 911 | |
| 912 | static bool team_port_find(const struct team *team, |
| 913 | const struct team_port *port) |
| 914 | { |
| 915 | struct team_port *cur; |
| 916 | |
| 917 | list_for_each_entry(cur, &team->port_list, list) |
| 918 | if (cur == port) |
| 919 | return true; |
| 920 | return false; |
| 921 | } |
| 922 | |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 923 | /* |
| 924 | * Enable/disable port by adding to enabled port hashlist and setting |
| 925 | * port->index (Might be racy so reader could see incorrect ifindex when |
| 926 | * processing a flying packet, but that is not a problem). Write guarded |
| 927 | * by team->lock. |
| 928 | */ |
| 929 | static void team_port_enable(struct team *team, |
| 930 | struct team_port *port) |
| 931 | { |
| 932 | if (team_port_enabled(port)) |
| 933 | return; |
| 934 | port->index = team->en_port_count++; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 935 | hlist_add_head_rcu(&port->hlist, |
| 936 | team_port_index_hash(team, port->index)); |
Jiri Pirko | 122bb04 | 2012-06-26 06:52:45 +0000 | [diff] [blame] | 937 | team_adjust_ops(team); |
Jiri Pirko | 6c31ff3 | 2013-06-10 17:42:23 +0200 | [diff] [blame] | 938 | team_queue_override_port_add(team, port); |
Jiri Pirko | 4bccfd1 | 2012-06-19 05:54:16 +0000 | [diff] [blame] | 939 | if (team->ops.port_enabled) |
| 940 | team->ops.port_enabled(team, port); |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 941 | team_notify_peers(team); |
Jiri Pirko | 492b200 | 2013-07-20 12:13:54 +0200 | [diff] [blame] | 942 | team_mcast_rejoin(team); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 943 | } |
| 944 | |
| 945 | static void __reconstruct_port_hlist(struct team *team, int rm_index) |
| 946 | { |
| 947 | int i; |
| 948 | struct team_port *port; |
| 949 | |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 950 | for (i = rm_index + 1; i < team->en_port_count; i++) { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 951 | port = team_get_port_by_index(team, i); |
| 952 | hlist_del_rcu(&port->hlist); |
| 953 | port->index--; |
| 954 | hlist_add_head_rcu(&port->hlist, |
| 955 | team_port_index_hash(team, port->index)); |
| 956 | } |
| 957 | } |
| 958 | |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 959 | static void team_port_disable(struct team *team, |
| 960 | struct team_port *port) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 961 | { |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 962 | if (!team_port_enabled(port)) |
| 963 | return; |
Jiri Pirko | 4bccfd1 | 2012-06-19 05:54:16 +0000 | [diff] [blame] | 964 | if (team->ops.port_disabled) |
| 965 | team->ops.port_disabled(team, port); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 966 | hlist_del_rcu(&port->hlist); |
Jiri Pirko | 122bb04 | 2012-06-26 06:52:45 +0000 | [diff] [blame] | 967 | __reconstruct_port_hlist(team, port->index); |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 968 | port->index = -1; |
Jiri Pirko | 122bb04 | 2012-06-26 06:52:45 +0000 | [diff] [blame] | 969 | team->en_port_count--; |
Jiri Pirko | 735d381 | 2013-06-10 17:42:25 +0200 | [diff] [blame] | 970 | team_queue_override_port_del(team, port); |
| 971 | team_adjust_ops(team); |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 972 | team_notify_peers(team); |
Jiri Pirko | 492b200 | 2013-07-20 12:13:54 +0200 | [diff] [blame] | 973 | team_mcast_rejoin(team); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 974 | } |
| 975 | |
| 976 | #define TEAM_VLAN_FEATURES (NETIF_F_ALL_CSUM | NETIF_F_SG | \ |
| 977 | NETIF_F_FRAGLIST | NETIF_F_ALL_TSO | \ |
| 978 | NETIF_F_HIGHDMA | NETIF_F_LRO) |
| 979 | |
| 980 | static void __team_compute_features(struct team *team) |
| 981 | { |
| 982 | struct team_port *port; |
Michal Kubeček | 3625920 | 2014-05-20 08:29:45 +0200 | [diff] [blame] | 983 | u32 vlan_features = TEAM_VLAN_FEATURES & NETIF_F_ALL_FOR_ALL; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 984 | unsigned short max_hard_header_len = ETH_HLEN; |
Eric Dumazet | 0287587 | 2014-10-05 18:38:35 -0700 | [diff] [blame] | 985 | unsigned int dst_release_flag = IFF_XMIT_DST_RELEASE | |
| 986 | IFF_XMIT_DST_RELEASE_PERM; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 987 | |
| 988 | list_for_each_entry(port, &team->port_list, list) { |
| 989 | vlan_features = netdev_increment_features(vlan_features, |
| 990 | port->dev->vlan_features, |
| 991 | TEAM_VLAN_FEATURES); |
| 992 | |
Jiri Pirko | dc90595 | 2012-07-18 07:39:38 +0000 | [diff] [blame] | 993 | dst_release_flag &= port->dev->priv_flags; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 994 | if (port->dev->hard_header_len > max_hard_header_len) |
| 995 | max_hard_header_len = port->dev->hard_header_len; |
| 996 | } |
| 997 | |
| 998 | team->dev->vlan_features = vlan_features; |
| 999 | team->dev->hard_header_len = max_hard_header_len; |
| 1000 | |
Eric Dumazet | 0287587 | 2014-10-05 18:38:35 -0700 | [diff] [blame] | 1001 | team->dev->priv_flags &= ~IFF_XMIT_DST_RELEASE; |
| 1002 | if (dst_release_flag == (IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM)) |
| 1003 | team->dev->priv_flags |= IFF_XMIT_DST_RELEASE; |
Jiri Pirko | dc90595 | 2012-07-18 07:39:38 +0000 | [diff] [blame] | 1004 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1005 | netdev_change_features(team->dev); |
| 1006 | } |
| 1007 | |
| 1008 | static void team_compute_features(struct team *team) |
| 1009 | { |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 1010 | mutex_lock(&team->lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1011 | __team_compute_features(team); |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 1012 | mutex_unlock(&team->lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1013 | } |
| 1014 | |
| 1015 | static int team_port_enter(struct team *team, struct team_port *port) |
| 1016 | { |
| 1017 | int err = 0; |
| 1018 | |
| 1019 | dev_hold(team->dev); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1020 | if (team->ops.port_enter) { |
| 1021 | err = team->ops.port_enter(team, port); |
| 1022 | if (err) { |
| 1023 | netdev_err(team->dev, "Device %s failed to enter team mode\n", |
| 1024 | port->dev->name); |
| 1025 | goto err_port_enter; |
| 1026 | } |
| 1027 | } |
| 1028 | |
| 1029 | return 0; |
| 1030 | |
| 1031 | err_port_enter: |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1032 | dev_put(team->dev); |
| 1033 | |
| 1034 | return err; |
| 1035 | } |
| 1036 | |
| 1037 | static void team_port_leave(struct team *team, struct team_port *port) |
| 1038 | { |
| 1039 | if (team->ops.port_leave) |
| 1040 | team->ops.port_leave(team, port); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1041 | dev_put(team->dev); |
| 1042 | } |
| 1043 | |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1044 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Eric W. Biederman | a8779ec | 2014-03-27 15:36:38 -0700 | [diff] [blame] | 1045 | static int team_port_enable_netpoll(struct team *team, struct team_port *port) |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1046 | { |
| 1047 | struct netpoll *np; |
| 1048 | int err; |
| 1049 | |
stephen hemminger | 0fb52a2 | 2013-07-24 11:52:44 -0700 | [diff] [blame] | 1050 | if (!team->dev->npinfo) |
| 1051 | return 0; |
| 1052 | |
Eric W. Biederman | a8779ec | 2014-03-27 15:36:38 -0700 | [diff] [blame] | 1053 | np = kzalloc(sizeof(*np), GFP_KERNEL); |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1054 | if (!np) |
| 1055 | return -ENOMEM; |
| 1056 | |
Eric W. Biederman | a8779ec | 2014-03-27 15:36:38 -0700 | [diff] [blame] | 1057 | err = __netpoll_setup(np, port->dev); |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1058 | if (err) { |
| 1059 | kfree(np); |
| 1060 | return err; |
| 1061 | } |
| 1062 | port->np = np; |
| 1063 | return err; |
| 1064 | } |
| 1065 | |
| 1066 | static void team_port_disable_netpoll(struct team_port *port) |
| 1067 | { |
| 1068 | struct netpoll *np = port->np; |
| 1069 | |
| 1070 | if (!np) |
| 1071 | return; |
| 1072 | port->np = NULL; |
| 1073 | |
| 1074 | /* Wait for transmitting packets to finish before freeing. */ |
| 1075 | synchronize_rcu_bh(); |
| 1076 | __netpoll_cleanup(np); |
| 1077 | kfree(np); |
| 1078 | } |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1079 | #else |
Eric W. Biederman | a8779ec | 2014-03-27 15:36:38 -0700 | [diff] [blame] | 1080 | static int team_port_enable_netpoll(struct team *team, struct team_port *port) |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1081 | { |
| 1082 | return 0; |
| 1083 | } |
| 1084 | static void team_port_disable_netpoll(struct team_port *port) |
| 1085 | { |
| 1086 | } |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1087 | #endif |
| 1088 | |
Jiri Pirko | d7d3c05 | 2014-08-25 21:38:27 +0200 | [diff] [blame] | 1089 | static int team_upper_dev_link(struct net_device *dev, |
| 1090 | struct net_device *port_dev) |
| 1091 | { |
| 1092 | int err; |
| 1093 | |
| 1094 | err = netdev_master_upper_dev_link(port_dev, dev); |
| 1095 | if (err) |
| 1096 | return err; |
| 1097 | port_dev->priv_flags |= IFF_TEAM_PORT; |
| 1098 | return 0; |
| 1099 | } |
| 1100 | |
| 1101 | static void team_upper_dev_unlink(struct net_device *dev, |
| 1102 | struct net_device *port_dev) |
| 1103 | { |
| 1104 | netdev_upper_dev_unlink(port_dev, dev); |
| 1105 | port_dev->priv_flags &= ~IFF_TEAM_PORT; |
| 1106 | } |
| 1107 | |
Jiri Pirko | 10f3f51 | 2012-09-21 01:51:59 +0000 | [diff] [blame] | 1108 | static void __team_port_change_port_added(struct team_port *port, bool linkup); |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 1109 | static int team_dev_type_check_change(struct net_device *dev, |
| 1110 | struct net_device *port_dev); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1111 | |
| 1112 | static int team_port_add(struct team *team, struct net_device *port_dev) |
| 1113 | { |
| 1114 | struct net_device *dev = team->dev; |
| 1115 | struct team_port *port; |
| 1116 | char *portname = port_dev->name; |
| 1117 | int err; |
| 1118 | |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 1119 | if (port_dev->flags & IFF_LOOPBACK) { |
| 1120 | netdev_err(dev, "Device %s is loopback device. Loopback devices can't be added as a team port\n", |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1121 | portname); |
| 1122 | return -EINVAL; |
| 1123 | } |
| 1124 | |
| 1125 | if (team_port_exists(port_dev)) { |
| 1126 | netdev_err(dev, "Device %s is already a port " |
| 1127 | "of a team device\n", portname); |
| 1128 | return -EBUSY; |
| 1129 | } |
| 1130 | |
Jiri Pirko | 2c33bb3 | 2012-08-23 03:26:53 +0000 | [diff] [blame] | 1131 | if (port_dev->features & NETIF_F_VLAN_CHALLENGED && |
| 1132 | vlan_uses_dev(dev)) { |
| 1133 | netdev_err(dev, "Device %s is VLAN challenged and team device has VLAN set up\n", |
| 1134 | portname); |
| 1135 | return -EPERM; |
| 1136 | } |
| 1137 | |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 1138 | err = team_dev_type_check_change(dev, port_dev); |
| 1139 | if (err) |
| 1140 | return err; |
| 1141 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1142 | if (port_dev->flags & IFF_UP) { |
| 1143 | netdev_err(dev, "Device %s is up. Set it down before adding it as a team port\n", |
| 1144 | portname); |
| 1145 | return -EBUSY; |
| 1146 | } |
| 1147 | |
Jiri Pirko | 5149ee5 | 2012-06-19 05:54:05 +0000 | [diff] [blame] | 1148 | port = kzalloc(sizeof(struct team_port) + team->mode->port_priv_size, |
| 1149 | GFP_KERNEL); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1150 | if (!port) |
| 1151 | return -ENOMEM; |
| 1152 | |
| 1153 | port->dev = port_dev; |
| 1154 | port->team = team; |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 1155 | INIT_LIST_HEAD(&port->qom_list); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1156 | |
| 1157 | port->orig.mtu = port_dev->mtu; |
| 1158 | err = dev_set_mtu(port_dev, dev->mtu); |
| 1159 | if (err) { |
| 1160 | netdev_dbg(dev, "Error %d calling dev_set_mtu\n", err); |
| 1161 | goto err_set_mtu; |
| 1162 | } |
| 1163 | |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 1164 | memcpy(port->orig.dev_addr, port_dev->dev_addr, port_dev->addr_len); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1165 | |
| 1166 | err = team_port_enter(team, port); |
| 1167 | if (err) { |
| 1168 | netdev_err(dev, "Device %s failed to enter team mode\n", |
| 1169 | portname); |
| 1170 | goto err_port_enter; |
| 1171 | } |
| 1172 | |
| 1173 | err = dev_open(port_dev); |
| 1174 | if (err) { |
| 1175 | netdev_dbg(dev, "Device %s opening failed\n", |
| 1176 | portname); |
| 1177 | goto err_dev_open; |
| 1178 | } |
| 1179 | |
Jiri Pirko | 5745918 | 2011-12-08 04:11:20 +0000 | [diff] [blame] | 1180 | err = vlan_vids_add_by_dev(port_dev, dev); |
| 1181 | if (err) { |
| 1182 | netdev_err(dev, "Failed to add vlan ids to device %s\n", |
| 1183 | portname); |
| 1184 | goto err_vids_add; |
| 1185 | } |
| 1186 | |
Eric W. Biederman | a8779ec | 2014-03-27 15:36:38 -0700 | [diff] [blame] | 1187 | err = team_port_enable_netpoll(team, port); |
stephen hemminger | 0fb52a2 | 2013-07-24 11:52:44 -0700 | [diff] [blame] | 1188 | if (err) { |
| 1189 | netdev_err(dev, "Failed to enable netpoll on device %s\n", |
| 1190 | portname); |
| 1191 | goto err_enable_netpoll; |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1192 | } |
| 1193 | |
Michal Kubeček | fbe168b | 2014-11-13 07:54:50 +0100 | [diff] [blame] | 1194 | if (!(dev->features & NETIF_F_LRO)) |
| 1195 | dev_disable_lro(port_dev); |
| 1196 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1197 | err = netdev_rx_handler_register(port_dev, team_handle_frame, |
| 1198 | port); |
| 1199 | if (err) { |
| 1200 | netdev_err(dev, "Device %s failed to register rx_handler\n", |
| 1201 | portname); |
| 1202 | goto err_handler_register; |
| 1203 | } |
| 1204 | |
Jiri Pirko | d7d3c05 | 2014-08-25 21:38:27 +0200 | [diff] [blame] | 1205 | err = team_upper_dev_link(dev, port_dev); |
| 1206 | if (err) { |
| 1207 | netdev_err(dev, "Device %s failed to set upper link\n", |
| 1208 | portname); |
| 1209 | goto err_set_upper_link; |
| 1210 | } |
| 1211 | |
Jiri Pirko | 35b384b | 2012-06-19 05:54:19 +0000 | [diff] [blame] | 1212 | err = __team_option_inst_add_port(team, port); |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 1213 | if (err) { |
| 1214 | netdev_err(dev, "Device %s failed to add per-port options\n", |
| 1215 | portname); |
| 1216 | goto err_option_port_add; |
| 1217 | } |
| 1218 | |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 1219 | port->index = -1; |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 1220 | list_add_tail_rcu(&port->list, &team->port_list); |
Jiri Pirko | 72df935 | 2013-06-08 15:00:54 +0200 | [diff] [blame] | 1221 | team_port_enable(team, port); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1222 | __team_compute_features(team); |
Jiri Pirko | 10f3f51 | 2012-09-21 01:51:59 +0000 | [diff] [blame] | 1223 | __team_port_change_port_added(port, !!netif_carrier_ok(port_dev)); |
Jiri Pirko | 35b384b | 2012-06-19 05:54:19 +0000 | [diff] [blame] | 1224 | __team_options_change_check(team); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1225 | |
| 1226 | netdev_info(dev, "Port device %s added\n", portname); |
| 1227 | |
| 1228 | return 0; |
| 1229 | |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 1230 | err_option_port_add: |
Jiri Pirko | d7d3c05 | 2014-08-25 21:38:27 +0200 | [diff] [blame] | 1231 | team_upper_dev_unlink(dev, port_dev); |
| 1232 | |
| 1233 | err_set_upper_link: |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 1234 | netdev_rx_handler_unregister(port_dev); |
| 1235 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1236 | err_handler_register: |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1237 | team_port_disable_netpoll(port); |
| 1238 | |
| 1239 | err_enable_netpoll: |
Jiri Pirko | 5745918 | 2011-12-08 04:11:20 +0000 | [diff] [blame] | 1240 | vlan_vids_del_by_dev(port_dev, dev); |
| 1241 | |
| 1242 | err_vids_add: |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1243 | dev_close(port_dev); |
| 1244 | |
| 1245 | err_dev_open: |
| 1246 | team_port_leave(team, port); |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 1247 | team_port_set_orig_dev_addr(port); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1248 | |
| 1249 | err_port_enter: |
| 1250 | dev_set_mtu(port_dev, port->orig.mtu); |
| 1251 | |
| 1252 | err_set_mtu: |
| 1253 | kfree(port); |
| 1254 | |
| 1255 | return err; |
| 1256 | } |
| 1257 | |
Jiri Pirko | 10f3f51 | 2012-09-21 01:51:59 +0000 | [diff] [blame] | 1258 | static void __team_port_change_port_removed(struct team_port *port); |
| 1259 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1260 | static int team_port_del(struct team *team, struct net_device *port_dev) |
| 1261 | { |
| 1262 | struct net_device *dev = team->dev; |
| 1263 | struct team_port *port; |
| 1264 | char *portname = port_dev->name; |
| 1265 | |
| 1266 | port = team_port_get_rtnl(port_dev); |
| 1267 | if (!port || !team_port_find(team, port)) { |
| 1268 | netdev_err(dev, "Device %s does not act as a port of this team\n", |
| 1269 | portname); |
| 1270 | return -ENOENT; |
| 1271 | } |
| 1272 | |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 1273 | team_port_disable(team, port); |
| 1274 | list_del_rcu(&port->list); |
Jiri Pirko | d7d3c05 | 2014-08-25 21:38:27 +0200 | [diff] [blame] | 1275 | team_upper_dev_unlink(dev, port_dev); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1276 | netdev_rx_handler_unregister(port_dev); |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1277 | team_port_disable_netpoll(port); |
Jiri Pirko | 5745918 | 2011-12-08 04:11:20 +0000 | [diff] [blame] | 1278 | vlan_vids_del_by_dev(port_dev, dev); |
Vlad Yasevich | ba81276 | 2013-03-07 07:59:25 +0000 | [diff] [blame] | 1279 | dev_uc_unsync(port_dev, dev); |
| 1280 | dev_mc_unsync(port_dev, dev); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1281 | dev_close(port_dev); |
| 1282 | team_port_leave(team, port); |
Jiri Pirko | c3969d80 | 2013-02-01 08:17:25 +0000 | [diff] [blame] | 1283 | |
| 1284 | __team_option_inst_mark_removed_port(team, port); |
| 1285 | __team_options_change_check(team); |
| 1286 | __team_option_inst_del_port(team, port); |
| 1287 | __team_port_change_port_removed(port); |
| 1288 | |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 1289 | team_port_set_orig_dev_addr(port); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1290 | dev_set_mtu(port_dev, port->orig.mtu); |
Jiri Pirko | d80b35b | 2013-06-10 17:42:24 +0200 | [diff] [blame] | 1291 | kfree_rcu(port, rcu); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1292 | netdev_info(dev, "Port device %s removed\n", portname); |
| 1293 | __team_compute_features(team); |
| 1294 | |
| 1295 | return 0; |
| 1296 | } |
| 1297 | |
| 1298 | |
| 1299 | /***************** |
| 1300 | * Net device ops |
| 1301 | *****************/ |
| 1302 | |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 1303 | static int team_mode_option_get(struct team *team, struct team_gsetter_ctx *ctx) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1304 | { |
Jiri Pirko | d299cd5 | 2012-06-19 05:54:04 +0000 | [diff] [blame] | 1305 | ctx->data.str_val = team->mode->kind; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1306 | return 0; |
| 1307 | } |
| 1308 | |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 1309 | static int team_mode_option_set(struct team *team, struct team_gsetter_ctx *ctx) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1310 | { |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 1311 | return team_change_mode(team, ctx->data.str_val); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1312 | } |
| 1313 | |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 1314 | static int team_notify_peers_count_get(struct team *team, |
| 1315 | struct team_gsetter_ctx *ctx) |
| 1316 | { |
| 1317 | ctx->data.u32_val = team->notify_peers.count; |
| 1318 | return 0; |
| 1319 | } |
| 1320 | |
| 1321 | static int team_notify_peers_count_set(struct team *team, |
| 1322 | struct team_gsetter_ctx *ctx) |
| 1323 | { |
| 1324 | team->notify_peers.count = ctx->data.u32_val; |
| 1325 | return 0; |
| 1326 | } |
| 1327 | |
| 1328 | static int team_notify_peers_interval_get(struct team *team, |
| 1329 | struct team_gsetter_ctx *ctx) |
| 1330 | { |
| 1331 | ctx->data.u32_val = team->notify_peers.interval; |
| 1332 | return 0; |
| 1333 | } |
| 1334 | |
| 1335 | static int team_notify_peers_interval_set(struct team *team, |
| 1336 | struct team_gsetter_ctx *ctx) |
| 1337 | { |
| 1338 | team->notify_peers.interval = ctx->data.u32_val; |
| 1339 | return 0; |
| 1340 | } |
| 1341 | |
Jiri Pirko | 492b200 | 2013-07-20 12:13:54 +0200 | [diff] [blame] | 1342 | static int team_mcast_rejoin_count_get(struct team *team, |
| 1343 | struct team_gsetter_ctx *ctx) |
| 1344 | { |
| 1345 | ctx->data.u32_val = team->mcast_rejoin.count; |
| 1346 | return 0; |
| 1347 | } |
| 1348 | |
| 1349 | static int team_mcast_rejoin_count_set(struct team *team, |
| 1350 | struct team_gsetter_ctx *ctx) |
| 1351 | { |
| 1352 | team->mcast_rejoin.count = ctx->data.u32_val; |
| 1353 | return 0; |
| 1354 | } |
| 1355 | |
| 1356 | static int team_mcast_rejoin_interval_get(struct team *team, |
| 1357 | struct team_gsetter_ctx *ctx) |
| 1358 | { |
| 1359 | ctx->data.u32_val = team->mcast_rejoin.interval; |
| 1360 | return 0; |
| 1361 | } |
| 1362 | |
| 1363 | static int team_mcast_rejoin_interval_set(struct team *team, |
| 1364 | struct team_gsetter_ctx *ctx) |
| 1365 | { |
| 1366 | team->mcast_rejoin.interval = ctx->data.u32_val; |
| 1367 | return 0; |
| 1368 | } |
| 1369 | |
Jiri Pirko | acd6996 | 2012-04-20 04:42:06 +0000 | [diff] [blame] | 1370 | static int team_port_en_option_get(struct team *team, |
| 1371 | struct team_gsetter_ctx *ctx) |
| 1372 | { |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 1373 | struct team_port *port = ctx->info->port; |
| 1374 | |
| 1375 | ctx->data.bool_val = team_port_enabled(port); |
Jiri Pirko | acd6996 | 2012-04-20 04:42:06 +0000 | [diff] [blame] | 1376 | return 0; |
| 1377 | } |
| 1378 | |
| 1379 | static int team_port_en_option_set(struct team *team, |
| 1380 | struct team_gsetter_ctx *ctx) |
| 1381 | { |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 1382 | struct team_port *port = ctx->info->port; |
| 1383 | |
Jiri Pirko | acd6996 | 2012-04-20 04:42:06 +0000 | [diff] [blame] | 1384 | if (ctx->data.bool_val) |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 1385 | team_port_enable(team, port); |
Jiri Pirko | acd6996 | 2012-04-20 04:42:06 +0000 | [diff] [blame] | 1386 | else |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 1387 | team_port_disable(team, port); |
Jiri Pirko | acd6996 | 2012-04-20 04:42:06 +0000 | [diff] [blame] | 1388 | return 0; |
| 1389 | } |
| 1390 | |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 1391 | static int team_user_linkup_option_get(struct team *team, |
| 1392 | struct team_gsetter_ctx *ctx) |
| 1393 | { |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 1394 | struct team_port *port = ctx->info->port; |
| 1395 | |
| 1396 | ctx->data.bool_val = port->user.linkup; |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 1397 | return 0; |
| 1398 | } |
| 1399 | |
Jiri Pirko | f5e0d34 | 2013-11-28 18:01:38 +0100 | [diff] [blame] | 1400 | static void __team_carrier_check(struct team *team); |
| 1401 | |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 1402 | static int team_user_linkup_option_set(struct team *team, |
| 1403 | struct team_gsetter_ctx *ctx) |
| 1404 | { |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 1405 | struct team_port *port = ctx->info->port; |
| 1406 | |
| 1407 | port->user.linkup = ctx->data.bool_val; |
| 1408 | team_refresh_port_linkup(port); |
Jiri Pirko | f5e0d34 | 2013-11-28 18:01:38 +0100 | [diff] [blame] | 1409 | __team_carrier_check(port->team); |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 1410 | return 0; |
| 1411 | } |
| 1412 | |
| 1413 | static int team_user_linkup_en_option_get(struct team *team, |
| 1414 | struct team_gsetter_ctx *ctx) |
| 1415 | { |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 1416 | struct team_port *port = ctx->info->port; |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 1417 | |
| 1418 | ctx->data.bool_val = port->user.linkup_enabled; |
| 1419 | return 0; |
| 1420 | } |
| 1421 | |
| 1422 | static int team_user_linkup_en_option_set(struct team *team, |
| 1423 | struct team_gsetter_ctx *ctx) |
| 1424 | { |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 1425 | struct team_port *port = ctx->info->port; |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 1426 | |
| 1427 | port->user.linkup_enabled = ctx->data.bool_val; |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 1428 | team_refresh_port_linkup(port); |
Jiri Pirko | f5e0d34 | 2013-11-28 18:01:38 +0100 | [diff] [blame] | 1429 | __team_carrier_check(port->team); |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 1430 | return 0; |
| 1431 | } |
| 1432 | |
Jiri Pirko | a86fc6b | 2012-07-27 06:28:54 +0000 | [diff] [blame] | 1433 | static int team_priority_option_get(struct team *team, |
| 1434 | struct team_gsetter_ctx *ctx) |
| 1435 | { |
| 1436 | struct team_port *port = ctx->info->port; |
| 1437 | |
| 1438 | ctx->data.s32_val = port->priority; |
| 1439 | return 0; |
| 1440 | } |
| 1441 | |
| 1442 | static int team_priority_option_set(struct team *team, |
| 1443 | struct team_gsetter_ctx *ctx) |
| 1444 | { |
| 1445 | struct team_port *port = ctx->info->port; |
Jiri Pirko | 6c31ff3 | 2013-06-10 17:42:23 +0200 | [diff] [blame] | 1446 | s32 priority = ctx->data.s32_val; |
Jiri Pirko | a86fc6b | 2012-07-27 06:28:54 +0000 | [diff] [blame] | 1447 | |
Jiri Pirko | 6c31ff3 | 2013-06-10 17:42:23 +0200 | [diff] [blame] | 1448 | if (port->priority == priority) |
| 1449 | return 0; |
| 1450 | port->priority = priority; |
| 1451 | team_queue_override_port_prio_changed(team, port); |
Jiri Pirko | a86fc6b | 2012-07-27 06:28:54 +0000 | [diff] [blame] | 1452 | return 0; |
| 1453 | } |
| 1454 | |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 1455 | static int team_queue_id_option_get(struct team *team, |
| 1456 | struct team_gsetter_ctx *ctx) |
| 1457 | { |
| 1458 | struct team_port *port = ctx->info->port; |
| 1459 | |
| 1460 | ctx->data.u32_val = port->queue_id; |
| 1461 | return 0; |
| 1462 | } |
| 1463 | |
| 1464 | static int team_queue_id_option_set(struct team *team, |
| 1465 | struct team_gsetter_ctx *ctx) |
| 1466 | { |
| 1467 | struct team_port *port = ctx->info->port; |
Jiri Pirko | 6c31ff3 | 2013-06-10 17:42:23 +0200 | [diff] [blame] | 1468 | u16 new_queue_id = ctx->data.u32_val; |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 1469 | |
Jiri Pirko | 6c31ff3 | 2013-06-10 17:42:23 +0200 | [diff] [blame] | 1470 | if (port->queue_id == new_queue_id) |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 1471 | return 0; |
Jiri Pirko | 6c31ff3 | 2013-06-10 17:42:23 +0200 | [diff] [blame] | 1472 | if (new_queue_id >= team->dev->real_num_tx_queues) |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 1473 | return -EINVAL; |
Jiri Pirko | 6c31ff3 | 2013-06-10 17:42:23 +0200 | [diff] [blame] | 1474 | team_queue_override_port_change_queue_id(team, port, new_queue_id); |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 1475 | return 0; |
| 1476 | } |
| 1477 | |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 1478 | static const struct team_option team_options[] = { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1479 | { |
| 1480 | .name = "mode", |
| 1481 | .type = TEAM_OPTION_TYPE_STRING, |
| 1482 | .getter = team_mode_option_get, |
| 1483 | .setter = team_mode_option_set, |
| 1484 | }, |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 1485 | { |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 1486 | .name = "notify_peers_count", |
| 1487 | .type = TEAM_OPTION_TYPE_U32, |
| 1488 | .getter = team_notify_peers_count_get, |
| 1489 | .setter = team_notify_peers_count_set, |
| 1490 | }, |
| 1491 | { |
| 1492 | .name = "notify_peers_interval", |
| 1493 | .type = TEAM_OPTION_TYPE_U32, |
| 1494 | .getter = team_notify_peers_interval_get, |
| 1495 | .setter = team_notify_peers_interval_set, |
| 1496 | }, |
| 1497 | { |
Jiri Pirko | 492b200 | 2013-07-20 12:13:54 +0200 | [diff] [blame] | 1498 | .name = "mcast_rejoin_count", |
| 1499 | .type = TEAM_OPTION_TYPE_U32, |
| 1500 | .getter = team_mcast_rejoin_count_get, |
| 1501 | .setter = team_mcast_rejoin_count_set, |
| 1502 | }, |
| 1503 | { |
| 1504 | .name = "mcast_rejoin_interval", |
| 1505 | .type = TEAM_OPTION_TYPE_U32, |
| 1506 | .getter = team_mcast_rejoin_interval_get, |
| 1507 | .setter = team_mcast_rejoin_interval_set, |
| 1508 | }, |
| 1509 | { |
Jiri Pirko | acd6996 | 2012-04-20 04:42:06 +0000 | [diff] [blame] | 1510 | .name = "enabled", |
| 1511 | .type = TEAM_OPTION_TYPE_BOOL, |
| 1512 | .per_port = true, |
| 1513 | .getter = team_port_en_option_get, |
| 1514 | .setter = team_port_en_option_set, |
| 1515 | }, |
| 1516 | { |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 1517 | .name = "user_linkup", |
| 1518 | .type = TEAM_OPTION_TYPE_BOOL, |
| 1519 | .per_port = true, |
| 1520 | .getter = team_user_linkup_option_get, |
| 1521 | .setter = team_user_linkup_option_set, |
| 1522 | }, |
| 1523 | { |
| 1524 | .name = "user_linkup_enabled", |
| 1525 | .type = TEAM_OPTION_TYPE_BOOL, |
| 1526 | .per_port = true, |
| 1527 | .getter = team_user_linkup_en_option_get, |
| 1528 | .setter = team_user_linkup_en_option_set, |
| 1529 | }, |
Jiri Pirko | a86fc6b | 2012-07-27 06:28:54 +0000 | [diff] [blame] | 1530 | { |
| 1531 | .name = "priority", |
| 1532 | .type = TEAM_OPTION_TYPE_S32, |
| 1533 | .per_port = true, |
| 1534 | .getter = team_priority_option_get, |
| 1535 | .setter = team_priority_option_set, |
| 1536 | }, |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 1537 | { |
| 1538 | .name = "queue_id", |
| 1539 | .type = TEAM_OPTION_TYPE_U32, |
| 1540 | .per_port = true, |
| 1541 | .getter = team_queue_id_option_get, |
| 1542 | .setter = team_queue_id_option_set, |
| 1543 | }, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1544 | }; |
| 1545 | |
Jiri Pirko | 6c85f2b | 2012-07-20 02:28:51 +0000 | [diff] [blame] | 1546 | static struct lock_class_key team_netdev_xmit_lock_key; |
| 1547 | static struct lock_class_key team_netdev_addr_lock_key; |
Eric Dumazet | b3c581d | 2012-10-03 23:18:39 +0000 | [diff] [blame] | 1548 | static struct lock_class_key team_tx_busylock_key; |
Jiri Pirko | 6c85f2b | 2012-07-20 02:28:51 +0000 | [diff] [blame] | 1549 | |
| 1550 | static void team_set_lockdep_class_one(struct net_device *dev, |
| 1551 | struct netdev_queue *txq, |
| 1552 | void *unused) |
| 1553 | { |
| 1554 | lockdep_set_class(&txq->_xmit_lock, &team_netdev_xmit_lock_key); |
| 1555 | } |
| 1556 | |
| 1557 | static void team_set_lockdep_class(struct net_device *dev) |
| 1558 | { |
| 1559 | lockdep_set_class(&dev->addr_list_lock, &team_netdev_addr_lock_key); |
| 1560 | netdev_for_each_tx_queue(dev, team_set_lockdep_class_one, NULL); |
Eric Dumazet | b3c581d | 2012-10-03 23:18:39 +0000 | [diff] [blame] | 1561 | dev->qdisc_tx_busylock = &team_tx_busylock_key; |
Jiri Pirko | 6c85f2b | 2012-07-20 02:28:51 +0000 | [diff] [blame] | 1562 | } |
| 1563 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1564 | static int team_init(struct net_device *dev) |
| 1565 | { |
| 1566 | struct team *team = netdev_priv(dev); |
| 1567 | int i; |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 1568 | int err; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1569 | |
| 1570 | team->dev = dev; |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 1571 | mutex_init(&team->lock); |
Jiri Pirko | d299cd5 | 2012-06-19 05:54:04 +0000 | [diff] [blame] | 1572 | team_set_no_mode(team); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1573 | |
WANG Cong | 1c213bd | 2014-02-13 11:46:28 -0800 | [diff] [blame] | 1574 | team->pcpu_stats = netdev_alloc_pcpu_stats(struct team_pcpu_stats); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1575 | if (!team->pcpu_stats) |
| 1576 | return -ENOMEM; |
| 1577 | |
| 1578 | for (i = 0; i < TEAM_PORT_HASHENTRIES; i++) |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 1579 | INIT_HLIST_HEAD(&team->en_port_hlist[i]); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1580 | INIT_LIST_HEAD(&team->port_list); |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 1581 | err = team_queue_override_init(team); |
| 1582 | if (err) |
| 1583 | goto err_team_queue_override_init; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1584 | |
| 1585 | team_adjust_ops(team); |
| 1586 | |
| 1587 | INIT_LIST_HEAD(&team->option_list); |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 1588 | INIT_LIST_HEAD(&team->option_inst_list); |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 1589 | |
| 1590 | team_notify_peers_init(team); |
Jiri Pirko | 492b200 | 2013-07-20 12:13:54 +0200 | [diff] [blame] | 1591 | team_mcast_rejoin_init(team); |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 1592 | |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 1593 | err = team_options_register(team, team_options, ARRAY_SIZE(team_options)); |
| 1594 | if (err) |
| 1595 | goto err_options_register; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1596 | netif_carrier_off(dev); |
| 1597 | |
Jiri Pirko | 6c85f2b | 2012-07-20 02:28:51 +0000 | [diff] [blame] | 1598 | team_set_lockdep_class(dev); |
| 1599 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1600 | return 0; |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 1601 | |
| 1602 | err_options_register: |
Jiri Pirko | 492b200 | 2013-07-20 12:13:54 +0200 | [diff] [blame] | 1603 | team_mcast_rejoin_fini(team); |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 1604 | team_notify_peers_fini(team); |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 1605 | team_queue_override_fini(team); |
| 1606 | err_team_queue_override_init: |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 1607 | free_percpu(team->pcpu_stats); |
| 1608 | |
| 1609 | return err; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1610 | } |
| 1611 | |
| 1612 | static void team_uninit(struct net_device *dev) |
| 1613 | { |
| 1614 | struct team *team = netdev_priv(dev); |
| 1615 | struct team_port *port; |
| 1616 | struct team_port *tmp; |
| 1617 | |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 1618 | mutex_lock(&team->lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1619 | list_for_each_entry_safe(port, tmp, &team->port_list, list) |
| 1620 | team_port_del(team, port->dev); |
| 1621 | |
| 1622 | __team_change_mode(team, NULL); /* cleanup */ |
| 1623 | __team_options_unregister(team, team_options, ARRAY_SIZE(team_options)); |
Jiri Pirko | 492b200 | 2013-07-20 12:13:54 +0200 | [diff] [blame] | 1624 | team_mcast_rejoin_fini(team); |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 1625 | team_notify_peers_fini(team); |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 1626 | team_queue_override_fini(team); |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 1627 | mutex_unlock(&team->lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1628 | } |
| 1629 | |
| 1630 | static void team_destructor(struct net_device *dev) |
| 1631 | { |
| 1632 | struct team *team = netdev_priv(dev); |
| 1633 | |
| 1634 | free_percpu(team->pcpu_stats); |
| 1635 | free_netdev(dev); |
| 1636 | } |
| 1637 | |
| 1638 | static int team_open(struct net_device *dev) |
| 1639 | { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1640 | return 0; |
| 1641 | } |
| 1642 | |
| 1643 | static int team_close(struct net_device *dev) |
| 1644 | { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1645 | return 0; |
| 1646 | } |
| 1647 | |
| 1648 | /* |
| 1649 | * note: already called with rcu_read_lock |
| 1650 | */ |
| 1651 | static netdev_tx_t team_xmit(struct sk_buff *skb, struct net_device *dev) |
| 1652 | { |
| 1653 | struct team *team = netdev_priv(dev); |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 1654 | bool tx_success; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1655 | unsigned int len = skb->len; |
| 1656 | |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 1657 | tx_success = team_queue_override_transmit(team, skb); |
| 1658 | if (!tx_success) |
| 1659 | tx_success = team->ops.transmit(team, skb); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1660 | if (tx_success) { |
| 1661 | struct team_pcpu_stats *pcpu_stats; |
| 1662 | |
| 1663 | pcpu_stats = this_cpu_ptr(team->pcpu_stats); |
| 1664 | u64_stats_update_begin(&pcpu_stats->syncp); |
| 1665 | pcpu_stats->tx_packets++; |
| 1666 | pcpu_stats->tx_bytes += len; |
| 1667 | u64_stats_update_end(&pcpu_stats->syncp); |
| 1668 | } else { |
| 1669 | this_cpu_inc(team->pcpu_stats->tx_dropped); |
| 1670 | } |
| 1671 | |
| 1672 | return NETDEV_TX_OK; |
| 1673 | } |
| 1674 | |
Jason Wang | f663dd9 | 2014-01-10 16:18:26 +0800 | [diff] [blame] | 1675 | static u16 team_select_queue(struct net_device *dev, struct sk_buff *skb, |
Daniel Borkmann | 99932d4 | 2014-02-16 15:55:20 +0100 | [diff] [blame] | 1676 | void *accel_priv, select_queue_fallback_t fallback) |
Jiri Pirko | 6c85f2b | 2012-07-20 02:28:51 +0000 | [diff] [blame] | 1677 | { |
| 1678 | /* |
| 1679 | * This helper function exists to help dev_pick_tx get the correct |
| 1680 | * destination queue. Using a helper function skips a call to |
| 1681 | * skb_tx_hash and will put the skbs in the queue we expect on their |
| 1682 | * way down to the team driver. |
| 1683 | */ |
| 1684 | u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0; |
| 1685 | |
| 1686 | /* |
| 1687 | * Save the original txq to restore before passing to the driver |
| 1688 | */ |
| 1689 | qdisc_skb_cb(skb)->slave_dev_queue_mapping = skb->queue_mapping; |
| 1690 | |
| 1691 | if (unlikely(txq >= dev->real_num_tx_queues)) { |
| 1692 | do { |
| 1693 | txq -= dev->real_num_tx_queues; |
| 1694 | } while (txq >= dev->real_num_tx_queues); |
| 1695 | } |
| 1696 | return txq; |
| 1697 | } |
| 1698 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1699 | static void team_change_rx_flags(struct net_device *dev, int change) |
| 1700 | { |
| 1701 | struct team *team = netdev_priv(dev); |
| 1702 | struct team_port *port; |
| 1703 | int inc; |
| 1704 | |
| 1705 | rcu_read_lock(); |
| 1706 | list_for_each_entry_rcu(port, &team->port_list, list) { |
| 1707 | if (change & IFF_PROMISC) { |
| 1708 | inc = dev->flags & IFF_PROMISC ? 1 : -1; |
| 1709 | dev_set_promiscuity(port->dev, inc); |
| 1710 | } |
| 1711 | if (change & IFF_ALLMULTI) { |
| 1712 | inc = dev->flags & IFF_ALLMULTI ? 1 : -1; |
| 1713 | dev_set_allmulti(port->dev, inc); |
| 1714 | } |
| 1715 | } |
| 1716 | rcu_read_unlock(); |
| 1717 | } |
| 1718 | |
| 1719 | static void team_set_rx_mode(struct net_device *dev) |
| 1720 | { |
| 1721 | struct team *team = netdev_priv(dev); |
| 1722 | struct team_port *port; |
| 1723 | |
| 1724 | rcu_read_lock(); |
| 1725 | list_for_each_entry_rcu(port, &team->port_list, list) { |
Vlad Yasevich | 72b2703 | 2013-04-15 09:54:26 +0000 | [diff] [blame] | 1726 | dev_uc_sync_multiple(port->dev, dev); |
| 1727 | dev_mc_sync_multiple(port->dev, dev); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1728 | } |
| 1729 | rcu_read_unlock(); |
| 1730 | } |
| 1731 | |
| 1732 | static int team_set_mac_address(struct net_device *dev, void *p) |
| 1733 | { |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 1734 | struct sockaddr *addr = p; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1735 | struct team *team = netdev_priv(dev); |
| 1736 | struct team_port *port; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1737 | |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 1738 | if (dev->type == ARPHRD_ETHER && !is_valid_ether_addr(addr->sa_data)) |
| 1739 | return -EADDRNOTAVAIL; |
| 1740 | memcpy(dev->dev_addr, addr->sa_data, dev->addr_len); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1741 | rcu_read_lock(); |
| 1742 | list_for_each_entry_rcu(port, &team->port_list, list) |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 1743 | if (team->ops.port_change_dev_addr) |
| 1744 | team->ops.port_change_dev_addr(team, port); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1745 | rcu_read_unlock(); |
| 1746 | return 0; |
| 1747 | } |
| 1748 | |
| 1749 | static int team_change_mtu(struct net_device *dev, int new_mtu) |
| 1750 | { |
| 1751 | struct team *team = netdev_priv(dev); |
| 1752 | struct team_port *port; |
| 1753 | int err; |
| 1754 | |
| 1755 | /* |
| 1756 | * Alhough this is reader, it's guarded by team lock. It's not possible |
| 1757 | * to traverse list in reverse under rcu_read_lock |
| 1758 | */ |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 1759 | mutex_lock(&team->lock); |
Jiri Pirko | 9d0d68f | 2014-05-29 20:46:17 +0200 | [diff] [blame] | 1760 | team->port_mtu_change_allowed = true; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1761 | list_for_each_entry(port, &team->port_list, list) { |
| 1762 | err = dev_set_mtu(port->dev, new_mtu); |
| 1763 | if (err) { |
| 1764 | netdev_err(dev, "Device %s failed to change mtu", |
| 1765 | port->dev->name); |
| 1766 | goto unwind; |
| 1767 | } |
| 1768 | } |
Jiri Pirko | 9d0d68f | 2014-05-29 20:46:17 +0200 | [diff] [blame] | 1769 | team->port_mtu_change_allowed = false; |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 1770 | mutex_unlock(&team->lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1771 | |
| 1772 | dev->mtu = new_mtu; |
| 1773 | |
| 1774 | return 0; |
| 1775 | |
| 1776 | unwind: |
| 1777 | list_for_each_entry_continue_reverse(port, &team->port_list, list) |
| 1778 | dev_set_mtu(port->dev, dev->mtu); |
Jiri Pirko | 9d0d68f | 2014-05-29 20:46:17 +0200 | [diff] [blame] | 1779 | team->port_mtu_change_allowed = false; |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 1780 | mutex_unlock(&team->lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1781 | |
| 1782 | return err; |
| 1783 | } |
| 1784 | |
| 1785 | static struct rtnl_link_stats64 * |
| 1786 | team_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats) |
| 1787 | { |
| 1788 | struct team *team = netdev_priv(dev); |
| 1789 | struct team_pcpu_stats *p; |
| 1790 | u64 rx_packets, rx_bytes, rx_multicast, tx_packets, tx_bytes; |
| 1791 | u32 rx_dropped = 0, tx_dropped = 0; |
| 1792 | unsigned int start; |
| 1793 | int i; |
| 1794 | |
| 1795 | for_each_possible_cpu(i) { |
| 1796 | p = per_cpu_ptr(team->pcpu_stats, i); |
| 1797 | do { |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 1798 | start = u64_stats_fetch_begin_irq(&p->syncp); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1799 | rx_packets = p->rx_packets; |
| 1800 | rx_bytes = p->rx_bytes; |
| 1801 | rx_multicast = p->rx_multicast; |
| 1802 | tx_packets = p->tx_packets; |
| 1803 | tx_bytes = p->tx_bytes; |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 1804 | } while (u64_stats_fetch_retry_irq(&p->syncp, start)); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1805 | |
| 1806 | stats->rx_packets += rx_packets; |
| 1807 | stats->rx_bytes += rx_bytes; |
| 1808 | stats->multicast += rx_multicast; |
| 1809 | stats->tx_packets += tx_packets; |
| 1810 | stats->tx_bytes += tx_bytes; |
| 1811 | /* |
| 1812 | * rx_dropped & tx_dropped are u32, updated |
| 1813 | * without syncp protection. |
| 1814 | */ |
| 1815 | rx_dropped += p->rx_dropped; |
| 1816 | tx_dropped += p->tx_dropped; |
| 1817 | } |
| 1818 | stats->rx_dropped = rx_dropped; |
| 1819 | stats->tx_dropped = tx_dropped; |
| 1820 | return stats; |
| 1821 | } |
| 1822 | |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 1823 | static int team_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1824 | { |
| 1825 | struct team *team = netdev_priv(dev); |
| 1826 | struct team_port *port; |
Jiri Pirko | 87002b0 | 2011-12-08 04:11:17 +0000 | [diff] [blame] | 1827 | int err; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1828 | |
Jiri Pirko | 87002b0 | 2011-12-08 04:11:17 +0000 | [diff] [blame] | 1829 | /* |
| 1830 | * Alhough this is reader, it's guarded by team lock. It's not possible |
| 1831 | * to traverse list in reverse under rcu_read_lock |
| 1832 | */ |
| 1833 | mutex_lock(&team->lock); |
| 1834 | list_for_each_entry(port, &team->port_list, list) { |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 1835 | err = vlan_vid_add(port->dev, proto, vid); |
Jiri Pirko | 87002b0 | 2011-12-08 04:11:17 +0000 | [diff] [blame] | 1836 | if (err) |
| 1837 | goto unwind; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1838 | } |
Jiri Pirko | 87002b0 | 2011-12-08 04:11:17 +0000 | [diff] [blame] | 1839 | mutex_unlock(&team->lock); |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 1840 | |
| 1841 | return 0; |
Jiri Pirko | 87002b0 | 2011-12-08 04:11:17 +0000 | [diff] [blame] | 1842 | |
| 1843 | unwind: |
| 1844 | list_for_each_entry_continue_reverse(port, &team->port_list, list) |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 1845 | vlan_vid_del(port->dev, proto, vid); |
Jiri Pirko | 87002b0 | 2011-12-08 04:11:17 +0000 | [diff] [blame] | 1846 | mutex_unlock(&team->lock); |
| 1847 | |
| 1848 | return err; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1849 | } |
| 1850 | |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 1851 | static int team_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1852 | { |
| 1853 | struct team *team = netdev_priv(dev); |
| 1854 | struct team_port *port; |
| 1855 | |
| 1856 | rcu_read_lock(); |
Jiri Pirko | 87002b0 | 2011-12-08 04:11:17 +0000 | [diff] [blame] | 1857 | list_for_each_entry_rcu(port, &team->port_list, list) |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 1858 | vlan_vid_del(port->dev, proto, vid); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1859 | rcu_read_unlock(); |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 1860 | |
| 1861 | return 0; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1862 | } |
| 1863 | |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1864 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1865 | static void team_poll_controller(struct net_device *dev) |
| 1866 | { |
| 1867 | } |
| 1868 | |
| 1869 | static void __team_netpoll_cleanup(struct team *team) |
| 1870 | { |
| 1871 | struct team_port *port; |
| 1872 | |
| 1873 | list_for_each_entry(port, &team->port_list, list) |
| 1874 | team_port_disable_netpoll(port); |
| 1875 | } |
| 1876 | |
| 1877 | static void team_netpoll_cleanup(struct net_device *dev) |
| 1878 | { |
| 1879 | struct team *team = netdev_priv(dev); |
| 1880 | |
| 1881 | mutex_lock(&team->lock); |
| 1882 | __team_netpoll_cleanup(team); |
| 1883 | mutex_unlock(&team->lock); |
| 1884 | } |
| 1885 | |
| 1886 | static int team_netpoll_setup(struct net_device *dev, |
Eric W. Biederman | a8779ec | 2014-03-27 15:36:38 -0700 | [diff] [blame] | 1887 | struct netpoll_info *npifo) |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1888 | { |
| 1889 | struct team *team = netdev_priv(dev); |
| 1890 | struct team_port *port; |
Jiri Pirko | 3324d02 | 2012-07-24 01:20:48 +0000 | [diff] [blame] | 1891 | int err = 0; |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1892 | |
| 1893 | mutex_lock(&team->lock); |
| 1894 | list_for_each_entry(port, &team->port_list, list) { |
Eric W. Biederman | a8779ec | 2014-03-27 15:36:38 -0700 | [diff] [blame] | 1895 | err = team_port_enable_netpoll(team, port); |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1896 | if (err) { |
| 1897 | __team_netpoll_cleanup(team); |
| 1898 | break; |
| 1899 | } |
| 1900 | } |
| 1901 | mutex_unlock(&team->lock); |
| 1902 | return err; |
| 1903 | } |
| 1904 | #endif |
| 1905 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1906 | static int team_add_slave(struct net_device *dev, struct net_device *port_dev) |
| 1907 | { |
| 1908 | struct team *team = netdev_priv(dev); |
| 1909 | int err; |
| 1910 | |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 1911 | mutex_lock(&team->lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1912 | err = team_port_add(team, port_dev); |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 1913 | mutex_unlock(&team->lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1914 | return err; |
| 1915 | } |
| 1916 | |
| 1917 | static int team_del_slave(struct net_device *dev, struct net_device *port_dev) |
| 1918 | { |
| 1919 | struct team *team = netdev_priv(dev); |
| 1920 | int err; |
| 1921 | |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 1922 | mutex_lock(&team->lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1923 | err = team_port_del(team, port_dev); |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 1924 | mutex_unlock(&team->lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1925 | return err; |
| 1926 | } |
| 1927 | |
Jiri Pirko | 234a8fd | 2011-11-17 04:16:04 +0000 | [diff] [blame] | 1928 | static netdev_features_t team_fix_features(struct net_device *dev, |
| 1929 | netdev_features_t features) |
| 1930 | { |
| 1931 | struct team_port *port; |
| 1932 | struct team *team = netdev_priv(dev); |
| 1933 | netdev_features_t mask; |
| 1934 | |
| 1935 | mask = features; |
| 1936 | features &= ~NETIF_F_ONE_FOR_ALL; |
| 1937 | features |= NETIF_F_ALL_FOR_ALL; |
| 1938 | |
| 1939 | rcu_read_lock(); |
| 1940 | list_for_each_entry_rcu(port, &team->port_list, list) { |
| 1941 | features = netdev_increment_features(features, |
| 1942 | port->dev->features, |
| 1943 | mask); |
| 1944 | } |
| 1945 | rcu_read_unlock(); |
| 1946 | return features; |
| 1947 | } |
| 1948 | |
Flavio Leitner | 4cafe37 | 2012-12-29 15:31:01 +0000 | [diff] [blame] | 1949 | static int team_change_carrier(struct net_device *dev, bool new_carrier) |
| 1950 | { |
Flavio Leitner | e185483 | 2013-02-05 09:30:55 +0000 | [diff] [blame] | 1951 | struct team *team = netdev_priv(dev); |
| 1952 | |
| 1953 | team->user_carrier_enabled = true; |
| 1954 | |
Flavio Leitner | 4cafe37 | 2012-12-29 15:31:01 +0000 | [diff] [blame] | 1955 | if (new_carrier) |
| 1956 | netif_carrier_on(dev); |
| 1957 | else |
| 1958 | netif_carrier_off(dev); |
| 1959 | return 0; |
| 1960 | } |
| 1961 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1962 | static const struct net_device_ops team_netdev_ops = { |
| 1963 | .ndo_init = team_init, |
| 1964 | .ndo_uninit = team_uninit, |
| 1965 | .ndo_open = team_open, |
| 1966 | .ndo_stop = team_close, |
| 1967 | .ndo_start_xmit = team_xmit, |
Jiri Pirko | 6c85f2b | 2012-07-20 02:28:51 +0000 | [diff] [blame] | 1968 | .ndo_select_queue = team_select_queue, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1969 | .ndo_change_rx_flags = team_change_rx_flags, |
| 1970 | .ndo_set_rx_mode = team_set_rx_mode, |
| 1971 | .ndo_set_mac_address = team_set_mac_address, |
| 1972 | .ndo_change_mtu = team_change_mtu, |
| 1973 | .ndo_get_stats64 = team_get_stats64, |
| 1974 | .ndo_vlan_rx_add_vid = team_vlan_rx_add_vid, |
| 1975 | .ndo_vlan_rx_kill_vid = team_vlan_rx_kill_vid, |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 1976 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1977 | .ndo_poll_controller = team_poll_controller, |
| 1978 | .ndo_netpoll_setup = team_netpoll_setup, |
| 1979 | .ndo_netpoll_cleanup = team_netpoll_cleanup, |
| 1980 | #endif |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1981 | .ndo_add_slave = team_add_slave, |
| 1982 | .ndo_del_slave = team_del_slave, |
Jiri Pirko | 234a8fd | 2011-11-17 04:16:04 +0000 | [diff] [blame] | 1983 | .ndo_fix_features = team_fix_features, |
Flavio Leitner | 4cafe37 | 2012-12-29 15:31:01 +0000 | [diff] [blame] | 1984 | .ndo_change_carrier = team_change_carrier, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1985 | }; |
| 1986 | |
Flavio Leitner | 7f51c58 | 2012-12-29 16:37:33 +0000 | [diff] [blame] | 1987 | /*********************** |
| 1988 | * ethtool interface |
| 1989 | ***********************/ |
| 1990 | |
| 1991 | static void team_ethtool_get_drvinfo(struct net_device *dev, |
| 1992 | struct ethtool_drvinfo *drvinfo) |
| 1993 | { |
Flavio Leitner | 3066af5 | 2013-01-05 02:53:10 +0000 | [diff] [blame] | 1994 | strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver)); |
| 1995 | strlcpy(drvinfo->version, UTS_RELEASE, sizeof(drvinfo->version)); |
Flavio Leitner | 7f51c58 | 2012-12-29 16:37:33 +0000 | [diff] [blame] | 1996 | } |
| 1997 | |
| 1998 | static const struct ethtool_ops team_ethtool_ops = { |
| 1999 | .get_drvinfo = team_ethtool_get_drvinfo, |
| 2000 | .get_link = ethtool_op_get_link, |
| 2001 | }; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2002 | |
| 2003 | /*********************** |
| 2004 | * rt netlink interface |
| 2005 | ***********************/ |
| 2006 | |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 2007 | static void team_setup_by_port(struct net_device *dev, |
| 2008 | struct net_device *port_dev) |
| 2009 | { |
| 2010 | dev->header_ops = port_dev->header_ops; |
| 2011 | dev->type = port_dev->type; |
| 2012 | dev->hard_header_len = port_dev->hard_header_len; |
| 2013 | dev->addr_len = port_dev->addr_len; |
| 2014 | dev->mtu = port_dev->mtu; |
| 2015 | memcpy(dev->broadcast, port_dev->broadcast, port_dev->addr_len); |
Bjørn Mork | 93af735 | 2013-08-30 18:08:48 +0200 | [diff] [blame] | 2016 | eth_hw_addr_inherit(dev, port_dev); |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 2017 | } |
| 2018 | |
| 2019 | static int team_dev_type_check_change(struct net_device *dev, |
| 2020 | struct net_device *port_dev) |
| 2021 | { |
| 2022 | struct team *team = netdev_priv(dev); |
| 2023 | char *portname = port_dev->name; |
| 2024 | int err; |
| 2025 | |
| 2026 | if (dev->type == port_dev->type) |
| 2027 | return 0; |
| 2028 | if (!list_empty(&team->port_list)) { |
| 2029 | netdev_err(dev, "Device %s is of different type\n", portname); |
| 2030 | return -EBUSY; |
| 2031 | } |
| 2032 | err = call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE, dev); |
| 2033 | err = notifier_to_errno(err); |
| 2034 | if (err) { |
| 2035 | netdev_err(dev, "Refused to change device type\n"); |
| 2036 | return err; |
| 2037 | } |
| 2038 | dev_uc_flush(dev); |
| 2039 | dev_mc_flush(dev); |
| 2040 | team_setup_by_port(dev, port_dev); |
| 2041 | call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE, dev); |
| 2042 | return 0; |
| 2043 | } |
| 2044 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2045 | static void team_setup(struct net_device *dev) |
| 2046 | { |
| 2047 | ether_setup(dev); |
| 2048 | |
| 2049 | dev->netdev_ops = &team_netdev_ops; |
Flavio Leitner | 7f51c58 | 2012-12-29 16:37:33 +0000 | [diff] [blame] | 2050 | dev->ethtool_ops = &team_ethtool_ops; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2051 | dev->destructor = team_destructor; |
| 2052 | dev->tx_queue_len = 0; |
| 2053 | dev->flags |= IFF_MULTICAST; |
| 2054 | dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING); |
| 2055 | |
| 2056 | /* |
| 2057 | * Indicate we support unicast address filtering. That way core won't |
| 2058 | * bring us to promisc mode in case a unicast addr is added. |
| 2059 | * Let this up to underlay drivers. |
| 2060 | */ |
Jiri Pirko | 5a1d1c8 | 2012-06-29 05:10:07 +0000 | [diff] [blame] | 2061 | dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2062 | |
| 2063 | dev->features |= NETIF_F_LLTX; |
| 2064 | dev->features |= NETIF_F_GRO; |
Weilong Chen | 99301ba | 2014-01-23 11:07:22 +0800 | [diff] [blame] | 2065 | |
| 2066 | /* Don't allow team devices to change network namespaces. */ |
| 2067 | dev->features |= NETIF_F_NETNS_LOCAL; |
| 2068 | |
Jiri Pirko | 3ed7147 | 2012-11-28 06:13:10 +0000 | [diff] [blame] | 2069 | dev->hw_features = TEAM_VLAN_FEATURES | |
Patrick McHardy | f646968 | 2013-04-19 02:04:27 +0000 | [diff] [blame] | 2070 | NETIF_F_HW_VLAN_CTAG_TX | |
| 2071 | NETIF_F_HW_VLAN_CTAG_RX | |
| 2072 | NETIF_F_HW_VLAN_CTAG_FILTER; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2073 | |
Jiri Pirko | 3ed7147 | 2012-11-28 06:13:10 +0000 | [diff] [blame] | 2074 | dev->hw_features &= ~(NETIF_F_ALL_CSUM & ~NETIF_F_HW_CSUM); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2075 | dev->features |= dev->hw_features; |
| 2076 | } |
| 2077 | |
| 2078 | static int team_newlink(struct net *src_net, struct net_device *dev, |
| 2079 | struct nlattr *tb[], struct nlattr *data[]) |
| 2080 | { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2081 | if (tb[IFLA_ADDRESS] == NULL) |
Danny Kukawka | 7ce5d22 | 2012-02-15 06:45:40 +0000 | [diff] [blame] | 2082 | eth_hw_addr_random(dev); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2083 | |
Toshiaki Makita | ff204cc | 2014-08-05 15:58:50 +0900 | [diff] [blame] | 2084 | return register_netdevice(dev); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2085 | } |
| 2086 | |
| 2087 | static int team_validate(struct nlattr *tb[], struct nlattr *data[]) |
| 2088 | { |
| 2089 | if (tb[IFLA_ADDRESS]) { |
| 2090 | if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) |
| 2091 | return -EINVAL; |
| 2092 | if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) |
| 2093 | return -EADDRNOTAVAIL; |
| 2094 | } |
| 2095 | return 0; |
| 2096 | } |
| 2097 | |
Jiri Pirko | 6c85f2b | 2012-07-20 02:28:51 +0000 | [diff] [blame] | 2098 | static unsigned int team_get_num_tx_queues(void) |
| 2099 | { |
| 2100 | return TEAM_DEFAULT_NUM_TX_QUEUES; |
| 2101 | } |
| 2102 | |
| 2103 | static unsigned int team_get_num_rx_queues(void) |
| 2104 | { |
| 2105 | return TEAM_DEFAULT_NUM_RX_QUEUES; |
| 2106 | } |
| 2107 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2108 | static struct rtnl_link_ops team_link_ops __read_mostly = { |
Jiri Pirko | 6c85f2b | 2012-07-20 02:28:51 +0000 | [diff] [blame] | 2109 | .kind = DRV_NAME, |
| 2110 | .priv_size = sizeof(struct team), |
| 2111 | .setup = team_setup, |
| 2112 | .newlink = team_newlink, |
| 2113 | .validate = team_validate, |
| 2114 | .get_num_tx_queues = team_get_num_tx_queues, |
| 2115 | .get_num_rx_queues = team_get_num_rx_queues, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2116 | }; |
| 2117 | |
| 2118 | |
| 2119 | /*********************************** |
| 2120 | * Generic netlink custom interface |
| 2121 | ***********************************/ |
| 2122 | |
| 2123 | static struct genl_family team_nl_family = { |
| 2124 | .id = GENL_ID_GENERATE, |
| 2125 | .name = TEAM_GENL_NAME, |
| 2126 | .version = TEAM_GENL_VERSION, |
| 2127 | .maxattr = TEAM_ATTR_MAX, |
| 2128 | .netnsok = true, |
| 2129 | }; |
| 2130 | |
| 2131 | static const struct nla_policy team_nl_policy[TEAM_ATTR_MAX + 1] = { |
| 2132 | [TEAM_ATTR_UNSPEC] = { .type = NLA_UNSPEC, }, |
| 2133 | [TEAM_ATTR_TEAM_IFINDEX] = { .type = NLA_U32 }, |
| 2134 | [TEAM_ATTR_LIST_OPTION] = { .type = NLA_NESTED }, |
| 2135 | [TEAM_ATTR_LIST_PORT] = { .type = NLA_NESTED }, |
| 2136 | }; |
| 2137 | |
| 2138 | static const struct nla_policy |
| 2139 | team_nl_option_policy[TEAM_ATTR_OPTION_MAX + 1] = { |
| 2140 | [TEAM_ATTR_OPTION_UNSPEC] = { .type = NLA_UNSPEC, }, |
| 2141 | [TEAM_ATTR_OPTION_NAME] = { |
| 2142 | .type = NLA_STRING, |
| 2143 | .len = TEAM_STRING_MAX_LEN, |
| 2144 | }, |
| 2145 | [TEAM_ATTR_OPTION_CHANGED] = { .type = NLA_FLAG }, |
| 2146 | [TEAM_ATTR_OPTION_TYPE] = { .type = NLA_U8 }, |
Jiri Pirko | 2615598 | 2012-04-04 12:16:26 +0000 | [diff] [blame] | 2147 | [TEAM_ATTR_OPTION_DATA] = { .type = NLA_BINARY }, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2148 | }; |
| 2149 | |
| 2150 | static int team_nl_cmd_noop(struct sk_buff *skb, struct genl_info *info) |
| 2151 | { |
| 2152 | struct sk_buff *msg; |
| 2153 | void *hdr; |
| 2154 | int err; |
| 2155 | |
Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 2156 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2157 | if (!msg) |
| 2158 | return -ENOMEM; |
| 2159 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2160 | hdr = genlmsg_put(msg, info->snd_portid, info->snd_seq, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2161 | &team_nl_family, 0, TEAM_CMD_NOOP); |
Wei Yongjun | a326e6d | 2012-09-24 18:29:35 +0000 | [diff] [blame] | 2162 | if (!hdr) { |
| 2163 | err = -EMSGSIZE; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2164 | goto err_msg_put; |
| 2165 | } |
| 2166 | |
| 2167 | genlmsg_end(msg, hdr); |
| 2168 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2169 | return genlmsg_unicast(genl_info_net(info), msg, info->snd_portid); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2170 | |
| 2171 | err_msg_put: |
| 2172 | nlmsg_free(msg); |
| 2173 | |
| 2174 | return err; |
| 2175 | } |
| 2176 | |
| 2177 | /* |
| 2178 | * Netlink cmd functions should be locked by following two functions. |
Jiri Pirko | 8c0713a | 2011-11-16 11:55:54 +0000 | [diff] [blame] | 2179 | * Since dev gets held here, that ensures dev won't disappear in between. |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2180 | */ |
| 2181 | static struct team *team_nl_team_get(struct genl_info *info) |
| 2182 | { |
| 2183 | struct net *net = genl_info_net(info); |
| 2184 | int ifindex; |
| 2185 | struct net_device *dev; |
| 2186 | struct team *team; |
| 2187 | |
| 2188 | if (!info->attrs[TEAM_ATTR_TEAM_IFINDEX]) |
| 2189 | return NULL; |
| 2190 | |
| 2191 | ifindex = nla_get_u32(info->attrs[TEAM_ATTR_TEAM_IFINDEX]); |
Jiri Pirko | 8c0713a | 2011-11-16 11:55:54 +0000 | [diff] [blame] | 2192 | dev = dev_get_by_index(net, ifindex); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2193 | if (!dev || dev->netdev_ops != &team_netdev_ops) { |
Jiri Pirko | 8c0713a | 2011-11-16 11:55:54 +0000 | [diff] [blame] | 2194 | if (dev) |
| 2195 | dev_put(dev); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2196 | return NULL; |
| 2197 | } |
| 2198 | |
| 2199 | team = netdev_priv(dev); |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 2200 | mutex_lock(&team->lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2201 | return team; |
| 2202 | } |
| 2203 | |
| 2204 | static void team_nl_team_put(struct team *team) |
| 2205 | { |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 2206 | mutex_unlock(&team->lock); |
Jiri Pirko | 8c0713a | 2011-11-16 11:55:54 +0000 | [diff] [blame] | 2207 | dev_put(team->dev); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2208 | } |
| 2209 | |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2210 | typedef int team_nl_send_func_t(struct sk_buff *skb, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2211 | struct team *team, u32 portid); |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2212 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2213 | static int team_nl_send_unicast(struct sk_buff *skb, struct team *team, u32 portid) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2214 | { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2215 | return genlmsg_unicast(dev_net(team->dev), skb, portid); |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2216 | } |
| 2217 | |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2218 | static int team_nl_fill_one_option_get(struct sk_buff *skb, struct team *team, |
| 2219 | struct team_option_inst *opt_inst) |
| 2220 | { |
| 2221 | struct nlattr *option_item; |
| 2222 | struct team_option *option = opt_inst->option; |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2223 | struct team_option_inst_info *opt_inst_info = &opt_inst->info; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2224 | struct team_gsetter_ctx ctx; |
| 2225 | int err; |
| 2226 | |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2227 | ctx.info = opt_inst_info; |
| 2228 | err = team_option_get(team, opt_inst, &ctx); |
| 2229 | if (err) |
| 2230 | return err; |
| 2231 | |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2232 | option_item = nla_nest_start(skb, TEAM_ATTR_ITEM_OPTION); |
| 2233 | if (!option_item) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2234 | return -EMSGSIZE; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2235 | |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2236 | if (nla_put_string(skb, TEAM_ATTR_OPTION_NAME, option->name)) |
| 2237 | goto nest_cancel; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2238 | if (opt_inst_info->port && |
| 2239 | nla_put_u32(skb, TEAM_ATTR_OPTION_PORT_IFINDEX, |
| 2240 | opt_inst_info->port->dev->ifindex)) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2241 | goto nest_cancel; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2242 | if (opt_inst->option->array_size && |
| 2243 | nla_put_u32(skb, TEAM_ATTR_OPTION_ARRAY_INDEX, |
| 2244 | opt_inst_info->array_index)) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2245 | goto nest_cancel; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2246 | |
| 2247 | switch (option->type) { |
| 2248 | case TEAM_OPTION_TYPE_U32: |
| 2249 | if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_U32)) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2250 | goto nest_cancel; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2251 | if (nla_put_u32(skb, TEAM_ATTR_OPTION_DATA, ctx.data.u32_val)) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2252 | goto nest_cancel; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2253 | break; |
| 2254 | case TEAM_OPTION_TYPE_STRING: |
| 2255 | if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_STRING)) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2256 | goto nest_cancel; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2257 | if (nla_put_string(skb, TEAM_ATTR_OPTION_DATA, |
| 2258 | ctx.data.str_val)) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2259 | goto nest_cancel; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2260 | break; |
| 2261 | case TEAM_OPTION_TYPE_BINARY: |
| 2262 | if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_BINARY)) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2263 | goto nest_cancel; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2264 | if (nla_put(skb, TEAM_ATTR_OPTION_DATA, ctx.data.bin_val.len, |
| 2265 | ctx.data.bin_val.ptr)) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2266 | goto nest_cancel; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2267 | break; |
| 2268 | case TEAM_OPTION_TYPE_BOOL: |
| 2269 | if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_FLAG)) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2270 | goto nest_cancel; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2271 | if (ctx.data.bool_val && |
| 2272 | nla_put_flag(skb, TEAM_ATTR_OPTION_DATA)) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2273 | goto nest_cancel; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2274 | break; |
Jiri Pirko | 6982163 | 2012-07-27 06:28:53 +0000 | [diff] [blame] | 2275 | case TEAM_OPTION_TYPE_S32: |
| 2276 | if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_S32)) |
| 2277 | goto nest_cancel; |
| 2278 | if (nla_put_s32(skb, TEAM_ATTR_OPTION_DATA, ctx.data.s32_val)) |
| 2279 | goto nest_cancel; |
| 2280 | break; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2281 | default: |
| 2282 | BUG(); |
| 2283 | } |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2284 | if (opt_inst->removed && nla_put_flag(skb, TEAM_ATTR_OPTION_REMOVED)) |
| 2285 | goto nest_cancel; |
| 2286 | if (opt_inst->changed) { |
| 2287 | if (nla_put_flag(skb, TEAM_ATTR_OPTION_CHANGED)) |
| 2288 | goto nest_cancel; |
| 2289 | opt_inst->changed = false; |
| 2290 | } |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2291 | nla_nest_end(skb, option_item); |
| 2292 | return 0; |
| 2293 | |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2294 | nest_cancel: |
| 2295 | nla_nest_cancel(skb, option_item); |
| 2296 | return -EMSGSIZE; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2297 | } |
| 2298 | |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2299 | static int __send_and_alloc_skb(struct sk_buff **pskb, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2300 | struct team *team, u32 portid, |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2301 | team_nl_send_func_t *send_func) |
| 2302 | { |
| 2303 | int err; |
| 2304 | |
| 2305 | if (*pskb) { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2306 | err = send_func(*pskb, team, portid); |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2307 | if (err) |
| 2308 | return err; |
| 2309 | } |
Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 2310 | *pskb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL); |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2311 | if (!*pskb) |
| 2312 | return -ENOMEM; |
| 2313 | return 0; |
| 2314 | } |
| 2315 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2316 | static int team_nl_send_options_get(struct team *team, u32 portid, u32 seq, |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2317 | int flags, team_nl_send_func_t *send_func, |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2318 | struct list_head *sel_opt_inst_list) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2319 | { |
| 2320 | struct nlattr *option_list; |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2321 | struct nlmsghdr *nlh; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2322 | void *hdr; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2323 | struct team_option_inst *opt_inst; |
| 2324 | int err; |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2325 | struct sk_buff *skb = NULL; |
| 2326 | bool incomplete; |
| 2327 | int i; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2328 | |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2329 | opt_inst = list_first_entry(sel_opt_inst_list, |
| 2330 | struct team_option_inst, tmp_list); |
| 2331 | |
| 2332 | start_again: |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2333 | err = __send_and_alloc_skb(&skb, team, portid, send_func); |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2334 | if (err) |
| 2335 | return err; |
| 2336 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2337 | hdr = genlmsg_put(skb, portid, seq, &team_nl_family, flags | NLM_F_MULTI, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2338 | TEAM_CMD_OPTIONS_GET); |
Wei Yongjun | a326e6d | 2012-09-24 18:29:35 +0000 | [diff] [blame] | 2339 | if (!hdr) |
| 2340 | return -EMSGSIZE; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2341 | |
David S. Miller | 86ebb02 | 2012-04-01 20:25:18 -0400 | [diff] [blame] | 2342 | if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex)) |
| 2343 | goto nla_put_failure; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2344 | option_list = nla_nest_start(skb, TEAM_ATTR_LIST_OPTION); |
| 2345 | if (!option_list) |
Jiri Pirko | 75db986 | 2012-06-19 05:54:12 +0000 | [diff] [blame] | 2346 | goto nla_put_failure; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2347 | |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2348 | i = 0; |
| 2349 | incomplete = false; |
| 2350 | list_for_each_entry_from(opt_inst, sel_opt_inst_list, tmp_list) { |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2351 | err = team_nl_fill_one_option_get(skb, team, opt_inst); |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2352 | if (err) { |
| 2353 | if (err == -EMSGSIZE) { |
| 2354 | if (!i) |
| 2355 | goto errout; |
| 2356 | incomplete = true; |
| 2357 | break; |
| 2358 | } |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2359 | goto errout; |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2360 | } |
| 2361 | i++; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2362 | } |
| 2363 | |
| 2364 | nla_nest_end(skb, option_list); |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2365 | genlmsg_end(skb, hdr); |
| 2366 | if (incomplete) |
| 2367 | goto start_again; |
| 2368 | |
| 2369 | send_done: |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2370 | nlh = nlmsg_put(skb, portid, seq, NLMSG_DONE, 0, flags | NLM_F_MULTI); |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2371 | if (!nlh) { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2372 | err = __send_and_alloc_skb(&skb, team, portid, send_func); |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2373 | if (err) |
| 2374 | goto errout; |
| 2375 | goto send_done; |
| 2376 | } |
| 2377 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2378 | return send_func(skb, team, portid); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2379 | |
| 2380 | nla_put_failure: |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2381 | err = -EMSGSIZE; |
| 2382 | errout: |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2383 | genlmsg_cancel(skb, hdr); |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2384 | nlmsg_free(skb); |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2385 | return err; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2386 | } |
| 2387 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2388 | static int team_nl_cmd_options_get(struct sk_buff *skb, struct genl_info *info) |
| 2389 | { |
| 2390 | struct team *team; |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2391 | struct team_option_inst *opt_inst; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2392 | int err; |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2393 | LIST_HEAD(sel_opt_inst_list); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2394 | |
| 2395 | team = team_nl_team_get(info); |
| 2396 | if (!team) |
| 2397 | return -EINVAL; |
| 2398 | |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2399 | list_for_each_entry(opt_inst, &team->option_inst_list, list) |
| 2400 | list_add_tail(&opt_inst->tmp_list, &sel_opt_inst_list); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2401 | err = team_nl_send_options_get(team, info->snd_portid, info->snd_seq, |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2402 | NLM_F_ACK, team_nl_send_unicast, |
| 2403 | &sel_opt_inst_list); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2404 | |
| 2405 | team_nl_team_put(team); |
| 2406 | |
| 2407 | return err; |
| 2408 | } |
| 2409 | |
Jiri Pirko | 2fcdb2c | 2012-06-19 05:54:20 +0000 | [diff] [blame] | 2410 | static int team_nl_send_event_options_get(struct team *team, |
| 2411 | struct list_head *sel_opt_inst_list); |
| 2412 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2413 | static int team_nl_cmd_options_set(struct sk_buff *skb, struct genl_info *info) |
| 2414 | { |
| 2415 | struct team *team; |
| 2416 | int err = 0; |
| 2417 | int i; |
| 2418 | struct nlattr *nl_option; |
Jiri Pirko | 2fcdb2c | 2012-06-19 05:54:20 +0000 | [diff] [blame] | 2419 | LIST_HEAD(opt_inst_list); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2420 | |
| 2421 | team = team_nl_team_get(info); |
| 2422 | if (!team) |
| 2423 | return -EINVAL; |
| 2424 | |
| 2425 | err = -EINVAL; |
| 2426 | if (!info->attrs[TEAM_ATTR_LIST_OPTION]) { |
| 2427 | err = -EINVAL; |
| 2428 | goto team_put; |
| 2429 | } |
| 2430 | |
| 2431 | nla_for_each_nested(nl_option, info->attrs[TEAM_ATTR_LIST_OPTION], i) { |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2432 | struct nlattr *opt_attrs[TEAM_ATTR_OPTION_MAX + 1]; |
Jiri Pirko | b130332 | 2012-06-19 05:54:08 +0000 | [diff] [blame] | 2433 | struct nlattr *attr; |
Jiri Pirko | 14f066b | 2012-04-10 05:15:43 +0000 | [diff] [blame] | 2434 | struct nlattr *attr_data; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2435 | enum team_option_type opt_type; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2436 | int opt_port_ifindex = 0; /* != 0 for per-port options */ |
Jiri Pirko | b130332 | 2012-06-19 05:54:08 +0000 | [diff] [blame] | 2437 | u32 opt_array_index = 0; |
| 2438 | bool opt_is_array = false; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2439 | struct team_option_inst *opt_inst; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2440 | char *opt_name; |
| 2441 | bool opt_found = false; |
| 2442 | |
| 2443 | if (nla_type(nl_option) != TEAM_ATTR_ITEM_OPTION) { |
| 2444 | err = -EINVAL; |
| 2445 | goto team_put; |
| 2446 | } |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2447 | err = nla_parse_nested(opt_attrs, TEAM_ATTR_OPTION_MAX, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2448 | nl_option, team_nl_option_policy); |
| 2449 | if (err) |
| 2450 | goto team_put; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2451 | if (!opt_attrs[TEAM_ATTR_OPTION_NAME] || |
Jiri Pirko | 14f066b | 2012-04-10 05:15:43 +0000 | [diff] [blame] | 2452 | !opt_attrs[TEAM_ATTR_OPTION_TYPE]) { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2453 | err = -EINVAL; |
| 2454 | goto team_put; |
| 2455 | } |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2456 | switch (nla_get_u8(opt_attrs[TEAM_ATTR_OPTION_TYPE])) { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2457 | case NLA_U32: |
| 2458 | opt_type = TEAM_OPTION_TYPE_U32; |
| 2459 | break; |
| 2460 | case NLA_STRING: |
| 2461 | opt_type = TEAM_OPTION_TYPE_STRING; |
| 2462 | break; |
Jiri Pirko | 2615598 | 2012-04-04 12:16:26 +0000 | [diff] [blame] | 2463 | case NLA_BINARY: |
| 2464 | opt_type = TEAM_OPTION_TYPE_BINARY; |
| 2465 | break; |
Jiri Pirko | 14f066b | 2012-04-10 05:15:43 +0000 | [diff] [blame] | 2466 | case NLA_FLAG: |
| 2467 | opt_type = TEAM_OPTION_TYPE_BOOL; |
| 2468 | break; |
Jiri Pirko | 6982163 | 2012-07-27 06:28:53 +0000 | [diff] [blame] | 2469 | case NLA_S32: |
| 2470 | opt_type = TEAM_OPTION_TYPE_S32; |
| 2471 | break; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2472 | default: |
| 2473 | goto team_put; |
| 2474 | } |
| 2475 | |
Jiri Pirko | 14f066b | 2012-04-10 05:15:43 +0000 | [diff] [blame] | 2476 | attr_data = opt_attrs[TEAM_ATTR_OPTION_DATA]; |
| 2477 | if (opt_type != TEAM_OPTION_TYPE_BOOL && !attr_data) { |
| 2478 | err = -EINVAL; |
| 2479 | goto team_put; |
| 2480 | } |
| 2481 | |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2482 | opt_name = nla_data(opt_attrs[TEAM_ATTR_OPTION_NAME]); |
Jiri Pirko | b130332 | 2012-06-19 05:54:08 +0000 | [diff] [blame] | 2483 | attr = opt_attrs[TEAM_ATTR_OPTION_PORT_IFINDEX]; |
| 2484 | if (attr) |
| 2485 | opt_port_ifindex = nla_get_u32(attr); |
| 2486 | |
| 2487 | attr = opt_attrs[TEAM_ATTR_OPTION_ARRAY_INDEX]; |
| 2488 | if (attr) { |
| 2489 | opt_is_array = true; |
| 2490 | opt_array_index = nla_get_u32(attr); |
| 2491 | } |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2492 | |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2493 | list_for_each_entry(opt_inst, &team->option_inst_list, list) { |
| 2494 | struct team_option *option = opt_inst->option; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2495 | struct team_gsetter_ctx ctx; |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 2496 | struct team_option_inst_info *opt_inst_info; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2497 | int tmp_ifindex; |
| 2498 | |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 2499 | opt_inst_info = &opt_inst->info; |
| 2500 | tmp_ifindex = opt_inst_info->port ? |
| 2501 | opt_inst_info->port->dev->ifindex : 0; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2502 | if (option->type != opt_type || |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2503 | strcmp(option->name, opt_name) || |
Jiri Pirko | b130332 | 2012-06-19 05:54:08 +0000 | [diff] [blame] | 2504 | tmp_ifindex != opt_port_ifindex || |
| 2505 | (option->array_size && !opt_is_array) || |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 2506 | opt_inst_info->array_index != opt_array_index) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2507 | continue; |
| 2508 | opt_found = true; |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 2509 | ctx.info = opt_inst_info; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2510 | switch (opt_type) { |
| 2511 | case TEAM_OPTION_TYPE_U32: |
Jiri Pirko | 14f066b | 2012-04-10 05:15:43 +0000 | [diff] [blame] | 2512 | ctx.data.u32_val = nla_get_u32(attr_data); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2513 | break; |
| 2514 | case TEAM_OPTION_TYPE_STRING: |
Jiri Pirko | 14f066b | 2012-04-10 05:15:43 +0000 | [diff] [blame] | 2515 | if (nla_len(attr_data) > TEAM_STRING_MAX_LEN) { |
Jiri Pirko | 2615598 | 2012-04-04 12:16:26 +0000 | [diff] [blame] | 2516 | err = -EINVAL; |
| 2517 | goto team_put; |
| 2518 | } |
Jiri Pirko | 14f066b | 2012-04-10 05:15:43 +0000 | [diff] [blame] | 2519 | ctx.data.str_val = nla_data(attr_data); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2520 | break; |
Jiri Pirko | 2615598 | 2012-04-04 12:16:26 +0000 | [diff] [blame] | 2521 | case TEAM_OPTION_TYPE_BINARY: |
Jiri Pirko | 14f066b | 2012-04-10 05:15:43 +0000 | [diff] [blame] | 2522 | ctx.data.bin_val.len = nla_len(attr_data); |
| 2523 | ctx.data.bin_val.ptr = nla_data(attr_data); |
| 2524 | break; |
| 2525 | case TEAM_OPTION_TYPE_BOOL: |
| 2526 | ctx.data.bool_val = attr_data ? true : false; |
Jiri Pirko | 2615598 | 2012-04-04 12:16:26 +0000 | [diff] [blame] | 2527 | break; |
Jiri Pirko | 6982163 | 2012-07-27 06:28:53 +0000 | [diff] [blame] | 2528 | case TEAM_OPTION_TYPE_S32: |
| 2529 | ctx.data.s32_val = nla_get_s32(attr_data); |
| 2530 | break; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2531 | default: |
| 2532 | BUG(); |
| 2533 | } |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 2534 | err = team_option_set(team, opt_inst, &ctx); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2535 | if (err) |
| 2536 | goto team_put; |
Jiri Pirko | 2fcdb2c | 2012-06-19 05:54:20 +0000 | [diff] [blame] | 2537 | opt_inst->changed = true; |
| 2538 | list_add(&opt_inst->tmp_list, &opt_inst_list); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2539 | } |
| 2540 | if (!opt_found) { |
| 2541 | err = -ENOENT; |
| 2542 | goto team_put; |
| 2543 | } |
| 2544 | } |
| 2545 | |
Jiri Pirko | 2fcdb2c | 2012-06-19 05:54:20 +0000 | [diff] [blame] | 2546 | err = team_nl_send_event_options_get(team, &opt_inst_list); |
| 2547 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2548 | team_put: |
| 2549 | team_nl_team_put(team); |
| 2550 | |
| 2551 | return err; |
| 2552 | } |
| 2553 | |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2554 | static int team_nl_fill_one_port_get(struct sk_buff *skb, |
| 2555 | struct team_port *port) |
| 2556 | { |
| 2557 | struct nlattr *port_item; |
| 2558 | |
| 2559 | port_item = nla_nest_start(skb, TEAM_ATTR_ITEM_PORT); |
| 2560 | if (!port_item) |
| 2561 | goto nest_cancel; |
| 2562 | if (nla_put_u32(skb, TEAM_ATTR_PORT_IFINDEX, port->dev->ifindex)) |
| 2563 | goto nest_cancel; |
| 2564 | if (port->changed) { |
| 2565 | if (nla_put_flag(skb, TEAM_ATTR_PORT_CHANGED)) |
| 2566 | goto nest_cancel; |
| 2567 | port->changed = false; |
| 2568 | } |
| 2569 | if ((port->removed && |
| 2570 | nla_put_flag(skb, TEAM_ATTR_PORT_REMOVED)) || |
| 2571 | (port->state.linkup && |
| 2572 | nla_put_flag(skb, TEAM_ATTR_PORT_LINKUP)) || |
| 2573 | nla_put_u32(skb, TEAM_ATTR_PORT_SPEED, port->state.speed) || |
| 2574 | nla_put_u8(skb, TEAM_ATTR_PORT_DUPLEX, port->state.duplex)) |
| 2575 | goto nest_cancel; |
| 2576 | nla_nest_end(skb, port_item); |
| 2577 | return 0; |
| 2578 | |
| 2579 | nest_cancel: |
| 2580 | nla_nest_cancel(skb, port_item); |
| 2581 | return -EMSGSIZE; |
| 2582 | } |
| 2583 | |
| 2584 | static int team_nl_send_port_list_get(struct team *team, u32 portid, u32 seq, |
| 2585 | int flags, team_nl_send_func_t *send_func, |
| 2586 | struct team_port *one_port) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2587 | { |
| 2588 | struct nlattr *port_list; |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2589 | struct nlmsghdr *nlh; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2590 | void *hdr; |
| 2591 | struct team_port *port; |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2592 | int err; |
| 2593 | struct sk_buff *skb = NULL; |
| 2594 | bool incomplete; |
| 2595 | int i; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2596 | |
Jiri Pirko | 3f3e7ce | 2013-05-29 05:02:57 +0000 | [diff] [blame] | 2597 | port = list_first_entry_or_null(&team->port_list, |
| 2598 | struct team_port, list); |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2599 | |
| 2600 | start_again: |
| 2601 | err = __send_and_alloc_skb(&skb, team, portid, send_func); |
| 2602 | if (err) |
| 2603 | return err; |
| 2604 | |
| 2605 | hdr = genlmsg_put(skb, portid, seq, &team_nl_family, flags | NLM_F_MULTI, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2606 | TEAM_CMD_PORT_LIST_GET); |
Wei Yongjun | a326e6d | 2012-09-24 18:29:35 +0000 | [diff] [blame] | 2607 | if (!hdr) |
| 2608 | return -EMSGSIZE; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2609 | |
David S. Miller | 86ebb02 | 2012-04-01 20:25:18 -0400 | [diff] [blame] | 2610 | if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex)) |
| 2611 | goto nla_put_failure; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2612 | port_list = nla_nest_start(skb, TEAM_ATTR_LIST_PORT); |
| 2613 | if (!port_list) |
Jiri Pirko | 3221c64 | 2012-06-19 05:54:13 +0000 | [diff] [blame] | 2614 | goto nla_put_failure; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2615 | |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2616 | i = 0; |
| 2617 | incomplete = false; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2618 | |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2619 | /* If one port is selected, called wants to send port list containing |
| 2620 | * only this port. Otherwise go through all listed ports and send all |
| 2621 | */ |
| 2622 | if (one_port) { |
| 2623 | err = team_nl_fill_one_port_get(skb, one_port); |
| 2624 | if (err) |
| 2625 | goto errout; |
Jiri Pirko | 3f3e7ce | 2013-05-29 05:02:57 +0000 | [diff] [blame] | 2626 | } else if (port) { |
| 2627 | list_for_each_entry_from(port, &team->port_list, list) { |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2628 | err = team_nl_fill_one_port_get(skb, port); |
| 2629 | if (err) { |
| 2630 | if (err == -EMSGSIZE) { |
| 2631 | if (!i) |
| 2632 | goto errout; |
| 2633 | incomplete = true; |
| 2634 | break; |
| 2635 | } |
| 2636 | goto errout; |
| 2637 | } |
| 2638 | i++; |
Jiri Pirko | b82b918 | 2012-01-24 05:16:00 +0000 | [diff] [blame] | 2639 | } |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2640 | } |
| 2641 | |
| 2642 | nla_nest_end(skb, port_list); |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2643 | genlmsg_end(skb, hdr); |
| 2644 | if (incomplete) |
| 2645 | goto start_again; |
| 2646 | |
| 2647 | send_done: |
| 2648 | nlh = nlmsg_put(skb, portid, seq, NLMSG_DONE, 0, flags | NLM_F_MULTI); |
| 2649 | if (!nlh) { |
| 2650 | err = __send_and_alloc_skb(&skb, team, portid, send_func); |
| 2651 | if (err) |
| 2652 | goto errout; |
| 2653 | goto send_done; |
| 2654 | } |
| 2655 | |
| 2656 | return send_func(skb, team, portid); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2657 | |
| 2658 | nla_put_failure: |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2659 | err = -EMSGSIZE; |
| 2660 | errout: |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2661 | genlmsg_cancel(skb, hdr); |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2662 | nlmsg_free(skb); |
| 2663 | return err; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2664 | } |
| 2665 | |
| 2666 | static int team_nl_cmd_port_list_get(struct sk_buff *skb, |
| 2667 | struct genl_info *info) |
| 2668 | { |
| 2669 | struct team *team; |
| 2670 | int err; |
| 2671 | |
| 2672 | team = team_nl_team_get(info); |
| 2673 | if (!team) |
| 2674 | return -EINVAL; |
| 2675 | |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2676 | err = team_nl_send_port_list_get(team, info->snd_portid, info->snd_seq, |
| 2677 | NLM_F_ACK, team_nl_send_unicast, NULL); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2678 | |
| 2679 | team_nl_team_put(team); |
| 2680 | |
| 2681 | return err; |
| 2682 | } |
| 2683 | |
Johannes Berg | 4534de8 | 2013-11-14 17:14:46 +0100 | [diff] [blame] | 2684 | static const struct genl_ops team_nl_ops[] = { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2685 | { |
| 2686 | .cmd = TEAM_CMD_NOOP, |
| 2687 | .doit = team_nl_cmd_noop, |
| 2688 | .policy = team_nl_policy, |
| 2689 | }, |
| 2690 | { |
| 2691 | .cmd = TEAM_CMD_OPTIONS_SET, |
| 2692 | .doit = team_nl_cmd_options_set, |
| 2693 | .policy = team_nl_policy, |
| 2694 | .flags = GENL_ADMIN_PERM, |
| 2695 | }, |
| 2696 | { |
| 2697 | .cmd = TEAM_CMD_OPTIONS_GET, |
| 2698 | .doit = team_nl_cmd_options_get, |
| 2699 | .policy = team_nl_policy, |
| 2700 | .flags = GENL_ADMIN_PERM, |
| 2701 | }, |
| 2702 | { |
| 2703 | .cmd = TEAM_CMD_PORT_LIST_GET, |
| 2704 | .doit = team_nl_cmd_port_list_get, |
| 2705 | .policy = team_nl_policy, |
| 2706 | .flags = GENL_ADMIN_PERM, |
| 2707 | }, |
| 2708 | }; |
| 2709 | |
Johannes Berg | 2a94fe4 | 2013-11-19 15:19:39 +0100 | [diff] [blame] | 2710 | static const struct genl_multicast_group team_nl_mcgrps[] = { |
| 2711 | { .name = TEAM_GENL_CHANGE_EVENT_MC_GRP_NAME, }, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2712 | }; |
| 2713 | |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2714 | static int team_nl_send_multicast(struct sk_buff *skb, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2715 | struct team *team, u32 portid) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2716 | { |
Johannes Berg | 68eb550 | 2013-11-19 15:19:38 +0100 | [diff] [blame] | 2717 | return genlmsg_multicast_netns(&team_nl_family, dev_net(team->dev), |
Johannes Berg | 2a94fe4 | 2013-11-19 15:19:39 +0100 | [diff] [blame] | 2718 | skb, 0, 0, GFP_KERNEL); |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2719 | } |
| 2720 | |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2721 | static int team_nl_send_event_options_get(struct team *team, |
| 2722 | struct list_head *sel_opt_inst_list) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2723 | { |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2724 | return team_nl_send_options_get(team, 0, 0, 0, team_nl_send_multicast, |
| 2725 | sel_opt_inst_list); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2726 | } |
| 2727 | |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2728 | static int team_nl_send_event_port_get(struct team *team, |
| 2729 | struct team_port *port) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2730 | { |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2731 | return team_nl_send_port_list_get(team, 0, 0, 0, team_nl_send_multicast, |
| 2732 | port); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2733 | } |
| 2734 | |
| 2735 | static int team_nl_init(void) |
| 2736 | { |
Johannes Berg | 2a94fe4 | 2013-11-19 15:19:39 +0100 | [diff] [blame] | 2737 | return genl_register_family_with_ops_groups(&team_nl_family, team_nl_ops, |
| 2738 | team_nl_mcgrps); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2739 | } |
| 2740 | |
| 2741 | static void team_nl_fini(void) |
| 2742 | { |
| 2743 | genl_unregister_family(&team_nl_family); |
| 2744 | } |
| 2745 | |
| 2746 | |
| 2747 | /****************** |
| 2748 | * Change checkers |
| 2749 | ******************/ |
| 2750 | |
Jiri Pirko | b82b918 | 2012-01-24 05:16:00 +0000 | [diff] [blame] | 2751 | static void __team_options_change_check(struct team *team) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2752 | { |
| 2753 | int err; |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2754 | struct team_option_inst *opt_inst; |
| 2755 | LIST_HEAD(sel_opt_inst_list); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2756 | |
Jiri Pirko | 01048d9 | 2012-06-19 05:54:14 +0000 | [diff] [blame] | 2757 | list_for_each_entry(opt_inst, &team->option_inst_list, list) { |
| 2758 | if (opt_inst->changed) |
| 2759 | list_add_tail(&opt_inst->tmp_list, &sel_opt_inst_list); |
| 2760 | } |
| 2761 | err = team_nl_send_event_options_get(team, &sel_opt_inst_list); |
Jiri Pirko | 0c7517e | 2012-08-23 03:26:51 +0000 | [diff] [blame] | 2762 | if (err && err != -ESRCH) |
Jiri Pirko | 9b00cf2 | 2012-06-19 05:54:18 +0000 | [diff] [blame] | 2763 | netdev_warn(team->dev, "Failed to send options change via netlink (err %d)\n", |
| 2764 | err); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2765 | } |
| 2766 | |
| 2767 | /* rtnl lock is held */ |
Jiri Pirko | 10f3f51 | 2012-09-21 01:51:59 +0000 | [diff] [blame] | 2768 | |
| 2769 | static void __team_port_change_send(struct team_port *port, bool linkup) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2770 | { |
| 2771 | int err; |
| 2772 | |
Jiri Pirko | b82b918 | 2012-01-24 05:16:00 +0000 | [diff] [blame] | 2773 | port->changed = true; |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 2774 | port->state.linkup = linkup; |
| 2775 | team_refresh_port_linkup(port); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2776 | if (linkup) { |
| 2777 | struct ethtool_cmd ecmd; |
| 2778 | |
| 2779 | err = __ethtool_get_settings(port->dev, &ecmd); |
| 2780 | if (!err) { |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 2781 | port->state.speed = ethtool_cmd_speed(&ecmd); |
| 2782 | port->state.duplex = ecmd.duplex; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2783 | goto send_event; |
| 2784 | } |
| 2785 | } |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 2786 | port->state.speed = 0; |
| 2787 | port->state.duplex = 0; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2788 | |
| 2789 | send_event: |
Jiri Pirko | d90f889 | 2013-02-01 08:17:24 +0000 | [diff] [blame] | 2790 | err = team_nl_send_event_port_get(port->team, port); |
Jiri Pirko | 0c7517e | 2012-08-23 03:26:51 +0000 | [diff] [blame] | 2791 | if (err && err != -ESRCH) |
| 2792 | netdev_warn(port->team->dev, "Failed to send port change of device %s via netlink (err %d)\n", |
| 2793 | port->dev->name, err); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2794 | |
| 2795 | } |
| 2796 | |
Flavio Leitner | 06a7fc4 | 2012-12-30 08:27:29 +0000 | [diff] [blame] | 2797 | static void __team_carrier_check(struct team *team) |
| 2798 | { |
| 2799 | struct team_port *port; |
| 2800 | bool team_linkup; |
| 2801 | |
Flavio Leitner | e185483 | 2013-02-05 09:30:55 +0000 | [diff] [blame] | 2802 | if (team->user_carrier_enabled) |
| 2803 | return; |
| 2804 | |
Flavio Leitner | 06a7fc4 | 2012-12-30 08:27:29 +0000 | [diff] [blame] | 2805 | team_linkup = false; |
| 2806 | list_for_each_entry(port, &team->port_list, list) { |
| 2807 | if (port->linkup) { |
| 2808 | team_linkup = true; |
| 2809 | break; |
| 2810 | } |
| 2811 | } |
| 2812 | |
| 2813 | if (team_linkup) |
| 2814 | netif_carrier_on(team->dev); |
| 2815 | else |
| 2816 | netif_carrier_off(team->dev); |
| 2817 | } |
| 2818 | |
Jiri Pirko | 10f3f51 | 2012-09-21 01:51:59 +0000 | [diff] [blame] | 2819 | static void __team_port_change_check(struct team_port *port, bool linkup) |
| 2820 | { |
| 2821 | if (port->state.linkup != linkup) |
| 2822 | __team_port_change_send(port, linkup); |
Flavio Leitner | 06a7fc4 | 2012-12-30 08:27:29 +0000 | [diff] [blame] | 2823 | __team_carrier_check(port->team); |
Jiri Pirko | 10f3f51 | 2012-09-21 01:51:59 +0000 | [diff] [blame] | 2824 | } |
| 2825 | |
| 2826 | static void __team_port_change_port_added(struct team_port *port, bool linkup) |
| 2827 | { |
| 2828 | __team_port_change_send(port, linkup); |
Flavio Leitner | 06a7fc4 | 2012-12-30 08:27:29 +0000 | [diff] [blame] | 2829 | __team_carrier_check(port->team); |
Jiri Pirko | 10f3f51 | 2012-09-21 01:51:59 +0000 | [diff] [blame] | 2830 | } |
| 2831 | |
| 2832 | static void __team_port_change_port_removed(struct team_port *port) |
| 2833 | { |
| 2834 | port->removed = true; |
| 2835 | __team_port_change_send(port, false); |
Flavio Leitner | 06a7fc4 | 2012-12-30 08:27:29 +0000 | [diff] [blame] | 2836 | __team_carrier_check(port->team); |
Jiri Pirko | 10f3f51 | 2012-09-21 01:51:59 +0000 | [diff] [blame] | 2837 | } |
| 2838 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2839 | static void team_port_change_check(struct team_port *port, bool linkup) |
| 2840 | { |
| 2841 | struct team *team = port->team; |
| 2842 | |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 2843 | mutex_lock(&team->lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2844 | __team_port_change_check(port, linkup); |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 2845 | mutex_unlock(&team->lock); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2846 | } |
| 2847 | |
Jiri Pirko | 0f1aad2 | 2012-06-19 05:54:11 +0000 | [diff] [blame] | 2848 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2849 | /************************************ |
| 2850 | * Net device notifier event handler |
| 2851 | ************************************/ |
| 2852 | |
| 2853 | static int team_device_event(struct notifier_block *unused, |
| 2854 | unsigned long event, void *ptr) |
| 2855 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 2856 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2857 | struct team_port *port; |
| 2858 | |
| 2859 | port = team_port_get_rtnl(dev); |
| 2860 | if (!port) |
| 2861 | return NOTIFY_DONE; |
| 2862 | |
| 2863 | switch (event) { |
| 2864 | case NETDEV_UP: |
| 2865 | if (netif_carrier_ok(dev)) |
| 2866 | team_port_change_check(port, true); |
Jiri Pirko | ed2da03 | 2014-04-23 14:17:55 +0200 | [diff] [blame] | 2867 | break; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2868 | case NETDEV_DOWN: |
| 2869 | team_port_change_check(port, false); |
Jiri Pirko | ed2da03 | 2014-04-23 14:17:55 +0200 | [diff] [blame] | 2870 | break; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2871 | case NETDEV_CHANGE: |
| 2872 | if (netif_running(port->dev)) |
| 2873 | team_port_change_check(port, |
| 2874 | !!netif_carrier_ok(port->dev)); |
| 2875 | break; |
| 2876 | case NETDEV_UNREGISTER: |
| 2877 | team_del_slave(port->team->dev, dev); |
| 2878 | break; |
| 2879 | case NETDEV_FEAT_CHANGE: |
| 2880 | team_compute_features(port->team); |
| 2881 | break; |
Veaceslav Falico | b01f236 | 2014-01-16 00:02:19 +0100 | [diff] [blame] | 2882 | case NETDEV_PRECHANGEMTU: |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2883 | /* Forbid to change mtu of underlaying device */ |
Jiri Pirko | 9d0d68f | 2014-05-29 20:46:17 +0200 | [diff] [blame] | 2884 | if (!port->team->port_mtu_change_allowed) |
| 2885 | return NOTIFY_BAD; |
| 2886 | break; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2887 | case NETDEV_PRE_TYPE_CHANGE: |
| 2888 | /* Forbid to change type of underlaying device */ |
| 2889 | return NOTIFY_BAD; |
Jiri Pirko | 4aa5dee | 2013-07-20 12:13:53 +0200 | [diff] [blame] | 2890 | case NETDEV_RESEND_IGMP: |
| 2891 | /* Propagate to master device */ |
| 2892 | call_netdevice_notifiers(event, port->team->dev); |
| 2893 | break; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2894 | } |
| 2895 | return NOTIFY_DONE; |
| 2896 | } |
| 2897 | |
| 2898 | static struct notifier_block team_notifier_block __read_mostly = { |
| 2899 | .notifier_call = team_device_event, |
| 2900 | }; |
| 2901 | |
| 2902 | |
| 2903 | /*********************** |
| 2904 | * Module init and exit |
| 2905 | ***********************/ |
| 2906 | |
| 2907 | static int __init team_module_init(void) |
| 2908 | { |
| 2909 | int err; |
| 2910 | |
| 2911 | register_netdevice_notifier(&team_notifier_block); |
| 2912 | |
| 2913 | err = rtnl_link_register(&team_link_ops); |
| 2914 | if (err) |
| 2915 | goto err_rtnl_reg; |
| 2916 | |
| 2917 | err = team_nl_init(); |
| 2918 | if (err) |
| 2919 | goto err_nl_init; |
| 2920 | |
| 2921 | return 0; |
| 2922 | |
| 2923 | err_nl_init: |
| 2924 | rtnl_link_unregister(&team_link_ops); |
| 2925 | |
| 2926 | err_rtnl_reg: |
| 2927 | unregister_netdevice_notifier(&team_notifier_block); |
| 2928 | |
| 2929 | return err; |
| 2930 | } |
| 2931 | |
| 2932 | static void __exit team_module_exit(void) |
| 2933 | { |
| 2934 | team_nl_fini(); |
| 2935 | rtnl_link_unregister(&team_link_ops); |
| 2936 | unregister_netdevice_notifier(&team_notifier_block); |
| 2937 | } |
| 2938 | |
| 2939 | module_init(team_module_init); |
| 2940 | module_exit(team_module_exit); |
| 2941 | |
| 2942 | MODULE_LICENSE("GPL v2"); |
| 2943 | MODULE_AUTHOR("Jiri Pirko <jpirko@redhat.com>"); |
| 2944 | MODULE_DESCRIPTION("Ethernet team device driver"); |
| 2945 | MODULE_ALIAS_RTNL_LINK(DRV_NAME); |