blob: 5b169c18aaf680dadd5238f14ac9f315cf52bf33 [file] [log] [blame]
Jiri Pirko3d249d42011-11-11 22:16:48 +00001/*
2 * net/drivers/team/team.c - Network team device driver
3 * Copyright (c) 2011 Jiri Pirko <jpirko@redhat.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 */
10
11#include <linux/kernel.h>
12#include <linux/types.h>
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/slab.h>
16#include <linux/rcupdate.h>
17#include <linux/errno.h>
18#include <linux/ctype.h>
19#include <linux/notifier.h>
20#include <linux/netdevice.h>
21#include <linux/if_arp.h>
22#include <linux/socket.h>
23#include <linux/etherdevice.h>
24#include <linux/rtnetlink.h>
25#include <net/rtnetlink.h>
26#include <net/genetlink.h>
27#include <net/netlink.h>
28#include <linux/if_team.h>
29
30#define DRV_NAME "team"
31
32
33/**********
34 * Helpers
35 **********/
36
37#define team_port_exists(dev) (dev->priv_flags & IFF_TEAM_PORT)
38
39static struct team_port *team_port_get_rcu(const struct net_device *dev)
40{
41 struct team_port *port = rcu_dereference(dev->rx_handler_data);
42
43 return team_port_exists(dev) ? port : NULL;
44}
45
46static struct team_port *team_port_get_rtnl(const struct net_device *dev)
47{
48 struct team_port *port = rtnl_dereference(dev->rx_handler_data);
49
50 return team_port_exists(dev) ? port : NULL;
51}
52
53/*
54 * Since the ability to change mac address for open port device is tested in
55 * team_port_add, this function can be called without control of return value
56 */
57static int __set_port_mac(struct net_device *port_dev,
58 const unsigned char *dev_addr)
59{
60 struct sockaddr addr;
61
62 memcpy(addr.sa_data, dev_addr, ETH_ALEN);
63 addr.sa_family = ARPHRD_ETHER;
64 return dev_set_mac_address(port_dev, &addr);
65}
66
67int team_port_set_orig_mac(struct team_port *port)
68{
69 return __set_port_mac(port->dev, port->orig.dev_addr);
70}
71
72int team_port_set_team_mac(struct team_port *port)
73{
74 return __set_port_mac(port->dev, port->team->dev->dev_addr);
75}
76EXPORT_SYMBOL(team_port_set_team_mac);
77
78
79/*******************
80 * Options handling
81 *******************/
82
Jiri Pirko358b8382011-11-16 11:09:09 +000083struct team_option *__team_find_option(struct team *team, const char *opt_name)
84{
85 struct team_option *option;
86
87 list_for_each_entry(option, &team->option_list, list) {
88 if (strcmp(option->name, opt_name) == 0)
89 return option;
90 }
91 return NULL;
92}
93
94int team_options_register(struct team *team,
95 const struct team_option *option,
96 size_t option_count)
Jiri Pirko3d249d42011-11-11 22:16:48 +000097{
98 int i;
Jiri Pirko358b8382011-11-16 11:09:09 +000099 struct team_option *dst_opts[option_count];
100 int err;
Jiri Pirko3d249d42011-11-11 22:16:48 +0000101
Jiri Pirko358b8382011-11-16 11:09:09 +0000102 memset(dst_opts, 0, sizeof(dst_opts));
103 for (i = 0; i < option_count; i++, option++) {
104 struct team_option *dst_opt;
105
106 if (__team_find_option(team, option->name)) {
107 err = -EEXIST;
108 goto rollback;
109 }
110 dst_opt = kmalloc(sizeof(*option), GFP_KERNEL);
111 if (!dst_opt) {
112 err = -ENOMEM;
113 goto rollback;
114 }
115 memcpy(dst_opt, option, sizeof(*option));
116 dst_opts[i] = dst_opt;
117 }
118
119 for (i = 0; i < option_count; i++)
120 list_add_tail(&dst_opts[i]->list, &team->option_list);
121
122 return 0;
123
124rollback:
125 for (i = 0; i < option_count; i++)
126 kfree(dst_opts[i]);
127
128 return err;
Jiri Pirko3d249d42011-11-11 22:16:48 +0000129}
Jiri Pirko358b8382011-11-16 11:09:09 +0000130
Jiri Pirko3d249d42011-11-11 22:16:48 +0000131EXPORT_SYMBOL(team_options_register);
132
133static void __team_options_change_check(struct team *team,
134 struct team_option *changed_option);
135
136static void __team_options_unregister(struct team *team,
Jiri Pirko358b8382011-11-16 11:09:09 +0000137 const struct team_option *option,
Jiri Pirko3d249d42011-11-11 22:16:48 +0000138 size_t option_count)
139{
140 int i;
141
Jiri Pirko358b8382011-11-16 11:09:09 +0000142 for (i = 0; i < option_count; i++, option++) {
143 struct team_option *del_opt;
144
145 del_opt = __team_find_option(team, option->name);
146 if (del_opt) {
147 list_del(&del_opt->list);
148 kfree(del_opt);
149 }
150 }
Jiri Pirko3d249d42011-11-11 22:16:48 +0000151}
152
Jiri Pirko358b8382011-11-16 11:09:09 +0000153void team_options_unregister(struct team *team,
154 const struct team_option *option,
Jiri Pirko3d249d42011-11-11 22:16:48 +0000155 size_t option_count)
156{
157 __team_options_unregister(team, option, option_count);
158 __team_options_change_check(team, NULL);
159}
160EXPORT_SYMBOL(team_options_unregister);
161
162static int team_option_get(struct team *team, struct team_option *option,
163 void *arg)
164{
165 return option->getter(team, arg);
166}
167
168static int team_option_set(struct team *team, struct team_option *option,
169 void *arg)
170{
171 int err;
172
173 err = option->setter(team, arg);
174 if (err)
175 return err;
176
177 __team_options_change_check(team, option);
178 return err;
179}
180
181/****************
182 * Mode handling
183 ****************/
184
185static LIST_HEAD(mode_list);
186static DEFINE_SPINLOCK(mode_list_lock);
187
188static struct team_mode *__find_mode(const char *kind)
189{
190 struct team_mode *mode;
191
192 list_for_each_entry(mode, &mode_list, list) {
193 if (strcmp(mode->kind, kind) == 0)
194 return mode;
195 }
196 return NULL;
197}
198
199static bool is_good_mode_name(const char *name)
200{
201 while (*name != '\0') {
202 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
203 return false;
204 name++;
205 }
206 return true;
207}
208
209int team_mode_register(struct team_mode *mode)
210{
211 int err = 0;
212
213 if (!is_good_mode_name(mode->kind) ||
214 mode->priv_size > TEAM_MODE_PRIV_SIZE)
215 return -EINVAL;
216 spin_lock(&mode_list_lock);
217 if (__find_mode(mode->kind)) {
218 err = -EEXIST;
219 goto unlock;
220 }
221 list_add_tail(&mode->list, &mode_list);
222unlock:
223 spin_unlock(&mode_list_lock);
224 return err;
225}
226EXPORT_SYMBOL(team_mode_register);
227
228int team_mode_unregister(struct team_mode *mode)
229{
230 spin_lock(&mode_list_lock);
231 list_del_init(&mode->list);
232 spin_unlock(&mode_list_lock);
233 return 0;
234}
235EXPORT_SYMBOL(team_mode_unregister);
236
237static struct team_mode *team_mode_get(const char *kind)
238{
239 struct team_mode *mode;
240
241 spin_lock(&mode_list_lock);
242 mode = __find_mode(kind);
243 if (!mode) {
244 spin_unlock(&mode_list_lock);
245 request_module("team-mode-%s", kind);
246 spin_lock(&mode_list_lock);
247 mode = __find_mode(kind);
248 }
249 if (mode)
250 if (!try_module_get(mode->owner))
251 mode = NULL;
252
253 spin_unlock(&mode_list_lock);
254 return mode;
255}
256
257static void team_mode_put(const struct team_mode *mode)
258{
259 module_put(mode->owner);
260}
261
262static bool team_dummy_transmit(struct team *team, struct sk_buff *skb)
263{
264 dev_kfree_skb_any(skb);
265 return false;
266}
267
268rx_handler_result_t team_dummy_receive(struct team *team,
269 struct team_port *port,
270 struct sk_buff *skb)
271{
272 return RX_HANDLER_ANOTHER;
273}
274
275static void team_adjust_ops(struct team *team)
276{
277 /*
278 * To avoid checks in rx/tx skb paths, ensure here that non-null and
279 * correct ops are always set.
280 */
281
282 if (list_empty(&team->port_list) ||
283 !team->mode || !team->mode->ops->transmit)
284 team->ops.transmit = team_dummy_transmit;
285 else
286 team->ops.transmit = team->mode->ops->transmit;
287
288 if (list_empty(&team->port_list) ||
289 !team->mode || !team->mode->ops->receive)
290 team->ops.receive = team_dummy_receive;
291 else
292 team->ops.receive = team->mode->ops->receive;
293}
294
295/*
296 * We can benefit from the fact that it's ensured no port is present
297 * at the time of mode change. Therefore no packets are in fly so there's no
298 * need to set mode operations in any special way.
299 */
300static int __team_change_mode(struct team *team,
301 const struct team_mode *new_mode)
302{
303 /* Check if mode was previously set and do cleanup if so */
304 if (team->mode) {
305 void (*exit_op)(struct team *team) = team->ops.exit;
306
307 /* Clear ops area so no callback is called any longer */
308 memset(&team->ops, 0, sizeof(struct team_mode_ops));
309 team_adjust_ops(team);
310
311 if (exit_op)
312 exit_op(team);
313 team_mode_put(team->mode);
314 team->mode = NULL;
315 /* zero private data area */
316 memset(&team->mode_priv, 0,
317 sizeof(struct team) - offsetof(struct team, mode_priv));
318 }
319
320 if (!new_mode)
321 return 0;
322
323 if (new_mode->ops->init) {
324 int err;
325
326 err = new_mode->ops->init(team);
327 if (err)
328 return err;
329 }
330
331 team->mode = new_mode;
332 memcpy(&team->ops, new_mode->ops, sizeof(struct team_mode_ops));
333 team_adjust_ops(team);
334
335 return 0;
336}
337
338static int team_change_mode(struct team *team, const char *kind)
339{
340 struct team_mode *new_mode;
341 struct net_device *dev = team->dev;
342 int err;
343
344 if (!list_empty(&team->port_list)) {
345 netdev_err(dev, "No ports can be present during mode change\n");
346 return -EBUSY;
347 }
348
349 if (team->mode && strcmp(team->mode->kind, kind) == 0) {
350 netdev_err(dev, "Unable to change to the same mode the team is in\n");
351 return -EINVAL;
352 }
353
354 new_mode = team_mode_get(kind);
355 if (!new_mode) {
356 netdev_err(dev, "Mode \"%s\" not found\n", kind);
357 return -EINVAL;
358 }
359
360 err = __team_change_mode(team, new_mode);
361 if (err) {
362 netdev_err(dev, "Failed to change to mode \"%s\"\n", kind);
363 team_mode_put(new_mode);
364 return err;
365 }
366
367 netdev_info(dev, "Mode changed to \"%s\"\n", kind);
368 return 0;
369}
370
371
372/************************
373 * Rx path frame handler
374 ************************/
375
376/* note: already called with rcu_read_lock */
377static rx_handler_result_t team_handle_frame(struct sk_buff **pskb)
378{
379 struct sk_buff *skb = *pskb;
380 struct team_port *port;
381 struct team *team;
382 rx_handler_result_t res;
383
384 skb = skb_share_check(skb, GFP_ATOMIC);
385 if (!skb)
386 return RX_HANDLER_CONSUMED;
387
388 *pskb = skb;
389
390 port = team_port_get_rcu(skb->dev);
391 team = port->team;
392
393 res = team->ops.receive(team, port, skb);
394 if (res == RX_HANDLER_ANOTHER) {
395 struct team_pcpu_stats *pcpu_stats;
396
397 pcpu_stats = this_cpu_ptr(team->pcpu_stats);
398 u64_stats_update_begin(&pcpu_stats->syncp);
399 pcpu_stats->rx_packets++;
400 pcpu_stats->rx_bytes += skb->len;
401 if (skb->pkt_type == PACKET_MULTICAST)
402 pcpu_stats->rx_multicast++;
403 u64_stats_update_end(&pcpu_stats->syncp);
404
405 skb->dev = team->dev;
406 } else {
407 this_cpu_inc(team->pcpu_stats->rx_dropped);
408 }
409
410 return res;
411}
412
413
414/****************
415 * Port handling
416 ****************/
417
418static bool team_port_find(const struct team *team,
419 const struct team_port *port)
420{
421 struct team_port *cur;
422
423 list_for_each_entry(cur, &team->port_list, list)
424 if (cur == port)
425 return true;
426 return false;
427}
428
429/*
430 * Add/delete port to the team port list. Write guarded by rtnl_lock.
431 * Takes care of correct port->index setup (might be racy).
432 */
433static void team_port_list_add_port(struct team *team,
434 struct team_port *port)
435{
436 port->index = team->port_count++;
437 hlist_add_head_rcu(&port->hlist,
438 team_port_index_hash(team, port->index));
439 list_add_tail_rcu(&port->list, &team->port_list);
440}
441
442static void __reconstruct_port_hlist(struct team *team, int rm_index)
443{
444 int i;
445 struct team_port *port;
446
447 for (i = rm_index + 1; i < team->port_count; i++) {
448 port = team_get_port_by_index(team, i);
449 hlist_del_rcu(&port->hlist);
450 port->index--;
451 hlist_add_head_rcu(&port->hlist,
452 team_port_index_hash(team, port->index));
453 }
454}
455
456static void team_port_list_del_port(struct team *team,
457 struct team_port *port)
458{
459 int rm_index = port->index;
460
461 hlist_del_rcu(&port->hlist);
462 list_del_rcu(&port->list);
463 __reconstruct_port_hlist(team, rm_index);
464 team->port_count--;
465}
466
467#define TEAM_VLAN_FEATURES (NETIF_F_ALL_CSUM | NETIF_F_SG | \
468 NETIF_F_FRAGLIST | NETIF_F_ALL_TSO | \
469 NETIF_F_HIGHDMA | NETIF_F_LRO)
470
471static void __team_compute_features(struct team *team)
472{
473 struct team_port *port;
474 u32 vlan_features = TEAM_VLAN_FEATURES;
475 unsigned short max_hard_header_len = ETH_HLEN;
476
477 list_for_each_entry(port, &team->port_list, list) {
478 vlan_features = netdev_increment_features(vlan_features,
479 port->dev->vlan_features,
480 TEAM_VLAN_FEATURES);
481
482 if (port->dev->hard_header_len > max_hard_header_len)
483 max_hard_header_len = port->dev->hard_header_len;
484 }
485
486 team->dev->vlan_features = vlan_features;
487 team->dev->hard_header_len = max_hard_header_len;
488
489 netdev_change_features(team->dev);
490}
491
492static void team_compute_features(struct team *team)
493{
Jiri Pirko61dc3462011-11-16 11:09:08 +0000494 mutex_lock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000495 __team_compute_features(team);
Jiri Pirko61dc3462011-11-16 11:09:08 +0000496 mutex_unlock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000497}
498
499static int team_port_enter(struct team *team, struct team_port *port)
500{
501 int err = 0;
502
503 dev_hold(team->dev);
504 port->dev->priv_flags |= IFF_TEAM_PORT;
505 if (team->ops.port_enter) {
506 err = team->ops.port_enter(team, port);
507 if (err) {
508 netdev_err(team->dev, "Device %s failed to enter team mode\n",
509 port->dev->name);
510 goto err_port_enter;
511 }
512 }
513
514 return 0;
515
516err_port_enter:
517 port->dev->priv_flags &= ~IFF_TEAM_PORT;
518 dev_put(team->dev);
519
520 return err;
521}
522
523static void team_port_leave(struct team *team, struct team_port *port)
524{
525 if (team->ops.port_leave)
526 team->ops.port_leave(team, port);
527 port->dev->priv_flags &= ~IFF_TEAM_PORT;
528 dev_put(team->dev);
529}
530
531static void __team_port_change_check(struct team_port *port, bool linkup);
532
533static int team_port_add(struct team *team, struct net_device *port_dev)
534{
535 struct net_device *dev = team->dev;
536 struct team_port *port;
537 char *portname = port_dev->name;
538 int err;
539
540 if (port_dev->flags & IFF_LOOPBACK ||
541 port_dev->type != ARPHRD_ETHER) {
542 netdev_err(dev, "Device %s is of an unsupported type\n",
543 portname);
544 return -EINVAL;
545 }
546
547 if (team_port_exists(port_dev)) {
548 netdev_err(dev, "Device %s is already a port "
549 "of a team device\n", portname);
550 return -EBUSY;
551 }
552
553 if (port_dev->flags & IFF_UP) {
554 netdev_err(dev, "Device %s is up. Set it down before adding it as a team port\n",
555 portname);
556 return -EBUSY;
557 }
558
559 port = kzalloc(sizeof(struct team_port), GFP_KERNEL);
560 if (!port)
561 return -ENOMEM;
562
563 port->dev = port_dev;
564 port->team = team;
565
566 port->orig.mtu = port_dev->mtu;
567 err = dev_set_mtu(port_dev, dev->mtu);
568 if (err) {
569 netdev_dbg(dev, "Error %d calling dev_set_mtu\n", err);
570 goto err_set_mtu;
571 }
572
573 memcpy(port->orig.dev_addr, port_dev->dev_addr, ETH_ALEN);
574
575 err = team_port_enter(team, port);
576 if (err) {
577 netdev_err(dev, "Device %s failed to enter team mode\n",
578 portname);
579 goto err_port_enter;
580 }
581
582 err = dev_open(port_dev);
583 if (err) {
584 netdev_dbg(dev, "Device %s opening failed\n",
585 portname);
586 goto err_dev_open;
587 }
588
589 err = netdev_set_master(port_dev, dev);
590 if (err) {
591 netdev_err(dev, "Device %s failed to set master\n", portname);
592 goto err_set_master;
593 }
594
595 err = netdev_rx_handler_register(port_dev, team_handle_frame,
596 port);
597 if (err) {
598 netdev_err(dev, "Device %s failed to register rx_handler\n",
599 portname);
600 goto err_handler_register;
601 }
602
603 team_port_list_add_port(team, port);
604 team_adjust_ops(team);
605 __team_compute_features(team);
606 __team_port_change_check(port, !!netif_carrier_ok(port_dev));
607
608 netdev_info(dev, "Port device %s added\n", portname);
609
610 return 0;
611
612err_handler_register:
613 netdev_set_master(port_dev, NULL);
614
615err_set_master:
616 dev_close(port_dev);
617
618err_dev_open:
619 team_port_leave(team, port);
620 team_port_set_orig_mac(port);
621
622err_port_enter:
623 dev_set_mtu(port_dev, port->orig.mtu);
624
625err_set_mtu:
626 kfree(port);
627
628 return err;
629}
630
631static int team_port_del(struct team *team, struct net_device *port_dev)
632{
633 struct net_device *dev = team->dev;
634 struct team_port *port;
635 char *portname = port_dev->name;
636
637 port = team_port_get_rtnl(port_dev);
638 if (!port || !team_port_find(team, port)) {
639 netdev_err(dev, "Device %s does not act as a port of this team\n",
640 portname);
641 return -ENOENT;
642 }
643
644 __team_port_change_check(port, false);
645 team_port_list_del_port(team, port);
646 team_adjust_ops(team);
647 netdev_rx_handler_unregister(port_dev);
648 netdev_set_master(port_dev, NULL);
649 dev_close(port_dev);
650 team_port_leave(team, port);
651 team_port_set_orig_mac(port);
652 dev_set_mtu(port_dev, port->orig.mtu);
653 synchronize_rcu();
654 kfree(port);
655 netdev_info(dev, "Port device %s removed\n", portname);
656 __team_compute_features(team);
657
658 return 0;
659}
660
661
662/*****************
663 * Net device ops
664 *****************/
665
666static const char team_no_mode_kind[] = "*NOMODE*";
667
668static int team_mode_option_get(struct team *team, void *arg)
669{
670 const char **str = arg;
671
672 *str = team->mode ? team->mode->kind : team_no_mode_kind;
673 return 0;
674}
675
676static int team_mode_option_set(struct team *team, void *arg)
677{
678 const char **str = arg;
679
680 return team_change_mode(team, *str);
681}
682
Jiri Pirko358b8382011-11-16 11:09:09 +0000683static const struct team_option team_options[] = {
Jiri Pirko3d249d42011-11-11 22:16:48 +0000684 {
685 .name = "mode",
686 .type = TEAM_OPTION_TYPE_STRING,
687 .getter = team_mode_option_get,
688 .setter = team_mode_option_set,
689 },
690};
691
692static int team_init(struct net_device *dev)
693{
694 struct team *team = netdev_priv(dev);
695 int i;
Jiri Pirko358b8382011-11-16 11:09:09 +0000696 int err;
Jiri Pirko3d249d42011-11-11 22:16:48 +0000697
698 team->dev = dev;
Jiri Pirko61dc3462011-11-16 11:09:08 +0000699 mutex_init(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000700
701 team->pcpu_stats = alloc_percpu(struct team_pcpu_stats);
702 if (!team->pcpu_stats)
703 return -ENOMEM;
704
705 for (i = 0; i < TEAM_PORT_HASHENTRIES; i++)
706 INIT_HLIST_HEAD(&team->port_hlist[i]);
707 INIT_LIST_HEAD(&team->port_list);
708
709 team_adjust_ops(team);
710
711 INIT_LIST_HEAD(&team->option_list);
Jiri Pirko358b8382011-11-16 11:09:09 +0000712 err = team_options_register(team, team_options, ARRAY_SIZE(team_options));
713 if (err)
714 goto err_options_register;
Jiri Pirko3d249d42011-11-11 22:16:48 +0000715 netif_carrier_off(dev);
716
717 return 0;
Jiri Pirko358b8382011-11-16 11:09:09 +0000718
719err_options_register:
720 free_percpu(team->pcpu_stats);
721
722 return err;
Jiri Pirko3d249d42011-11-11 22:16:48 +0000723}
724
725static void team_uninit(struct net_device *dev)
726{
727 struct team *team = netdev_priv(dev);
728 struct team_port *port;
729 struct team_port *tmp;
730
Jiri Pirko61dc3462011-11-16 11:09:08 +0000731 mutex_lock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000732 list_for_each_entry_safe(port, tmp, &team->port_list, list)
733 team_port_del(team, port->dev);
734
735 __team_change_mode(team, NULL); /* cleanup */
736 __team_options_unregister(team, team_options, ARRAY_SIZE(team_options));
Jiri Pirko61dc3462011-11-16 11:09:08 +0000737 mutex_unlock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000738}
739
740static void team_destructor(struct net_device *dev)
741{
742 struct team *team = netdev_priv(dev);
743
744 free_percpu(team->pcpu_stats);
745 free_netdev(dev);
746}
747
748static int team_open(struct net_device *dev)
749{
750 netif_carrier_on(dev);
751 return 0;
752}
753
754static int team_close(struct net_device *dev)
755{
756 netif_carrier_off(dev);
757 return 0;
758}
759
760/*
761 * note: already called with rcu_read_lock
762 */
763static netdev_tx_t team_xmit(struct sk_buff *skb, struct net_device *dev)
764{
765 struct team *team = netdev_priv(dev);
766 bool tx_success = false;
767 unsigned int len = skb->len;
768
769 tx_success = team->ops.transmit(team, skb);
770 if (tx_success) {
771 struct team_pcpu_stats *pcpu_stats;
772
773 pcpu_stats = this_cpu_ptr(team->pcpu_stats);
774 u64_stats_update_begin(&pcpu_stats->syncp);
775 pcpu_stats->tx_packets++;
776 pcpu_stats->tx_bytes += len;
777 u64_stats_update_end(&pcpu_stats->syncp);
778 } else {
779 this_cpu_inc(team->pcpu_stats->tx_dropped);
780 }
781
782 return NETDEV_TX_OK;
783}
784
785static void team_change_rx_flags(struct net_device *dev, int change)
786{
787 struct team *team = netdev_priv(dev);
788 struct team_port *port;
789 int inc;
790
791 rcu_read_lock();
792 list_for_each_entry_rcu(port, &team->port_list, list) {
793 if (change & IFF_PROMISC) {
794 inc = dev->flags & IFF_PROMISC ? 1 : -1;
795 dev_set_promiscuity(port->dev, inc);
796 }
797 if (change & IFF_ALLMULTI) {
798 inc = dev->flags & IFF_ALLMULTI ? 1 : -1;
799 dev_set_allmulti(port->dev, inc);
800 }
801 }
802 rcu_read_unlock();
803}
804
805static void team_set_rx_mode(struct net_device *dev)
806{
807 struct team *team = netdev_priv(dev);
808 struct team_port *port;
809
810 rcu_read_lock();
811 list_for_each_entry_rcu(port, &team->port_list, list) {
812 dev_uc_sync(port->dev, dev);
813 dev_mc_sync(port->dev, dev);
814 }
815 rcu_read_unlock();
816}
817
818static int team_set_mac_address(struct net_device *dev, void *p)
819{
820 struct team *team = netdev_priv(dev);
821 struct team_port *port;
822 struct sockaddr *addr = p;
823
824 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
825 rcu_read_lock();
826 list_for_each_entry_rcu(port, &team->port_list, list)
827 if (team->ops.port_change_mac)
828 team->ops.port_change_mac(team, port);
829 rcu_read_unlock();
830 return 0;
831}
832
833static int team_change_mtu(struct net_device *dev, int new_mtu)
834{
835 struct team *team = netdev_priv(dev);
836 struct team_port *port;
837 int err;
838
839 /*
840 * Alhough this is reader, it's guarded by team lock. It's not possible
841 * to traverse list in reverse under rcu_read_lock
842 */
Jiri Pirko61dc3462011-11-16 11:09:08 +0000843 mutex_lock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000844 list_for_each_entry(port, &team->port_list, list) {
845 err = dev_set_mtu(port->dev, new_mtu);
846 if (err) {
847 netdev_err(dev, "Device %s failed to change mtu",
848 port->dev->name);
849 goto unwind;
850 }
851 }
Jiri Pirko61dc3462011-11-16 11:09:08 +0000852 mutex_unlock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000853
854 dev->mtu = new_mtu;
855
856 return 0;
857
858unwind:
859 list_for_each_entry_continue_reverse(port, &team->port_list, list)
860 dev_set_mtu(port->dev, dev->mtu);
Jiri Pirko61dc3462011-11-16 11:09:08 +0000861 mutex_unlock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000862
863 return err;
864}
865
866static struct rtnl_link_stats64 *
867team_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
868{
869 struct team *team = netdev_priv(dev);
870 struct team_pcpu_stats *p;
871 u64 rx_packets, rx_bytes, rx_multicast, tx_packets, tx_bytes;
872 u32 rx_dropped = 0, tx_dropped = 0;
873 unsigned int start;
874 int i;
875
876 for_each_possible_cpu(i) {
877 p = per_cpu_ptr(team->pcpu_stats, i);
878 do {
879 start = u64_stats_fetch_begin_bh(&p->syncp);
880 rx_packets = p->rx_packets;
881 rx_bytes = p->rx_bytes;
882 rx_multicast = p->rx_multicast;
883 tx_packets = p->tx_packets;
884 tx_bytes = p->tx_bytes;
885 } while (u64_stats_fetch_retry_bh(&p->syncp, start));
886
887 stats->rx_packets += rx_packets;
888 stats->rx_bytes += rx_bytes;
889 stats->multicast += rx_multicast;
890 stats->tx_packets += tx_packets;
891 stats->tx_bytes += tx_bytes;
892 /*
893 * rx_dropped & tx_dropped are u32, updated
894 * without syncp protection.
895 */
896 rx_dropped += p->rx_dropped;
897 tx_dropped += p->tx_dropped;
898 }
899 stats->rx_dropped = rx_dropped;
900 stats->tx_dropped = tx_dropped;
901 return stats;
902}
903
904static void team_vlan_rx_add_vid(struct net_device *dev, uint16_t vid)
905{
906 struct team *team = netdev_priv(dev);
907 struct team_port *port;
908
909 rcu_read_lock();
910 list_for_each_entry_rcu(port, &team->port_list, list) {
911 const struct net_device_ops *ops = port->dev->netdev_ops;
912
913 if (ops->ndo_vlan_rx_add_vid)
914 ops->ndo_vlan_rx_add_vid(port->dev, vid);
915 }
916 rcu_read_unlock();
917}
918
919static void team_vlan_rx_kill_vid(struct net_device *dev, uint16_t vid)
920{
921 struct team *team = netdev_priv(dev);
922 struct team_port *port;
923
924 rcu_read_lock();
925 list_for_each_entry_rcu(port, &team->port_list, list) {
926 const struct net_device_ops *ops = port->dev->netdev_ops;
927
928 if (ops->ndo_vlan_rx_kill_vid)
929 ops->ndo_vlan_rx_kill_vid(port->dev, vid);
930 }
931 rcu_read_unlock();
932}
933
934static int team_add_slave(struct net_device *dev, struct net_device *port_dev)
935{
936 struct team *team = netdev_priv(dev);
937 int err;
938
Jiri Pirko61dc3462011-11-16 11:09:08 +0000939 mutex_lock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000940 err = team_port_add(team, port_dev);
Jiri Pirko61dc3462011-11-16 11:09:08 +0000941 mutex_unlock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000942 return err;
943}
944
945static int team_del_slave(struct net_device *dev, struct net_device *port_dev)
946{
947 struct team *team = netdev_priv(dev);
948 int err;
949
Jiri Pirko61dc3462011-11-16 11:09:08 +0000950 mutex_lock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000951 err = team_port_del(team, port_dev);
Jiri Pirko61dc3462011-11-16 11:09:08 +0000952 mutex_unlock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000953 return err;
954}
955
Jiri Pirko234a8fd2011-11-17 04:16:04 +0000956static netdev_features_t team_fix_features(struct net_device *dev,
957 netdev_features_t features)
958{
959 struct team_port *port;
960 struct team *team = netdev_priv(dev);
961 netdev_features_t mask;
962
963 mask = features;
964 features &= ~NETIF_F_ONE_FOR_ALL;
965 features |= NETIF_F_ALL_FOR_ALL;
966
967 rcu_read_lock();
968 list_for_each_entry_rcu(port, &team->port_list, list) {
969 features = netdev_increment_features(features,
970 port->dev->features,
971 mask);
972 }
973 rcu_read_unlock();
974 return features;
975}
976
Jiri Pirko3d249d42011-11-11 22:16:48 +0000977static const struct net_device_ops team_netdev_ops = {
978 .ndo_init = team_init,
979 .ndo_uninit = team_uninit,
980 .ndo_open = team_open,
981 .ndo_stop = team_close,
982 .ndo_start_xmit = team_xmit,
983 .ndo_change_rx_flags = team_change_rx_flags,
984 .ndo_set_rx_mode = team_set_rx_mode,
985 .ndo_set_mac_address = team_set_mac_address,
986 .ndo_change_mtu = team_change_mtu,
987 .ndo_get_stats64 = team_get_stats64,
988 .ndo_vlan_rx_add_vid = team_vlan_rx_add_vid,
989 .ndo_vlan_rx_kill_vid = team_vlan_rx_kill_vid,
990 .ndo_add_slave = team_add_slave,
991 .ndo_del_slave = team_del_slave,
Jiri Pirko234a8fd2011-11-17 04:16:04 +0000992 .ndo_fix_features = team_fix_features,
Jiri Pirko3d249d42011-11-11 22:16:48 +0000993};
994
995
996/***********************
997 * rt netlink interface
998 ***********************/
999
1000static void team_setup(struct net_device *dev)
1001{
1002 ether_setup(dev);
1003
1004 dev->netdev_ops = &team_netdev_ops;
1005 dev->destructor = team_destructor;
1006 dev->tx_queue_len = 0;
1007 dev->flags |= IFF_MULTICAST;
1008 dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING);
1009
1010 /*
1011 * Indicate we support unicast address filtering. That way core won't
1012 * bring us to promisc mode in case a unicast addr is added.
1013 * Let this up to underlay drivers.
1014 */
1015 dev->priv_flags |= IFF_UNICAST_FLT;
1016
1017 dev->features |= NETIF_F_LLTX;
1018 dev->features |= NETIF_F_GRO;
1019 dev->hw_features = NETIF_F_HW_VLAN_TX |
1020 NETIF_F_HW_VLAN_RX |
1021 NETIF_F_HW_VLAN_FILTER;
1022
1023 dev->features |= dev->hw_features;
1024}
1025
1026static int team_newlink(struct net *src_net, struct net_device *dev,
1027 struct nlattr *tb[], struct nlattr *data[])
1028{
1029 int err;
1030
1031 if (tb[IFLA_ADDRESS] == NULL)
1032 random_ether_addr(dev->dev_addr);
1033
1034 err = register_netdevice(dev);
1035 if (err)
1036 return err;
1037
1038 return 0;
1039}
1040
1041static int team_validate(struct nlattr *tb[], struct nlattr *data[])
1042{
1043 if (tb[IFLA_ADDRESS]) {
1044 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1045 return -EINVAL;
1046 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1047 return -EADDRNOTAVAIL;
1048 }
1049 return 0;
1050}
1051
1052static struct rtnl_link_ops team_link_ops __read_mostly = {
1053 .kind = DRV_NAME,
1054 .priv_size = sizeof(struct team),
1055 .setup = team_setup,
1056 .newlink = team_newlink,
1057 .validate = team_validate,
1058};
1059
1060
1061/***********************************
1062 * Generic netlink custom interface
1063 ***********************************/
1064
1065static struct genl_family team_nl_family = {
1066 .id = GENL_ID_GENERATE,
1067 .name = TEAM_GENL_NAME,
1068 .version = TEAM_GENL_VERSION,
1069 .maxattr = TEAM_ATTR_MAX,
1070 .netnsok = true,
1071};
1072
1073static const struct nla_policy team_nl_policy[TEAM_ATTR_MAX + 1] = {
1074 [TEAM_ATTR_UNSPEC] = { .type = NLA_UNSPEC, },
1075 [TEAM_ATTR_TEAM_IFINDEX] = { .type = NLA_U32 },
1076 [TEAM_ATTR_LIST_OPTION] = { .type = NLA_NESTED },
1077 [TEAM_ATTR_LIST_PORT] = { .type = NLA_NESTED },
1078};
1079
1080static const struct nla_policy
1081team_nl_option_policy[TEAM_ATTR_OPTION_MAX + 1] = {
1082 [TEAM_ATTR_OPTION_UNSPEC] = { .type = NLA_UNSPEC, },
1083 [TEAM_ATTR_OPTION_NAME] = {
1084 .type = NLA_STRING,
1085 .len = TEAM_STRING_MAX_LEN,
1086 },
1087 [TEAM_ATTR_OPTION_CHANGED] = { .type = NLA_FLAG },
1088 [TEAM_ATTR_OPTION_TYPE] = { .type = NLA_U8 },
1089 [TEAM_ATTR_OPTION_DATA] = {
1090 .type = NLA_BINARY,
1091 .len = TEAM_STRING_MAX_LEN,
1092 },
1093};
1094
1095static int team_nl_cmd_noop(struct sk_buff *skb, struct genl_info *info)
1096{
1097 struct sk_buff *msg;
1098 void *hdr;
1099 int err;
1100
1101 msg = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
1102 if (!msg)
1103 return -ENOMEM;
1104
1105 hdr = genlmsg_put(msg, info->snd_pid, info->snd_seq,
1106 &team_nl_family, 0, TEAM_CMD_NOOP);
1107 if (IS_ERR(hdr)) {
1108 err = PTR_ERR(hdr);
1109 goto err_msg_put;
1110 }
1111
1112 genlmsg_end(msg, hdr);
1113
1114 return genlmsg_unicast(genl_info_net(info), msg, info->snd_pid);
1115
1116err_msg_put:
1117 nlmsg_free(msg);
1118
1119 return err;
1120}
1121
1122/*
1123 * Netlink cmd functions should be locked by following two functions.
Jiri Pirko8c0713a2011-11-16 11:55:54 +00001124 * Since dev gets held here, that ensures dev won't disappear in between.
Jiri Pirko3d249d42011-11-11 22:16:48 +00001125 */
1126static struct team *team_nl_team_get(struct genl_info *info)
1127{
1128 struct net *net = genl_info_net(info);
1129 int ifindex;
1130 struct net_device *dev;
1131 struct team *team;
1132
1133 if (!info->attrs[TEAM_ATTR_TEAM_IFINDEX])
1134 return NULL;
1135
1136 ifindex = nla_get_u32(info->attrs[TEAM_ATTR_TEAM_IFINDEX]);
Jiri Pirko8c0713a2011-11-16 11:55:54 +00001137 dev = dev_get_by_index(net, ifindex);
Jiri Pirko3d249d42011-11-11 22:16:48 +00001138 if (!dev || dev->netdev_ops != &team_netdev_ops) {
Jiri Pirko8c0713a2011-11-16 11:55:54 +00001139 if (dev)
1140 dev_put(dev);
Jiri Pirko3d249d42011-11-11 22:16:48 +00001141 return NULL;
1142 }
1143
1144 team = netdev_priv(dev);
Jiri Pirko61dc3462011-11-16 11:09:08 +00001145 mutex_lock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +00001146 return team;
1147}
1148
1149static void team_nl_team_put(struct team *team)
1150{
Jiri Pirko61dc3462011-11-16 11:09:08 +00001151 mutex_unlock(&team->lock);
Jiri Pirko8c0713a2011-11-16 11:55:54 +00001152 dev_put(team->dev);
Jiri Pirko3d249d42011-11-11 22:16:48 +00001153}
1154
1155static int team_nl_send_generic(struct genl_info *info, struct team *team,
1156 int (*fill_func)(struct sk_buff *skb,
1157 struct genl_info *info,
1158 int flags, struct team *team))
1159{
1160 struct sk_buff *skb;
1161 int err;
1162
1163 skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
1164 if (!skb)
1165 return -ENOMEM;
1166
1167 err = fill_func(skb, info, NLM_F_ACK, team);
1168 if (err < 0)
1169 goto err_fill;
1170
1171 err = genlmsg_unicast(genl_info_net(info), skb, info->snd_pid);
1172 return err;
1173
1174err_fill:
1175 nlmsg_free(skb);
1176 return err;
1177}
1178
1179static int team_nl_fill_options_get_changed(struct sk_buff *skb,
1180 u32 pid, u32 seq, int flags,
1181 struct team *team,
1182 struct team_option *changed_option)
1183{
1184 struct nlattr *option_list;
1185 void *hdr;
1186 struct team_option *option;
1187
1188 hdr = genlmsg_put(skb, pid, seq, &team_nl_family, flags,
1189 TEAM_CMD_OPTIONS_GET);
1190 if (IS_ERR(hdr))
1191 return PTR_ERR(hdr);
1192
1193 NLA_PUT_U32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex);
1194 option_list = nla_nest_start(skb, TEAM_ATTR_LIST_OPTION);
1195 if (!option_list)
1196 return -EMSGSIZE;
1197
1198 list_for_each_entry(option, &team->option_list, list) {
1199 struct nlattr *option_item;
1200 long arg;
1201
1202 option_item = nla_nest_start(skb, TEAM_ATTR_ITEM_OPTION);
1203 if (!option_item)
1204 goto nla_put_failure;
1205 NLA_PUT_STRING(skb, TEAM_ATTR_OPTION_NAME, option->name);
1206 if (option == changed_option)
1207 NLA_PUT_FLAG(skb, TEAM_ATTR_OPTION_CHANGED);
1208 switch (option->type) {
1209 case TEAM_OPTION_TYPE_U32:
1210 NLA_PUT_U8(skb, TEAM_ATTR_OPTION_TYPE, NLA_U32);
1211 team_option_get(team, option, &arg);
1212 NLA_PUT_U32(skb, TEAM_ATTR_OPTION_DATA, arg);
1213 break;
1214 case TEAM_OPTION_TYPE_STRING:
1215 NLA_PUT_U8(skb, TEAM_ATTR_OPTION_TYPE, NLA_STRING);
1216 team_option_get(team, option, &arg);
1217 NLA_PUT_STRING(skb, TEAM_ATTR_OPTION_DATA,
1218 (char *) arg);
1219 break;
1220 default:
1221 BUG();
1222 }
1223 nla_nest_end(skb, option_item);
1224 }
1225
1226 nla_nest_end(skb, option_list);
1227 return genlmsg_end(skb, hdr);
1228
1229nla_put_failure:
1230 genlmsg_cancel(skb, hdr);
1231 return -EMSGSIZE;
1232}
1233
1234static int team_nl_fill_options_get(struct sk_buff *skb,
1235 struct genl_info *info, int flags,
1236 struct team *team)
1237{
1238 return team_nl_fill_options_get_changed(skb, info->snd_pid,
1239 info->snd_seq, NLM_F_ACK,
1240 team, NULL);
1241}
1242
1243static int team_nl_cmd_options_get(struct sk_buff *skb, struct genl_info *info)
1244{
1245 struct team *team;
1246 int err;
1247
1248 team = team_nl_team_get(info);
1249 if (!team)
1250 return -EINVAL;
1251
1252 err = team_nl_send_generic(info, team, team_nl_fill_options_get);
1253
1254 team_nl_team_put(team);
1255
1256 return err;
1257}
1258
1259static int team_nl_cmd_options_set(struct sk_buff *skb, struct genl_info *info)
1260{
1261 struct team *team;
1262 int err = 0;
1263 int i;
1264 struct nlattr *nl_option;
1265
1266 team = team_nl_team_get(info);
1267 if (!team)
1268 return -EINVAL;
1269
1270 err = -EINVAL;
1271 if (!info->attrs[TEAM_ATTR_LIST_OPTION]) {
1272 err = -EINVAL;
1273 goto team_put;
1274 }
1275
1276 nla_for_each_nested(nl_option, info->attrs[TEAM_ATTR_LIST_OPTION], i) {
1277 struct nlattr *mode_attrs[TEAM_ATTR_OPTION_MAX + 1];
1278 enum team_option_type opt_type;
1279 struct team_option *option;
1280 char *opt_name;
1281 bool opt_found = false;
1282
1283 if (nla_type(nl_option) != TEAM_ATTR_ITEM_OPTION) {
1284 err = -EINVAL;
1285 goto team_put;
1286 }
1287 err = nla_parse_nested(mode_attrs, TEAM_ATTR_OPTION_MAX,
1288 nl_option, team_nl_option_policy);
1289 if (err)
1290 goto team_put;
1291 if (!mode_attrs[TEAM_ATTR_OPTION_NAME] ||
1292 !mode_attrs[TEAM_ATTR_OPTION_TYPE] ||
1293 !mode_attrs[TEAM_ATTR_OPTION_DATA]) {
1294 err = -EINVAL;
1295 goto team_put;
1296 }
1297 switch (nla_get_u8(mode_attrs[TEAM_ATTR_OPTION_TYPE])) {
1298 case NLA_U32:
1299 opt_type = TEAM_OPTION_TYPE_U32;
1300 break;
1301 case NLA_STRING:
1302 opt_type = TEAM_OPTION_TYPE_STRING;
1303 break;
1304 default:
1305 goto team_put;
1306 }
1307
1308 opt_name = nla_data(mode_attrs[TEAM_ATTR_OPTION_NAME]);
1309 list_for_each_entry(option, &team->option_list, list) {
1310 long arg;
1311 struct nlattr *opt_data_attr;
1312
1313 if (option->type != opt_type ||
1314 strcmp(option->name, opt_name))
1315 continue;
1316 opt_found = true;
1317 opt_data_attr = mode_attrs[TEAM_ATTR_OPTION_DATA];
1318 switch (opt_type) {
1319 case TEAM_OPTION_TYPE_U32:
1320 arg = nla_get_u32(opt_data_attr);
1321 break;
1322 case TEAM_OPTION_TYPE_STRING:
1323 arg = (long) nla_data(opt_data_attr);
1324 break;
1325 default:
1326 BUG();
1327 }
1328 err = team_option_set(team, option, &arg);
1329 if (err)
1330 goto team_put;
1331 }
1332 if (!opt_found) {
1333 err = -ENOENT;
1334 goto team_put;
1335 }
1336 }
1337
1338team_put:
1339 team_nl_team_put(team);
1340
1341 return err;
1342}
1343
1344static int team_nl_fill_port_list_get_changed(struct sk_buff *skb,
1345 u32 pid, u32 seq, int flags,
1346 struct team *team,
1347 struct team_port *changed_port)
1348{
1349 struct nlattr *port_list;
1350 void *hdr;
1351 struct team_port *port;
1352
1353 hdr = genlmsg_put(skb, pid, seq, &team_nl_family, flags,
1354 TEAM_CMD_PORT_LIST_GET);
1355 if (IS_ERR(hdr))
1356 return PTR_ERR(hdr);
1357
1358 NLA_PUT_U32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex);
1359 port_list = nla_nest_start(skb, TEAM_ATTR_LIST_PORT);
1360 if (!port_list)
1361 return -EMSGSIZE;
1362
1363 list_for_each_entry(port, &team->port_list, list) {
1364 struct nlattr *port_item;
1365
1366 port_item = nla_nest_start(skb, TEAM_ATTR_ITEM_PORT);
1367 if (!port_item)
1368 goto nla_put_failure;
1369 NLA_PUT_U32(skb, TEAM_ATTR_PORT_IFINDEX, port->dev->ifindex);
1370 if (port == changed_port)
1371 NLA_PUT_FLAG(skb, TEAM_ATTR_PORT_CHANGED);
1372 if (port->linkup)
1373 NLA_PUT_FLAG(skb, TEAM_ATTR_PORT_LINKUP);
1374 NLA_PUT_U32(skb, TEAM_ATTR_PORT_SPEED, port->speed);
1375 NLA_PUT_U8(skb, TEAM_ATTR_PORT_DUPLEX, port->duplex);
1376 nla_nest_end(skb, port_item);
1377 }
1378
1379 nla_nest_end(skb, port_list);
1380 return genlmsg_end(skb, hdr);
1381
1382nla_put_failure:
1383 genlmsg_cancel(skb, hdr);
1384 return -EMSGSIZE;
1385}
1386
1387static int team_nl_fill_port_list_get(struct sk_buff *skb,
1388 struct genl_info *info, int flags,
1389 struct team *team)
1390{
1391 return team_nl_fill_port_list_get_changed(skb, info->snd_pid,
1392 info->snd_seq, NLM_F_ACK,
1393 team, NULL);
1394}
1395
1396static int team_nl_cmd_port_list_get(struct sk_buff *skb,
1397 struct genl_info *info)
1398{
1399 struct team *team;
1400 int err;
1401
1402 team = team_nl_team_get(info);
1403 if (!team)
1404 return -EINVAL;
1405
1406 err = team_nl_send_generic(info, team, team_nl_fill_port_list_get);
1407
1408 team_nl_team_put(team);
1409
1410 return err;
1411}
1412
1413static struct genl_ops team_nl_ops[] = {
1414 {
1415 .cmd = TEAM_CMD_NOOP,
1416 .doit = team_nl_cmd_noop,
1417 .policy = team_nl_policy,
1418 },
1419 {
1420 .cmd = TEAM_CMD_OPTIONS_SET,
1421 .doit = team_nl_cmd_options_set,
1422 .policy = team_nl_policy,
1423 .flags = GENL_ADMIN_PERM,
1424 },
1425 {
1426 .cmd = TEAM_CMD_OPTIONS_GET,
1427 .doit = team_nl_cmd_options_get,
1428 .policy = team_nl_policy,
1429 .flags = GENL_ADMIN_PERM,
1430 },
1431 {
1432 .cmd = TEAM_CMD_PORT_LIST_GET,
1433 .doit = team_nl_cmd_port_list_get,
1434 .policy = team_nl_policy,
1435 .flags = GENL_ADMIN_PERM,
1436 },
1437};
1438
1439static struct genl_multicast_group team_change_event_mcgrp = {
1440 .name = TEAM_GENL_CHANGE_EVENT_MC_GRP_NAME,
1441};
1442
1443static int team_nl_send_event_options_get(struct team *team,
1444 struct team_option *changed_option)
1445{
1446 struct sk_buff *skb;
1447 int err;
1448 struct net *net = dev_net(team->dev);
1449
1450 skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
1451 if (!skb)
1452 return -ENOMEM;
1453
1454 err = team_nl_fill_options_get_changed(skb, 0, 0, 0, team,
1455 changed_option);
1456 if (err < 0)
1457 goto err_fill;
1458
1459 err = genlmsg_multicast_netns(net, skb, 0, team_change_event_mcgrp.id,
1460 GFP_KERNEL);
1461 return err;
1462
1463err_fill:
1464 nlmsg_free(skb);
1465 return err;
1466}
1467
1468static int team_nl_send_event_port_list_get(struct team_port *port)
1469{
1470 struct sk_buff *skb;
1471 int err;
1472 struct net *net = dev_net(port->team->dev);
1473
1474 skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
1475 if (!skb)
1476 return -ENOMEM;
1477
1478 err = team_nl_fill_port_list_get_changed(skb, 0, 0, 0,
1479 port->team, port);
1480 if (err < 0)
1481 goto err_fill;
1482
1483 err = genlmsg_multicast_netns(net, skb, 0, team_change_event_mcgrp.id,
1484 GFP_KERNEL);
1485 return err;
1486
1487err_fill:
1488 nlmsg_free(skb);
1489 return err;
1490}
1491
1492static int team_nl_init(void)
1493{
1494 int err;
1495
1496 err = genl_register_family_with_ops(&team_nl_family, team_nl_ops,
1497 ARRAY_SIZE(team_nl_ops));
1498 if (err)
1499 return err;
1500
1501 err = genl_register_mc_group(&team_nl_family, &team_change_event_mcgrp);
1502 if (err)
1503 goto err_change_event_grp_reg;
1504
1505 return 0;
1506
1507err_change_event_grp_reg:
1508 genl_unregister_family(&team_nl_family);
1509
1510 return err;
1511}
1512
1513static void team_nl_fini(void)
1514{
1515 genl_unregister_family(&team_nl_family);
1516}
1517
1518
1519/******************
1520 * Change checkers
1521 ******************/
1522
1523static void __team_options_change_check(struct team *team,
1524 struct team_option *changed_option)
1525{
1526 int err;
1527
1528 err = team_nl_send_event_options_get(team, changed_option);
1529 if (err)
1530 netdev_warn(team->dev, "Failed to send options change via netlink\n");
1531}
1532
1533/* rtnl lock is held */
1534static void __team_port_change_check(struct team_port *port, bool linkup)
1535{
1536 int err;
1537
1538 if (port->linkup == linkup)
1539 return;
1540
1541 port->linkup = linkup;
1542 if (linkup) {
1543 struct ethtool_cmd ecmd;
1544
1545 err = __ethtool_get_settings(port->dev, &ecmd);
1546 if (!err) {
1547 port->speed = ethtool_cmd_speed(&ecmd);
1548 port->duplex = ecmd.duplex;
1549 goto send_event;
1550 }
1551 }
1552 port->speed = 0;
1553 port->duplex = 0;
1554
1555send_event:
1556 err = team_nl_send_event_port_list_get(port);
1557 if (err)
1558 netdev_warn(port->team->dev, "Failed to send port change of device %s via netlink\n",
1559 port->dev->name);
1560
1561}
1562
1563static void team_port_change_check(struct team_port *port, bool linkup)
1564{
1565 struct team *team = port->team;
1566
Jiri Pirko61dc3462011-11-16 11:09:08 +00001567 mutex_lock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +00001568 __team_port_change_check(port, linkup);
Jiri Pirko61dc3462011-11-16 11:09:08 +00001569 mutex_unlock(&team->lock);
Jiri Pirko3d249d42011-11-11 22:16:48 +00001570}
1571
1572/************************************
1573 * Net device notifier event handler
1574 ************************************/
1575
1576static int team_device_event(struct notifier_block *unused,
1577 unsigned long event, void *ptr)
1578{
1579 struct net_device *dev = (struct net_device *) ptr;
1580 struct team_port *port;
1581
1582 port = team_port_get_rtnl(dev);
1583 if (!port)
1584 return NOTIFY_DONE;
1585
1586 switch (event) {
1587 case NETDEV_UP:
1588 if (netif_carrier_ok(dev))
1589 team_port_change_check(port, true);
1590 case NETDEV_DOWN:
1591 team_port_change_check(port, false);
1592 case NETDEV_CHANGE:
1593 if (netif_running(port->dev))
1594 team_port_change_check(port,
1595 !!netif_carrier_ok(port->dev));
1596 break;
1597 case NETDEV_UNREGISTER:
1598 team_del_slave(port->team->dev, dev);
1599 break;
1600 case NETDEV_FEAT_CHANGE:
1601 team_compute_features(port->team);
1602 break;
1603 case NETDEV_CHANGEMTU:
1604 /* Forbid to change mtu of underlaying device */
1605 return NOTIFY_BAD;
1606 case NETDEV_PRE_TYPE_CHANGE:
1607 /* Forbid to change type of underlaying device */
1608 return NOTIFY_BAD;
1609 }
1610 return NOTIFY_DONE;
1611}
1612
1613static struct notifier_block team_notifier_block __read_mostly = {
1614 .notifier_call = team_device_event,
1615};
1616
1617
1618/***********************
1619 * Module init and exit
1620 ***********************/
1621
1622static int __init team_module_init(void)
1623{
1624 int err;
1625
1626 register_netdevice_notifier(&team_notifier_block);
1627
1628 err = rtnl_link_register(&team_link_ops);
1629 if (err)
1630 goto err_rtnl_reg;
1631
1632 err = team_nl_init();
1633 if (err)
1634 goto err_nl_init;
1635
1636 return 0;
1637
1638err_nl_init:
1639 rtnl_link_unregister(&team_link_ops);
1640
1641err_rtnl_reg:
1642 unregister_netdevice_notifier(&team_notifier_block);
1643
1644 return err;
1645}
1646
1647static void __exit team_module_exit(void)
1648{
1649 team_nl_fini();
1650 rtnl_link_unregister(&team_link_ops);
1651 unregister_netdevice_notifier(&team_notifier_block);
1652}
1653
1654module_init(team_module_init);
1655module_exit(team_module_exit);
1656
1657MODULE_LICENSE("GPL v2");
1658MODULE_AUTHOR("Jiri Pirko <jpirko@redhat.com>");
1659MODULE_DESCRIPTION("Ethernet team device driver");
1660MODULE_ALIAS_RTNL_LINK(DRV_NAME);