team: use kfree_rcu instead of synchronize_rcu in team_port_dev
[linux-2.6-block.git] / drivers / net / team / team.c
CommitLineData
3d249d4c 1/*
0d572e45 2 * drivers/net/team/team.c - Network team device driver
3d249d4c
JP
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>
bd2d0837 21#include <linux/netpoll.h>
87002b03 22#include <linux/if_vlan.h>
3d249d4c
JP
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>
6c85f2bd 30#include <net/sch_generic.h>
7f51c587 31#include <generated/utsrelease.h>
3d249d4c
JP
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
43static 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
50static 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/*
1d76efe1 58 * Since the ability to change device address for open port device is tested in
3d249d4c
JP
59 * team_port_add, this function can be called without control of return value
60 */
1d76efe1
JP
61static int __set_port_dev_addr(struct net_device *port_dev,
62 const unsigned char *dev_addr)
3d249d4c
JP
63{
64 struct sockaddr addr;
65
1d76efe1
JP
66 memcpy(addr.sa_data, dev_addr, port_dev->addr_len);
67 addr.sa_family = port_dev->type;
3d249d4c
JP
68 return dev_set_mac_address(port_dev, &addr);
69}
70
1d76efe1 71static int team_port_set_orig_dev_addr(struct team_port *port)
3d249d4c 72{
1d76efe1 73 return __set_port_dev_addr(port->dev, port->orig.dev_addr);
3d249d4c
JP
74}
75
acbba0d0
JP
76static int team_port_set_team_dev_addr(struct team *team,
77 struct team_port *port)
3d249d4c 78{
acbba0d0 79 return __set_port_dev_addr(port->dev, team->dev->dev_addr);
3d249d4c 80}
acbba0d0
JP
81
82int team_modeop_port_enter(struct team *team, struct team_port *port)
83{
84 return team_port_set_team_dev_addr(team, port);
85}
86EXPORT_SYMBOL(team_modeop_port_enter);
87
88void 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}
93EXPORT_SYMBOL(team_modeop_port_change_dev_addr);
3d249d4c 94
71472ec1
JP
95static 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}
3d249d4c 100
0f1aad2b 101
3d249d4c
JP
102/*******************
103 * Options handling
104 *******************/
105
80f7c668
JP
106struct team_option_inst { /* One for each option instance */
107 struct list_head list;
01048d9a 108 struct list_head tmp_list;
80f7c668 109 struct team_option *option;
85d59a87 110 struct team_option_inst_info info;
80f7c668
JP
111 bool changed;
112 bool removed;
113};
114
115static struct team_option *__team_find_option(struct team *team,
116 const char *opt_name)
358b8382
JP
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
80f7c668
JP
127static void __team_option_inst_del(struct team_option_inst *opt_inst)
128{
129 list_del(&opt_inst->list);
130 kfree(opt_inst);
131}
132
133static 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
b1303326
JP
144static 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;
85d59a87 150 int err;
b1303326
JP
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;
85d59a87
JP
161 opt_inst->info.port = port;
162 opt_inst->info.array_index = i;
b1303326
JP
163 opt_inst->changed = true;
164 opt_inst->removed = false;
165 list_add_tail(&opt_inst->list, &team->option_inst_list);
85d59a87
JP
166 if (option->init) {
167 err = option->init(team, &opt_inst->info);
168 if (err)
169 return err;
170 }
171
b1303326
JP
172 }
173 return 0;
174}
175
80f7c668
JP
176static int __team_option_inst_add_option(struct team *team,
177 struct team_option *option)
178{
179 struct team_port *port;
180 int err;
181
b1303326 182 if (!option->per_port) {
f88725ff 183 err = __team_option_inst_add(team, option, NULL);
b1303326
JP
184 if (err)
185 goto inst_del_option;
186 }
80f7c668
JP
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
195inst_del_option:
196 __team_option_inst_del_option(team, option);
197 return err;
198}
199
200static 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
213static 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 &&
85d59a87 220 opt_inst->info.port == port)
80f7c668
JP
221 __team_option_inst_del(opt_inst);
222 }
223}
224
225static 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
240inst_del_port:
241 __team_option_inst_del_port(team, port);
242 return err;
243}
244
245static 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) {
85d59a87 251 if (opt_inst->info.port == port) {
80f7c668
JP
252 opt_inst->changed = true;
253 opt_inst->removed = true;
254 }
255 }
256}
257
258static int __team_options_register(struct team *team,
259 const struct team_option *option,
260 size_t option_count)
3d249d4c
JP
261{
262 int i;
2bba19ff 263 struct team_option **dst_opts;
358b8382 264 int err;
3d249d4c 265
2bba19ff
JP
266 dst_opts = kzalloc(sizeof(struct team_option *) * option_count,
267 GFP_KERNEL);
268 if (!dst_opts)
269 return -ENOMEM;
358b8382 270 for (i = 0; i < option_count; i++, option++) {
358b8382
JP
271 if (__team_find_option(team, option->name)) {
272 err = -EEXIST;
80f7c668 273 goto alloc_rollback;
358b8382 274 }
f8a15af0
JP
275 dst_opts[i] = kmemdup(option, sizeof(*option), GFP_KERNEL);
276 if (!dst_opts[i]) {
358b8382 277 err = -ENOMEM;
80f7c668 278 goto alloc_rollback;
358b8382 279 }
358b8382
JP
280 }
281
b82b9183 282 for (i = 0; i < option_count; i++) {
80f7c668
JP
283 err = __team_option_inst_add_option(team, dst_opts[i]);
284 if (err)
285 goto inst_rollback;
358b8382 286 list_add_tail(&dst_opts[i]->list, &team->option_list);
b82b9183 287 }
358b8382 288
2bba19ff 289 kfree(dst_opts);
358b8382
JP
290 return 0;
291
80f7c668
JP
292inst_rollback:
293 for (i--; i >= 0; i--)
294 __team_option_inst_del_option(team, dst_opts[i]);
295
296 i = option_count - 1;
297alloc_rollback:
298 for (i--; i >= 0; i--)
358b8382
JP
299 kfree(dst_opts[i]);
300
2bba19ff 301 kfree(dst_opts);
358b8382 302 return err;
3d249d4c 303}
358b8382 304
b82b9183
JP
305static 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;
3d249d4c 313
b82b9183 314 del_opt = __team_find_option(team, option->name);
80f7c668
JP
315 if (del_opt)
316 __team_option_inst_mark_removed_option(team, del_opt);
b82b9183
JP
317 }
318}
3d249d4c
JP
319
320static void __team_options_unregister(struct team *team,
358b8382 321 const struct team_option *option,
3d249d4c
JP
322 size_t option_count)
323{
324 int i;
325
358b8382
JP
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) {
80f7c668 331 __team_option_inst_del_option(team, del_opt);
358b8382
JP
332 list_del(&del_opt->list);
333 kfree(del_opt);
334 }
335 }
3d249d4c
JP
336}
337
b82b9183
JP
338static void __team_options_change_check(struct team *team);
339
340int 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}
352EXPORT_SYMBOL(team_options_register);
353
358b8382
JP
354void team_options_unregister(struct team *team,
355 const struct team_option *option,
3d249d4c
JP
356 size_t option_count)
357{
b82b9183
JP
358 __team_options_mark_removed(team, option, option_count);
359 __team_options_change_check(team);
3d249d4c 360 __team_options_unregister(team, option, option_count);
3d249d4c
JP
361}
362EXPORT_SYMBOL(team_options_unregister);
363
80f7c668
JP
364static int team_option_get(struct team *team,
365 struct team_option_inst *opt_inst,
366 struct team_gsetter_ctx *ctx)
367{
f82b959d
JP
368 if (!opt_inst->option->getter)
369 return -EOPNOTSUPP;
80f7c668
JP
370 return opt_inst->option->getter(team, ctx);
371}
372
373static int team_option_set(struct team *team,
374 struct team_option_inst *opt_inst,
375 struct team_gsetter_ctx *ctx)
3d249d4c 376{
f82b959d
JP
377 if (!opt_inst->option->setter)
378 return -EOPNOTSUPP;
2fcdb2c9 379 return opt_inst->option->setter(team, ctx);
3d249d4c
JP
380}
381
0f1aad2b
JP
382void 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}
389EXPORT_SYMBOL(team_option_inst_set_change);
390
391void team_options_change_check(struct team *team)
392{
393 __team_options_change_check(team);
394}
395EXPORT_SYMBOL(team_options_change_check);
396
397
3d249d4c
JP
398/****************
399 * Mode handling
400 ****************/
401
402static LIST_HEAD(mode_list);
403static DEFINE_SPINLOCK(mode_list_lock);
404
0402788a
JP
405struct team_mode_item {
406 struct list_head list;
407 const struct team_mode *mode;
408};
409
410static struct team_mode_item *__find_mode(const char *kind)
3d249d4c 411{
0402788a 412 struct team_mode_item *mitem;
3d249d4c 413
0402788a
JP
414 list_for_each_entry(mitem, &mode_list, list) {
415 if (strcmp(mitem->mode->kind, kind) == 0)
416 return mitem;
3d249d4c
JP
417 }
418 return NULL;
419}
420
421static 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
0402788a 431int team_mode_register(const struct team_mode *mode)
3d249d4c
JP
432{
433 int err = 0;
0402788a 434 struct team_mode_item *mitem;
3d249d4c
JP
435
436 if (!is_good_mode_name(mode->kind) ||
437 mode->priv_size > TEAM_MODE_PRIV_SIZE)
438 return -EINVAL;
0402788a
JP
439
440 mitem = kmalloc(sizeof(*mitem), GFP_KERNEL);
441 if (!mitem)
442 return -ENOMEM;
443
3d249d4c
JP
444 spin_lock(&mode_list_lock);
445 if (__find_mode(mode->kind)) {
446 err = -EEXIST;
0402788a 447 kfree(mitem);
3d249d4c
JP
448 goto unlock;
449 }
0402788a
JP
450 mitem->mode = mode;
451 list_add_tail(&mitem->list, &mode_list);
3d249d4c
JP
452unlock:
453 spin_unlock(&mode_list_lock);
454 return err;
455}
456EXPORT_SYMBOL(team_mode_register);
457
0402788a 458void team_mode_unregister(const struct team_mode *mode)
3d249d4c 459{
0402788a
JP
460 struct team_mode_item *mitem;
461
3d249d4c 462 spin_lock(&mode_list_lock);
0402788a
JP
463 mitem = __find_mode(mode->kind);
464 if (mitem) {
465 list_del_init(&mitem->list);
466 kfree(mitem);
467 }
3d249d4c 468 spin_unlock(&mode_list_lock);
3d249d4c
JP
469}
470EXPORT_SYMBOL(team_mode_unregister);
471
0402788a 472static const struct team_mode *team_mode_get(const char *kind)
3d249d4c 473{
0402788a
JP
474 struct team_mode_item *mitem;
475 const struct team_mode *mode = NULL;
3d249d4c
JP
476
477 spin_lock(&mode_list_lock);
0402788a
JP
478 mitem = __find_mode(kind);
479 if (!mitem) {
3d249d4c
JP
480 spin_unlock(&mode_list_lock);
481 request_module("team-mode-%s", kind);
482 spin_lock(&mode_list_lock);
0402788a 483 mitem = __find_mode(kind);
3d249d4c 484 }
0402788a
JP
485 if (mitem) {
486 mode = mitem->mode;
3d249d4c
JP
487 if (!try_module_get(mode->owner))
488 mode = NULL;
0402788a 489 }
3d249d4c
JP
490
491 spin_unlock(&mode_list_lock);
492 return mode;
493}
494
495static void team_mode_put(const struct team_mode *mode)
496{
497 module_put(mode->owner);
498}
499
500static bool team_dummy_transmit(struct team *team, struct sk_buff *skb)
501{
502 dev_kfree_skb_any(skb);
503 return false;
504}
505
2ea46599 506static rx_handler_result_t team_dummy_receive(struct team *team,
507 struct team_port *port,
508 struct sk_buff *skb)
3d249d4c
JP
509{
510 return RX_HANDLER_ANOTHER;
511}
512
d299cd51
JP
513static const struct team_mode __team_no_mode = {
514 .kind = "*NOMODE*",
515};
516
517static bool team_is_mode_set(struct team *team)
518{
519 return team->mode != &__team_no_mode;
520}
521
522static void team_set_no_mode(struct team *team)
523{
e185483e 524 team->user_carrier_enabled = false;
d299cd51
JP
525 team->mode = &__team_no_mode;
526}
527
122bb046 528static void __team_adjust_ops(struct team *team, int en_port_count)
3d249d4c
JP
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
122bb046
JP
535 if (!en_port_count || !team_is_mode_set(team) ||
536 !team->mode->ops->transmit)
3d249d4c
JP
537 team->ops.transmit = team_dummy_transmit;
538 else
539 team->ops.transmit = team->mode->ops->transmit;
540
122bb046
JP
541 if (!en_port_count || !team_is_mode_set(team) ||
542 !team->mode->ops->receive)
3d249d4c
JP
543 team->ops.receive = team_dummy_receive;
544 else
545 team->ops.receive = team->mode->ops->receive;
546}
547
122bb046
JP
548static void team_adjust_ops(struct team *team)
549{
550 __team_adjust_ops(team, team->en_port_count);
551}
552
3d249d4c
JP
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 */
558static 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 */
d299cd51 562 if (team_is_mode_set(team)) {
3d249d4c
JP
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);
d299cd51 572 team_set_no_mode(team);
3d249d4c
JP
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
596static int team_change_mode(struct team *team, const char *kind)
597{
0402788a 598 const struct team_mode *new_mode;
3d249d4c
JP
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
d299cd51 607 if (team_is_mode_set(team) && strcmp(team->mode->kind, kind) == 0) {
3d249d4c
JP
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 */
635static 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;
19a0b58e
JP
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 }
3d249d4c
JP
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
8ff5105a
JP
676/*************************************
677 * Multiqueue Tx port select override
678 *************************************/
679
680static 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
697static void team_queue_override_fini(struct team *team)
698{
699 kfree(team->qom_lists);
700}
701
702static 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 */
710static 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
725static void __team_queue_override_port_del(struct team *team,
726 struct team_port *port)
727{
6c31ff36
JP
728 if (!port->queue_id)
729 return;
8ff5105a 730 list_del_rcu(&port->qom_list);
8ff5105a
JP
731}
732
733static 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
745static 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
6c31ff36 752 if (!port->queue_id)
8ff5105a 753 return;
8ff5105a
JP
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
764static 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) {
6c31ff36 770 if (port->queue_id) {
8ff5105a
JP
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
6c31ff36
JP
782static void team_queue_override_port_prio_changed(struct team *team,
783 struct team_port *port)
8ff5105a 784{
6c31ff36
JP
785 if (!port->queue_id || team_port_enabled(port))
786 return;
8ff5105a
JP
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
6c31ff36
JP
792static 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
806static 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
813static 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
8ff5105a 820
3d249d4c
JP
821/****************
822 * Port handling
823 ****************/
824
825static 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/*
19a0b58e
JP
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.
3d249d4c 841 */
19a0b58e
JP
842static void team_port_enable(struct team *team,
843 struct team_port *port)
3d249d4c 844{
19a0b58e
JP
845 if (team_port_enabled(port))
846 return;
847 port->index = team->en_port_count++;
3d249d4c
JP
848 hlist_add_head_rcu(&port->hlist,
849 team_port_index_hash(team, port->index));
122bb046 850 team_adjust_ops(team);
6c31ff36 851 team_queue_override_port_add(team, port);
4bccfd17
JP
852 if (team->ops.port_enabled)
853 team->ops.port_enabled(team, port);
3d249d4c
JP
854}
855
856static void __reconstruct_port_hlist(struct team *team, int rm_index)
857{
858 int i;
859 struct team_port *port;
860
19a0b58e 861 for (i = rm_index + 1; i < team->en_port_count; i++) {
3d249d4c
JP
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
19a0b58e
JP
870static void team_port_disable(struct team *team,
871 struct team_port *port)
3d249d4c 872{
19a0b58e
JP
873 if (!team_port_enabled(port))
874 return;
4bccfd17
JP
875 if (team->ops.port_disabled)
876 team->ops.port_disabled(team, port);
3d249d4c 877 hlist_del_rcu(&port->hlist);
122bb046 878 __reconstruct_port_hlist(team, port->index);
19a0b58e 879 port->index = -1;
6c31ff36 880 team_queue_override_port_del(team, port);
122bb046
JP
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--;
3d249d4c
JP
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
894static 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;
dc905951 899 unsigned int flags, dst_release_flag = IFF_XMIT_DST_RELEASE;
3d249d4c
JP
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
dc905951 906 dst_release_flag &= port->dev->priv_flags;
3d249d4c
JP
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
dc905951
JP
914 flags = team->dev->priv_flags & ~IFF_XMIT_DST_RELEASE;
915 team->dev->priv_flags = flags | dst_release_flag;
916
3d249d4c
JP
917 netdev_change_features(team->dev);
918}
919
920static void team_compute_features(struct team *team)
921{
61dc3461 922 mutex_lock(&team->lock);
3d249d4c 923 __team_compute_features(team);
61dc3461 924 mutex_unlock(&team->lock);
3d249d4c
JP
925}
926
927static 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
944err_port_enter:
945 port->dev->priv_flags &= ~IFF_TEAM_PORT;
946 dev_put(team->dev);
947
948 return err;
949}
950
951static 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
bd2d0837 959#ifdef CONFIG_NET_POLL_CONTROLLER
47be03a2
AW
960static int team_port_enable_netpoll(struct team *team, struct team_port *port,
961 gfp_t gfp)
bd2d0837
JP
962{
963 struct netpoll *np;
964 int err;
965
47be03a2 966 np = kzalloc(sizeof(*np), gfp);
bd2d0837
JP
967 if (!np)
968 return -ENOMEM;
969
47be03a2 970 err = __netpoll_setup(np, port->dev, gfp);
bd2d0837
JP
971 if (err) {
972 kfree(np);
973 return err;
974 }
975 port->np = np;
976 return err;
977}
978
979static 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
993static struct netpoll_info *team_netpoll_info(struct team *team)
994{
995 return team->dev->npinfo;
996}
997
998#else
47be03a2
AW
999static int team_port_enable_netpoll(struct team *team, struct team_port *port,
1000 gfp_t gfp)
bd2d0837
JP
1001{
1002 return 0;
1003}
1004static void team_port_disable_netpoll(struct team_port *port)
1005{
1006}
1007static struct netpoll_info *team_netpoll_info(struct team *team)
1008{
1009 return NULL;
1010}
1011#endif
1012
10f3f51d 1013static void __team_port_change_port_added(struct team_port *port, bool linkup);
1d76efe1
JP
1014static int team_dev_type_check_change(struct net_device *dev,
1015 struct net_device *port_dev);
3d249d4c
JP
1016
1017static 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
1d76efe1
JP
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",
3d249d4c
JP
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
2c33bb37
JP
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
1d76efe1
JP
1043 err = team_dev_type_check_change(dev, port_dev);
1044 if (err)
1045 return err;
1046
3d249d4c
JP
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
5149ee58
JP
1053 port = kzalloc(sizeof(struct team_port) + team->mode->port_priv_size,
1054 GFP_KERNEL);
3d249d4c
JP
1055 if (!port)
1056 return -ENOMEM;
1057
1058 port->dev = port_dev;
1059 port->team = team;
8ff5105a 1060 INIT_LIST_HEAD(&port->qom_list);
3d249d4c
JP
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
1d76efe1 1069 memcpy(port->orig.dev_addr, port_dev->dev_addr, port_dev->addr_len);
3d249d4c
JP
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
57459185
JP
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
bd2d0837 1092 if (team_netpoll_info(team)) {
47be03a2 1093 err = team_port_enable_netpoll(team, port, GFP_KERNEL);
bd2d0837
JP
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
b1cc9850 1101 err = netdev_master_upper_dev_link(port_dev, dev);
3d249d4c 1102 if (err) {
b1cc9850
JP
1103 netdev_err(dev, "Device %s failed to set upper link\n",
1104 portname);
1105 goto err_set_upper_link;
3d249d4c
JP
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
35b384bd 1116 err = __team_option_inst_add_port(team, port);
80f7c668
JP
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
19a0b58e
JP
1123 port->index = -1;
1124 team_port_enable(team, port);
1125 list_add_tail_rcu(&port->list, &team->port_list);
3d249d4c 1126 __team_compute_features(team);
10f3f51d 1127 __team_port_change_port_added(port, !!netif_carrier_ok(port_dev));
35b384bd 1128 __team_options_change_check(team);
3d249d4c
JP
1129
1130 netdev_info(dev, "Port device %s added\n", portname);
1131
1132 return 0;
1133
80f7c668
JP
1134err_option_port_add:
1135 netdev_rx_handler_unregister(port_dev);
1136
3d249d4c 1137err_handler_register:
b1cc9850 1138 netdev_upper_dev_unlink(port_dev, dev);
3d249d4c 1139
b1cc9850 1140err_set_upper_link:
bd2d0837
JP
1141 team_port_disable_netpoll(port);
1142
1143err_enable_netpoll:
57459185
JP
1144 vlan_vids_del_by_dev(port_dev, dev);
1145
1146err_vids_add:
3d249d4c
JP
1147 dev_close(port_dev);
1148
1149err_dev_open:
1150 team_port_leave(team, port);
1d76efe1 1151 team_port_set_orig_dev_addr(port);
3d249d4c
JP
1152
1153err_port_enter:
1154 dev_set_mtu(port_dev, port->orig.mtu);
1155
1156err_set_mtu:
1157 kfree(port);
1158
1159 return err;
1160}
1161
10f3f51d
JP
1162static void __team_port_change_port_removed(struct team_port *port);
1163
3d249d4c
JP
1164static 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
19a0b58e
JP
1177 team_port_disable(team, port);
1178 list_del_rcu(&port->list);
3d249d4c 1179 netdev_rx_handler_unregister(port_dev);
b1cc9850 1180 netdev_upper_dev_unlink(port_dev, dev);
bd2d0837 1181 team_port_disable_netpoll(port);
57459185 1182 vlan_vids_del_by_dev(port_dev, dev);
ba81276b
VY
1183 dev_uc_unsync(port_dev, dev);
1184 dev_mc_unsync(port_dev, dev);
3d249d4c
JP
1185 dev_close(port_dev);
1186 team_port_leave(team, port);
c3969d80
JP
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
1d76efe1 1193 team_port_set_orig_dev_addr(port);
3d249d4c 1194 dev_set_mtu(port_dev, port->orig.mtu);
d80b35be 1195 kfree_rcu(port, rcu);
3d249d4c
JP
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
80f7c668 1207static int team_mode_option_get(struct team *team, struct team_gsetter_ctx *ctx)
3d249d4c 1208{
d299cd51 1209 ctx->data.str_val = team->mode->kind;
3d249d4c
JP
1210 return 0;
1211}
1212
80f7c668 1213static int team_mode_option_set(struct team *team, struct team_gsetter_ctx *ctx)
3d249d4c 1214{
80f7c668 1215 return team_change_mode(team, ctx->data.str_val);
3d249d4c
JP
1216}
1217
acd69962
JP
1218static int team_port_en_option_get(struct team *team,
1219 struct team_gsetter_ctx *ctx)
1220{
85d59a87
JP
1221 struct team_port *port = ctx->info->port;
1222
1223 ctx->data.bool_val = team_port_enabled(port);
acd69962
JP
1224 return 0;
1225}
1226
1227static int team_port_en_option_set(struct team *team,
1228 struct team_gsetter_ctx *ctx)
1229{
85d59a87
JP
1230 struct team_port *port = ctx->info->port;
1231
acd69962 1232 if (ctx->data.bool_val)
85d59a87 1233 team_port_enable(team, port);
acd69962 1234 else
85d59a87 1235 team_port_disable(team, port);
acd69962
JP
1236 return 0;
1237}
1238
71472ec1
JP
1239static int team_user_linkup_option_get(struct team *team,
1240 struct team_gsetter_ctx *ctx)
1241{
85d59a87
JP
1242 struct team_port *port = ctx->info->port;
1243
1244 ctx->data.bool_val = port->user.linkup;
71472ec1
JP
1245 return 0;
1246}
1247
1248static int team_user_linkup_option_set(struct team *team,
1249 struct team_gsetter_ctx *ctx)
1250{
85d59a87
JP
1251 struct team_port *port = ctx->info->port;
1252
1253 port->user.linkup = ctx->data.bool_val;
1254 team_refresh_port_linkup(port);
71472ec1
JP
1255 return 0;
1256}
1257
1258static int team_user_linkup_en_option_get(struct team *team,
1259 struct team_gsetter_ctx *ctx)
1260{
85d59a87 1261 struct team_port *port = ctx->info->port;
71472ec1
JP
1262
1263 ctx->data.bool_val = port->user.linkup_enabled;
1264 return 0;
1265}
1266
1267static int team_user_linkup_en_option_set(struct team *team,
1268 struct team_gsetter_ctx *ctx)
1269{
85d59a87 1270 struct team_port *port = ctx->info->port;
71472ec1
JP
1271
1272 port->user.linkup_enabled = ctx->data.bool_val;
85d59a87 1273 team_refresh_port_linkup(port);
71472ec1
JP
1274 return 0;
1275}
1276
a86fc6b7
JP
1277static 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
1286static int team_priority_option_set(struct team *team,
1287 struct team_gsetter_ctx *ctx)
1288{
1289 struct team_port *port = ctx->info->port;
6c31ff36 1290 s32 priority = ctx->data.s32_val;
a86fc6b7 1291
6c31ff36
JP
1292 if (port->priority == priority)
1293 return 0;
1294 port->priority = priority;
1295 team_queue_override_port_prio_changed(team, port);
8ff5105a
JP
1296 return 0;
1297}
1298
1299static 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;
a86fc6b7
JP
1305 return 0;
1306}
1307
8ff5105a
JP
1308static int team_queue_id_option_set(struct team *team,
1309 struct team_gsetter_ctx *ctx)
1310{
1311 struct team_port *port = ctx->info->port;
6c31ff36 1312 u16 new_queue_id = ctx->data.u32_val;
8ff5105a 1313
6c31ff36 1314 if (port->queue_id == new_queue_id)
8ff5105a 1315 return 0;
6c31ff36 1316 if (new_queue_id >= team->dev->real_num_tx_queues)
8ff5105a 1317 return -EINVAL;
6c31ff36 1318 team_queue_override_port_change_queue_id(team, port, new_queue_id);
8ff5105a
JP
1319 return 0;
1320}
1321
358b8382 1322static const struct team_option team_options[] = {
3d249d4c
JP
1323 {
1324 .name = "mode",
1325 .type = TEAM_OPTION_TYPE_STRING,
1326 .getter = team_mode_option_get,
1327 .setter = team_mode_option_set,
1328 },
acd69962
JP
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 },
71472ec1
JP
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 },
a86fc6b7
JP
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 },
8ff5105a
JP
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 },
3d249d4c
JP
1364};
1365
6c85f2bd
JP
1366static struct lock_class_key team_netdev_xmit_lock_key;
1367static struct lock_class_key team_netdev_addr_lock_key;
b3c581d5 1368static struct lock_class_key team_tx_busylock_key;
6c85f2bd
JP
1369
1370static 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
1377static 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);
b3c581d5 1381 dev->qdisc_tx_busylock = &team_tx_busylock_key;
6c85f2bd
JP
1382}
1383
3d249d4c
JP
1384static int team_init(struct net_device *dev)
1385{
1386 struct team *team = netdev_priv(dev);
1387 int i;
358b8382 1388 int err;
3d249d4c
JP
1389
1390 team->dev = dev;
61dc3461 1391 mutex_init(&team->lock);
d299cd51 1392 team_set_no_mode(team);
3d249d4c
JP
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++)
19a0b58e 1399 INIT_HLIST_HEAD(&team->en_port_hlist[i]);
3d249d4c 1400 INIT_LIST_HEAD(&team->port_list);
8ff5105a
JP
1401 err = team_queue_override_init(team);
1402 if (err)
1403 goto err_team_queue_override_init;
3d249d4c
JP
1404
1405 team_adjust_ops(team);
1406
1407 INIT_LIST_HEAD(&team->option_list);
80f7c668 1408 INIT_LIST_HEAD(&team->option_inst_list);
358b8382
JP
1409 err = team_options_register(team, team_options, ARRAY_SIZE(team_options));
1410 if (err)
1411 goto err_options_register;
3d249d4c
JP
1412 netif_carrier_off(dev);
1413
6c85f2bd
JP
1414 team_set_lockdep_class(dev);
1415
3d249d4c 1416 return 0;
358b8382
JP
1417
1418err_options_register:
8ff5105a
JP
1419 team_queue_override_fini(team);
1420err_team_queue_override_init:
358b8382
JP
1421 free_percpu(team->pcpu_stats);
1422
1423 return err;
3d249d4c
JP
1424}
1425
1426static 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
61dc3461 1432 mutex_lock(&team->lock);
3d249d4c
JP
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));
8ff5105a 1438 team_queue_override_fini(team);
61dc3461 1439 mutex_unlock(&team->lock);
3d249d4c
JP
1440}
1441
1442static 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
1450static int team_open(struct net_device *dev)
1451{
3d249d4c
JP
1452 return 0;
1453}
1454
1455static int team_close(struct net_device *dev)
1456{
3d249d4c
JP
1457 return 0;
1458}
1459
1460/*
1461 * note: already called with rcu_read_lock
1462 */
1463static netdev_tx_t team_xmit(struct sk_buff *skb, struct net_device *dev)
1464{
1465 struct team *team = netdev_priv(dev);
8ff5105a 1466 bool tx_success;
3d249d4c
JP
1467 unsigned int len = skb->len;
1468
8ff5105a
JP
1469 tx_success = team_queue_override_transmit(team, skb);
1470 if (!tx_success)
1471 tx_success = team->ops.transmit(team, skb);
3d249d4c
JP
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
6c85f2bd
JP
1487static 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
3d249d4c
JP
1510static 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
1530static 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) {
72b27032
VY
1537 dev_uc_sync_multiple(port->dev, dev);
1538 dev_mc_sync_multiple(port->dev, dev);
3d249d4c
JP
1539 }
1540 rcu_read_unlock();
1541}
1542
1543static int team_set_mac_address(struct net_device *dev, void *p)
1544{
1d76efe1 1545 struct sockaddr *addr = p;
3d249d4c
JP
1546 struct team *team = netdev_priv(dev);
1547 struct team_port *port;
3d249d4c 1548
1d76efe1
JP
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);
3d249d4c
JP
1552 rcu_read_lock();
1553 list_for_each_entry_rcu(port, &team->port_list, list)
1d76efe1
JP
1554 if (team->ops.port_change_dev_addr)
1555 team->ops.port_change_dev_addr(team, port);
3d249d4c
JP
1556 rcu_read_unlock();
1557 return 0;
1558}
1559
1560static 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 */
61dc3461 1570 mutex_lock(&team->lock);
3d249d4c
JP
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 }
61dc3461 1579 mutex_unlock(&team->lock);
3d249d4c
JP
1580
1581 dev->mtu = new_mtu;
1582
1583 return 0;
1584
1585unwind:
1586 list_for_each_entry_continue_reverse(port, &team->port_list, list)
1587 dev_set_mtu(port->dev, dev->mtu);
61dc3461 1588 mutex_unlock(&team->lock);
3d249d4c
JP
1589
1590 return err;
1591}
1592
1593static struct rtnl_link_stats64 *
1594team_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
80d5c368 1631static int team_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid)
3d249d4c
JP
1632{
1633 struct team *team = netdev_priv(dev);
1634 struct team_port *port;
87002b03 1635 int err;
3d249d4c 1636
87002b03
JP
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) {
80d5c368 1643 err = vlan_vid_add(port->dev, proto, vid);
87002b03
JP
1644 if (err)
1645 goto unwind;
3d249d4c 1646 }
87002b03 1647 mutex_unlock(&team->lock);
8e586137
JP
1648
1649 return 0;
87002b03
JP
1650
1651unwind:
1652 list_for_each_entry_continue_reverse(port, &team->port_list, list)
80d5c368 1653 vlan_vid_del(port->dev, proto, vid);
87002b03
JP
1654 mutex_unlock(&team->lock);
1655
1656 return err;
3d249d4c
JP
1657}
1658
80d5c368 1659static int team_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid)
3d249d4c
JP
1660{
1661 struct team *team = netdev_priv(dev);
1662 struct team_port *port;
1663
1664 rcu_read_lock();
87002b03 1665 list_for_each_entry_rcu(port, &team->port_list, list)
80d5c368 1666 vlan_vid_del(port->dev, proto, vid);
3d249d4c 1667 rcu_read_unlock();
8e586137
JP
1668
1669 return 0;
3d249d4c
JP
1670}
1671
bd2d0837
JP
1672#ifdef CONFIG_NET_POLL_CONTROLLER
1673static void team_poll_controller(struct net_device *dev)
1674{
1675}
1676
1677static 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
1685static 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
1694static int team_netpoll_setup(struct net_device *dev,
47be03a2 1695 struct netpoll_info *npifo, gfp_t gfp)
bd2d0837
JP
1696{
1697 struct team *team = netdev_priv(dev);
1698 struct team_port *port;
3324d024 1699 int err = 0;
bd2d0837
JP
1700
1701 mutex_lock(&team->lock);
1702 list_for_each_entry(port, &team->port_list, list) {
47be03a2 1703 err = team_port_enable_netpoll(team, port, gfp);
bd2d0837
JP
1704 if (err) {
1705 __team_netpoll_cleanup(team);
1706 break;
1707 }
1708 }
1709 mutex_unlock(&team->lock);
1710 return err;
1711}
1712#endif
1713
3d249d4c
JP
1714static 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
61dc3461 1719 mutex_lock(&team->lock);
3d249d4c 1720 err = team_port_add(team, port_dev);
61dc3461 1721 mutex_unlock(&team->lock);
3d249d4c
JP
1722 return err;
1723}
1724
1725static 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
61dc3461 1730 mutex_lock(&team->lock);
3d249d4c 1731 err = team_port_del(team, port_dev);
61dc3461 1732 mutex_unlock(&team->lock);
3d249d4c
JP
1733 return err;
1734}
1735
234a8fd4
JP
1736static 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
4cafe373
FL
1757static int team_change_carrier(struct net_device *dev, bool new_carrier)
1758{
e185483e
FL
1759 struct team *team = netdev_priv(dev);
1760
1761 team->user_carrier_enabled = true;
1762
4cafe373
FL
1763 if (new_carrier)
1764 netif_carrier_on(dev);
1765 else
1766 netif_carrier_off(dev);
1767 return 0;
1768}
1769
3d249d4c
JP
1770static 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,
6c85f2bd 1776 .ndo_select_queue = team_select_queue,
3d249d4c
JP
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,
bd2d0837
JP
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
3d249d4c
JP
1789 .ndo_add_slave = team_add_slave,
1790 .ndo_del_slave = team_del_slave,
234a8fd4 1791 .ndo_fix_features = team_fix_features,
4cafe373 1792 .ndo_change_carrier = team_change_carrier,
3d249d4c
JP
1793};
1794
7f51c587
FL
1795/***********************
1796 * ethtool interface
1797 ***********************/
1798
1799static void team_ethtool_get_drvinfo(struct net_device *dev,
1800 struct ethtool_drvinfo *drvinfo)
1801{
3066af58
FL
1802 strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver));
1803 strlcpy(drvinfo->version, UTS_RELEASE, sizeof(drvinfo->version));
7f51c587
FL
1804}
1805
1806static const struct ethtool_ops team_ethtool_ops = {
1807 .get_drvinfo = team_ethtool_get_drvinfo,
1808 .get_link = ethtool_op_get_link,
1809};
3d249d4c
JP
1810
1811/***********************
1812 * rt netlink interface
1813 ***********************/
1814
1d76efe1
JP
1815static 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);
1d76efe1
JP
1825}
1826
1827static 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
3d249d4c
JP
1853static void team_setup(struct net_device *dev)
1854{
1855 ether_setup(dev);
1856
1857 dev->netdev_ops = &team_netdev_ops;
7f51c587 1858 dev->ethtool_ops = &team_ethtool_ops;
3d249d4c
JP
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 */
5a1d1c8c 1869 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
3d249d4c
JP
1870
1871 dev->features |= NETIF_F_LLTX;
1872 dev->features |= NETIF_F_GRO;
3ed71471 1873 dev->hw_features = TEAM_VLAN_FEATURES |
f646968f
PM
1874 NETIF_F_HW_VLAN_CTAG_TX |
1875 NETIF_F_HW_VLAN_CTAG_RX |
1876 NETIF_F_HW_VLAN_CTAG_FILTER;
3d249d4c 1877
3ed71471 1878 dev->hw_features &= ~(NETIF_F_ALL_CSUM & ~NETIF_F_HW_CSUM);
3d249d4c
JP
1879 dev->features |= dev->hw_features;
1880}
1881
1882static 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)
7ce5d222 1888 eth_hw_addr_random(dev);
3d249d4c
JP
1889
1890 err = register_netdevice(dev);
1891 if (err)
1892 return err;
1893
1894 return 0;
1895}
1896
1897static 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
6c85f2bd
JP
1908static unsigned int team_get_num_tx_queues(void)
1909{
1910 return TEAM_DEFAULT_NUM_TX_QUEUES;
1911}
1912
1913static unsigned int team_get_num_rx_queues(void)
1914{
1915 return TEAM_DEFAULT_NUM_RX_QUEUES;
1916}
1917
3d249d4c 1918static struct rtnl_link_ops team_link_ops __read_mostly = {
6c85f2bd
JP
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,
3d249d4c
JP
1926};
1927
1928
1929/***********************************
1930 * Generic netlink custom interface
1931 ***********************************/
1932
1933static 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
1941static 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
1948static const struct nla_policy
1949team_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 },
2615598f 1957 [TEAM_ATTR_OPTION_DATA] = { .type = NLA_BINARY },
3d249d4c
JP
1958};
1959
1960static 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
58050fce 1966 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
3d249d4c
JP
1967 if (!msg)
1968 return -ENOMEM;
1969
15e47304 1970 hdr = genlmsg_put(msg, info->snd_portid, info->snd_seq,
3d249d4c 1971 &team_nl_family, 0, TEAM_CMD_NOOP);
a326e6dd
WY
1972 if (!hdr) {
1973 err = -EMSGSIZE;
3d249d4c
JP
1974 goto err_msg_put;
1975 }
1976
1977 genlmsg_end(msg, hdr);
1978
15e47304 1979 return genlmsg_unicast(genl_info_net(info), msg, info->snd_portid);
3d249d4c
JP
1980
1981err_msg_put:
1982 nlmsg_free(msg);
1983
1984 return err;
1985}
1986
1987/*
1988 * Netlink cmd functions should be locked by following two functions.
8c0713a5 1989 * Since dev gets held here, that ensures dev won't disappear in between.
3d249d4c
JP
1990 */
1991static 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]);
8c0713a5 2002 dev = dev_get_by_index(net, ifindex);
3d249d4c 2003 if (!dev || dev->netdev_ops != &team_netdev_ops) {
8c0713a5
JP
2004 if (dev)
2005 dev_put(dev);
3d249d4c
JP
2006 return NULL;
2007 }
2008
2009 team = netdev_priv(dev);
61dc3461 2010 mutex_lock(&team->lock);
3d249d4c
JP
2011 return team;
2012}
2013
2014static void team_nl_team_put(struct team *team)
2015{
61dc3461 2016 mutex_unlock(&team->lock);
8c0713a5 2017 dev_put(team->dev);
3d249d4c
JP
2018}
2019
9b00cf2d 2020typedef int team_nl_send_func_t(struct sk_buff *skb,
15e47304 2021 struct team *team, u32 portid);
9b00cf2d 2022
15e47304 2023static int team_nl_send_unicast(struct sk_buff *skb, struct team *team, u32 portid)
9b00cf2d 2024{
15e47304 2025 return genlmsg_unicast(dev_net(team->dev), skb, portid);
9b00cf2d
JP
2026}
2027
01048d9a
JP
2028static 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;
9b00cf2d 2033 struct team_option_inst_info *opt_inst_info = &opt_inst->info;
01048d9a
JP
2034 struct team_gsetter_ctx ctx;
2035 int err;
2036
9b00cf2d
JP
2037 ctx.info = opt_inst_info;
2038 err = team_option_get(team, opt_inst, &ctx);
2039 if (err)
2040 return err;
2041
01048d9a
JP
2042 option_item = nla_nest_start(skb, TEAM_ATTR_ITEM_OPTION);
2043 if (!option_item)
9b00cf2d 2044 return -EMSGSIZE;
01048d9a 2045
9b00cf2d
JP
2046 if (nla_put_string(skb, TEAM_ATTR_OPTION_NAME, option->name))
2047 goto nest_cancel;
01048d9a
JP
2048 if (opt_inst_info->port &&
2049 nla_put_u32(skb, TEAM_ATTR_OPTION_PORT_IFINDEX,
2050 opt_inst_info->port->dev->ifindex))
9b00cf2d 2051 goto nest_cancel;
01048d9a
JP
2052 if (opt_inst->option->array_size &&
2053 nla_put_u32(skb, TEAM_ATTR_OPTION_ARRAY_INDEX,
2054 opt_inst_info->array_index))
9b00cf2d 2055 goto nest_cancel;
01048d9a
JP
2056
2057 switch (option->type) {
2058 case TEAM_OPTION_TYPE_U32:
2059 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_U32))
9b00cf2d 2060 goto nest_cancel;
01048d9a 2061 if (nla_put_u32(skb, TEAM_ATTR_OPTION_DATA, ctx.data.u32_val))
9b00cf2d 2062 goto nest_cancel;
01048d9a
JP
2063 break;
2064 case TEAM_OPTION_TYPE_STRING:
2065 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_STRING))
9b00cf2d 2066 goto nest_cancel;
01048d9a
JP
2067 if (nla_put_string(skb, TEAM_ATTR_OPTION_DATA,
2068 ctx.data.str_val))
9b00cf2d 2069 goto nest_cancel;
01048d9a
JP
2070 break;
2071 case TEAM_OPTION_TYPE_BINARY:
2072 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_BINARY))
9b00cf2d 2073 goto nest_cancel;
01048d9a
JP
2074 if (nla_put(skb, TEAM_ATTR_OPTION_DATA, ctx.data.bin_val.len,
2075 ctx.data.bin_val.ptr))
9b00cf2d 2076 goto nest_cancel;
01048d9a
JP
2077 break;
2078 case TEAM_OPTION_TYPE_BOOL:
2079 if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_FLAG))
9b00cf2d 2080 goto nest_cancel;
01048d9a
JP
2081 if (ctx.data.bool_val &&
2082 nla_put_flag(skb, TEAM_ATTR_OPTION_DATA))
9b00cf2d 2083 goto nest_cancel;
01048d9a 2084 break;
69821638
JP
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;
01048d9a
JP
2091 default:
2092 BUG();
2093 }
9b00cf2d
JP
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 }
01048d9a
JP
2101 nla_nest_end(skb, option_item);
2102 return 0;
2103
9b00cf2d
JP
2104nest_cancel:
2105 nla_nest_cancel(skb, option_item);
2106 return -EMSGSIZE;
2107}
2108
2109static int __send_and_alloc_skb(struct sk_buff **pskb,
15e47304 2110 struct team *team, u32 portid,
9b00cf2d
JP
2111 team_nl_send_func_t *send_func)
2112{
2113 int err;
2114
2115 if (*pskb) {
15e47304 2116 err = send_func(*pskb, team, portid);
9b00cf2d
JP
2117 if (err)
2118 return err;
2119 }
58050fce 2120 *pskb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL);
9b00cf2d
JP
2121 if (!*pskb)
2122 return -ENOMEM;
2123 return 0;
01048d9a
JP
2124}
2125
15e47304 2126static int team_nl_send_options_get(struct team *team, u32 portid, u32 seq,
9b00cf2d 2127 int flags, team_nl_send_func_t *send_func,
01048d9a 2128 struct list_head *sel_opt_inst_list)
3d249d4c
JP
2129{
2130 struct nlattr *option_list;
9b00cf2d 2131 struct nlmsghdr *nlh;
3d249d4c 2132 void *hdr;
80f7c668
JP
2133 struct team_option_inst *opt_inst;
2134 int err;
9b00cf2d
JP
2135 struct sk_buff *skb = NULL;
2136 bool incomplete;
2137 int i;
3d249d4c 2138
9b00cf2d
JP
2139 opt_inst = list_first_entry(sel_opt_inst_list,
2140 struct team_option_inst, tmp_list);
2141
2142start_again:
15e47304 2143 err = __send_and_alloc_skb(&skb, team, portid, send_func);
9b00cf2d
JP
2144 if (err)
2145 return err;
2146
15e47304 2147 hdr = genlmsg_put(skb, portid, seq, &team_nl_family, flags | NLM_F_MULTI,
3d249d4c 2148 TEAM_CMD_OPTIONS_GET);
a326e6dd
WY
2149 if (!hdr)
2150 return -EMSGSIZE;
3d249d4c 2151
86ebb02d
DM
2152 if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex))
2153 goto nla_put_failure;
3d249d4c
JP
2154 option_list = nla_nest_start(skb, TEAM_ATTR_LIST_OPTION);
2155 if (!option_list)
75db986a 2156 goto nla_put_failure;
3d249d4c 2157
9b00cf2d
JP
2158 i = 0;
2159 incomplete = false;
2160 list_for_each_entry_from(opt_inst, sel_opt_inst_list, tmp_list) {
01048d9a 2161 err = team_nl_fill_one_option_get(skb, team, opt_inst);
9b00cf2d
JP
2162 if (err) {
2163 if (err == -EMSGSIZE) {
2164 if (!i)
2165 goto errout;
2166 incomplete = true;
2167 break;
2168 }
01048d9a 2169 goto errout;
9b00cf2d
JP
2170 }
2171 i++;
3d249d4c
JP
2172 }
2173
2174 nla_nest_end(skb, option_list);
9b00cf2d
JP
2175 genlmsg_end(skb, hdr);
2176 if (incomplete)
2177 goto start_again;
2178
2179send_done:
15e47304 2180 nlh = nlmsg_put(skb, portid, seq, NLMSG_DONE, 0, flags | NLM_F_MULTI);
9b00cf2d 2181 if (!nlh) {
15e47304 2182 err = __send_and_alloc_skb(&skb, team, portid, send_func);
9b00cf2d
JP
2183 if (err)
2184 goto errout;
2185 goto send_done;
2186 }
2187
15e47304 2188 return send_func(skb, team, portid);
3d249d4c
JP
2189
2190nla_put_failure:
80f7c668
JP
2191 err = -EMSGSIZE;
2192errout:
3d249d4c 2193 genlmsg_cancel(skb, hdr);
9b00cf2d 2194 nlmsg_free(skb);
80f7c668 2195 return err;
3d249d4c
JP
2196}
2197
3d249d4c
JP
2198static int team_nl_cmd_options_get(struct sk_buff *skb, struct genl_info *info)
2199{
2200 struct team *team;
9b00cf2d 2201 struct team_option_inst *opt_inst;
3d249d4c 2202 int err;
9b00cf2d 2203 LIST_HEAD(sel_opt_inst_list);
3d249d4c
JP
2204
2205 team = team_nl_team_get(info);
2206 if (!team)
2207 return -EINVAL;
2208
9b00cf2d
JP
2209 list_for_each_entry(opt_inst, &team->option_inst_list, list)
2210 list_add_tail(&opt_inst->tmp_list, &sel_opt_inst_list);
15e47304 2211 err = team_nl_send_options_get(team, info->snd_portid, info->snd_seq,
9b00cf2d
JP
2212 NLM_F_ACK, team_nl_send_unicast,
2213 &sel_opt_inst_list);
3d249d4c
JP
2214
2215 team_nl_team_put(team);
2216
2217 return err;
2218}
2219
2fcdb2c9
JP
2220static int team_nl_send_event_options_get(struct team *team,
2221 struct list_head *sel_opt_inst_list);
2222
3d249d4c
JP
2223static 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;
2fcdb2c9 2229 LIST_HEAD(opt_inst_list);
3d249d4c
JP
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) {
80f7c668 2242 struct nlattr *opt_attrs[TEAM_ATTR_OPTION_MAX + 1];
b1303326 2243 struct nlattr *attr;
14f066ba 2244 struct nlattr *attr_data;
3d249d4c 2245 enum team_option_type opt_type;
80f7c668 2246 int opt_port_ifindex = 0; /* != 0 for per-port options */
b1303326
JP
2247 u32 opt_array_index = 0;
2248 bool opt_is_array = false;
80f7c668 2249 struct team_option_inst *opt_inst;
3d249d4c
JP
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 }
80f7c668 2257 err = nla_parse_nested(opt_attrs, TEAM_ATTR_OPTION_MAX,
3d249d4c
JP
2258 nl_option, team_nl_option_policy);
2259 if (err)
2260 goto team_put;
80f7c668 2261 if (!opt_attrs[TEAM_ATTR_OPTION_NAME] ||
14f066ba 2262 !opt_attrs[TEAM_ATTR_OPTION_TYPE]) {
3d249d4c
JP
2263 err = -EINVAL;
2264 goto team_put;
2265 }
80f7c668 2266 switch (nla_get_u8(opt_attrs[TEAM_ATTR_OPTION_TYPE])) {
3d249d4c
JP
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;
2615598f
JP
2273 case NLA_BINARY:
2274 opt_type = TEAM_OPTION_TYPE_BINARY;
2275 break;
14f066ba
JP
2276 case NLA_FLAG:
2277 opt_type = TEAM_OPTION_TYPE_BOOL;
2278 break;
69821638
JP
2279 case NLA_S32:
2280 opt_type = TEAM_OPTION_TYPE_S32;
2281 break;
3d249d4c
JP
2282 default:
2283 goto team_put;
2284 }
2285
14f066ba
JP
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
80f7c668 2292 opt_name = nla_data(opt_attrs[TEAM_ATTR_OPTION_NAME]);
b1303326
JP
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 }
80f7c668
JP
2302
2303 list_for_each_entry(opt_inst, &team->option_inst_list, list) {
2304 struct team_option *option = opt_inst->option;
80f7c668 2305 struct team_gsetter_ctx ctx;
85d59a87 2306 struct team_option_inst_info *opt_inst_info;
80f7c668 2307 int tmp_ifindex;
3d249d4c 2308
85d59a87
JP
2309 opt_inst_info = &opt_inst->info;
2310 tmp_ifindex = opt_inst_info->port ?
2311 opt_inst_info->port->dev->ifindex : 0;
3d249d4c 2312 if (option->type != opt_type ||
80f7c668 2313 strcmp(option->name, opt_name) ||
b1303326
JP
2314 tmp_ifindex != opt_port_ifindex ||
2315 (option->array_size && !opt_is_array) ||
85d59a87 2316 opt_inst_info->array_index != opt_array_index)
3d249d4c
JP
2317 continue;
2318 opt_found = true;
85d59a87 2319 ctx.info = opt_inst_info;
3d249d4c
JP
2320 switch (opt_type) {
2321 case TEAM_OPTION_TYPE_U32:
14f066ba 2322 ctx.data.u32_val = nla_get_u32(attr_data);
3d249d4c
JP
2323 break;
2324 case TEAM_OPTION_TYPE_STRING:
14f066ba 2325 if (nla_len(attr_data) > TEAM_STRING_MAX_LEN) {
2615598f
JP
2326 err = -EINVAL;
2327 goto team_put;
2328 }
14f066ba 2329 ctx.data.str_val = nla_data(attr_data);
3d249d4c 2330 break;
2615598f 2331 case TEAM_OPTION_TYPE_BINARY:
14f066ba
JP
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;
2615598f 2337 break;
69821638
JP
2338 case TEAM_OPTION_TYPE_S32:
2339 ctx.data.s32_val = nla_get_s32(attr_data);
2340 break;
3d249d4c
JP
2341 default:
2342 BUG();
2343 }
80f7c668 2344 err = team_option_set(team, opt_inst, &ctx);
3d249d4c
JP
2345 if (err)
2346 goto team_put;
2fcdb2c9
JP
2347 opt_inst->changed = true;
2348 list_add(&opt_inst->tmp_list, &opt_inst_list);
3d249d4c
JP
2349 }
2350 if (!opt_found) {
2351 err = -ENOENT;
2352 goto team_put;
2353 }
2354 }
2355
2fcdb2c9
JP
2356 err = team_nl_send_event_options_get(team, &opt_inst_list);
2357
3d249d4c
JP
2358team_put:
2359 team_nl_team_put(team);
2360
2361 return err;
2362}
2363
d90f889e
JP
2364static 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
2389nest_cancel:
2390 nla_nest_cancel(skb, port_item);
2391 return -EMSGSIZE;
2392}
2393
2394static 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)
3d249d4c
JP
2397{
2398 struct nlattr *port_list;
d90f889e 2399 struct nlmsghdr *nlh;
3d249d4c
JP
2400 void *hdr;
2401 struct team_port *port;
d90f889e
JP
2402 int err;
2403 struct sk_buff *skb = NULL;
2404 bool incomplete;
2405 int i;
3d249d4c 2406
3f3e7ce4
JP
2407 port = list_first_entry_or_null(&team->port_list,
2408 struct team_port, list);
d90f889e
JP
2409
2410start_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,
3d249d4c 2416 TEAM_CMD_PORT_LIST_GET);
a326e6dd
WY
2417 if (!hdr)
2418 return -EMSGSIZE;
3d249d4c 2419
86ebb02d
DM
2420 if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex))
2421 goto nla_put_failure;
3d249d4c
JP
2422 port_list = nla_nest_start(skb, TEAM_ATTR_LIST_PORT);
2423 if (!port_list)
3221c646 2424 goto nla_put_failure;
3d249d4c 2425
d90f889e
JP
2426 i = 0;
2427 incomplete = false;
3d249d4c 2428
d90f889e
JP
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;
3f3e7ce4
JP
2436 } else if (port) {
2437 list_for_each_entry_from(port, &team->port_list, list) {
d90f889e
JP
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++;
b82b9183 2449 }
3d249d4c
JP
2450 }
2451
2452 nla_nest_end(skb, port_list);
d90f889e
JP
2453 genlmsg_end(skb, hdr);
2454 if (incomplete)
2455 goto start_again;
2456
2457send_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);
3d249d4c
JP
2467
2468nla_put_failure:
d90f889e
JP
2469 err = -EMSGSIZE;
2470errout:
3d249d4c 2471 genlmsg_cancel(skb, hdr);
d90f889e
JP
2472 nlmsg_free(skb);
2473 return err;
3d249d4c
JP
2474}
2475
2476static 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
d90f889e
JP
2486 err = team_nl_send_port_list_get(team, info->snd_portid, info->snd_seq,
2487 NLM_F_ACK, team_nl_send_unicast, NULL);
3d249d4c
JP
2488
2489 team_nl_team_put(team);
2490
2491 return err;
2492}
2493
2494static 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
2520static struct genl_multicast_group team_change_event_mcgrp = {
2521 .name = TEAM_GENL_CHANGE_EVENT_MC_GRP_NAME,
2522};
2523
9b00cf2d 2524static int team_nl_send_multicast(struct sk_buff *skb,
15e47304 2525 struct team *team, u32 portid)
9b00cf2d
JP
2526{
2527 return genlmsg_multicast_netns(dev_net(team->dev), skb, 0,
2528 team_change_event_mcgrp.id, GFP_KERNEL);
2529}
2530
01048d9a
JP
2531static int team_nl_send_event_options_get(struct team *team,
2532 struct list_head *sel_opt_inst_list)
3d249d4c 2533{
9b00cf2d
JP
2534 return team_nl_send_options_get(team, 0, 0, 0, team_nl_send_multicast,
2535 sel_opt_inst_list);
3d249d4c
JP
2536}
2537
d90f889e
JP
2538static int team_nl_send_event_port_get(struct team *team,
2539 struct team_port *port)
3d249d4c 2540{
d90f889e
JP
2541 return team_nl_send_port_list_get(team, 0, 0, 0, team_nl_send_multicast,
2542 port);
3d249d4c
JP
2543}
2544
2545static 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
2560err_change_event_grp_reg:
2561 genl_unregister_family(&team_nl_family);
2562
2563 return err;
2564}
2565
2566static void team_nl_fini(void)
2567{
2568 genl_unregister_family(&team_nl_family);
2569}
2570
2571
2572/******************
2573 * Change checkers
2574 ******************/
2575
b82b9183 2576static void __team_options_change_check(struct team *team)
3d249d4c
JP
2577{
2578 int err;
01048d9a
JP
2579 struct team_option_inst *opt_inst;
2580 LIST_HEAD(sel_opt_inst_list);
3d249d4c 2581
01048d9a
JP
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);
0c7517e9 2587 if (err && err != -ESRCH)
9b00cf2d
JP
2588 netdev_warn(team->dev, "Failed to send options change via netlink (err %d)\n",
2589 err);
3d249d4c
JP
2590}
2591
2592/* rtnl lock is held */
10f3f51d
JP
2593
2594static void __team_port_change_send(struct team_port *port, bool linkup)
3d249d4c
JP
2595{
2596 int err;
2597
b82b9183 2598 port->changed = true;
71472ec1
JP
2599 port->state.linkup = linkup;
2600 team_refresh_port_linkup(port);
3d249d4c
JP
2601 if (linkup) {
2602 struct ethtool_cmd ecmd;
2603
2604 err = __ethtool_get_settings(port->dev, &ecmd);
2605 if (!err) {
71472ec1
JP
2606 port->state.speed = ethtool_cmd_speed(&ecmd);
2607 port->state.duplex = ecmd.duplex;
3d249d4c
JP
2608 goto send_event;
2609 }
2610 }
71472ec1
JP
2611 port->state.speed = 0;
2612 port->state.duplex = 0;
3d249d4c
JP
2613
2614send_event:
d90f889e 2615 err = team_nl_send_event_port_get(port->team, port);
0c7517e9
JP
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);
3d249d4c
JP
2619
2620}
2621
06a7fc42
FL
2622static void __team_carrier_check(struct team *team)
2623{
2624 struct team_port *port;
2625 bool team_linkup;
2626
e185483e
FL
2627 if (team->user_carrier_enabled)
2628 return;
2629
06a7fc42
FL
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
10f3f51d
JP
2644static 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);
06a7fc42 2648 __team_carrier_check(port->team);
10f3f51d
JP
2649}
2650
2651static void __team_port_change_port_added(struct team_port *port, bool linkup)
2652{
2653 __team_port_change_send(port, linkup);
06a7fc42 2654 __team_carrier_check(port->team);
10f3f51d
JP
2655}
2656
2657static void __team_port_change_port_removed(struct team_port *port)
2658{
2659 port->removed = true;
2660 __team_port_change_send(port, false);
06a7fc42 2661 __team_carrier_check(port->team);
10f3f51d
JP
2662}
2663
3d249d4c
JP
2664static void team_port_change_check(struct team_port *port, bool linkup)
2665{
2666 struct team *team = port->team;
2667
61dc3461 2668 mutex_lock(&team->lock);
3d249d4c 2669 __team_port_change_check(port, linkup);
61dc3461 2670 mutex_unlock(&team->lock);
3d249d4c
JP
2671}
2672
0f1aad2b 2673
3d249d4c
JP
2674/************************************
2675 * Net device notifier event handler
2676 ************************************/
2677
2678static int team_device_event(struct notifier_block *unused,
2679 unsigned long event, void *ptr)
2680{
351638e7 2681 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3d249d4c
JP
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
2715static 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
2724static 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
2740err_nl_init:
2741 rtnl_link_unregister(&team_link_ops);
2742
2743err_rtnl_reg:
2744 unregister_netdevice_notifier(&team_notifier_block);
2745
2746 return err;
2747}
2748
2749static 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
2756module_init(team_module_init);
2757module_exit(team_module_exit);
2758
2759MODULE_LICENSE("GPL v2");
2760MODULE_AUTHOR("Jiri Pirko <jpirko@redhat.com>");
2761MODULE_DESCRIPTION("Ethernet team device driver");
2762MODULE_ALIAS_RTNL_LINK(DRV_NAME);