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