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