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 <generated/utsrelease.h>
29 #include <linux/if_team.h>
31 #define DRV_NAME "team"
38 static struct team_port *team_port_get_rtnl(const struct net_device *dev)
40 struct team_port *port = rtnl_dereference(dev->rx_handler_data);
42 return netif_is_team_port(dev) ? port : NULL;
46 * Since the ability to change device address for open port device is tested in
47 * team_port_add, this function can be called without control of return value
49 static int __set_port_dev_addr(struct net_device *port_dev,
50 const unsigned char *dev_addr)
52 struct sockaddr_storage addr;
54 memcpy(addr.__data, dev_addr, port_dev->addr_len);
55 addr.ss_family = port_dev->type;
56 return dev_set_mac_address(port_dev, (struct sockaddr *)&addr, NULL);
59 static int team_port_set_orig_dev_addr(struct team_port *port)
61 return __set_port_dev_addr(port->dev, port->orig.dev_addr);
64 static int team_port_set_team_dev_addr(struct team *team,
65 struct team_port *port)
67 return __set_port_dev_addr(port->dev, team->dev->dev_addr);
70 int team_modeop_port_enter(struct team *team, struct team_port *port)
72 return team_port_set_team_dev_addr(team, port);
74 EXPORT_SYMBOL(team_modeop_port_enter);
76 void team_modeop_port_change_dev_addr(struct team *team,
77 struct team_port *port)
79 team_port_set_team_dev_addr(team, port);
81 EXPORT_SYMBOL(team_modeop_port_change_dev_addr);
83 static void team_lower_state_changed(struct team_port *port)
85 struct netdev_lag_lower_state_info info;
87 info.link_up = port->linkup;
88 info.tx_enabled = team_port_enabled(port);
89 netdev_lower_state_changed(port->dev, &info);
92 static void team_refresh_port_linkup(struct team_port *port)
94 bool new_linkup = port->user.linkup_enabled ? port->user.linkup :
97 if (port->linkup != new_linkup) {
98 port->linkup = new_linkup;
99 team_lower_state_changed(port);
108 struct team_option_inst { /* One for each option instance */
109 struct list_head list;
110 struct list_head tmp_list;
111 struct team_option *option;
112 struct team_option_inst_info info;
117 static struct team_option *__team_find_option(struct team *team,
118 const char *opt_name)
120 struct team_option *option;
122 list_for_each_entry(option, &team->option_list, list) {
123 if (strcmp(option->name, opt_name) == 0)
129 static void __team_option_inst_del(struct team_option_inst *opt_inst)
131 list_del(&opt_inst->list);
135 static void __team_option_inst_del_option(struct team *team,
136 struct team_option *option)
138 struct team_option_inst *opt_inst, *tmp;
140 list_for_each_entry_safe(opt_inst, tmp, &team->option_inst_list, list) {
141 if (opt_inst->option == option)
142 __team_option_inst_del(opt_inst);
146 static int __team_option_inst_add(struct team *team, struct team_option *option,
147 struct team_port *port)
149 struct team_option_inst *opt_inst;
150 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 err = option->init(team, &opt_inst->info);
178 static int __team_option_inst_add_option(struct team *team,
179 struct team_option *option)
183 if (!option->per_port) {
184 err = __team_option_inst_add(team, option, NULL);
186 goto inst_del_option;
191 __team_option_inst_del_option(team, option);
195 static void __team_option_inst_mark_removed_option(struct team *team,
196 struct team_option *option)
198 struct team_option_inst *opt_inst;
200 list_for_each_entry(opt_inst, &team->option_inst_list, list) {
201 if (opt_inst->option == option) {
202 opt_inst->changed = true;
203 opt_inst->removed = true;
208 static void __team_option_inst_del_port(struct team *team,
209 struct team_port *port)
211 struct team_option_inst *opt_inst, *tmp;
213 list_for_each_entry_safe(opt_inst, tmp, &team->option_inst_list, list) {
214 if (opt_inst->option->per_port &&
215 opt_inst->info.port == port)
216 __team_option_inst_del(opt_inst);
220 static int __team_option_inst_add_port(struct team *team,
221 struct team_port *port)
223 struct team_option *option;
226 list_for_each_entry(option, &team->option_list, list) {
227 if (!option->per_port)
229 err = __team_option_inst_add(team, option, port);
236 __team_option_inst_del_port(team, port);
240 static void __team_option_inst_mark_removed_port(struct team *team,
241 struct team_port *port)
243 struct team_option_inst *opt_inst;
245 list_for_each_entry(opt_inst, &team->option_inst_list, list) {
246 if (opt_inst->info.port == port) {
247 opt_inst->changed = true;
248 opt_inst->removed = true;
253 static int __team_options_register(struct team *team,
254 const struct team_option *option,
258 struct team_option **dst_opts;
261 dst_opts = kcalloc(option_count, sizeof(struct team_option *),
265 for (i = 0; i < option_count; i++, option++) {
266 if (__team_find_option(team, option->name)) {
270 dst_opts[i] = kmemdup(option, sizeof(*option), GFP_KERNEL);
277 for (i = 0; i < option_count; i++) {
278 err = __team_option_inst_add_option(team, dst_opts[i]);
281 list_add_tail(&dst_opts[i]->list, &team->option_list);
288 for (i--; i >= 0; i--)
289 __team_option_inst_del_option(team, dst_opts[i]);
293 for (i--; i >= 0; i--)
300 static void __team_options_mark_removed(struct team *team,
301 const struct team_option *option,
306 for (i = 0; i < option_count; i++, option++) {
307 struct team_option *del_opt;
309 del_opt = __team_find_option(team, option->name);
311 __team_option_inst_mark_removed_option(team, del_opt);
315 static void __team_options_unregister(struct team *team,
316 const struct team_option *option,
321 for (i = 0; i < option_count; i++, option++) {
322 struct team_option *del_opt;
324 del_opt = __team_find_option(team, option->name);
326 __team_option_inst_del_option(team, del_opt);
327 list_del(&del_opt->list);
333 static void __team_options_change_check(struct team *team);
335 int team_options_register(struct team *team,
336 const struct team_option *option,
341 err = __team_options_register(team, option, option_count);
344 __team_options_change_check(team);
347 EXPORT_SYMBOL(team_options_register);
349 void team_options_unregister(struct team *team,
350 const struct team_option *option,
353 __team_options_mark_removed(team, option, option_count);
354 __team_options_change_check(team);
355 __team_options_unregister(team, option, option_count);
357 EXPORT_SYMBOL(team_options_unregister);
359 static int team_option_get(struct team *team,
360 struct team_option_inst *opt_inst,
361 struct team_gsetter_ctx *ctx)
363 if (!opt_inst->option->getter)
365 return opt_inst->option->getter(team, ctx);
368 static int team_option_set(struct team *team,
369 struct team_option_inst *opt_inst,
370 struct team_gsetter_ctx *ctx)
372 if (!opt_inst->option->setter)
374 return opt_inst->option->setter(team, ctx);
377 void team_option_inst_set_change(struct team_option_inst_info *opt_inst_info)
379 struct team_option_inst *opt_inst;
381 opt_inst = container_of(opt_inst_info, struct team_option_inst, info);
382 opt_inst->changed = true;
384 EXPORT_SYMBOL(team_option_inst_set_change);
386 void team_options_change_check(struct team *team)
388 __team_options_change_check(team);
390 EXPORT_SYMBOL(team_options_change_check);
397 static LIST_HEAD(mode_list);
398 static DEFINE_SPINLOCK(mode_list_lock);
400 struct team_mode_item {
401 struct list_head list;
402 const struct team_mode *mode;
405 static struct team_mode_item *__find_mode(const char *kind)
407 struct team_mode_item *mitem;
409 list_for_each_entry(mitem, &mode_list, list) {
410 if (strcmp(mitem->mode->kind, kind) == 0)
416 static bool is_good_mode_name(const char *name)
418 while (*name != '\0') {
419 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
426 int team_mode_register(const struct team_mode *mode)
429 struct team_mode_item *mitem;
431 if (!is_good_mode_name(mode->kind) ||
432 mode->priv_size > TEAM_MODE_PRIV_SIZE)
435 mitem = kmalloc(sizeof(*mitem), GFP_KERNEL);
439 spin_lock(&mode_list_lock);
440 if (__find_mode(mode->kind)) {
446 list_add_tail(&mitem->list, &mode_list);
448 spin_unlock(&mode_list_lock);
451 EXPORT_SYMBOL(team_mode_register);
453 void team_mode_unregister(const struct team_mode *mode)
455 struct team_mode_item *mitem;
457 spin_lock(&mode_list_lock);
458 mitem = __find_mode(mode->kind);
460 list_del_init(&mitem->list);
463 spin_unlock(&mode_list_lock);
465 EXPORT_SYMBOL(team_mode_unregister);
467 static const struct team_mode *team_mode_get(const char *kind)
469 struct team_mode_item *mitem;
470 const struct team_mode *mode = NULL;
472 if (!try_module_get(THIS_MODULE))
475 spin_lock(&mode_list_lock);
476 mitem = __find_mode(kind);
478 spin_unlock(&mode_list_lock);
479 request_module("team-mode-%s", kind);
480 spin_lock(&mode_list_lock);
481 mitem = __find_mode(kind);
485 if (!try_module_get(mode->owner))
489 spin_unlock(&mode_list_lock);
490 module_put(THIS_MODULE);
494 static void team_mode_put(const struct team_mode *mode)
496 module_put(mode->owner);
499 static bool team_dummy_transmit(struct team *team, struct sk_buff *skb)
501 dev_kfree_skb_any(skb);
505 static rx_handler_result_t team_dummy_receive(struct team *team,
506 struct team_port *port,
509 return RX_HANDLER_ANOTHER;
512 static const struct team_mode __team_no_mode = {
516 static bool team_is_mode_set(struct team *team)
518 return team->mode != &__team_no_mode;
521 static void team_set_no_mode(struct team *team)
523 team->user_carrier_enabled = false;
524 team->mode = &__team_no_mode;
527 static void team_adjust_ops(struct team *team)
530 * To avoid checks in rx/tx skb paths, ensure here that non-null and
531 * correct ops are always set.
534 if (!team->en_port_count || !team_is_mode_set(team) ||
535 !team->mode->ops->transmit)
536 team->ops.transmit = team_dummy_transmit;
538 team->ops.transmit = team->mode->ops->transmit;
540 if (!team->en_port_count || !team_is_mode_set(team) ||
541 !team->mode->ops->receive)
542 team->ops.receive = team_dummy_receive;
544 team->ops.receive = team->mode->ops->receive;
548 * We can benefit from the fact that it's ensured no port is present
549 * at the time of mode change. Therefore no packets are in fly so there's no
550 * need to set mode operations in any special way.
552 static int __team_change_mode(struct team *team,
553 const struct team_mode *new_mode)
555 /* Check if mode was previously set and do cleanup if so */
556 if (team_is_mode_set(team)) {
557 void (*exit_op)(struct team *team) = team->ops.exit;
559 /* Clear ops area so no callback is called any longer */
560 memset(&team->ops, 0, sizeof(struct team_mode_ops));
561 team_adjust_ops(team);
565 team_mode_put(team->mode);
566 team_set_no_mode(team);
567 /* zero private data area */
568 memset(&team->mode_priv, 0,
569 sizeof(struct team) - offsetof(struct team, mode_priv));
575 if (new_mode->ops->init) {
578 err = new_mode->ops->init(team);
583 team->mode = new_mode;
584 memcpy(&team->ops, new_mode->ops, sizeof(struct team_mode_ops));
585 team_adjust_ops(team);
590 static int team_change_mode(struct team *team, const char *kind)
592 const struct team_mode *new_mode;
593 struct net_device *dev = team->dev;
596 if (!list_empty(&team->port_list)) {
597 netdev_err(dev, "No ports can be present during mode change\n");
601 if (team_is_mode_set(team) && strcmp(team->mode->kind, kind) == 0) {
602 netdev_err(dev, "Unable to change to the same mode the team is in\n");
606 new_mode = team_mode_get(kind);
608 netdev_err(dev, "Mode \"%s\" not found\n", kind);
612 err = __team_change_mode(team, new_mode);
614 netdev_err(dev, "Failed to change to mode \"%s\"\n", kind);
615 team_mode_put(new_mode);
619 netdev_info(dev, "Mode changed to \"%s\"\n", kind);
624 /*********************
626 *********************/
628 static void team_notify_peers_work(struct work_struct *work)
633 team = container_of(work, struct team, notify_peers.dw.work);
635 if (!rtnl_trylock()) {
636 schedule_delayed_work(&team->notify_peers.dw, 0);
639 val = atomic_dec_if_positive(&team->notify_peers.count_pending);
644 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, team->dev);
647 schedule_delayed_work(&team->notify_peers.dw,
648 msecs_to_jiffies(team->notify_peers.interval));
651 static void team_notify_peers(struct team *team)
653 if (!team->notify_peers.count || !netif_running(team->dev))
655 atomic_add(team->notify_peers.count, &team->notify_peers.count_pending);
656 schedule_delayed_work(&team->notify_peers.dw, 0);
659 static void team_notify_peers_init(struct team *team)
661 INIT_DELAYED_WORK(&team->notify_peers.dw, team_notify_peers_work);
664 static void team_notify_peers_fini(struct team *team)
666 cancel_delayed_work_sync(&team->notify_peers.dw);
670 /*******************************
671 * Send multicast group rejoins
672 *******************************/
674 static void team_mcast_rejoin_work(struct work_struct *work)
679 team = container_of(work, struct team, mcast_rejoin.dw.work);
681 if (!rtnl_trylock()) {
682 schedule_delayed_work(&team->mcast_rejoin.dw, 0);
685 val = atomic_dec_if_positive(&team->mcast_rejoin.count_pending);
690 call_netdevice_notifiers(NETDEV_RESEND_IGMP, team->dev);
693 schedule_delayed_work(&team->mcast_rejoin.dw,
694 msecs_to_jiffies(team->mcast_rejoin.interval));
697 static void team_mcast_rejoin(struct team *team)
699 if (!team->mcast_rejoin.count || !netif_running(team->dev))
701 atomic_add(team->mcast_rejoin.count, &team->mcast_rejoin.count_pending);
702 schedule_delayed_work(&team->mcast_rejoin.dw, 0);
705 static void team_mcast_rejoin_init(struct team *team)
707 INIT_DELAYED_WORK(&team->mcast_rejoin.dw, team_mcast_rejoin_work);
710 static void team_mcast_rejoin_fini(struct team *team)
712 cancel_delayed_work_sync(&team->mcast_rejoin.dw);
716 /************************
717 * Rx path frame handler
718 ************************/
720 /* note: already called with rcu_read_lock */
721 static rx_handler_result_t team_handle_frame(struct sk_buff **pskb)
723 struct sk_buff *skb = *pskb;
724 struct team_port *port;
726 rx_handler_result_t res;
728 skb = skb_share_check(skb, GFP_ATOMIC);
730 return RX_HANDLER_CONSUMED;
734 port = team_port_get_rcu(skb->dev);
736 if (!team_port_enabled(port)) {
737 /* allow exact match delivery for disabled ports */
738 res = RX_HANDLER_EXACT;
740 res = team->ops.receive(team, port, skb);
742 if (res == RX_HANDLER_ANOTHER) {
743 struct team_pcpu_stats *pcpu_stats;
745 pcpu_stats = this_cpu_ptr(team->pcpu_stats);
746 u64_stats_update_begin(&pcpu_stats->syncp);
747 pcpu_stats->rx_packets++;
748 pcpu_stats->rx_bytes += skb->len;
749 if (skb->pkt_type == PACKET_MULTICAST)
750 pcpu_stats->rx_multicast++;
751 u64_stats_update_end(&pcpu_stats->syncp);
753 skb->dev = team->dev;
754 } else if (res == RX_HANDLER_EXACT) {
755 this_cpu_inc(team->pcpu_stats->rx_nohandler);
757 this_cpu_inc(team->pcpu_stats->rx_dropped);
764 /*************************************
765 * Multiqueue Tx port select override
766 *************************************/
768 static int team_queue_override_init(struct team *team)
770 struct list_head *listarr;
771 unsigned int queue_cnt = team->dev->num_tx_queues - 1;
776 listarr = kmalloc_array(queue_cnt, sizeof(struct list_head),
780 team->qom_lists = listarr;
781 for (i = 0; i < queue_cnt; i++)
782 INIT_LIST_HEAD(listarr++);
786 static void team_queue_override_fini(struct team *team)
788 kfree(team->qom_lists);
791 static struct list_head *__team_get_qom_list(struct team *team, u16 queue_id)
793 return &team->qom_lists[queue_id - 1];
797 * note: already called with rcu_read_lock
799 static bool team_queue_override_transmit(struct team *team, struct sk_buff *skb)
801 struct list_head *qom_list;
802 struct team_port *port;
804 if (!team->queue_override_enabled || !skb->queue_mapping)
806 qom_list = __team_get_qom_list(team, skb->queue_mapping);
807 list_for_each_entry_rcu(port, qom_list, qom_list) {
808 if (!team_dev_queue_xmit(team, port, skb))
814 static void __team_queue_override_port_del(struct team *team,
815 struct team_port *port)
819 list_del_rcu(&port->qom_list);
822 static bool team_queue_override_port_has_gt_prio_than(struct team_port *port,
823 struct team_port *cur)
825 if (port->priority < cur->priority)
827 if (port->priority > cur->priority)
829 if (port->index < cur->index)
834 static void __team_queue_override_port_add(struct team *team,
835 struct team_port *port)
837 struct team_port *cur;
838 struct list_head *qom_list;
839 struct list_head *node;
843 qom_list = __team_get_qom_list(team, port->queue_id);
845 list_for_each_entry(cur, qom_list, qom_list) {
846 if (team_queue_override_port_has_gt_prio_than(port, cur))
848 node = &cur->qom_list;
850 list_add_tail_rcu(&port->qom_list, node);
853 static void __team_queue_override_enabled_check(struct team *team)
855 struct team_port *port;
856 bool enabled = false;
858 list_for_each_entry(port, &team->port_list, list) {
859 if (port->queue_id) {
864 if (enabled == team->queue_override_enabled)
866 netdev_dbg(team->dev, "%s queue override\n",
867 enabled ? "Enabling" : "Disabling");
868 team->queue_override_enabled = enabled;
871 static void team_queue_override_port_prio_changed(struct team *team,
872 struct team_port *port)
874 if (!port->queue_id || team_port_enabled(port))
876 __team_queue_override_port_del(team, port);
877 __team_queue_override_port_add(team, port);
878 __team_queue_override_enabled_check(team);
881 static void team_queue_override_port_change_queue_id(struct team *team,
882 struct team_port *port,
885 if (team_port_enabled(port)) {
886 __team_queue_override_port_del(team, port);
887 port->queue_id = new_queue_id;
888 __team_queue_override_port_add(team, port);
889 __team_queue_override_enabled_check(team);
891 port->queue_id = new_queue_id;
895 static void team_queue_override_port_add(struct team *team,
896 struct team_port *port)
898 __team_queue_override_port_add(team, port);
899 __team_queue_override_enabled_check(team);
902 static void team_queue_override_port_del(struct team *team,
903 struct team_port *port)
905 __team_queue_override_port_del(team, port);
906 __team_queue_override_enabled_check(team);
914 static bool team_port_find(const struct team *team,
915 const struct team_port *port)
917 struct team_port *cur;
919 list_for_each_entry(cur, &team->port_list, list)
926 * Enable/disable port by adding to enabled port hashlist and setting
927 * port->index (Might be racy so reader could see incorrect ifindex when
928 * processing a flying packet, but that is not a problem). Write guarded
931 static void team_port_enable(struct team *team,
932 struct team_port *port)
934 if (team_port_enabled(port))
936 port->index = team->en_port_count++;
937 hlist_add_head_rcu(&port->hlist,
938 team_port_index_hash(team, port->index));
939 team_adjust_ops(team);
940 team_queue_override_port_add(team, port);
941 if (team->ops.port_enabled)
942 team->ops.port_enabled(team, port);
943 team_notify_peers(team);
944 team_mcast_rejoin(team);
945 team_lower_state_changed(port);
948 static void __reconstruct_port_hlist(struct team *team, int rm_index)
951 struct team_port *port;
953 for (i = rm_index + 1; i < team->en_port_count; i++) {
954 port = team_get_port_by_index(team, i);
955 hlist_del_rcu(&port->hlist);
957 hlist_add_head_rcu(&port->hlist,
958 team_port_index_hash(team, port->index));
962 static void team_port_disable(struct team *team,
963 struct team_port *port)
965 if (!team_port_enabled(port))
967 if (team->ops.port_disabled)
968 team->ops.port_disabled(team, port);
969 hlist_del_rcu(&port->hlist);
970 __reconstruct_port_hlist(team, port->index);
972 team->en_port_count--;
973 team_queue_override_port_del(team, port);
974 team_adjust_ops(team);
975 team_lower_state_changed(port);
978 #define TEAM_VLAN_FEATURES (NETIF_F_HW_CSUM | NETIF_F_SG | \
979 NETIF_F_FRAGLIST | NETIF_F_GSO_SOFTWARE | \
980 NETIF_F_HIGHDMA | NETIF_F_LRO)
982 #define TEAM_ENC_FEATURES (NETIF_F_HW_CSUM | NETIF_F_SG | \
983 NETIF_F_RXCSUM | NETIF_F_GSO_SOFTWARE)
985 static void __team_compute_features(struct team *team)
987 struct team_port *port;
988 netdev_features_t vlan_features = TEAM_VLAN_FEATURES &
990 netdev_features_t enc_features = TEAM_ENC_FEATURES;
991 unsigned short max_hard_header_len = ETH_HLEN;
992 unsigned int dst_release_flag = IFF_XMIT_DST_RELEASE |
993 IFF_XMIT_DST_RELEASE_PERM;
996 list_for_each_entry_rcu(port, &team->port_list, list) {
997 vlan_features = netdev_increment_features(vlan_features,
998 port->dev->vlan_features,
1001 netdev_increment_features(enc_features,
1002 port->dev->hw_enc_features,
1006 dst_release_flag &= port->dev->priv_flags;
1007 if (port->dev->hard_header_len > max_hard_header_len)
1008 max_hard_header_len = port->dev->hard_header_len;
1012 team->dev->vlan_features = vlan_features;
1013 team->dev->hw_enc_features = enc_features | NETIF_F_GSO_ENCAP_ALL |
1014 NETIF_F_HW_VLAN_CTAG_TX |
1015 NETIF_F_HW_VLAN_STAG_TX;
1016 team->dev->hard_header_len = max_hard_header_len;
1018 team->dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
1019 if (dst_release_flag == (IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM))
1020 team->dev->priv_flags |= IFF_XMIT_DST_RELEASE;
1023 static void team_compute_features(struct team *team)
1025 __team_compute_features(team);
1026 netdev_change_features(team->dev);
1029 static int team_port_enter(struct team *team, struct team_port *port)
1033 dev_hold(team->dev);
1034 if (team->ops.port_enter) {
1035 err = team->ops.port_enter(team, port);
1037 netdev_err(team->dev, "Device %s failed to enter team mode\n",
1039 goto err_port_enter;
1051 static void team_port_leave(struct team *team, struct team_port *port)
1053 if (team->ops.port_leave)
1054 team->ops.port_leave(team, port);
1058 #ifdef CONFIG_NET_POLL_CONTROLLER
1059 static int __team_port_enable_netpoll(struct team_port *port)
1064 np = kzalloc(sizeof(*np), GFP_KERNEL);
1068 err = __netpoll_setup(np, port->dev);
1077 static int team_port_enable_netpoll(struct team_port *port)
1079 if (!port->team->dev->npinfo)
1082 return __team_port_enable_netpoll(port);
1085 static void team_port_disable_netpoll(struct team_port *port)
1087 struct netpoll *np = port->np;
1096 static int team_port_enable_netpoll(struct team_port *port)
1100 static void team_port_disable_netpoll(struct team_port *port)
1105 static int team_upper_dev_link(struct team *team, struct team_port *port,
1106 struct netlink_ext_ack *extack)
1108 struct netdev_lag_upper_info lag_upper_info;
1111 lag_upper_info.tx_type = team->mode->lag_tx_type;
1112 lag_upper_info.hash_type = NETDEV_LAG_HASH_UNKNOWN;
1113 err = netdev_master_upper_dev_link(port->dev, team->dev, NULL,
1114 &lag_upper_info, extack);
1117 port->dev->priv_flags |= IFF_TEAM_PORT;
1121 static void team_upper_dev_unlink(struct team *team, struct team_port *port)
1123 netdev_upper_dev_unlink(port->dev, team->dev);
1124 port->dev->priv_flags &= ~IFF_TEAM_PORT;
1127 static void __team_port_change_port_added(struct team_port *port, bool linkup);
1128 static int team_dev_type_check_change(struct net_device *dev,
1129 struct net_device *port_dev);
1131 static int team_port_add(struct team *team, struct net_device *port_dev,
1132 struct netlink_ext_ack *extack)
1134 struct net_device *dev = team->dev;
1135 struct team_port *port;
1136 char *portname = port_dev->name;
1139 if (port_dev->flags & IFF_LOOPBACK) {
1140 NL_SET_ERR_MSG(extack, "Loopback device can't be added as a team port");
1141 netdev_err(dev, "Device %s is loopback device. Loopback devices can't be added as a team port\n",
1146 if (netif_is_team_port(port_dev)) {
1147 NL_SET_ERR_MSG(extack, "Device is already a port of a team device");
1148 netdev_err(dev, "Device %s is already a port "
1149 "of a team device\n", portname);
1153 if (dev == port_dev) {
1154 NL_SET_ERR_MSG(extack, "Cannot enslave team device to itself");
1155 netdev_err(dev, "Cannot enslave team device to itself\n");
1159 if (netdev_has_upper_dev(dev, port_dev)) {
1160 NL_SET_ERR_MSG(extack, "Device is already an upper device of the team interface");
1161 netdev_err(dev, "Device %s is already an upper device of the team interface\n",
1166 if (port_dev->features & NETIF_F_VLAN_CHALLENGED &&
1167 vlan_uses_dev(dev)) {
1168 NL_SET_ERR_MSG(extack, "Device is VLAN challenged and team device has VLAN set up");
1169 netdev_err(dev, "Device %s is VLAN challenged and team device has VLAN set up\n",
1174 err = team_dev_type_check_change(dev, port_dev);
1178 if (port_dev->flags & IFF_UP) {
1179 NL_SET_ERR_MSG(extack, "Device is up. Set it down before adding it as a team port");
1180 netdev_err(dev, "Device %s is up. Set it down before adding it as a team port\n",
1185 port = kzalloc(sizeof(struct team_port) + team->mode->port_priv_size,
1190 port->dev = port_dev;
1192 INIT_LIST_HEAD(&port->qom_list);
1194 port->orig.mtu = port_dev->mtu;
1195 err = dev_set_mtu(port_dev, dev->mtu);
1197 netdev_dbg(dev, "Error %d calling dev_set_mtu\n", err);
1201 memcpy(port->orig.dev_addr, port_dev->dev_addr, port_dev->addr_len);
1203 err = team_port_enter(team, port);
1205 netdev_err(dev, "Device %s failed to enter team mode\n",
1207 goto err_port_enter;
1210 err = dev_open(port_dev, extack);
1212 netdev_dbg(dev, "Device %s opening failed\n",
1217 err = vlan_vids_add_by_dev(port_dev, dev);
1219 netdev_err(dev, "Failed to add vlan ids to device %s\n",
1224 err = team_port_enable_netpoll(port);
1226 netdev_err(dev, "Failed to enable netpoll on device %s\n",
1228 goto err_enable_netpoll;
1231 if (!(dev->features & NETIF_F_LRO))
1232 dev_disable_lro(port_dev);
1234 err = netdev_rx_handler_register(port_dev, team_handle_frame,
1237 netdev_err(dev, "Device %s failed to register rx_handler\n",
1239 goto err_handler_register;
1242 err = team_upper_dev_link(team, port, extack);
1244 netdev_err(dev, "Device %s failed to set upper link\n",
1246 goto err_set_upper_link;
1249 err = __team_option_inst_add_port(team, port);
1251 netdev_err(dev, "Device %s failed to add per-port options\n",
1253 goto err_option_port_add;
1256 /* set promiscuity level to new slave */
1257 if (dev->flags & IFF_PROMISC) {
1258 err = dev_set_promiscuity(port_dev, 1);
1260 goto err_set_slave_promisc;
1263 /* set allmulti level to new slave */
1264 if (dev->flags & IFF_ALLMULTI) {
1265 err = dev_set_allmulti(port_dev, 1);
1267 if (dev->flags & IFF_PROMISC)
1268 dev_set_promiscuity(port_dev, -1);
1269 goto err_set_slave_promisc;
1273 netif_addr_lock_bh(dev);
1274 dev_uc_sync_multiple(port_dev, dev);
1275 dev_mc_sync_multiple(port_dev, dev);
1276 netif_addr_unlock_bh(dev);
1279 list_add_tail_rcu(&port->list, &team->port_list);
1280 team_port_enable(team, port);
1281 __team_compute_features(team);
1282 __team_port_change_port_added(port, !!netif_oper_up(port_dev));
1283 __team_options_change_check(team);
1285 netdev_info(dev, "Port device %s added\n", portname);
1289 err_set_slave_promisc:
1290 __team_option_inst_del_port(team, port);
1292 err_option_port_add:
1293 team_upper_dev_unlink(team, port);
1296 netdev_rx_handler_unregister(port_dev);
1298 err_handler_register:
1299 team_port_disable_netpoll(port);
1302 vlan_vids_del_by_dev(port_dev, dev);
1305 dev_close(port_dev);
1308 team_port_leave(team, port);
1309 team_port_set_orig_dev_addr(port);
1312 dev_set_mtu(port_dev, port->orig.mtu);
1320 static void __team_port_change_port_removed(struct team_port *port);
1322 static int team_port_del(struct team *team, struct net_device *port_dev)
1324 struct net_device *dev = team->dev;
1325 struct team_port *port;
1326 char *portname = port_dev->name;
1328 port = team_port_get_rtnl(port_dev);
1329 if (!port || !team_port_find(team, port)) {
1330 netdev_err(dev, "Device %s does not act as a port of this team\n",
1335 team_port_disable(team, port);
1336 list_del_rcu(&port->list);
1338 if (dev->flags & IFF_PROMISC)
1339 dev_set_promiscuity(port_dev, -1);
1340 if (dev->flags & IFF_ALLMULTI)
1341 dev_set_allmulti(port_dev, -1);
1343 team_upper_dev_unlink(team, port);
1344 netdev_rx_handler_unregister(port_dev);
1345 team_port_disable_netpoll(port);
1346 vlan_vids_del_by_dev(port_dev, dev);
1347 dev_uc_unsync(port_dev, dev);
1348 dev_mc_unsync(port_dev, dev);
1349 dev_close(port_dev);
1350 team_port_leave(team, port);
1352 __team_option_inst_mark_removed_port(team, port);
1353 __team_options_change_check(team);
1354 __team_option_inst_del_port(team, port);
1355 __team_port_change_port_removed(port);
1357 team_port_set_orig_dev_addr(port);
1358 dev_set_mtu(port_dev, port->orig.mtu);
1359 kfree_rcu(port, rcu);
1360 netdev_info(dev, "Port device %s removed\n", portname);
1361 __team_compute_features(team);
1371 static int team_mode_option_get(struct team *team, struct team_gsetter_ctx *ctx)
1373 ctx->data.str_val = team->mode->kind;
1377 static int team_mode_option_set(struct team *team, struct team_gsetter_ctx *ctx)
1379 return team_change_mode(team, ctx->data.str_val);
1382 static int team_notify_peers_count_get(struct team *team,
1383 struct team_gsetter_ctx *ctx)
1385 ctx->data.u32_val = team->notify_peers.count;
1389 static int team_notify_peers_count_set(struct team *team,
1390 struct team_gsetter_ctx *ctx)
1392 team->notify_peers.count = ctx->data.u32_val;
1396 static int team_notify_peers_interval_get(struct team *team,
1397 struct team_gsetter_ctx *ctx)
1399 ctx->data.u32_val = team->notify_peers.interval;
1403 static int team_notify_peers_interval_set(struct team *team,
1404 struct team_gsetter_ctx *ctx)
1406 team->notify_peers.interval = ctx->data.u32_val;
1410 static int team_mcast_rejoin_count_get(struct team *team,
1411 struct team_gsetter_ctx *ctx)
1413 ctx->data.u32_val = team->mcast_rejoin.count;
1417 static int team_mcast_rejoin_count_set(struct team *team,
1418 struct team_gsetter_ctx *ctx)
1420 team->mcast_rejoin.count = ctx->data.u32_val;
1424 static int team_mcast_rejoin_interval_get(struct team *team,
1425 struct team_gsetter_ctx *ctx)
1427 ctx->data.u32_val = team->mcast_rejoin.interval;
1431 static int team_mcast_rejoin_interval_set(struct team *team,
1432 struct team_gsetter_ctx *ctx)
1434 team->mcast_rejoin.interval = ctx->data.u32_val;
1438 static int team_port_en_option_get(struct team *team,
1439 struct team_gsetter_ctx *ctx)
1441 struct team_port *port = ctx->info->port;
1443 ctx->data.bool_val = team_port_enabled(port);
1447 static int team_port_en_option_set(struct team *team,
1448 struct team_gsetter_ctx *ctx)
1450 struct team_port *port = ctx->info->port;
1452 if (ctx->data.bool_val)
1453 team_port_enable(team, port);
1455 team_port_disable(team, port);
1459 static int team_user_linkup_option_get(struct team *team,
1460 struct team_gsetter_ctx *ctx)
1462 struct team_port *port = ctx->info->port;
1464 ctx->data.bool_val = port->user.linkup;
1468 static void __team_carrier_check(struct team *team);
1470 static int team_user_linkup_option_set(struct team *team,
1471 struct team_gsetter_ctx *ctx)
1473 struct team_port *port = ctx->info->port;
1475 port->user.linkup = ctx->data.bool_val;
1476 team_refresh_port_linkup(port);
1477 __team_carrier_check(port->team);
1481 static int team_user_linkup_en_option_get(struct team *team,
1482 struct team_gsetter_ctx *ctx)
1484 struct team_port *port = ctx->info->port;
1486 ctx->data.bool_val = port->user.linkup_enabled;
1490 static int team_user_linkup_en_option_set(struct team *team,
1491 struct team_gsetter_ctx *ctx)
1493 struct team_port *port = ctx->info->port;
1495 port->user.linkup_enabled = ctx->data.bool_val;
1496 team_refresh_port_linkup(port);
1497 __team_carrier_check(port->team);
1501 static int team_priority_option_get(struct team *team,
1502 struct team_gsetter_ctx *ctx)
1504 struct team_port *port = ctx->info->port;
1506 ctx->data.s32_val = port->priority;
1510 static int team_priority_option_set(struct team *team,
1511 struct team_gsetter_ctx *ctx)
1513 struct team_port *port = ctx->info->port;
1514 s32 priority = ctx->data.s32_val;
1516 if (port->priority == priority)
1518 port->priority = priority;
1519 team_queue_override_port_prio_changed(team, port);
1523 static int team_queue_id_option_get(struct team *team,
1524 struct team_gsetter_ctx *ctx)
1526 struct team_port *port = ctx->info->port;
1528 ctx->data.u32_val = port->queue_id;
1532 static int team_queue_id_option_set(struct team *team,
1533 struct team_gsetter_ctx *ctx)
1535 struct team_port *port = ctx->info->port;
1536 u16 new_queue_id = ctx->data.u32_val;
1538 if (port->queue_id == new_queue_id)
1540 if (new_queue_id >= team->dev->real_num_tx_queues)
1542 team_queue_override_port_change_queue_id(team, port, new_queue_id);
1546 static const struct team_option team_options[] = {
1549 .type = TEAM_OPTION_TYPE_STRING,
1550 .getter = team_mode_option_get,
1551 .setter = team_mode_option_set,
1554 .name = "notify_peers_count",
1555 .type = TEAM_OPTION_TYPE_U32,
1556 .getter = team_notify_peers_count_get,
1557 .setter = team_notify_peers_count_set,
1560 .name = "notify_peers_interval",
1561 .type = TEAM_OPTION_TYPE_U32,
1562 .getter = team_notify_peers_interval_get,
1563 .setter = team_notify_peers_interval_set,
1566 .name = "mcast_rejoin_count",
1567 .type = TEAM_OPTION_TYPE_U32,
1568 .getter = team_mcast_rejoin_count_get,
1569 .setter = team_mcast_rejoin_count_set,
1572 .name = "mcast_rejoin_interval",
1573 .type = TEAM_OPTION_TYPE_U32,
1574 .getter = team_mcast_rejoin_interval_get,
1575 .setter = team_mcast_rejoin_interval_set,
1579 .type = TEAM_OPTION_TYPE_BOOL,
1581 .getter = team_port_en_option_get,
1582 .setter = team_port_en_option_set,
1585 .name = "user_linkup",
1586 .type = TEAM_OPTION_TYPE_BOOL,
1588 .getter = team_user_linkup_option_get,
1589 .setter = team_user_linkup_option_set,
1592 .name = "user_linkup_enabled",
1593 .type = TEAM_OPTION_TYPE_BOOL,
1595 .getter = team_user_linkup_en_option_get,
1596 .setter = team_user_linkup_en_option_set,
1600 .type = TEAM_OPTION_TYPE_S32,
1602 .getter = team_priority_option_get,
1603 .setter = team_priority_option_set,
1607 .type = TEAM_OPTION_TYPE_U32,
1609 .getter = team_queue_id_option_get,
1610 .setter = team_queue_id_option_set,
1615 static int team_init(struct net_device *dev)
1617 struct team *team = netdev_priv(dev);
1622 team_set_no_mode(team);
1624 team->pcpu_stats = netdev_alloc_pcpu_stats(struct team_pcpu_stats);
1625 if (!team->pcpu_stats)
1628 for (i = 0; i < TEAM_PORT_HASHENTRIES; i++)
1629 INIT_HLIST_HEAD(&team->en_port_hlist[i]);
1630 INIT_LIST_HEAD(&team->port_list);
1631 err = team_queue_override_init(team);
1633 goto err_team_queue_override_init;
1635 team_adjust_ops(team);
1637 INIT_LIST_HEAD(&team->option_list);
1638 INIT_LIST_HEAD(&team->option_inst_list);
1640 team_notify_peers_init(team);
1641 team_mcast_rejoin_init(team);
1643 err = team_options_register(team, team_options, ARRAY_SIZE(team_options));
1645 goto err_options_register;
1646 netif_carrier_off(dev);
1648 lockdep_register_key(&team->team_lock_key);
1649 __mutex_init(&team->lock, "team->team_lock_key", &team->team_lock_key);
1650 netdev_lockdep_set_classes(dev);
1654 err_options_register:
1655 team_mcast_rejoin_fini(team);
1656 team_notify_peers_fini(team);
1657 team_queue_override_fini(team);
1658 err_team_queue_override_init:
1659 free_percpu(team->pcpu_stats);
1664 static void team_uninit(struct net_device *dev)
1666 struct team *team = netdev_priv(dev);
1667 struct team_port *port;
1668 struct team_port *tmp;
1670 mutex_lock(&team->lock);
1671 list_for_each_entry_safe(port, tmp, &team->port_list, list)
1672 team_port_del(team, port->dev);
1674 __team_change_mode(team, NULL); /* cleanup */
1675 __team_options_unregister(team, team_options, ARRAY_SIZE(team_options));
1676 team_mcast_rejoin_fini(team);
1677 team_notify_peers_fini(team);
1678 team_queue_override_fini(team);
1679 mutex_unlock(&team->lock);
1680 netdev_change_features(dev);
1681 lockdep_unregister_key(&team->team_lock_key);
1684 static void team_destructor(struct net_device *dev)
1686 struct team *team = netdev_priv(dev);
1688 free_percpu(team->pcpu_stats);
1691 static int team_open(struct net_device *dev)
1696 static int team_close(struct net_device *dev)
1702 * note: already called with rcu_read_lock
1704 static netdev_tx_t team_xmit(struct sk_buff *skb, struct net_device *dev)
1706 struct team *team = netdev_priv(dev);
1708 unsigned int len = skb->len;
1710 tx_success = team_queue_override_transmit(team, skb);
1712 tx_success = team->ops.transmit(team, skb);
1714 struct team_pcpu_stats *pcpu_stats;
1716 pcpu_stats = this_cpu_ptr(team->pcpu_stats);
1717 u64_stats_update_begin(&pcpu_stats->syncp);
1718 pcpu_stats->tx_packets++;
1719 pcpu_stats->tx_bytes += len;
1720 u64_stats_update_end(&pcpu_stats->syncp);
1722 this_cpu_inc(team->pcpu_stats->tx_dropped);
1725 return NETDEV_TX_OK;
1728 static u16 team_select_queue(struct net_device *dev, struct sk_buff *skb,
1729 struct net_device *sb_dev)
1732 * This helper function exists to help dev_pick_tx get the correct
1733 * destination queue. Using a helper function skips a call to
1734 * skb_tx_hash and will put the skbs in the queue we expect on their
1735 * way down to the team driver.
1737 u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0;
1740 * Save the original txq to restore before passing to the driver
1742 qdisc_skb_cb(skb)->slave_dev_queue_mapping = skb->queue_mapping;
1744 if (unlikely(txq >= dev->real_num_tx_queues)) {
1746 txq -= dev->real_num_tx_queues;
1747 } while (txq >= dev->real_num_tx_queues);
1752 static void team_change_rx_flags(struct net_device *dev, int change)
1754 struct team *team = netdev_priv(dev);
1755 struct team_port *port;
1759 list_for_each_entry_rcu(port, &team->port_list, list) {
1760 if (change & IFF_PROMISC) {
1761 inc = dev->flags & IFF_PROMISC ? 1 : -1;
1762 dev_set_promiscuity(port->dev, inc);
1764 if (change & IFF_ALLMULTI) {
1765 inc = dev->flags & IFF_ALLMULTI ? 1 : -1;
1766 dev_set_allmulti(port->dev, inc);
1772 static void team_set_rx_mode(struct net_device *dev)
1774 struct team *team = netdev_priv(dev);
1775 struct team_port *port;
1778 list_for_each_entry_rcu(port, &team->port_list, list) {
1779 dev_uc_sync_multiple(port->dev, dev);
1780 dev_mc_sync_multiple(port->dev, dev);
1785 static int team_set_mac_address(struct net_device *dev, void *p)
1787 struct sockaddr *addr = p;
1788 struct team *team = netdev_priv(dev);
1789 struct team_port *port;
1791 if (dev->type == ARPHRD_ETHER && !is_valid_ether_addr(addr->sa_data))
1792 return -EADDRNOTAVAIL;
1793 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1794 mutex_lock(&team->lock);
1795 list_for_each_entry(port, &team->port_list, list)
1796 if (team->ops.port_change_dev_addr)
1797 team->ops.port_change_dev_addr(team, port);
1798 mutex_unlock(&team->lock);
1802 static int team_change_mtu(struct net_device *dev, int new_mtu)
1804 struct team *team = netdev_priv(dev);
1805 struct team_port *port;
1809 * Alhough this is reader, it's guarded by team lock. It's not possible
1810 * to traverse list in reverse under rcu_read_lock
1812 mutex_lock(&team->lock);
1813 team->port_mtu_change_allowed = true;
1814 list_for_each_entry(port, &team->port_list, list) {
1815 err = dev_set_mtu(port->dev, new_mtu);
1817 netdev_err(dev, "Device %s failed to change mtu",
1822 team->port_mtu_change_allowed = false;
1823 mutex_unlock(&team->lock);
1830 list_for_each_entry_continue_reverse(port, &team->port_list, list)
1831 dev_set_mtu(port->dev, dev->mtu);
1832 team->port_mtu_change_allowed = false;
1833 mutex_unlock(&team->lock);
1839 team_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
1841 struct team *team = netdev_priv(dev);
1842 struct team_pcpu_stats *p;
1843 u64 rx_packets, rx_bytes, rx_multicast, tx_packets, tx_bytes;
1844 u32 rx_dropped = 0, tx_dropped = 0, rx_nohandler = 0;
1848 for_each_possible_cpu(i) {
1849 p = per_cpu_ptr(team->pcpu_stats, i);
1851 start = u64_stats_fetch_begin_irq(&p->syncp);
1852 rx_packets = p->rx_packets;
1853 rx_bytes = p->rx_bytes;
1854 rx_multicast = p->rx_multicast;
1855 tx_packets = p->tx_packets;
1856 tx_bytes = p->tx_bytes;
1857 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
1859 stats->rx_packets += rx_packets;
1860 stats->rx_bytes += rx_bytes;
1861 stats->multicast += rx_multicast;
1862 stats->tx_packets += tx_packets;
1863 stats->tx_bytes += tx_bytes;
1865 * rx_dropped, tx_dropped & rx_nohandler are u32,
1866 * updated without syncp protection.
1868 rx_dropped += p->rx_dropped;
1869 tx_dropped += p->tx_dropped;
1870 rx_nohandler += p->rx_nohandler;
1872 stats->rx_dropped = rx_dropped;
1873 stats->tx_dropped = tx_dropped;
1874 stats->rx_nohandler = rx_nohandler;
1877 static int team_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid)
1879 struct team *team = netdev_priv(dev);
1880 struct team_port *port;
1884 * Alhough this is reader, it's guarded by team lock. It's not possible
1885 * to traverse list in reverse under rcu_read_lock
1887 mutex_lock(&team->lock);
1888 list_for_each_entry(port, &team->port_list, list) {
1889 err = vlan_vid_add(port->dev, proto, vid);
1893 mutex_unlock(&team->lock);
1898 list_for_each_entry_continue_reverse(port, &team->port_list, list)
1899 vlan_vid_del(port->dev, proto, vid);
1900 mutex_unlock(&team->lock);
1905 static int team_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid)
1907 struct team *team = netdev_priv(dev);
1908 struct team_port *port;
1910 mutex_lock(&team->lock);
1911 list_for_each_entry(port, &team->port_list, list)
1912 vlan_vid_del(port->dev, proto, vid);
1913 mutex_unlock(&team->lock);
1918 #ifdef CONFIG_NET_POLL_CONTROLLER
1919 static void team_poll_controller(struct net_device *dev)
1923 static void __team_netpoll_cleanup(struct team *team)
1925 struct team_port *port;
1927 list_for_each_entry(port, &team->port_list, list)
1928 team_port_disable_netpoll(port);
1931 static void team_netpoll_cleanup(struct net_device *dev)
1933 struct team *team = netdev_priv(dev);
1935 mutex_lock(&team->lock);
1936 __team_netpoll_cleanup(team);
1937 mutex_unlock(&team->lock);
1940 static int team_netpoll_setup(struct net_device *dev,
1941 struct netpoll_info *npifo)
1943 struct team *team = netdev_priv(dev);
1944 struct team_port *port;
1947 mutex_lock(&team->lock);
1948 list_for_each_entry(port, &team->port_list, list) {
1949 err = __team_port_enable_netpoll(port);
1951 __team_netpoll_cleanup(team);
1955 mutex_unlock(&team->lock);
1960 static int team_add_slave(struct net_device *dev, struct net_device *port_dev,
1961 struct netlink_ext_ack *extack)
1963 struct team *team = netdev_priv(dev);
1966 mutex_lock(&team->lock);
1967 err = team_port_add(team, port_dev, extack);
1968 mutex_unlock(&team->lock);
1971 netdev_change_features(dev);
1976 static int team_del_slave(struct net_device *dev, struct net_device *port_dev)
1978 struct team *team = netdev_priv(dev);
1981 mutex_lock(&team->lock);
1982 err = team_port_del(team, port_dev);
1983 mutex_unlock(&team->lock);
1988 if (netif_is_team_master(port_dev)) {
1989 lockdep_unregister_key(&team->team_lock_key);
1990 lockdep_register_key(&team->team_lock_key);
1991 lockdep_set_class(&team->lock, &team->team_lock_key);
1993 netdev_change_features(dev);
1998 static netdev_features_t team_fix_features(struct net_device *dev,
1999 netdev_features_t features)
2001 struct team_port *port;
2002 struct team *team = netdev_priv(dev);
2003 netdev_features_t mask;
2006 features &= ~NETIF_F_ONE_FOR_ALL;
2007 features |= NETIF_F_ALL_FOR_ALL;
2010 list_for_each_entry_rcu(port, &team->port_list, list) {
2011 features = netdev_increment_features(features,
2012 port->dev->features,
2017 features = netdev_add_tso_features(features, mask);
2022 static int team_change_carrier(struct net_device *dev, bool new_carrier)
2024 struct team *team = netdev_priv(dev);
2026 team->user_carrier_enabled = true;
2029 netif_carrier_on(dev);
2031 netif_carrier_off(dev);
2035 static const struct net_device_ops team_netdev_ops = {
2036 .ndo_init = team_init,
2037 .ndo_uninit = team_uninit,
2038 .ndo_open = team_open,
2039 .ndo_stop = team_close,
2040 .ndo_start_xmit = team_xmit,
2041 .ndo_select_queue = team_select_queue,
2042 .ndo_change_rx_flags = team_change_rx_flags,
2043 .ndo_set_rx_mode = team_set_rx_mode,
2044 .ndo_set_mac_address = team_set_mac_address,
2045 .ndo_change_mtu = team_change_mtu,
2046 .ndo_get_stats64 = team_get_stats64,
2047 .ndo_vlan_rx_add_vid = team_vlan_rx_add_vid,
2048 .ndo_vlan_rx_kill_vid = team_vlan_rx_kill_vid,
2049 #ifdef CONFIG_NET_POLL_CONTROLLER
2050 .ndo_poll_controller = team_poll_controller,
2051 .ndo_netpoll_setup = team_netpoll_setup,
2052 .ndo_netpoll_cleanup = team_netpoll_cleanup,
2054 .ndo_add_slave = team_add_slave,
2055 .ndo_del_slave = team_del_slave,
2056 .ndo_fix_features = team_fix_features,
2057 .ndo_change_carrier = team_change_carrier,
2058 .ndo_features_check = passthru_features_check,
2061 /***********************
2063 ***********************/
2065 static void team_ethtool_get_drvinfo(struct net_device *dev,
2066 struct ethtool_drvinfo *drvinfo)
2068 strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver));
2069 strlcpy(drvinfo->version, UTS_RELEASE, sizeof(drvinfo->version));
2072 static int team_ethtool_get_link_ksettings(struct net_device *dev,
2073 struct ethtool_link_ksettings *cmd)
2075 struct team *team= netdev_priv(dev);
2076 unsigned long speed = 0;
2077 struct team_port *port;
2079 cmd->base.duplex = DUPLEX_UNKNOWN;
2080 cmd->base.port = PORT_OTHER;
2083 list_for_each_entry_rcu(port, &team->port_list, list) {
2084 if (team_port_txable(port)) {
2085 if (port->state.speed != SPEED_UNKNOWN)
2086 speed += port->state.speed;
2087 if (cmd->base.duplex == DUPLEX_UNKNOWN &&
2088 port->state.duplex != DUPLEX_UNKNOWN)
2089 cmd->base.duplex = port->state.duplex;
2094 cmd->base.speed = speed ? : SPEED_UNKNOWN;
2099 static const struct ethtool_ops team_ethtool_ops = {
2100 .get_drvinfo = team_ethtool_get_drvinfo,
2101 .get_link = ethtool_op_get_link,
2102 .get_link_ksettings = team_ethtool_get_link_ksettings,
2105 /***********************
2106 * rt netlink interface
2107 ***********************/
2109 static void team_setup_by_port(struct net_device *dev,
2110 struct net_device *port_dev)
2112 dev->header_ops = port_dev->header_ops;
2113 dev->type = port_dev->type;
2114 dev->hard_header_len = port_dev->hard_header_len;
2115 dev->needed_headroom = port_dev->needed_headroom;
2116 dev->addr_len = port_dev->addr_len;
2117 dev->mtu = port_dev->mtu;
2118 memcpy(dev->broadcast, port_dev->broadcast, port_dev->addr_len);
2119 eth_hw_addr_inherit(dev, port_dev);
2122 static int team_dev_type_check_change(struct net_device *dev,
2123 struct net_device *port_dev)
2125 struct team *team = netdev_priv(dev);
2126 char *portname = port_dev->name;
2129 if (dev->type == port_dev->type)
2131 if (!list_empty(&team->port_list)) {
2132 netdev_err(dev, "Device %s is of different type\n", portname);
2135 err = call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE, dev);
2136 err = notifier_to_errno(err);
2138 netdev_err(dev, "Refused to change device type\n");
2143 team_setup_by_port(dev, port_dev);
2144 call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE, dev);
2148 static void team_setup(struct net_device *dev)
2151 dev->max_mtu = ETH_MAX_MTU;
2153 dev->netdev_ops = &team_netdev_ops;
2154 dev->ethtool_ops = &team_ethtool_ops;
2155 dev->needs_free_netdev = true;
2156 dev->priv_destructor = team_destructor;
2157 dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING);
2158 dev->priv_flags |= IFF_NO_QUEUE;
2159 dev->priv_flags |= IFF_TEAM;
2162 * Indicate we support unicast address filtering. That way core won't
2163 * bring us to promisc mode in case a unicast addr is added.
2164 * Let this up to underlay drivers.
2166 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
2168 dev->features |= NETIF_F_LLTX;
2169 dev->features |= NETIF_F_GRO;
2171 /* Don't allow team devices to change network namespaces. */
2172 dev->features |= NETIF_F_NETNS_LOCAL;
2174 dev->hw_features = TEAM_VLAN_FEATURES |
2175 NETIF_F_HW_VLAN_CTAG_RX |
2176 NETIF_F_HW_VLAN_CTAG_FILTER;
2178 dev->hw_features |= NETIF_F_GSO_ENCAP_ALL;
2179 dev->features |= dev->hw_features;
2180 dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
2183 static int team_newlink(struct net *src_net, struct net_device *dev,
2184 struct nlattr *tb[], struct nlattr *data[],
2185 struct netlink_ext_ack *extack)
2187 if (tb[IFLA_ADDRESS] == NULL)
2188 eth_hw_addr_random(dev);
2190 return register_netdevice(dev);
2193 static int team_validate(struct nlattr *tb[], struct nlattr *data[],
2194 struct netlink_ext_ack *extack)
2196 if (tb[IFLA_ADDRESS]) {
2197 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
2199 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
2200 return -EADDRNOTAVAIL;
2205 static unsigned int team_get_num_tx_queues(void)
2207 return TEAM_DEFAULT_NUM_TX_QUEUES;
2210 static unsigned int team_get_num_rx_queues(void)
2212 return TEAM_DEFAULT_NUM_RX_QUEUES;
2215 static struct rtnl_link_ops team_link_ops __read_mostly = {
2217 .priv_size = sizeof(struct team),
2218 .setup = team_setup,
2219 .newlink = team_newlink,
2220 .validate = team_validate,
2221 .get_num_tx_queues = team_get_num_tx_queues,
2222 .get_num_rx_queues = team_get_num_rx_queues,
2226 /***********************************
2227 * Generic netlink custom interface
2228 ***********************************/
2230 static struct genl_family team_nl_family;
2232 static const struct nla_policy team_nl_policy[TEAM_ATTR_MAX + 1] = {
2233 [TEAM_ATTR_UNSPEC] = { .type = NLA_UNSPEC, },
2234 [TEAM_ATTR_TEAM_IFINDEX] = { .type = NLA_U32 },
2235 [TEAM_ATTR_LIST_OPTION] = { .type = NLA_NESTED },
2236 [TEAM_ATTR_LIST_PORT] = { .type = NLA_NESTED },
2239 static const struct nla_policy
2240 team_nl_option_policy[TEAM_ATTR_OPTION_MAX + 1] = {
2241 [TEAM_ATTR_OPTION_UNSPEC] = { .type = NLA_UNSPEC, },
2242 [TEAM_ATTR_OPTION_NAME] = {
2244 .len = TEAM_STRING_MAX_LEN,
2246 [TEAM_ATTR_OPTION_CHANGED] = { .type = NLA_FLAG },
2247 [TEAM_ATTR_OPTION_TYPE] = { .type = NLA_U8 },
2248 [TEAM_ATTR_OPTION_DATA] = { .type = NLA_BINARY },
2249 [TEAM_ATTR_OPTION_PORT_IFINDEX] = { .type = NLA_U32 },
2250 [TEAM_ATTR_OPTION_ARRAY_INDEX] = { .type = NLA_U32 },
2253 static int team_nl_cmd_noop(struct sk_buff *skb, struct genl_info *info)
2255 struct sk_buff *msg;
2259 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2263 hdr = genlmsg_put(msg, info->snd_portid, info->snd_seq,
2264 &team_nl_family, 0, TEAM_CMD_NOOP);
2270 genlmsg_end(msg, hdr);
2272 return genlmsg_unicast(genl_info_net(info), msg, info->snd_portid);
2281 * Netlink cmd functions should be locked by following two functions.
2282 * Since dev gets held here, that ensures dev won't disappear in between.
2284 static struct team *team_nl_team_get(struct genl_info *info)
2286 struct net *net = genl_info_net(info);
2288 struct net_device *dev;
2291 if (!info->attrs[TEAM_ATTR_TEAM_IFINDEX])
2294 ifindex = nla_get_u32(info->attrs[TEAM_ATTR_TEAM_IFINDEX]);
2295 dev = dev_get_by_index(net, ifindex);
2296 if (!dev || dev->netdev_ops != &team_netdev_ops) {
2302 team = netdev_priv(dev);
2303 mutex_lock(&team->lock);
2307 static void team_nl_team_put(struct team *team)
2309 mutex_unlock(&team->lock);
2313 typedef int team_nl_send_func_t(struct sk_buff *skb,
2314 struct team *team, u32 portid);
2316 static int team_nl_send_unicast(struct sk_buff *skb, struct team *team, u32 portid)
2318 return genlmsg_unicast(dev_net(team->dev), skb, portid);
2321 static int team_nl_fill_one_option_get(struct sk_buff *skb, struct team *team,
2322 struct team_option_inst *opt_inst)
2324 struct nlattr *option_item;
2325 struct team_option *option = opt_inst->option;
2326 struct team_option_inst_info *opt_inst_info = &opt_inst->info;
2327 struct team_gsetter_ctx ctx;
2330 ctx.info = opt_inst_info;
2331 err = team_option_get(team, opt_inst, &ctx);
2335 option_item = nla_nest_start_noflag(skb, TEAM_ATTR_ITEM_OPTION);
2339 if (nla_put_string(skb, TEAM_ATTR_OPTION_NAME, option->name))
2341 if (opt_inst_info->port &&
2342 nla_put_u32(skb, TEAM_ATTR_OPTION_PORT_IFINDEX,
2343 opt_inst_info->port->dev->ifindex))
2345 if (opt_inst->option->array_size &&
2346 nla_put_u32(skb, TEAM_ATTR_OPTION_ARRAY_INDEX,
2347 opt_inst_info->array_index))
2350 switch (option->type) {
2351 case TEAM_OPTION_TYPE_U32:
2352 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_U32))
2354 if (nla_put_u32(skb, TEAM_ATTR_OPTION_DATA, ctx.data.u32_val))
2357 case TEAM_OPTION_TYPE_STRING:
2358 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_STRING))
2360 if (nla_put_string(skb, TEAM_ATTR_OPTION_DATA,
2364 case TEAM_OPTION_TYPE_BINARY:
2365 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_BINARY))
2367 if (nla_put(skb, TEAM_ATTR_OPTION_DATA, ctx.data.bin_val.len,
2368 ctx.data.bin_val.ptr))
2371 case TEAM_OPTION_TYPE_BOOL:
2372 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_FLAG))
2374 if (ctx.data.bool_val &&
2375 nla_put_flag(skb, TEAM_ATTR_OPTION_DATA))
2378 case TEAM_OPTION_TYPE_S32:
2379 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_S32))
2381 if (nla_put_s32(skb, TEAM_ATTR_OPTION_DATA, ctx.data.s32_val))
2387 if (opt_inst->removed && nla_put_flag(skb, TEAM_ATTR_OPTION_REMOVED))
2389 if (opt_inst->changed) {
2390 if (nla_put_flag(skb, TEAM_ATTR_OPTION_CHANGED))
2392 opt_inst->changed = false;
2394 nla_nest_end(skb, option_item);
2398 nla_nest_cancel(skb, option_item);
2402 static int __send_and_alloc_skb(struct sk_buff **pskb,
2403 struct team *team, u32 portid,
2404 team_nl_send_func_t *send_func)
2409 err = send_func(*pskb, team, portid);
2413 *pskb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL);
2419 static int team_nl_send_options_get(struct team *team, u32 portid, u32 seq,
2420 int flags, team_nl_send_func_t *send_func,
2421 struct list_head *sel_opt_inst_list)
2423 struct nlattr *option_list;
2424 struct nlmsghdr *nlh;
2426 struct team_option_inst *opt_inst;
2428 struct sk_buff *skb = NULL;
2432 opt_inst = list_first_entry(sel_opt_inst_list,
2433 struct team_option_inst, tmp_list);
2436 err = __send_and_alloc_skb(&skb, team, portid, send_func);
2440 hdr = genlmsg_put(skb, portid, seq, &team_nl_family, flags | NLM_F_MULTI,
2441 TEAM_CMD_OPTIONS_GET);
2447 if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex))
2448 goto nla_put_failure;
2449 option_list = nla_nest_start_noflag(skb, TEAM_ATTR_LIST_OPTION);
2451 goto nla_put_failure;
2455 list_for_each_entry_from(opt_inst, sel_opt_inst_list, tmp_list) {
2456 err = team_nl_fill_one_option_get(skb, team, opt_inst);
2458 if (err == -EMSGSIZE) {
2469 nla_nest_end(skb, option_list);
2470 genlmsg_end(skb, hdr);
2475 nlh = nlmsg_put(skb, portid, seq, NLMSG_DONE, 0, flags | NLM_F_MULTI);
2477 err = __send_and_alloc_skb(&skb, team, portid, send_func);
2483 return send_func(skb, team, portid);
2492 static int team_nl_cmd_options_get(struct sk_buff *skb, struct genl_info *info)
2495 struct team_option_inst *opt_inst;
2497 LIST_HEAD(sel_opt_inst_list);
2499 team = team_nl_team_get(info);
2503 list_for_each_entry(opt_inst, &team->option_inst_list, list)
2504 list_add_tail(&opt_inst->tmp_list, &sel_opt_inst_list);
2505 err = team_nl_send_options_get(team, info->snd_portid, info->snd_seq,
2506 NLM_F_ACK, team_nl_send_unicast,
2507 &sel_opt_inst_list);
2509 team_nl_team_put(team);
2514 static int team_nl_send_event_options_get(struct team *team,
2515 struct list_head *sel_opt_inst_list);
2517 static int team_nl_cmd_options_set(struct sk_buff *skb, struct genl_info *info)
2522 struct nlattr *nl_option;
2526 team = team_nl_team_get(info);
2533 if (!info->attrs[TEAM_ATTR_LIST_OPTION]) {
2538 nla_for_each_nested(nl_option, info->attrs[TEAM_ATTR_LIST_OPTION], i) {
2539 struct nlattr *opt_attrs[TEAM_ATTR_OPTION_MAX + 1];
2540 struct nlattr *attr;
2541 struct nlattr *attr_data;
2542 LIST_HEAD(opt_inst_list);
2543 enum team_option_type opt_type;
2544 int opt_port_ifindex = 0; /* != 0 for per-port options */
2545 u32 opt_array_index = 0;
2546 bool opt_is_array = false;
2547 struct team_option_inst *opt_inst;
2549 bool opt_found = false;
2551 if (nla_type(nl_option) != TEAM_ATTR_ITEM_OPTION) {
2555 err = nla_parse_nested_deprecated(opt_attrs,
2556 TEAM_ATTR_OPTION_MAX,
2558 team_nl_option_policy,
2562 if (!opt_attrs[TEAM_ATTR_OPTION_NAME] ||
2563 !opt_attrs[TEAM_ATTR_OPTION_TYPE]) {
2567 switch (nla_get_u8(opt_attrs[TEAM_ATTR_OPTION_TYPE])) {
2569 opt_type = TEAM_OPTION_TYPE_U32;
2572 opt_type = TEAM_OPTION_TYPE_STRING;
2575 opt_type = TEAM_OPTION_TYPE_BINARY;
2578 opt_type = TEAM_OPTION_TYPE_BOOL;
2581 opt_type = TEAM_OPTION_TYPE_S32;
2587 attr_data = opt_attrs[TEAM_ATTR_OPTION_DATA];
2588 if (opt_type != TEAM_OPTION_TYPE_BOOL && !attr_data) {
2593 opt_name = nla_data(opt_attrs[TEAM_ATTR_OPTION_NAME]);
2594 attr = opt_attrs[TEAM_ATTR_OPTION_PORT_IFINDEX];
2596 opt_port_ifindex = nla_get_u32(attr);
2598 attr = opt_attrs[TEAM_ATTR_OPTION_ARRAY_INDEX];
2600 opt_is_array = true;
2601 opt_array_index = nla_get_u32(attr);
2604 list_for_each_entry(opt_inst, &team->option_inst_list, list) {
2605 struct team_option *option = opt_inst->option;
2606 struct team_gsetter_ctx ctx;
2607 struct team_option_inst_info *opt_inst_info;
2610 opt_inst_info = &opt_inst->info;
2611 tmp_ifindex = opt_inst_info->port ?
2612 opt_inst_info->port->dev->ifindex : 0;
2613 if (option->type != opt_type ||
2614 strcmp(option->name, opt_name) ||
2615 tmp_ifindex != opt_port_ifindex ||
2616 (option->array_size && !opt_is_array) ||
2617 opt_inst_info->array_index != opt_array_index)
2620 ctx.info = opt_inst_info;
2622 case TEAM_OPTION_TYPE_U32:
2623 ctx.data.u32_val = nla_get_u32(attr_data);
2625 case TEAM_OPTION_TYPE_STRING:
2626 if (nla_len(attr_data) > TEAM_STRING_MAX_LEN) {
2630 ctx.data.str_val = nla_data(attr_data);
2632 case TEAM_OPTION_TYPE_BINARY:
2633 ctx.data.bin_val.len = nla_len(attr_data);
2634 ctx.data.bin_val.ptr = nla_data(attr_data);
2636 case TEAM_OPTION_TYPE_BOOL:
2637 ctx.data.bool_val = attr_data ? true : false;
2639 case TEAM_OPTION_TYPE_S32:
2640 ctx.data.s32_val = nla_get_s32(attr_data);
2645 err = team_option_set(team, opt_inst, &ctx);
2648 opt_inst->changed = true;
2649 list_add(&opt_inst->tmp_list, &opt_inst_list);
2656 err = team_nl_send_event_options_get(team, &opt_inst_list);
2662 team_nl_team_put(team);
2668 static int team_nl_fill_one_port_get(struct sk_buff *skb,
2669 struct team_port *port)
2671 struct nlattr *port_item;
2673 port_item = nla_nest_start_noflag(skb, TEAM_ATTR_ITEM_PORT);
2676 if (nla_put_u32(skb, TEAM_ATTR_PORT_IFINDEX, port->dev->ifindex))
2678 if (port->changed) {
2679 if (nla_put_flag(skb, TEAM_ATTR_PORT_CHANGED))
2681 port->changed = false;
2683 if ((port->removed &&
2684 nla_put_flag(skb, TEAM_ATTR_PORT_REMOVED)) ||
2685 (port->state.linkup &&
2686 nla_put_flag(skb, TEAM_ATTR_PORT_LINKUP)) ||
2687 nla_put_u32(skb, TEAM_ATTR_PORT_SPEED, port->state.speed) ||
2688 nla_put_u8(skb, TEAM_ATTR_PORT_DUPLEX, port->state.duplex))
2690 nla_nest_end(skb, port_item);
2694 nla_nest_cancel(skb, port_item);
2698 static int team_nl_send_port_list_get(struct team *team, u32 portid, u32 seq,
2699 int flags, team_nl_send_func_t *send_func,
2700 struct team_port *one_port)
2702 struct nlattr *port_list;
2703 struct nlmsghdr *nlh;
2705 struct team_port *port;
2707 struct sk_buff *skb = NULL;
2711 port = list_first_entry_or_null(&team->port_list,
2712 struct team_port, list);
2715 err = __send_and_alloc_skb(&skb, team, portid, send_func);
2719 hdr = genlmsg_put(skb, portid, seq, &team_nl_family, flags | NLM_F_MULTI,
2720 TEAM_CMD_PORT_LIST_GET);
2726 if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex))
2727 goto nla_put_failure;
2728 port_list = nla_nest_start_noflag(skb, TEAM_ATTR_LIST_PORT);
2730 goto nla_put_failure;
2735 /* If one port is selected, called wants to send port list containing
2736 * only this port. Otherwise go through all listed ports and send all
2739 err = team_nl_fill_one_port_get(skb, one_port);
2743 list_for_each_entry_from(port, &team->port_list, list) {
2744 err = team_nl_fill_one_port_get(skb, port);
2746 if (err == -EMSGSIZE) {
2758 nla_nest_end(skb, port_list);
2759 genlmsg_end(skb, hdr);
2764 nlh = nlmsg_put(skb, portid, seq, NLMSG_DONE, 0, flags | NLM_F_MULTI);
2766 err = __send_and_alloc_skb(&skb, team, portid, send_func);
2772 return send_func(skb, team, portid);
2781 static int team_nl_cmd_port_list_get(struct sk_buff *skb,
2782 struct genl_info *info)
2787 team = team_nl_team_get(info);
2791 err = team_nl_send_port_list_get(team, info->snd_portid, info->snd_seq,
2792 NLM_F_ACK, team_nl_send_unicast, NULL);
2794 team_nl_team_put(team);
2799 static const struct genl_small_ops team_nl_ops[] = {
2801 .cmd = TEAM_CMD_NOOP,
2802 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
2803 .doit = team_nl_cmd_noop,
2806 .cmd = TEAM_CMD_OPTIONS_SET,
2807 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
2808 .doit = team_nl_cmd_options_set,
2809 .flags = GENL_ADMIN_PERM,
2812 .cmd = TEAM_CMD_OPTIONS_GET,
2813 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
2814 .doit = team_nl_cmd_options_get,
2815 .flags = GENL_ADMIN_PERM,
2818 .cmd = TEAM_CMD_PORT_LIST_GET,
2819 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
2820 .doit = team_nl_cmd_port_list_get,
2821 .flags = GENL_ADMIN_PERM,
2825 static const struct genl_multicast_group team_nl_mcgrps[] = {
2826 { .name = TEAM_GENL_CHANGE_EVENT_MC_GRP_NAME, },
2829 static struct genl_family team_nl_family __ro_after_init = {
2830 .name = TEAM_GENL_NAME,
2831 .version = TEAM_GENL_VERSION,
2832 .maxattr = TEAM_ATTR_MAX,
2833 .policy = team_nl_policy,
2835 .module = THIS_MODULE,
2836 .small_ops = team_nl_ops,
2837 .n_small_ops = ARRAY_SIZE(team_nl_ops),
2838 .mcgrps = team_nl_mcgrps,
2839 .n_mcgrps = ARRAY_SIZE(team_nl_mcgrps),
2842 static int team_nl_send_multicast(struct sk_buff *skb,
2843 struct team *team, u32 portid)
2845 return genlmsg_multicast_netns(&team_nl_family, dev_net(team->dev),
2846 skb, 0, 0, GFP_KERNEL);
2849 static int team_nl_send_event_options_get(struct team *team,
2850 struct list_head *sel_opt_inst_list)
2852 return team_nl_send_options_get(team, 0, 0, 0, team_nl_send_multicast,
2856 static int team_nl_send_event_port_get(struct team *team,
2857 struct team_port *port)
2859 return team_nl_send_port_list_get(team, 0, 0, 0, team_nl_send_multicast,
2863 static int __init team_nl_init(void)
2865 return genl_register_family(&team_nl_family);
2868 static void team_nl_fini(void)
2870 genl_unregister_family(&team_nl_family);
2878 static void __team_options_change_check(struct team *team)
2881 struct team_option_inst *opt_inst;
2882 LIST_HEAD(sel_opt_inst_list);
2884 list_for_each_entry(opt_inst, &team->option_inst_list, list) {
2885 if (opt_inst->changed)
2886 list_add_tail(&opt_inst->tmp_list, &sel_opt_inst_list);
2888 err = team_nl_send_event_options_get(team, &sel_opt_inst_list);
2889 if (err && err != -ESRCH)
2890 netdev_warn(team->dev, "Failed to send options change via netlink (err %d)\n",
2894 /* rtnl lock is held */
2896 static void __team_port_change_send(struct team_port *port, bool linkup)
2900 port->changed = true;
2901 port->state.linkup = linkup;
2902 team_refresh_port_linkup(port);
2904 struct ethtool_link_ksettings ecmd;
2906 err = __ethtool_get_link_ksettings(port->dev, &ecmd);
2908 port->state.speed = ecmd.base.speed;
2909 port->state.duplex = ecmd.base.duplex;
2913 port->state.speed = 0;
2914 port->state.duplex = 0;
2917 err = team_nl_send_event_port_get(port->team, port);
2918 if (err && err != -ESRCH)
2919 netdev_warn(port->team->dev, "Failed to send port change of device %s via netlink (err %d)\n",
2920 port->dev->name, err);
2924 static void __team_carrier_check(struct team *team)
2926 struct team_port *port;
2929 if (team->user_carrier_enabled)
2932 team_linkup = false;
2933 list_for_each_entry(port, &team->port_list, list) {
2941 netif_carrier_on(team->dev);
2943 netif_carrier_off(team->dev);
2946 static void __team_port_change_check(struct team_port *port, bool linkup)
2948 if (port->state.linkup != linkup)
2949 __team_port_change_send(port, linkup);
2950 __team_carrier_check(port->team);
2953 static void __team_port_change_port_added(struct team_port *port, bool linkup)
2955 __team_port_change_send(port, linkup);
2956 __team_carrier_check(port->team);
2959 static void __team_port_change_port_removed(struct team_port *port)
2961 port->removed = true;
2962 __team_port_change_send(port, false);
2963 __team_carrier_check(port->team);
2966 static void team_port_change_check(struct team_port *port, bool linkup)
2968 struct team *team = port->team;
2970 mutex_lock(&team->lock);
2971 __team_port_change_check(port, linkup);
2972 mutex_unlock(&team->lock);
2976 /************************************
2977 * Net device notifier event handler
2978 ************************************/
2980 static int team_device_event(struct notifier_block *unused,
2981 unsigned long event, void *ptr)
2983 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
2984 struct team_port *port;
2986 port = team_port_get_rtnl(dev);
2992 if (netif_oper_up(dev))
2993 team_port_change_check(port, true);
2996 team_port_change_check(port, false);
2999 if (netif_running(port->dev))
3000 team_port_change_check(port,
3001 !!netif_oper_up(port->dev));
3003 case NETDEV_UNREGISTER:
3004 team_del_slave(port->team->dev, dev);
3006 case NETDEV_FEAT_CHANGE:
3007 team_compute_features(port->team);
3009 case NETDEV_PRECHANGEMTU:
3010 /* Forbid to change mtu of underlaying device */
3011 if (!port->team->port_mtu_change_allowed)
3014 case NETDEV_PRE_TYPE_CHANGE:
3015 /* Forbid to change type of underlaying device */
3017 case NETDEV_RESEND_IGMP:
3018 /* Propagate to master device */
3019 call_netdevice_notifiers(event, port->team->dev);
3025 static struct notifier_block team_notifier_block __read_mostly = {
3026 .notifier_call = team_device_event,
3030 /***********************
3031 * Module init and exit
3032 ***********************/
3034 static int __init team_module_init(void)
3038 register_netdevice_notifier(&team_notifier_block);
3040 err = rtnl_link_register(&team_link_ops);
3044 err = team_nl_init();
3051 rtnl_link_unregister(&team_link_ops);
3054 unregister_netdevice_notifier(&team_notifier_block);
3059 static void __exit team_module_exit(void)
3062 rtnl_link_unregister(&team_link_ops);
3063 unregister_netdevice_notifier(&team_notifier_block);
3066 module_init(team_module_init);
3067 module_exit(team_module_exit);
3069 MODULE_LICENSE("GPL v2");
3071 MODULE_DESCRIPTION("Ethernet team device driver");
3072 MODULE_ALIAS_RTNL_LINK(DRV_NAME);