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