1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * drivers/net/team/team.c - Network team device driver
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>
32 #define DRV_NAME "team"
39 static struct team_port *team_port_get_rtnl(const struct net_device *dev)
41 struct team_port *port = rtnl_dereference(dev->rx_handler_data);
43 return netif_is_team_port(dev) ? port : NULL;
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
50 static int __set_port_dev_addr(struct net_device *port_dev,
51 const unsigned char *dev_addr)
53 struct sockaddr_storage addr;
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);
60 static int team_port_set_orig_dev_addr(struct team_port *port)
62 return __set_port_dev_addr(port->dev, port->orig.dev_addr);
65 static int team_port_set_team_dev_addr(struct team *team,
66 struct team_port *port)
68 return __set_port_dev_addr(port->dev, team->dev->dev_addr);
71 int team_modeop_port_enter(struct team *team, struct team_port *port)
73 return team_port_set_team_dev_addr(team, port);
75 EXPORT_SYMBOL(team_modeop_port_enter);
77 void team_modeop_port_change_dev_addr(struct team *team,
78 struct team_port *port)
80 team_port_set_team_dev_addr(team, port);
82 EXPORT_SYMBOL(team_modeop_port_change_dev_addr);
84 static void team_lower_state_changed(struct team_port *port)
86 struct netdev_lag_lower_state_info info;
88 info.link_up = port->linkup;
89 info.tx_enabled = team_port_enabled(port);
90 netdev_lower_state_changed(port->dev, &info);
93 static void team_refresh_port_linkup(struct team_port *port)
95 bool new_linkup = port->user.linkup_enabled ? port->user.linkup :
98 if (port->linkup != new_linkup) {
99 port->linkup = new_linkup;
100 team_lower_state_changed(port);
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;
118 static struct team_option *__team_find_option(struct team *team,
119 const char *opt_name)
121 struct team_option *option;
123 list_for_each_entry(option, &team->option_list, list) {
124 if (strcmp(option->name, opt_name) == 0)
130 static void __team_option_inst_del(struct team_option_inst *opt_inst)
132 list_del(&opt_inst->list);
136 static void __team_option_inst_del_option(struct team *team,
137 struct team_option *option)
139 struct team_option_inst *opt_inst, *tmp;
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);
147 static int __team_option_inst_add(struct team *team, struct team_option *option,
148 struct team_port *port)
150 struct team_option_inst *opt_inst;
151 unsigned int array_size;
154 array_size = option->array_size;
156 array_size = 1; /* No array but still need one instance */
158 for (i = 0; i < array_size; i++) {
159 opt_inst = kmalloc(sizeof(*opt_inst), GFP_KERNEL);
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);
169 option->init(team, &opt_inst->info);
175 static int __team_option_inst_add_option(struct team *team,
176 struct team_option *option)
180 if (!option->per_port) {
181 err = __team_option_inst_add(team, option, NULL);
183 goto inst_del_option;
188 __team_option_inst_del_option(team, option);
192 static void __team_option_inst_mark_removed_option(struct team *team,
193 struct team_option *option)
195 struct team_option_inst *opt_inst;
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;
205 static void __team_option_inst_del_port(struct team *team,
206 struct team_port *port)
208 struct team_option_inst *opt_inst, *tmp;
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);
217 static int __team_option_inst_add_port(struct team *team,
218 struct team_port *port)
220 struct team_option *option;
223 list_for_each_entry(option, &team->option_list, list) {
224 if (!option->per_port)
226 err = __team_option_inst_add(team, option, port);
233 __team_option_inst_del_port(team, port);
237 static void __team_option_inst_mark_removed_port(struct team *team,
238 struct team_port *port)
240 struct team_option_inst *opt_inst;
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;
250 static int __team_options_register(struct team *team,
251 const struct team_option *option,
255 struct team_option **dst_opts;
258 dst_opts = kcalloc(option_count, sizeof(struct team_option *),
262 for (i = 0; i < option_count; i++, option++) {
263 if (__team_find_option(team, option->name)) {
267 dst_opts[i] = kmemdup(option, sizeof(*option), GFP_KERNEL);
274 for (i = 0; i < option_count; i++) {
275 err = __team_option_inst_add_option(team, dst_opts[i]);
278 list_add_tail(&dst_opts[i]->list, &team->option_list);
285 for (i--; i >= 0; i--) {
286 __team_option_inst_del_option(team, dst_opts[i]);
287 list_del(&dst_opts[i]->list);
292 for (i--; i >= 0; i--)
299 static void __team_options_mark_removed(struct team *team,
300 const struct team_option *option,
305 for (i = 0; i < option_count; i++, option++) {
306 struct team_option *del_opt;
308 del_opt = __team_find_option(team, option->name);
310 __team_option_inst_mark_removed_option(team, del_opt);
314 static void __team_options_unregister(struct team *team,
315 const struct team_option *option,
320 for (i = 0; i < option_count; i++, option++) {
321 struct team_option *del_opt;
323 del_opt = __team_find_option(team, option->name);
325 __team_option_inst_del_option(team, del_opt);
326 list_del(&del_opt->list);
332 static void __team_options_change_check(struct team *team);
334 int team_options_register(struct team *team,
335 const struct team_option *option,
340 err = __team_options_register(team, option, option_count);
343 __team_options_change_check(team);
346 EXPORT_SYMBOL(team_options_register);
348 void team_options_unregister(struct team *team,
349 const struct team_option *option,
352 __team_options_mark_removed(team, option, option_count);
353 __team_options_change_check(team);
354 __team_options_unregister(team, option, option_count);
356 EXPORT_SYMBOL(team_options_unregister);
358 static int team_option_get(struct team *team,
359 struct team_option_inst *opt_inst,
360 struct team_gsetter_ctx *ctx)
362 if (!opt_inst->option->getter)
365 opt_inst->option->getter(team, ctx);
369 static int team_option_set(struct team *team,
370 struct team_option_inst *opt_inst,
371 struct team_gsetter_ctx *ctx)
373 if (!opt_inst->option->setter)
375 return opt_inst->option->setter(team, ctx);
378 void team_option_inst_set_change(struct team_option_inst_info *opt_inst_info)
380 struct team_option_inst *opt_inst;
382 opt_inst = container_of(opt_inst_info, struct team_option_inst, info);
383 opt_inst->changed = true;
385 EXPORT_SYMBOL(team_option_inst_set_change);
387 void team_options_change_check(struct team *team)
389 __team_options_change_check(team);
391 EXPORT_SYMBOL(team_options_change_check);
398 static LIST_HEAD(mode_list);
399 static DEFINE_SPINLOCK(mode_list_lock);
401 struct team_mode_item {
402 struct list_head list;
403 const struct team_mode *mode;
406 static struct team_mode_item *__find_mode(const char *kind)
408 struct team_mode_item *mitem;
410 list_for_each_entry(mitem, &mode_list, list) {
411 if (strcmp(mitem->mode->kind, kind) == 0)
417 static bool is_good_mode_name(const char *name)
419 while (*name != '\0') {
420 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
427 int team_mode_register(const struct team_mode *mode)
430 struct team_mode_item *mitem;
432 if (!is_good_mode_name(mode->kind) ||
433 mode->priv_size > TEAM_MODE_PRIV_SIZE)
436 mitem = kmalloc(sizeof(*mitem), GFP_KERNEL);
440 spin_lock(&mode_list_lock);
441 if (__find_mode(mode->kind)) {
447 list_add_tail(&mitem->list, &mode_list);
449 spin_unlock(&mode_list_lock);
452 EXPORT_SYMBOL(team_mode_register);
454 void team_mode_unregister(const struct team_mode *mode)
456 struct team_mode_item *mitem;
458 spin_lock(&mode_list_lock);
459 mitem = __find_mode(mode->kind);
461 list_del_init(&mitem->list);
464 spin_unlock(&mode_list_lock);
466 EXPORT_SYMBOL(team_mode_unregister);
468 static const struct team_mode *team_mode_get(const char *kind)
470 struct team_mode_item *mitem;
471 const struct team_mode *mode = NULL;
473 if (!try_module_get(THIS_MODULE))
476 spin_lock(&mode_list_lock);
477 mitem = __find_mode(kind);
479 spin_unlock(&mode_list_lock);
480 request_module("team-mode-%s", kind);
481 spin_lock(&mode_list_lock);
482 mitem = __find_mode(kind);
486 if (!try_module_get(mode->owner))
490 spin_unlock(&mode_list_lock);
491 module_put(THIS_MODULE);
495 static void team_mode_put(const struct team_mode *mode)
497 module_put(mode->owner);
500 static bool team_dummy_transmit(struct team *team, struct sk_buff *skb)
502 dev_kfree_skb_any(skb);
506 static rx_handler_result_t team_dummy_receive(struct team *team,
507 struct team_port *port,
510 return RX_HANDLER_ANOTHER;
513 static const struct team_mode __team_no_mode = {
517 static bool team_is_mode_set(struct team *team)
519 return team->mode != &__team_no_mode;
522 static void team_set_no_mode(struct team *team)
524 team->user_carrier_enabled = false;
525 team->mode = &__team_no_mode;
528 static void team_adjust_ops(struct team *team)
531 * To avoid checks in rx/tx skb paths, ensure here that non-null and
532 * correct ops are always set.
535 if (!team->en_port_count || !team_is_mode_set(team) ||
536 !team->mode->ops->transmit)
537 team->ops.transmit = team_dummy_transmit;
539 team->ops.transmit = team->mode->ops->transmit;
541 if (!team->en_port_count || !team_is_mode_set(team) ||
542 !team->mode->ops->receive)
543 team->ops.receive = team_dummy_receive;
545 team->ops.receive = team->mode->ops->receive;
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.
553 static int __team_change_mode(struct team *team,
554 const struct team_mode *new_mode)
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;
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);
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));
576 if (new_mode->ops->init) {
579 err = new_mode->ops->init(team);
584 team->mode = new_mode;
585 memcpy(&team->ops, new_mode->ops, sizeof(struct team_mode_ops));
586 team_adjust_ops(team);
591 static int team_change_mode(struct team *team, const char *kind)
593 const struct team_mode *new_mode;
594 struct net_device *dev = team->dev;
597 if (!list_empty(&team->port_list)) {
598 netdev_err(dev, "No ports can be present during mode change\n");
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");
607 new_mode = team_mode_get(kind);
609 netdev_err(dev, "Mode \"%s\" not found\n", kind);
613 err = __team_change_mode(team, new_mode);
615 netdev_err(dev, "Failed to change to mode \"%s\"\n", kind);
616 team_mode_put(new_mode);
620 netdev_info(dev, "Mode changed to \"%s\"\n", kind);
625 /*********************
627 *********************/
629 static void team_notify_peers_work(struct work_struct *work)
634 team = container_of(work, struct team, notify_peers.dw.work);
636 if (!rtnl_trylock()) {
637 schedule_delayed_work(&team->notify_peers.dw, 0);
640 val = atomic_dec_if_positive(&team->notify_peers.count_pending);
645 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, team->dev);
648 schedule_delayed_work(&team->notify_peers.dw,
649 msecs_to_jiffies(team->notify_peers.interval));
652 static void team_notify_peers(struct team *team)
654 if (!team->notify_peers.count || !netif_running(team->dev))
656 atomic_add(team->notify_peers.count, &team->notify_peers.count_pending);
657 schedule_delayed_work(&team->notify_peers.dw, 0);
660 static void team_notify_peers_init(struct team *team)
662 INIT_DELAYED_WORK(&team->notify_peers.dw, team_notify_peers_work);
665 static void team_notify_peers_fini(struct team *team)
667 cancel_delayed_work_sync(&team->notify_peers.dw);
671 /*******************************
672 * Send multicast group rejoins
673 *******************************/
675 static void team_mcast_rejoin_work(struct work_struct *work)
680 team = container_of(work, struct team, mcast_rejoin.dw.work);
682 if (!rtnl_trylock()) {
683 schedule_delayed_work(&team->mcast_rejoin.dw, 0);
686 val = atomic_dec_if_positive(&team->mcast_rejoin.count_pending);
691 call_netdevice_notifiers(NETDEV_RESEND_IGMP, team->dev);
694 schedule_delayed_work(&team->mcast_rejoin.dw,
695 msecs_to_jiffies(team->mcast_rejoin.interval));
698 static void team_mcast_rejoin(struct team *team)
700 if (!team->mcast_rejoin.count || !netif_running(team->dev))
702 atomic_add(team->mcast_rejoin.count, &team->mcast_rejoin.count_pending);
703 schedule_delayed_work(&team->mcast_rejoin.dw, 0);
706 static void team_mcast_rejoin_init(struct team *team)
708 INIT_DELAYED_WORK(&team->mcast_rejoin.dw, team_mcast_rejoin_work);
711 static void team_mcast_rejoin_fini(struct team *team)
713 cancel_delayed_work_sync(&team->mcast_rejoin.dw);
717 /************************
718 * Rx path frame handler
719 ************************/
721 /* note: already called with rcu_read_lock */
722 static rx_handler_result_t team_handle_frame(struct sk_buff **pskb)
724 struct sk_buff *skb = *pskb;
725 struct team_port *port;
727 rx_handler_result_t res;
729 skb = skb_share_check(skb, GFP_ATOMIC);
731 return RX_HANDLER_CONSUMED;
735 port = team_port_get_rcu(skb->dev);
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.
742 return RX_HANDLER_PASS;
743 /* allow exact match delivery for disabled ports */
744 res = RX_HANDLER_EXACT;
746 res = team->ops.receive(team, port, skb);
748 if (res == RX_HANDLER_ANOTHER) {
749 struct team_pcpu_stats *pcpu_stats;
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);
759 skb->dev = team->dev;
760 } else if (res == RX_HANDLER_EXACT) {
761 this_cpu_inc(team->pcpu_stats->rx_nohandler);
763 this_cpu_inc(team->pcpu_stats->rx_dropped);
770 /*************************************
771 * Multiqueue Tx port select override
772 *************************************/
774 static int team_queue_override_init(struct team *team)
776 struct list_head *listarr;
777 unsigned int queue_cnt = team->dev->num_tx_queues - 1;
782 listarr = kmalloc_array(queue_cnt, sizeof(struct list_head),
786 team->qom_lists = listarr;
787 for (i = 0; i < queue_cnt; i++)
788 INIT_LIST_HEAD(listarr++);
792 static void team_queue_override_fini(struct team *team)
794 kfree(team->qom_lists);
797 static struct list_head *__team_get_qom_list(struct team *team, u16 queue_id)
799 return &team->qom_lists[queue_id - 1];
803 * note: already called with rcu_read_lock
805 static bool team_queue_override_transmit(struct team *team, struct sk_buff *skb)
807 struct list_head *qom_list;
808 struct team_port *port;
810 if (!team->queue_override_enabled || !skb->queue_mapping)
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))
820 static void __team_queue_override_port_del(struct team *team,
821 struct team_port *port)
825 list_del_rcu(&port->qom_list);
828 static bool team_queue_override_port_has_gt_prio_than(struct team_port *port,
829 struct team_port *cur)
831 if (port->priority < cur->priority)
833 if (port->priority > cur->priority)
835 if (port->index < cur->index)
840 static void __team_queue_override_port_add(struct team *team,
841 struct team_port *port)
843 struct team_port *cur;
844 struct list_head *qom_list;
845 struct list_head *node;
849 qom_list = __team_get_qom_list(team, port->queue_id);
851 list_for_each_entry(cur, qom_list, qom_list) {
852 if (team_queue_override_port_has_gt_prio_than(port, cur))
854 node = &cur->qom_list;
856 list_add_tail_rcu(&port->qom_list, node);
859 static void __team_queue_override_enabled_check(struct team *team)
861 struct team_port *port;
862 bool enabled = false;
864 list_for_each_entry(port, &team->port_list, list) {
865 if (port->queue_id) {
870 if (enabled == team->queue_override_enabled)
872 netdev_dbg(team->dev, "%s queue override\n",
873 enabled ? "Enabling" : "Disabling");
874 team->queue_override_enabled = enabled;
877 static void team_queue_override_port_prio_changed(struct team *team,
878 struct team_port *port)
880 if (!port->queue_id || team_port_enabled(port))
882 __team_queue_override_port_del(team, port);
883 __team_queue_override_port_add(team, port);
884 __team_queue_override_enabled_check(team);
887 static void team_queue_override_port_change_queue_id(struct team *team,
888 struct team_port *port,
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);
897 port->queue_id = new_queue_id;
901 static void team_queue_override_port_add(struct team *team,
902 struct team_port *port)
904 __team_queue_override_port_add(team, port);
905 __team_queue_override_enabled_check(team);
908 static void team_queue_override_port_del(struct team *team,
909 struct team_port *port)
911 __team_queue_override_port_del(team, port);
912 __team_queue_override_enabled_check(team);
920 static bool team_port_find(const struct team *team,
921 const struct team_port *port)
923 struct team_port *cur;
925 list_for_each_entry(cur, &team->port_list, list)
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
937 static void team_port_enable(struct team *team,
938 struct team_port *port)
940 if (team_port_enabled(port))
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);
954 static void __reconstruct_port_hlist(struct team *team, int rm_index)
957 struct team_port *port;
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);
963 hlist_add_head_rcu(&port->hlist,
964 team_port_index_hash(team, port->index));
968 static void team_port_disable(struct team *team,
969 struct team_port *port)
971 if (!team_port_enabled(port))
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);
978 team->en_port_count--;
979 team_queue_override_port_del(team, port);
980 team_adjust_ops(team);
981 team_lower_state_changed(port);
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)
989 #define TEAM_ENC_FEATURES (NETIF_F_HW_CSUM | NETIF_F_SG | \
990 NETIF_F_RXCSUM | NETIF_F_GSO_SOFTWARE)
992 static void __team_compute_features(struct team *team)
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;
1002 if (list_empty(&team->port_list))
1005 vlan_features = netdev_base_features(vlan_features);
1006 enc_features = netdev_base_features(enc_features);
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);
1013 netdev_increment_features(enc_features,
1014 port->dev->hw_enc_features,
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;
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;
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;
1035 static void team_compute_features(struct team *team)
1037 __team_compute_features(team);
1038 netdev_change_features(team->dev);
1041 static int team_port_enter(struct team *team, struct team_port *port)
1045 dev_hold(team->dev);
1046 if (team->ops.port_enter) {
1047 err = team->ops.port_enter(team, port);
1049 netdev_err(team->dev, "Device %s failed to enter team mode\n",
1051 goto err_port_enter;
1063 static void team_port_leave(struct team *team, struct team_port *port)
1065 if (team->ops.port_leave)
1066 team->ops.port_leave(team, port);
1070 #ifdef CONFIG_NET_POLL_CONTROLLER
1071 static int __team_port_enable_netpoll(struct team_port *port)
1076 np = kzalloc(sizeof(*np), GFP_KERNEL);
1080 err = __netpoll_setup(np, port->dev);
1089 static int team_port_enable_netpoll(struct team_port *port)
1091 if (!port->team->dev->npinfo)
1094 return __team_port_enable_netpoll(port);
1097 static void team_port_disable_netpoll(struct team_port *port)
1099 struct netpoll *np = port->np;
1108 static int team_port_enable_netpoll(struct team_port *port)
1112 static void team_port_disable_netpoll(struct team_port *port)
1117 static int team_upper_dev_link(struct team *team, struct team_port *port,
1118 struct netlink_ext_ack *extack)
1120 struct netdev_lag_upper_info lag_upper_info;
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);
1129 port->dev->priv_flags |= IFF_TEAM_PORT;
1133 static void team_upper_dev_unlink(struct team *team, struct team_port *port)
1135 netdev_upper_dev_unlink(port->dev, team->dev);
1136 port->dev->priv_flags &= ~IFF_TEAM_PORT;
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);
1143 static int team_port_add(struct team *team, struct net_device *port_dev,
1144 struct netlink_ext_ack *extack)
1146 struct net_device *dev = team->dev;
1147 struct team_port *port;
1148 char *portname = port_dev->name;
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",
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);
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");
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",
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",
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",
1193 err = team_dev_type_check_change(dev, port_dev);
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",
1204 port = kzalloc(sizeof(struct team_port) + team->mode->port_priv_size,
1209 port->dev = port_dev;
1211 INIT_LIST_HEAD(&port->qom_list);
1213 port->orig.mtu = port_dev->mtu;
1214 err = dev_set_mtu(port_dev, dev->mtu);
1216 netdev_dbg(dev, "Error %d calling dev_set_mtu\n", err);
1220 memcpy(port->orig.dev_addr, port_dev->dev_addr, port_dev->addr_len);
1222 err = team_port_enter(team, port);
1224 netdev_err(dev, "Device %s failed to enter team mode\n",
1226 goto err_port_enter;
1229 err = dev_open(port_dev, extack);
1231 netdev_dbg(dev, "Device %s opening failed\n",
1236 err = vlan_vids_add_by_dev(port_dev, dev);
1238 netdev_err(dev, "Failed to add vlan ids to device %s\n",
1243 err = team_port_enable_netpoll(port);
1245 netdev_err(dev, "Failed to enable netpoll on device %s\n",
1247 goto err_enable_netpoll;
1250 if (!(dev->features & NETIF_F_LRO))
1251 dev_disable_lro(port_dev);
1253 err = netdev_rx_handler_register(port_dev, team_handle_frame,
1256 netdev_err(dev, "Device %s failed to register rx_handler\n",
1258 goto err_handler_register;
1261 err = team_upper_dev_link(team, port, extack);
1263 netdev_err(dev, "Device %s failed to set upper link\n",
1265 goto err_set_upper_link;
1268 err = __team_option_inst_add_port(team, port);
1270 netdev_err(dev, "Device %s failed to add per-port options\n",
1272 goto err_option_port_add;
1275 /* set promiscuity level to new slave */
1276 if (dev->flags & IFF_PROMISC) {
1277 err = dev_set_promiscuity(port_dev, 1);
1279 goto err_set_slave_promisc;
1282 /* set allmulti level to new slave */
1283 if (dev->flags & IFF_ALLMULTI) {
1284 err = dev_set_allmulti(port_dev, 1);
1286 if (dev->flags & IFF_PROMISC)
1287 dev_set_promiscuity(port_dev, -1);
1288 goto err_set_slave_promisc;
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);
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);
1306 netdev_info(dev, "Port device %s added\n", portname);
1310 err_set_slave_promisc:
1311 __team_option_inst_del_port(team, port);
1313 err_option_port_add:
1314 team_upper_dev_unlink(team, port);
1317 netdev_rx_handler_unregister(port_dev);
1319 err_handler_register:
1320 team_port_disable_netpoll(port);
1323 vlan_vids_del_by_dev(port_dev, dev);
1326 dev_close(port_dev);
1329 team_port_leave(team, port);
1330 team_port_set_orig_dev_addr(port);
1333 dev_set_mtu(port_dev, port->orig.mtu);
1341 static void __team_port_change_port_removed(struct team_port *port);
1343 static int team_port_del(struct team *team, struct net_device *port_dev)
1345 struct net_device *dev = team->dev;
1346 struct team_port *port;
1347 char *portname = port_dev->name;
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",
1356 team_port_disable(team, port);
1357 list_del_rcu(&port->list);
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);
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);
1372 dev_close(port_dev);
1373 team_port_leave(team, port);
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);
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);
1394 static void team_mode_option_get(struct team *team, struct team_gsetter_ctx *ctx)
1396 ctx->data.str_val = team->mode->kind;
1399 static int team_mode_option_set(struct team *team, struct team_gsetter_ctx *ctx)
1401 return team_change_mode(team, ctx->data.str_val);
1404 static void team_notify_peers_count_get(struct team *team,
1405 struct team_gsetter_ctx *ctx)
1407 ctx->data.u32_val = team->notify_peers.count;
1410 static int team_notify_peers_count_set(struct team *team,
1411 struct team_gsetter_ctx *ctx)
1413 team->notify_peers.count = ctx->data.u32_val;
1417 static void team_notify_peers_interval_get(struct team *team,
1418 struct team_gsetter_ctx *ctx)
1420 ctx->data.u32_val = team->notify_peers.interval;
1423 static int team_notify_peers_interval_set(struct team *team,
1424 struct team_gsetter_ctx *ctx)
1426 team->notify_peers.interval = ctx->data.u32_val;
1430 static void team_mcast_rejoin_count_get(struct team *team,
1431 struct team_gsetter_ctx *ctx)
1433 ctx->data.u32_val = team->mcast_rejoin.count;
1436 static int team_mcast_rejoin_count_set(struct team *team,
1437 struct team_gsetter_ctx *ctx)
1439 team->mcast_rejoin.count = ctx->data.u32_val;
1443 static void team_mcast_rejoin_interval_get(struct team *team,
1444 struct team_gsetter_ctx *ctx)
1446 ctx->data.u32_val = team->mcast_rejoin.interval;
1449 static int team_mcast_rejoin_interval_set(struct team *team,
1450 struct team_gsetter_ctx *ctx)
1452 team->mcast_rejoin.interval = ctx->data.u32_val;
1456 static void team_port_en_option_get(struct team *team,
1457 struct team_gsetter_ctx *ctx)
1459 struct team_port *port = ctx->info->port;
1461 ctx->data.bool_val = team_port_enabled(port);
1464 static int team_port_en_option_set(struct team *team,
1465 struct team_gsetter_ctx *ctx)
1467 struct team_port *port = ctx->info->port;
1469 if (ctx->data.bool_val)
1470 team_port_enable(team, port);
1472 team_port_disable(team, port);
1476 static void team_user_linkup_option_get(struct team *team,
1477 struct team_gsetter_ctx *ctx)
1479 struct team_port *port = ctx->info->port;
1481 ctx->data.bool_val = port->user.linkup;
1484 static void __team_carrier_check(struct team *team);
1486 static int team_user_linkup_option_set(struct team *team,
1487 struct team_gsetter_ctx *ctx)
1489 struct team_port *port = ctx->info->port;
1491 port->user.linkup = ctx->data.bool_val;
1492 team_refresh_port_linkup(port);
1493 __team_carrier_check(port->team);
1497 static void team_user_linkup_en_option_get(struct team *team,
1498 struct team_gsetter_ctx *ctx)
1500 struct team_port *port = ctx->info->port;
1502 ctx->data.bool_val = port->user.linkup_enabled;
1505 static int team_user_linkup_en_option_set(struct team *team,
1506 struct team_gsetter_ctx *ctx)
1508 struct team_port *port = ctx->info->port;
1510 port->user.linkup_enabled = ctx->data.bool_val;
1511 team_refresh_port_linkup(port);
1512 __team_carrier_check(port->team);
1516 static void team_priority_option_get(struct team *team,
1517 struct team_gsetter_ctx *ctx)
1519 struct team_port *port = ctx->info->port;
1521 ctx->data.s32_val = port->priority;
1524 static int team_priority_option_set(struct team *team,
1525 struct team_gsetter_ctx *ctx)
1527 struct team_port *port = ctx->info->port;
1528 s32 priority = ctx->data.s32_val;
1530 if (port->priority == priority)
1532 port->priority = priority;
1533 team_queue_override_port_prio_changed(team, port);
1537 static void team_queue_id_option_get(struct team *team,
1538 struct team_gsetter_ctx *ctx)
1540 struct team_port *port = ctx->info->port;
1542 ctx->data.u32_val = port->queue_id;
1545 static int team_queue_id_option_set(struct team *team,
1546 struct team_gsetter_ctx *ctx)
1548 struct team_port *port = ctx->info->port;
1549 u16 new_queue_id = ctx->data.u32_val;
1551 if (port->queue_id == new_queue_id)
1553 if (new_queue_id >= team->dev->real_num_tx_queues)
1555 team_queue_override_port_change_queue_id(team, port, new_queue_id);
1559 static const struct team_option team_options[] = {
1562 .type = TEAM_OPTION_TYPE_STRING,
1563 .getter = team_mode_option_get,
1564 .setter = team_mode_option_set,
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,
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,
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,
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,
1592 .type = TEAM_OPTION_TYPE_BOOL,
1594 .getter = team_port_en_option_get,
1595 .setter = team_port_en_option_set,
1598 .name = "user_linkup",
1599 .type = TEAM_OPTION_TYPE_BOOL,
1601 .getter = team_user_linkup_option_get,
1602 .setter = team_user_linkup_option_set,
1605 .name = "user_linkup_enabled",
1606 .type = TEAM_OPTION_TYPE_BOOL,
1608 .getter = team_user_linkup_en_option_get,
1609 .setter = team_user_linkup_en_option_set,
1613 .type = TEAM_OPTION_TYPE_S32,
1615 .getter = team_priority_option_get,
1616 .setter = team_priority_option_set,
1620 .type = TEAM_OPTION_TYPE_U32,
1622 .getter = team_queue_id_option_get,
1623 .setter = team_queue_id_option_set,
1628 static int team_init(struct net_device *dev)
1630 struct team *team = netdev_priv(dev);
1635 team_set_no_mode(team);
1636 team->notifier_ctx = false;
1638 team->pcpu_stats = netdev_alloc_pcpu_stats(struct team_pcpu_stats);
1639 if (!team->pcpu_stats)
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);
1647 goto err_team_queue_override_init;
1649 team_adjust_ops(team);
1651 INIT_LIST_HEAD(&team->option_list);
1652 INIT_LIST_HEAD(&team->option_inst_list);
1654 team_notify_peers_init(team);
1655 team_mcast_rejoin_init(team);
1657 err = team_options_register(team, team_options, ARRAY_SIZE(team_options));
1659 goto err_options_register;
1660 netif_carrier_off(dev);
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);
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);
1678 static void team_uninit(struct net_device *dev)
1680 struct team *team = netdev_priv(dev);
1681 struct team_port *port;
1682 struct team_port *tmp;
1684 mutex_lock(&team->lock);
1685 list_for_each_entry_safe(port, tmp, &team->port_list, list)
1686 team_port_del(team, port->dev);
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);
1698 static void team_destructor(struct net_device *dev)
1700 struct team *team = netdev_priv(dev);
1702 free_percpu(team->pcpu_stats);
1705 static int team_open(struct net_device *dev)
1710 static int team_close(struct net_device *dev)
1712 struct team *team = netdev_priv(dev);
1713 struct team_port *port;
1715 list_for_each_entry(port, &team->port_list, list) {
1716 dev_uc_unsync(port->dev, dev);
1717 dev_mc_unsync(port->dev, dev);
1724 * note: already called with rcu_read_lock
1726 static netdev_tx_t team_xmit(struct sk_buff *skb, struct net_device *dev)
1728 struct team *team = netdev_priv(dev);
1730 unsigned int len = skb->len;
1732 tx_success = team_queue_override_transmit(team, skb);
1734 tx_success = team->ops.transmit(team, skb);
1736 struct team_pcpu_stats *pcpu_stats;
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);
1744 this_cpu_inc(team->pcpu_stats->tx_dropped);
1747 return NETDEV_TX_OK;
1750 static u16 team_select_queue(struct net_device *dev, struct sk_buff *skb,
1751 struct net_device *sb_dev)
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.
1759 u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0;
1762 * Save the original txq to restore before passing to the driver
1764 qdisc_skb_cb(skb)->slave_dev_queue_mapping = skb->queue_mapping;
1766 if (unlikely(txq >= dev->real_num_tx_queues)) {
1768 txq -= dev->real_num_tx_queues;
1769 } while (txq >= dev->real_num_tx_queues);
1774 static void team_change_rx_flags(struct net_device *dev, int change)
1776 struct team *team = netdev_priv(dev);
1777 struct team_port *port;
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);
1786 if (change & IFF_ALLMULTI) {
1787 inc = dev->flags & IFF_ALLMULTI ? 1 : -1;
1788 dev_set_allmulti(port->dev, inc);
1794 static void team_set_rx_mode(struct net_device *dev)
1796 struct team *team = netdev_priv(dev);
1797 struct team_port *port;
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);
1807 static int team_set_mac_address(struct net_device *dev, void *p)
1809 struct sockaddr *addr = p;
1810 struct team *team = netdev_priv(dev);
1811 struct team_port *port;
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);
1824 static int team_change_mtu(struct net_device *dev, int new_mtu)
1826 struct team *team = netdev_priv(dev);
1827 struct team_port *port;
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
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);
1839 netdev_err(dev, "Device %s failed to change mtu",
1844 team->port_mtu_change_allowed = false;
1845 mutex_unlock(&team->lock);
1847 WRITE_ONCE(dev->mtu, new_mtu);
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);
1861 team_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
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;
1870 for_each_possible_cpu(i) {
1871 p = per_cpu_ptr(team->pcpu_stats, i);
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));
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;
1887 * rx_dropped, tx_dropped & rx_nohandler are u32,
1888 * updated without syncp protection.
1890 rx_dropped += READ_ONCE(p->rx_dropped);
1891 tx_dropped += READ_ONCE(p->tx_dropped);
1892 rx_nohandler += READ_ONCE(p->rx_nohandler);
1894 stats->rx_dropped = rx_dropped;
1895 stats->tx_dropped = tx_dropped;
1896 stats->rx_nohandler = rx_nohandler;
1899 static int team_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid)
1901 struct team *team = netdev_priv(dev);
1902 struct team_port *port;
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
1909 mutex_lock(&team->lock);
1910 list_for_each_entry(port, &team->port_list, list) {
1911 err = vlan_vid_add(port->dev, proto, vid);
1915 mutex_unlock(&team->lock);
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);
1927 static int team_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid)
1929 struct team *team = netdev_priv(dev);
1930 struct team_port *port;
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);
1940 #ifdef CONFIG_NET_POLL_CONTROLLER
1941 static void team_poll_controller(struct net_device *dev)
1945 static void __team_netpoll_cleanup(struct team *team)
1947 struct team_port *port;
1949 list_for_each_entry(port, &team->port_list, list)
1950 team_port_disable_netpoll(port);
1953 static void team_netpoll_cleanup(struct net_device *dev)
1955 struct team *team = netdev_priv(dev);
1957 mutex_lock(&team->lock);
1958 __team_netpoll_cleanup(team);
1959 mutex_unlock(&team->lock);
1962 static int team_netpoll_setup(struct net_device *dev)
1964 struct team *team = netdev_priv(dev);
1965 struct team_port *port;
1968 mutex_lock(&team->lock);
1969 list_for_each_entry(port, &team->port_list, list) {
1970 err = __team_port_enable_netpoll(port);
1972 __team_netpoll_cleanup(team);
1976 mutex_unlock(&team->lock);
1981 static int team_add_slave(struct net_device *dev, struct net_device *port_dev,
1982 struct netlink_ext_ack *extack)
1984 struct team *team = netdev_priv(dev);
1987 mutex_lock(&team->lock);
1988 err = team_port_add(team, port_dev, extack);
1989 mutex_unlock(&team->lock);
1992 netdev_change_features(dev);
1997 static int team_del_slave(struct net_device *dev, struct net_device *port_dev)
1999 struct team *team = netdev_priv(dev);
2002 mutex_lock(&team->lock);
2003 err = team_port_del(team, port_dev);
2004 mutex_unlock(&team->lock);
2009 if (netif_is_team_master(port_dev)) {
2010 lockdep_unregister_key(&team->team_lock_key);
2011 lockdep_register_key(&team->team_lock_key);
2012 lockdep_set_class(&team->lock, &team->team_lock_key);
2014 netdev_change_features(dev);
2019 static netdev_features_t team_fix_features(struct net_device *dev,
2020 netdev_features_t features)
2022 struct team_port *port;
2023 struct team *team = netdev_priv(dev);
2024 netdev_features_t mask;
2027 features = netdev_base_features(features);
2030 list_for_each_entry_rcu(port, &team->port_list, list) {
2031 features = netdev_increment_features(features,
2032 port->dev->features,
2037 features = netdev_add_tso_features(features, mask);
2042 static int team_change_carrier(struct net_device *dev, bool new_carrier)
2044 struct team *team = netdev_priv(dev);
2046 team->user_carrier_enabled = true;
2049 netif_carrier_on(dev);
2051 netif_carrier_off(dev);
2055 static const struct net_device_ops team_netdev_ops = {
2056 .ndo_init = team_init,
2057 .ndo_uninit = team_uninit,
2058 .ndo_open = team_open,
2059 .ndo_stop = team_close,
2060 .ndo_start_xmit = team_xmit,
2061 .ndo_select_queue = team_select_queue,
2062 .ndo_change_rx_flags = team_change_rx_flags,
2063 .ndo_set_rx_mode = team_set_rx_mode,
2064 .ndo_set_mac_address = team_set_mac_address,
2065 .ndo_change_mtu = team_change_mtu,
2066 .ndo_get_stats64 = team_get_stats64,
2067 .ndo_vlan_rx_add_vid = team_vlan_rx_add_vid,
2068 .ndo_vlan_rx_kill_vid = team_vlan_rx_kill_vid,
2069 #ifdef CONFIG_NET_POLL_CONTROLLER
2070 .ndo_poll_controller = team_poll_controller,
2071 .ndo_netpoll_setup = team_netpoll_setup,
2072 .ndo_netpoll_cleanup = team_netpoll_cleanup,
2074 .ndo_add_slave = team_add_slave,
2075 .ndo_del_slave = team_del_slave,
2076 .ndo_fix_features = team_fix_features,
2077 .ndo_change_carrier = team_change_carrier,
2078 .ndo_features_check = passthru_features_check,
2081 /***********************
2083 ***********************/
2085 static void team_ethtool_get_drvinfo(struct net_device *dev,
2086 struct ethtool_drvinfo *drvinfo)
2088 strscpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver));
2091 static int team_ethtool_get_link_ksettings(struct net_device *dev,
2092 struct ethtool_link_ksettings *cmd)
2094 struct team *team= netdev_priv(dev);
2095 unsigned long speed = 0;
2096 struct team_port *port;
2098 cmd->base.duplex = DUPLEX_UNKNOWN;
2099 cmd->base.port = PORT_OTHER;
2102 list_for_each_entry_rcu(port, &team->port_list, list) {
2103 if (team_port_txable(port)) {
2104 if (port->state.speed != SPEED_UNKNOWN)
2105 speed += port->state.speed;
2106 if (cmd->base.duplex == DUPLEX_UNKNOWN &&
2107 port->state.duplex != DUPLEX_UNKNOWN)
2108 cmd->base.duplex = port->state.duplex;
2113 cmd->base.speed = speed ? : SPEED_UNKNOWN;
2118 static const struct ethtool_ops team_ethtool_ops = {
2119 .get_drvinfo = team_ethtool_get_drvinfo,
2120 .get_link = ethtool_op_get_link,
2121 .get_link_ksettings = team_ethtool_get_link_ksettings,
2124 /***********************
2125 * rt netlink interface
2126 ***********************/
2128 static void team_setup_by_port(struct net_device *dev,
2129 struct net_device *port_dev)
2131 struct team *team = netdev_priv(dev);
2133 if (port_dev->type == ARPHRD_ETHER)
2134 dev->header_ops = team->header_ops_cache;
2136 dev->header_ops = port_dev->header_ops;
2137 dev->type = port_dev->type;
2138 dev->hard_header_len = port_dev->hard_header_len;
2139 dev->needed_headroom = port_dev->needed_headroom;
2140 dev->addr_len = port_dev->addr_len;
2141 dev->mtu = port_dev->mtu;
2142 memcpy(dev->broadcast, port_dev->broadcast, port_dev->addr_len);
2143 eth_hw_addr_inherit(dev, port_dev);
2145 if (port_dev->flags & IFF_POINTOPOINT) {
2146 dev->flags &= ~(IFF_BROADCAST | IFF_MULTICAST);
2147 dev->flags |= (IFF_POINTOPOINT | IFF_NOARP);
2148 } else if ((port_dev->flags & (IFF_BROADCAST | IFF_MULTICAST)) ==
2149 (IFF_BROADCAST | IFF_MULTICAST)) {
2150 dev->flags |= (IFF_BROADCAST | IFF_MULTICAST);
2151 dev->flags &= ~(IFF_POINTOPOINT | IFF_NOARP);
2155 static int team_dev_type_check_change(struct net_device *dev,
2156 struct net_device *port_dev)
2158 struct team *team = netdev_priv(dev);
2159 char *portname = port_dev->name;
2162 if (dev->type == port_dev->type)
2164 if (!list_empty(&team->port_list)) {
2165 netdev_err(dev, "Device %s is of different type\n", portname);
2168 err = call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE, dev);
2169 err = notifier_to_errno(err);
2171 netdev_err(dev, "Refused to change device type\n");
2176 team_setup_by_port(dev, port_dev);
2177 call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE, dev);
2181 static void team_setup(struct net_device *dev)
2183 struct team *team = netdev_priv(dev);
2186 dev->max_mtu = ETH_MAX_MTU;
2187 team->header_ops_cache = dev->header_ops;
2189 dev->netdev_ops = &team_netdev_ops;
2190 dev->ethtool_ops = &team_ethtool_ops;
2191 dev->needs_free_netdev = true;
2192 dev->priv_destructor = team_destructor;
2193 dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING);
2194 dev->priv_flags |= IFF_NO_QUEUE;
2195 dev->priv_flags |= IFF_TEAM;
2198 * Indicate we support unicast address filtering. That way core won't
2199 * bring us to promisc mode in case a unicast addr is added.
2200 * Let this up to underlay drivers.
2202 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
2205 /* Don't allow team devices to change network namespaces. */
2206 dev->netns_local = true;
2208 dev->features |= NETIF_F_GRO;
2210 dev->hw_features = TEAM_VLAN_FEATURES |
2211 NETIF_F_HW_VLAN_CTAG_RX |
2212 NETIF_F_HW_VLAN_CTAG_FILTER |
2213 NETIF_F_HW_VLAN_STAG_RX |
2214 NETIF_F_HW_VLAN_STAG_FILTER;
2216 dev->hw_features |= NETIF_F_GSO_ENCAP_ALL;
2217 dev->features |= dev->hw_features;
2218 dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
2221 static int team_newlink(struct net *src_net, struct net_device *dev,
2222 struct nlattr *tb[], struct nlattr *data[],
2223 struct netlink_ext_ack *extack)
2225 if (tb[IFLA_ADDRESS] == NULL)
2226 eth_hw_addr_random(dev);
2228 return register_netdevice(dev);
2231 static int team_validate(struct nlattr *tb[], struct nlattr *data[],
2232 struct netlink_ext_ack *extack)
2234 if (tb[IFLA_ADDRESS]) {
2235 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
2237 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
2238 return -EADDRNOTAVAIL;
2243 static unsigned int team_get_num_tx_queues(void)
2245 return TEAM_DEFAULT_NUM_TX_QUEUES;
2248 static unsigned int team_get_num_rx_queues(void)
2250 return TEAM_DEFAULT_NUM_RX_QUEUES;
2253 static struct rtnl_link_ops team_link_ops __read_mostly = {
2255 .priv_size = sizeof(struct team),
2256 .setup = team_setup,
2257 .newlink = team_newlink,
2258 .validate = team_validate,
2259 .get_num_tx_queues = team_get_num_tx_queues,
2260 .get_num_rx_queues = team_get_num_rx_queues,
2264 /***********************************
2265 * Generic netlink custom interface
2266 ***********************************/
2268 static struct genl_family team_nl_family;
2270 int team_nl_noop_doit(struct sk_buff *skb, struct genl_info *info)
2272 struct sk_buff *msg;
2276 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2280 hdr = genlmsg_put(msg, info->snd_portid, info->snd_seq,
2281 &team_nl_family, 0, TEAM_CMD_NOOP);
2287 genlmsg_end(msg, hdr);
2289 return genlmsg_unicast(genl_info_net(info), msg, info->snd_portid);
2298 * Netlink cmd functions should be locked by following two functions.
2299 * Since dev gets held here, that ensures dev won't disappear in between.
2301 static struct team *team_nl_team_get(struct genl_info *info)
2303 struct net *net = genl_info_net(info);
2305 struct net_device *dev;
2308 if (!info->attrs[TEAM_ATTR_TEAM_IFINDEX])
2311 ifindex = nla_get_u32(info->attrs[TEAM_ATTR_TEAM_IFINDEX]);
2312 dev = dev_get_by_index(net, ifindex);
2313 if (!dev || dev->netdev_ops != &team_netdev_ops) {
2318 team = netdev_priv(dev);
2319 mutex_lock(&team->lock);
2323 static void team_nl_team_put(struct team *team)
2325 mutex_unlock(&team->lock);
2329 typedef int team_nl_send_func_t(struct sk_buff *skb,
2330 struct team *team, u32 portid);
2332 static int team_nl_send_unicast(struct sk_buff *skb, struct team *team, u32 portid)
2334 return genlmsg_unicast(dev_net(team->dev), skb, portid);
2337 static int team_nl_fill_one_option_get(struct sk_buff *skb, struct team *team,
2338 struct team_option_inst *opt_inst)
2340 struct nlattr *option_item;
2341 struct team_option *option = opt_inst->option;
2342 struct team_option_inst_info *opt_inst_info = &opt_inst->info;
2343 struct team_gsetter_ctx ctx;
2346 ctx.info = opt_inst_info;
2347 err = team_option_get(team, opt_inst, &ctx);
2351 option_item = nla_nest_start_noflag(skb, TEAM_ATTR_ITEM_OPTION);
2355 if (nla_put_string(skb, TEAM_ATTR_OPTION_NAME, option->name))
2357 if (opt_inst_info->port &&
2358 nla_put_u32(skb, TEAM_ATTR_OPTION_PORT_IFINDEX,
2359 opt_inst_info->port->dev->ifindex))
2361 if (opt_inst->option->array_size &&
2362 nla_put_u32(skb, TEAM_ATTR_OPTION_ARRAY_INDEX,
2363 opt_inst_info->array_index))
2366 switch (option->type) {
2367 case TEAM_OPTION_TYPE_U32:
2368 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_U32))
2370 if (nla_put_u32(skb, TEAM_ATTR_OPTION_DATA, ctx.data.u32_val))
2373 case TEAM_OPTION_TYPE_STRING:
2374 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_STRING))
2376 if (nla_put_string(skb, TEAM_ATTR_OPTION_DATA,
2380 case TEAM_OPTION_TYPE_BINARY:
2381 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_BINARY))
2383 if (nla_put(skb, TEAM_ATTR_OPTION_DATA, ctx.data.bin_val.len,
2384 ctx.data.bin_val.ptr))
2387 case TEAM_OPTION_TYPE_BOOL:
2388 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_FLAG))
2390 if (ctx.data.bool_val &&
2391 nla_put_flag(skb, TEAM_ATTR_OPTION_DATA))
2394 case TEAM_OPTION_TYPE_S32:
2395 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_S32))
2397 if (nla_put_s32(skb, TEAM_ATTR_OPTION_DATA, ctx.data.s32_val))
2403 if (opt_inst->removed && nla_put_flag(skb, TEAM_ATTR_OPTION_REMOVED))
2405 if (opt_inst->changed) {
2406 if (nla_put_flag(skb, TEAM_ATTR_OPTION_CHANGED))
2408 opt_inst->changed = false;
2410 nla_nest_end(skb, option_item);
2414 nla_nest_cancel(skb, option_item);
2418 static int __send_and_alloc_skb(struct sk_buff **pskb,
2419 struct team *team, u32 portid,
2420 team_nl_send_func_t *send_func)
2425 err = send_func(*pskb, team, portid);
2429 *pskb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL);
2435 static int team_nl_send_options_get(struct team *team, u32 portid, u32 seq,
2436 int flags, team_nl_send_func_t *send_func,
2437 struct list_head *sel_opt_inst_list)
2439 struct nlattr *option_list;
2440 struct nlmsghdr *nlh;
2442 struct team_option_inst *opt_inst;
2444 struct sk_buff *skb = NULL;
2448 opt_inst = list_first_entry(sel_opt_inst_list,
2449 struct team_option_inst, tmp_list);
2452 err = __send_and_alloc_skb(&skb, team, portid, send_func);
2456 hdr = genlmsg_put(skb, portid, seq, &team_nl_family, flags | NLM_F_MULTI,
2457 TEAM_CMD_OPTIONS_GET);
2463 if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex))
2464 goto nla_put_failure;
2465 option_list = nla_nest_start_noflag(skb, TEAM_ATTR_LIST_OPTION);
2467 goto nla_put_failure;
2471 list_for_each_entry_from(opt_inst, sel_opt_inst_list, tmp_list) {
2472 err = team_nl_fill_one_option_get(skb, team, opt_inst);
2474 if (err == -EMSGSIZE) {
2485 nla_nest_end(skb, option_list);
2486 genlmsg_end(skb, hdr);
2491 nlh = nlmsg_put(skb, portid, seq, NLMSG_DONE, 0, flags | NLM_F_MULTI);
2493 err = __send_and_alloc_skb(&skb, team, portid, send_func);
2499 return send_func(skb, team, portid);
2508 int team_nl_options_get_doit(struct sk_buff *skb, struct genl_info *info)
2511 struct team_option_inst *opt_inst;
2513 LIST_HEAD(sel_opt_inst_list);
2515 team = team_nl_team_get(info);
2519 list_for_each_entry(opt_inst, &team->option_inst_list, list)
2520 list_add_tail(&opt_inst->tmp_list, &sel_opt_inst_list);
2521 err = team_nl_send_options_get(team, info->snd_portid, info->snd_seq,
2522 NLM_F_ACK, team_nl_send_unicast,
2523 &sel_opt_inst_list);
2525 team_nl_team_put(team);
2530 static int team_nl_send_event_options_get(struct team *team,
2531 struct list_head *sel_opt_inst_list);
2533 int team_nl_options_set_doit(struct sk_buff *skb, struct genl_info *info)
2538 struct nlattr *nl_option;
2542 team = team_nl_team_get(info);
2549 if (!info->attrs[TEAM_ATTR_LIST_OPTION]) {
2554 nla_for_each_nested(nl_option, info->attrs[TEAM_ATTR_LIST_OPTION], i) {
2555 struct nlattr *opt_attrs[TEAM_ATTR_OPTION_MAX + 1];
2556 struct nlattr *attr;
2557 struct nlattr *attr_data;
2558 LIST_HEAD(opt_inst_list);
2559 enum team_option_type opt_type;
2560 int opt_port_ifindex = 0; /* != 0 for per-port options */
2561 u32 opt_array_index = 0;
2562 bool opt_is_array = false;
2563 struct team_option_inst *opt_inst;
2565 bool opt_found = false;
2567 if (nla_type(nl_option) != TEAM_ATTR_ITEM_OPTION) {
2571 err = nla_parse_nested_deprecated(opt_attrs,
2572 TEAM_ATTR_OPTION_MAX,
2574 team_attr_option_nl_policy,
2578 if (!opt_attrs[TEAM_ATTR_OPTION_NAME] ||
2579 !opt_attrs[TEAM_ATTR_OPTION_TYPE]) {
2583 switch (nla_get_u8(opt_attrs[TEAM_ATTR_OPTION_TYPE])) {
2585 opt_type = TEAM_OPTION_TYPE_U32;
2588 opt_type = TEAM_OPTION_TYPE_STRING;
2591 opt_type = TEAM_OPTION_TYPE_BINARY;
2594 opt_type = TEAM_OPTION_TYPE_BOOL;
2597 opt_type = TEAM_OPTION_TYPE_S32;
2603 attr_data = opt_attrs[TEAM_ATTR_OPTION_DATA];
2604 if (opt_type != TEAM_OPTION_TYPE_BOOL && !attr_data) {
2609 opt_name = nla_data(opt_attrs[TEAM_ATTR_OPTION_NAME]);
2610 attr = opt_attrs[TEAM_ATTR_OPTION_PORT_IFINDEX];
2612 opt_port_ifindex = nla_get_u32(attr);
2614 attr = opt_attrs[TEAM_ATTR_OPTION_ARRAY_INDEX];
2616 opt_is_array = true;
2617 opt_array_index = nla_get_u32(attr);
2620 list_for_each_entry(opt_inst, &team->option_inst_list, list) {
2621 struct team_option *option = opt_inst->option;
2622 struct team_gsetter_ctx ctx;
2623 struct team_option_inst_info *opt_inst_info;
2626 opt_inst_info = &opt_inst->info;
2627 tmp_ifindex = opt_inst_info->port ?
2628 opt_inst_info->port->dev->ifindex : 0;
2629 if (option->type != opt_type ||
2630 strcmp(option->name, opt_name) ||
2631 tmp_ifindex != opt_port_ifindex ||
2632 (option->array_size && !opt_is_array) ||
2633 opt_inst_info->array_index != opt_array_index)
2636 ctx.info = opt_inst_info;
2638 case TEAM_OPTION_TYPE_U32:
2639 ctx.data.u32_val = nla_get_u32(attr_data);
2641 case TEAM_OPTION_TYPE_STRING:
2642 if (nla_len(attr_data) > TEAM_STRING_MAX_LEN ||
2643 !memchr(nla_data(attr_data), '\0',
2644 nla_len(attr_data))) {
2648 ctx.data.str_val = nla_data(attr_data);
2650 case TEAM_OPTION_TYPE_BINARY:
2651 ctx.data.bin_val.len = nla_len(attr_data);
2652 ctx.data.bin_val.ptr = nla_data(attr_data);
2654 case TEAM_OPTION_TYPE_BOOL:
2655 ctx.data.bool_val = attr_data ? true : false;
2657 case TEAM_OPTION_TYPE_S32:
2658 ctx.data.s32_val = nla_get_s32(attr_data);
2663 err = team_option_set(team, opt_inst, &ctx);
2666 opt_inst->changed = true;
2667 list_add(&opt_inst->tmp_list, &opt_inst_list);
2674 err = team_nl_send_event_options_get(team, &opt_inst_list);
2680 team_nl_team_put(team);
2686 static int team_nl_fill_one_port_get(struct sk_buff *skb,
2687 struct team_port *port)
2689 struct nlattr *port_item;
2691 port_item = nla_nest_start_noflag(skb, TEAM_ATTR_ITEM_PORT);
2694 if (nla_put_u32(skb, TEAM_ATTR_PORT_IFINDEX, port->dev->ifindex))
2696 if (port->changed) {
2697 if (nla_put_flag(skb, TEAM_ATTR_PORT_CHANGED))
2699 port->changed = false;
2701 if ((port->removed &&
2702 nla_put_flag(skb, TEAM_ATTR_PORT_REMOVED)) ||
2703 (port->state.linkup &&
2704 nla_put_flag(skb, TEAM_ATTR_PORT_LINKUP)) ||
2705 nla_put_u32(skb, TEAM_ATTR_PORT_SPEED, port->state.speed) ||
2706 nla_put_u8(skb, TEAM_ATTR_PORT_DUPLEX, port->state.duplex))
2708 nla_nest_end(skb, port_item);
2712 nla_nest_cancel(skb, port_item);
2716 static int team_nl_send_port_list_get(struct team *team, u32 portid, u32 seq,
2717 int flags, team_nl_send_func_t *send_func,
2718 struct team_port *one_port)
2720 struct nlattr *port_list;
2721 struct nlmsghdr *nlh;
2723 struct team_port *port;
2725 struct sk_buff *skb = NULL;
2729 port = list_first_entry_or_null(&team->port_list,
2730 struct team_port, list);
2733 err = __send_and_alloc_skb(&skb, team, portid, send_func);
2737 hdr = genlmsg_put(skb, portid, seq, &team_nl_family, flags | NLM_F_MULTI,
2738 TEAM_CMD_PORT_LIST_GET);
2744 if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex))
2745 goto nla_put_failure;
2746 port_list = nla_nest_start_noflag(skb, TEAM_ATTR_LIST_PORT);
2748 goto nla_put_failure;
2753 /* If one port is selected, called wants to send port list containing
2754 * only this port. Otherwise go through all listed ports and send all
2757 err = team_nl_fill_one_port_get(skb, one_port);
2761 list_for_each_entry_from(port, &team->port_list, list) {
2762 err = team_nl_fill_one_port_get(skb, port);
2764 if (err == -EMSGSIZE) {
2776 nla_nest_end(skb, port_list);
2777 genlmsg_end(skb, hdr);
2782 nlh = nlmsg_put(skb, portid, seq, NLMSG_DONE, 0, flags | NLM_F_MULTI);
2784 err = __send_and_alloc_skb(&skb, team, portid, send_func);
2790 return send_func(skb, team, portid);
2799 int team_nl_port_list_get_doit(struct sk_buff *skb,
2800 struct genl_info *info)
2805 team = team_nl_team_get(info);
2809 err = team_nl_send_port_list_get(team, info->snd_portid, info->snd_seq,
2810 NLM_F_ACK, team_nl_send_unicast, NULL);
2812 team_nl_team_put(team);
2817 static const struct genl_multicast_group team_nl_mcgrps[] = {
2818 { .name = TEAM_GENL_CHANGE_EVENT_MC_GRP_NAME, },
2821 static struct genl_family team_nl_family __ro_after_init = {
2822 .name = TEAM_GENL_NAME,
2823 .version = TEAM_GENL_VERSION,
2824 .maxattr = ARRAY_SIZE(team_nl_policy) - 1,
2825 .policy = team_nl_policy,
2827 .module = THIS_MODULE,
2828 .small_ops = team_nl_ops,
2829 .n_small_ops = ARRAY_SIZE(team_nl_ops),
2830 .resv_start_op = TEAM_CMD_PORT_LIST_GET + 1,
2831 .mcgrps = team_nl_mcgrps,
2832 .n_mcgrps = ARRAY_SIZE(team_nl_mcgrps),
2835 static int team_nl_send_multicast(struct sk_buff *skb,
2836 struct team *team, u32 portid)
2838 return genlmsg_multicast_netns(&team_nl_family, dev_net(team->dev),
2839 skb, 0, 0, GFP_KERNEL);
2842 static int team_nl_send_event_options_get(struct team *team,
2843 struct list_head *sel_opt_inst_list)
2845 return team_nl_send_options_get(team, 0, 0, 0, team_nl_send_multicast,
2849 static int team_nl_send_event_port_get(struct team *team,
2850 struct team_port *port)
2852 return team_nl_send_port_list_get(team, 0, 0, 0, team_nl_send_multicast,
2856 static int __init team_nl_init(void)
2858 return genl_register_family(&team_nl_family);
2861 static void __exit team_nl_fini(void)
2863 genl_unregister_family(&team_nl_family);
2871 static void __team_options_change_check(struct team *team)
2874 struct team_option_inst *opt_inst;
2875 LIST_HEAD(sel_opt_inst_list);
2877 list_for_each_entry(opt_inst, &team->option_inst_list, list) {
2878 if (opt_inst->changed)
2879 list_add_tail(&opt_inst->tmp_list, &sel_opt_inst_list);
2881 err = team_nl_send_event_options_get(team, &sel_opt_inst_list);
2882 if (err && err != -ESRCH)
2883 netdev_warn(team->dev, "Failed to send options change via netlink (err %d)\n",
2887 /* rtnl lock is held */
2889 static void __team_port_change_send(struct team_port *port, bool linkup)
2893 port->changed = true;
2894 port->state.linkup = linkup;
2895 team_refresh_port_linkup(port);
2897 struct ethtool_link_ksettings ecmd;
2899 err = __ethtool_get_link_ksettings(port->dev, &ecmd);
2901 port->state.speed = ecmd.base.speed;
2902 port->state.duplex = ecmd.base.duplex;
2906 port->state.speed = 0;
2907 port->state.duplex = 0;
2910 err = team_nl_send_event_port_get(port->team, port);
2911 if (err && err != -ESRCH)
2912 netdev_warn(port->team->dev, "Failed to send port change of device %s via netlink (err %d)\n",
2913 port->dev->name, err);
2917 static void __team_carrier_check(struct team *team)
2919 struct team_port *port;
2922 if (team->user_carrier_enabled)
2925 team_linkup = false;
2926 list_for_each_entry(port, &team->port_list, list) {
2934 netif_carrier_on(team->dev);
2936 netif_carrier_off(team->dev);
2939 static void __team_port_change_check(struct team_port *port, bool linkup)
2941 if (port->state.linkup != linkup)
2942 __team_port_change_send(port, linkup);
2943 __team_carrier_check(port->team);
2946 static void __team_port_change_port_added(struct team_port *port, bool linkup)
2948 __team_port_change_send(port, linkup);
2949 __team_carrier_check(port->team);
2952 static void __team_port_change_port_removed(struct team_port *port)
2954 port->removed = true;
2955 __team_port_change_send(port, false);
2956 __team_carrier_check(port->team);
2959 static void team_port_change_check(struct team_port *port, bool linkup)
2961 struct team *team = port->team;
2963 mutex_lock(&team->lock);
2964 __team_port_change_check(port, linkup);
2965 mutex_unlock(&team->lock);
2969 /************************************
2970 * Net device notifier event handler
2971 ************************************/
2973 static int team_device_event(struct notifier_block *unused,
2974 unsigned long event, void *ptr)
2976 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
2977 struct team_port *port;
2979 port = team_port_get_rtnl(dev);
2985 if (netif_oper_up(dev))
2986 team_port_change_check(port, true);
2989 team_port_change_check(port, false);
2992 if (netif_running(port->dev))
2993 team_port_change_check(port,
2994 !!netif_oper_up(port->dev));
2996 case NETDEV_UNREGISTER:
2997 team_del_slave(port->team->dev, dev);
2999 case NETDEV_FEAT_CHANGE:
3000 if (!port->team->notifier_ctx) {
3001 port->team->notifier_ctx = true;
3002 team_compute_features(port->team);
3003 port->team->notifier_ctx = false;
3006 case NETDEV_PRECHANGEMTU:
3007 /* Forbid to change mtu of underlaying device */
3008 if (!port->team->port_mtu_change_allowed)
3011 case NETDEV_PRE_TYPE_CHANGE:
3012 /* Forbid to change type of underlaying device */
3014 case NETDEV_RESEND_IGMP:
3015 /* Propagate to master device */
3016 call_netdevice_notifiers(event, port->team->dev);
3022 static struct notifier_block team_notifier_block __read_mostly = {
3023 .notifier_call = team_device_event,
3027 /***********************
3028 * Module init and exit
3029 ***********************/
3031 static int __init team_module_init(void)
3035 register_netdevice_notifier(&team_notifier_block);
3037 err = rtnl_link_register(&team_link_ops);
3041 err = team_nl_init();
3048 rtnl_link_unregister(&team_link_ops);
3051 unregister_netdevice_notifier(&team_notifier_block);
3056 static void __exit team_module_exit(void)
3059 rtnl_link_unregister(&team_link_ops);
3060 unregister_netdevice_notifier(&team_notifier_block);
3063 module_init(team_module_init);
3064 module_exit(team_module_exit);
3066 MODULE_LICENSE("GPL v2");
3068 MODULE_DESCRIPTION("Ethernet team device driver");
3069 MODULE_ALIAS_RTNL_LINK(DRV_NAME);