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