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