488ed4f535e50f6a0047d9a27e68a54b6ff9b369
[sfrench/cifs-2.6.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_rcu(const struct net_device *dev)
44 {
45         struct team_port *port = rcu_dereference(dev->rx_handler_data);
46
47         return team_port_exists(dev) ? port : NULL;
48 }
49
50 static struct team_port *team_port_get_rtnl(const struct net_device *dev)
51 {
52         struct team_port *port = rtnl_dereference(dev->rx_handler_data);
53
54         return team_port_exists(dev) ? port : NULL;
55 }
56
57 /*
58  * Since the ability to change device address for open port device is tested in
59  * team_port_add, this function can be called without control of return value
60  */
61 static int __set_port_dev_addr(struct net_device *port_dev,
62                                const unsigned char *dev_addr)
63 {
64         struct sockaddr addr;
65
66         memcpy(addr.sa_data, dev_addr, port_dev->addr_len);
67         addr.sa_family = port_dev->type;
68         return dev_set_mac_address(port_dev, &addr);
69 }
70
71 static int team_port_set_orig_dev_addr(struct team_port *port)
72 {
73         return __set_port_dev_addr(port->dev, port->orig.dev_addr);
74 }
75
76 static int team_port_set_team_dev_addr(struct team *team,
77                                        struct team_port *port)
78 {
79         return __set_port_dev_addr(port->dev, team->dev->dev_addr);
80 }
81
82 int team_modeop_port_enter(struct team *team, struct team_port *port)
83 {
84         return team_port_set_team_dev_addr(team, port);
85 }
86 EXPORT_SYMBOL(team_modeop_port_enter);
87
88 void team_modeop_port_change_dev_addr(struct team *team,
89                                       struct team_port *port)
90 {
91         team_port_set_team_dev_addr(team, port);
92 }
93 EXPORT_SYMBOL(team_modeop_port_change_dev_addr);
94
95 static void team_refresh_port_linkup(struct team_port *port)
96 {
97         port->linkup = port->user.linkup_enabled ? port->user.linkup :
98                                                    port->state.linkup;
99 }
100
101
102 /*******************
103  * Options handling
104  *******************/
105
106 struct team_option_inst { /* One for each option instance */
107         struct list_head list;
108         struct list_head tmp_list;
109         struct team_option *option;
110         struct team_option_inst_info info;
111         bool changed;
112         bool removed;
113 };
114
115 static struct team_option *__team_find_option(struct team *team,
116                                               const char *opt_name)
117 {
118         struct team_option *option;
119
120         list_for_each_entry(option, &team->option_list, list) {
121                 if (strcmp(option->name, opt_name) == 0)
122                         return option;
123         }
124         return NULL;
125 }
126
127 static void __team_option_inst_del(struct team_option_inst *opt_inst)
128 {
129         list_del(&opt_inst->list);
130         kfree(opt_inst);
131 }
132
133 static void __team_option_inst_del_option(struct team *team,
134                                           struct team_option *option)
135 {
136         struct team_option_inst *opt_inst, *tmp;
137
138         list_for_each_entry_safe(opt_inst, tmp, &team->option_inst_list, list) {
139                 if (opt_inst->option == option)
140                         __team_option_inst_del(opt_inst);
141         }
142 }
143
144 static int __team_option_inst_add(struct team *team, struct team_option *option,
145                                   struct team_port *port)
146 {
147         struct team_option_inst *opt_inst;
148         unsigned int array_size;
149         unsigned int i;
150         int err;
151
152         array_size = option->array_size;
153         if (!array_size)
154                 array_size = 1; /* No array but still need one instance */
155
156         for (i = 0; i < array_size; i++) {
157                 opt_inst = kmalloc(sizeof(*opt_inst), GFP_KERNEL);
158                 if (!opt_inst)
159                         return -ENOMEM;
160                 opt_inst->option = option;
161                 opt_inst->info.port = port;
162                 opt_inst->info.array_index = i;
163                 opt_inst->changed = true;
164                 opt_inst->removed = false;
165                 list_add_tail(&opt_inst->list, &team->option_inst_list);
166                 if (option->init) {
167                         err = option->init(team, &opt_inst->info);
168                         if (err)
169                                 return err;
170                 }
171
172         }
173         return 0;
174 }
175
176 static int __team_option_inst_add_option(struct team *team,
177                                          struct team_option *option)
178 {
179         struct team_port *port;
180         int err;
181
182         if (!option->per_port) {
183                 err = __team_option_inst_add(team, option, NULL);
184                 if (err)
185                         goto inst_del_option;
186         }
187
188         list_for_each_entry(port, &team->port_list, list) {
189                 err = __team_option_inst_add(team, option, port);
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 = kzalloc(sizeof(struct team_option *) * option_count,
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, int en_port_count)
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 (!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 (!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 static void team_adjust_ops(struct team *team)
549 {
550         __team_adjust_ops(team, team->en_port_count);
551 }
552
553 /*
554  * We can benefit from the fact that it's ensured no port is present
555  * at the time of mode change. Therefore no packets are in fly so there's no
556  * need to set mode operations in any special way.
557  */
558 static int __team_change_mode(struct team *team,
559                               const struct team_mode *new_mode)
560 {
561         /* Check if mode was previously set and do cleanup if so */
562         if (team_is_mode_set(team)) {
563                 void (*exit_op)(struct team *team) = team->ops.exit;
564
565                 /* Clear ops area so no callback is called any longer */
566                 memset(&team->ops, 0, sizeof(struct team_mode_ops));
567                 team_adjust_ops(team);
568
569                 if (exit_op)
570                         exit_op(team);
571                 team_mode_put(team->mode);
572                 team_set_no_mode(team);
573                 /* zero private data area */
574                 memset(&team->mode_priv, 0,
575                        sizeof(struct team) - offsetof(struct team, mode_priv));
576         }
577
578         if (!new_mode)
579                 return 0;
580
581         if (new_mode->ops->init) {
582                 int err;
583
584                 err = new_mode->ops->init(team);
585                 if (err)
586                         return err;
587         }
588
589         team->mode = new_mode;
590         memcpy(&team->ops, new_mode->ops, sizeof(struct team_mode_ops));
591         team_adjust_ops(team);
592
593         return 0;
594 }
595
596 static int team_change_mode(struct team *team, const char *kind)
597 {
598         const struct team_mode *new_mode;
599         struct net_device *dev = team->dev;
600         int err;
601
602         if (!list_empty(&team->port_list)) {
603                 netdev_err(dev, "No ports can be present during mode change\n");
604                 return -EBUSY;
605         }
606
607         if (team_is_mode_set(team) && strcmp(team->mode->kind, kind) == 0) {
608                 netdev_err(dev, "Unable to change to the same mode the team is in\n");
609                 return -EINVAL;
610         }
611
612         new_mode = team_mode_get(kind);
613         if (!new_mode) {
614                 netdev_err(dev, "Mode \"%s\" not found\n", kind);
615                 return -EINVAL;
616         }
617
618         err = __team_change_mode(team, new_mode);
619         if (err) {
620                 netdev_err(dev, "Failed to change to mode \"%s\"\n", kind);
621                 team_mode_put(new_mode);
622                 return err;
623         }
624
625         netdev_info(dev, "Mode changed to \"%s\"\n", kind);
626         return 0;
627 }
628
629
630 /************************
631  * Rx path frame handler
632  ************************/
633
634 /* note: already called with rcu_read_lock */
635 static rx_handler_result_t team_handle_frame(struct sk_buff **pskb)
636 {
637         struct sk_buff *skb = *pskb;
638         struct team_port *port;
639         struct team *team;
640         rx_handler_result_t res;
641
642         skb = skb_share_check(skb, GFP_ATOMIC);
643         if (!skb)
644                 return RX_HANDLER_CONSUMED;
645
646         *pskb = skb;
647
648         port = team_port_get_rcu(skb->dev);
649         team = port->team;
650         if (!team_port_enabled(port)) {
651                 /* allow exact match delivery for disabled ports */
652                 res = RX_HANDLER_EXACT;
653         } else {
654                 res = team->ops.receive(team, port, skb);
655         }
656         if (res == RX_HANDLER_ANOTHER) {
657                 struct team_pcpu_stats *pcpu_stats;
658
659                 pcpu_stats = this_cpu_ptr(team->pcpu_stats);
660                 u64_stats_update_begin(&pcpu_stats->syncp);
661                 pcpu_stats->rx_packets++;
662                 pcpu_stats->rx_bytes += skb->len;
663                 if (skb->pkt_type == PACKET_MULTICAST)
664                         pcpu_stats->rx_multicast++;
665                 u64_stats_update_end(&pcpu_stats->syncp);
666
667                 skb->dev = team->dev;
668         } else {
669                 this_cpu_inc(team->pcpu_stats->rx_dropped);
670         }
671
672         return res;
673 }
674
675
676 /*************************************
677  * Multiqueue Tx port select override
678  *************************************/
679
680 static int team_queue_override_init(struct team *team)
681 {
682         struct list_head *listarr;
683         unsigned int queue_cnt = team->dev->num_tx_queues - 1;
684         unsigned int i;
685
686         if (!queue_cnt)
687                 return 0;
688         listarr = kmalloc(sizeof(struct list_head) * queue_cnt, GFP_KERNEL);
689         if (!listarr)
690                 return -ENOMEM;
691         team->qom_lists = listarr;
692         for (i = 0; i < queue_cnt; i++)
693                 INIT_LIST_HEAD(listarr++);
694         return 0;
695 }
696
697 static void team_queue_override_fini(struct team *team)
698 {
699         kfree(team->qom_lists);
700 }
701
702 static struct list_head *__team_get_qom_list(struct team *team, u16 queue_id)
703 {
704         return &team->qom_lists[queue_id - 1];
705 }
706
707 /*
708  * note: already called with rcu_read_lock
709  */
710 static bool team_queue_override_transmit(struct team *team, struct sk_buff *skb)
711 {
712         struct list_head *qom_list;
713         struct team_port *port;
714
715         if (!team->queue_override_enabled || !skb->queue_mapping)
716                 return false;
717         qom_list = __team_get_qom_list(team, skb->queue_mapping);
718         list_for_each_entry_rcu(port, qom_list, qom_list) {
719                 if (!team_dev_queue_xmit(team, port, skb))
720                         return true;
721         }
722         return false;
723 }
724
725 static void __team_queue_override_port_del(struct team *team,
726                                            struct team_port *port)
727 {
728         if (!port->queue_id)
729                 return;
730         list_del_rcu(&port->qom_list);
731 }
732
733 static bool team_queue_override_port_has_gt_prio_than(struct team_port *port,
734                                                       struct team_port *cur)
735 {
736         if (port->priority < cur->priority)
737                 return true;
738         if (port->priority > cur->priority)
739                 return false;
740         if (port->index < cur->index)
741                 return true;
742         return false;
743 }
744
745 static void __team_queue_override_port_add(struct team *team,
746                                            struct team_port *port)
747 {
748         struct team_port *cur;
749         struct list_head *qom_list;
750         struct list_head *node;
751
752         if (!port->queue_id)
753                 return;
754         qom_list = __team_get_qom_list(team, port->queue_id);
755         node = qom_list;
756         list_for_each_entry(cur, qom_list, qom_list) {
757                 if (team_queue_override_port_has_gt_prio_than(port, cur))
758                         break;
759                 node = &cur->qom_list;
760         }
761         list_add_tail_rcu(&port->qom_list, node);
762 }
763
764 static void __team_queue_override_enabled_check(struct team *team)
765 {
766         struct team_port *port;
767         bool enabled = false;
768
769         list_for_each_entry(port, &team->port_list, list) {
770                 if (port->queue_id) {
771                         enabled = true;
772                         break;
773                 }
774         }
775         if (enabled == team->queue_override_enabled)
776                 return;
777         netdev_dbg(team->dev, "%s queue override\n",
778                    enabled ? "Enabling" : "Disabling");
779         team->queue_override_enabled = enabled;
780 }
781
782 static void team_queue_override_port_prio_changed(struct team *team,
783                                                   struct team_port *port)
784 {
785         if (!port->queue_id || team_port_enabled(port))
786                 return;
787         __team_queue_override_port_del(team, port);
788         __team_queue_override_port_add(team, port);
789         __team_queue_override_enabled_check(team);
790 }
791
792 static void team_queue_override_port_change_queue_id(struct team *team,
793                                                      struct team_port *port,
794                                                      u16 new_queue_id)
795 {
796         if (team_port_enabled(port)) {
797                 __team_queue_override_port_del(team, port);
798                 port->queue_id = new_queue_id;
799                 __team_queue_override_port_add(team, port);
800                 __team_queue_override_enabled_check(team);
801         } else {
802                 port->queue_id = new_queue_id;
803         }
804 }
805
806 static void team_queue_override_port_add(struct team *team,
807                                          struct team_port *port)
808 {
809         __team_queue_override_port_add(team, port);
810         __team_queue_override_enabled_check(team);
811 }
812
813 static void team_queue_override_port_del(struct team *team,
814                                          struct team_port *port)
815 {
816         __team_queue_override_port_del(team, port);
817         __team_queue_override_enabled_check(team);
818 }
819
820
821 /****************
822  * Port handling
823  ****************/
824
825 static bool team_port_find(const struct team *team,
826                            const struct team_port *port)
827 {
828         struct team_port *cur;
829
830         list_for_each_entry(cur, &team->port_list, list)
831                 if (cur == port)
832                         return true;
833         return false;
834 }
835
836 /*
837  * Enable/disable port by adding to enabled port hashlist and setting
838  * port->index (Might be racy so reader could see incorrect ifindex when
839  * processing a flying packet, but that is not a problem). Write guarded
840  * by team->lock.
841  */
842 static void team_port_enable(struct team *team,
843                              struct team_port *port)
844 {
845         if (team_port_enabled(port))
846                 return;
847         port->index = team->en_port_count++;
848         hlist_add_head_rcu(&port->hlist,
849                            team_port_index_hash(team, port->index));
850         team_adjust_ops(team);
851         team_queue_override_port_add(team, port);
852         if (team->ops.port_enabled)
853                 team->ops.port_enabled(team, port);
854 }
855
856 static void __reconstruct_port_hlist(struct team *team, int rm_index)
857 {
858         int i;
859         struct team_port *port;
860
861         for (i = rm_index + 1; i < team->en_port_count; i++) {
862                 port = team_get_port_by_index(team, i);
863                 hlist_del_rcu(&port->hlist);
864                 port->index--;
865                 hlist_add_head_rcu(&port->hlist,
866                                    team_port_index_hash(team, port->index));
867         }
868 }
869
870 static void team_port_disable(struct team *team,
871                               struct team_port *port)
872 {
873         if (!team_port_enabled(port))
874                 return;
875         if (team->ops.port_disabled)
876                 team->ops.port_disabled(team, port);
877         hlist_del_rcu(&port->hlist);
878         __reconstruct_port_hlist(team, port->index);
879         port->index = -1;
880         team_queue_override_port_del(team, port);
881         __team_adjust_ops(team, team->en_port_count - 1);
882         /*
883          * Wait until readers see adjusted ops. This ensures that
884          * readers never see team->en_port_count == 0
885          */
886         synchronize_rcu();
887         team->en_port_count--;
888 }
889
890 #define TEAM_VLAN_FEATURES (NETIF_F_ALL_CSUM | NETIF_F_SG | \
891                             NETIF_F_FRAGLIST | NETIF_F_ALL_TSO | \
892                             NETIF_F_HIGHDMA | NETIF_F_LRO)
893
894 static void __team_compute_features(struct team *team)
895 {
896         struct team_port *port;
897         u32 vlan_features = TEAM_VLAN_FEATURES;
898         unsigned short max_hard_header_len = ETH_HLEN;
899         unsigned int flags, dst_release_flag = IFF_XMIT_DST_RELEASE;
900
901         list_for_each_entry(port, &team->port_list, list) {
902                 vlan_features = netdev_increment_features(vlan_features,
903                                         port->dev->vlan_features,
904                                         TEAM_VLAN_FEATURES);
905
906                 dst_release_flag &= port->dev->priv_flags;
907                 if (port->dev->hard_header_len > max_hard_header_len)
908                         max_hard_header_len = port->dev->hard_header_len;
909         }
910
911         team->dev->vlan_features = vlan_features;
912         team->dev->hard_header_len = max_hard_header_len;
913
914         flags = team->dev->priv_flags & ~IFF_XMIT_DST_RELEASE;
915         team->dev->priv_flags = flags | dst_release_flag;
916
917         netdev_change_features(team->dev);
918 }
919
920 static void team_compute_features(struct team *team)
921 {
922         mutex_lock(&team->lock);
923         __team_compute_features(team);
924         mutex_unlock(&team->lock);
925 }
926
927 static int team_port_enter(struct team *team, struct team_port *port)
928 {
929         int err = 0;
930
931         dev_hold(team->dev);
932         port->dev->priv_flags |= IFF_TEAM_PORT;
933         if (team->ops.port_enter) {
934                 err = team->ops.port_enter(team, port);
935                 if (err) {
936                         netdev_err(team->dev, "Device %s failed to enter team mode\n",
937                                    port->dev->name);
938                         goto err_port_enter;
939                 }
940         }
941
942         return 0;
943
944 err_port_enter:
945         port->dev->priv_flags &= ~IFF_TEAM_PORT;
946         dev_put(team->dev);
947
948         return err;
949 }
950
951 static void team_port_leave(struct team *team, struct team_port *port)
952 {
953         if (team->ops.port_leave)
954                 team->ops.port_leave(team, port);
955         port->dev->priv_flags &= ~IFF_TEAM_PORT;
956         dev_put(team->dev);
957 }
958
959 #ifdef CONFIG_NET_POLL_CONTROLLER
960 static int team_port_enable_netpoll(struct team *team, struct team_port *port,
961                                     gfp_t gfp)
962 {
963         struct netpoll *np;
964         int err;
965
966         np = kzalloc(sizeof(*np), gfp);
967         if (!np)
968                 return -ENOMEM;
969
970         err = __netpoll_setup(np, port->dev, gfp);
971         if (err) {
972                 kfree(np);
973                 return err;
974         }
975         port->np = np;
976         return err;
977 }
978
979 static void team_port_disable_netpoll(struct team_port *port)
980 {
981         struct netpoll *np = port->np;
982
983         if (!np)
984                 return;
985         port->np = NULL;
986
987         /* Wait for transmitting packets to finish before freeing. */
988         synchronize_rcu_bh();
989         __netpoll_cleanup(np);
990         kfree(np);
991 }
992
993 static struct netpoll_info *team_netpoll_info(struct team *team)
994 {
995         return team->dev->npinfo;
996 }
997
998 #else
999 static int team_port_enable_netpoll(struct team *team, struct team_port *port,
1000                                     gfp_t gfp)
1001 {
1002         return 0;
1003 }
1004 static void team_port_disable_netpoll(struct team_port *port)
1005 {
1006 }
1007 static struct netpoll_info *team_netpoll_info(struct team *team)
1008 {
1009         return NULL;
1010 }
1011 #endif
1012
1013 static void __team_port_change_port_added(struct team_port *port, bool linkup);
1014 static int team_dev_type_check_change(struct net_device *dev,
1015                                       struct net_device *port_dev);
1016
1017 static int team_port_add(struct team *team, struct net_device *port_dev)
1018 {
1019         struct net_device *dev = team->dev;
1020         struct team_port *port;
1021         char *portname = port_dev->name;
1022         int err;
1023
1024         if (port_dev->flags & IFF_LOOPBACK) {
1025                 netdev_err(dev, "Device %s is loopback device. Loopback devices can't be added as a team port\n",
1026                            portname);
1027                 return -EINVAL;
1028         }
1029
1030         if (team_port_exists(port_dev)) {
1031                 netdev_err(dev, "Device %s is already a port "
1032                                 "of a team device\n", portname);
1033                 return -EBUSY;
1034         }
1035
1036         if (port_dev->features & NETIF_F_VLAN_CHALLENGED &&
1037             vlan_uses_dev(dev)) {
1038                 netdev_err(dev, "Device %s is VLAN challenged and team device has VLAN set up\n",
1039                            portname);
1040                 return -EPERM;
1041         }
1042
1043         err = team_dev_type_check_change(dev, port_dev);
1044         if (err)
1045                 return err;
1046
1047         if (port_dev->flags & IFF_UP) {
1048                 netdev_err(dev, "Device %s is up. Set it down before adding it as a team port\n",
1049                            portname);
1050                 return -EBUSY;
1051         }
1052
1053         port = kzalloc(sizeof(struct team_port) + team->mode->port_priv_size,
1054                        GFP_KERNEL);
1055         if (!port)
1056                 return -ENOMEM;
1057
1058         port->dev = port_dev;
1059         port->team = team;
1060         INIT_LIST_HEAD(&port->qom_list);
1061
1062         port->orig.mtu = port_dev->mtu;
1063         err = dev_set_mtu(port_dev, dev->mtu);
1064         if (err) {
1065                 netdev_dbg(dev, "Error %d calling dev_set_mtu\n", err);
1066                 goto err_set_mtu;
1067         }
1068
1069         memcpy(port->orig.dev_addr, port_dev->dev_addr, port_dev->addr_len);
1070
1071         err = team_port_enter(team, port);
1072         if (err) {
1073                 netdev_err(dev, "Device %s failed to enter team mode\n",
1074                            portname);
1075                 goto err_port_enter;
1076         }
1077
1078         err = dev_open(port_dev);
1079         if (err) {
1080                 netdev_dbg(dev, "Device %s opening failed\n",
1081                            portname);
1082                 goto err_dev_open;
1083         }
1084
1085         err = vlan_vids_add_by_dev(port_dev, dev);
1086         if (err) {
1087                 netdev_err(dev, "Failed to add vlan ids to device %s\n",
1088                                 portname);
1089                 goto err_vids_add;
1090         }
1091
1092         if (team_netpoll_info(team)) {
1093                 err = team_port_enable_netpoll(team, port, GFP_KERNEL);
1094                 if (err) {
1095                         netdev_err(dev, "Failed to enable netpoll on device %s\n",
1096                                    portname);
1097                         goto err_enable_netpoll;
1098                 }
1099         }
1100
1101         err = netdev_master_upper_dev_link(port_dev, dev);
1102         if (err) {
1103                 netdev_err(dev, "Device %s failed to set upper link\n",
1104                            portname);
1105                 goto err_set_upper_link;
1106         }
1107
1108         err = netdev_rx_handler_register(port_dev, team_handle_frame,
1109                                          port);
1110         if (err) {
1111                 netdev_err(dev, "Device %s failed to register rx_handler\n",
1112                            portname);
1113                 goto err_handler_register;
1114         }
1115
1116         err = __team_option_inst_add_port(team, port);
1117         if (err) {
1118                 netdev_err(dev, "Device %s failed to add per-port options\n",
1119                            portname);
1120                 goto err_option_port_add;
1121         }
1122
1123         port->index = -1;
1124         team_port_enable(team, port);
1125         list_add_tail_rcu(&port->list, &team->port_list);
1126         __team_compute_features(team);
1127         __team_port_change_port_added(port, !!netif_carrier_ok(port_dev));
1128         __team_options_change_check(team);
1129
1130         netdev_info(dev, "Port device %s added\n", portname);
1131
1132         return 0;
1133
1134 err_option_port_add:
1135         netdev_rx_handler_unregister(port_dev);
1136
1137 err_handler_register:
1138         netdev_upper_dev_unlink(port_dev, dev);
1139
1140 err_set_upper_link:
1141         team_port_disable_netpoll(port);
1142
1143 err_enable_netpoll:
1144         vlan_vids_del_by_dev(port_dev, dev);
1145
1146 err_vids_add:
1147         dev_close(port_dev);
1148
1149 err_dev_open:
1150         team_port_leave(team, port);
1151         team_port_set_orig_dev_addr(port);
1152
1153 err_port_enter:
1154         dev_set_mtu(port_dev, port->orig.mtu);
1155
1156 err_set_mtu:
1157         kfree(port);
1158
1159         return err;
1160 }
1161
1162 static void __team_port_change_port_removed(struct team_port *port);
1163
1164 static int team_port_del(struct team *team, struct net_device *port_dev)
1165 {
1166         struct net_device *dev = team->dev;
1167         struct team_port *port;
1168         char *portname = port_dev->name;
1169
1170         port = team_port_get_rtnl(port_dev);
1171         if (!port || !team_port_find(team, port)) {
1172                 netdev_err(dev, "Device %s does not act as a port of this team\n",
1173                            portname);
1174                 return -ENOENT;
1175         }
1176
1177         team_port_disable(team, port);
1178         list_del_rcu(&port->list);
1179         netdev_rx_handler_unregister(port_dev);
1180         netdev_upper_dev_unlink(port_dev, dev);
1181         team_port_disable_netpoll(port);
1182         vlan_vids_del_by_dev(port_dev, dev);
1183         dev_uc_unsync(port_dev, dev);
1184         dev_mc_unsync(port_dev, dev);
1185         dev_close(port_dev);
1186         team_port_leave(team, port);
1187
1188         __team_option_inst_mark_removed_port(team, port);
1189         __team_options_change_check(team);
1190         __team_option_inst_del_port(team, port);
1191         __team_port_change_port_removed(port);
1192
1193         team_port_set_orig_dev_addr(port);
1194         dev_set_mtu(port_dev, port->orig.mtu);
1195         kfree_rcu(port, rcu);
1196         netdev_info(dev, "Port device %s removed\n", portname);
1197         __team_compute_features(team);
1198
1199         return 0;
1200 }
1201
1202
1203 /*****************
1204  * Net device ops
1205  *****************/
1206
1207 static int team_mode_option_get(struct team *team, struct team_gsetter_ctx *ctx)
1208 {
1209         ctx->data.str_val = team->mode->kind;
1210         return 0;
1211 }
1212
1213 static int team_mode_option_set(struct team *team, struct team_gsetter_ctx *ctx)
1214 {
1215         return team_change_mode(team, ctx->data.str_val);
1216 }
1217
1218 static int team_port_en_option_get(struct team *team,
1219                                    struct team_gsetter_ctx *ctx)
1220 {
1221         struct team_port *port = ctx->info->port;
1222
1223         ctx->data.bool_val = team_port_enabled(port);
1224         return 0;
1225 }
1226
1227 static int team_port_en_option_set(struct team *team,
1228                                    struct team_gsetter_ctx *ctx)
1229 {
1230         struct team_port *port = ctx->info->port;
1231
1232         if (ctx->data.bool_val)
1233                 team_port_enable(team, port);
1234         else
1235                 team_port_disable(team, port);
1236         return 0;
1237 }
1238
1239 static int team_user_linkup_option_get(struct team *team,
1240                                        struct team_gsetter_ctx *ctx)
1241 {
1242         struct team_port *port = ctx->info->port;
1243
1244         ctx->data.bool_val = port->user.linkup;
1245         return 0;
1246 }
1247
1248 static int team_user_linkup_option_set(struct team *team,
1249                                        struct team_gsetter_ctx *ctx)
1250 {
1251         struct team_port *port = ctx->info->port;
1252
1253         port->user.linkup = ctx->data.bool_val;
1254         team_refresh_port_linkup(port);
1255         return 0;
1256 }
1257
1258 static int team_user_linkup_en_option_get(struct team *team,
1259                                           struct team_gsetter_ctx *ctx)
1260 {
1261         struct team_port *port = ctx->info->port;
1262
1263         ctx->data.bool_val = port->user.linkup_enabled;
1264         return 0;
1265 }
1266
1267 static int team_user_linkup_en_option_set(struct team *team,
1268                                           struct team_gsetter_ctx *ctx)
1269 {
1270         struct team_port *port = ctx->info->port;
1271
1272         port->user.linkup_enabled = ctx->data.bool_val;
1273         team_refresh_port_linkup(port);
1274         return 0;
1275 }
1276
1277 static int team_priority_option_get(struct team *team,
1278                                     struct team_gsetter_ctx *ctx)
1279 {
1280         struct team_port *port = ctx->info->port;
1281
1282         ctx->data.s32_val = port->priority;
1283         return 0;
1284 }
1285
1286 static int team_priority_option_set(struct team *team,
1287                                     struct team_gsetter_ctx *ctx)
1288 {
1289         struct team_port *port = ctx->info->port;
1290         s32 priority = ctx->data.s32_val;
1291
1292         if (port->priority == priority)
1293                 return 0;
1294         port->priority = priority;
1295         team_queue_override_port_prio_changed(team, port);
1296         return 0;
1297 }
1298
1299 static int team_queue_id_option_get(struct team *team,
1300                                     struct team_gsetter_ctx *ctx)
1301 {
1302         struct team_port *port = ctx->info->port;
1303
1304         ctx->data.u32_val = port->queue_id;
1305         return 0;
1306 }
1307
1308 static int team_queue_id_option_set(struct team *team,
1309                                     struct team_gsetter_ctx *ctx)
1310 {
1311         struct team_port *port = ctx->info->port;
1312         u16 new_queue_id = ctx->data.u32_val;
1313
1314         if (port->queue_id == new_queue_id)
1315                 return 0;
1316         if (new_queue_id >= team->dev->real_num_tx_queues)
1317                 return -EINVAL;
1318         team_queue_override_port_change_queue_id(team, port, new_queue_id);
1319         return 0;
1320 }
1321
1322 static const struct team_option team_options[] = {
1323         {
1324                 .name = "mode",
1325                 .type = TEAM_OPTION_TYPE_STRING,
1326                 .getter = team_mode_option_get,
1327                 .setter = team_mode_option_set,
1328         },
1329         {
1330                 .name = "enabled",
1331                 .type = TEAM_OPTION_TYPE_BOOL,
1332                 .per_port = true,
1333                 .getter = team_port_en_option_get,
1334                 .setter = team_port_en_option_set,
1335         },
1336         {
1337                 .name = "user_linkup",
1338                 .type = TEAM_OPTION_TYPE_BOOL,
1339                 .per_port = true,
1340                 .getter = team_user_linkup_option_get,
1341                 .setter = team_user_linkup_option_set,
1342         },
1343         {
1344                 .name = "user_linkup_enabled",
1345                 .type = TEAM_OPTION_TYPE_BOOL,
1346                 .per_port = true,
1347                 .getter = team_user_linkup_en_option_get,
1348                 .setter = team_user_linkup_en_option_set,
1349         },
1350         {
1351                 .name = "priority",
1352                 .type = TEAM_OPTION_TYPE_S32,
1353                 .per_port = true,
1354                 .getter = team_priority_option_get,
1355                 .setter = team_priority_option_set,
1356         },
1357         {
1358                 .name = "queue_id",
1359                 .type = TEAM_OPTION_TYPE_U32,
1360                 .per_port = true,
1361                 .getter = team_queue_id_option_get,
1362                 .setter = team_queue_id_option_set,
1363         },
1364 };
1365
1366 static struct lock_class_key team_netdev_xmit_lock_key;
1367 static struct lock_class_key team_netdev_addr_lock_key;
1368 static struct lock_class_key team_tx_busylock_key;
1369
1370 static void team_set_lockdep_class_one(struct net_device *dev,
1371                                        struct netdev_queue *txq,
1372                                        void *unused)
1373 {
1374         lockdep_set_class(&txq->_xmit_lock, &team_netdev_xmit_lock_key);
1375 }
1376
1377 static void team_set_lockdep_class(struct net_device *dev)
1378 {
1379         lockdep_set_class(&dev->addr_list_lock, &team_netdev_addr_lock_key);
1380         netdev_for_each_tx_queue(dev, team_set_lockdep_class_one, NULL);
1381         dev->qdisc_tx_busylock = &team_tx_busylock_key;
1382 }
1383
1384 static int team_init(struct net_device *dev)
1385 {
1386         struct team *team = netdev_priv(dev);
1387         int i;
1388         int err;
1389
1390         team->dev = dev;
1391         mutex_init(&team->lock);
1392         team_set_no_mode(team);
1393
1394         team->pcpu_stats = alloc_percpu(struct team_pcpu_stats);
1395         if (!team->pcpu_stats)
1396                 return -ENOMEM;
1397
1398         for (i = 0; i < TEAM_PORT_HASHENTRIES; i++)
1399                 INIT_HLIST_HEAD(&team->en_port_hlist[i]);
1400         INIT_LIST_HEAD(&team->port_list);
1401         err = team_queue_override_init(team);
1402         if (err)
1403                 goto err_team_queue_override_init;
1404
1405         team_adjust_ops(team);
1406
1407         INIT_LIST_HEAD(&team->option_list);
1408         INIT_LIST_HEAD(&team->option_inst_list);
1409         err = team_options_register(team, team_options, ARRAY_SIZE(team_options));
1410         if (err)
1411                 goto err_options_register;
1412         netif_carrier_off(dev);
1413
1414         team_set_lockdep_class(dev);
1415
1416         return 0;
1417
1418 err_options_register:
1419         team_queue_override_fini(team);
1420 err_team_queue_override_init:
1421         free_percpu(team->pcpu_stats);
1422
1423         return err;
1424 }
1425
1426 static void team_uninit(struct net_device *dev)
1427 {
1428         struct team *team = netdev_priv(dev);
1429         struct team_port *port;
1430         struct team_port *tmp;
1431
1432         mutex_lock(&team->lock);
1433         list_for_each_entry_safe(port, tmp, &team->port_list, list)
1434                 team_port_del(team, port->dev);
1435
1436         __team_change_mode(team, NULL); /* cleanup */
1437         __team_options_unregister(team, team_options, ARRAY_SIZE(team_options));
1438         team_queue_override_fini(team);
1439         mutex_unlock(&team->lock);
1440 }
1441
1442 static void team_destructor(struct net_device *dev)
1443 {
1444         struct team *team = netdev_priv(dev);
1445
1446         free_percpu(team->pcpu_stats);
1447         free_netdev(dev);
1448 }
1449
1450 static int team_open(struct net_device *dev)
1451 {
1452         return 0;
1453 }
1454
1455 static int team_close(struct net_device *dev)
1456 {
1457         return 0;
1458 }
1459
1460 /*
1461  * note: already called with rcu_read_lock
1462  */
1463 static netdev_tx_t team_xmit(struct sk_buff *skb, struct net_device *dev)
1464 {
1465         struct team *team = netdev_priv(dev);
1466         bool tx_success;
1467         unsigned int len = skb->len;
1468
1469         tx_success = team_queue_override_transmit(team, skb);
1470         if (!tx_success)
1471                 tx_success = team->ops.transmit(team, skb);
1472         if (tx_success) {
1473                 struct team_pcpu_stats *pcpu_stats;
1474
1475                 pcpu_stats = this_cpu_ptr(team->pcpu_stats);
1476                 u64_stats_update_begin(&pcpu_stats->syncp);
1477                 pcpu_stats->tx_packets++;
1478                 pcpu_stats->tx_bytes += len;
1479                 u64_stats_update_end(&pcpu_stats->syncp);
1480         } else {
1481                 this_cpu_inc(team->pcpu_stats->tx_dropped);
1482         }
1483
1484         return NETDEV_TX_OK;
1485 }
1486
1487 static u16 team_select_queue(struct net_device *dev, struct sk_buff *skb)
1488 {
1489         /*
1490          * This helper function exists to help dev_pick_tx get the correct
1491          * destination queue.  Using a helper function skips a call to
1492          * skb_tx_hash and will put the skbs in the queue we expect on their
1493          * way down to the team driver.
1494          */
1495         u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0;
1496
1497         /*
1498          * Save the original txq to restore before passing to the driver
1499          */
1500         qdisc_skb_cb(skb)->slave_dev_queue_mapping = skb->queue_mapping;
1501
1502         if (unlikely(txq >= dev->real_num_tx_queues)) {
1503                 do {
1504                         txq -= dev->real_num_tx_queues;
1505                 } while (txq >= dev->real_num_tx_queues);
1506         }
1507         return txq;
1508 }
1509
1510 static void team_change_rx_flags(struct net_device *dev, int change)
1511 {
1512         struct team *team = netdev_priv(dev);
1513         struct team_port *port;
1514         int inc;
1515
1516         rcu_read_lock();
1517         list_for_each_entry_rcu(port, &team->port_list, list) {
1518                 if (change & IFF_PROMISC) {
1519                         inc = dev->flags & IFF_PROMISC ? 1 : -1;
1520                         dev_set_promiscuity(port->dev, inc);
1521                 }
1522                 if (change & IFF_ALLMULTI) {
1523                         inc = dev->flags & IFF_ALLMULTI ? 1 : -1;
1524                         dev_set_allmulti(port->dev, inc);
1525                 }
1526         }
1527         rcu_read_unlock();
1528 }
1529
1530 static void team_set_rx_mode(struct net_device *dev)
1531 {
1532         struct team *team = netdev_priv(dev);
1533         struct team_port *port;
1534
1535         rcu_read_lock();
1536         list_for_each_entry_rcu(port, &team->port_list, list) {
1537                 dev_uc_sync_multiple(port->dev, dev);
1538                 dev_mc_sync_multiple(port->dev, dev);
1539         }
1540         rcu_read_unlock();
1541 }
1542
1543 static int team_set_mac_address(struct net_device *dev, void *p)
1544 {
1545         struct sockaddr *addr = p;
1546         struct team *team = netdev_priv(dev);
1547         struct team_port *port;
1548
1549         if (dev->type == ARPHRD_ETHER && !is_valid_ether_addr(addr->sa_data))
1550                 return -EADDRNOTAVAIL;
1551         memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1552         rcu_read_lock();
1553         list_for_each_entry_rcu(port, &team->port_list, list)
1554                 if (team->ops.port_change_dev_addr)
1555                         team->ops.port_change_dev_addr(team, port);
1556         rcu_read_unlock();
1557         return 0;
1558 }
1559
1560 static int team_change_mtu(struct net_device *dev, int new_mtu)
1561 {
1562         struct team *team = netdev_priv(dev);
1563         struct team_port *port;
1564         int err;
1565
1566         /*
1567          * Alhough this is reader, it's guarded by team lock. It's not possible
1568          * to traverse list in reverse under rcu_read_lock
1569          */
1570         mutex_lock(&team->lock);
1571         list_for_each_entry(port, &team->port_list, list) {
1572                 err = dev_set_mtu(port->dev, new_mtu);
1573                 if (err) {
1574                         netdev_err(dev, "Device %s failed to change mtu",
1575                                    port->dev->name);
1576                         goto unwind;
1577                 }
1578         }
1579         mutex_unlock(&team->lock);
1580
1581         dev->mtu = new_mtu;
1582
1583         return 0;
1584
1585 unwind:
1586         list_for_each_entry_continue_reverse(port, &team->port_list, list)
1587                 dev_set_mtu(port->dev, dev->mtu);
1588         mutex_unlock(&team->lock);
1589
1590         return err;
1591 }
1592
1593 static struct rtnl_link_stats64 *
1594 team_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
1595 {
1596         struct team *team = netdev_priv(dev);
1597         struct team_pcpu_stats *p;
1598         u64 rx_packets, rx_bytes, rx_multicast, tx_packets, tx_bytes;
1599         u32 rx_dropped = 0, tx_dropped = 0;
1600         unsigned int start;
1601         int i;
1602
1603         for_each_possible_cpu(i) {
1604                 p = per_cpu_ptr(team->pcpu_stats, i);
1605                 do {
1606                         start = u64_stats_fetch_begin_bh(&p->syncp);
1607                         rx_packets      = p->rx_packets;
1608                         rx_bytes        = p->rx_bytes;
1609                         rx_multicast    = p->rx_multicast;
1610                         tx_packets      = p->tx_packets;
1611                         tx_bytes        = p->tx_bytes;
1612                 } while (u64_stats_fetch_retry_bh(&p->syncp, start));
1613
1614                 stats->rx_packets       += rx_packets;
1615                 stats->rx_bytes         += rx_bytes;
1616                 stats->multicast        += rx_multicast;
1617                 stats->tx_packets       += tx_packets;
1618                 stats->tx_bytes         += tx_bytes;
1619                 /*
1620                  * rx_dropped & tx_dropped are u32, updated
1621                  * without syncp protection.
1622                  */
1623                 rx_dropped      += p->rx_dropped;
1624                 tx_dropped      += p->tx_dropped;
1625         }
1626         stats->rx_dropped       = rx_dropped;
1627         stats->tx_dropped       = tx_dropped;
1628         return stats;
1629 }
1630
1631 static int team_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid)
1632 {
1633         struct team *team = netdev_priv(dev);
1634         struct team_port *port;
1635         int err;
1636
1637         /*
1638          * Alhough this is reader, it's guarded by team lock. It's not possible
1639          * to traverse list in reverse under rcu_read_lock
1640          */
1641         mutex_lock(&team->lock);
1642         list_for_each_entry(port, &team->port_list, list) {
1643                 err = vlan_vid_add(port->dev, proto, vid);
1644                 if (err)
1645                         goto unwind;
1646         }
1647         mutex_unlock(&team->lock);
1648
1649         return 0;
1650
1651 unwind:
1652         list_for_each_entry_continue_reverse(port, &team->port_list, list)
1653                 vlan_vid_del(port->dev, proto, vid);
1654         mutex_unlock(&team->lock);
1655
1656         return err;
1657 }
1658
1659 static int team_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid)
1660 {
1661         struct team *team = netdev_priv(dev);
1662         struct team_port *port;
1663
1664         rcu_read_lock();
1665         list_for_each_entry_rcu(port, &team->port_list, list)
1666                 vlan_vid_del(port->dev, proto, vid);
1667         rcu_read_unlock();
1668
1669         return 0;
1670 }
1671
1672 #ifdef CONFIG_NET_POLL_CONTROLLER
1673 static void team_poll_controller(struct net_device *dev)
1674 {
1675 }
1676
1677 static void __team_netpoll_cleanup(struct team *team)
1678 {
1679         struct team_port *port;
1680
1681         list_for_each_entry(port, &team->port_list, list)
1682                 team_port_disable_netpoll(port);
1683 }
1684
1685 static void team_netpoll_cleanup(struct net_device *dev)
1686 {
1687         struct team *team = netdev_priv(dev);
1688
1689         mutex_lock(&team->lock);
1690         __team_netpoll_cleanup(team);
1691         mutex_unlock(&team->lock);
1692 }
1693
1694 static int team_netpoll_setup(struct net_device *dev,
1695                               struct netpoll_info *npifo, gfp_t gfp)
1696 {
1697         struct team *team = netdev_priv(dev);
1698         struct team_port *port;
1699         int err = 0;
1700
1701         mutex_lock(&team->lock);
1702         list_for_each_entry(port, &team->port_list, list) {
1703                 err = team_port_enable_netpoll(team, port, gfp);
1704                 if (err) {
1705                         __team_netpoll_cleanup(team);
1706                         break;
1707                 }
1708         }
1709         mutex_unlock(&team->lock);
1710         return err;
1711 }
1712 #endif
1713
1714 static int team_add_slave(struct net_device *dev, struct net_device *port_dev)
1715 {
1716         struct team *team = netdev_priv(dev);
1717         int err;
1718
1719         mutex_lock(&team->lock);
1720         err = team_port_add(team, port_dev);
1721         mutex_unlock(&team->lock);
1722         return err;
1723 }
1724
1725 static int team_del_slave(struct net_device *dev, struct net_device *port_dev)
1726 {
1727         struct team *team = netdev_priv(dev);
1728         int err;
1729
1730         mutex_lock(&team->lock);
1731         err = team_port_del(team, port_dev);
1732         mutex_unlock(&team->lock);
1733         return err;
1734 }
1735
1736 static netdev_features_t team_fix_features(struct net_device *dev,
1737                                            netdev_features_t features)
1738 {
1739         struct team_port *port;
1740         struct team *team = netdev_priv(dev);
1741         netdev_features_t mask;
1742
1743         mask = features;
1744         features &= ~NETIF_F_ONE_FOR_ALL;
1745         features |= NETIF_F_ALL_FOR_ALL;
1746
1747         rcu_read_lock();
1748         list_for_each_entry_rcu(port, &team->port_list, list) {
1749                 features = netdev_increment_features(features,
1750                                                      port->dev->features,
1751                                                      mask);
1752         }
1753         rcu_read_unlock();
1754         return features;
1755 }
1756
1757 static int team_change_carrier(struct net_device *dev, bool new_carrier)
1758 {
1759         struct team *team = netdev_priv(dev);
1760
1761         team->user_carrier_enabled = true;
1762
1763         if (new_carrier)
1764                 netif_carrier_on(dev);
1765         else
1766                 netif_carrier_off(dev);
1767         return 0;
1768 }
1769
1770 static const struct net_device_ops team_netdev_ops = {
1771         .ndo_init               = team_init,
1772         .ndo_uninit             = team_uninit,
1773         .ndo_open               = team_open,
1774         .ndo_stop               = team_close,
1775         .ndo_start_xmit         = team_xmit,
1776         .ndo_select_queue       = team_select_queue,
1777         .ndo_change_rx_flags    = team_change_rx_flags,
1778         .ndo_set_rx_mode        = team_set_rx_mode,
1779         .ndo_set_mac_address    = team_set_mac_address,
1780         .ndo_change_mtu         = team_change_mtu,
1781         .ndo_get_stats64        = team_get_stats64,
1782         .ndo_vlan_rx_add_vid    = team_vlan_rx_add_vid,
1783         .ndo_vlan_rx_kill_vid   = team_vlan_rx_kill_vid,
1784 #ifdef CONFIG_NET_POLL_CONTROLLER
1785         .ndo_poll_controller    = team_poll_controller,
1786         .ndo_netpoll_setup      = team_netpoll_setup,
1787         .ndo_netpoll_cleanup    = team_netpoll_cleanup,
1788 #endif
1789         .ndo_add_slave          = team_add_slave,
1790         .ndo_del_slave          = team_del_slave,
1791         .ndo_fix_features       = team_fix_features,
1792         .ndo_change_carrier     = team_change_carrier,
1793 };
1794
1795 /***********************
1796  * ethtool interface
1797  ***********************/
1798
1799 static void team_ethtool_get_drvinfo(struct net_device *dev,
1800                                      struct ethtool_drvinfo *drvinfo)
1801 {
1802         strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver));
1803         strlcpy(drvinfo->version, UTS_RELEASE, sizeof(drvinfo->version));
1804 }
1805
1806 static const struct ethtool_ops team_ethtool_ops = {
1807         .get_drvinfo            = team_ethtool_get_drvinfo,
1808         .get_link               = ethtool_op_get_link,
1809 };
1810
1811 /***********************
1812  * rt netlink interface
1813  ***********************/
1814
1815 static void team_setup_by_port(struct net_device *dev,
1816                                struct net_device *port_dev)
1817 {
1818         dev->header_ops = port_dev->header_ops;
1819         dev->type = port_dev->type;
1820         dev->hard_header_len = port_dev->hard_header_len;
1821         dev->addr_len = port_dev->addr_len;
1822         dev->mtu = port_dev->mtu;
1823         memcpy(dev->broadcast, port_dev->broadcast, port_dev->addr_len);
1824         memcpy(dev->dev_addr, port_dev->dev_addr, port_dev->addr_len);
1825 }
1826
1827 static int team_dev_type_check_change(struct net_device *dev,
1828                                       struct net_device *port_dev)
1829 {
1830         struct team *team = netdev_priv(dev);
1831         char *portname = port_dev->name;
1832         int err;
1833
1834         if (dev->type == port_dev->type)
1835                 return 0;
1836         if (!list_empty(&team->port_list)) {
1837                 netdev_err(dev, "Device %s is of different type\n", portname);
1838                 return -EBUSY;
1839         }
1840         err = call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE, dev);
1841         err = notifier_to_errno(err);
1842         if (err) {
1843                 netdev_err(dev, "Refused to change device type\n");
1844                 return err;
1845         }
1846         dev_uc_flush(dev);
1847         dev_mc_flush(dev);
1848         team_setup_by_port(dev, port_dev);
1849         call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE, dev);
1850         return 0;
1851 }
1852
1853 static void team_setup(struct net_device *dev)
1854 {
1855         ether_setup(dev);
1856
1857         dev->netdev_ops = &team_netdev_ops;
1858         dev->ethtool_ops = &team_ethtool_ops;
1859         dev->destructor = team_destructor;
1860         dev->tx_queue_len = 0;
1861         dev->flags |= IFF_MULTICAST;
1862         dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING);
1863
1864         /*
1865          * Indicate we support unicast address filtering. That way core won't
1866          * bring us to promisc mode in case a unicast addr is added.
1867          * Let this up to underlay drivers.
1868          */
1869         dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
1870
1871         dev->features |= NETIF_F_LLTX;
1872         dev->features |= NETIF_F_GRO;
1873         dev->hw_features = TEAM_VLAN_FEATURES |
1874                            NETIF_F_HW_VLAN_CTAG_TX |
1875                            NETIF_F_HW_VLAN_CTAG_RX |
1876                            NETIF_F_HW_VLAN_CTAG_FILTER;
1877
1878         dev->hw_features &= ~(NETIF_F_ALL_CSUM & ~NETIF_F_HW_CSUM);
1879         dev->features |= dev->hw_features;
1880 }
1881
1882 static int team_newlink(struct net *src_net, struct net_device *dev,
1883                         struct nlattr *tb[], struct nlattr *data[])
1884 {
1885         int err;
1886
1887         if (tb[IFLA_ADDRESS] == NULL)
1888                 eth_hw_addr_random(dev);
1889
1890         err = register_netdevice(dev);
1891         if (err)
1892                 return err;
1893
1894         return 0;
1895 }
1896
1897 static int team_validate(struct nlattr *tb[], struct nlattr *data[])
1898 {
1899         if (tb[IFLA_ADDRESS]) {
1900                 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1901                         return -EINVAL;
1902                 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1903                         return -EADDRNOTAVAIL;
1904         }
1905         return 0;
1906 }
1907
1908 static unsigned int team_get_num_tx_queues(void)
1909 {
1910         return TEAM_DEFAULT_NUM_TX_QUEUES;
1911 }
1912
1913 static unsigned int team_get_num_rx_queues(void)
1914 {
1915         return TEAM_DEFAULT_NUM_RX_QUEUES;
1916 }
1917
1918 static struct rtnl_link_ops team_link_ops __read_mostly = {
1919         .kind                   = DRV_NAME,
1920         .priv_size              = sizeof(struct team),
1921         .setup                  = team_setup,
1922         .newlink                = team_newlink,
1923         .validate               = team_validate,
1924         .get_num_tx_queues      = team_get_num_tx_queues,
1925         .get_num_rx_queues      = team_get_num_rx_queues,
1926 };
1927
1928
1929 /***********************************
1930  * Generic netlink custom interface
1931  ***********************************/
1932
1933 static struct genl_family team_nl_family = {
1934         .id             = GENL_ID_GENERATE,
1935         .name           = TEAM_GENL_NAME,
1936         .version        = TEAM_GENL_VERSION,
1937         .maxattr        = TEAM_ATTR_MAX,
1938         .netnsok        = true,
1939 };
1940
1941 static const struct nla_policy team_nl_policy[TEAM_ATTR_MAX + 1] = {
1942         [TEAM_ATTR_UNSPEC]                      = { .type = NLA_UNSPEC, },
1943         [TEAM_ATTR_TEAM_IFINDEX]                = { .type = NLA_U32 },
1944         [TEAM_ATTR_LIST_OPTION]                 = { .type = NLA_NESTED },
1945         [TEAM_ATTR_LIST_PORT]                   = { .type = NLA_NESTED },
1946 };
1947
1948 static const struct nla_policy
1949 team_nl_option_policy[TEAM_ATTR_OPTION_MAX + 1] = {
1950         [TEAM_ATTR_OPTION_UNSPEC]               = { .type = NLA_UNSPEC, },
1951         [TEAM_ATTR_OPTION_NAME] = {
1952                 .type = NLA_STRING,
1953                 .len = TEAM_STRING_MAX_LEN,
1954         },
1955         [TEAM_ATTR_OPTION_CHANGED]              = { .type = NLA_FLAG },
1956         [TEAM_ATTR_OPTION_TYPE]                 = { .type = NLA_U8 },
1957         [TEAM_ATTR_OPTION_DATA]                 = { .type = NLA_BINARY },
1958 };
1959
1960 static int team_nl_cmd_noop(struct sk_buff *skb, struct genl_info *info)
1961 {
1962         struct sk_buff *msg;
1963         void *hdr;
1964         int err;
1965
1966         msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1967         if (!msg)
1968                 return -ENOMEM;
1969
1970         hdr = genlmsg_put(msg, info->snd_portid, info->snd_seq,
1971                           &team_nl_family, 0, TEAM_CMD_NOOP);
1972         if (!hdr) {
1973                 err = -EMSGSIZE;
1974                 goto err_msg_put;
1975         }
1976
1977         genlmsg_end(msg, hdr);
1978
1979         return genlmsg_unicast(genl_info_net(info), msg, info->snd_portid);
1980
1981 err_msg_put:
1982         nlmsg_free(msg);
1983
1984         return err;
1985 }
1986
1987 /*
1988  * Netlink cmd functions should be locked by following two functions.
1989  * Since dev gets held here, that ensures dev won't disappear in between.
1990  */
1991 static struct team *team_nl_team_get(struct genl_info *info)
1992 {
1993         struct net *net = genl_info_net(info);
1994         int ifindex;
1995         struct net_device *dev;
1996         struct team *team;
1997
1998         if (!info->attrs[TEAM_ATTR_TEAM_IFINDEX])
1999                 return NULL;
2000
2001         ifindex = nla_get_u32(info->attrs[TEAM_ATTR_TEAM_IFINDEX]);
2002         dev = dev_get_by_index(net, ifindex);
2003         if (!dev || dev->netdev_ops != &team_netdev_ops) {
2004                 if (dev)
2005                         dev_put(dev);
2006                 return NULL;
2007         }
2008
2009         team = netdev_priv(dev);
2010         mutex_lock(&team->lock);
2011         return team;
2012 }
2013
2014 static void team_nl_team_put(struct team *team)
2015 {
2016         mutex_unlock(&team->lock);
2017         dev_put(team->dev);
2018 }
2019
2020 typedef int team_nl_send_func_t(struct sk_buff *skb,
2021                                 struct team *team, u32 portid);
2022
2023 static int team_nl_send_unicast(struct sk_buff *skb, struct team *team, u32 portid)
2024 {
2025         return genlmsg_unicast(dev_net(team->dev), skb, portid);
2026 }
2027
2028 static int team_nl_fill_one_option_get(struct sk_buff *skb, struct team *team,
2029                                        struct team_option_inst *opt_inst)
2030 {
2031         struct nlattr *option_item;
2032         struct team_option *option = opt_inst->option;
2033         struct team_option_inst_info *opt_inst_info = &opt_inst->info;
2034         struct team_gsetter_ctx ctx;
2035         int err;
2036
2037         ctx.info = opt_inst_info;
2038         err = team_option_get(team, opt_inst, &ctx);
2039         if (err)
2040                 return err;
2041
2042         option_item = nla_nest_start(skb, TEAM_ATTR_ITEM_OPTION);
2043         if (!option_item)
2044                 return -EMSGSIZE;
2045
2046         if (nla_put_string(skb, TEAM_ATTR_OPTION_NAME, option->name))
2047                 goto nest_cancel;
2048         if (opt_inst_info->port &&
2049             nla_put_u32(skb, TEAM_ATTR_OPTION_PORT_IFINDEX,
2050                         opt_inst_info->port->dev->ifindex))
2051                 goto nest_cancel;
2052         if (opt_inst->option->array_size &&
2053             nla_put_u32(skb, TEAM_ATTR_OPTION_ARRAY_INDEX,
2054                         opt_inst_info->array_index))
2055                 goto nest_cancel;
2056
2057         switch (option->type) {
2058         case TEAM_OPTION_TYPE_U32:
2059                 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_U32))
2060                         goto nest_cancel;
2061                 if (nla_put_u32(skb, TEAM_ATTR_OPTION_DATA, ctx.data.u32_val))
2062                         goto nest_cancel;
2063                 break;
2064         case TEAM_OPTION_TYPE_STRING:
2065                 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_STRING))
2066                         goto nest_cancel;
2067                 if (nla_put_string(skb, TEAM_ATTR_OPTION_DATA,
2068                                    ctx.data.str_val))
2069                         goto nest_cancel;
2070                 break;
2071         case TEAM_OPTION_TYPE_BINARY:
2072                 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_BINARY))
2073                         goto nest_cancel;
2074                 if (nla_put(skb, TEAM_ATTR_OPTION_DATA, ctx.data.bin_val.len,
2075                             ctx.data.bin_val.ptr))
2076                         goto nest_cancel;
2077                 break;
2078         case TEAM_OPTION_TYPE_BOOL:
2079                 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_FLAG))
2080                         goto nest_cancel;
2081                 if (ctx.data.bool_val &&
2082                     nla_put_flag(skb, TEAM_ATTR_OPTION_DATA))
2083                         goto nest_cancel;
2084                 break;
2085         case TEAM_OPTION_TYPE_S32:
2086                 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_S32))
2087                         goto nest_cancel;
2088                 if (nla_put_s32(skb, TEAM_ATTR_OPTION_DATA, ctx.data.s32_val))
2089                         goto nest_cancel;
2090                 break;
2091         default:
2092                 BUG();
2093         }
2094         if (opt_inst->removed && nla_put_flag(skb, TEAM_ATTR_OPTION_REMOVED))
2095                 goto nest_cancel;
2096         if (opt_inst->changed) {
2097                 if (nla_put_flag(skb, TEAM_ATTR_OPTION_CHANGED))
2098                         goto nest_cancel;
2099                 opt_inst->changed = false;
2100         }
2101         nla_nest_end(skb, option_item);
2102         return 0;
2103
2104 nest_cancel:
2105         nla_nest_cancel(skb, option_item);
2106         return -EMSGSIZE;
2107 }
2108
2109 static int __send_and_alloc_skb(struct sk_buff **pskb,
2110                                 struct team *team, u32 portid,
2111                                 team_nl_send_func_t *send_func)
2112 {
2113         int err;
2114
2115         if (*pskb) {
2116                 err = send_func(*pskb, team, portid);
2117                 if (err)
2118                         return err;
2119         }
2120         *pskb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL);
2121         if (!*pskb)
2122                 return -ENOMEM;
2123         return 0;
2124 }
2125
2126 static int team_nl_send_options_get(struct team *team, u32 portid, u32 seq,
2127                                     int flags, team_nl_send_func_t *send_func,
2128                                     struct list_head *sel_opt_inst_list)
2129 {
2130         struct nlattr *option_list;
2131         struct nlmsghdr *nlh;
2132         void *hdr;
2133         struct team_option_inst *opt_inst;
2134         int err;
2135         struct sk_buff *skb = NULL;
2136         bool incomplete;
2137         int i;
2138
2139         opt_inst = list_first_entry(sel_opt_inst_list,
2140                                     struct team_option_inst, tmp_list);
2141
2142 start_again:
2143         err = __send_and_alloc_skb(&skb, team, portid, send_func);
2144         if (err)
2145                 return err;
2146
2147         hdr = genlmsg_put(skb, portid, seq, &team_nl_family, flags | NLM_F_MULTI,
2148                           TEAM_CMD_OPTIONS_GET);
2149         if (!hdr)
2150                 return -EMSGSIZE;
2151
2152         if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex))
2153                 goto nla_put_failure;
2154         option_list = nla_nest_start(skb, TEAM_ATTR_LIST_OPTION);
2155         if (!option_list)
2156                 goto nla_put_failure;
2157
2158         i = 0;
2159         incomplete = false;
2160         list_for_each_entry_from(opt_inst, sel_opt_inst_list, tmp_list) {
2161                 err = team_nl_fill_one_option_get(skb, team, opt_inst);
2162                 if (err) {
2163                         if (err == -EMSGSIZE) {
2164                                 if (!i)
2165                                         goto errout;
2166                                 incomplete = true;
2167                                 break;
2168                         }
2169                         goto errout;
2170                 }
2171                 i++;
2172         }
2173
2174         nla_nest_end(skb, option_list);
2175         genlmsg_end(skb, hdr);
2176         if (incomplete)
2177                 goto start_again;
2178
2179 send_done:
2180         nlh = nlmsg_put(skb, portid, seq, NLMSG_DONE, 0, flags | NLM_F_MULTI);
2181         if (!nlh) {
2182                 err = __send_and_alloc_skb(&skb, team, portid, send_func);
2183                 if (err)
2184                         goto errout;
2185                 goto send_done;
2186         }
2187
2188         return send_func(skb, team, portid);
2189
2190 nla_put_failure:
2191         err = -EMSGSIZE;
2192 errout:
2193         genlmsg_cancel(skb, hdr);
2194         nlmsg_free(skb);
2195         return err;
2196 }
2197
2198 static int team_nl_cmd_options_get(struct sk_buff *skb, struct genl_info *info)
2199 {
2200         struct team *team;
2201         struct team_option_inst *opt_inst;
2202         int err;
2203         LIST_HEAD(sel_opt_inst_list);
2204
2205         team = team_nl_team_get(info);
2206         if (!team)
2207                 return -EINVAL;
2208
2209         list_for_each_entry(opt_inst, &team->option_inst_list, list)
2210                 list_add_tail(&opt_inst->tmp_list, &sel_opt_inst_list);
2211         err = team_nl_send_options_get(team, info->snd_portid, info->snd_seq,
2212                                        NLM_F_ACK, team_nl_send_unicast,
2213                                        &sel_opt_inst_list);
2214
2215         team_nl_team_put(team);
2216
2217         return err;
2218 }
2219
2220 static int team_nl_send_event_options_get(struct team *team,
2221                                           struct list_head *sel_opt_inst_list);
2222
2223 static int team_nl_cmd_options_set(struct sk_buff *skb, struct genl_info *info)
2224 {
2225         struct team *team;
2226         int err = 0;
2227         int i;
2228         struct nlattr *nl_option;
2229         LIST_HEAD(opt_inst_list);
2230
2231         team = team_nl_team_get(info);
2232         if (!team)
2233                 return -EINVAL;
2234
2235         err = -EINVAL;
2236         if (!info->attrs[TEAM_ATTR_LIST_OPTION]) {
2237                 err = -EINVAL;
2238                 goto team_put;
2239         }
2240
2241         nla_for_each_nested(nl_option, info->attrs[TEAM_ATTR_LIST_OPTION], i) {
2242                 struct nlattr *opt_attrs[TEAM_ATTR_OPTION_MAX + 1];
2243                 struct nlattr *attr;
2244                 struct nlattr *attr_data;
2245                 enum team_option_type opt_type;
2246                 int opt_port_ifindex = 0; /* != 0 for per-port options */
2247                 u32 opt_array_index = 0;
2248                 bool opt_is_array = false;
2249                 struct team_option_inst *opt_inst;
2250                 char *opt_name;
2251                 bool opt_found = false;
2252
2253                 if (nla_type(nl_option) != TEAM_ATTR_ITEM_OPTION) {
2254                         err = -EINVAL;
2255                         goto team_put;
2256                 }
2257                 err = nla_parse_nested(opt_attrs, TEAM_ATTR_OPTION_MAX,
2258                                        nl_option, team_nl_option_policy);
2259                 if (err)
2260                         goto team_put;
2261                 if (!opt_attrs[TEAM_ATTR_OPTION_NAME] ||
2262                     !opt_attrs[TEAM_ATTR_OPTION_TYPE]) {
2263                         err = -EINVAL;
2264                         goto team_put;
2265                 }
2266                 switch (nla_get_u8(opt_attrs[TEAM_ATTR_OPTION_TYPE])) {
2267                 case NLA_U32:
2268                         opt_type = TEAM_OPTION_TYPE_U32;
2269                         break;
2270                 case NLA_STRING:
2271                         opt_type = TEAM_OPTION_TYPE_STRING;
2272                         break;
2273                 case NLA_BINARY:
2274                         opt_type = TEAM_OPTION_TYPE_BINARY;
2275                         break;
2276                 case NLA_FLAG:
2277                         opt_type = TEAM_OPTION_TYPE_BOOL;
2278                         break;
2279                 case NLA_S32:
2280                         opt_type = TEAM_OPTION_TYPE_S32;
2281                         break;
2282                 default:
2283                         goto team_put;
2284                 }
2285
2286                 attr_data = opt_attrs[TEAM_ATTR_OPTION_DATA];
2287                 if (opt_type != TEAM_OPTION_TYPE_BOOL && !attr_data) {
2288                         err = -EINVAL;
2289                         goto team_put;
2290                 }
2291
2292                 opt_name = nla_data(opt_attrs[TEAM_ATTR_OPTION_NAME]);
2293                 attr = opt_attrs[TEAM_ATTR_OPTION_PORT_IFINDEX];
2294                 if (attr)
2295                         opt_port_ifindex = nla_get_u32(attr);
2296
2297                 attr = opt_attrs[TEAM_ATTR_OPTION_ARRAY_INDEX];
2298                 if (attr) {
2299                         opt_is_array = true;
2300                         opt_array_index = nla_get_u32(attr);
2301                 }
2302
2303                 list_for_each_entry(opt_inst, &team->option_inst_list, list) {
2304                         struct team_option *option = opt_inst->option;
2305                         struct team_gsetter_ctx ctx;
2306                         struct team_option_inst_info *opt_inst_info;
2307                         int tmp_ifindex;
2308
2309                         opt_inst_info = &opt_inst->info;
2310                         tmp_ifindex = opt_inst_info->port ?
2311                                       opt_inst_info->port->dev->ifindex : 0;
2312                         if (option->type != opt_type ||
2313                             strcmp(option->name, opt_name) ||
2314                             tmp_ifindex != opt_port_ifindex ||
2315                             (option->array_size && !opt_is_array) ||
2316                             opt_inst_info->array_index != opt_array_index)
2317                                 continue;
2318                         opt_found = true;
2319                         ctx.info = opt_inst_info;
2320                         switch (opt_type) {
2321                         case TEAM_OPTION_TYPE_U32:
2322                                 ctx.data.u32_val = nla_get_u32(attr_data);
2323                                 break;
2324                         case TEAM_OPTION_TYPE_STRING:
2325                                 if (nla_len(attr_data) > TEAM_STRING_MAX_LEN) {
2326                                         err = -EINVAL;
2327                                         goto team_put;
2328                                 }
2329                                 ctx.data.str_val = nla_data(attr_data);
2330                                 break;
2331                         case TEAM_OPTION_TYPE_BINARY:
2332                                 ctx.data.bin_val.len = nla_len(attr_data);
2333                                 ctx.data.bin_val.ptr = nla_data(attr_data);
2334                                 break;
2335                         case TEAM_OPTION_TYPE_BOOL:
2336                                 ctx.data.bool_val = attr_data ? true : false;
2337                                 break;
2338                         case TEAM_OPTION_TYPE_S32:
2339                                 ctx.data.s32_val = nla_get_s32(attr_data);
2340                                 break;
2341                         default:
2342                                 BUG();
2343                         }
2344                         err = team_option_set(team, opt_inst, &ctx);
2345                         if (err)
2346                                 goto team_put;
2347                         opt_inst->changed = true;
2348                         list_add(&opt_inst->tmp_list, &opt_inst_list);
2349                 }
2350                 if (!opt_found) {
2351                         err = -ENOENT;
2352                         goto team_put;
2353                 }
2354         }
2355
2356         err = team_nl_send_event_options_get(team, &opt_inst_list);
2357
2358 team_put:
2359         team_nl_team_put(team);
2360
2361         return err;
2362 }
2363
2364 static int team_nl_fill_one_port_get(struct sk_buff *skb,
2365                                      struct team_port *port)
2366 {
2367         struct nlattr *port_item;
2368
2369         port_item = nla_nest_start(skb, TEAM_ATTR_ITEM_PORT);
2370         if (!port_item)
2371                 goto nest_cancel;
2372         if (nla_put_u32(skb, TEAM_ATTR_PORT_IFINDEX, port->dev->ifindex))
2373                 goto nest_cancel;
2374         if (port->changed) {
2375                 if (nla_put_flag(skb, TEAM_ATTR_PORT_CHANGED))
2376                         goto nest_cancel;
2377                 port->changed = false;
2378         }
2379         if ((port->removed &&
2380              nla_put_flag(skb, TEAM_ATTR_PORT_REMOVED)) ||
2381             (port->state.linkup &&
2382              nla_put_flag(skb, TEAM_ATTR_PORT_LINKUP)) ||
2383             nla_put_u32(skb, TEAM_ATTR_PORT_SPEED, port->state.speed) ||
2384             nla_put_u8(skb, TEAM_ATTR_PORT_DUPLEX, port->state.duplex))
2385                 goto nest_cancel;
2386         nla_nest_end(skb, port_item);
2387         return 0;
2388
2389 nest_cancel:
2390         nla_nest_cancel(skb, port_item);
2391         return -EMSGSIZE;
2392 }
2393
2394 static int team_nl_send_port_list_get(struct team *team, u32 portid, u32 seq,
2395                                       int flags, team_nl_send_func_t *send_func,
2396                                       struct team_port *one_port)
2397 {
2398         struct nlattr *port_list;
2399         struct nlmsghdr *nlh;
2400         void *hdr;
2401         struct team_port *port;
2402         int err;
2403         struct sk_buff *skb = NULL;
2404         bool incomplete;
2405         int i;
2406
2407         port = list_first_entry_or_null(&team->port_list,
2408                                         struct team_port, list);
2409
2410 start_again:
2411         err = __send_and_alloc_skb(&skb, team, portid, send_func);
2412         if (err)
2413                 return err;
2414
2415         hdr = genlmsg_put(skb, portid, seq, &team_nl_family, flags | NLM_F_MULTI,
2416                           TEAM_CMD_PORT_LIST_GET);
2417         if (!hdr)
2418                 return -EMSGSIZE;
2419
2420         if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex))
2421                 goto nla_put_failure;
2422         port_list = nla_nest_start(skb, TEAM_ATTR_LIST_PORT);
2423         if (!port_list)
2424                 goto nla_put_failure;
2425
2426         i = 0;
2427         incomplete = false;
2428
2429         /* If one port is selected, called wants to send port list containing
2430          * only this port. Otherwise go through all listed ports and send all
2431          */
2432         if (one_port) {
2433                 err = team_nl_fill_one_port_get(skb, one_port);
2434                 if (err)
2435                         goto errout;
2436         } else if (port) {
2437                 list_for_each_entry_from(port, &team->port_list, list) {
2438                         err = team_nl_fill_one_port_get(skb, port);
2439                         if (err) {
2440                                 if (err == -EMSGSIZE) {
2441                                         if (!i)
2442                                                 goto errout;
2443                                         incomplete = true;
2444                                         break;
2445                                 }
2446                                 goto errout;
2447                         }
2448                         i++;
2449                 }
2450         }
2451
2452         nla_nest_end(skb, port_list);
2453         genlmsg_end(skb, hdr);
2454         if (incomplete)
2455                 goto start_again;
2456
2457 send_done:
2458         nlh = nlmsg_put(skb, portid, seq, NLMSG_DONE, 0, flags | NLM_F_MULTI);
2459         if (!nlh) {
2460                 err = __send_and_alloc_skb(&skb, team, portid, send_func);
2461                 if (err)
2462                         goto errout;
2463                 goto send_done;
2464         }
2465
2466         return send_func(skb, team, portid);
2467
2468 nla_put_failure:
2469         err = -EMSGSIZE;
2470 errout:
2471         genlmsg_cancel(skb, hdr);
2472         nlmsg_free(skb);
2473         return err;
2474 }
2475
2476 static int team_nl_cmd_port_list_get(struct sk_buff *skb,
2477                                      struct genl_info *info)
2478 {
2479         struct team *team;
2480         int err;
2481
2482         team = team_nl_team_get(info);
2483         if (!team)
2484                 return -EINVAL;
2485
2486         err = team_nl_send_port_list_get(team, info->snd_portid, info->snd_seq,
2487                                          NLM_F_ACK, team_nl_send_unicast, NULL);
2488
2489         team_nl_team_put(team);
2490
2491         return err;
2492 }
2493
2494 static struct genl_ops team_nl_ops[] = {
2495         {
2496                 .cmd = TEAM_CMD_NOOP,
2497                 .doit = team_nl_cmd_noop,
2498                 .policy = team_nl_policy,
2499         },
2500         {
2501                 .cmd = TEAM_CMD_OPTIONS_SET,
2502                 .doit = team_nl_cmd_options_set,
2503                 .policy = team_nl_policy,
2504                 .flags = GENL_ADMIN_PERM,
2505         },
2506         {
2507                 .cmd = TEAM_CMD_OPTIONS_GET,
2508                 .doit = team_nl_cmd_options_get,
2509                 .policy = team_nl_policy,
2510                 .flags = GENL_ADMIN_PERM,
2511         },
2512         {
2513                 .cmd = TEAM_CMD_PORT_LIST_GET,
2514                 .doit = team_nl_cmd_port_list_get,
2515                 .policy = team_nl_policy,
2516                 .flags = GENL_ADMIN_PERM,
2517         },
2518 };
2519
2520 static struct genl_multicast_group team_change_event_mcgrp = {
2521         .name = TEAM_GENL_CHANGE_EVENT_MC_GRP_NAME,
2522 };
2523
2524 static int team_nl_send_multicast(struct sk_buff *skb,
2525                                   struct team *team, u32 portid)
2526 {
2527         return genlmsg_multicast_netns(dev_net(team->dev), skb, 0,
2528                                        team_change_event_mcgrp.id, GFP_KERNEL);
2529 }
2530
2531 static int team_nl_send_event_options_get(struct team *team,
2532                                           struct list_head *sel_opt_inst_list)
2533 {
2534         return team_nl_send_options_get(team, 0, 0, 0, team_nl_send_multicast,
2535                                         sel_opt_inst_list);
2536 }
2537
2538 static int team_nl_send_event_port_get(struct team *team,
2539                                        struct team_port *port)
2540 {
2541         return team_nl_send_port_list_get(team, 0, 0, 0, team_nl_send_multicast,
2542                                           port);
2543 }
2544
2545 static int team_nl_init(void)
2546 {
2547         int err;
2548
2549         err = genl_register_family_with_ops(&team_nl_family, team_nl_ops,
2550                                             ARRAY_SIZE(team_nl_ops));
2551         if (err)
2552                 return err;
2553
2554         err = genl_register_mc_group(&team_nl_family, &team_change_event_mcgrp);
2555         if (err)
2556                 goto err_change_event_grp_reg;
2557
2558         return 0;
2559
2560 err_change_event_grp_reg:
2561         genl_unregister_family(&team_nl_family);
2562
2563         return err;
2564 }
2565
2566 static void team_nl_fini(void)
2567 {
2568         genl_unregister_family(&team_nl_family);
2569 }
2570
2571
2572 /******************
2573  * Change checkers
2574  ******************/
2575
2576 static void __team_options_change_check(struct team *team)
2577 {
2578         int err;
2579         struct team_option_inst *opt_inst;
2580         LIST_HEAD(sel_opt_inst_list);
2581
2582         list_for_each_entry(opt_inst, &team->option_inst_list, list) {
2583                 if (opt_inst->changed)
2584                         list_add_tail(&opt_inst->tmp_list, &sel_opt_inst_list);
2585         }
2586         err = team_nl_send_event_options_get(team, &sel_opt_inst_list);
2587         if (err && err != -ESRCH)
2588                 netdev_warn(team->dev, "Failed to send options change via netlink (err %d)\n",
2589                             err);
2590 }
2591
2592 /* rtnl lock is held */
2593
2594 static void __team_port_change_send(struct team_port *port, bool linkup)
2595 {
2596         int err;
2597
2598         port->changed = true;
2599         port->state.linkup = linkup;
2600         team_refresh_port_linkup(port);
2601         if (linkup) {
2602                 struct ethtool_cmd ecmd;
2603
2604                 err = __ethtool_get_settings(port->dev, &ecmd);
2605                 if (!err) {
2606                         port->state.speed = ethtool_cmd_speed(&ecmd);
2607                         port->state.duplex = ecmd.duplex;
2608                         goto send_event;
2609                 }
2610         }
2611         port->state.speed = 0;
2612         port->state.duplex = 0;
2613
2614 send_event:
2615         err = team_nl_send_event_port_get(port->team, port);
2616         if (err && err != -ESRCH)
2617                 netdev_warn(port->team->dev, "Failed to send port change of device %s via netlink (err %d)\n",
2618                             port->dev->name, err);
2619
2620 }
2621
2622 static void __team_carrier_check(struct team *team)
2623 {
2624         struct team_port *port;
2625         bool team_linkup;
2626
2627         if (team->user_carrier_enabled)
2628                 return;
2629
2630         team_linkup = false;
2631         list_for_each_entry(port, &team->port_list, list) {
2632                 if (port->linkup) {
2633                         team_linkup = true;
2634                         break;
2635                 }
2636         }
2637
2638         if (team_linkup)
2639                 netif_carrier_on(team->dev);
2640         else
2641                 netif_carrier_off(team->dev);
2642 }
2643
2644 static void __team_port_change_check(struct team_port *port, bool linkup)
2645 {
2646         if (port->state.linkup != linkup)
2647                 __team_port_change_send(port, linkup);
2648         __team_carrier_check(port->team);
2649 }
2650
2651 static void __team_port_change_port_added(struct team_port *port, bool linkup)
2652 {
2653         __team_port_change_send(port, linkup);
2654         __team_carrier_check(port->team);
2655 }
2656
2657 static void __team_port_change_port_removed(struct team_port *port)
2658 {
2659         port->removed = true;
2660         __team_port_change_send(port, false);
2661         __team_carrier_check(port->team);
2662 }
2663
2664 static void team_port_change_check(struct team_port *port, bool linkup)
2665 {
2666         struct team *team = port->team;
2667
2668         mutex_lock(&team->lock);
2669         __team_port_change_check(port, linkup);
2670         mutex_unlock(&team->lock);
2671 }
2672
2673
2674 /************************************
2675  * Net device notifier event handler
2676  ************************************/
2677
2678 static int team_device_event(struct notifier_block *unused,
2679                              unsigned long event, void *ptr)
2680 {
2681         struct net_device *dev = netdev_notifier_info_to_dev(ptr);
2682         struct team_port *port;
2683
2684         port = team_port_get_rtnl(dev);
2685         if (!port)
2686                 return NOTIFY_DONE;
2687
2688         switch (event) {
2689         case NETDEV_UP:
2690                 if (netif_carrier_ok(dev))
2691                         team_port_change_check(port, true);
2692         case NETDEV_DOWN:
2693                 team_port_change_check(port, false);
2694         case NETDEV_CHANGE:
2695                 if (netif_running(port->dev))
2696                         team_port_change_check(port,
2697                                                !!netif_carrier_ok(port->dev));
2698                 break;
2699         case NETDEV_UNREGISTER:
2700                 team_del_slave(port->team->dev, dev);
2701                 break;
2702         case NETDEV_FEAT_CHANGE:
2703                 team_compute_features(port->team);
2704                 break;
2705         case NETDEV_CHANGEMTU:
2706                 /* Forbid to change mtu of underlaying device */
2707                 return NOTIFY_BAD;
2708         case NETDEV_PRE_TYPE_CHANGE:
2709                 /* Forbid to change type of underlaying device */
2710                 return NOTIFY_BAD;
2711         }
2712         return NOTIFY_DONE;
2713 }
2714
2715 static struct notifier_block team_notifier_block __read_mostly = {
2716         .notifier_call = team_device_event,
2717 };
2718
2719
2720 /***********************
2721  * Module init and exit
2722  ***********************/
2723
2724 static int __init team_module_init(void)
2725 {
2726         int err;
2727
2728         register_netdevice_notifier(&team_notifier_block);
2729
2730         err = rtnl_link_register(&team_link_ops);
2731         if (err)
2732                 goto err_rtnl_reg;
2733
2734         err = team_nl_init();
2735         if (err)
2736                 goto err_nl_init;
2737
2738         return 0;
2739
2740 err_nl_init:
2741         rtnl_link_unregister(&team_link_ops);
2742
2743 err_rtnl_reg:
2744         unregister_netdevice_notifier(&team_notifier_block);
2745
2746         return err;
2747 }
2748
2749 static void __exit team_module_exit(void)
2750 {
2751         team_nl_fini();
2752         rtnl_link_unregister(&team_link_ops);
2753         unregister_netdevice_notifier(&team_notifier_block);
2754 }
2755
2756 module_init(team_module_init);
2757 module_exit(team_module_exit);
2758
2759 MODULE_LICENSE("GPL v2");
2760 MODULE_AUTHOR("Jiri Pirko <jpirko@redhat.com>");
2761 MODULE_DESCRIPTION("Ethernet team device driver");
2762 MODULE_ALIAS_RTNL_LINK(DRV_NAME);