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