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