1 // SPDX-License-Identifier: GPL-1.0+ 2 /* 3 * originally based on the dummy device. 4 * 5 * Copyright 1999, Thomas Davis, tadavis@lbl.gov. 6 * Based on dummy.c, and eql.c devices. 7 * 8 * bonding.c: an Ethernet Bonding driver 9 * 10 * This is useful to talk to a Cisco EtherChannel compatible equipment: 11 * Cisco 5500 12 * Sun Trunking (Solaris) 13 * Alteon AceDirector Trunks 14 * Linux Bonding 15 * and probably many L2 switches ... 16 * 17 * How it works: 18 * ifconfig bond0 ipaddress netmask up 19 * will setup a network device, with an ip address. No mac address 20 * will be assigned at this time. The hw mac address will come from 21 * the first slave bonded to the channel. All slaves will then use 22 * this hw mac address. 23 * 24 * ifconfig bond0 down 25 * will release all slaves, marking them as down. 26 * 27 * ifenslave bond0 eth0 28 * will attach eth0 to bond0 as a slave. eth0 hw mac address will either 29 * a: be used as initial mac address 30 * b: if a hw mac address already is there, eth0's hw mac address 31 * will then be set from bond0. 32 * 33 */ 34 35 #include <linux/kernel.h> 36 #include <linux/module.h> 37 #include <linux/types.h> 38 #include <linux/fcntl.h> 39 #include <linux/filter.h> 40 #include <linux/interrupt.h> 41 #include <linux/ptrace.h> 42 #include <linux/ioport.h> 43 #include <linux/in.h> 44 #include <net/ip.h> 45 #include <linux/ip.h> 46 #include <linux/icmp.h> 47 #include <linux/icmpv6.h> 48 #include <linux/tcp.h> 49 #include <linux/udp.h> 50 #include <linux/slab.h> 51 #include <linux/string.h> 52 #include <linux/init.h> 53 #include <linux/timer.h> 54 #include <linux/socket.h> 55 #include <linux/ctype.h> 56 #include <linux/inet.h> 57 #include <linux/bitops.h> 58 #include <linux/io.h> 59 #include <asm/dma.h> 60 #include <linux/uaccess.h> 61 #include <linux/errno.h> 62 #include <linux/netdevice.h> 63 #include <linux/inetdevice.h> 64 #include <linux/igmp.h> 65 #include <linux/etherdevice.h> 66 #include <linux/skbuff.h> 67 #include <net/sock.h> 68 #include <linux/rtnetlink.h> 69 #include <linux/smp.h> 70 #include <linux/if_ether.h> 71 #include <net/arp.h> 72 #include <linux/mii.h> 73 #include <linux/ethtool.h> 74 #include <linux/if_vlan.h> 75 #include <linux/if_bonding.h> 76 #include <linux/phy.h> 77 #include <linux/jiffies.h> 78 #include <linux/preempt.h> 79 #include <net/route.h> 80 #include <net/net_namespace.h> 81 #include <net/netns/generic.h> 82 #include <net/pkt_sched.h> 83 #include <linux/rculist.h> 84 #include <net/flow_dissector.h> 85 #include <net/xfrm.h> 86 #include <net/bonding.h> 87 #include <net/bond_3ad.h> 88 #include <net/bond_alb.h> 89 #if IS_ENABLED(CONFIG_TLS_DEVICE) 90 #include <net/tls.h> 91 #endif 92 #include <net/ip6_route.h> 93 94 #include "bonding_priv.h" 95 96 /*---------------------------- Module parameters ----------------------------*/ 97 98 /* monitor all links that often (in milliseconds). <=0 disables monitoring */ 99 100 static int max_bonds = BOND_DEFAULT_MAX_BONDS; 101 static int tx_queues = BOND_DEFAULT_TX_QUEUES; 102 static int num_peer_notif = 1; 103 static int miimon; 104 static int updelay; 105 static int downdelay; 106 static int use_carrier = 1; 107 static char *mode; 108 static char *primary; 109 static char *primary_reselect; 110 static char *lacp_rate; 111 static int min_links; 112 static char *ad_select; 113 static char *xmit_hash_policy; 114 static int arp_interval; 115 static char *arp_ip_target[BOND_MAX_ARP_TARGETS]; 116 static char *arp_validate; 117 static char *arp_all_targets; 118 static char *fail_over_mac; 119 static int all_slaves_active; 120 static struct bond_params bonding_defaults; 121 static int resend_igmp = BOND_DEFAULT_RESEND_IGMP; 122 static int packets_per_slave = 1; 123 static int lp_interval = BOND_ALB_DEFAULT_LP_INTERVAL; 124 125 module_param(max_bonds, int, 0); 126 MODULE_PARM_DESC(max_bonds, "Max number of bonded devices"); 127 module_param(tx_queues, int, 0); 128 MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)"); 129 module_param_named(num_grat_arp, num_peer_notif, int, 0644); 130 MODULE_PARM_DESC(num_grat_arp, "Number of peer notifications to send on " 131 "failover event (alias of num_unsol_na)"); 132 module_param_named(num_unsol_na, num_peer_notif, int, 0644); 133 MODULE_PARM_DESC(num_unsol_na, "Number of peer notifications to send on " 134 "failover event (alias of num_grat_arp)"); 135 module_param(miimon, int, 0); 136 MODULE_PARM_DESC(miimon, "Link check interval in milliseconds"); 137 module_param(updelay, int, 0); 138 MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds"); 139 module_param(downdelay, int, 0); 140 MODULE_PARM_DESC(downdelay, "Delay before considering link down, " 141 "in milliseconds"); 142 module_param(use_carrier, int, 0); 143 MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; " 144 "0 for off, 1 for on (default)"); 145 module_param(mode, charp, 0); 146 MODULE_PARM_DESC(mode, "Mode of operation; 0 for balance-rr, " 147 "1 for active-backup, 2 for balance-xor, " 148 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, " 149 "6 for balance-alb"); 150 module_param(primary, charp, 0); 151 MODULE_PARM_DESC(primary, "Primary network device to use"); 152 module_param(primary_reselect, charp, 0); 153 MODULE_PARM_DESC(primary_reselect, "Reselect primary slave " 154 "once it comes up; " 155 "0 for always (default), " 156 "1 for only if speed of primary is " 157 "better, " 158 "2 for only on active slave " 159 "failure"); 160 module_param(lacp_rate, charp, 0); 161 MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner; " 162 "0 for slow, 1 for fast"); 163 module_param(ad_select, charp, 0); 164 MODULE_PARM_DESC(ad_select, "802.3ad aggregation selection logic; " 165 "0 for stable (default), 1 for bandwidth, " 166 "2 for count"); 167 module_param(min_links, int, 0); 168 MODULE_PARM_DESC(min_links, "Minimum number of available links before turning on carrier"); 169 170 module_param(xmit_hash_policy, charp, 0); 171 MODULE_PARM_DESC(xmit_hash_policy, "balance-alb, balance-tlb, balance-xor, 802.3ad hashing method; " 172 "0 for layer 2 (default), 1 for layer 3+4, " 173 "2 for layer 2+3, 3 for encap layer 2+3, " 174 "4 for encap layer 3+4, 5 for vlan+srcmac"); 175 module_param(arp_interval, int, 0); 176 MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds"); 177 module_param_array(arp_ip_target, charp, NULL, 0); 178 MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form"); 179 module_param(arp_validate, charp, 0); 180 MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes; " 181 "0 for none (default), 1 for active, " 182 "2 for backup, 3 for all"); 183 module_param(arp_all_targets, charp, 0); 184 MODULE_PARM_DESC(arp_all_targets, "fail on any/all arp targets timeout; 0 for any (default), 1 for all"); 185 module_param(fail_over_mac, charp, 0); 186 MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to " 187 "the same MAC; 0 for none (default), " 188 "1 for active, 2 for follow"); 189 module_param(all_slaves_active, int, 0); 190 MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface " 191 "by setting active flag for all slaves; " 192 "0 for never (default), 1 for always."); 193 module_param(resend_igmp, int, 0); 194 MODULE_PARM_DESC(resend_igmp, "Number of IGMP membership reports to send on " 195 "link failure"); 196 module_param(packets_per_slave, int, 0); 197 MODULE_PARM_DESC(packets_per_slave, "Packets to send per slave in balance-rr " 198 "mode; 0 for a random slave, 1 packet per " 199 "slave (default), >1 packets per slave."); 200 module_param(lp_interval, uint, 0); 201 MODULE_PARM_DESC(lp_interval, "The number of seconds between instances where " 202 "the bonding driver sends learning packets to " 203 "each slaves peer switch. The default is 1."); 204 205 /*----------------------------- Global variables ----------------------------*/ 206 207 #ifdef CONFIG_NET_POLL_CONTROLLER 208 atomic_t netpoll_block_tx = ATOMIC_INIT(0); 209 #endif 210 211 unsigned int bond_net_id __read_mostly; 212 213 static const struct flow_dissector_key flow_keys_bonding_keys[] = { 214 { 215 .key_id = FLOW_DISSECTOR_KEY_CONTROL, 216 .offset = offsetof(struct flow_keys, control), 217 }, 218 { 219 .key_id = FLOW_DISSECTOR_KEY_BASIC, 220 .offset = offsetof(struct flow_keys, basic), 221 }, 222 { 223 .key_id = FLOW_DISSECTOR_KEY_IPV4_ADDRS, 224 .offset = offsetof(struct flow_keys, addrs.v4addrs), 225 }, 226 { 227 .key_id = FLOW_DISSECTOR_KEY_IPV6_ADDRS, 228 .offset = offsetof(struct flow_keys, addrs.v6addrs), 229 }, 230 { 231 .key_id = FLOW_DISSECTOR_KEY_TIPC, 232 .offset = offsetof(struct flow_keys, addrs.tipckey), 233 }, 234 { 235 .key_id = FLOW_DISSECTOR_KEY_PORTS, 236 .offset = offsetof(struct flow_keys, ports), 237 }, 238 { 239 .key_id = FLOW_DISSECTOR_KEY_ICMP, 240 .offset = offsetof(struct flow_keys, icmp), 241 }, 242 { 243 .key_id = FLOW_DISSECTOR_KEY_VLAN, 244 .offset = offsetof(struct flow_keys, vlan), 245 }, 246 { 247 .key_id = FLOW_DISSECTOR_KEY_FLOW_LABEL, 248 .offset = offsetof(struct flow_keys, tags), 249 }, 250 { 251 .key_id = FLOW_DISSECTOR_KEY_GRE_KEYID, 252 .offset = offsetof(struct flow_keys, keyid), 253 }, 254 }; 255 256 static struct flow_dissector flow_keys_bonding __read_mostly; 257 258 /*-------------------------- Forward declarations ---------------------------*/ 259 260 static int bond_init(struct net_device *bond_dev); 261 static void bond_uninit(struct net_device *bond_dev); 262 static void bond_get_stats(struct net_device *bond_dev, 263 struct rtnl_link_stats64 *stats); 264 static void bond_slave_arr_handler(struct work_struct *work); 265 static bool bond_time_in_interval(struct bonding *bond, unsigned long last_act, 266 int mod); 267 static void bond_netdev_notify_work(struct work_struct *work); 268 269 /*---------------------------- General routines -----------------------------*/ 270 271 const char *bond_mode_name(int mode) 272 { 273 static const char *names[] = { 274 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)", 275 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)", 276 [BOND_MODE_XOR] = "load balancing (xor)", 277 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)", 278 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation", 279 [BOND_MODE_TLB] = "transmit load balancing", 280 [BOND_MODE_ALB] = "adaptive load balancing", 281 }; 282 283 if (mode < BOND_MODE_ROUNDROBIN || mode > BOND_MODE_ALB) 284 return "unknown"; 285 286 return names[mode]; 287 } 288 289 /** 290 * bond_dev_queue_xmit - Prepare skb for xmit. 291 * 292 * @bond: bond device that got this skb for tx. 293 * @skb: hw accel VLAN tagged skb to transmit 294 * @slave_dev: slave that is supposed to xmit this skbuff 295 */ 296 netdev_tx_t bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb, 297 struct net_device *slave_dev) 298 { 299 skb->dev = slave_dev; 300 301 BUILD_BUG_ON(sizeof(skb->queue_mapping) != 302 sizeof(qdisc_skb_cb(skb)->slave_dev_queue_mapping)); 303 skb_set_queue_mapping(skb, qdisc_skb_cb(skb)->slave_dev_queue_mapping); 304 305 if (unlikely(netpoll_tx_running(bond->dev))) 306 return bond_netpoll_send_skb(bond_get_slave_by_dev(bond, slave_dev), skb); 307 308 return dev_queue_xmit(skb); 309 } 310 311 static bool bond_sk_check(struct bonding *bond) 312 { 313 switch (BOND_MODE(bond)) { 314 case BOND_MODE_8023AD: 315 case BOND_MODE_XOR: 316 if (bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER34) 317 return true; 318 fallthrough; 319 default: 320 return false; 321 } 322 } 323 324 static bool bond_xdp_check(struct bonding *bond) 325 { 326 switch (BOND_MODE(bond)) { 327 case BOND_MODE_ROUNDROBIN: 328 case BOND_MODE_ACTIVEBACKUP: 329 return true; 330 case BOND_MODE_8023AD: 331 case BOND_MODE_XOR: 332 /* vlan+srcmac is not supported with XDP as in most cases the 802.1q 333 * payload is not in the packet due to hardware offload. 334 */ 335 if (bond->params.xmit_policy != BOND_XMIT_POLICY_VLAN_SRCMAC) 336 return true; 337 fallthrough; 338 default: 339 return false; 340 } 341 } 342 343 /*---------------------------------- VLAN -----------------------------------*/ 344 345 /* In the following 2 functions, bond_vlan_rx_add_vid and bond_vlan_rx_kill_vid, 346 * We don't protect the slave list iteration with a lock because: 347 * a. This operation is performed in IOCTL context, 348 * b. The operation is protected by the RTNL semaphore in the 8021q code, 349 * c. Holding a lock with BH disabled while directly calling a base driver 350 * entry point is generally a BAD idea. 351 * 352 * The design of synchronization/protection for this operation in the 8021q 353 * module is good for one or more VLAN devices over a single physical device 354 * and cannot be extended for a teaming solution like bonding, so there is a 355 * potential race condition here where a net device from the vlan group might 356 * be referenced (either by a base driver or the 8021q code) while it is being 357 * removed from the system. However, it turns out we're not making matters 358 * worse, and if it works for regular VLAN usage it will work here too. 359 */ 360 361 /** 362 * bond_vlan_rx_add_vid - Propagates adding an id to slaves 363 * @bond_dev: bonding net device that got called 364 * @proto: network protocol ID 365 * @vid: vlan id being added 366 */ 367 static int bond_vlan_rx_add_vid(struct net_device *bond_dev, 368 __be16 proto, u16 vid) 369 { 370 struct bonding *bond = netdev_priv(bond_dev); 371 struct slave *slave, *rollback_slave; 372 struct list_head *iter; 373 int res; 374 375 bond_for_each_slave(bond, slave, iter) { 376 res = vlan_vid_add(slave->dev, proto, vid); 377 if (res) 378 goto unwind; 379 } 380 381 return 0; 382 383 unwind: 384 /* unwind to the slave that failed */ 385 bond_for_each_slave(bond, rollback_slave, iter) { 386 if (rollback_slave == slave) 387 break; 388 389 vlan_vid_del(rollback_slave->dev, proto, vid); 390 } 391 392 return res; 393 } 394 395 /** 396 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves 397 * @bond_dev: bonding net device that got called 398 * @proto: network protocol ID 399 * @vid: vlan id being removed 400 */ 401 static int bond_vlan_rx_kill_vid(struct net_device *bond_dev, 402 __be16 proto, u16 vid) 403 { 404 struct bonding *bond = netdev_priv(bond_dev); 405 struct list_head *iter; 406 struct slave *slave; 407 408 bond_for_each_slave(bond, slave, iter) 409 vlan_vid_del(slave->dev, proto, vid); 410 411 if (bond_is_lb(bond)) 412 bond_alb_clear_vlan(bond, vid); 413 414 return 0; 415 } 416 417 /*---------------------------------- XFRM -----------------------------------*/ 418 419 #ifdef CONFIG_XFRM_OFFLOAD 420 /** 421 * bond_ipsec_add_sa - program device with a security association 422 * @xs: pointer to transformer state struct 423 * @extack: extack point to fill failure reason 424 **/ 425 static int bond_ipsec_add_sa(struct xfrm_state *xs, 426 struct netlink_ext_ack *extack) 427 { 428 struct net_device *bond_dev = xs->xso.dev; 429 struct bond_ipsec *ipsec; 430 struct bonding *bond; 431 struct slave *slave; 432 int err; 433 434 if (!bond_dev) 435 return -EINVAL; 436 437 rcu_read_lock(); 438 bond = netdev_priv(bond_dev); 439 slave = rcu_dereference(bond->curr_active_slave); 440 if (!slave) { 441 rcu_read_unlock(); 442 return -ENODEV; 443 } 444 445 if (!slave->dev->xfrmdev_ops || 446 !slave->dev->xfrmdev_ops->xdo_dev_state_add || 447 netif_is_bond_master(slave->dev)) { 448 NL_SET_ERR_MSG_MOD(extack, "Slave does not support ipsec offload"); 449 rcu_read_unlock(); 450 return -EINVAL; 451 } 452 453 ipsec = kmalloc(sizeof(*ipsec), GFP_ATOMIC); 454 if (!ipsec) { 455 rcu_read_unlock(); 456 return -ENOMEM; 457 } 458 xs->xso.real_dev = slave->dev; 459 460 err = slave->dev->xfrmdev_ops->xdo_dev_state_add(xs, extack); 461 if (!err) { 462 ipsec->xs = xs; 463 INIT_LIST_HEAD(&ipsec->list); 464 spin_lock_bh(&bond->ipsec_lock); 465 list_add(&ipsec->list, &bond->ipsec_list); 466 spin_unlock_bh(&bond->ipsec_lock); 467 } else { 468 kfree(ipsec); 469 } 470 rcu_read_unlock(); 471 return err; 472 } 473 474 static void bond_ipsec_add_sa_all(struct bonding *bond) 475 { 476 struct net_device *bond_dev = bond->dev; 477 struct bond_ipsec *ipsec; 478 struct slave *slave; 479 480 rcu_read_lock(); 481 slave = rcu_dereference(bond->curr_active_slave); 482 if (!slave) 483 goto out; 484 485 if (!slave->dev->xfrmdev_ops || 486 !slave->dev->xfrmdev_ops->xdo_dev_state_add || 487 netif_is_bond_master(slave->dev)) { 488 spin_lock_bh(&bond->ipsec_lock); 489 if (!list_empty(&bond->ipsec_list)) 490 slave_warn(bond_dev, slave->dev, 491 "%s: no slave xdo_dev_state_add\n", 492 __func__); 493 spin_unlock_bh(&bond->ipsec_lock); 494 goto out; 495 } 496 497 spin_lock_bh(&bond->ipsec_lock); 498 list_for_each_entry(ipsec, &bond->ipsec_list, list) { 499 ipsec->xs->xso.real_dev = slave->dev; 500 if (slave->dev->xfrmdev_ops->xdo_dev_state_add(ipsec->xs, NULL)) { 501 slave_warn(bond_dev, slave->dev, "%s: failed to add SA\n", __func__); 502 ipsec->xs->xso.real_dev = NULL; 503 } 504 } 505 spin_unlock_bh(&bond->ipsec_lock); 506 out: 507 rcu_read_unlock(); 508 } 509 510 /** 511 * bond_ipsec_del_sa - clear out this specific SA 512 * @xs: pointer to transformer state struct 513 **/ 514 static void bond_ipsec_del_sa(struct xfrm_state *xs) 515 { 516 struct net_device *bond_dev = xs->xso.dev; 517 struct bond_ipsec *ipsec; 518 struct bonding *bond; 519 struct slave *slave; 520 521 if (!bond_dev) 522 return; 523 524 rcu_read_lock(); 525 bond = netdev_priv(bond_dev); 526 slave = rcu_dereference(bond->curr_active_slave); 527 528 if (!slave) 529 goto out; 530 531 if (!xs->xso.real_dev) 532 goto out; 533 534 WARN_ON(xs->xso.real_dev != slave->dev); 535 536 if (!slave->dev->xfrmdev_ops || 537 !slave->dev->xfrmdev_ops->xdo_dev_state_delete || 538 netif_is_bond_master(slave->dev)) { 539 slave_warn(bond_dev, slave->dev, "%s: no slave xdo_dev_state_delete\n", __func__); 540 goto out; 541 } 542 543 slave->dev->xfrmdev_ops->xdo_dev_state_delete(xs); 544 out: 545 spin_lock_bh(&bond->ipsec_lock); 546 list_for_each_entry(ipsec, &bond->ipsec_list, list) { 547 if (ipsec->xs == xs) { 548 list_del(&ipsec->list); 549 kfree(ipsec); 550 break; 551 } 552 } 553 spin_unlock_bh(&bond->ipsec_lock); 554 rcu_read_unlock(); 555 } 556 557 static void bond_ipsec_del_sa_all(struct bonding *bond) 558 { 559 struct net_device *bond_dev = bond->dev; 560 struct bond_ipsec *ipsec; 561 struct slave *slave; 562 563 rcu_read_lock(); 564 slave = rcu_dereference(bond->curr_active_slave); 565 if (!slave) { 566 rcu_read_unlock(); 567 return; 568 } 569 570 spin_lock_bh(&bond->ipsec_lock); 571 list_for_each_entry(ipsec, &bond->ipsec_list, list) { 572 if (!ipsec->xs->xso.real_dev) 573 continue; 574 575 if (!slave->dev->xfrmdev_ops || 576 !slave->dev->xfrmdev_ops->xdo_dev_state_delete || 577 netif_is_bond_master(slave->dev)) { 578 slave_warn(bond_dev, slave->dev, 579 "%s: no slave xdo_dev_state_delete\n", 580 __func__); 581 } else { 582 slave->dev->xfrmdev_ops->xdo_dev_state_delete(ipsec->xs); 583 } 584 ipsec->xs->xso.real_dev = NULL; 585 } 586 spin_unlock_bh(&bond->ipsec_lock); 587 rcu_read_unlock(); 588 } 589 590 /** 591 * bond_ipsec_offload_ok - can this packet use the xfrm hw offload 592 * @skb: current data packet 593 * @xs: pointer to transformer state struct 594 **/ 595 static bool bond_ipsec_offload_ok(struct sk_buff *skb, struct xfrm_state *xs) 596 { 597 struct net_device *bond_dev = xs->xso.dev; 598 struct net_device *real_dev; 599 struct slave *curr_active; 600 struct bonding *bond; 601 int err; 602 603 bond = netdev_priv(bond_dev); 604 rcu_read_lock(); 605 curr_active = rcu_dereference(bond->curr_active_slave); 606 real_dev = curr_active->dev; 607 608 if (BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) { 609 err = false; 610 goto out; 611 } 612 613 if (!xs->xso.real_dev) { 614 err = false; 615 goto out; 616 } 617 618 if (!real_dev->xfrmdev_ops || 619 !real_dev->xfrmdev_ops->xdo_dev_offload_ok || 620 netif_is_bond_master(real_dev)) { 621 err = false; 622 goto out; 623 } 624 625 err = real_dev->xfrmdev_ops->xdo_dev_offload_ok(skb, xs); 626 out: 627 rcu_read_unlock(); 628 return err; 629 } 630 631 static const struct xfrmdev_ops bond_xfrmdev_ops = { 632 .xdo_dev_state_add = bond_ipsec_add_sa, 633 .xdo_dev_state_delete = bond_ipsec_del_sa, 634 .xdo_dev_offload_ok = bond_ipsec_offload_ok, 635 }; 636 #endif /* CONFIG_XFRM_OFFLOAD */ 637 638 /*------------------------------- Link status -------------------------------*/ 639 640 /* Set the carrier state for the master according to the state of its 641 * slaves. If any slaves are up, the master is up. In 802.3ad mode, 642 * do special 802.3ad magic. 643 * 644 * Returns zero if carrier state does not change, nonzero if it does. 645 */ 646 int bond_set_carrier(struct bonding *bond) 647 { 648 struct list_head *iter; 649 struct slave *slave; 650 651 if (!bond_has_slaves(bond)) 652 goto down; 653 654 if (BOND_MODE(bond) == BOND_MODE_8023AD) 655 return bond_3ad_set_carrier(bond); 656 657 bond_for_each_slave(bond, slave, iter) { 658 if (slave->link == BOND_LINK_UP) { 659 if (!netif_carrier_ok(bond->dev)) { 660 netif_carrier_on(bond->dev); 661 return 1; 662 } 663 return 0; 664 } 665 } 666 667 down: 668 if (netif_carrier_ok(bond->dev)) { 669 netif_carrier_off(bond->dev); 670 return 1; 671 } 672 return 0; 673 } 674 675 /* Get link speed and duplex from the slave's base driver 676 * using ethtool. If for some reason the call fails or the 677 * values are invalid, set speed and duplex to -1, 678 * and return. Return 1 if speed or duplex settings are 679 * UNKNOWN; 0 otherwise. 680 */ 681 static int bond_update_speed_duplex(struct slave *slave) 682 { 683 struct net_device *slave_dev = slave->dev; 684 struct ethtool_link_ksettings ecmd; 685 int res; 686 687 slave->speed = SPEED_UNKNOWN; 688 slave->duplex = DUPLEX_UNKNOWN; 689 690 res = __ethtool_get_link_ksettings(slave_dev, &ecmd); 691 if (res < 0) 692 return 1; 693 if (ecmd.base.speed == 0 || ecmd.base.speed == ((__u32)-1)) 694 return 1; 695 switch (ecmd.base.duplex) { 696 case DUPLEX_FULL: 697 case DUPLEX_HALF: 698 break; 699 default: 700 return 1; 701 } 702 703 slave->speed = ecmd.base.speed; 704 slave->duplex = ecmd.base.duplex; 705 706 return 0; 707 } 708 709 const char *bond_slave_link_status(s8 link) 710 { 711 switch (link) { 712 case BOND_LINK_UP: 713 return "up"; 714 case BOND_LINK_FAIL: 715 return "going down"; 716 case BOND_LINK_DOWN: 717 return "down"; 718 case BOND_LINK_BACK: 719 return "going back"; 720 default: 721 return "unknown"; 722 } 723 } 724 725 /* if <dev> supports MII link status reporting, check its link status. 726 * 727 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(), 728 * depending upon the setting of the use_carrier parameter. 729 * 730 * Return either BMSR_LSTATUS, meaning that the link is up (or we 731 * can't tell and just pretend it is), or 0, meaning that the link is 732 * down. 733 * 734 * If reporting is non-zero, instead of faking link up, return -1 if 735 * both ETHTOOL and MII ioctls fail (meaning the device does not 736 * support them). If use_carrier is set, return whatever it says. 737 * It'd be nice if there was a good way to tell if a driver supports 738 * netif_carrier, but there really isn't. 739 */ 740 static int bond_check_dev_link(struct bonding *bond, 741 struct net_device *slave_dev, int reporting) 742 { 743 const struct net_device_ops *slave_ops = slave_dev->netdev_ops; 744 int (*ioctl)(struct net_device *, struct ifreq *, int); 745 struct ifreq ifr; 746 struct mii_ioctl_data *mii; 747 748 if (!reporting && !netif_running(slave_dev)) 749 return 0; 750 751 if (bond->params.use_carrier) 752 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0; 753 754 /* Try to get link status using Ethtool first. */ 755 if (slave_dev->ethtool_ops->get_link) 756 return slave_dev->ethtool_ops->get_link(slave_dev) ? 757 BMSR_LSTATUS : 0; 758 759 /* Ethtool can't be used, fallback to MII ioctls. */ 760 ioctl = slave_ops->ndo_eth_ioctl; 761 if (ioctl) { 762 /* TODO: set pointer to correct ioctl on a per team member 763 * bases to make this more efficient. that is, once 764 * we determine the correct ioctl, we will always 765 * call it and not the others for that team 766 * member. 767 */ 768 769 /* We cannot assume that SIOCGMIIPHY will also read a 770 * register; not all network drivers (e.g., e100) 771 * support that. 772 */ 773 774 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */ 775 strscpy_pad(ifr.ifr_name, slave_dev->name, IFNAMSIZ); 776 mii = if_mii(&ifr); 777 if (ioctl(slave_dev, &ifr, SIOCGMIIPHY) == 0) { 778 mii->reg_num = MII_BMSR; 779 if (ioctl(slave_dev, &ifr, SIOCGMIIREG) == 0) 780 return mii->val_out & BMSR_LSTATUS; 781 } 782 } 783 784 /* If reporting, report that either there's no ndo_eth_ioctl, 785 * or both SIOCGMIIREG and get_link failed (meaning that we 786 * cannot report link status). If not reporting, pretend 787 * we're ok. 788 */ 789 return reporting ? -1 : BMSR_LSTATUS; 790 } 791 792 /*----------------------------- Multicast list ------------------------------*/ 793 794 /* Push the promiscuity flag down to appropriate slaves */ 795 static int bond_set_promiscuity(struct bonding *bond, int inc) 796 { 797 struct list_head *iter; 798 int err = 0; 799 800 if (bond_uses_primary(bond)) { 801 struct slave *curr_active = rtnl_dereference(bond->curr_active_slave); 802 803 if (curr_active) 804 err = dev_set_promiscuity(curr_active->dev, inc); 805 } else { 806 struct slave *slave; 807 808 bond_for_each_slave(bond, slave, iter) { 809 err = dev_set_promiscuity(slave->dev, inc); 810 if (err) 811 return err; 812 } 813 } 814 return err; 815 } 816 817 /* Push the allmulti flag down to all slaves */ 818 static int bond_set_allmulti(struct bonding *bond, int inc) 819 { 820 struct list_head *iter; 821 int err = 0; 822 823 if (bond_uses_primary(bond)) { 824 struct slave *curr_active = rtnl_dereference(bond->curr_active_slave); 825 826 if (curr_active) 827 err = dev_set_allmulti(curr_active->dev, inc); 828 } else { 829 struct slave *slave; 830 831 bond_for_each_slave(bond, slave, iter) { 832 err = dev_set_allmulti(slave->dev, inc); 833 if (err) 834 return err; 835 } 836 } 837 return err; 838 } 839 840 /* Retrieve the list of registered multicast addresses for the bonding 841 * device and retransmit an IGMP JOIN request to the current active 842 * slave. 843 */ 844 static void bond_resend_igmp_join_requests_delayed(struct work_struct *work) 845 { 846 struct bonding *bond = container_of(work, struct bonding, 847 mcast_work.work); 848 849 if (!rtnl_trylock()) { 850 queue_delayed_work(bond->wq, &bond->mcast_work, 1); 851 return; 852 } 853 call_netdevice_notifiers(NETDEV_RESEND_IGMP, bond->dev); 854 855 if (bond->igmp_retrans > 1) { 856 bond->igmp_retrans--; 857 queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5); 858 } 859 rtnl_unlock(); 860 } 861 862 /* Flush bond's hardware addresses from slave */ 863 static void bond_hw_addr_flush(struct net_device *bond_dev, 864 struct net_device *slave_dev) 865 { 866 struct bonding *bond = netdev_priv(bond_dev); 867 868 dev_uc_unsync(slave_dev, bond_dev); 869 dev_mc_unsync(slave_dev, bond_dev); 870 871 if (BOND_MODE(bond) == BOND_MODE_8023AD) 872 dev_mc_del(slave_dev, lacpdu_mcast_addr); 873 } 874 875 /*--------------------------- Active slave change ---------------------------*/ 876 877 /* Update the hardware address list and promisc/allmulti for the new and 878 * old active slaves (if any). Modes that are not using primary keep all 879 * slaves up date at all times; only the modes that use primary need to call 880 * this function to swap these settings during a failover. 881 */ 882 static void bond_hw_addr_swap(struct bonding *bond, struct slave *new_active, 883 struct slave *old_active) 884 { 885 if (old_active) { 886 if (bond->dev->flags & IFF_PROMISC) 887 dev_set_promiscuity(old_active->dev, -1); 888 889 if (bond->dev->flags & IFF_ALLMULTI) 890 dev_set_allmulti(old_active->dev, -1); 891 892 if (bond->dev->flags & IFF_UP) 893 bond_hw_addr_flush(bond->dev, old_active->dev); 894 } 895 896 if (new_active) { 897 /* FIXME: Signal errors upstream. */ 898 if (bond->dev->flags & IFF_PROMISC) 899 dev_set_promiscuity(new_active->dev, 1); 900 901 if (bond->dev->flags & IFF_ALLMULTI) 902 dev_set_allmulti(new_active->dev, 1); 903 904 if (bond->dev->flags & IFF_UP) { 905 netif_addr_lock_bh(bond->dev); 906 dev_uc_sync(new_active->dev, bond->dev); 907 dev_mc_sync(new_active->dev, bond->dev); 908 netif_addr_unlock_bh(bond->dev); 909 } 910 } 911 } 912 913 /** 914 * bond_set_dev_addr - clone slave's address to bond 915 * @bond_dev: bond net device 916 * @slave_dev: slave net device 917 * 918 * Should be called with RTNL held. 919 */ 920 static int bond_set_dev_addr(struct net_device *bond_dev, 921 struct net_device *slave_dev) 922 { 923 int err; 924 925 slave_dbg(bond_dev, slave_dev, "bond_dev=%p slave_dev=%p slave_dev->addr_len=%d\n", 926 bond_dev, slave_dev, slave_dev->addr_len); 927 err = dev_pre_changeaddr_notify(bond_dev, slave_dev->dev_addr, NULL); 928 if (err) 929 return err; 930 931 __dev_addr_set(bond_dev, slave_dev->dev_addr, slave_dev->addr_len); 932 bond_dev->addr_assign_type = NET_ADDR_STOLEN; 933 call_netdevice_notifiers(NETDEV_CHANGEADDR, bond_dev); 934 return 0; 935 } 936 937 static struct slave *bond_get_old_active(struct bonding *bond, 938 struct slave *new_active) 939 { 940 struct slave *slave; 941 struct list_head *iter; 942 943 bond_for_each_slave(bond, slave, iter) { 944 if (slave == new_active) 945 continue; 946 947 if (ether_addr_equal(bond->dev->dev_addr, slave->dev->dev_addr)) 948 return slave; 949 } 950 951 return NULL; 952 } 953 954 /* bond_do_fail_over_mac 955 * 956 * Perform special MAC address swapping for fail_over_mac settings 957 * 958 * Called with RTNL 959 */ 960 static void bond_do_fail_over_mac(struct bonding *bond, 961 struct slave *new_active, 962 struct slave *old_active) 963 { 964 u8 tmp_mac[MAX_ADDR_LEN]; 965 struct sockaddr_storage ss; 966 int rv; 967 968 switch (bond->params.fail_over_mac) { 969 case BOND_FOM_ACTIVE: 970 if (new_active) { 971 rv = bond_set_dev_addr(bond->dev, new_active->dev); 972 if (rv) 973 slave_err(bond->dev, new_active->dev, "Error %d setting bond MAC from slave\n", 974 -rv); 975 } 976 break; 977 case BOND_FOM_FOLLOW: 978 /* if new_active && old_active, swap them 979 * if just old_active, do nothing (going to no active slave) 980 * if just new_active, set new_active to bond's MAC 981 */ 982 if (!new_active) 983 return; 984 985 if (!old_active) 986 old_active = bond_get_old_active(bond, new_active); 987 988 if (old_active) { 989 bond_hw_addr_copy(tmp_mac, new_active->dev->dev_addr, 990 new_active->dev->addr_len); 991 bond_hw_addr_copy(ss.__data, 992 old_active->dev->dev_addr, 993 old_active->dev->addr_len); 994 ss.ss_family = new_active->dev->type; 995 } else { 996 bond_hw_addr_copy(ss.__data, bond->dev->dev_addr, 997 bond->dev->addr_len); 998 ss.ss_family = bond->dev->type; 999 } 1000 1001 rv = dev_set_mac_address(new_active->dev, 1002 (struct sockaddr *)&ss, NULL); 1003 if (rv) { 1004 slave_err(bond->dev, new_active->dev, "Error %d setting MAC of new active slave\n", 1005 -rv); 1006 goto out; 1007 } 1008 1009 if (!old_active) 1010 goto out; 1011 1012 bond_hw_addr_copy(ss.__data, tmp_mac, 1013 new_active->dev->addr_len); 1014 ss.ss_family = old_active->dev->type; 1015 1016 rv = dev_set_mac_address(old_active->dev, 1017 (struct sockaddr *)&ss, NULL); 1018 if (rv) 1019 slave_err(bond->dev, old_active->dev, "Error %d setting MAC of old active slave\n", 1020 -rv); 1021 out: 1022 break; 1023 default: 1024 netdev_err(bond->dev, "bond_do_fail_over_mac impossible: bad policy %d\n", 1025 bond->params.fail_over_mac); 1026 break; 1027 } 1028 1029 } 1030 1031 /** 1032 * bond_choose_primary_or_current - select the primary or high priority slave 1033 * @bond: our bonding struct 1034 * 1035 * - Check if there is a primary link. If the primary link was set and is up, 1036 * go on and do link reselection. 1037 * 1038 * - If primary link is not set or down, find the highest priority link. 1039 * If the highest priority link is not current slave, set it as primary 1040 * link and do link reselection. 1041 */ 1042 static struct slave *bond_choose_primary_or_current(struct bonding *bond) 1043 { 1044 struct slave *prim = rtnl_dereference(bond->primary_slave); 1045 struct slave *curr = rtnl_dereference(bond->curr_active_slave); 1046 struct slave *slave, *hprio = NULL; 1047 struct list_head *iter; 1048 1049 if (!prim || prim->link != BOND_LINK_UP) { 1050 bond_for_each_slave(bond, slave, iter) { 1051 if (slave->link == BOND_LINK_UP) { 1052 hprio = hprio ?: slave; 1053 if (slave->prio > hprio->prio) 1054 hprio = slave; 1055 } 1056 } 1057 1058 if (hprio && hprio != curr) { 1059 prim = hprio; 1060 goto link_reselect; 1061 } 1062 1063 if (!curr || curr->link != BOND_LINK_UP) 1064 return NULL; 1065 return curr; 1066 } 1067 1068 if (bond->force_primary) { 1069 bond->force_primary = false; 1070 return prim; 1071 } 1072 1073 link_reselect: 1074 if (!curr || curr->link != BOND_LINK_UP) 1075 return prim; 1076 1077 /* At this point, prim and curr are both up */ 1078 switch (bond->params.primary_reselect) { 1079 case BOND_PRI_RESELECT_ALWAYS: 1080 return prim; 1081 case BOND_PRI_RESELECT_BETTER: 1082 if (prim->speed < curr->speed) 1083 return curr; 1084 if (prim->speed == curr->speed && prim->duplex <= curr->duplex) 1085 return curr; 1086 return prim; 1087 case BOND_PRI_RESELECT_FAILURE: 1088 return curr; 1089 default: 1090 netdev_err(bond->dev, "impossible primary_reselect %d\n", 1091 bond->params.primary_reselect); 1092 return curr; 1093 } 1094 } 1095 1096 /** 1097 * bond_find_best_slave - select the best available slave to be the active one 1098 * @bond: our bonding struct 1099 */ 1100 static struct slave *bond_find_best_slave(struct bonding *bond) 1101 { 1102 struct slave *slave, *bestslave = NULL; 1103 struct list_head *iter; 1104 int mintime = bond->params.updelay; 1105 1106 slave = bond_choose_primary_or_current(bond); 1107 if (slave) 1108 return slave; 1109 1110 bond_for_each_slave(bond, slave, iter) { 1111 if (slave->link == BOND_LINK_UP) 1112 return slave; 1113 if (slave->link == BOND_LINK_BACK && bond_slave_is_up(slave) && 1114 slave->delay < mintime) { 1115 mintime = slave->delay; 1116 bestslave = slave; 1117 } 1118 } 1119 1120 return bestslave; 1121 } 1122 1123 static bool bond_should_notify_peers(struct bonding *bond) 1124 { 1125 struct slave *slave; 1126 1127 rcu_read_lock(); 1128 slave = rcu_dereference(bond->curr_active_slave); 1129 rcu_read_unlock(); 1130 1131 if (!slave || !bond->send_peer_notif || 1132 bond->send_peer_notif % 1133 max(1, bond->params.peer_notif_delay) != 0 || 1134 !netif_carrier_ok(bond->dev) || 1135 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state)) 1136 return false; 1137 1138 netdev_dbg(bond->dev, "bond_should_notify_peers: slave %s\n", 1139 slave ? slave->dev->name : "NULL"); 1140 1141 return true; 1142 } 1143 1144 /** 1145 * bond_change_active_slave - change the active slave into the specified one 1146 * @bond: our bonding struct 1147 * @new_active: the new slave to make the active one 1148 * 1149 * Set the new slave to the bond's settings and unset them on the old 1150 * curr_active_slave. 1151 * Setting include flags, mc-list, promiscuity, allmulti, etc. 1152 * 1153 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP, 1154 * because it is apparently the best available slave we have, even though its 1155 * updelay hasn't timed out yet. 1156 * 1157 * Caller must hold RTNL. 1158 */ 1159 void bond_change_active_slave(struct bonding *bond, struct slave *new_active) 1160 { 1161 struct slave *old_active; 1162 1163 ASSERT_RTNL(); 1164 1165 old_active = rtnl_dereference(bond->curr_active_slave); 1166 1167 if (old_active == new_active) 1168 return; 1169 1170 #ifdef CONFIG_XFRM_OFFLOAD 1171 bond_ipsec_del_sa_all(bond); 1172 #endif /* CONFIG_XFRM_OFFLOAD */ 1173 1174 if (new_active) { 1175 new_active->last_link_up = jiffies; 1176 1177 if (new_active->link == BOND_LINK_BACK) { 1178 if (bond_uses_primary(bond)) { 1179 slave_info(bond->dev, new_active->dev, "making interface the new active one %d ms earlier\n", 1180 (bond->params.updelay - new_active->delay) * bond->params.miimon); 1181 } 1182 1183 new_active->delay = 0; 1184 bond_set_slave_link_state(new_active, BOND_LINK_UP, 1185 BOND_SLAVE_NOTIFY_NOW); 1186 1187 if (BOND_MODE(bond) == BOND_MODE_8023AD) 1188 bond_3ad_handle_link_change(new_active, BOND_LINK_UP); 1189 1190 if (bond_is_lb(bond)) 1191 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP); 1192 } else { 1193 if (bond_uses_primary(bond)) 1194 slave_info(bond->dev, new_active->dev, "making interface the new active one\n"); 1195 } 1196 } 1197 1198 if (bond_uses_primary(bond)) 1199 bond_hw_addr_swap(bond, new_active, old_active); 1200 1201 if (bond_is_lb(bond)) { 1202 bond_alb_handle_active_change(bond, new_active); 1203 if (old_active) 1204 bond_set_slave_inactive_flags(old_active, 1205 BOND_SLAVE_NOTIFY_NOW); 1206 if (new_active) 1207 bond_set_slave_active_flags(new_active, 1208 BOND_SLAVE_NOTIFY_NOW); 1209 } else { 1210 rcu_assign_pointer(bond->curr_active_slave, new_active); 1211 } 1212 1213 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP) { 1214 if (old_active) 1215 bond_set_slave_inactive_flags(old_active, 1216 BOND_SLAVE_NOTIFY_NOW); 1217 1218 if (new_active) { 1219 bool should_notify_peers = false; 1220 1221 bond_set_slave_active_flags(new_active, 1222 BOND_SLAVE_NOTIFY_NOW); 1223 1224 if (bond->params.fail_over_mac) 1225 bond_do_fail_over_mac(bond, new_active, 1226 old_active); 1227 1228 if (netif_running(bond->dev)) { 1229 bond->send_peer_notif = 1230 bond->params.num_peer_notif * 1231 max(1, bond->params.peer_notif_delay); 1232 should_notify_peers = 1233 bond_should_notify_peers(bond); 1234 } 1235 1236 call_netdevice_notifiers(NETDEV_BONDING_FAILOVER, bond->dev); 1237 if (should_notify_peers) { 1238 bond->send_peer_notif--; 1239 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, 1240 bond->dev); 1241 } 1242 } 1243 } 1244 1245 #ifdef CONFIG_XFRM_OFFLOAD 1246 bond_ipsec_add_sa_all(bond); 1247 #endif /* CONFIG_XFRM_OFFLOAD */ 1248 1249 /* resend IGMP joins since active slave has changed or 1250 * all were sent on curr_active_slave. 1251 * resend only if bond is brought up with the affected 1252 * bonding modes and the retransmission is enabled 1253 */ 1254 if (netif_running(bond->dev) && (bond->params.resend_igmp > 0) && 1255 ((bond_uses_primary(bond) && new_active) || 1256 BOND_MODE(bond) == BOND_MODE_ROUNDROBIN)) { 1257 bond->igmp_retrans = bond->params.resend_igmp; 1258 queue_delayed_work(bond->wq, &bond->mcast_work, 1); 1259 } 1260 } 1261 1262 /** 1263 * bond_select_active_slave - select a new active slave, if needed 1264 * @bond: our bonding struct 1265 * 1266 * This functions should be called when one of the following occurs: 1267 * - The old curr_active_slave has been released or lost its link. 1268 * - The primary_slave has got its link back. 1269 * - A slave has got its link back and there's no old curr_active_slave. 1270 * 1271 * Caller must hold RTNL. 1272 */ 1273 void bond_select_active_slave(struct bonding *bond) 1274 { 1275 struct slave *best_slave; 1276 int rv; 1277 1278 ASSERT_RTNL(); 1279 1280 best_slave = bond_find_best_slave(bond); 1281 if (best_slave != rtnl_dereference(bond->curr_active_slave)) { 1282 bond_change_active_slave(bond, best_slave); 1283 rv = bond_set_carrier(bond); 1284 if (!rv) 1285 return; 1286 1287 if (netif_carrier_ok(bond->dev)) 1288 netdev_info(bond->dev, "active interface up!\n"); 1289 else 1290 netdev_info(bond->dev, "now running without any active interface!\n"); 1291 } 1292 } 1293 1294 #ifdef CONFIG_NET_POLL_CONTROLLER 1295 static inline int slave_enable_netpoll(struct slave *slave) 1296 { 1297 struct netpoll *np; 1298 int err = 0; 1299 1300 np = kzalloc(sizeof(*np), GFP_KERNEL); 1301 err = -ENOMEM; 1302 if (!np) 1303 goto out; 1304 1305 err = __netpoll_setup(np, slave->dev); 1306 if (err) { 1307 kfree(np); 1308 goto out; 1309 } 1310 slave->np = np; 1311 out: 1312 return err; 1313 } 1314 static inline void slave_disable_netpoll(struct slave *slave) 1315 { 1316 struct netpoll *np = slave->np; 1317 1318 if (!np) 1319 return; 1320 1321 slave->np = NULL; 1322 1323 __netpoll_free(np); 1324 } 1325 1326 static void bond_poll_controller(struct net_device *bond_dev) 1327 { 1328 struct bonding *bond = netdev_priv(bond_dev); 1329 struct slave *slave = NULL; 1330 struct list_head *iter; 1331 struct ad_info ad_info; 1332 1333 if (BOND_MODE(bond) == BOND_MODE_8023AD) 1334 if (bond_3ad_get_active_agg_info(bond, &ad_info)) 1335 return; 1336 1337 bond_for_each_slave_rcu(bond, slave, iter) { 1338 if (!bond_slave_is_up(slave)) 1339 continue; 1340 1341 if (BOND_MODE(bond) == BOND_MODE_8023AD) { 1342 struct aggregator *agg = 1343 SLAVE_AD_INFO(slave)->port.aggregator; 1344 1345 if (agg && 1346 agg->aggregator_identifier != ad_info.aggregator_id) 1347 continue; 1348 } 1349 1350 netpoll_poll_dev(slave->dev); 1351 } 1352 } 1353 1354 static void bond_netpoll_cleanup(struct net_device *bond_dev) 1355 { 1356 struct bonding *bond = netdev_priv(bond_dev); 1357 struct list_head *iter; 1358 struct slave *slave; 1359 1360 bond_for_each_slave(bond, slave, iter) 1361 if (bond_slave_is_up(slave)) 1362 slave_disable_netpoll(slave); 1363 } 1364 1365 static int bond_netpoll_setup(struct net_device *dev, struct netpoll_info *ni) 1366 { 1367 struct bonding *bond = netdev_priv(dev); 1368 struct list_head *iter; 1369 struct slave *slave; 1370 int err = 0; 1371 1372 bond_for_each_slave(bond, slave, iter) { 1373 err = slave_enable_netpoll(slave); 1374 if (err) { 1375 bond_netpoll_cleanup(dev); 1376 break; 1377 } 1378 } 1379 return err; 1380 } 1381 #else 1382 static inline int slave_enable_netpoll(struct slave *slave) 1383 { 1384 return 0; 1385 } 1386 static inline void slave_disable_netpoll(struct slave *slave) 1387 { 1388 } 1389 static void bond_netpoll_cleanup(struct net_device *bond_dev) 1390 { 1391 } 1392 #endif 1393 1394 /*---------------------------------- IOCTL ----------------------------------*/ 1395 1396 static netdev_features_t bond_fix_features(struct net_device *dev, 1397 netdev_features_t features) 1398 { 1399 struct bonding *bond = netdev_priv(dev); 1400 struct list_head *iter; 1401 netdev_features_t mask; 1402 struct slave *slave; 1403 1404 mask = features; 1405 1406 features &= ~NETIF_F_ONE_FOR_ALL; 1407 features |= NETIF_F_ALL_FOR_ALL; 1408 1409 bond_for_each_slave(bond, slave, iter) { 1410 features = netdev_increment_features(features, 1411 slave->dev->features, 1412 mask); 1413 } 1414 features = netdev_add_tso_features(features, mask); 1415 1416 return features; 1417 } 1418 1419 #define BOND_VLAN_FEATURES (NETIF_F_HW_CSUM | NETIF_F_SG | \ 1420 NETIF_F_FRAGLIST | NETIF_F_GSO_SOFTWARE | \ 1421 NETIF_F_HIGHDMA | NETIF_F_LRO) 1422 1423 #define BOND_ENC_FEATURES (NETIF_F_HW_CSUM | NETIF_F_SG | \ 1424 NETIF_F_RXCSUM | NETIF_F_GSO_SOFTWARE) 1425 1426 #define BOND_MPLS_FEATURES (NETIF_F_HW_CSUM | NETIF_F_SG | \ 1427 NETIF_F_GSO_SOFTWARE) 1428 1429 1430 static void bond_compute_features(struct bonding *bond) 1431 { 1432 unsigned int dst_release_flag = IFF_XMIT_DST_RELEASE | 1433 IFF_XMIT_DST_RELEASE_PERM; 1434 netdev_features_t vlan_features = BOND_VLAN_FEATURES; 1435 netdev_features_t enc_features = BOND_ENC_FEATURES; 1436 #ifdef CONFIG_XFRM_OFFLOAD 1437 netdev_features_t xfrm_features = BOND_XFRM_FEATURES; 1438 #endif /* CONFIG_XFRM_OFFLOAD */ 1439 netdev_features_t mpls_features = BOND_MPLS_FEATURES; 1440 struct net_device *bond_dev = bond->dev; 1441 struct list_head *iter; 1442 struct slave *slave; 1443 unsigned short max_hard_header_len = ETH_HLEN; 1444 unsigned int tso_max_size = TSO_MAX_SIZE; 1445 u16 tso_max_segs = TSO_MAX_SEGS; 1446 1447 if (!bond_has_slaves(bond)) 1448 goto done; 1449 vlan_features &= NETIF_F_ALL_FOR_ALL; 1450 mpls_features &= NETIF_F_ALL_FOR_ALL; 1451 1452 bond_for_each_slave(bond, slave, iter) { 1453 vlan_features = netdev_increment_features(vlan_features, 1454 slave->dev->vlan_features, BOND_VLAN_FEATURES); 1455 1456 enc_features = netdev_increment_features(enc_features, 1457 slave->dev->hw_enc_features, 1458 BOND_ENC_FEATURES); 1459 1460 #ifdef CONFIG_XFRM_OFFLOAD 1461 xfrm_features = netdev_increment_features(xfrm_features, 1462 slave->dev->hw_enc_features, 1463 BOND_XFRM_FEATURES); 1464 #endif /* CONFIG_XFRM_OFFLOAD */ 1465 1466 mpls_features = netdev_increment_features(mpls_features, 1467 slave->dev->mpls_features, 1468 BOND_MPLS_FEATURES); 1469 1470 dst_release_flag &= slave->dev->priv_flags; 1471 if (slave->dev->hard_header_len > max_hard_header_len) 1472 max_hard_header_len = slave->dev->hard_header_len; 1473 1474 tso_max_size = min(tso_max_size, slave->dev->tso_max_size); 1475 tso_max_segs = min(tso_max_segs, slave->dev->tso_max_segs); 1476 } 1477 bond_dev->hard_header_len = max_hard_header_len; 1478 1479 done: 1480 bond_dev->vlan_features = vlan_features; 1481 bond_dev->hw_enc_features = enc_features | NETIF_F_GSO_ENCAP_ALL | 1482 NETIF_F_HW_VLAN_CTAG_TX | 1483 NETIF_F_HW_VLAN_STAG_TX; 1484 #ifdef CONFIG_XFRM_OFFLOAD 1485 bond_dev->hw_enc_features |= xfrm_features; 1486 #endif /* CONFIG_XFRM_OFFLOAD */ 1487 bond_dev->mpls_features = mpls_features; 1488 netif_set_tso_max_segs(bond_dev, tso_max_segs); 1489 netif_set_tso_max_size(bond_dev, tso_max_size); 1490 1491 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE; 1492 if ((bond_dev->priv_flags & IFF_XMIT_DST_RELEASE_PERM) && 1493 dst_release_flag == (IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM)) 1494 bond_dev->priv_flags |= IFF_XMIT_DST_RELEASE; 1495 1496 netdev_change_features(bond_dev); 1497 } 1498 1499 static void bond_setup_by_slave(struct net_device *bond_dev, 1500 struct net_device *slave_dev) 1501 { 1502 bond_dev->header_ops = slave_dev->header_ops; 1503 1504 bond_dev->type = slave_dev->type; 1505 bond_dev->hard_header_len = slave_dev->hard_header_len; 1506 bond_dev->needed_headroom = slave_dev->needed_headroom; 1507 bond_dev->addr_len = slave_dev->addr_len; 1508 1509 memcpy(bond_dev->broadcast, slave_dev->broadcast, 1510 slave_dev->addr_len); 1511 } 1512 1513 /* On bonding slaves other than the currently active slave, suppress 1514 * duplicates except for alb non-mcast/bcast. 1515 */ 1516 static bool bond_should_deliver_exact_match(struct sk_buff *skb, 1517 struct slave *slave, 1518 struct bonding *bond) 1519 { 1520 if (bond_is_slave_inactive(slave)) { 1521 if (BOND_MODE(bond) == BOND_MODE_ALB && 1522 skb->pkt_type != PACKET_BROADCAST && 1523 skb->pkt_type != PACKET_MULTICAST) 1524 return false; 1525 return true; 1526 } 1527 return false; 1528 } 1529 1530 static rx_handler_result_t bond_handle_frame(struct sk_buff **pskb) 1531 { 1532 struct sk_buff *skb = *pskb; 1533 struct slave *slave; 1534 struct bonding *bond; 1535 int (*recv_probe)(const struct sk_buff *, struct bonding *, 1536 struct slave *); 1537 int ret = RX_HANDLER_ANOTHER; 1538 1539 skb = skb_share_check(skb, GFP_ATOMIC); 1540 if (unlikely(!skb)) 1541 return RX_HANDLER_CONSUMED; 1542 1543 *pskb = skb; 1544 1545 slave = bond_slave_get_rcu(skb->dev); 1546 bond = slave->bond; 1547 1548 recv_probe = READ_ONCE(bond->recv_probe); 1549 if (recv_probe) { 1550 ret = recv_probe(skb, bond, slave); 1551 if (ret == RX_HANDLER_CONSUMED) { 1552 consume_skb(skb); 1553 return ret; 1554 } 1555 } 1556 1557 /* 1558 * For packets determined by bond_should_deliver_exact_match() call to 1559 * be suppressed we want to make an exception for link-local packets. 1560 * This is necessary for e.g. LLDP daemons to be able to monitor 1561 * inactive slave links without being forced to bind to them 1562 * explicitly. 1563 * 1564 * At the same time, packets that are passed to the bonding master 1565 * (including link-local ones) can have their originating interface 1566 * determined via PACKET_ORIGDEV socket option. 1567 */ 1568 if (bond_should_deliver_exact_match(skb, slave, bond)) { 1569 if (is_link_local_ether_addr(eth_hdr(skb)->h_dest)) 1570 return RX_HANDLER_PASS; 1571 return RX_HANDLER_EXACT; 1572 } 1573 1574 skb->dev = bond->dev; 1575 1576 if (BOND_MODE(bond) == BOND_MODE_ALB && 1577 netif_is_bridge_port(bond->dev) && 1578 skb->pkt_type == PACKET_HOST) { 1579 1580 if (unlikely(skb_cow_head(skb, 1581 skb->data - skb_mac_header(skb)))) { 1582 kfree_skb(skb); 1583 return RX_HANDLER_CONSUMED; 1584 } 1585 bond_hw_addr_copy(eth_hdr(skb)->h_dest, bond->dev->dev_addr, 1586 bond->dev->addr_len); 1587 } 1588 1589 return ret; 1590 } 1591 1592 static enum netdev_lag_tx_type bond_lag_tx_type(struct bonding *bond) 1593 { 1594 switch (BOND_MODE(bond)) { 1595 case BOND_MODE_ROUNDROBIN: 1596 return NETDEV_LAG_TX_TYPE_ROUNDROBIN; 1597 case BOND_MODE_ACTIVEBACKUP: 1598 return NETDEV_LAG_TX_TYPE_ACTIVEBACKUP; 1599 case BOND_MODE_BROADCAST: 1600 return NETDEV_LAG_TX_TYPE_BROADCAST; 1601 case BOND_MODE_XOR: 1602 case BOND_MODE_8023AD: 1603 return NETDEV_LAG_TX_TYPE_HASH; 1604 default: 1605 return NETDEV_LAG_TX_TYPE_UNKNOWN; 1606 } 1607 } 1608 1609 static enum netdev_lag_hash bond_lag_hash_type(struct bonding *bond, 1610 enum netdev_lag_tx_type type) 1611 { 1612 if (type != NETDEV_LAG_TX_TYPE_HASH) 1613 return NETDEV_LAG_HASH_NONE; 1614 1615 switch (bond->params.xmit_policy) { 1616 case BOND_XMIT_POLICY_LAYER2: 1617 return NETDEV_LAG_HASH_L2; 1618 case BOND_XMIT_POLICY_LAYER34: 1619 return NETDEV_LAG_HASH_L34; 1620 case BOND_XMIT_POLICY_LAYER23: 1621 return NETDEV_LAG_HASH_L23; 1622 case BOND_XMIT_POLICY_ENCAP23: 1623 return NETDEV_LAG_HASH_E23; 1624 case BOND_XMIT_POLICY_ENCAP34: 1625 return NETDEV_LAG_HASH_E34; 1626 case BOND_XMIT_POLICY_VLAN_SRCMAC: 1627 return NETDEV_LAG_HASH_VLAN_SRCMAC; 1628 default: 1629 return NETDEV_LAG_HASH_UNKNOWN; 1630 } 1631 } 1632 1633 static int bond_master_upper_dev_link(struct bonding *bond, struct slave *slave, 1634 struct netlink_ext_ack *extack) 1635 { 1636 struct netdev_lag_upper_info lag_upper_info; 1637 enum netdev_lag_tx_type type; 1638 int err; 1639 1640 type = bond_lag_tx_type(bond); 1641 lag_upper_info.tx_type = type; 1642 lag_upper_info.hash_type = bond_lag_hash_type(bond, type); 1643 1644 err = netdev_master_upper_dev_link(slave->dev, bond->dev, slave, 1645 &lag_upper_info, extack); 1646 if (err) 1647 return err; 1648 1649 slave->dev->flags |= IFF_SLAVE; 1650 return 0; 1651 } 1652 1653 static void bond_upper_dev_unlink(struct bonding *bond, struct slave *slave) 1654 { 1655 netdev_upper_dev_unlink(slave->dev, bond->dev); 1656 slave->dev->flags &= ~IFF_SLAVE; 1657 } 1658 1659 static void slave_kobj_release(struct kobject *kobj) 1660 { 1661 struct slave *slave = to_slave(kobj); 1662 struct bonding *bond = bond_get_bond_by_slave(slave); 1663 1664 cancel_delayed_work_sync(&slave->notify_work); 1665 if (BOND_MODE(bond) == BOND_MODE_8023AD) 1666 kfree(SLAVE_AD_INFO(slave)); 1667 1668 kfree(slave); 1669 } 1670 1671 static struct kobj_type slave_ktype = { 1672 .release = slave_kobj_release, 1673 #ifdef CONFIG_SYSFS 1674 .sysfs_ops = &slave_sysfs_ops, 1675 #endif 1676 }; 1677 1678 static int bond_kobj_init(struct slave *slave) 1679 { 1680 int err; 1681 1682 err = kobject_init_and_add(&slave->kobj, &slave_ktype, 1683 &(slave->dev->dev.kobj), "bonding_slave"); 1684 if (err) 1685 kobject_put(&slave->kobj); 1686 1687 return err; 1688 } 1689 1690 static struct slave *bond_alloc_slave(struct bonding *bond, 1691 struct net_device *slave_dev) 1692 { 1693 struct slave *slave = NULL; 1694 1695 slave = kzalloc(sizeof(*slave), GFP_KERNEL); 1696 if (!slave) 1697 return NULL; 1698 1699 slave->bond = bond; 1700 slave->dev = slave_dev; 1701 INIT_DELAYED_WORK(&slave->notify_work, bond_netdev_notify_work); 1702 1703 if (bond_kobj_init(slave)) 1704 return NULL; 1705 1706 if (BOND_MODE(bond) == BOND_MODE_8023AD) { 1707 SLAVE_AD_INFO(slave) = kzalloc(sizeof(struct ad_slave_info), 1708 GFP_KERNEL); 1709 if (!SLAVE_AD_INFO(slave)) { 1710 kobject_put(&slave->kobj); 1711 return NULL; 1712 } 1713 } 1714 1715 return slave; 1716 } 1717 1718 static void bond_fill_ifbond(struct bonding *bond, struct ifbond *info) 1719 { 1720 info->bond_mode = BOND_MODE(bond); 1721 info->miimon = bond->params.miimon; 1722 info->num_slaves = bond->slave_cnt; 1723 } 1724 1725 static void bond_fill_ifslave(struct slave *slave, struct ifslave *info) 1726 { 1727 strcpy(info->slave_name, slave->dev->name); 1728 info->link = slave->link; 1729 info->state = bond_slave_state(slave); 1730 info->link_failure_count = slave->link_failure_count; 1731 } 1732 1733 static void bond_netdev_notify_work(struct work_struct *_work) 1734 { 1735 struct slave *slave = container_of(_work, struct slave, 1736 notify_work.work); 1737 1738 if (rtnl_trylock()) { 1739 struct netdev_bonding_info binfo; 1740 1741 bond_fill_ifslave(slave, &binfo.slave); 1742 bond_fill_ifbond(slave->bond, &binfo.master); 1743 netdev_bonding_info_change(slave->dev, &binfo); 1744 rtnl_unlock(); 1745 } else { 1746 queue_delayed_work(slave->bond->wq, &slave->notify_work, 1); 1747 } 1748 } 1749 1750 void bond_queue_slave_event(struct slave *slave) 1751 { 1752 queue_delayed_work(slave->bond->wq, &slave->notify_work, 0); 1753 } 1754 1755 void bond_lower_state_changed(struct slave *slave) 1756 { 1757 struct netdev_lag_lower_state_info info; 1758 1759 info.link_up = slave->link == BOND_LINK_UP || 1760 slave->link == BOND_LINK_FAIL; 1761 info.tx_enabled = bond_is_active_slave(slave); 1762 netdev_lower_state_changed(slave->dev, &info); 1763 } 1764 1765 #define BOND_NL_ERR(bond_dev, extack, errmsg) do { \ 1766 if (extack) \ 1767 NL_SET_ERR_MSG(extack, errmsg); \ 1768 else \ 1769 netdev_err(bond_dev, "Error: %s\n", errmsg); \ 1770 } while (0) 1771 1772 #define SLAVE_NL_ERR(bond_dev, slave_dev, extack, errmsg) do { \ 1773 if (extack) \ 1774 NL_SET_ERR_MSG(extack, errmsg); \ 1775 else \ 1776 slave_err(bond_dev, slave_dev, "Error: %s\n", errmsg); \ 1777 } while (0) 1778 1779 /* The bonding driver uses ether_setup() to convert a master bond device 1780 * to ARPHRD_ETHER, that resets the target netdevice's flags so we always 1781 * have to restore the IFF_MASTER flag, and only restore IFF_SLAVE and IFF_UP 1782 * if they were set 1783 */ 1784 static void bond_ether_setup(struct net_device *bond_dev) 1785 { 1786 unsigned int flags = bond_dev->flags & (IFF_SLAVE | IFF_UP); 1787 1788 ether_setup(bond_dev); 1789 bond_dev->flags |= IFF_MASTER | flags; 1790 bond_dev->priv_flags &= ~IFF_TX_SKB_SHARING; 1791 } 1792 1793 void bond_xdp_set_features(struct net_device *bond_dev) 1794 { 1795 struct bonding *bond = netdev_priv(bond_dev); 1796 xdp_features_t val = NETDEV_XDP_ACT_MASK; 1797 struct list_head *iter; 1798 struct slave *slave; 1799 1800 ASSERT_RTNL(); 1801 1802 if (!bond_xdp_check(bond)) { 1803 xdp_clear_features_flag(bond_dev); 1804 return; 1805 } 1806 1807 bond_for_each_slave(bond, slave, iter) 1808 val &= slave->dev->xdp_features; 1809 1810 xdp_set_features_flag(bond_dev, val); 1811 } 1812 1813 /* enslave device <slave> to bond device <master> */ 1814 int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev, 1815 struct netlink_ext_ack *extack) 1816 { 1817 struct bonding *bond = netdev_priv(bond_dev); 1818 const struct net_device_ops *slave_ops = slave_dev->netdev_ops; 1819 struct slave *new_slave = NULL, *prev_slave; 1820 struct sockaddr_storage ss; 1821 int link_reporting; 1822 int res = 0, i; 1823 1824 if (slave_dev->flags & IFF_MASTER && 1825 !netif_is_bond_master(slave_dev)) { 1826 BOND_NL_ERR(bond_dev, extack, 1827 "Device type (master device) cannot be enslaved"); 1828 return -EPERM; 1829 } 1830 1831 if (!bond->params.use_carrier && 1832 slave_dev->ethtool_ops->get_link == NULL && 1833 slave_ops->ndo_eth_ioctl == NULL) { 1834 slave_warn(bond_dev, slave_dev, "no link monitoring support\n"); 1835 } 1836 1837 /* already in-use? */ 1838 if (netdev_is_rx_handler_busy(slave_dev)) { 1839 SLAVE_NL_ERR(bond_dev, slave_dev, extack, 1840 "Device is in use and cannot be enslaved"); 1841 return -EBUSY; 1842 } 1843 1844 if (bond_dev == slave_dev) { 1845 BOND_NL_ERR(bond_dev, extack, "Cannot enslave bond to itself."); 1846 return -EPERM; 1847 } 1848 1849 /* vlan challenged mutual exclusion */ 1850 /* no need to lock since we're protected by rtnl_lock */ 1851 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) { 1852 slave_dbg(bond_dev, slave_dev, "is NETIF_F_VLAN_CHALLENGED\n"); 1853 if (vlan_uses_dev(bond_dev)) { 1854 SLAVE_NL_ERR(bond_dev, slave_dev, extack, 1855 "Can not enslave VLAN challenged device to VLAN enabled bond"); 1856 return -EPERM; 1857 } else { 1858 slave_warn(bond_dev, slave_dev, "enslaved VLAN challenged slave. Adding VLANs will be blocked as long as it is part of bond.\n"); 1859 } 1860 } else { 1861 slave_dbg(bond_dev, slave_dev, "is !NETIF_F_VLAN_CHALLENGED\n"); 1862 } 1863 1864 if (slave_dev->features & NETIF_F_HW_ESP) 1865 slave_dbg(bond_dev, slave_dev, "is esp-hw-offload capable\n"); 1866 1867 /* Old ifenslave binaries are no longer supported. These can 1868 * be identified with moderate accuracy by the state of the slave: 1869 * the current ifenslave will set the interface down prior to 1870 * enslaving it; the old ifenslave will not. 1871 */ 1872 if (slave_dev->flags & IFF_UP) { 1873 SLAVE_NL_ERR(bond_dev, slave_dev, extack, 1874 "Device can not be enslaved while up"); 1875 return -EPERM; 1876 } 1877 1878 /* set bonding device ether type by slave - bonding netdevices are 1879 * created with ether_setup, so when the slave type is not ARPHRD_ETHER 1880 * there is a need to override some of the type dependent attribs/funcs. 1881 * 1882 * bond ether type mutual exclusion - don't allow slaves of dissimilar 1883 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond 1884 */ 1885 if (!bond_has_slaves(bond)) { 1886 if (bond_dev->type != slave_dev->type) { 1887 slave_dbg(bond_dev, slave_dev, "change device type from %d to %d\n", 1888 bond_dev->type, slave_dev->type); 1889 1890 res = call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE, 1891 bond_dev); 1892 res = notifier_to_errno(res); 1893 if (res) { 1894 slave_err(bond_dev, slave_dev, "refused to change device type\n"); 1895 return -EBUSY; 1896 } 1897 1898 /* Flush unicast and multicast addresses */ 1899 dev_uc_flush(bond_dev); 1900 dev_mc_flush(bond_dev); 1901 1902 if (slave_dev->type != ARPHRD_ETHER) 1903 bond_setup_by_slave(bond_dev, slave_dev); 1904 else 1905 bond_ether_setup(bond_dev); 1906 1907 call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE, 1908 bond_dev); 1909 } 1910 } else if (bond_dev->type != slave_dev->type) { 1911 SLAVE_NL_ERR(bond_dev, slave_dev, extack, 1912 "Device type is different from other slaves"); 1913 return -EINVAL; 1914 } 1915 1916 if (slave_dev->type == ARPHRD_INFINIBAND && 1917 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) { 1918 SLAVE_NL_ERR(bond_dev, slave_dev, extack, 1919 "Only active-backup mode is supported for infiniband slaves"); 1920 res = -EOPNOTSUPP; 1921 goto err_undo_flags; 1922 } 1923 1924 if (!slave_ops->ndo_set_mac_address || 1925 slave_dev->type == ARPHRD_INFINIBAND) { 1926 slave_warn(bond_dev, slave_dev, "The slave device specified does not support setting the MAC address\n"); 1927 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP && 1928 bond->params.fail_over_mac != BOND_FOM_ACTIVE) { 1929 if (!bond_has_slaves(bond)) { 1930 bond->params.fail_over_mac = BOND_FOM_ACTIVE; 1931 slave_warn(bond_dev, slave_dev, "Setting fail_over_mac to active for active-backup mode\n"); 1932 } else { 1933 SLAVE_NL_ERR(bond_dev, slave_dev, extack, 1934 "Slave device does not support setting the MAC address, but fail_over_mac is not set to active"); 1935 res = -EOPNOTSUPP; 1936 goto err_undo_flags; 1937 } 1938 } 1939 } 1940 1941 call_netdevice_notifiers(NETDEV_JOIN, slave_dev); 1942 1943 /* If this is the first slave, then we need to set the master's hardware 1944 * address to be the same as the slave's. 1945 */ 1946 if (!bond_has_slaves(bond) && 1947 bond->dev->addr_assign_type == NET_ADDR_RANDOM) { 1948 res = bond_set_dev_addr(bond->dev, slave_dev); 1949 if (res) 1950 goto err_undo_flags; 1951 } 1952 1953 new_slave = bond_alloc_slave(bond, slave_dev); 1954 if (!new_slave) { 1955 res = -ENOMEM; 1956 goto err_undo_flags; 1957 } 1958 1959 /* Set the new_slave's queue_id to be zero. Queue ID mapping 1960 * is set via sysfs or module option if desired. 1961 */ 1962 new_slave->queue_id = 0; 1963 1964 /* Save slave's original mtu and then set it to match the bond */ 1965 new_slave->original_mtu = slave_dev->mtu; 1966 res = dev_set_mtu(slave_dev, bond->dev->mtu); 1967 if (res) { 1968 slave_err(bond_dev, slave_dev, "Error %d calling dev_set_mtu\n", res); 1969 goto err_free; 1970 } 1971 1972 /* Save slave's original ("permanent") mac address for modes 1973 * that need it, and for restoring it upon release, and then 1974 * set it to the master's address 1975 */ 1976 bond_hw_addr_copy(new_slave->perm_hwaddr, slave_dev->dev_addr, 1977 slave_dev->addr_len); 1978 1979 if (!bond->params.fail_over_mac || 1980 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) { 1981 /* Set slave to master's mac address. The application already 1982 * set the master's mac address to that of the first slave 1983 */ 1984 memcpy(ss.__data, bond_dev->dev_addr, bond_dev->addr_len); 1985 ss.ss_family = slave_dev->type; 1986 res = dev_set_mac_address(slave_dev, (struct sockaddr *)&ss, 1987 extack); 1988 if (res) { 1989 slave_err(bond_dev, slave_dev, "Error %d calling set_mac_address\n", res); 1990 goto err_restore_mtu; 1991 } 1992 } 1993 1994 /* set no_addrconf flag before open to prevent IPv6 addrconf */ 1995 slave_dev->priv_flags |= IFF_NO_ADDRCONF; 1996 1997 /* open the slave since the application closed it */ 1998 res = dev_open(slave_dev, extack); 1999 if (res) { 2000 slave_err(bond_dev, slave_dev, "Opening slave failed\n"); 2001 goto err_restore_mac; 2002 } 2003 2004 slave_dev->priv_flags |= IFF_BONDING; 2005 /* initialize slave stats */ 2006 dev_get_stats(new_slave->dev, &new_slave->slave_stats); 2007 2008 if (bond_is_lb(bond)) { 2009 /* bond_alb_init_slave() must be called before all other stages since 2010 * it might fail and we do not want to have to undo everything 2011 */ 2012 res = bond_alb_init_slave(bond, new_slave); 2013 if (res) 2014 goto err_close; 2015 } 2016 2017 res = vlan_vids_add_by_dev(slave_dev, bond_dev); 2018 if (res) { 2019 slave_err(bond_dev, slave_dev, "Couldn't add bond vlan ids\n"); 2020 goto err_close; 2021 } 2022 2023 prev_slave = bond_last_slave(bond); 2024 2025 new_slave->delay = 0; 2026 new_slave->link_failure_count = 0; 2027 2028 if (bond_update_speed_duplex(new_slave) && 2029 bond_needs_speed_duplex(bond)) 2030 new_slave->link = BOND_LINK_DOWN; 2031 2032 new_slave->last_rx = jiffies - 2033 (msecs_to_jiffies(bond->params.arp_interval) + 1); 2034 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) 2035 new_slave->target_last_arp_rx[i] = new_slave->last_rx; 2036 2037 new_slave->last_tx = new_slave->last_rx; 2038 2039 if (bond->params.miimon && !bond->params.use_carrier) { 2040 link_reporting = bond_check_dev_link(bond, slave_dev, 1); 2041 2042 if ((link_reporting == -1) && !bond->params.arp_interval) { 2043 /* miimon is set but a bonded network driver 2044 * does not support ETHTOOL/MII and 2045 * arp_interval is not set. Note: if 2046 * use_carrier is enabled, we will never go 2047 * here (because netif_carrier is always 2048 * supported); thus, we don't need to change 2049 * the messages for netif_carrier. 2050 */ 2051 slave_warn(bond_dev, slave_dev, "MII and ETHTOOL support not available for slave, and arp_interval/arp_ip_target module parameters not specified, thus bonding will not detect link failures! see bonding.txt for details\n"); 2052 } else if (link_reporting == -1) { 2053 /* unable get link status using mii/ethtool */ 2054 slave_warn(bond_dev, slave_dev, "can't get link status from slave; the network driver associated with this interface does not support MII or ETHTOOL link status reporting, thus miimon has no effect on this interface\n"); 2055 } 2056 } 2057 2058 /* check for initial state */ 2059 new_slave->link = BOND_LINK_NOCHANGE; 2060 if (bond->params.miimon) { 2061 if (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS) { 2062 if (bond->params.updelay) { 2063 bond_set_slave_link_state(new_slave, 2064 BOND_LINK_BACK, 2065 BOND_SLAVE_NOTIFY_NOW); 2066 new_slave->delay = bond->params.updelay; 2067 } else { 2068 bond_set_slave_link_state(new_slave, 2069 BOND_LINK_UP, 2070 BOND_SLAVE_NOTIFY_NOW); 2071 } 2072 } else { 2073 bond_set_slave_link_state(new_slave, BOND_LINK_DOWN, 2074 BOND_SLAVE_NOTIFY_NOW); 2075 } 2076 } else if (bond->params.arp_interval) { 2077 bond_set_slave_link_state(new_slave, 2078 (netif_carrier_ok(slave_dev) ? 2079 BOND_LINK_UP : BOND_LINK_DOWN), 2080 BOND_SLAVE_NOTIFY_NOW); 2081 } else { 2082 bond_set_slave_link_state(new_slave, BOND_LINK_UP, 2083 BOND_SLAVE_NOTIFY_NOW); 2084 } 2085 2086 if (new_slave->link != BOND_LINK_DOWN) 2087 new_slave->last_link_up = jiffies; 2088 slave_dbg(bond_dev, slave_dev, "Initial state of slave is BOND_LINK_%s\n", 2089 new_slave->link == BOND_LINK_DOWN ? "DOWN" : 2090 (new_slave->link == BOND_LINK_UP ? "UP" : "BACK")); 2091 2092 if (bond_uses_primary(bond) && bond->params.primary[0]) { 2093 /* if there is a primary slave, remember it */ 2094 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) { 2095 rcu_assign_pointer(bond->primary_slave, new_slave); 2096 bond->force_primary = true; 2097 } 2098 } 2099 2100 switch (BOND_MODE(bond)) { 2101 case BOND_MODE_ACTIVEBACKUP: 2102 bond_set_slave_inactive_flags(new_slave, 2103 BOND_SLAVE_NOTIFY_NOW); 2104 break; 2105 case BOND_MODE_8023AD: 2106 /* in 802.3ad mode, the internal mechanism 2107 * will activate the slaves in the selected 2108 * aggregator 2109 */ 2110 bond_set_slave_inactive_flags(new_slave, BOND_SLAVE_NOTIFY_NOW); 2111 /* if this is the first slave */ 2112 if (!prev_slave) { 2113 SLAVE_AD_INFO(new_slave)->id = 1; 2114 /* Initialize AD with the number of times that the AD timer is called in 1 second 2115 * can be called only after the mac address of the bond is set 2116 */ 2117 bond_3ad_initialize(bond); 2118 } else { 2119 SLAVE_AD_INFO(new_slave)->id = 2120 SLAVE_AD_INFO(prev_slave)->id + 1; 2121 } 2122 2123 bond_3ad_bind_slave(new_slave); 2124 break; 2125 case BOND_MODE_TLB: 2126 case BOND_MODE_ALB: 2127 bond_set_active_slave(new_slave); 2128 bond_set_slave_inactive_flags(new_slave, BOND_SLAVE_NOTIFY_NOW); 2129 break; 2130 default: 2131 slave_dbg(bond_dev, slave_dev, "This slave is always active in trunk mode\n"); 2132 2133 /* always active in trunk mode */ 2134 bond_set_active_slave(new_slave); 2135 2136 /* In trunking mode there is little meaning to curr_active_slave 2137 * anyway (it holds no special properties of the bond device), 2138 * so we can change it without calling change_active_interface() 2139 */ 2140 if (!rcu_access_pointer(bond->curr_active_slave) && 2141 new_slave->link == BOND_LINK_UP) 2142 rcu_assign_pointer(bond->curr_active_slave, new_slave); 2143 2144 break; 2145 } /* switch(bond_mode) */ 2146 2147 #ifdef CONFIG_NET_POLL_CONTROLLER 2148 if (bond->dev->npinfo) { 2149 if (slave_enable_netpoll(new_slave)) { 2150 slave_info(bond_dev, slave_dev, "master_dev is using netpoll, but new slave device does not support netpoll\n"); 2151 res = -EBUSY; 2152 goto err_detach; 2153 } 2154 } 2155 #endif 2156 2157 if (!(bond_dev->features & NETIF_F_LRO)) 2158 dev_disable_lro(slave_dev); 2159 2160 res = netdev_rx_handler_register(slave_dev, bond_handle_frame, 2161 new_slave); 2162 if (res) { 2163 slave_dbg(bond_dev, slave_dev, "Error %d calling netdev_rx_handler_register\n", res); 2164 goto err_detach; 2165 } 2166 2167 res = bond_master_upper_dev_link(bond, new_slave, extack); 2168 if (res) { 2169 slave_dbg(bond_dev, slave_dev, "Error %d calling bond_master_upper_dev_link\n", res); 2170 goto err_unregister; 2171 } 2172 2173 bond_lower_state_changed(new_slave); 2174 2175 res = bond_sysfs_slave_add(new_slave); 2176 if (res) { 2177 slave_dbg(bond_dev, slave_dev, "Error %d calling bond_sysfs_slave_add\n", res); 2178 goto err_upper_unlink; 2179 } 2180 2181 /* If the mode uses primary, then the following is handled by 2182 * bond_change_active_slave(). 2183 */ 2184 if (!bond_uses_primary(bond)) { 2185 /* set promiscuity level to new slave */ 2186 if (bond_dev->flags & IFF_PROMISC) { 2187 res = dev_set_promiscuity(slave_dev, 1); 2188 if (res) 2189 goto err_sysfs_del; 2190 } 2191 2192 /* set allmulti level to new slave */ 2193 if (bond_dev->flags & IFF_ALLMULTI) { 2194 res = dev_set_allmulti(slave_dev, 1); 2195 if (res) { 2196 if (bond_dev->flags & IFF_PROMISC) 2197 dev_set_promiscuity(slave_dev, -1); 2198 goto err_sysfs_del; 2199 } 2200 } 2201 2202 if (bond_dev->flags & IFF_UP) { 2203 netif_addr_lock_bh(bond_dev); 2204 dev_mc_sync_multiple(slave_dev, bond_dev); 2205 dev_uc_sync_multiple(slave_dev, bond_dev); 2206 netif_addr_unlock_bh(bond_dev); 2207 2208 if (BOND_MODE(bond) == BOND_MODE_8023AD) 2209 dev_mc_add(slave_dev, lacpdu_mcast_addr); 2210 } 2211 } 2212 2213 bond->slave_cnt++; 2214 bond_compute_features(bond); 2215 bond_set_carrier(bond); 2216 2217 if (bond_uses_primary(bond)) { 2218 block_netpoll_tx(); 2219 bond_select_active_slave(bond); 2220 unblock_netpoll_tx(); 2221 } 2222 2223 if (bond_mode_can_use_xmit_hash(bond)) 2224 bond_update_slave_arr(bond, NULL); 2225 2226 2227 if (!slave_dev->netdev_ops->ndo_bpf || 2228 !slave_dev->netdev_ops->ndo_xdp_xmit) { 2229 if (bond->xdp_prog) { 2230 SLAVE_NL_ERR(bond_dev, slave_dev, extack, 2231 "Slave does not support XDP"); 2232 res = -EOPNOTSUPP; 2233 goto err_sysfs_del; 2234 } 2235 } else if (bond->xdp_prog) { 2236 struct netdev_bpf xdp = { 2237 .command = XDP_SETUP_PROG, 2238 .flags = 0, 2239 .prog = bond->xdp_prog, 2240 .extack = extack, 2241 }; 2242 2243 if (dev_xdp_prog_count(slave_dev) > 0) { 2244 SLAVE_NL_ERR(bond_dev, slave_dev, extack, 2245 "Slave has XDP program loaded, please unload before enslaving"); 2246 res = -EOPNOTSUPP; 2247 goto err_sysfs_del; 2248 } 2249 2250 res = slave_dev->netdev_ops->ndo_bpf(slave_dev, &xdp); 2251 if (res < 0) { 2252 /* ndo_bpf() sets extack error message */ 2253 slave_dbg(bond_dev, slave_dev, "Error %d calling ndo_bpf\n", res); 2254 goto err_sysfs_del; 2255 } 2256 if (bond->xdp_prog) 2257 bpf_prog_inc(bond->xdp_prog); 2258 } 2259 2260 bond_xdp_set_features(bond_dev); 2261 2262 slave_info(bond_dev, slave_dev, "Enslaving as %s interface with %s link\n", 2263 bond_is_active_slave(new_slave) ? "an active" : "a backup", 2264 new_slave->link != BOND_LINK_DOWN ? "an up" : "a down"); 2265 2266 /* enslave is successful */ 2267 bond_queue_slave_event(new_slave); 2268 return 0; 2269 2270 /* Undo stages on error */ 2271 err_sysfs_del: 2272 bond_sysfs_slave_del(new_slave); 2273 2274 err_upper_unlink: 2275 bond_upper_dev_unlink(bond, new_slave); 2276 2277 err_unregister: 2278 netdev_rx_handler_unregister(slave_dev); 2279 2280 err_detach: 2281 vlan_vids_del_by_dev(slave_dev, bond_dev); 2282 if (rcu_access_pointer(bond->primary_slave) == new_slave) 2283 RCU_INIT_POINTER(bond->primary_slave, NULL); 2284 if (rcu_access_pointer(bond->curr_active_slave) == new_slave) { 2285 block_netpoll_tx(); 2286 bond_change_active_slave(bond, NULL); 2287 bond_select_active_slave(bond); 2288 unblock_netpoll_tx(); 2289 } 2290 /* either primary_slave or curr_active_slave might've changed */ 2291 synchronize_rcu(); 2292 slave_disable_netpoll(new_slave); 2293 2294 err_close: 2295 if (!netif_is_bond_master(slave_dev)) 2296 slave_dev->priv_flags &= ~IFF_BONDING; 2297 dev_close(slave_dev); 2298 2299 err_restore_mac: 2300 slave_dev->priv_flags &= ~IFF_NO_ADDRCONF; 2301 if (!bond->params.fail_over_mac || 2302 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) { 2303 /* XXX TODO - fom follow mode needs to change master's 2304 * MAC if this slave's MAC is in use by the bond, or at 2305 * least print a warning. 2306 */ 2307 bond_hw_addr_copy(ss.__data, new_slave->perm_hwaddr, 2308 new_slave->dev->addr_len); 2309 ss.ss_family = slave_dev->type; 2310 dev_set_mac_address(slave_dev, (struct sockaddr *)&ss, NULL); 2311 } 2312 2313 err_restore_mtu: 2314 dev_set_mtu(slave_dev, new_slave->original_mtu); 2315 2316 err_free: 2317 kobject_put(&new_slave->kobj); 2318 2319 err_undo_flags: 2320 /* Enslave of first slave has failed and we need to fix master's mac */ 2321 if (!bond_has_slaves(bond)) { 2322 if (ether_addr_equal_64bits(bond_dev->dev_addr, 2323 slave_dev->dev_addr)) 2324 eth_hw_addr_random(bond_dev); 2325 if (bond_dev->type != ARPHRD_ETHER) { 2326 dev_close(bond_dev); 2327 bond_ether_setup(bond_dev); 2328 } 2329 } 2330 2331 return res; 2332 } 2333 2334 /* Try to release the slave device <slave> from the bond device <master> 2335 * It is legal to access curr_active_slave without a lock because all the function 2336 * is RTNL-locked. If "all" is true it means that the function is being called 2337 * while destroying a bond interface and all slaves are being released. 2338 * 2339 * The rules for slave state should be: 2340 * for Active/Backup: 2341 * Active stays on all backups go down 2342 * for Bonded connections: 2343 * The first up interface should be left on and all others downed. 2344 */ 2345 static int __bond_release_one(struct net_device *bond_dev, 2346 struct net_device *slave_dev, 2347 bool all, bool unregister) 2348 { 2349 struct bonding *bond = netdev_priv(bond_dev); 2350 struct slave *slave, *oldcurrent; 2351 struct sockaddr_storage ss; 2352 int old_flags = bond_dev->flags; 2353 netdev_features_t old_features = bond_dev->features; 2354 2355 /* slave is not a slave or master is not master of this slave */ 2356 if (!(slave_dev->flags & IFF_SLAVE) || 2357 !netdev_has_upper_dev(slave_dev, bond_dev)) { 2358 slave_dbg(bond_dev, slave_dev, "cannot release slave\n"); 2359 return -EINVAL; 2360 } 2361 2362 block_netpoll_tx(); 2363 2364 slave = bond_get_slave_by_dev(bond, slave_dev); 2365 if (!slave) { 2366 /* not a slave of this bond */ 2367 slave_info(bond_dev, slave_dev, "interface not enslaved\n"); 2368 unblock_netpoll_tx(); 2369 return -EINVAL; 2370 } 2371 2372 bond_set_slave_inactive_flags(slave, BOND_SLAVE_NOTIFY_NOW); 2373 2374 bond_sysfs_slave_del(slave); 2375 2376 /* recompute stats just before removing the slave */ 2377 bond_get_stats(bond->dev, &bond->bond_stats); 2378 2379 if (bond->xdp_prog) { 2380 struct netdev_bpf xdp = { 2381 .command = XDP_SETUP_PROG, 2382 .flags = 0, 2383 .prog = NULL, 2384 .extack = NULL, 2385 }; 2386 if (slave_dev->netdev_ops->ndo_bpf(slave_dev, &xdp)) 2387 slave_warn(bond_dev, slave_dev, "failed to unload XDP program\n"); 2388 } 2389 2390 /* unregister rx_handler early so bond_handle_frame wouldn't be called 2391 * for this slave anymore. 2392 */ 2393 netdev_rx_handler_unregister(slave_dev); 2394 2395 if (BOND_MODE(bond) == BOND_MODE_8023AD) 2396 bond_3ad_unbind_slave(slave); 2397 2398 bond_upper_dev_unlink(bond, slave); 2399 2400 if (bond_mode_can_use_xmit_hash(bond)) 2401 bond_update_slave_arr(bond, slave); 2402 2403 slave_info(bond_dev, slave_dev, "Releasing %s interface\n", 2404 bond_is_active_slave(slave) ? "active" : "backup"); 2405 2406 oldcurrent = rcu_access_pointer(bond->curr_active_slave); 2407 2408 RCU_INIT_POINTER(bond->current_arp_slave, NULL); 2409 2410 if (!all && (!bond->params.fail_over_mac || 2411 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP)) { 2412 if (ether_addr_equal_64bits(bond_dev->dev_addr, slave->perm_hwaddr) && 2413 bond_has_slaves(bond)) 2414 slave_warn(bond_dev, slave_dev, "the permanent HWaddr of slave - %pM - is still in use by bond - set the HWaddr of slave to a different address to avoid conflicts\n", 2415 slave->perm_hwaddr); 2416 } 2417 2418 if (rtnl_dereference(bond->primary_slave) == slave) 2419 RCU_INIT_POINTER(bond->primary_slave, NULL); 2420 2421 if (oldcurrent == slave) 2422 bond_change_active_slave(bond, NULL); 2423 2424 if (bond_is_lb(bond)) { 2425 /* Must be called only after the slave has been 2426 * detached from the list and the curr_active_slave 2427 * has been cleared (if our_slave == old_current), 2428 * but before a new active slave is selected. 2429 */ 2430 bond_alb_deinit_slave(bond, slave); 2431 } 2432 2433 if (all) { 2434 RCU_INIT_POINTER(bond->curr_active_slave, NULL); 2435 } else if (oldcurrent == slave) { 2436 /* Note that we hold RTNL over this sequence, so there 2437 * is no concern that another slave add/remove event 2438 * will interfere. 2439 */ 2440 bond_select_active_slave(bond); 2441 } 2442 2443 bond_set_carrier(bond); 2444 if (!bond_has_slaves(bond)) 2445 eth_hw_addr_random(bond_dev); 2446 2447 unblock_netpoll_tx(); 2448 synchronize_rcu(); 2449 bond->slave_cnt--; 2450 2451 if (!bond_has_slaves(bond)) { 2452 call_netdevice_notifiers(NETDEV_CHANGEADDR, bond->dev); 2453 call_netdevice_notifiers(NETDEV_RELEASE, bond->dev); 2454 } 2455 2456 bond_compute_features(bond); 2457 if (!(bond_dev->features & NETIF_F_VLAN_CHALLENGED) && 2458 (old_features & NETIF_F_VLAN_CHALLENGED)) 2459 slave_info(bond_dev, slave_dev, "last VLAN challenged slave left bond - VLAN blocking is removed\n"); 2460 2461 vlan_vids_del_by_dev(slave_dev, bond_dev); 2462 2463 /* If the mode uses primary, then this case was handled above by 2464 * bond_change_active_slave(..., NULL) 2465 */ 2466 if (!bond_uses_primary(bond)) { 2467 /* unset promiscuity level from slave 2468 * NOTE: The NETDEV_CHANGEADDR call above may change the value 2469 * of the IFF_PROMISC flag in the bond_dev, but we need the 2470 * value of that flag before that change, as that was the value 2471 * when this slave was attached, so we cache at the start of the 2472 * function and use it here. Same goes for ALLMULTI below 2473 */ 2474 if (old_flags & IFF_PROMISC) 2475 dev_set_promiscuity(slave_dev, -1); 2476 2477 /* unset allmulti level from slave */ 2478 if (old_flags & IFF_ALLMULTI) 2479 dev_set_allmulti(slave_dev, -1); 2480 2481 if (old_flags & IFF_UP) 2482 bond_hw_addr_flush(bond_dev, slave_dev); 2483 } 2484 2485 slave_disable_netpoll(slave); 2486 2487 /* close slave before restoring its mac address */ 2488 dev_close(slave_dev); 2489 2490 slave_dev->priv_flags &= ~IFF_NO_ADDRCONF; 2491 2492 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE || 2493 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) { 2494 /* restore original ("permanent") mac address */ 2495 bond_hw_addr_copy(ss.__data, slave->perm_hwaddr, 2496 slave->dev->addr_len); 2497 ss.ss_family = slave_dev->type; 2498 dev_set_mac_address(slave_dev, (struct sockaddr *)&ss, NULL); 2499 } 2500 2501 if (unregister) 2502 __dev_set_mtu(slave_dev, slave->original_mtu); 2503 else 2504 dev_set_mtu(slave_dev, slave->original_mtu); 2505 2506 if (!netif_is_bond_master(slave_dev)) 2507 slave_dev->priv_flags &= ~IFF_BONDING; 2508 2509 bond_xdp_set_features(bond_dev); 2510 kobject_put(&slave->kobj); 2511 2512 return 0; 2513 } 2514 2515 /* A wrapper used because of ndo_del_link */ 2516 int bond_release(struct net_device *bond_dev, struct net_device *slave_dev) 2517 { 2518 return __bond_release_one(bond_dev, slave_dev, false, false); 2519 } 2520 2521 /* First release a slave and then destroy the bond if no more slaves are left. 2522 * Must be under rtnl_lock when this function is called. 2523 */ 2524 static int bond_release_and_destroy(struct net_device *bond_dev, 2525 struct net_device *slave_dev) 2526 { 2527 struct bonding *bond = netdev_priv(bond_dev); 2528 int ret; 2529 2530 ret = __bond_release_one(bond_dev, slave_dev, false, true); 2531 if (ret == 0 && !bond_has_slaves(bond) && 2532 bond_dev->reg_state != NETREG_UNREGISTERING) { 2533 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL; 2534 netdev_info(bond_dev, "Destroying bond\n"); 2535 bond_remove_proc_entry(bond); 2536 unregister_netdevice(bond_dev); 2537 } 2538 return ret; 2539 } 2540 2541 static void bond_info_query(struct net_device *bond_dev, struct ifbond *info) 2542 { 2543 struct bonding *bond = netdev_priv(bond_dev); 2544 2545 bond_fill_ifbond(bond, info); 2546 } 2547 2548 static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info) 2549 { 2550 struct bonding *bond = netdev_priv(bond_dev); 2551 struct list_head *iter; 2552 int i = 0, res = -ENODEV; 2553 struct slave *slave; 2554 2555 bond_for_each_slave(bond, slave, iter) { 2556 if (i++ == (int)info->slave_id) { 2557 res = 0; 2558 bond_fill_ifslave(slave, info); 2559 break; 2560 } 2561 } 2562 2563 return res; 2564 } 2565 2566 /*-------------------------------- Monitoring -------------------------------*/ 2567 2568 /* called with rcu_read_lock() */ 2569 static int bond_miimon_inspect(struct bonding *bond) 2570 { 2571 bool ignore_updelay = false; 2572 int link_state, commit = 0; 2573 struct list_head *iter; 2574 struct slave *slave; 2575 2576 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP) { 2577 ignore_updelay = !rcu_dereference(bond->curr_active_slave); 2578 } else { 2579 struct bond_up_slave *usable_slaves; 2580 2581 usable_slaves = rcu_dereference(bond->usable_slaves); 2582 2583 if (usable_slaves && usable_slaves->count == 0) 2584 ignore_updelay = true; 2585 } 2586 2587 bond_for_each_slave_rcu(bond, slave, iter) { 2588 bond_propose_link_state(slave, BOND_LINK_NOCHANGE); 2589 2590 link_state = bond_check_dev_link(bond, slave->dev, 0); 2591 2592 switch (slave->link) { 2593 case BOND_LINK_UP: 2594 if (link_state) 2595 continue; 2596 2597 bond_propose_link_state(slave, BOND_LINK_FAIL); 2598 commit++; 2599 slave->delay = bond->params.downdelay; 2600 if (slave->delay) { 2601 slave_info(bond->dev, slave->dev, "link status down for %sinterface, disabling it in %d ms\n", 2602 (BOND_MODE(bond) == 2603 BOND_MODE_ACTIVEBACKUP) ? 2604 (bond_is_active_slave(slave) ? 2605 "active " : "backup ") : "", 2606 bond->params.downdelay * bond->params.miimon); 2607 } 2608 fallthrough; 2609 case BOND_LINK_FAIL: 2610 if (link_state) { 2611 /* recovered before downdelay expired */ 2612 bond_propose_link_state(slave, BOND_LINK_UP); 2613 slave->last_link_up = jiffies; 2614 slave_info(bond->dev, slave->dev, "link status up again after %d ms\n", 2615 (bond->params.downdelay - slave->delay) * 2616 bond->params.miimon); 2617 commit++; 2618 continue; 2619 } 2620 2621 if (slave->delay <= 0) { 2622 bond_propose_link_state(slave, BOND_LINK_DOWN); 2623 commit++; 2624 continue; 2625 } 2626 2627 slave->delay--; 2628 break; 2629 2630 case BOND_LINK_DOWN: 2631 if (!link_state) 2632 continue; 2633 2634 bond_propose_link_state(slave, BOND_LINK_BACK); 2635 commit++; 2636 slave->delay = bond->params.updelay; 2637 2638 if (slave->delay) { 2639 slave_info(bond->dev, slave->dev, "link status up, enabling it in %d ms\n", 2640 ignore_updelay ? 0 : 2641 bond->params.updelay * 2642 bond->params.miimon); 2643 } 2644 fallthrough; 2645 case BOND_LINK_BACK: 2646 if (!link_state) { 2647 bond_propose_link_state(slave, BOND_LINK_DOWN); 2648 slave_info(bond->dev, slave->dev, "link status down again after %d ms\n", 2649 (bond->params.updelay - slave->delay) * 2650 bond->params.miimon); 2651 commit++; 2652 continue; 2653 } 2654 2655 if (ignore_updelay) 2656 slave->delay = 0; 2657 2658 if (slave->delay <= 0) { 2659 bond_propose_link_state(slave, BOND_LINK_UP); 2660 commit++; 2661 ignore_updelay = false; 2662 continue; 2663 } 2664 2665 slave->delay--; 2666 break; 2667 } 2668 } 2669 2670 return commit; 2671 } 2672 2673 static void bond_miimon_link_change(struct bonding *bond, 2674 struct slave *slave, 2675 char link) 2676 { 2677 switch (BOND_MODE(bond)) { 2678 case BOND_MODE_8023AD: 2679 bond_3ad_handle_link_change(slave, link); 2680 break; 2681 case BOND_MODE_TLB: 2682 case BOND_MODE_ALB: 2683 bond_alb_handle_link_change(bond, slave, link); 2684 break; 2685 case BOND_MODE_XOR: 2686 bond_update_slave_arr(bond, NULL); 2687 break; 2688 } 2689 } 2690 2691 static void bond_miimon_commit(struct bonding *bond) 2692 { 2693 struct slave *slave, *primary, *active; 2694 bool do_failover = false; 2695 struct list_head *iter; 2696 2697 ASSERT_RTNL(); 2698 2699 bond_for_each_slave(bond, slave, iter) { 2700 switch (slave->link_new_state) { 2701 case BOND_LINK_NOCHANGE: 2702 /* For 802.3ad mode, check current slave speed and 2703 * duplex again in case its port was disabled after 2704 * invalid speed/duplex reporting but recovered before 2705 * link monitoring could make a decision on the actual 2706 * link status 2707 */ 2708 if (BOND_MODE(bond) == BOND_MODE_8023AD && 2709 slave->link == BOND_LINK_UP) 2710 bond_3ad_adapter_speed_duplex_changed(slave); 2711 continue; 2712 2713 case BOND_LINK_UP: 2714 if (bond_update_speed_duplex(slave) && 2715 bond_needs_speed_duplex(bond)) { 2716 slave->link = BOND_LINK_DOWN; 2717 if (net_ratelimit()) 2718 slave_warn(bond->dev, slave->dev, 2719 "failed to get link speed/duplex\n"); 2720 continue; 2721 } 2722 bond_set_slave_link_state(slave, BOND_LINK_UP, 2723 BOND_SLAVE_NOTIFY_NOW); 2724 slave->last_link_up = jiffies; 2725 2726 primary = rtnl_dereference(bond->primary_slave); 2727 if (BOND_MODE(bond) == BOND_MODE_8023AD) { 2728 /* prevent it from being the active one */ 2729 bond_set_backup_slave(slave); 2730 } else if (BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) { 2731 /* make it immediately active */ 2732 bond_set_active_slave(slave); 2733 } 2734 2735 slave_info(bond->dev, slave->dev, "link status definitely up, %u Mbps %s duplex\n", 2736 slave->speed == SPEED_UNKNOWN ? 0 : slave->speed, 2737 slave->duplex ? "full" : "half"); 2738 2739 bond_miimon_link_change(bond, slave, BOND_LINK_UP); 2740 2741 active = rtnl_dereference(bond->curr_active_slave); 2742 if (!active || slave == primary || slave->prio > active->prio) 2743 do_failover = true; 2744 2745 continue; 2746 2747 case BOND_LINK_DOWN: 2748 if (slave->link_failure_count < UINT_MAX) 2749 slave->link_failure_count++; 2750 2751 bond_set_slave_link_state(slave, BOND_LINK_DOWN, 2752 BOND_SLAVE_NOTIFY_NOW); 2753 2754 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP || 2755 BOND_MODE(bond) == BOND_MODE_8023AD) 2756 bond_set_slave_inactive_flags(slave, 2757 BOND_SLAVE_NOTIFY_NOW); 2758 2759 slave_info(bond->dev, slave->dev, "link status definitely down, disabling slave\n"); 2760 2761 bond_miimon_link_change(bond, slave, BOND_LINK_DOWN); 2762 2763 if (slave == rcu_access_pointer(bond->curr_active_slave)) 2764 do_failover = true; 2765 2766 continue; 2767 2768 default: 2769 slave_err(bond->dev, slave->dev, "invalid new link %d on slave\n", 2770 slave->link_new_state); 2771 bond_propose_link_state(slave, BOND_LINK_NOCHANGE); 2772 2773 continue; 2774 } 2775 } 2776 2777 if (do_failover) { 2778 block_netpoll_tx(); 2779 bond_select_active_slave(bond); 2780 unblock_netpoll_tx(); 2781 } 2782 2783 bond_set_carrier(bond); 2784 } 2785 2786 /* bond_mii_monitor 2787 * 2788 * Really a wrapper that splits the mii monitor into two phases: an 2789 * inspection, then (if inspection indicates something needs to be done) 2790 * an acquisition of appropriate locks followed by a commit phase to 2791 * implement whatever link state changes are indicated. 2792 */ 2793 static void bond_mii_monitor(struct work_struct *work) 2794 { 2795 struct bonding *bond = container_of(work, struct bonding, 2796 mii_work.work); 2797 bool should_notify_peers = false; 2798 bool commit; 2799 unsigned long delay; 2800 struct slave *slave; 2801 struct list_head *iter; 2802 2803 delay = msecs_to_jiffies(bond->params.miimon); 2804 2805 if (!bond_has_slaves(bond)) 2806 goto re_arm; 2807 2808 rcu_read_lock(); 2809 should_notify_peers = bond_should_notify_peers(bond); 2810 commit = !!bond_miimon_inspect(bond); 2811 if (bond->send_peer_notif) { 2812 rcu_read_unlock(); 2813 if (rtnl_trylock()) { 2814 bond->send_peer_notif--; 2815 rtnl_unlock(); 2816 } 2817 } else { 2818 rcu_read_unlock(); 2819 } 2820 2821 if (commit) { 2822 /* Race avoidance with bond_close cancel of workqueue */ 2823 if (!rtnl_trylock()) { 2824 delay = 1; 2825 should_notify_peers = false; 2826 goto re_arm; 2827 } 2828 2829 bond_for_each_slave(bond, slave, iter) { 2830 bond_commit_link_state(slave, BOND_SLAVE_NOTIFY_LATER); 2831 } 2832 bond_miimon_commit(bond); 2833 2834 rtnl_unlock(); /* might sleep, hold no other locks */ 2835 } 2836 2837 re_arm: 2838 if (bond->params.miimon) 2839 queue_delayed_work(bond->wq, &bond->mii_work, delay); 2840 2841 if (should_notify_peers) { 2842 if (!rtnl_trylock()) 2843 return; 2844 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, bond->dev); 2845 rtnl_unlock(); 2846 } 2847 } 2848 2849 static int bond_upper_dev_walk(struct net_device *upper, 2850 struct netdev_nested_priv *priv) 2851 { 2852 __be32 ip = *(__be32 *)priv->data; 2853 2854 return ip == bond_confirm_addr(upper, 0, ip); 2855 } 2856 2857 static bool bond_has_this_ip(struct bonding *bond, __be32 ip) 2858 { 2859 struct netdev_nested_priv priv = { 2860 .data = (void *)&ip, 2861 }; 2862 bool ret = false; 2863 2864 if (ip == bond_confirm_addr(bond->dev, 0, ip)) 2865 return true; 2866 2867 rcu_read_lock(); 2868 if (netdev_walk_all_upper_dev_rcu(bond->dev, bond_upper_dev_walk, &priv)) 2869 ret = true; 2870 rcu_read_unlock(); 2871 2872 return ret; 2873 } 2874 2875 #define BOND_VLAN_PROTO_NONE cpu_to_be16(0xffff) 2876 2877 static bool bond_handle_vlan(struct slave *slave, struct bond_vlan_tag *tags, 2878 struct sk_buff *skb) 2879 { 2880 struct net_device *bond_dev = slave->bond->dev; 2881 struct net_device *slave_dev = slave->dev; 2882 struct bond_vlan_tag *outer_tag = tags; 2883 2884 if (!tags || tags->vlan_proto == BOND_VLAN_PROTO_NONE) 2885 return true; 2886 2887 tags++; 2888 2889 /* Go through all the tags backwards and add them to the packet */ 2890 while (tags->vlan_proto != BOND_VLAN_PROTO_NONE) { 2891 if (!tags->vlan_id) { 2892 tags++; 2893 continue; 2894 } 2895 2896 slave_dbg(bond_dev, slave_dev, "inner tag: proto %X vid %X\n", 2897 ntohs(outer_tag->vlan_proto), tags->vlan_id); 2898 skb = vlan_insert_tag_set_proto(skb, tags->vlan_proto, 2899 tags->vlan_id); 2900 if (!skb) { 2901 net_err_ratelimited("failed to insert inner VLAN tag\n"); 2902 return false; 2903 } 2904 2905 tags++; 2906 } 2907 /* Set the outer tag */ 2908 if (outer_tag->vlan_id) { 2909 slave_dbg(bond_dev, slave_dev, "outer tag: proto %X vid %X\n", 2910 ntohs(outer_tag->vlan_proto), outer_tag->vlan_id); 2911 __vlan_hwaccel_put_tag(skb, outer_tag->vlan_proto, 2912 outer_tag->vlan_id); 2913 } 2914 2915 return true; 2916 } 2917 2918 /* We go to the (large) trouble of VLAN tagging ARP frames because 2919 * switches in VLAN mode (especially if ports are configured as 2920 * "native" to a VLAN) might not pass non-tagged frames. 2921 */ 2922 static void bond_arp_send(struct slave *slave, int arp_op, __be32 dest_ip, 2923 __be32 src_ip, struct bond_vlan_tag *tags) 2924 { 2925 struct net_device *bond_dev = slave->bond->dev; 2926 struct net_device *slave_dev = slave->dev; 2927 struct sk_buff *skb; 2928 2929 slave_dbg(bond_dev, slave_dev, "arp %d on slave: dst %pI4 src %pI4\n", 2930 arp_op, &dest_ip, &src_ip); 2931 2932 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip, 2933 NULL, slave_dev->dev_addr, NULL); 2934 2935 if (!skb) { 2936 net_err_ratelimited("ARP packet allocation failed\n"); 2937 return; 2938 } 2939 2940 if (bond_handle_vlan(slave, tags, skb)) { 2941 slave_update_last_tx(slave); 2942 arp_xmit(skb); 2943 } 2944 2945 return; 2946 } 2947 2948 /* Validate the device path between the @start_dev and the @end_dev. 2949 * The path is valid if the @end_dev is reachable through device 2950 * stacking. 2951 * When the path is validated, collect any vlan information in the 2952 * path. 2953 */ 2954 struct bond_vlan_tag *bond_verify_device_path(struct net_device *start_dev, 2955 struct net_device *end_dev, 2956 int level) 2957 { 2958 struct bond_vlan_tag *tags; 2959 struct net_device *upper; 2960 struct list_head *iter; 2961 2962 if (start_dev == end_dev) { 2963 tags = kcalloc(level + 1, sizeof(*tags), GFP_ATOMIC); 2964 if (!tags) 2965 return ERR_PTR(-ENOMEM); 2966 tags[level].vlan_proto = BOND_VLAN_PROTO_NONE; 2967 return tags; 2968 } 2969 2970 netdev_for_each_upper_dev_rcu(start_dev, upper, iter) { 2971 tags = bond_verify_device_path(upper, end_dev, level + 1); 2972 if (IS_ERR_OR_NULL(tags)) { 2973 if (IS_ERR(tags)) 2974 return tags; 2975 continue; 2976 } 2977 if (is_vlan_dev(upper)) { 2978 tags[level].vlan_proto = vlan_dev_vlan_proto(upper); 2979 tags[level].vlan_id = vlan_dev_vlan_id(upper); 2980 } 2981 2982 return tags; 2983 } 2984 2985 return NULL; 2986 } 2987 2988 static void bond_arp_send_all(struct bonding *bond, struct slave *slave) 2989 { 2990 struct rtable *rt; 2991 struct bond_vlan_tag *tags; 2992 __be32 *targets = bond->params.arp_targets, addr; 2993 int i; 2994 2995 for (i = 0; i < BOND_MAX_ARP_TARGETS && targets[i]; i++) { 2996 slave_dbg(bond->dev, slave->dev, "%s: target %pI4\n", 2997 __func__, &targets[i]); 2998 tags = NULL; 2999 3000 /* Find out through which dev should the packet go */ 3001 rt = ip_route_output(dev_net(bond->dev), targets[i], 0, 3002 RTO_ONLINK, 0); 3003 if (IS_ERR(rt)) { 3004 /* there's no route to target - try to send arp 3005 * probe to generate any traffic (arp_validate=0) 3006 */ 3007 if (bond->params.arp_validate) 3008 pr_warn_once("%s: no route to arp_ip_target %pI4 and arp_validate is set\n", 3009 bond->dev->name, 3010 &targets[i]); 3011 bond_arp_send(slave, ARPOP_REQUEST, targets[i], 3012 0, tags); 3013 continue; 3014 } 3015 3016 /* bond device itself */ 3017 if (rt->dst.dev == bond->dev) 3018 goto found; 3019 3020 rcu_read_lock(); 3021 tags = bond_verify_device_path(bond->dev, rt->dst.dev, 0); 3022 rcu_read_unlock(); 3023 3024 if (!IS_ERR_OR_NULL(tags)) 3025 goto found; 3026 3027 /* Not our device - skip */ 3028 slave_dbg(bond->dev, slave->dev, "no path to arp_ip_target %pI4 via rt.dev %s\n", 3029 &targets[i], rt->dst.dev ? rt->dst.dev->name : "NULL"); 3030 3031 ip_rt_put(rt); 3032 continue; 3033 3034 found: 3035 addr = bond_confirm_addr(rt->dst.dev, targets[i], 0); 3036 ip_rt_put(rt); 3037 bond_arp_send(slave, ARPOP_REQUEST, targets[i], addr, tags); 3038 kfree(tags); 3039 } 3040 } 3041 3042 static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip) 3043 { 3044 int i; 3045 3046 if (!sip || !bond_has_this_ip(bond, tip)) { 3047 slave_dbg(bond->dev, slave->dev, "%s: sip %pI4 tip %pI4 not found\n", 3048 __func__, &sip, &tip); 3049 return; 3050 } 3051 3052 i = bond_get_targets_ip(bond->params.arp_targets, sip); 3053 if (i == -1) { 3054 slave_dbg(bond->dev, slave->dev, "%s: sip %pI4 not found in targets\n", 3055 __func__, &sip); 3056 return; 3057 } 3058 slave->last_rx = jiffies; 3059 slave->target_last_arp_rx[i] = jiffies; 3060 } 3061 3062 static int bond_arp_rcv(const struct sk_buff *skb, struct bonding *bond, 3063 struct slave *slave) 3064 { 3065 struct arphdr *arp = (struct arphdr *)skb->data; 3066 struct slave *curr_active_slave, *curr_arp_slave; 3067 unsigned char *arp_ptr; 3068 __be32 sip, tip; 3069 unsigned int alen; 3070 3071 alen = arp_hdr_len(bond->dev); 3072 3073 if (alen > skb_headlen(skb)) { 3074 arp = kmalloc(alen, GFP_ATOMIC); 3075 if (!arp) 3076 goto out_unlock; 3077 if (skb_copy_bits(skb, 0, arp, alen) < 0) 3078 goto out_unlock; 3079 } 3080 3081 if (arp->ar_hln != bond->dev->addr_len || 3082 skb->pkt_type == PACKET_OTHERHOST || 3083 skb->pkt_type == PACKET_LOOPBACK || 3084 arp->ar_hrd != htons(ARPHRD_ETHER) || 3085 arp->ar_pro != htons(ETH_P_IP) || 3086 arp->ar_pln != 4) 3087 goto out_unlock; 3088 3089 arp_ptr = (unsigned char *)(arp + 1); 3090 arp_ptr += bond->dev->addr_len; 3091 memcpy(&sip, arp_ptr, 4); 3092 arp_ptr += 4 + bond->dev->addr_len; 3093 memcpy(&tip, arp_ptr, 4); 3094 3095 slave_dbg(bond->dev, slave->dev, "%s: %s/%d av %d sv %d sip %pI4 tip %pI4\n", 3096 __func__, slave->dev->name, bond_slave_state(slave), 3097 bond->params.arp_validate, slave_do_arp_validate(bond, slave), 3098 &sip, &tip); 3099 3100 curr_active_slave = rcu_dereference(bond->curr_active_slave); 3101 curr_arp_slave = rcu_dereference(bond->current_arp_slave); 3102 3103 /* We 'trust' the received ARP enough to validate it if: 3104 * 3105 * (a) the slave receiving the ARP is active (which includes the 3106 * current ARP slave, if any), or 3107 * 3108 * (b) the receiving slave isn't active, but there is a currently 3109 * active slave and it received valid arp reply(s) after it became 3110 * the currently active slave, or 3111 * 3112 * (c) there is an ARP slave that sent an ARP during the prior ARP 3113 * interval, and we receive an ARP reply on any slave. We accept 3114 * these because switch FDB update delays may deliver the ARP 3115 * reply to a slave other than the sender of the ARP request. 3116 * 3117 * Note: for (b), backup slaves are receiving the broadcast ARP 3118 * request, not a reply. This request passes from the sending 3119 * slave through the L2 switch(es) to the receiving slave. Since 3120 * this is checking the request, sip/tip are swapped for 3121 * validation. 3122 * 3123 * This is done to avoid endless looping when we can't reach the 3124 * arp_ip_target and fool ourselves with our own arp requests. 3125 */ 3126 if (bond_is_active_slave(slave)) 3127 bond_validate_arp(bond, slave, sip, tip); 3128 else if (curr_active_slave && 3129 time_after(slave_last_rx(bond, curr_active_slave), 3130 curr_active_slave->last_link_up)) 3131 bond_validate_arp(bond, slave, tip, sip); 3132 else if (curr_arp_slave && (arp->ar_op == htons(ARPOP_REPLY)) && 3133 bond_time_in_interval(bond, slave_last_tx(curr_arp_slave), 1)) 3134 bond_validate_arp(bond, slave, sip, tip); 3135 3136 out_unlock: 3137 if (arp != (struct arphdr *)skb->data) 3138 kfree(arp); 3139 return RX_HANDLER_ANOTHER; 3140 } 3141 3142 #if IS_ENABLED(CONFIG_IPV6) 3143 static void bond_ns_send(struct slave *slave, const struct in6_addr *daddr, 3144 const struct in6_addr *saddr, struct bond_vlan_tag *tags) 3145 { 3146 struct net_device *bond_dev = slave->bond->dev; 3147 struct net_device *slave_dev = slave->dev; 3148 struct in6_addr mcaddr; 3149 struct sk_buff *skb; 3150 3151 slave_dbg(bond_dev, slave_dev, "NS on slave: dst %pI6c src %pI6c\n", 3152 daddr, saddr); 3153 3154 skb = ndisc_ns_create(slave_dev, daddr, saddr, 0); 3155 if (!skb) { 3156 net_err_ratelimited("NS packet allocation failed\n"); 3157 return; 3158 } 3159 3160 addrconf_addr_solict_mult(daddr, &mcaddr); 3161 if (bond_handle_vlan(slave, tags, skb)) { 3162 slave_update_last_tx(slave); 3163 ndisc_send_skb(skb, &mcaddr, saddr); 3164 } 3165 } 3166 3167 static void bond_ns_send_all(struct bonding *bond, struct slave *slave) 3168 { 3169 struct in6_addr *targets = bond->params.ns_targets; 3170 struct bond_vlan_tag *tags; 3171 struct dst_entry *dst; 3172 struct in6_addr saddr; 3173 struct flowi6 fl6; 3174 int i; 3175 3176 for (i = 0; i < BOND_MAX_NS_TARGETS && !ipv6_addr_any(&targets[i]); i++) { 3177 slave_dbg(bond->dev, slave->dev, "%s: target %pI6c\n", 3178 __func__, &targets[i]); 3179 tags = NULL; 3180 3181 /* Find out through which dev should the packet go */ 3182 memset(&fl6, 0, sizeof(struct flowi6)); 3183 fl6.daddr = targets[i]; 3184 fl6.flowi6_oif = bond->dev->ifindex; 3185 3186 dst = ip6_route_output(dev_net(bond->dev), NULL, &fl6); 3187 if (dst->error) { 3188 dst_release(dst); 3189 /* there's no route to target - try to send arp 3190 * probe to generate any traffic (arp_validate=0) 3191 */ 3192 if (bond->params.arp_validate) 3193 pr_warn_once("%s: no route to ns_ip6_target %pI6c and arp_validate is set\n", 3194 bond->dev->name, 3195 &targets[i]); 3196 bond_ns_send(slave, &targets[i], &in6addr_any, tags); 3197 continue; 3198 } 3199 3200 /* bond device itself */ 3201 if (dst->dev == bond->dev) 3202 goto found; 3203 3204 rcu_read_lock(); 3205 tags = bond_verify_device_path(bond->dev, dst->dev, 0); 3206 rcu_read_unlock(); 3207 3208 if (!IS_ERR_OR_NULL(tags)) 3209 goto found; 3210 3211 /* Not our device - skip */ 3212 slave_dbg(bond->dev, slave->dev, "no path to ns_ip6_target %pI6c via dst->dev %s\n", 3213 &targets[i], dst->dev ? dst->dev->name : "NULL"); 3214 3215 dst_release(dst); 3216 continue; 3217 3218 found: 3219 if (!ipv6_dev_get_saddr(dev_net(dst->dev), dst->dev, &targets[i], 0, &saddr)) 3220 bond_ns_send(slave, &targets[i], &saddr, tags); 3221 else 3222 bond_ns_send(slave, &targets[i], &in6addr_any, tags); 3223 3224 dst_release(dst); 3225 kfree(tags); 3226 } 3227 } 3228 3229 static int bond_confirm_addr6(struct net_device *dev, 3230 struct netdev_nested_priv *priv) 3231 { 3232 struct in6_addr *addr = (struct in6_addr *)priv->data; 3233 3234 return ipv6_chk_addr(dev_net(dev), addr, dev, 0); 3235 } 3236 3237 static bool bond_has_this_ip6(struct bonding *bond, struct in6_addr *addr) 3238 { 3239 struct netdev_nested_priv priv = { 3240 .data = addr, 3241 }; 3242 int ret = false; 3243 3244 if (bond_confirm_addr6(bond->dev, &priv)) 3245 return true; 3246 3247 rcu_read_lock(); 3248 if (netdev_walk_all_upper_dev_rcu(bond->dev, bond_confirm_addr6, &priv)) 3249 ret = true; 3250 rcu_read_unlock(); 3251 3252 return ret; 3253 } 3254 3255 static void bond_validate_na(struct bonding *bond, struct slave *slave, 3256 struct in6_addr *saddr, struct in6_addr *daddr) 3257 { 3258 int i; 3259 3260 /* Ignore NAs that: 3261 * 1. Source address is unspecified address. 3262 * 2. Dest address is neither all-nodes multicast address nor 3263 * exist on bond interface. 3264 */ 3265 if (ipv6_addr_any(saddr) || 3266 (!ipv6_addr_equal(daddr, &in6addr_linklocal_allnodes) && 3267 !bond_has_this_ip6(bond, daddr))) { 3268 slave_dbg(bond->dev, slave->dev, "%s: sip %pI6c tip %pI6c not found\n", 3269 __func__, saddr, daddr); 3270 return; 3271 } 3272 3273 i = bond_get_targets_ip6(bond->params.ns_targets, saddr); 3274 if (i == -1) { 3275 slave_dbg(bond->dev, slave->dev, "%s: sip %pI6c not found in targets\n", 3276 __func__, saddr); 3277 return; 3278 } 3279 slave->last_rx = jiffies; 3280 slave->target_last_arp_rx[i] = jiffies; 3281 } 3282 3283 static int bond_na_rcv(const struct sk_buff *skb, struct bonding *bond, 3284 struct slave *slave) 3285 { 3286 struct slave *curr_active_slave, *curr_arp_slave; 3287 struct in6_addr *saddr, *daddr; 3288 struct { 3289 struct ipv6hdr ip6; 3290 struct icmp6hdr icmp6; 3291 } *combined, _combined; 3292 3293 if (skb->pkt_type == PACKET_OTHERHOST || 3294 skb->pkt_type == PACKET_LOOPBACK) 3295 goto out; 3296 3297 combined = skb_header_pointer(skb, 0, sizeof(_combined), &_combined); 3298 if (!combined || combined->ip6.nexthdr != NEXTHDR_ICMP || 3299 (combined->icmp6.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION && 3300 combined->icmp6.icmp6_type != NDISC_NEIGHBOUR_ADVERTISEMENT)) 3301 goto out; 3302 3303 saddr = &combined->ip6.saddr; 3304 daddr = &combined->ip6.daddr; 3305 3306 slave_dbg(bond->dev, slave->dev, "%s: %s/%d av %d sv %d sip %pI6c tip %pI6c\n", 3307 __func__, slave->dev->name, bond_slave_state(slave), 3308 bond->params.arp_validate, slave_do_arp_validate(bond, slave), 3309 saddr, daddr); 3310 3311 curr_active_slave = rcu_dereference(bond->curr_active_slave); 3312 curr_arp_slave = rcu_dereference(bond->current_arp_slave); 3313 3314 /* We 'trust' the received ARP enough to validate it if: 3315 * see bond_arp_rcv(). 3316 */ 3317 if (bond_is_active_slave(slave)) 3318 bond_validate_na(bond, slave, saddr, daddr); 3319 else if (curr_active_slave && 3320 time_after(slave_last_rx(bond, curr_active_slave), 3321 curr_active_slave->last_link_up)) 3322 bond_validate_na(bond, slave, daddr, saddr); 3323 else if (curr_arp_slave && 3324 bond_time_in_interval(bond, slave_last_tx(curr_arp_slave), 1)) 3325 bond_validate_na(bond, slave, saddr, daddr); 3326 3327 out: 3328 return RX_HANDLER_ANOTHER; 3329 } 3330 #endif 3331 3332 int bond_rcv_validate(const struct sk_buff *skb, struct bonding *bond, 3333 struct slave *slave) 3334 { 3335 #if IS_ENABLED(CONFIG_IPV6) 3336 bool is_ipv6 = skb->protocol == __cpu_to_be16(ETH_P_IPV6); 3337 #endif 3338 bool is_arp = skb->protocol == __cpu_to_be16(ETH_P_ARP); 3339 3340 slave_dbg(bond->dev, slave->dev, "%s: skb->dev %s\n", 3341 __func__, skb->dev->name); 3342 3343 /* Use arp validate logic for both ARP and NS */ 3344 if (!slave_do_arp_validate(bond, slave)) { 3345 if ((slave_do_arp_validate_only(bond) && is_arp) || 3346 #if IS_ENABLED(CONFIG_IPV6) 3347 (slave_do_arp_validate_only(bond) && is_ipv6) || 3348 #endif 3349 !slave_do_arp_validate_only(bond)) 3350 slave->last_rx = jiffies; 3351 return RX_HANDLER_ANOTHER; 3352 } else if (is_arp) { 3353 return bond_arp_rcv(skb, bond, slave); 3354 #if IS_ENABLED(CONFIG_IPV6) 3355 } else if (is_ipv6) { 3356 return bond_na_rcv(skb, bond, slave); 3357 #endif 3358 } else { 3359 return RX_HANDLER_ANOTHER; 3360 } 3361 } 3362 3363 static void bond_send_validate(struct bonding *bond, struct slave *slave) 3364 { 3365 bond_arp_send_all(bond, slave); 3366 #if IS_ENABLED(CONFIG_IPV6) 3367 bond_ns_send_all(bond, slave); 3368 #endif 3369 } 3370 3371 /* function to verify if we're in the arp_interval timeslice, returns true if 3372 * (last_act - arp_interval) <= jiffies <= (last_act + mod * arp_interval + 3373 * arp_interval/2) . the arp_interval/2 is needed for really fast networks. 3374 */ 3375 static bool bond_time_in_interval(struct bonding *bond, unsigned long last_act, 3376 int mod) 3377 { 3378 int delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval); 3379 3380 return time_in_range(jiffies, 3381 last_act - delta_in_ticks, 3382 last_act + mod * delta_in_ticks + delta_in_ticks/2); 3383 } 3384 3385 /* This function is called regularly to monitor each slave's link 3386 * ensuring that traffic is being sent and received when arp monitoring 3387 * is used in load-balancing mode. if the adapter has been dormant, then an 3388 * arp is transmitted to generate traffic. see activebackup_arp_monitor for 3389 * arp monitoring in active backup mode. 3390 */ 3391 static void bond_loadbalance_arp_mon(struct bonding *bond) 3392 { 3393 struct slave *slave, *oldcurrent; 3394 struct list_head *iter; 3395 int do_failover = 0, slave_state_changed = 0; 3396 3397 if (!bond_has_slaves(bond)) 3398 goto re_arm; 3399 3400 rcu_read_lock(); 3401 3402 oldcurrent = rcu_dereference(bond->curr_active_slave); 3403 /* see if any of the previous devices are up now (i.e. they have 3404 * xmt and rcv traffic). the curr_active_slave does not come into 3405 * the picture unless it is null. also, slave->last_link_up is not 3406 * needed here because we send an arp on each slave and give a slave 3407 * as long as it needs to get the tx/rx within the delta. 3408 * TODO: what about up/down delay in arp mode? it wasn't here before 3409 * so it can wait 3410 */ 3411 bond_for_each_slave_rcu(bond, slave, iter) { 3412 unsigned long last_tx = slave_last_tx(slave); 3413 3414 bond_propose_link_state(slave, BOND_LINK_NOCHANGE); 3415 3416 if (slave->link != BOND_LINK_UP) { 3417 if (bond_time_in_interval(bond, last_tx, 1) && 3418 bond_time_in_interval(bond, slave->last_rx, 1)) { 3419 3420 bond_propose_link_state(slave, BOND_LINK_UP); 3421 slave_state_changed = 1; 3422 3423 /* primary_slave has no meaning in round-robin 3424 * mode. the window of a slave being up and 3425 * curr_active_slave being null after enslaving 3426 * is closed. 3427 */ 3428 if (!oldcurrent) { 3429 slave_info(bond->dev, slave->dev, "link status definitely up\n"); 3430 do_failover = 1; 3431 } else { 3432 slave_info(bond->dev, slave->dev, "interface is now up\n"); 3433 } 3434 } 3435 } else { 3436 /* slave->link == BOND_LINK_UP */ 3437 3438 /* not all switches will respond to an arp request 3439 * when the source ip is 0, so don't take the link down 3440 * if we don't know our ip yet 3441 */ 3442 if (!bond_time_in_interval(bond, last_tx, bond->params.missed_max) || 3443 !bond_time_in_interval(bond, slave->last_rx, bond->params.missed_max)) { 3444 3445 bond_propose_link_state(slave, BOND_LINK_DOWN); 3446 slave_state_changed = 1; 3447 3448 if (slave->link_failure_count < UINT_MAX) 3449 slave->link_failure_count++; 3450 3451 slave_info(bond->dev, slave->dev, "interface is now down\n"); 3452 3453 if (slave == oldcurrent) 3454 do_failover = 1; 3455 } 3456 } 3457 3458 /* note: if switch is in round-robin mode, all links 3459 * must tx arp to ensure all links rx an arp - otherwise 3460 * links may oscillate or not come up at all; if switch is 3461 * in something like xor mode, there is nothing we can 3462 * do - all replies will be rx'ed on same link causing slaves 3463 * to be unstable during low/no traffic periods 3464 */ 3465 if (bond_slave_is_up(slave)) 3466 bond_send_validate(bond, slave); 3467 } 3468 3469 rcu_read_unlock(); 3470 3471 if (do_failover || slave_state_changed) { 3472 if (!rtnl_trylock()) 3473 goto re_arm; 3474 3475 bond_for_each_slave(bond, slave, iter) { 3476 if (slave->link_new_state != BOND_LINK_NOCHANGE) 3477 slave->link = slave->link_new_state; 3478 } 3479 3480 if (slave_state_changed) { 3481 bond_slave_state_change(bond); 3482 if (BOND_MODE(bond) == BOND_MODE_XOR) 3483 bond_update_slave_arr(bond, NULL); 3484 } 3485 if (do_failover) { 3486 block_netpoll_tx(); 3487 bond_select_active_slave(bond); 3488 unblock_netpoll_tx(); 3489 } 3490 rtnl_unlock(); 3491 } 3492 3493 re_arm: 3494 if (bond->params.arp_interval) 3495 queue_delayed_work(bond->wq, &bond->arp_work, 3496 msecs_to_jiffies(bond->params.arp_interval)); 3497 } 3498 3499 /* Called to inspect slaves for active-backup mode ARP monitor link state 3500 * changes. Sets proposed link state in slaves to specify what action 3501 * should take place for the slave. Returns 0 if no changes are found, >0 3502 * if changes to link states must be committed. 3503 * 3504 * Called with rcu_read_lock held. 3505 */ 3506 static int bond_ab_arp_inspect(struct bonding *bond) 3507 { 3508 unsigned long last_tx, last_rx; 3509 struct list_head *iter; 3510 struct slave *slave; 3511 int commit = 0; 3512 3513 bond_for_each_slave_rcu(bond, slave, iter) { 3514 bond_propose_link_state(slave, BOND_LINK_NOCHANGE); 3515 last_rx = slave_last_rx(bond, slave); 3516 3517 if (slave->link != BOND_LINK_UP) { 3518 if (bond_time_in_interval(bond, last_rx, 1)) { 3519 bond_propose_link_state(slave, BOND_LINK_UP); 3520 commit++; 3521 } else if (slave->link == BOND_LINK_BACK) { 3522 bond_propose_link_state(slave, BOND_LINK_FAIL); 3523 commit++; 3524 } 3525 continue; 3526 } 3527 3528 /* Give slaves 2*delta after being enslaved or made 3529 * active. This avoids bouncing, as the last receive 3530 * times need a full ARP monitor cycle to be updated. 3531 */ 3532 if (bond_time_in_interval(bond, slave->last_link_up, 2)) 3533 continue; 3534 3535 /* Backup slave is down if: 3536 * - No current_arp_slave AND 3537 * - more than (missed_max+1)*delta since last receive AND 3538 * - the bond has an IP address 3539 * 3540 * Note: a non-null current_arp_slave indicates 3541 * the curr_active_slave went down and we are 3542 * searching for a new one; under this condition 3543 * we only take the curr_active_slave down - this 3544 * gives each slave a chance to tx/rx traffic 3545 * before being taken out 3546 */ 3547 if (!bond_is_active_slave(slave) && 3548 !rcu_access_pointer(bond->current_arp_slave) && 3549 !bond_time_in_interval(bond, last_rx, bond->params.missed_max + 1)) { 3550 bond_propose_link_state(slave, BOND_LINK_DOWN); 3551 commit++; 3552 } 3553 3554 /* Active slave is down if: 3555 * - more than missed_max*delta since transmitting OR 3556 * - (more than missed_max*delta since receive AND 3557 * the bond has an IP address) 3558 */ 3559 last_tx = slave_last_tx(slave); 3560 if (bond_is_active_slave(slave) && 3561 (!bond_time_in_interval(bond, last_tx, bond->params.missed_max) || 3562 !bond_time_in_interval(bond, last_rx, bond->params.missed_max))) { 3563 bond_propose_link_state(slave, BOND_LINK_DOWN); 3564 commit++; 3565 } 3566 } 3567 3568 return commit; 3569 } 3570 3571 /* Called to commit link state changes noted by inspection step of 3572 * active-backup mode ARP monitor. 3573 * 3574 * Called with RTNL hold. 3575 */ 3576 static void bond_ab_arp_commit(struct bonding *bond) 3577 { 3578 bool do_failover = false; 3579 struct list_head *iter; 3580 unsigned long last_tx; 3581 struct slave *slave; 3582 3583 bond_for_each_slave(bond, slave, iter) { 3584 switch (slave->link_new_state) { 3585 case BOND_LINK_NOCHANGE: 3586 continue; 3587 3588 case BOND_LINK_UP: 3589 last_tx = slave_last_tx(slave); 3590 if (rtnl_dereference(bond->curr_active_slave) != slave || 3591 (!rtnl_dereference(bond->curr_active_slave) && 3592 bond_time_in_interval(bond, last_tx, 1))) { 3593 struct slave *current_arp_slave; 3594 3595 current_arp_slave = rtnl_dereference(bond->current_arp_slave); 3596 bond_set_slave_link_state(slave, BOND_LINK_UP, 3597 BOND_SLAVE_NOTIFY_NOW); 3598 if (current_arp_slave) { 3599 bond_set_slave_inactive_flags( 3600 current_arp_slave, 3601 BOND_SLAVE_NOTIFY_NOW); 3602 RCU_INIT_POINTER(bond->current_arp_slave, NULL); 3603 } 3604 3605 slave_info(bond->dev, slave->dev, "link status definitely up\n"); 3606 3607 if (!rtnl_dereference(bond->curr_active_slave) || 3608 slave == rtnl_dereference(bond->primary_slave) || 3609 slave->prio > rtnl_dereference(bond->curr_active_slave)->prio) 3610 do_failover = true; 3611 3612 } 3613 3614 continue; 3615 3616 case BOND_LINK_DOWN: 3617 if (slave->link_failure_count < UINT_MAX) 3618 slave->link_failure_count++; 3619 3620 bond_set_slave_link_state(slave, BOND_LINK_DOWN, 3621 BOND_SLAVE_NOTIFY_NOW); 3622 bond_set_slave_inactive_flags(slave, 3623 BOND_SLAVE_NOTIFY_NOW); 3624 3625 slave_info(bond->dev, slave->dev, "link status definitely down, disabling slave\n"); 3626 3627 if (slave == rtnl_dereference(bond->curr_active_slave)) { 3628 RCU_INIT_POINTER(bond->current_arp_slave, NULL); 3629 do_failover = true; 3630 } 3631 3632 continue; 3633 3634 case BOND_LINK_FAIL: 3635 bond_set_slave_link_state(slave, BOND_LINK_FAIL, 3636 BOND_SLAVE_NOTIFY_NOW); 3637 bond_set_slave_inactive_flags(slave, 3638 BOND_SLAVE_NOTIFY_NOW); 3639 3640 /* A slave has just been enslaved and has become 3641 * the current active slave. 3642 */ 3643 if (rtnl_dereference(bond->curr_active_slave)) 3644 RCU_INIT_POINTER(bond->current_arp_slave, NULL); 3645 continue; 3646 3647 default: 3648 slave_err(bond->dev, slave->dev, 3649 "impossible: link_new_state %d on slave\n", 3650 slave->link_new_state); 3651 continue; 3652 } 3653 } 3654 3655 if (do_failover) { 3656 block_netpoll_tx(); 3657 bond_select_active_slave(bond); 3658 unblock_netpoll_tx(); 3659 } 3660 3661 bond_set_carrier(bond); 3662 } 3663 3664 /* Send ARP probes for active-backup mode ARP monitor. 3665 * 3666 * Called with rcu_read_lock held. 3667 */ 3668 static bool bond_ab_arp_probe(struct bonding *bond) 3669 { 3670 struct slave *slave, *before = NULL, *new_slave = NULL, 3671 *curr_arp_slave = rcu_dereference(bond->current_arp_slave), 3672 *curr_active_slave = rcu_dereference(bond->curr_active_slave); 3673 struct list_head *iter; 3674 bool found = false; 3675 bool should_notify_rtnl = BOND_SLAVE_NOTIFY_LATER; 3676 3677 if (curr_arp_slave && curr_active_slave) 3678 netdev_info(bond->dev, "PROBE: c_arp %s && cas %s BAD\n", 3679 curr_arp_slave->dev->name, 3680 curr_active_slave->dev->name); 3681 3682 if (curr_active_slave) { 3683 bond_send_validate(bond, curr_active_slave); 3684 return should_notify_rtnl; 3685 } 3686 3687 /* if we don't have a curr_active_slave, search for the next available 3688 * backup slave from the current_arp_slave and make it the candidate 3689 * for becoming the curr_active_slave 3690 */ 3691 3692 if (!curr_arp_slave) { 3693 curr_arp_slave = bond_first_slave_rcu(bond); 3694 if (!curr_arp_slave) 3695 return should_notify_rtnl; 3696 } 3697 3698 bond_for_each_slave_rcu(bond, slave, iter) { 3699 if (!found && !before && bond_slave_is_up(slave)) 3700 before = slave; 3701 3702 if (found && !new_slave && bond_slave_is_up(slave)) 3703 new_slave = slave; 3704 /* if the link state is up at this point, we 3705 * mark it down - this can happen if we have 3706 * simultaneous link failures and 3707 * reselect_active_interface doesn't make this 3708 * one the current slave so it is still marked 3709 * up when it is actually down 3710 */ 3711 if (!bond_slave_is_up(slave) && slave->link == BOND_LINK_UP) { 3712 bond_set_slave_link_state(slave, BOND_LINK_DOWN, 3713 BOND_SLAVE_NOTIFY_LATER); 3714 if (slave->link_failure_count < UINT_MAX) 3715 slave->link_failure_count++; 3716 3717 bond_set_slave_inactive_flags(slave, 3718 BOND_SLAVE_NOTIFY_LATER); 3719 3720 slave_info(bond->dev, slave->dev, "backup interface is now down\n"); 3721 } 3722 if (slave == curr_arp_slave) 3723 found = true; 3724 } 3725 3726 if (!new_slave && before) 3727 new_slave = before; 3728 3729 if (!new_slave) 3730 goto check_state; 3731 3732 bond_set_slave_link_state(new_slave, BOND_LINK_BACK, 3733 BOND_SLAVE_NOTIFY_LATER); 3734 bond_set_slave_active_flags(new_slave, BOND_SLAVE_NOTIFY_LATER); 3735 bond_send_validate(bond, new_slave); 3736 new_slave->last_link_up = jiffies; 3737 rcu_assign_pointer(bond->current_arp_slave, new_slave); 3738 3739 check_state: 3740 bond_for_each_slave_rcu(bond, slave, iter) { 3741 if (slave->should_notify || slave->should_notify_link) { 3742 should_notify_rtnl = BOND_SLAVE_NOTIFY_NOW; 3743 break; 3744 } 3745 } 3746 return should_notify_rtnl; 3747 } 3748 3749 static void bond_activebackup_arp_mon(struct bonding *bond) 3750 { 3751 bool should_notify_peers = false; 3752 bool should_notify_rtnl = false; 3753 int delta_in_ticks; 3754 3755 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval); 3756 3757 if (!bond_has_slaves(bond)) 3758 goto re_arm; 3759 3760 rcu_read_lock(); 3761 3762 should_notify_peers = bond_should_notify_peers(bond); 3763 3764 if (bond_ab_arp_inspect(bond)) { 3765 rcu_read_unlock(); 3766 3767 /* Race avoidance with bond_close flush of workqueue */ 3768 if (!rtnl_trylock()) { 3769 delta_in_ticks = 1; 3770 should_notify_peers = false; 3771 goto re_arm; 3772 } 3773 3774 bond_ab_arp_commit(bond); 3775 3776 rtnl_unlock(); 3777 rcu_read_lock(); 3778 } 3779 3780 should_notify_rtnl = bond_ab_arp_probe(bond); 3781 rcu_read_unlock(); 3782 3783 re_arm: 3784 if (bond->params.arp_interval) 3785 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks); 3786 3787 if (should_notify_peers || should_notify_rtnl) { 3788 if (!rtnl_trylock()) 3789 return; 3790 3791 if (should_notify_peers) { 3792 bond->send_peer_notif--; 3793 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, 3794 bond->dev); 3795 } 3796 if (should_notify_rtnl) { 3797 bond_slave_state_notify(bond); 3798 bond_slave_link_notify(bond); 3799 } 3800 3801 rtnl_unlock(); 3802 } 3803 } 3804 3805 static void bond_arp_monitor(struct work_struct *work) 3806 { 3807 struct bonding *bond = container_of(work, struct bonding, 3808 arp_work.work); 3809 3810 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP) 3811 bond_activebackup_arp_mon(bond); 3812 else 3813 bond_loadbalance_arp_mon(bond); 3814 } 3815 3816 /*-------------------------- netdev event handling --------------------------*/ 3817 3818 /* Change device name */ 3819 static int bond_event_changename(struct bonding *bond) 3820 { 3821 bond_remove_proc_entry(bond); 3822 bond_create_proc_entry(bond); 3823 3824 bond_debug_reregister(bond); 3825 3826 return NOTIFY_DONE; 3827 } 3828 3829 static int bond_master_netdev_event(unsigned long event, 3830 struct net_device *bond_dev) 3831 { 3832 struct bonding *event_bond = netdev_priv(bond_dev); 3833 3834 netdev_dbg(bond_dev, "%s called\n", __func__); 3835 3836 switch (event) { 3837 case NETDEV_CHANGENAME: 3838 return bond_event_changename(event_bond); 3839 case NETDEV_UNREGISTER: 3840 bond_remove_proc_entry(event_bond); 3841 #ifdef CONFIG_XFRM_OFFLOAD 3842 xfrm_dev_state_flush(dev_net(bond_dev), bond_dev, true); 3843 #endif /* CONFIG_XFRM_OFFLOAD */ 3844 break; 3845 case NETDEV_REGISTER: 3846 bond_create_proc_entry(event_bond); 3847 break; 3848 default: 3849 break; 3850 } 3851 3852 return NOTIFY_DONE; 3853 } 3854 3855 static int bond_slave_netdev_event(unsigned long event, 3856 struct net_device *slave_dev) 3857 { 3858 struct slave *slave = bond_slave_get_rtnl(slave_dev), *primary; 3859 struct bonding *bond; 3860 struct net_device *bond_dev; 3861 3862 /* A netdev event can be generated while enslaving a device 3863 * before netdev_rx_handler_register is called in which case 3864 * slave will be NULL 3865 */ 3866 if (!slave) { 3867 netdev_dbg(slave_dev, "%s called on NULL slave\n", __func__); 3868 return NOTIFY_DONE; 3869 } 3870 3871 bond_dev = slave->bond->dev; 3872 bond = slave->bond; 3873 primary = rtnl_dereference(bond->primary_slave); 3874 3875 slave_dbg(bond_dev, slave_dev, "%s called\n", __func__); 3876 3877 switch (event) { 3878 case NETDEV_UNREGISTER: 3879 if (bond_dev->type != ARPHRD_ETHER) 3880 bond_release_and_destroy(bond_dev, slave_dev); 3881 else 3882 __bond_release_one(bond_dev, slave_dev, false, true); 3883 break; 3884 case NETDEV_UP: 3885 case NETDEV_CHANGE: 3886 /* For 802.3ad mode only: 3887 * Getting invalid Speed/Duplex values here will put slave 3888 * in weird state. Mark it as link-fail if the link was 3889 * previously up or link-down if it hasn't yet come up, and 3890 * let link-monitoring (miimon) set it right when correct 3891 * speeds/duplex are available. 3892 */ 3893 if (bond_update_speed_duplex(slave) && 3894 BOND_MODE(bond) == BOND_MODE_8023AD) { 3895 if (slave->last_link_up) 3896 slave->link = BOND_LINK_FAIL; 3897 else 3898 slave->link = BOND_LINK_DOWN; 3899 } 3900 3901 if (BOND_MODE(bond) == BOND_MODE_8023AD) 3902 bond_3ad_adapter_speed_duplex_changed(slave); 3903 fallthrough; 3904 case NETDEV_DOWN: 3905 /* Refresh slave-array if applicable! 3906 * If the setup does not use miimon or arpmon (mode-specific!), 3907 * then these events will not cause the slave-array to be 3908 * refreshed. This will cause xmit to use a slave that is not 3909 * usable. Avoid such situation by refeshing the array at these 3910 * events. If these (miimon/arpmon) parameters are configured 3911 * then array gets refreshed twice and that should be fine! 3912 */ 3913 if (bond_mode_can_use_xmit_hash(bond)) 3914 bond_update_slave_arr(bond, NULL); 3915 break; 3916 case NETDEV_CHANGEMTU: 3917 /* TODO: Should slaves be allowed to 3918 * independently alter their MTU? For 3919 * an active-backup bond, slaves need 3920 * not be the same type of device, so 3921 * MTUs may vary. For other modes, 3922 * slaves arguably should have the 3923 * same MTUs. To do this, we'd need to 3924 * take over the slave's change_mtu 3925 * function for the duration of their 3926 * servitude. 3927 */ 3928 break; 3929 case NETDEV_CHANGENAME: 3930 /* we don't care if we don't have primary set */ 3931 if (!bond_uses_primary(bond) || 3932 !bond->params.primary[0]) 3933 break; 3934 3935 if (slave == primary) { 3936 /* slave's name changed - he's no longer primary */ 3937 RCU_INIT_POINTER(bond->primary_slave, NULL); 3938 } else if (!strcmp(slave_dev->name, bond->params.primary)) { 3939 /* we have a new primary slave */ 3940 rcu_assign_pointer(bond->primary_slave, slave); 3941 } else { /* we didn't change primary - exit */ 3942 break; 3943 } 3944 3945 netdev_info(bond->dev, "Primary slave changed to %s, reselecting active slave\n", 3946 primary ? slave_dev->name : "none"); 3947 3948 block_netpoll_tx(); 3949 bond_select_active_slave(bond); 3950 unblock_netpoll_tx(); 3951 break; 3952 case NETDEV_FEAT_CHANGE: 3953 bond_compute_features(bond); 3954 break; 3955 case NETDEV_RESEND_IGMP: 3956 /* Propagate to master device */ 3957 call_netdevice_notifiers(event, slave->bond->dev); 3958 break; 3959 case NETDEV_XDP_FEAT_CHANGE: 3960 bond_xdp_set_features(bond_dev); 3961 break; 3962 default: 3963 break; 3964 } 3965 3966 return NOTIFY_DONE; 3967 } 3968 3969 /* bond_netdev_event: handle netdev notifier chain events. 3970 * 3971 * This function receives events for the netdev chain. The caller (an 3972 * ioctl handler calling blocking_notifier_call_chain) holds the necessary 3973 * locks for us to safely manipulate the slave devices (RTNL lock, 3974 * dev_probe_lock). 3975 */ 3976 static int bond_netdev_event(struct notifier_block *this, 3977 unsigned long event, void *ptr) 3978 { 3979 struct net_device *event_dev = netdev_notifier_info_to_dev(ptr); 3980 3981 netdev_dbg(event_dev, "%s received %s\n", 3982 __func__, netdev_cmd_to_name(event)); 3983 3984 if (!(event_dev->priv_flags & IFF_BONDING)) 3985 return NOTIFY_DONE; 3986 3987 if (event_dev->flags & IFF_MASTER) { 3988 int ret; 3989 3990 ret = bond_master_netdev_event(event, event_dev); 3991 if (ret != NOTIFY_DONE) 3992 return ret; 3993 } 3994 3995 if (event_dev->flags & IFF_SLAVE) 3996 return bond_slave_netdev_event(event, event_dev); 3997 3998 return NOTIFY_DONE; 3999 } 4000 4001 static struct notifier_block bond_netdev_notifier = { 4002 .notifier_call = bond_netdev_event, 4003 }; 4004 4005 /*---------------------------- Hashing Policies -----------------------------*/ 4006 4007 /* Helper to access data in a packet, with or without a backing skb. 4008 * If skb is given the data is linearized if necessary via pskb_may_pull. 4009 */ 4010 static inline const void *bond_pull_data(struct sk_buff *skb, 4011 const void *data, int hlen, int n) 4012 { 4013 if (likely(n <= hlen)) 4014 return data; 4015 else if (skb && likely(pskb_may_pull(skb, n))) 4016 return skb->head; 4017 4018 return NULL; 4019 } 4020 4021 /* L2 hash helper */ 4022 static inline u32 bond_eth_hash(struct sk_buff *skb, const void *data, int mhoff, int hlen) 4023 { 4024 struct ethhdr *ep; 4025 4026 data = bond_pull_data(skb, data, hlen, mhoff + sizeof(struct ethhdr)); 4027 if (!data) 4028 return 0; 4029 4030 ep = (struct ethhdr *)(data + mhoff); 4031 return ep->h_dest[5] ^ ep->h_source[5] ^ be16_to_cpu(ep->h_proto); 4032 } 4033 4034 static bool bond_flow_ip(struct sk_buff *skb, struct flow_keys *fk, const void *data, 4035 int hlen, __be16 l2_proto, int *nhoff, int *ip_proto, bool l34) 4036 { 4037 const struct ipv6hdr *iph6; 4038 const struct iphdr *iph; 4039 4040 if (l2_proto == htons(ETH_P_IP)) { 4041 data = bond_pull_data(skb, data, hlen, *nhoff + sizeof(*iph)); 4042 if (!data) 4043 return false; 4044 4045 iph = (const struct iphdr *)(data + *nhoff); 4046 iph_to_flow_copy_v4addrs(fk, iph); 4047 *nhoff += iph->ihl << 2; 4048 if (!ip_is_fragment(iph)) 4049 *ip_proto = iph->protocol; 4050 } else if (l2_proto == htons(ETH_P_IPV6)) { 4051 data = bond_pull_data(skb, data, hlen, *nhoff + sizeof(*iph6)); 4052 if (!data) 4053 return false; 4054 4055 iph6 = (const struct ipv6hdr *)(data + *nhoff); 4056 iph_to_flow_copy_v6addrs(fk, iph6); 4057 *nhoff += sizeof(*iph6); 4058 *ip_proto = iph6->nexthdr; 4059 } else { 4060 return false; 4061 } 4062 4063 if (l34 && *ip_proto >= 0) 4064 fk->ports.ports = __skb_flow_get_ports(skb, *nhoff, *ip_proto, data, hlen); 4065 4066 return true; 4067 } 4068 4069 static u32 bond_vlan_srcmac_hash(struct sk_buff *skb, const void *data, int mhoff, int hlen) 4070 { 4071 u32 srcmac_vendor = 0, srcmac_dev = 0; 4072 struct ethhdr *mac_hdr; 4073 u16 vlan = 0; 4074 int i; 4075 4076 data = bond_pull_data(skb, data, hlen, mhoff + sizeof(struct ethhdr)); 4077 if (!data) 4078 return 0; 4079 mac_hdr = (struct ethhdr *)(data + mhoff); 4080 4081 for (i = 0; i < 3; i++) 4082 srcmac_vendor = (srcmac_vendor << 8) | mac_hdr->h_source[i]; 4083 4084 for (i = 3; i < ETH_ALEN; i++) 4085 srcmac_dev = (srcmac_dev << 8) | mac_hdr->h_source[i]; 4086 4087 if (skb && skb_vlan_tag_present(skb)) 4088 vlan = skb_vlan_tag_get(skb); 4089 4090 return vlan ^ srcmac_vendor ^ srcmac_dev; 4091 } 4092 4093 /* Extract the appropriate headers based on bond's xmit policy */ 4094 static bool bond_flow_dissect(struct bonding *bond, struct sk_buff *skb, const void *data, 4095 __be16 l2_proto, int nhoff, int hlen, struct flow_keys *fk) 4096 { 4097 bool l34 = bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER34; 4098 int ip_proto = -1; 4099 4100 switch (bond->params.xmit_policy) { 4101 case BOND_XMIT_POLICY_ENCAP23: 4102 case BOND_XMIT_POLICY_ENCAP34: 4103 memset(fk, 0, sizeof(*fk)); 4104 return __skb_flow_dissect(NULL, skb, &flow_keys_bonding, 4105 fk, data, l2_proto, nhoff, hlen, 0); 4106 default: 4107 break; 4108 } 4109 4110 fk->ports.ports = 0; 4111 memset(&fk->icmp, 0, sizeof(fk->icmp)); 4112 if (!bond_flow_ip(skb, fk, data, hlen, l2_proto, &nhoff, &ip_proto, l34)) 4113 return false; 4114 4115 /* ICMP error packets contains at least 8 bytes of the header 4116 * of the packet which generated the error. Use this information 4117 * to correlate ICMP error packets within the same flow which 4118 * generated the error. 4119 */ 4120 if (ip_proto == IPPROTO_ICMP || ip_proto == IPPROTO_ICMPV6) { 4121 skb_flow_get_icmp_tci(skb, &fk->icmp, data, nhoff, hlen); 4122 if (ip_proto == IPPROTO_ICMP) { 4123 if (!icmp_is_err(fk->icmp.type)) 4124 return true; 4125 4126 nhoff += sizeof(struct icmphdr); 4127 } else if (ip_proto == IPPROTO_ICMPV6) { 4128 if (!icmpv6_is_err(fk->icmp.type)) 4129 return true; 4130 4131 nhoff += sizeof(struct icmp6hdr); 4132 } 4133 return bond_flow_ip(skb, fk, data, hlen, l2_proto, &nhoff, &ip_proto, l34); 4134 } 4135 4136 return true; 4137 } 4138 4139 static u32 bond_ip_hash(u32 hash, struct flow_keys *flow, int xmit_policy) 4140 { 4141 hash ^= (__force u32)flow_get_u32_dst(flow) ^ 4142 (__force u32)flow_get_u32_src(flow); 4143 hash ^= (hash >> 16); 4144 hash ^= (hash >> 8); 4145 4146 /* discard lowest hash bit to deal with the common even ports pattern */ 4147 if (xmit_policy == BOND_XMIT_POLICY_LAYER34 || 4148 xmit_policy == BOND_XMIT_POLICY_ENCAP34) 4149 return hash >> 1; 4150 4151 return hash; 4152 } 4153 4154 /* Generate hash based on xmit policy. If @skb is given it is used to linearize 4155 * the data as required, but this function can be used without it if the data is 4156 * known to be linear (e.g. with xdp_buff). 4157 */ 4158 static u32 __bond_xmit_hash(struct bonding *bond, struct sk_buff *skb, const void *data, 4159 __be16 l2_proto, int mhoff, int nhoff, int hlen) 4160 { 4161 struct flow_keys flow; 4162 u32 hash; 4163 4164 if (bond->params.xmit_policy == BOND_XMIT_POLICY_VLAN_SRCMAC) 4165 return bond_vlan_srcmac_hash(skb, data, mhoff, hlen); 4166 4167 if (bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER2 || 4168 !bond_flow_dissect(bond, skb, data, l2_proto, nhoff, hlen, &flow)) 4169 return bond_eth_hash(skb, data, mhoff, hlen); 4170 4171 if (bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER23 || 4172 bond->params.xmit_policy == BOND_XMIT_POLICY_ENCAP23) { 4173 hash = bond_eth_hash(skb, data, mhoff, hlen); 4174 } else { 4175 if (flow.icmp.id) 4176 memcpy(&hash, &flow.icmp, sizeof(hash)); 4177 else 4178 memcpy(&hash, &flow.ports.ports, sizeof(hash)); 4179 } 4180 4181 return bond_ip_hash(hash, &flow, bond->params.xmit_policy); 4182 } 4183 4184 /** 4185 * bond_xmit_hash - generate a hash value based on the xmit policy 4186 * @bond: bonding device 4187 * @skb: buffer to use for headers 4188 * 4189 * This function will extract the necessary headers from the skb buffer and use 4190 * them to generate a hash based on the xmit_policy set in the bonding device 4191 */ 4192 u32 bond_xmit_hash(struct bonding *bond, struct sk_buff *skb) 4193 { 4194 if (bond->params.xmit_policy == BOND_XMIT_POLICY_ENCAP34 && 4195 skb->l4_hash) 4196 return skb->hash; 4197 4198 return __bond_xmit_hash(bond, skb, skb->data, skb->protocol, 4199 skb_mac_offset(skb), skb_network_offset(skb), 4200 skb_headlen(skb)); 4201 } 4202 4203 /** 4204 * bond_xmit_hash_xdp - generate a hash value based on the xmit policy 4205 * @bond: bonding device 4206 * @xdp: buffer to use for headers 4207 * 4208 * The XDP variant of bond_xmit_hash. 4209 */ 4210 static u32 bond_xmit_hash_xdp(struct bonding *bond, struct xdp_buff *xdp) 4211 { 4212 struct ethhdr *eth; 4213 4214 if (xdp->data + sizeof(struct ethhdr) > xdp->data_end) 4215 return 0; 4216 4217 eth = (struct ethhdr *)xdp->data; 4218 4219 return __bond_xmit_hash(bond, NULL, xdp->data, eth->h_proto, 0, 4220 sizeof(struct ethhdr), xdp->data_end - xdp->data); 4221 } 4222 4223 /*-------------------------- Device entry points ----------------------------*/ 4224 4225 void bond_work_init_all(struct bonding *bond) 4226 { 4227 INIT_DELAYED_WORK(&bond->mcast_work, 4228 bond_resend_igmp_join_requests_delayed); 4229 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor); 4230 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor); 4231 INIT_DELAYED_WORK(&bond->arp_work, bond_arp_monitor); 4232 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler); 4233 INIT_DELAYED_WORK(&bond->slave_arr_work, bond_slave_arr_handler); 4234 } 4235 4236 static void bond_work_cancel_all(struct bonding *bond) 4237 { 4238 cancel_delayed_work_sync(&bond->mii_work); 4239 cancel_delayed_work_sync(&bond->arp_work); 4240 cancel_delayed_work_sync(&bond->alb_work); 4241 cancel_delayed_work_sync(&bond->ad_work); 4242 cancel_delayed_work_sync(&bond->mcast_work); 4243 cancel_delayed_work_sync(&bond->slave_arr_work); 4244 } 4245 4246 static int bond_open(struct net_device *bond_dev) 4247 { 4248 struct bonding *bond = netdev_priv(bond_dev); 4249 struct list_head *iter; 4250 struct slave *slave; 4251 4252 if (BOND_MODE(bond) == BOND_MODE_ROUNDROBIN && !bond->rr_tx_counter) { 4253 bond->rr_tx_counter = alloc_percpu(u32); 4254 if (!bond->rr_tx_counter) 4255 return -ENOMEM; 4256 } 4257 4258 /* reset slave->backup and slave->inactive */ 4259 if (bond_has_slaves(bond)) { 4260 bond_for_each_slave(bond, slave, iter) { 4261 if (bond_uses_primary(bond) && 4262 slave != rcu_access_pointer(bond->curr_active_slave)) { 4263 bond_set_slave_inactive_flags(slave, 4264 BOND_SLAVE_NOTIFY_NOW); 4265 } else if (BOND_MODE(bond) != BOND_MODE_8023AD) { 4266 bond_set_slave_active_flags(slave, 4267 BOND_SLAVE_NOTIFY_NOW); 4268 } 4269 } 4270 } 4271 4272 if (bond_is_lb(bond)) { 4273 /* bond_alb_initialize must be called before the timer 4274 * is started. 4275 */ 4276 if (bond_alb_initialize(bond, (BOND_MODE(bond) == BOND_MODE_ALB))) 4277 return -ENOMEM; 4278 if (bond->params.tlb_dynamic_lb || BOND_MODE(bond) == BOND_MODE_ALB) 4279 queue_delayed_work(bond->wq, &bond->alb_work, 0); 4280 } 4281 4282 if (bond->params.miimon) /* link check interval, in milliseconds. */ 4283 queue_delayed_work(bond->wq, &bond->mii_work, 0); 4284 4285 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */ 4286 queue_delayed_work(bond->wq, &bond->arp_work, 0); 4287 bond->recv_probe = bond_rcv_validate; 4288 } 4289 4290 if (BOND_MODE(bond) == BOND_MODE_8023AD) { 4291 queue_delayed_work(bond->wq, &bond->ad_work, 0); 4292 /* register to receive LACPDUs */ 4293 bond->recv_probe = bond_3ad_lacpdu_recv; 4294 bond_3ad_initiate_agg_selection(bond, 1); 4295 4296 bond_for_each_slave(bond, slave, iter) 4297 dev_mc_add(slave->dev, lacpdu_mcast_addr); 4298 } 4299 4300 if (bond_mode_can_use_xmit_hash(bond)) 4301 bond_update_slave_arr(bond, NULL); 4302 4303 return 0; 4304 } 4305 4306 static int bond_close(struct net_device *bond_dev) 4307 { 4308 struct bonding *bond = netdev_priv(bond_dev); 4309 struct slave *slave; 4310 4311 bond_work_cancel_all(bond); 4312 bond->send_peer_notif = 0; 4313 if (bond_is_lb(bond)) 4314 bond_alb_deinitialize(bond); 4315 bond->recv_probe = NULL; 4316 4317 if (bond_uses_primary(bond)) { 4318 rcu_read_lock(); 4319 slave = rcu_dereference(bond->curr_active_slave); 4320 if (slave) 4321 bond_hw_addr_flush(bond_dev, slave->dev); 4322 rcu_read_unlock(); 4323 } else { 4324 struct list_head *iter; 4325 4326 bond_for_each_slave(bond, slave, iter) 4327 bond_hw_addr_flush(bond_dev, slave->dev); 4328 } 4329 4330 return 0; 4331 } 4332 4333 /* fold stats, assuming all rtnl_link_stats64 fields are u64, but 4334 * that some drivers can provide 32bit values only. 4335 */ 4336 static void bond_fold_stats(struct rtnl_link_stats64 *_res, 4337 const struct rtnl_link_stats64 *_new, 4338 const struct rtnl_link_stats64 *_old) 4339 { 4340 const u64 *new = (const u64 *)_new; 4341 const u64 *old = (const u64 *)_old; 4342 u64 *res = (u64 *)_res; 4343 int i; 4344 4345 for (i = 0; i < sizeof(*_res) / sizeof(u64); i++) { 4346 u64 nv = new[i]; 4347 u64 ov = old[i]; 4348 s64 delta = nv - ov; 4349 4350 /* detects if this particular field is 32bit only */ 4351 if (((nv | ov) >> 32) == 0) 4352 delta = (s64)(s32)((u32)nv - (u32)ov); 4353 4354 /* filter anomalies, some drivers reset their stats 4355 * at down/up events. 4356 */ 4357 if (delta > 0) 4358 res[i] += delta; 4359 } 4360 } 4361 4362 #ifdef CONFIG_LOCKDEP 4363 static int bond_get_lowest_level_rcu(struct net_device *dev) 4364 { 4365 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1]; 4366 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1]; 4367 int cur = 0, max = 0; 4368 4369 now = dev; 4370 iter = &dev->adj_list.lower; 4371 4372 while (1) { 4373 next = NULL; 4374 while (1) { 4375 ldev = netdev_next_lower_dev_rcu(now, &iter); 4376 if (!ldev) 4377 break; 4378 4379 next = ldev; 4380 niter = &ldev->adj_list.lower; 4381 dev_stack[cur] = now; 4382 iter_stack[cur++] = iter; 4383 if (max <= cur) 4384 max = cur; 4385 break; 4386 } 4387 4388 if (!next) { 4389 if (!cur) 4390 return max; 4391 next = dev_stack[--cur]; 4392 niter = iter_stack[cur]; 4393 } 4394 4395 now = next; 4396 iter = niter; 4397 } 4398 4399 return max; 4400 } 4401 #endif 4402 4403 static void bond_get_stats(struct net_device *bond_dev, 4404 struct rtnl_link_stats64 *stats) 4405 { 4406 struct bonding *bond = netdev_priv(bond_dev); 4407 struct rtnl_link_stats64 temp; 4408 struct list_head *iter; 4409 struct slave *slave; 4410 int nest_level = 0; 4411 4412 4413 rcu_read_lock(); 4414 #ifdef CONFIG_LOCKDEP 4415 nest_level = bond_get_lowest_level_rcu(bond_dev); 4416 #endif 4417 4418 spin_lock_nested(&bond->stats_lock, nest_level); 4419 memcpy(stats, &bond->bond_stats, sizeof(*stats)); 4420 4421 bond_for_each_slave_rcu(bond, slave, iter) { 4422 const struct rtnl_link_stats64 *new = 4423 dev_get_stats(slave->dev, &temp); 4424 4425 bond_fold_stats(stats, new, &slave->slave_stats); 4426 4427 /* save off the slave stats for the next run */ 4428 memcpy(&slave->slave_stats, new, sizeof(*new)); 4429 } 4430 4431 memcpy(&bond->bond_stats, stats, sizeof(*stats)); 4432 spin_unlock(&bond->stats_lock); 4433 rcu_read_unlock(); 4434 } 4435 4436 static int bond_eth_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd) 4437 { 4438 struct bonding *bond = netdev_priv(bond_dev); 4439 struct mii_ioctl_data *mii = NULL; 4440 const struct net_device_ops *ops; 4441 struct net_device *real_dev; 4442 struct hwtstamp_config cfg; 4443 struct ifreq ifrr; 4444 int res = 0; 4445 4446 netdev_dbg(bond_dev, "bond_eth_ioctl: cmd=%d\n", cmd); 4447 4448 switch (cmd) { 4449 case SIOCGMIIPHY: 4450 mii = if_mii(ifr); 4451 if (!mii) 4452 return -EINVAL; 4453 4454 mii->phy_id = 0; 4455 fallthrough; 4456 case SIOCGMIIREG: 4457 /* We do this again just in case we were called by SIOCGMIIREG 4458 * instead of SIOCGMIIPHY. 4459 */ 4460 mii = if_mii(ifr); 4461 if (!mii) 4462 return -EINVAL; 4463 4464 if (mii->reg_num == 1) { 4465 mii->val_out = 0; 4466 if (netif_carrier_ok(bond->dev)) 4467 mii->val_out = BMSR_LSTATUS; 4468 } 4469 4470 break; 4471 case SIOCSHWTSTAMP: 4472 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg))) 4473 return -EFAULT; 4474 4475 if (!(cfg.flags & HWTSTAMP_FLAG_BONDED_PHC_INDEX)) 4476 return -EOPNOTSUPP; 4477 4478 fallthrough; 4479 case SIOCGHWTSTAMP: 4480 real_dev = bond_option_active_slave_get_rcu(bond); 4481 if (!real_dev) 4482 return -EOPNOTSUPP; 4483 4484 strscpy_pad(ifrr.ifr_name, real_dev->name, IFNAMSIZ); 4485 ifrr.ifr_ifru = ifr->ifr_ifru; 4486 4487 ops = real_dev->netdev_ops; 4488 if (netif_device_present(real_dev) && ops->ndo_eth_ioctl) { 4489 res = ops->ndo_eth_ioctl(real_dev, &ifrr, cmd); 4490 if (res) 4491 return res; 4492 4493 ifr->ifr_ifru = ifrr.ifr_ifru; 4494 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg))) 4495 return -EFAULT; 4496 4497 /* Set the BOND_PHC_INDEX flag to notify user space */ 4498 cfg.flags |= HWTSTAMP_FLAG_BONDED_PHC_INDEX; 4499 4500 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? 4501 -EFAULT : 0; 4502 } 4503 fallthrough; 4504 default: 4505 res = -EOPNOTSUPP; 4506 } 4507 4508 return res; 4509 } 4510 4511 static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd) 4512 { 4513 struct bonding *bond = netdev_priv(bond_dev); 4514 struct net_device *slave_dev = NULL; 4515 struct ifbond k_binfo; 4516 struct ifbond __user *u_binfo = NULL; 4517 struct ifslave k_sinfo; 4518 struct ifslave __user *u_sinfo = NULL; 4519 struct bond_opt_value newval; 4520 struct net *net; 4521 int res = 0; 4522 4523 netdev_dbg(bond_dev, "bond_ioctl: cmd=%d\n", cmd); 4524 4525 switch (cmd) { 4526 case SIOCBONDINFOQUERY: 4527 u_binfo = (struct ifbond __user *)ifr->ifr_data; 4528 4529 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond))) 4530 return -EFAULT; 4531 4532 bond_info_query(bond_dev, &k_binfo); 4533 if (copy_to_user(u_binfo, &k_binfo, sizeof(ifbond))) 4534 return -EFAULT; 4535 4536 return 0; 4537 case SIOCBONDSLAVEINFOQUERY: 4538 u_sinfo = (struct ifslave __user *)ifr->ifr_data; 4539 4540 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave))) 4541 return -EFAULT; 4542 4543 res = bond_slave_info_query(bond_dev, &k_sinfo); 4544 if (res == 0 && 4545 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave))) 4546 return -EFAULT; 4547 4548 return res; 4549 default: 4550 break; 4551 } 4552 4553 net = dev_net(bond_dev); 4554 4555 if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) 4556 return -EPERM; 4557 4558 slave_dev = __dev_get_by_name(net, ifr->ifr_slave); 4559 4560 slave_dbg(bond_dev, slave_dev, "slave_dev=%p:\n", slave_dev); 4561 4562 if (!slave_dev) 4563 return -ENODEV; 4564 4565 switch (cmd) { 4566 case SIOCBONDENSLAVE: 4567 res = bond_enslave(bond_dev, slave_dev, NULL); 4568 break; 4569 case SIOCBONDRELEASE: 4570 res = bond_release(bond_dev, slave_dev); 4571 break; 4572 case SIOCBONDSETHWADDR: 4573 res = bond_set_dev_addr(bond_dev, slave_dev); 4574 break; 4575 case SIOCBONDCHANGEACTIVE: 4576 bond_opt_initstr(&newval, slave_dev->name); 4577 res = __bond_opt_set_notify(bond, BOND_OPT_ACTIVE_SLAVE, 4578 &newval); 4579 break; 4580 default: 4581 res = -EOPNOTSUPP; 4582 } 4583 4584 return res; 4585 } 4586 4587 static int bond_siocdevprivate(struct net_device *bond_dev, struct ifreq *ifr, 4588 void __user *data, int cmd) 4589 { 4590 struct ifreq ifrdata = { .ifr_data = data }; 4591 4592 switch (cmd) { 4593 case BOND_INFO_QUERY_OLD: 4594 return bond_do_ioctl(bond_dev, &ifrdata, SIOCBONDINFOQUERY); 4595 case BOND_SLAVE_INFO_QUERY_OLD: 4596 return bond_do_ioctl(bond_dev, &ifrdata, SIOCBONDSLAVEINFOQUERY); 4597 case BOND_ENSLAVE_OLD: 4598 return bond_do_ioctl(bond_dev, ifr, SIOCBONDENSLAVE); 4599 case BOND_RELEASE_OLD: 4600 return bond_do_ioctl(bond_dev, ifr, SIOCBONDRELEASE); 4601 case BOND_SETHWADDR_OLD: 4602 return bond_do_ioctl(bond_dev, ifr, SIOCBONDSETHWADDR); 4603 case BOND_CHANGE_ACTIVE_OLD: 4604 return bond_do_ioctl(bond_dev, ifr, SIOCBONDCHANGEACTIVE); 4605 } 4606 4607 return -EOPNOTSUPP; 4608 } 4609 4610 static void bond_change_rx_flags(struct net_device *bond_dev, int change) 4611 { 4612 struct bonding *bond = netdev_priv(bond_dev); 4613 4614 if (change & IFF_PROMISC) 4615 bond_set_promiscuity(bond, 4616 bond_dev->flags & IFF_PROMISC ? 1 : -1); 4617 4618 if (change & IFF_ALLMULTI) 4619 bond_set_allmulti(bond, 4620 bond_dev->flags & IFF_ALLMULTI ? 1 : -1); 4621 } 4622 4623 static void bond_set_rx_mode(struct net_device *bond_dev) 4624 { 4625 struct bonding *bond = netdev_priv(bond_dev); 4626 struct list_head *iter; 4627 struct slave *slave; 4628 4629 rcu_read_lock(); 4630 if (bond_uses_primary(bond)) { 4631 slave = rcu_dereference(bond->curr_active_slave); 4632 if (slave) { 4633 dev_uc_sync(slave->dev, bond_dev); 4634 dev_mc_sync(slave->dev, bond_dev); 4635 } 4636 } else { 4637 bond_for_each_slave_rcu(bond, slave, iter) { 4638 dev_uc_sync_multiple(slave->dev, bond_dev); 4639 dev_mc_sync_multiple(slave->dev, bond_dev); 4640 } 4641 } 4642 rcu_read_unlock(); 4643 } 4644 4645 static int bond_neigh_init(struct neighbour *n) 4646 { 4647 struct bonding *bond = netdev_priv(n->dev); 4648 const struct net_device_ops *slave_ops; 4649 struct neigh_parms parms; 4650 struct slave *slave; 4651 int ret = 0; 4652 4653 rcu_read_lock(); 4654 slave = bond_first_slave_rcu(bond); 4655 if (!slave) 4656 goto out; 4657 slave_ops = slave->dev->netdev_ops; 4658 if (!slave_ops->ndo_neigh_setup) 4659 goto out; 4660 4661 /* TODO: find another way [1] to implement this. 4662 * Passing a zeroed structure is fragile, 4663 * but at least we do not pass garbage. 4664 * 4665 * [1] One way would be that ndo_neigh_setup() never touch 4666 * struct neigh_parms, but propagate the new neigh_setup() 4667 * back to ___neigh_create() / neigh_parms_alloc() 4668 */ 4669 memset(&parms, 0, sizeof(parms)); 4670 ret = slave_ops->ndo_neigh_setup(slave->dev, &parms); 4671 4672 if (ret) 4673 goto out; 4674 4675 if (parms.neigh_setup) 4676 ret = parms.neigh_setup(n); 4677 out: 4678 rcu_read_unlock(); 4679 return ret; 4680 } 4681 4682 /* The bonding ndo_neigh_setup is called at init time beofre any 4683 * slave exists. So we must declare proxy setup function which will 4684 * be used at run time to resolve the actual slave neigh param setup. 4685 * 4686 * It's also called by master devices (such as vlans) to setup their 4687 * underlying devices. In that case - do nothing, we're already set up from 4688 * our init. 4689 */ 4690 static int bond_neigh_setup(struct net_device *dev, 4691 struct neigh_parms *parms) 4692 { 4693 /* modify only our neigh_parms */ 4694 if (parms->dev == dev) 4695 parms->neigh_setup = bond_neigh_init; 4696 4697 return 0; 4698 } 4699 4700 /* Change the MTU of all of a master's slaves to match the master */ 4701 static int bond_change_mtu(struct net_device *bond_dev, int new_mtu) 4702 { 4703 struct bonding *bond = netdev_priv(bond_dev); 4704 struct slave *slave, *rollback_slave; 4705 struct list_head *iter; 4706 int res = 0; 4707 4708 netdev_dbg(bond_dev, "bond=%p, new_mtu=%d\n", bond, new_mtu); 4709 4710 bond_for_each_slave(bond, slave, iter) { 4711 slave_dbg(bond_dev, slave->dev, "s %p c_m %p\n", 4712 slave, slave->dev->netdev_ops->ndo_change_mtu); 4713 4714 res = dev_set_mtu(slave->dev, new_mtu); 4715 4716 if (res) { 4717 /* If we failed to set the slave's mtu to the new value 4718 * we must abort the operation even in ACTIVE_BACKUP 4719 * mode, because if we allow the backup slaves to have 4720 * different mtu values than the active slave we'll 4721 * need to change their mtu when doing a failover. That 4722 * means changing their mtu from timer context, which 4723 * is probably not a good idea. 4724 */ 4725 slave_dbg(bond_dev, slave->dev, "err %d setting mtu to %d\n", 4726 res, new_mtu); 4727 goto unwind; 4728 } 4729 } 4730 4731 bond_dev->mtu = new_mtu; 4732 4733 return 0; 4734 4735 unwind: 4736 /* unwind from head to the slave that failed */ 4737 bond_for_each_slave(bond, rollback_slave, iter) { 4738 int tmp_res; 4739 4740 if (rollback_slave == slave) 4741 break; 4742 4743 tmp_res = dev_set_mtu(rollback_slave->dev, bond_dev->mtu); 4744 if (tmp_res) 4745 slave_dbg(bond_dev, rollback_slave->dev, "unwind err %d\n", 4746 tmp_res); 4747 } 4748 4749 return res; 4750 } 4751 4752 /* Change HW address 4753 * 4754 * Note that many devices must be down to change the HW address, and 4755 * downing the master releases all slaves. We can make bonds full of 4756 * bonding devices to test this, however. 4757 */ 4758 static int bond_set_mac_address(struct net_device *bond_dev, void *addr) 4759 { 4760 struct bonding *bond = netdev_priv(bond_dev); 4761 struct slave *slave, *rollback_slave; 4762 struct sockaddr_storage *ss = addr, tmp_ss; 4763 struct list_head *iter; 4764 int res = 0; 4765 4766 if (BOND_MODE(bond) == BOND_MODE_ALB) 4767 return bond_alb_set_mac_address(bond_dev, addr); 4768 4769 4770 netdev_dbg(bond_dev, "%s: bond=%p\n", __func__, bond); 4771 4772 /* If fail_over_mac is enabled, do nothing and return success. 4773 * Returning an error causes ifenslave to fail. 4774 */ 4775 if (bond->params.fail_over_mac && 4776 BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP) 4777 return 0; 4778 4779 if (!is_valid_ether_addr(ss->__data)) 4780 return -EADDRNOTAVAIL; 4781 4782 bond_for_each_slave(bond, slave, iter) { 4783 slave_dbg(bond_dev, slave->dev, "%s: slave=%p\n", 4784 __func__, slave); 4785 res = dev_set_mac_address(slave->dev, addr, NULL); 4786 if (res) { 4787 /* TODO: consider downing the slave 4788 * and retry ? 4789 * User should expect communications 4790 * breakage anyway until ARP finish 4791 * updating, so... 4792 */ 4793 slave_dbg(bond_dev, slave->dev, "%s: err %d\n", 4794 __func__, res); 4795 goto unwind; 4796 } 4797 } 4798 4799 /* success */ 4800 dev_addr_set(bond_dev, ss->__data); 4801 return 0; 4802 4803 unwind: 4804 memcpy(tmp_ss.__data, bond_dev->dev_addr, bond_dev->addr_len); 4805 tmp_ss.ss_family = bond_dev->type; 4806 4807 /* unwind from head to the slave that failed */ 4808 bond_for_each_slave(bond, rollback_slave, iter) { 4809 int tmp_res; 4810 4811 if (rollback_slave == slave) 4812 break; 4813 4814 tmp_res = dev_set_mac_address(rollback_slave->dev, 4815 (struct sockaddr *)&tmp_ss, NULL); 4816 if (tmp_res) { 4817 slave_dbg(bond_dev, rollback_slave->dev, "%s: unwind err %d\n", 4818 __func__, tmp_res); 4819 } 4820 } 4821 4822 return res; 4823 } 4824 4825 /** 4826 * bond_get_slave_by_id - get xmit slave with slave_id 4827 * @bond: bonding device that is transmitting 4828 * @slave_id: slave id up to slave_cnt-1 through which to transmit 4829 * 4830 * This function tries to get slave with slave_id but in case 4831 * it fails, it tries to find the first available slave for transmission. 4832 */ 4833 static struct slave *bond_get_slave_by_id(struct bonding *bond, 4834 int slave_id) 4835 { 4836 struct list_head *iter; 4837 struct slave *slave; 4838 int i = slave_id; 4839 4840 /* Here we start from the slave with slave_id */ 4841 bond_for_each_slave_rcu(bond, slave, iter) { 4842 if (--i < 0) { 4843 if (bond_slave_can_tx(slave)) 4844 return slave; 4845 } 4846 } 4847 4848 /* Here we start from the first slave up to slave_id */ 4849 i = slave_id; 4850 bond_for_each_slave_rcu(bond, slave, iter) { 4851 if (--i < 0) 4852 break; 4853 if (bond_slave_can_tx(slave)) 4854 return slave; 4855 } 4856 /* no slave that can tx has been found */ 4857 return NULL; 4858 } 4859 4860 /** 4861 * bond_rr_gen_slave_id - generate slave id based on packets_per_slave 4862 * @bond: bonding device to use 4863 * 4864 * Based on the value of the bonding device's packets_per_slave parameter 4865 * this function generates a slave id, which is usually used as the next 4866 * slave to transmit through. 4867 */ 4868 static u32 bond_rr_gen_slave_id(struct bonding *bond) 4869 { 4870 u32 slave_id; 4871 struct reciprocal_value reciprocal_packets_per_slave; 4872 int packets_per_slave = bond->params.packets_per_slave; 4873 4874 switch (packets_per_slave) { 4875 case 0: 4876 slave_id = get_random_u32(); 4877 break; 4878 case 1: 4879 slave_id = this_cpu_inc_return(*bond->rr_tx_counter); 4880 break; 4881 default: 4882 reciprocal_packets_per_slave = 4883 bond->params.reciprocal_packets_per_slave; 4884 slave_id = this_cpu_inc_return(*bond->rr_tx_counter); 4885 slave_id = reciprocal_divide(slave_id, 4886 reciprocal_packets_per_slave); 4887 break; 4888 } 4889 4890 return slave_id; 4891 } 4892 4893 static struct slave *bond_xmit_roundrobin_slave_get(struct bonding *bond, 4894 struct sk_buff *skb) 4895 { 4896 struct slave *slave; 4897 int slave_cnt; 4898 u32 slave_id; 4899 4900 /* Start with the curr_active_slave that joined the bond as the 4901 * default for sending IGMP traffic. For failover purposes one 4902 * needs to maintain some consistency for the interface that will 4903 * send the join/membership reports. The curr_active_slave found 4904 * will send all of this type of traffic. 4905 */ 4906 if (skb->protocol == htons(ETH_P_IP)) { 4907 int noff = skb_network_offset(skb); 4908 struct iphdr *iph; 4909 4910 if (unlikely(!pskb_may_pull(skb, noff + sizeof(*iph)))) 4911 goto non_igmp; 4912 4913 iph = ip_hdr(skb); 4914 if (iph->protocol == IPPROTO_IGMP) { 4915 slave = rcu_dereference(bond->curr_active_slave); 4916 if (slave) 4917 return slave; 4918 return bond_get_slave_by_id(bond, 0); 4919 } 4920 } 4921 4922 non_igmp: 4923 slave_cnt = READ_ONCE(bond->slave_cnt); 4924 if (likely(slave_cnt)) { 4925 slave_id = bond_rr_gen_slave_id(bond) % slave_cnt; 4926 return bond_get_slave_by_id(bond, slave_id); 4927 } 4928 return NULL; 4929 } 4930 4931 static struct slave *bond_xdp_xmit_roundrobin_slave_get(struct bonding *bond, 4932 struct xdp_buff *xdp) 4933 { 4934 struct slave *slave; 4935 int slave_cnt; 4936 u32 slave_id; 4937 const struct ethhdr *eth; 4938 void *data = xdp->data; 4939 4940 if (data + sizeof(struct ethhdr) > xdp->data_end) 4941 goto non_igmp; 4942 4943 eth = (struct ethhdr *)data; 4944 data += sizeof(struct ethhdr); 4945 4946 /* See comment on IGMP in bond_xmit_roundrobin_slave_get() */ 4947 if (eth->h_proto == htons(ETH_P_IP)) { 4948 const struct iphdr *iph; 4949 4950 if (data + sizeof(struct iphdr) > xdp->data_end) 4951 goto non_igmp; 4952 4953 iph = (struct iphdr *)data; 4954 4955 if (iph->protocol == IPPROTO_IGMP) { 4956 slave = rcu_dereference(bond->curr_active_slave); 4957 if (slave) 4958 return slave; 4959 return bond_get_slave_by_id(bond, 0); 4960 } 4961 } 4962 4963 non_igmp: 4964 slave_cnt = READ_ONCE(bond->slave_cnt); 4965 if (likely(slave_cnt)) { 4966 slave_id = bond_rr_gen_slave_id(bond) % slave_cnt; 4967 return bond_get_slave_by_id(bond, slave_id); 4968 } 4969 return NULL; 4970 } 4971 4972 static netdev_tx_t bond_xmit_roundrobin(struct sk_buff *skb, 4973 struct net_device *bond_dev) 4974 { 4975 struct bonding *bond = netdev_priv(bond_dev); 4976 struct slave *slave; 4977 4978 slave = bond_xmit_roundrobin_slave_get(bond, skb); 4979 if (likely(slave)) 4980 return bond_dev_queue_xmit(bond, skb, slave->dev); 4981 4982 return bond_tx_drop(bond_dev, skb); 4983 } 4984 4985 static struct slave *bond_xmit_activebackup_slave_get(struct bonding *bond) 4986 { 4987 return rcu_dereference(bond->curr_active_slave); 4988 } 4989 4990 /* In active-backup mode, we know that bond->curr_active_slave is always valid if 4991 * the bond has a usable interface. 4992 */ 4993 static netdev_tx_t bond_xmit_activebackup(struct sk_buff *skb, 4994 struct net_device *bond_dev) 4995 { 4996 struct bonding *bond = netdev_priv(bond_dev); 4997 struct slave *slave; 4998 4999 slave = bond_xmit_activebackup_slave_get(bond); 5000 if (slave) 5001 return bond_dev_queue_xmit(bond, skb, slave->dev); 5002 5003 return bond_tx_drop(bond_dev, skb); 5004 } 5005 5006 /* Use this to update slave_array when (a) it's not appropriate to update 5007 * slave_array right away (note that update_slave_array() may sleep) 5008 * and / or (b) RTNL is not held. 5009 */ 5010 void bond_slave_arr_work_rearm(struct bonding *bond, unsigned long delay) 5011 { 5012 queue_delayed_work(bond->wq, &bond->slave_arr_work, delay); 5013 } 5014 5015 /* Slave array work handler. Holds only RTNL */ 5016 static void bond_slave_arr_handler(struct work_struct *work) 5017 { 5018 struct bonding *bond = container_of(work, struct bonding, 5019 slave_arr_work.work); 5020 int ret; 5021 5022 if (!rtnl_trylock()) 5023 goto err; 5024 5025 ret = bond_update_slave_arr(bond, NULL); 5026 rtnl_unlock(); 5027 if (ret) { 5028 pr_warn_ratelimited("Failed to update slave array from WT\n"); 5029 goto err; 5030 } 5031 return; 5032 5033 err: 5034 bond_slave_arr_work_rearm(bond, 1); 5035 } 5036 5037 static void bond_skip_slave(struct bond_up_slave *slaves, 5038 struct slave *skipslave) 5039 { 5040 int idx; 5041 5042 /* Rare situation where caller has asked to skip a specific 5043 * slave but allocation failed (most likely!). BTW this is 5044 * only possible when the call is initiated from 5045 * __bond_release_one(). In this situation; overwrite the 5046 * skipslave entry in the array with the last entry from the 5047 * array to avoid a situation where the xmit path may choose 5048 * this to-be-skipped slave to send a packet out. 5049 */ 5050 for (idx = 0; slaves && idx < slaves->count; idx++) { 5051 if (skipslave == slaves->arr[idx]) { 5052 slaves->arr[idx] = 5053 slaves->arr[slaves->count - 1]; 5054 slaves->count--; 5055 break; 5056 } 5057 } 5058 } 5059 5060 static void bond_set_slave_arr(struct bonding *bond, 5061 struct bond_up_slave *usable_slaves, 5062 struct bond_up_slave *all_slaves) 5063 { 5064 struct bond_up_slave *usable, *all; 5065 5066 usable = rtnl_dereference(bond->usable_slaves); 5067 rcu_assign_pointer(bond->usable_slaves, usable_slaves); 5068 kfree_rcu(usable, rcu); 5069 5070 all = rtnl_dereference(bond->all_slaves); 5071 rcu_assign_pointer(bond->all_slaves, all_slaves); 5072 kfree_rcu(all, rcu); 5073 } 5074 5075 static void bond_reset_slave_arr(struct bonding *bond) 5076 { 5077 struct bond_up_slave *usable, *all; 5078 5079 usable = rtnl_dereference(bond->usable_slaves); 5080 if (usable) { 5081 RCU_INIT_POINTER(bond->usable_slaves, NULL); 5082 kfree_rcu(usable, rcu); 5083 } 5084 5085 all = rtnl_dereference(bond->all_slaves); 5086 if (all) { 5087 RCU_INIT_POINTER(bond->all_slaves, NULL); 5088 kfree_rcu(all, rcu); 5089 } 5090 } 5091 5092 /* Build the usable slaves array in control path for modes that use xmit-hash 5093 * to determine the slave interface - 5094 * (a) BOND_MODE_8023AD 5095 * (b) BOND_MODE_XOR 5096 * (c) (BOND_MODE_TLB || BOND_MODE_ALB) && tlb_dynamic_lb == 0 5097 * 5098 * The caller is expected to hold RTNL only and NO other lock! 5099 */ 5100 int bond_update_slave_arr(struct bonding *bond, struct slave *skipslave) 5101 { 5102 struct bond_up_slave *usable_slaves = NULL, *all_slaves = NULL; 5103 struct slave *slave; 5104 struct list_head *iter; 5105 int agg_id = 0; 5106 int ret = 0; 5107 5108 might_sleep(); 5109 5110 usable_slaves = kzalloc(struct_size(usable_slaves, arr, 5111 bond->slave_cnt), GFP_KERNEL); 5112 all_slaves = kzalloc(struct_size(all_slaves, arr, 5113 bond->slave_cnt), GFP_KERNEL); 5114 if (!usable_slaves || !all_slaves) { 5115 ret = -ENOMEM; 5116 goto out; 5117 } 5118 if (BOND_MODE(bond) == BOND_MODE_8023AD) { 5119 struct ad_info ad_info; 5120 5121 spin_lock_bh(&bond->mode_lock); 5122 if (bond_3ad_get_active_agg_info(bond, &ad_info)) { 5123 spin_unlock_bh(&bond->mode_lock); 5124 pr_debug("bond_3ad_get_active_agg_info failed\n"); 5125 /* No active aggragator means it's not safe to use 5126 * the previous array. 5127 */ 5128 bond_reset_slave_arr(bond); 5129 goto out; 5130 } 5131 spin_unlock_bh(&bond->mode_lock); 5132 agg_id = ad_info.aggregator_id; 5133 } 5134 bond_for_each_slave(bond, slave, iter) { 5135 if (skipslave == slave) 5136 continue; 5137 5138 all_slaves->arr[all_slaves->count++] = slave; 5139 if (BOND_MODE(bond) == BOND_MODE_8023AD) { 5140 struct aggregator *agg; 5141 5142 agg = SLAVE_AD_INFO(slave)->port.aggregator; 5143 if (!agg || agg->aggregator_identifier != agg_id) 5144 continue; 5145 } 5146 if (!bond_slave_can_tx(slave)) 5147 continue; 5148 5149 slave_dbg(bond->dev, slave->dev, "Adding slave to tx hash array[%d]\n", 5150 usable_slaves->count); 5151 5152 usable_slaves->arr[usable_slaves->count++] = slave; 5153 } 5154 5155 bond_set_slave_arr(bond, usable_slaves, all_slaves); 5156 return ret; 5157 out: 5158 if (ret != 0 && skipslave) { 5159 bond_skip_slave(rtnl_dereference(bond->all_slaves), 5160 skipslave); 5161 bond_skip_slave(rtnl_dereference(bond->usable_slaves), 5162 skipslave); 5163 } 5164 kfree_rcu(all_slaves, rcu); 5165 kfree_rcu(usable_slaves, rcu); 5166 5167 return ret; 5168 } 5169 5170 static struct slave *bond_xmit_3ad_xor_slave_get(struct bonding *bond, 5171 struct sk_buff *skb, 5172 struct bond_up_slave *slaves) 5173 { 5174 struct slave *slave; 5175 unsigned int count; 5176 u32 hash; 5177 5178 hash = bond_xmit_hash(bond, skb); 5179 count = slaves ? READ_ONCE(slaves->count) : 0; 5180 if (unlikely(!count)) 5181 return NULL; 5182 5183 slave = slaves->arr[hash % count]; 5184 return slave; 5185 } 5186 5187 static struct slave *bond_xdp_xmit_3ad_xor_slave_get(struct bonding *bond, 5188 struct xdp_buff *xdp) 5189 { 5190 struct bond_up_slave *slaves; 5191 unsigned int count; 5192 u32 hash; 5193 5194 hash = bond_xmit_hash_xdp(bond, xdp); 5195 slaves = rcu_dereference(bond->usable_slaves); 5196 count = slaves ? READ_ONCE(slaves->count) : 0; 5197 if (unlikely(!count)) 5198 return NULL; 5199 5200 return slaves->arr[hash % count]; 5201 } 5202 5203 /* Use this Xmit function for 3AD as well as XOR modes. The current 5204 * usable slave array is formed in the control path. The xmit function 5205 * just calculates hash and sends the packet out. 5206 */ 5207 static netdev_tx_t bond_3ad_xor_xmit(struct sk_buff *skb, 5208 struct net_device *dev) 5209 { 5210 struct bonding *bond = netdev_priv(dev); 5211 struct bond_up_slave *slaves; 5212 struct slave *slave; 5213 5214 slaves = rcu_dereference(bond->usable_slaves); 5215 slave = bond_xmit_3ad_xor_slave_get(bond, skb, slaves); 5216 if (likely(slave)) 5217 return bond_dev_queue_xmit(bond, skb, slave->dev); 5218 5219 return bond_tx_drop(dev, skb); 5220 } 5221 5222 /* in broadcast mode, we send everything to all usable interfaces. */ 5223 static netdev_tx_t bond_xmit_broadcast(struct sk_buff *skb, 5224 struct net_device *bond_dev) 5225 { 5226 struct bonding *bond = netdev_priv(bond_dev); 5227 struct slave *slave = NULL; 5228 struct list_head *iter; 5229 bool xmit_suc = false; 5230 bool skb_used = false; 5231 5232 bond_for_each_slave_rcu(bond, slave, iter) { 5233 struct sk_buff *skb2; 5234 5235 if (!(bond_slave_is_up(slave) && slave->link == BOND_LINK_UP)) 5236 continue; 5237 5238 if (bond_is_last_slave(bond, slave)) { 5239 skb2 = skb; 5240 skb_used = true; 5241 } else { 5242 skb2 = skb_clone(skb, GFP_ATOMIC); 5243 if (!skb2) { 5244 net_err_ratelimited("%s: Error: %s: skb_clone() failed\n", 5245 bond_dev->name, __func__); 5246 continue; 5247 } 5248 } 5249 5250 if (bond_dev_queue_xmit(bond, skb2, slave->dev) == NETDEV_TX_OK) 5251 xmit_suc = true; 5252 } 5253 5254 if (!skb_used) 5255 dev_kfree_skb_any(skb); 5256 5257 if (xmit_suc) 5258 return NETDEV_TX_OK; 5259 5260 dev_core_stats_tx_dropped_inc(bond_dev); 5261 return NET_XMIT_DROP; 5262 } 5263 5264 /*------------------------- Device initialization ---------------------------*/ 5265 5266 /* Lookup the slave that corresponds to a qid */ 5267 static inline int bond_slave_override(struct bonding *bond, 5268 struct sk_buff *skb) 5269 { 5270 struct slave *slave = NULL; 5271 struct list_head *iter; 5272 5273 if (!skb_rx_queue_recorded(skb)) 5274 return 1; 5275 5276 /* Find out if any slaves have the same mapping as this skb. */ 5277 bond_for_each_slave_rcu(bond, slave, iter) { 5278 if (slave->queue_id == skb_get_queue_mapping(skb)) { 5279 if (bond_slave_is_up(slave) && 5280 slave->link == BOND_LINK_UP) { 5281 bond_dev_queue_xmit(bond, skb, slave->dev); 5282 return 0; 5283 } 5284 /* If the slave isn't UP, use default transmit policy. */ 5285 break; 5286 } 5287 } 5288 5289 return 1; 5290 } 5291 5292 5293 static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb, 5294 struct net_device *sb_dev) 5295 { 5296 /* This helper function exists to help dev_pick_tx get the correct 5297 * destination queue. Using a helper function skips a call to 5298 * skb_tx_hash and will put the skbs in the queue we expect on their 5299 * way down to the bonding driver. 5300 */ 5301 u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0; 5302 5303 /* Save the original txq to restore before passing to the driver */ 5304 qdisc_skb_cb(skb)->slave_dev_queue_mapping = skb_get_queue_mapping(skb); 5305 5306 if (unlikely(txq >= dev->real_num_tx_queues)) { 5307 do { 5308 txq -= dev->real_num_tx_queues; 5309 } while (txq >= dev->real_num_tx_queues); 5310 } 5311 return txq; 5312 } 5313 5314 static struct net_device *bond_xmit_get_slave(struct net_device *master_dev, 5315 struct sk_buff *skb, 5316 bool all_slaves) 5317 { 5318 struct bonding *bond = netdev_priv(master_dev); 5319 struct bond_up_slave *slaves; 5320 struct slave *slave = NULL; 5321 5322 switch (BOND_MODE(bond)) { 5323 case BOND_MODE_ROUNDROBIN: 5324 slave = bond_xmit_roundrobin_slave_get(bond, skb); 5325 break; 5326 case BOND_MODE_ACTIVEBACKUP: 5327 slave = bond_xmit_activebackup_slave_get(bond); 5328 break; 5329 case BOND_MODE_8023AD: 5330 case BOND_MODE_XOR: 5331 if (all_slaves) 5332 slaves = rcu_dereference(bond->all_slaves); 5333 else 5334 slaves = rcu_dereference(bond->usable_slaves); 5335 slave = bond_xmit_3ad_xor_slave_get(bond, skb, slaves); 5336 break; 5337 case BOND_MODE_BROADCAST: 5338 break; 5339 case BOND_MODE_ALB: 5340 slave = bond_xmit_alb_slave_get(bond, skb); 5341 break; 5342 case BOND_MODE_TLB: 5343 slave = bond_xmit_tlb_slave_get(bond, skb); 5344 break; 5345 default: 5346 /* Should never happen, mode already checked */ 5347 WARN_ONCE(true, "Unknown bonding mode"); 5348 break; 5349 } 5350 5351 if (slave) 5352 return slave->dev; 5353 return NULL; 5354 } 5355 5356 static void bond_sk_to_flow(struct sock *sk, struct flow_keys *flow) 5357 { 5358 switch (sk->sk_family) { 5359 #if IS_ENABLED(CONFIG_IPV6) 5360 case AF_INET6: 5361 if (ipv6_only_sock(sk) || 5362 ipv6_addr_type(&sk->sk_v6_daddr) != IPV6_ADDR_MAPPED) { 5363 flow->control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 5364 flow->addrs.v6addrs.src = inet6_sk(sk)->saddr; 5365 flow->addrs.v6addrs.dst = sk->sk_v6_daddr; 5366 break; 5367 } 5368 fallthrough; 5369 #endif 5370 default: /* AF_INET */ 5371 flow->control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS; 5372 flow->addrs.v4addrs.src = inet_sk(sk)->inet_rcv_saddr; 5373 flow->addrs.v4addrs.dst = inet_sk(sk)->inet_daddr; 5374 break; 5375 } 5376 5377 flow->ports.src = inet_sk(sk)->inet_sport; 5378 flow->ports.dst = inet_sk(sk)->inet_dport; 5379 } 5380 5381 /** 5382 * bond_sk_hash_l34 - generate a hash value based on the socket's L3 and L4 fields 5383 * @sk: socket to use for headers 5384 * 5385 * This function will extract the necessary field from the socket and use 5386 * them to generate a hash based on the LAYER34 xmit_policy. 5387 * Assumes that sk is a TCP or UDP socket. 5388 */ 5389 static u32 bond_sk_hash_l34(struct sock *sk) 5390 { 5391 struct flow_keys flow; 5392 u32 hash; 5393 5394 bond_sk_to_flow(sk, &flow); 5395 5396 /* L4 */ 5397 memcpy(&hash, &flow.ports.ports, sizeof(hash)); 5398 /* L3 */ 5399 return bond_ip_hash(hash, &flow, BOND_XMIT_POLICY_LAYER34); 5400 } 5401 5402 static struct net_device *__bond_sk_get_lower_dev(struct bonding *bond, 5403 struct sock *sk) 5404 { 5405 struct bond_up_slave *slaves; 5406 struct slave *slave; 5407 unsigned int count; 5408 u32 hash; 5409 5410 slaves = rcu_dereference(bond->usable_slaves); 5411 count = slaves ? READ_ONCE(slaves->count) : 0; 5412 if (unlikely(!count)) 5413 return NULL; 5414 5415 hash = bond_sk_hash_l34(sk); 5416 slave = slaves->arr[hash % count]; 5417 5418 return slave->dev; 5419 } 5420 5421 static struct net_device *bond_sk_get_lower_dev(struct net_device *dev, 5422 struct sock *sk) 5423 { 5424 struct bonding *bond = netdev_priv(dev); 5425 struct net_device *lower = NULL; 5426 5427 rcu_read_lock(); 5428 if (bond_sk_check(bond)) 5429 lower = __bond_sk_get_lower_dev(bond, sk); 5430 rcu_read_unlock(); 5431 5432 return lower; 5433 } 5434 5435 #if IS_ENABLED(CONFIG_TLS_DEVICE) 5436 static netdev_tx_t bond_tls_device_xmit(struct bonding *bond, struct sk_buff *skb, 5437 struct net_device *dev) 5438 { 5439 struct net_device *tls_netdev = rcu_dereference(tls_get_ctx(skb->sk)->netdev); 5440 5441 /* tls_netdev might become NULL, even if tls_is_sk_tx_device_offloaded 5442 * was true, if tls_device_down is running in parallel, but it's OK, 5443 * because bond_get_slave_by_dev has a NULL check. 5444 */ 5445 if (likely(bond_get_slave_by_dev(bond, tls_netdev))) 5446 return bond_dev_queue_xmit(bond, skb, tls_netdev); 5447 return bond_tx_drop(dev, skb); 5448 } 5449 #endif 5450 5451 static netdev_tx_t __bond_start_xmit(struct sk_buff *skb, struct net_device *dev) 5452 { 5453 struct bonding *bond = netdev_priv(dev); 5454 5455 if (bond_should_override_tx_queue(bond) && 5456 !bond_slave_override(bond, skb)) 5457 return NETDEV_TX_OK; 5458 5459 #if IS_ENABLED(CONFIG_TLS_DEVICE) 5460 if (skb->sk && tls_is_sk_tx_device_offloaded(skb->sk)) 5461 return bond_tls_device_xmit(bond, skb, dev); 5462 #endif 5463 5464 switch (BOND_MODE(bond)) { 5465 case BOND_MODE_ROUNDROBIN: 5466 return bond_xmit_roundrobin(skb, dev); 5467 case BOND_MODE_ACTIVEBACKUP: 5468 return bond_xmit_activebackup(skb, dev); 5469 case BOND_MODE_8023AD: 5470 case BOND_MODE_XOR: 5471 return bond_3ad_xor_xmit(skb, dev); 5472 case BOND_MODE_BROADCAST: 5473 return bond_xmit_broadcast(skb, dev); 5474 case BOND_MODE_ALB: 5475 return bond_alb_xmit(skb, dev); 5476 case BOND_MODE_TLB: 5477 return bond_tlb_xmit(skb, dev); 5478 default: 5479 /* Should never happen, mode already checked */ 5480 netdev_err(dev, "Unknown bonding mode %d\n", BOND_MODE(bond)); 5481 WARN_ON_ONCE(1); 5482 return bond_tx_drop(dev, skb); 5483 } 5484 } 5485 5486 static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev) 5487 { 5488 struct bonding *bond = netdev_priv(dev); 5489 netdev_tx_t ret = NETDEV_TX_OK; 5490 5491 /* If we risk deadlock from transmitting this in the 5492 * netpoll path, tell netpoll to queue the frame for later tx 5493 */ 5494 if (unlikely(is_netpoll_tx_blocked(dev))) 5495 return NETDEV_TX_BUSY; 5496 5497 rcu_read_lock(); 5498 if (bond_has_slaves(bond)) 5499 ret = __bond_start_xmit(skb, dev); 5500 else 5501 ret = bond_tx_drop(dev, skb); 5502 rcu_read_unlock(); 5503 5504 return ret; 5505 } 5506 5507 static struct net_device * 5508 bond_xdp_get_xmit_slave(struct net_device *bond_dev, struct xdp_buff *xdp) 5509 { 5510 struct bonding *bond = netdev_priv(bond_dev); 5511 struct slave *slave; 5512 5513 /* Caller needs to hold rcu_read_lock() */ 5514 5515 switch (BOND_MODE(bond)) { 5516 case BOND_MODE_ROUNDROBIN: 5517 slave = bond_xdp_xmit_roundrobin_slave_get(bond, xdp); 5518 break; 5519 5520 case BOND_MODE_ACTIVEBACKUP: 5521 slave = bond_xmit_activebackup_slave_get(bond); 5522 break; 5523 5524 case BOND_MODE_8023AD: 5525 case BOND_MODE_XOR: 5526 slave = bond_xdp_xmit_3ad_xor_slave_get(bond, xdp); 5527 break; 5528 5529 default: 5530 /* Should never happen. Mode guarded by bond_xdp_check() */ 5531 netdev_err(bond_dev, "Unknown bonding mode %d for xdp xmit\n", BOND_MODE(bond)); 5532 WARN_ON_ONCE(1); 5533 return NULL; 5534 } 5535 5536 if (slave) 5537 return slave->dev; 5538 5539 return NULL; 5540 } 5541 5542 static int bond_xdp_xmit(struct net_device *bond_dev, 5543 int n, struct xdp_frame **frames, u32 flags) 5544 { 5545 int nxmit, err = -ENXIO; 5546 5547 rcu_read_lock(); 5548 5549 for (nxmit = 0; nxmit < n; nxmit++) { 5550 struct xdp_frame *frame = frames[nxmit]; 5551 struct xdp_frame *frames1[] = {frame}; 5552 struct net_device *slave_dev; 5553 struct xdp_buff xdp; 5554 5555 xdp_convert_frame_to_buff(frame, &xdp); 5556 5557 slave_dev = bond_xdp_get_xmit_slave(bond_dev, &xdp); 5558 if (!slave_dev) { 5559 err = -ENXIO; 5560 break; 5561 } 5562 5563 err = slave_dev->netdev_ops->ndo_xdp_xmit(slave_dev, 1, frames1, flags); 5564 if (err < 1) 5565 break; 5566 } 5567 5568 rcu_read_unlock(); 5569 5570 /* If error happened on the first frame then we can pass the error up, otherwise 5571 * report the number of frames that were xmitted. 5572 */ 5573 if (err < 0) 5574 return (nxmit == 0 ? err : nxmit); 5575 5576 return nxmit; 5577 } 5578 5579 static int bond_xdp_set(struct net_device *dev, struct bpf_prog *prog, 5580 struct netlink_ext_ack *extack) 5581 { 5582 struct bonding *bond = netdev_priv(dev); 5583 struct list_head *iter; 5584 struct slave *slave, *rollback_slave; 5585 struct bpf_prog *old_prog; 5586 struct netdev_bpf xdp = { 5587 .command = XDP_SETUP_PROG, 5588 .flags = 0, 5589 .prog = prog, 5590 .extack = extack, 5591 }; 5592 int err; 5593 5594 ASSERT_RTNL(); 5595 5596 if (!bond_xdp_check(bond)) 5597 return -EOPNOTSUPP; 5598 5599 old_prog = bond->xdp_prog; 5600 bond->xdp_prog = prog; 5601 5602 bond_for_each_slave(bond, slave, iter) { 5603 struct net_device *slave_dev = slave->dev; 5604 5605 if (!slave_dev->netdev_ops->ndo_bpf || 5606 !slave_dev->netdev_ops->ndo_xdp_xmit) { 5607 SLAVE_NL_ERR(dev, slave_dev, extack, 5608 "Slave device does not support XDP"); 5609 err = -EOPNOTSUPP; 5610 goto err; 5611 } 5612 5613 if (dev_xdp_prog_count(slave_dev) > 0) { 5614 SLAVE_NL_ERR(dev, slave_dev, extack, 5615 "Slave has XDP program loaded, please unload before enslaving"); 5616 err = -EOPNOTSUPP; 5617 goto err; 5618 } 5619 5620 err = slave_dev->netdev_ops->ndo_bpf(slave_dev, &xdp); 5621 if (err < 0) { 5622 /* ndo_bpf() sets extack error message */ 5623 slave_err(dev, slave_dev, "Error %d calling ndo_bpf\n", err); 5624 goto err; 5625 } 5626 if (prog) 5627 bpf_prog_inc(prog); 5628 } 5629 5630 if (prog) { 5631 static_branch_inc(&bpf_master_redirect_enabled_key); 5632 } else if (old_prog) { 5633 bpf_prog_put(old_prog); 5634 static_branch_dec(&bpf_master_redirect_enabled_key); 5635 } 5636 5637 return 0; 5638 5639 err: 5640 /* unwind the program changes */ 5641 bond->xdp_prog = old_prog; 5642 xdp.prog = old_prog; 5643 xdp.extack = NULL; /* do not overwrite original error */ 5644 5645 bond_for_each_slave(bond, rollback_slave, iter) { 5646 struct net_device *slave_dev = rollback_slave->dev; 5647 int err_unwind; 5648 5649 if (slave == rollback_slave) 5650 break; 5651 5652 err_unwind = slave_dev->netdev_ops->ndo_bpf(slave_dev, &xdp); 5653 if (err_unwind < 0) 5654 slave_err(dev, slave_dev, 5655 "Error %d when unwinding XDP program change\n", err_unwind); 5656 else if (xdp.prog) 5657 bpf_prog_inc(xdp.prog); 5658 } 5659 return err; 5660 } 5661 5662 static int bond_xdp(struct net_device *dev, struct netdev_bpf *xdp) 5663 { 5664 switch (xdp->command) { 5665 case XDP_SETUP_PROG: 5666 return bond_xdp_set(dev, xdp->prog, xdp->extack); 5667 default: 5668 return -EINVAL; 5669 } 5670 } 5671 5672 static u32 bond_mode_bcast_speed(struct slave *slave, u32 speed) 5673 { 5674 if (speed == 0 || speed == SPEED_UNKNOWN) 5675 speed = slave->speed; 5676 else 5677 speed = min(speed, slave->speed); 5678 5679 return speed; 5680 } 5681 5682 static int bond_ethtool_get_link_ksettings(struct net_device *bond_dev, 5683 struct ethtool_link_ksettings *cmd) 5684 { 5685 struct bonding *bond = netdev_priv(bond_dev); 5686 struct list_head *iter; 5687 struct slave *slave; 5688 u32 speed = 0; 5689 5690 cmd->base.duplex = DUPLEX_UNKNOWN; 5691 cmd->base.port = PORT_OTHER; 5692 5693 /* Since bond_slave_can_tx returns false for all inactive or down slaves, we 5694 * do not need to check mode. Though link speed might not represent 5695 * the true receive or transmit bandwidth (not all modes are symmetric) 5696 * this is an accurate maximum. 5697 */ 5698 bond_for_each_slave(bond, slave, iter) { 5699 if (bond_slave_can_tx(slave)) { 5700 if (slave->speed != SPEED_UNKNOWN) { 5701 if (BOND_MODE(bond) == BOND_MODE_BROADCAST) 5702 speed = bond_mode_bcast_speed(slave, 5703 speed); 5704 else 5705 speed += slave->speed; 5706 } 5707 if (cmd->base.duplex == DUPLEX_UNKNOWN && 5708 slave->duplex != DUPLEX_UNKNOWN) 5709 cmd->base.duplex = slave->duplex; 5710 } 5711 } 5712 cmd->base.speed = speed ? : SPEED_UNKNOWN; 5713 5714 return 0; 5715 } 5716 5717 static void bond_ethtool_get_drvinfo(struct net_device *bond_dev, 5718 struct ethtool_drvinfo *drvinfo) 5719 { 5720 strscpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver)); 5721 snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), "%d", 5722 BOND_ABI_VERSION); 5723 } 5724 5725 static int bond_ethtool_get_ts_info(struct net_device *bond_dev, 5726 struct ethtool_ts_info *info) 5727 { 5728 struct bonding *bond = netdev_priv(bond_dev); 5729 struct ethtool_ts_info ts_info; 5730 const struct ethtool_ops *ops; 5731 struct net_device *real_dev; 5732 bool sw_tx_support = false; 5733 struct phy_device *phydev; 5734 struct list_head *iter; 5735 struct slave *slave; 5736 int ret = 0; 5737 5738 rcu_read_lock(); 5739 real_dev = bond_option_active_slave_get_rcu(bond); 5740 dev_hold(real_dev); 5741 rcu_read_unlock(); 5742 5743 if (real_dev) { 5744 ops = real_dev->ethtool_ops; 5745 phydev = real_dev->phydev; 5746 5747 if (phy_has_tsinfo(phydev)) { 5748 ret = phy_ts_info(phydev, info); 5749 goto out; 5750 } else if (ops->get_ts_info) { 5751 ret = ops->get_ts_info(real_dev, info); 5752 goto out; 5753 } 5754 } else { 5755 /* Check if all slaves support software tx timestamping */ 5756 rcu_read_lock(); 5757 bond_for_each_slave_rcu(bond, slave, iter) { 5758 ret = -1; 5759 ops = slave->dev->ethtool_ops; 5760 phydev = slave->dev->phydev; 5761 5762 if (phy_has_tsinfo(phydev)) 5763 ret = phy_ts_info(phydev, &ts_info); 5764 else if (ops->get_ts_info) 5765 ret = ops->get_ts_info(slave->dev, &ts_info); 5766 5767 if (!ret && (ts_info.so_timestamping & SOF_TIMESTAMPING_TX_SOFTWARE)) { 5768 sw_tx_support = true; 5769 continue; 5770 } 5771 5772 sw_tx_support = false; 5773 break; 5774 } 5775 rcu_read_unlock(); 5776 } 5777 5778 ret = 0; 5779 info->so_timestamping = SOF_TIMESTAMPING_RX_SOFTWARE | 5780 SOF_TIMESTAMPING_SOFTWARE; 5781 if (sw_tx_support) 5782 info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE; 5783 5784 info->phc_index = -1; 5785 5786 out: 5787 dev_put(real_dev); 5788 return ret; 5789 } 5790 5791 static const struct ethtool_ops bond_ethtool_ops = { 5792 .get_drvinfo = bond_ethtool_get_drvinfo, 5793 .get_link = ethtool_op_get_link, 5794 .get_link_ksettings = bond_ethtool_get_link_ksettings, 5795 .get_ts_info = bond_ethtool_get_ts_info, 5796 }; 5797 5798 static const struct net_device_ops bond_netdev_ops = { 5799 .ndo_init = bond_init, 5800 .ndo_uninit = bond_uninit, 5801 .ndo_open = bond_open, 5802 .ndo_stop = bond_close, 5803 .ndo_start_xmit = bond_start_xmit, 5804 .ndo_select_queue = bond_select_queue, 5805 .ndo_get_stats64 = bond_get_stats, 5806 .ndo_eth_ioctl = bond_eth_ioctl, 5807 .ndo_siocbond = bond_do_ioctl, 5808 .ndo_siocdevprivate = bond_siocdevprivate, 5809 .ndo_change_rx_flags = bond_change_rx_flags, 5810 .ndo_set_rx_mode = bond_set_rx_mode, 5811 .ndo_change_mtu = bond_change_mtu, 5812 .ndo_set_mac_address = bond_set_mac_address, 5813 .ndo_neigh_setup = bond_neigh_setup, 5814 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid, 5815 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid, 5816 #ifdef CONFIG_NET_POLL_CONTROLLER 5817 .ndo_netpoll_setup = bond_netpoll_setup, 5818 .ndo_netpoll_cleanup = bond_netpoll_cleanup, 5819 .ndo_poll_controller = bond_poll_controller, 5820 #endif 5821 .ndo_add_slave = bond_enslave, 5822 .ndo_del_slave = bond_release, 5823 .ndo_fix_features = bond_fix_features, 5824 .ndo_features_check = passthru_features_check, 5825 .ndo_get_xmit_slave = bond_xmit_get_slave, 5826 .ndo_sk_get_lower_dev = bond_sk_get_lower_dev, 5827 .ndo_bpf = bond_xdp, 5828 .ndo_xdp_xmit = bond_xdp_xmit, 5829 .ndo_xdp_get_xmit_slave = bond_xdp_get_xmit_slave, 5830 }; 5831 5832 static const struct device_type bond_type = { 5833 .name = "bond", 5834 }; 5835 5836 static void bond_destructor(struct net_device *bond_dev) 5837 { 5838 struct bonding *bond = netdev_priv(bond_dev); 5839 5840 if (bond->wq) 5841 destroy_workqueue(bond->wq); 5842 5843 if (bond->rr_tx_counter) 5844 free_percpu(bond->rr_tx_counter); 5845 } 5846 5847 void bond_setup(struct net_device *bond_dev) 5848 { 5849 struct bonding *bond = netdev_priv(bond_dev); 5850 5851 spin_lock_init(&bond->mode_lock); 5852 bond->params = bonding_defaults; 5853 5854 /* Initialize pointers */ 5855 bond->dev = bond_dev; 5856 5857 /* Initialize the device entry points */ 5858 ether_setup(bond_dev); 5859 bond_dev->max_mtu = ETH_MAX_MTU; 5860 bond_dev->netdev_ops = &bond_netdev_ops; 5861 bond_dev->ethtool_ops = &bond_ethtool_ops; 5862 5863 bond_dev->needs_free_netdev = true; 5864 bond_dev->priv_destructor = bond_destructor; 5865 5866 SET_NETDEV_DEVTYPE(bond_dev, &bond_type); 5867 5868 /* Initialize the device options */ 5869 bond_dev->flags |= IFF_MASTER; 5870 bond_dev->priv_flags |= IFF_BONDING | IFF_UNICAST_FLT | IFF_NO_QUEUE; 5871 bond_dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING); 5872 5873 #ifdef CONFIG_XFRM_OFFLOAD 5874 /* set up xfrm device ops (only supported in active-backup right now) */ 5875 bond_dev->xfrmdev_ops = &bond_xfrmdev_ops; 5876 INIT_LIST_HEAD(&bond->ipsec_list); 5877 spin_lock_init(&bond->ipsec_lock); 5878 #endif /* CONFIG_XFRM_OFFLOAD */ 5879 5880 /* don't acquire bond device's netif_tx_lock when transmitting */ 5881 bond_dev->features |= NETIF_F_LLTX; 5882 5883 /* By default, we declare the bond to be fully 5884 * VLAN hardware accelerated capable. Special 5885 * care is taken in the various xmit functions 5886 * when there are slaves that are not hw accel 5887 * capable 5888 */ 5889 5890 /* Don't allow bond devices to change network namespaces. */ 5891 bond_dev->features |= NETIF_F_NETNS_LOCAL; 5892 5893 bond_dev->hw_features = BOND_VLAN_FEATURES | 5894 NETIF_F_HW_VLAN_CTAG_RX | 5895 NETIF_F_HW_VLAN_CTAG_FILTER; 5896 5897 bond_dev->hw_features |= NETIF_F_GSO_ENCAP_ALL; 5898 bond_dev->features |= bond_dev->hw_features; 5899 bond_dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX; 5900 #ifdef CONFIG_XFRM_OFFLOAD 5901 bond_dev->hw_features |= BOND_XFRM_FEATURES; 5902 /* Only enable XFRM features if this is an active-backup config */ 5903 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP) 5904 bond_dev->features |= BOND_XFRM_FEATURES; 5905 #endif /* CONFIG_XFRM_OFFLOAD */ 5906 5907 if (bond_xdp_check(bond)) 5908 bond_dev->xdp_features = NETDEV_XDP_ACT_MASK; 5909 } 5910 5911 /* Destroy a bonding device. 5912 * Must be under rtnl_lock when this function is called. 5913 */ 5914 static void bond_uninit(struct net_device *bond_dev) 5915 { 5916 struct bonding *bond = netdev_priv(bond_dev); 5917 struct bond_up_slave *usable, *all; 5918 struct list_head *iter; 5919 struct slave *slave; 5920 5921 bond_netpoll_cleanup(bond_dev); 5922 5923 /* Release the bonded slaves */ 5924 bond_for_each_slave(bond, slave, iter) 5925 __bond_release_one(bond_dev, slave->dev, true, true); 5926 netdev_info(bond_dev, "Released all slaves\n"); 5927 5928 usable = rtnl_dereference(bond->usable_slaves); 5929 if (usable) { 5930 RCU_INIT_POINTER(bond->usable_slaves, NULL); 5931 kfree_rcu(usable, rcu); 5932 } 5933 5934 all = rtnl_dereference(bond->all_slaves); 5935 if (all) { 5936 RCU_INIT_POINTER(bond->all_slaves, NULL); 5937 kfree_rcu(all, rcu); 5938 } 5939 5940 list_del(&bond->bond_list); 5941 5942 bond_debug_unregister(bond); 5943 } 5944 5945 /*------------------------- Module initialization ---------------------------*/ 5946 5947 static int bond_check_params(struct bond_params *params) 5948 { 5949 int arp_validate_value, fail_over_mac_value, primary_reselect_value, i; 5950 struct bond_opt_value newval; 5951 const struct bond_opt_value *valptr; 5952 int arp_all_targets_value = 0; 5953 u16 ad_actor_sys_prio = 0; 5954 u16 ad_user_port_key = 0; 5955 __be32 arp_target[BOND_MAX_ARP_TARGETS] = { 0 }; 5956 int arp_ip_count; 5957 int bond_mode = BOND_MODE_ROUNDROBIN; 5958 int xmit_hashtype = BOND_XMIT_POLICY_LAYER2; 5959 int lacp_fast = 0; 5960 int tlb_dynamic_lb; 5961 5962 /* Convert string parameters. */ 5963 if (mode) { 5964 bond_opt_initstr(&newval, mode); 5965 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_MODE), &newval); 5966 if (!valptr) { 5967 pr_err("Error: Invalid bonding mode \"%s\"\n", mode); 5968 return -EINVAL; 5969 } 5970 bond_mode = valptr->value; 5971 } 5972 5973 if (xmit_hash_policy) { 5974 if (bond_mode == BOND_MODE_ROUNDROBIN || 5975 bond_mode == BOND_MODE_ACTIVEBACKUP || 5976 bond_mode == BOND_MODE_BROADCAST) { 5977 pr_info("xmit_hash_policy param is irrelevant in mode %s\n", 5978 bond_mode_name(bond_mode)); 5979 } else { 5980 bond_opt_initstr(&newval, xmit_hash_policy); 5981 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_XMIT_HASH), 5982 &newval); 5983 if (!valptr) { 5984 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n", 5985 xmit_hash_policy); 5986 return -EINVAL; 5987 } 5988 xmit_hashtype = valptr->value; 5989 } 5990 } 5991 5992 if (lacp_rate) { 5993 if (bond_mode != BOND_MODE_8023AD) { 5994 pr_info("lacp_rate param is irrelevant in mode %s\n", 5995 bond_mode_name(bond_mode)); 5996 } else { 5997 bond_opt_initstr(&newval, lacp_rate); 5998 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_LACP_RATE), 5999 &newval); 6000 if (!valptr) { 6001 pr_err("Error: Invalid lacp rate \"%s\"\n", 6002 lacp_rate); 6003 return -EINVAL; 6004 } 6005 lacp_fast = valptr->value; 6006 } 6007 } 6008 6009 if (ad_select) { 6010 bond_opt_initstr(&newval, ad_select); 6011 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_AD_SELECT), 6012 &newval); 6013 if (!valptr) { 6014 pr_err("Error: Invalid ad_select \"%s\"\n", ad_select); 6015 return -EINVAL; 6016 } 6017 params->ad_select = valptr->value; 6018 if (bond_mode != BOND_MODE_8023AD) 6019 pr_warn("ad_select param only affects 802.3ad mode\n"); 6020 } else { 6021 params->ad_select = BOND_AD_STABLE; 6022 } 6023 6024 if (max_bonds < 0) { 6025 pr_warn("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n", 6026 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS); 6027 max_bonds = BOND_DEFAULT_MAX_BONDS; 6028 } 6029 6030 if (miimon < 0) { 6031 pr_warn("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to 0\n", 6032 miimon, INT_MAX); 6033 miimon = 0; 6034 } 6035 6036 if (updelay < 0) { 6037 pr_warn("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n", 6038 updelay, INT_MAX); 6039 updelay = 0; 6040 } 6041 6042 if (downdelay < 0) { 6043 pr_warn("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n", 6044 downdelay, INT_MAX); 6045 downdelay = 0; 6046 } 6047 6048 if ((use_carrier != 0) && (use_carrier != 1)) { 6049 pr_warn("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n", 6050 use_carrier); 6051 use_carrier = 1; 6052 } 6053 6054 if (num_peer_notif < 0 || num_peer_notif > 255) { 6055 pr_warn("Warning: num_grat_arp/num_unsol_na (%d) not in range 0-255 so it was reset to 1\n", 6056 num_peer_notif); 6057 num_peer_notif = 1; 6058 } 6059 6060 /* reset values for 802.3ad/TLB/ALB */ 6061 if (!bond_mode_uses_arp(bond_mode)) { 6062 if (!miimon) { 6063 pr_warn("Warning: miimon must be specified, otherwise bonding will not detect link failure, speed and duplex which are essential for 802.3ad operation\n"); 6064 pr_warn("Forcing miimon to 100msec\n"); 6065 miimon = BOND_DEFAULT_MIIMON; 6066 } 6067 } 6068 6069 if (tx_queues < 1 || tx_queues > 255) { 6070 pr_warn("Warning: tx_queues (%d) should be between 1 and 255, resetting to %d\n", 6071 tx_queues, BOND_DEFAULT_TX_QUEUES); 6072 tx_queues = BOND_DEFAULT_TX_QUEUES; 6073 } 6074 6075 if ((all_slaves_active != 0) && (all_slaves_active != 1)) { 6076 pr_warn("Warning: all_slaves_active module parameter (%d), not of valid value (0/1), so it was set to 0\n", 6077 all_slaves_active); 6078 all_slaves_active = 0; 6079 } 6080 6081 if (resend_igmp < 0 || resend_igmp > 255) { 6082 pr_warn("Warning: resend_igmp (%d) should be between 0 and 255, resetting to %d\n", 6083 resend_igmp, BOND_DEFAULT_RESEND_IGMP); 6084 resend_igmp = BOND_DEFAULT_RESEND_IGMP; 6085 } 6086 6087 bond_opt_initval(&newval, packets_per_slave); 6088 if (!bond_opt_parse(bond_opt_get(BOND_OPT_PACKETS_PER_SLAVE), &newval)) { 6089 pr_warn("Warning: packets_per_slave (%d) should be between 0 and %u resetting to 1\n", 6090 packets_per_slave, USHRT_MAX); 6091 packets_per_slave = 1; 6092 } 6093 6094 if (bond_mode == BOND_MODE_ALB) { 6095 pr_notice("In ALB mode you might experience client disconnections upon reconnection of a link if the bonding module updelay parameter (%d msec) is incompatible with the forwarding delay time of the switch\n", 6096 updelay); 6097 } 6098 6099 if (!miimon) { 6100 if (updelay || downdelay) { 6101 /* just warn the user the up/down delay will have 6102 * no effect since miimon is zero... 6103 */ 6104 pr_warn("Warning: miimon module parameter not set and updelay (%d) or downdelay (%d) module parameter is set; updelay and downdelay have no effect unless miimon is set\n", 6105 updelay, downdelay); 6106 } 6107 } else { 6108 /* don't allow arp monitoring */ 6109 if (arp_interval) { 6110 pr_warn("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n", 6111 miimon, arp_interval); 6112 arp_interval = 0; 6113 } 6114 6115 if ((updelay % miimon) != 0) { 6116 pr_warn("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n", 6117 updelay, miimon, (updelay / miimon) * miimon); 6118 } 6119 6120 updelay /= miimon; 6121 6122 if ((downdelay % miimon) != 0) { 6123 pr_warn("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n", 6124 downdelay, miimon, 6125 (downdelay / miimon) * miimon); 6126 } 6127 6128 downdelay /= miimon; 6129 } 6130 6131 if (arp_interval < 0) { 6132 pr_warn("Warning: arp_interval module parameter (%d), not in range 0-%d, so it was reset to 0\n", 6133 arp_interval, INT_MAX); 6134 arp_interval = 0; 6135 } 6136 6137 for (arp_ip_count = 0, i = 0; 6138 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[i]; i++) { 6139 __be32 ip; 6140 6141 /* not a complete check, but good enough to catch mistakes */ 6142 if (!in4_pton(arp_ip_target[i], -1, (u8 *)&ip, -1, NULL) || 6143 !bond_is_ip_target_ok(ip)) { 6144 pr_warn("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n", 6145 arp_ip_target[i]); 6146 arp_interval = 0; 6147 } else { 6148 if (bond_get_targets_ip(arp_target, ip) == -1) 6149 arp_target[arp_ip_count++] = ip; 6150 else 6151 pr_warn("Warning: duplicate address %pI4 in arp_ip_target, skipping\n", 6152 &ip); 6153 } 6154 } 6155 6156 if (arp_interval && !arp_ip_count) { 6157 /* don't allow arping if no arp_ip_target given... */ 6158 pr_warn("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n", 6159 arp_interval); 6160 arp_interval = 0; 6161 } 6162 6163 if (arp_validate) { 6164 if (!arp_interval) { 6165 pr_err("arp_validate requires arp_interval\n"); 6166 return -EINVAL; 6167 } 6168 6169 bond_opt_initstr(&newval, arp_validate); 6170 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_ARP_VALIDATE), 6171 &newval); 6172 if (!valptr) { 6173 pr_err("Error: invalid arp_validate \"%s\"\n", 6174 arp_validate); 6175 return -EINVAL; 6176 } 6177 arp_validate_value = valptr->value; 6178 } else { 6179 arp_validate_value = 0; 6180 } 6181 6182 if (arp_all_targets) { 6183 bond_opt_initstr(&newval, arp_all_targets); 6184 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_ARP_ALL_TARGETS), 6185 &newval); 6186 if (!valptr) { 6187 pr_err("Error: invalid arp_all_targets_value \"%s\"\n", 6188 arp_all_targets); 6189 arp_all_targets_value = 0; 6190 } else { 6191 arp_all_targets_value = valptr->value; 6192 } 6193 } 6194 6195 if (miimon) { 6196 pr_info("MII link monitoring set to %d ms\n", miimon); 6197 } else if (arp_interval) { 6198 valptr = bond_opt_get_val(BOND_OPT_ARP_VALIDATE, 6199 arp_validate_value); 6200 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):", 6201 arp_interval, valptr->string, arp_ip_count); 6202 6203 for (i = 0; i < arp_ip_count; i++) 6204 pr_cont(" %s", arp_ip_target[i]); 6205 6206 pr_cont("\n"); 6207 6208 } else if (max_bonds) { 6209 /* miimon and arp_interval not set, we need one so things 6210 * work as expected, see bonding.txt for details 6211 */ 6212 pr_debug("Warning: either miimon or arp_interval and arp_ip_target module parameters must be specified, otherwise bonding will not detect link failures! see bonding.txt for details\n"); 6213 } 6214 6215 if (primary && !bond_mode_uses_primary(bond_mode)) { 6216 /* currently, using a primary only makes sense 6217 * in active backup, TLB or ALB modes 6218 */ 6219 pr_warn("Warning: %s primary device specified but has no effect in %s mode\n", 6220 primary, bond_mode_name(bond_mode)); 6221 primary = NULL; 6222 } 6223 6224 if (primary && primary_reselect) { 6225 bond_opt_initstr(&newval, primary_reselect); 6226 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_PRIMARY_RESELECT), 6227 &newval); 6228 if (!valptr) { 6229 pr_err("Error: Invalid primary_reselect \"%s\"\n", 6230 primary_reselect); 6231 return -EINVAL; 6232 } 6233 primary_reselect_value = valptr->value; 6234 } else { 6235 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS; 6236 } 6237 6238 if (fail_over_mac) { 6239 bond_opt_initstr(&newval, fail_over_mac); 6240 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_FAIL_OVER_MAC), 6241 &newval); 6242 if (!valptr) { 6243 pr_err("Error: invalid fail_over_mac \"%s\"\n", 6244 fail_over_mac); 6245 return -EINVAL; 6246 } 6247 fail_over_mac_value = valptr->value; 6248 if (bond_mode != BOND_MODE_ACTIVEBACKUP) 6249 pr_warn("Warning: fail_over_mac only affects active-backup mode\n"); 6250 } else { 6251 fail_over_mac_value = BOND_FOM_NONE; 6252 } 6253 6254 bond_opt_initstr(&newval, "default"); 6255 valptr = bond_opt_parse( 6256 bond_opt_get(BOND_OPT_AD_ACTOR_SYS_PRIO), 6257 &newval); 6258 if (!valptr) { 6259 pr_err("Error: No ad_actor_sys_prio default value"); 6260 return -EINVAL; 6261 } 6262 ad_actor_sys_prio = valptr->value; 6263 6264 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_AD_USER_PORT_KEY), 6265 &newval); 6266 if (!valptr) { 6267 pr_err("Error: No ad_user_port_key default value"); 6268 return -EINVAL; 6269 } 6270 ad_user_port_key = valptr->value; 6271 6272 bond_opt_initstr(&newval, "default"); 6273 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_TLB_DYNAMIC_LB), &newval); 6274 if (!valptr) { 6275 pr_err("Error: No tlb_dynamic_lb default value"); 6276 return -EINVAL; 6277 } 6278 tlb_dynamic_lb = valptr->value; 6279 6280 if (lp_interval == 0) { 6281 pr_warn("Warning: ip_interval must be between 1 and %d, so it was reset to %d\n", 6282 INT_MAX, BOND_ALB_DEFAULT_LP_INTERVAL); 6283 lp_interval = BOND_ALB_DEFAULT_LP_INTERVAL; 6284 } 6285 6286 /* fill params struct with the proper values */ 6287 params->mode = bond_mode; 6288 params->xmit_policy = xmit_hashtype; 6289 params->miimon = miimon; 6290 params->num_peer_notif = num_peer_notif; 6291 params->arp_interval = arp_interval; 6292 params->arp_validate = arp_validate_value; 6293 params->arp_all_targets = arp_all_targets_value; 6294 params->missed_max = 2; 6295 params->updelay = updelay; 6296 params->downdelay = downdelay; 6297 params->peer_notif_delay = 0; 6298 params->use_carrier = use_carrier; 6299 params->lacp_active = 1; 6300 params->lacp_fast = lacp_fast; 6301 params->primary[0] = 0; 6302 params->primary_reselect = primary_reselect_value; 6303 params->fail_over_mac = fail_over_mac_value; 6304 params->tx_queues = tx_queues; 6305 params->all_slaves_active = all_slaves_active; 6306 params->resend_igmp = resend_igmp; 6307 params->min_links = min_links; 6308 params->lp_interval = lp_interval; 6309 params->packets_per_slave = packets_per_slave; 6310 params->tlb_dynamic_lb = tlb_dynamic_lb; 6311 params->ad_actor_sys_prio = ad_actor_sys_prio; 6312 eth_zero_addr(params->ad_actor_system); 6313 params->ad_user_port_key = ad_user_port_key; 6314 if (packets_per_slave > 0) { 6315 params->reciprocal_packets_per_slave = 6316 reciprocal_value(packets_per_slave); 6317 } else { 6318 /* reciprocal_packets_per_slave is unused if 6319 * packets_per_slave is 0 or 1, just initialize it 6320 */ 6321 params->reciprocal_packets_per_slave = 6322 (struct reciprocal_value) { 0 }; 6323 } 6324 6325 if (primary) 6326 strscpy_pad(params->primary, primary, sizeof(params->primary)); 6327 6328 memcpy(params->arp_targets, arp_target, sizeof(arp_target)); 6329 #if IS_ENABLED(CONFIG_IPV6) 6330 memset(params->ns_targets, 0, sizeof(struct in6_addr) * BOND_MAX_NS_TARGETS); 6331 #endif 6332 6333 return 0; 6334 } 6335 6336 /* Called from registration process */ 6337 static int bond_init(struct net_device *bond_dev) 6338 { 6339 struct bonding *bond = netdev_priv(bond_dev); 6340 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id); 6341 6342 netdev_dbg(bond_dev, "Begin bond_init\n"); 6343 6344 bond->wq = alloc_ordered_workqueue(bond_dev->name, WQ_MEM_RECLAIM); 6345 if (!bond->wq) 6346 return -ENOMEM; 6347 6348 spin_lock_init(&bond->stats_lock); 6349 netdev_lockdep_set_classes(bond_dev); 6350 6351 list_add_tail(&bond->bond_list, &bn->dev_list); 6352 6353 bond_prepare_sysfs_group(bond); 6354 6355 bond_debug_register(bond); 6356 6357 /* Ensure valid dev_addr */ 6358 if (is_zero_ether_addr(bond_dev->dev_addr) && 6359 bond_dev->addr_assign_type == NET_ADDR_PERM) 6360 eth_hw_addr_random(bond_dev); 6361 6362 return 0; 6363 } 6364 6365 unsigned int bond_get_num_tx_queues(void) 6366 { 6367 return tx_queues; 6368 } 6369 6370 /* Create a new bond based on the specified name and bonding parameters. 6371 * If name is NULL, obtain a suitable "bond%d" name for us. 6372 * Caller must NOT hold rtnl_lock; we need to release it here before we 6373 * set up our sysfs entries. 6374 */ 6375 int bond_create(struct net *net, const char *name) 6376 { 6377 struct net_device *bond_dev; 6378 struct bonding *bond; 6379 int res = -ENOMEM; 6380 6381 rtnl_lock(); 6382 6383 bond_dev = alloc_netdev_mq(sizeof(struct bonding), 6384 name ? name : "bond%d", NET_NAME_UNKNOWN, 6385 bond_setup, tx_queues); 6386 if (!bond_dev) 6387 goto out; 6388 6389 bond = netdev_priv(bond_dev); 6390 dev_net_set(bond_dev, net); 6391 bond_dev->rtnl_link_ops = &bond_link_ops; 6392 6393 res = register_netdevice(bond_dev); 6394 if (res < 0) { 6395 free_netdev(bond_dev); 6396 goto out; 6397 } 6398 6399 netif_carrier_off(bond_dev); 6400 6401 bond_work_init_all(bond); 6402 6403 out: 6404 rtnl_unlock(); 6405 return res; 6406 } 6407 6408 static int __net_init bond_net_init(struct net *net) 6409 { 6410 struct bond_net *bn = net_generic(net, bond_net_id); 6411 6412 bn->net = net; 6413 INIT_LIST_HEAD(&bn->dev_list); 6414 6415 bond_create_proc_dir(bn); 6416 bond_create_sysfs(bn); 6417 6418 return 0; 6419 } 6420 6421 static void __net_exit bond_net_exit_batch(struct list_head *net_list) 6422 { 6423 struct bond_net *bn; 6424 struct net *net; 6425 LIST_HEAD(list); 6426 6427 list_for_each_entry(net, net_list, exit_list) { 6428 bn = net_generic(net, bond_net_id); 6429 bond_destroy_sysfs(bn); 6430 } 6431 6432 /* Kill off any bonds created after unregistering bond rtnl ops */ 6433 rtnl_lock(); 6434 list_for_each_entry(net, net_list, exit_list) { 6435 struct bonding *bond, *tmp_bond; 6436 6437 bn = net_generic(net, bond_net_id); 6438 list_for_each_entry_safe(bond, tmp_bond, &bn->dev_list, bond_list) 6439 unregister_netdevice_queue(bond->dev, &list); 6440 } 6441 unregister_netdevice_many(&list); 6442 rtnl_unlock(); 6443 6444 list_for_each_entry(net, net_list, exit_list) { 6445 bn = net_generic(net, bond_net_id); 6446 bond_destroy_proc_dir(bn); 6447 } 6448 } 6449 6450 static struct pernet_operations bond_net_ops = { 6451 .init = bond_net_init, 6452 .exit_batch = bond_net_exit_batch, 6453 .id = &bond_net_id, 6454 .size = sizeof(struct bond_net), 6455 }; 6456 6457 static int __init bonding_init(void) 6458 { 6459 int i; 6460 int res; 6461 6462 res = bond_check_params(&bonding_defaults); 6463 if (res) 6464 goto out; 6465 6466 res = register_pernet_subsys(&bond_net_ops); 6467 if (res) 6468 goto out; 6469 6470 res = bond_netlink_init(); 6471 if (res) 6472 goto err_link; 6473 6474 bond_create_debugfs(); 6475 6476 for (i = 0; i < max_bonds; i++) { 6477 res = bond_create(&init_net, NULL); 6478 if (res) 6479 goto err; 6480 } 6481 6482 skb_flow_dissector_init(&flow_keys_bonding, 6483 flow_keys_bonding_keys, 6484 ARRAY_SIZE(flow_keys_bonding_keys)); 6485 6486 register_netdevice_notifier(&bond_netdev_notifier); 6487 out: 6488 return res; 6489 err: 6490 bond_destroy_debugfs(); 6491 bond_netlink_fini(); 6492 err_link: 6493 unregister_pernet_subsys(&bond_net_ops); 6494 goto out; 6495 6496 } 6497 6498 static void __exit bonding_exit(void) 6499 { 6500 unregister_netdevice_notifier(&bond_netdev_notifier); 6501 6502 bond_destroy_debugfs(); 6503 6504 bond_netlink_fini(); 6505 unregister_pernet_subsys(&bond_net_ops); 6506 6507 #ifdef CONFIG_NET_POLL_CONTROLLER 6508 /* Make sure we don't have an imbalance on our netpoll blocking */ 6509 WARN_ON(atomic_read(&netpoll_block_tx)); 6510 #endif 6511 } 6512 6513 module_init(bonding_init); 6514 module_exit(bonding_exit); 6515 MODULE_LICENSE("GPL"); 6516 MODULE_DESCRIPTION(DRV_DESCRIPTION); 6517 MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others"); 6518