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