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