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