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