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