xref: /linux/drivers/net/bonding/bond_3ad.c (revision b47ff80f280e18ad2310f44293cc057d9b64ff11)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
4  */
5 
6 #include <linux/skbuff.h>
7 #include <linux/if_ether.h>
8 #include <linux/netdevice.h>
9 #include <linux/spinlock.h>
10 #include <linux/ethtool.h>
11 #include <linux/etherdevice.h>
12 #include <linux/if_bonding.h>
13 #include <linux/pkt_sched.h>
14 #include <net/net_namespace.h>
15 #include <net/bonding.h>
16 #include <net/bond_3ad.h>
17 #include <net/netlink.h>
18 
19 /* General definitions */
20 #define AD_SHORT_TIMEOUT           1
21 #define AD_LONG_TIMEOUT            0
22 #define AD_STANDBY                 0x2
23 #define AD_MAX_TX_IN_SECOND        3
24 #define AD_COLLECTOR_MAX_DELAY     0
25 
26 /* Timer definitions (43.4.4 in the 802.3ad standard) */
27 #define AD_FAST_PERIODIC_TIME      1
28 #define AD_SLOW_PERIODIC_TIME      30
29 #define AD_SHORT_TIMEOUT_TIME      (3*AD_FAST_PERIODIC_TIME)
30 #define AD_LONG_TIMEOUT_TIME       (3*AD_SLOW_PERIODIC_TIME)
31 #define AD_CHURN_DETECTION_TIME    60
32 #define AD_AGGREGATE_WAIT_TIME     2
33 
34 /* Port Variables definitions used by the State Machines (43.4.7 in the
35  * 802.3ad standard)
36  */
37 #define AD_PORT_BEGIN           0x1
38 #define AD_PORT_LACP_ENABLED    0x2
39 #define AD_PORT_ACTOR_CHURN     0x4
40 #define AD_PORT_PARTNER_CHURN   0x8
41 #define AD_PORT_READY           0x10
42 #define AD_PORT_READY_N         0x20
43 #define AD_PORT_MATCHED         0x40
44 #define AD_PORT_STANDBY         0x80
45 #define AD_PORT_SELECTED        0x100
46 #define AD_PORT_MOVED           0x200
47 #define AD_PORT_CHURNED         (AD_PORT_ACTOR_CHURN | AD_PORT_PARTNER_CHURN)
48 
49 /* Port Key definitions
50  * key is determined according to the link speed, duplex and
51  * user key (which is yet not supported)
52  *           --------------------------------------------------------------
53  * Port key  | User key (10 bits)           | Speed (5 bits)      | Duplex|
54  *           --------------------------------------------------------------
55  *           |15                           6|5                   1|0
56  */
57 #define  AD_DUPLEX_KEY_MASKS    0x1
58 #define  AD_SPEED_KEY_MASKS     0x3E
59 #define  AD_USER_KEY_MASKS      0xFFC0
60 
61 enum ad_link_speed_type {
62 	AD_LINK_SPEED_1MBPS = 1,
63 	AD_LINK_SPEED_10MBPS,
64 	AD_LINK_SPEED_100MBPS,
65 	AD_LINK_SPEED_1000MBPS,
66 	AD_LINK_SPEED_2500MBPS,
67 	AD_LINK_SPEED_5000MBPS,
68 	AD_LINK_SPEED_10000MBPS,
69 	AD_LINK_SPEED_14000MBPS,
70 	AD_LINK_SPEED_20000MBPS,
71 	AD_LINK_SPEED_25000MBPS,
72 	AD_LINK_SPEED_40000MBPS,
73 	AD_LINK_SPEED_50000MBPS,
74 	AD_LINK_SPEED_56000MBPS,
75 	AD_LINK_SPEED_80000MBPS,
76 	AD_LINK_SPEED_100000MBPS,
77 	AD_LINK_SPEED_200000MBPS,
78 	AD_LINK_SPEED_400000MBPS,
79 	AD_LINK_SPEED_800000MBPS,
80 	AD_LINK_SPEED_1600000MBPS,
81 };
82 
83 /* compare MAC addresses */
84 #define MAC_ADDRESS_EQUAL(A, B)	\
85 	ether_addr_equal_64bits((const u8 *)A, (const u8 *)B)
86 
87 static const u16 ad_ticks_per_sec = 1000 / AD_TIMER_INTERVAL;
88 static const int ad_delta_in_ticks = (AD_TIMER_INTERVAL * HZ) / 1000;
89 
90 const u8 lacpdu_mcast_addr[ETH_ALEN + 2] __long_aligned = {
91 	0x01, 0x80, 0xC2, 0x00, 0x00, 0x02
92 };
93 
94 /* ================= main 802.3ad protocol functions ================== */
95 static int ad_lacpdu_send(struct port *port);
96 static int ad_marker_send(struct port *port, struct bond_marker *marker);
97 static void ad_mux_machine(struct port *port, bool *update_slave_arr);
98 static void ad_rx_machine(struct lacpdu *lacpdu, struct port *port);
99 static void ad_tx_machine(struct port *port);
100 static void ad_periodic_machine(struct port *port);
101 static void ad_port_selection_logic(struct port *port, bool *update_slave_arr);
102 static void ad_agg_selection_logic(struct aggregator *aggregator,
103 				   bool *update_slave_arr);
104 static void ad_clear_agg(struct aggregator *aggregator);
105 static void ad_initialize_agg(struct aggregator *aggregator);
106 static void ad_initialize_port(struct port *port, const struct bond_params *bond_params);
107 static void ad_enable_collecting(struct port *port);
108 static void ad_disable_distributing(struct port *port,
109 				    bool *update_slave_arr);
110 static void ad_enable_collecting_distributing(struct port *port,
111 					      bool *update_slave_arr);
112 static void ad_disable_collecting_distributing(struct port *port,
113 					       bool *update_slave_arr);
114 static void ad_marker_info_received(struct bond_marker *marker_info,
115 				    struct port *port);
116 static void ad_marker_response_received(struct bond_marker *marker,
117 					struct port *port);
118 static void ad_update_actor_keys(struct port *port, bool reset);
119 
120 
121 /* ================= api to bonding and kernel code ================== */
122 
123 /**
124  * __get_bond_by_port - get the port's bonding struct
125  * @port: the port we're looking at
126  *
127  * Return @port's bonding struct, or %NULL if it can't be found.
128  */
129 static inline struct bonding *__get_bond_by_port(struct port *port)
130 {
131 	if (port->slave == NULL)
132 		return NULL;
133 
134 	return bond_get_bond_by_slave(port->slave);
135 }
136 
137 /**
138  * __get_first_agg - get the first aggregator in the bond
139  * @port: the port we're looking at
140  *
141  * Return the aggregator of the first slave in @bond, or %NULL if it can't be
142  * found.
143  * The caller must hold RCU or RTNL lock.
144  */
145 static inline struct aggregator *__get_first_agg(struct port *port)
146 {
147 	struct bonding *bond = __get_bond_by_port(port);
148 	struct slave *first_slave;
149 	struct aggregator *agg;
150 
151 	/* If there's no bond for this port, or bond has no slaves */
152 	if (bond == NULL)
153 		return NULL;
154 
155 	rcu_read_lock();
156 	first_slave = bond_first_slave_rcu(bond);
157 	agg = first_slave ? &(SLAVE_AD_INFO(first_slave)->aggregator) : NULL;
158 	rcu_read_unlock();
159 
160 	return agg;
161 }
162 
163 /**
164  * __agg_has_partner - see if we have a partner
165  * @agg: the agregator we're looking at
166  *
167  * Return nonzero if aggregator has a partner (denoted by a non-zero ether
168  * address for the partner). Return 0 if not.
169  */
170 static inline int __agg_has_partner(struct aggregator *agg)
171 {
172 	return !is_zero_ether_addr(agg->partner_system.mac_addr_value);
173 }
174 
175 /**
176  * __disable_distributing_port - disable the port's slave for distributing.
177  * Port will still be able to collect.
178  * @port: the port we're looking at
179  *
180  * This will disable only distributing on the port's slave.
181  */
182 static void __disable_distributing_port(struct port *port)
183 {
184 	bond_set_slave_tx_disabled_flags(port->slave, BOND_SLAVE_NOTIFY_LATER);
185 }
186 
187 /**
188  * __enable_collecting_port - enable the port's slave for collecting,
189  * if it's up
190  * @port: the port we're looking at
191  *
192  * This will enable only collecting on the port's slave.
193  */
194 static void __enable_collecting_port(struct port *port)
195 {
196 	struct slave *slave = port->slave;
197 
198 	if (slave->link == BOND_LINK_UP && bond_slave_is_up(slave))
199 		bond_set_slave_rx_enabled_flags(slave, BOND_SLAVE_NOTIFY_LATER);
200 }
201 
202 /**
203  * __disable_port - disable the port's slave
204  * @port: the port we're looking at
205  *
206  * This will disable both collecting and distributing on the port's slave.
207  */
208 static inline void __disable_port(struct port *port)
209 {
210 	bond_set_slave_inactive_flags(port->slave, BOND_SLAVE_NOTIFY_LATER);
211 }
212 
213 /**
214  * __enable_port - enable the port's slave, if it's up
215  * @port: the port we're looking at
216  *
217  * This will enable both collecting and distributing on the port's slave.
218  */
219 static inline void __enable_port(struct port *port)
220 {
221 	struct slave *slave = port->slave;
222 
223 	if ((slave->link == BOND_LINK_UP) && bond_slave_is_up(slave))
224 		bond_set_slave_active_flags(slave, BOND_SLAVE_NOTIFY_LATER);
225 }
226 
227 /**
228  * __port_move_to_attached_state - check if port should transition back to attached
229  * state.
230  * @port: the port we're looking at
231  */
232 static bool __port_move_to_attached_state(struct port *port)
233 {
234 	if (!(port->sm_vars & AD_PORT_SELECTED) ||
235 	    (port->sm_vars & AD_PORT_STANDBY) ||
236 	    !(port->partner_oper.port_state & LACP_STATE_SYNCHRONIZATION) ||
237 	    !(port->actor_oper_port_state & LACP_STATE_SYNCHRONIZATION))
238 		port->sm_mux_state = AD_MUX_ATTACHED;
239 
240 	return port->sm_mux_state == AD_MUX_ATTACHED;
241 }
242 
243 /**
244  * __port_is_collecting_distributing - check if the port's slave is in the
245  * combined collecting/distributing state
246  * @port: the port we're looking at
247  */
248 static int __port_is_collecting_distributing(struct port *port)
249 {
250 	return bond_is_active_slave(port->slave);
251 }
252 
253 /**
254  * __get_agg_selection_mode - get the aggregator selection mode
255  * @port: the port we're looking at
256  *
257  * Get the aggregator selection mode. Can be %STABLE, %BANDWIDTH or %COUNT.
258  */
259 static inline u32 __get_agg_selection_mode(struct port *port)
260 {
261 	struct bonding *bond = __get_bond_by_port(port);
262 
263 	if (bond == NULL)
264 		return BOND_AD_STABLE;
265 
266 	return bond->params.ad_select;
267 }
268 
269 /**
270  * __check_agg_selection_timer - check if the selection timer has expired
271  * @port: the port we're looking at
272  */
273 static inline int __check_agg_selection_timer(struct port *port)
274 {
275 	struct bonding *bond = __get_bond_by_port(port);
276 
277 	if (bond == NULL)
278 		return 0;
279 
280 	return atomic_read(&BOND_AD_INFO(bond).agg_select_timer) ? 1 : 0;
281 }
282 
283 /**
284  * __get_link_speed - get a port's speed
285  * @port: the port we're looking at
286  *
287  * Return @port's speed in 802.3ad enum format. i.e. one of:
288  *     0,
289  *     %AD_LINK_SPEED_10MBPS,
290  *     %AD_LINK_SPEED_100MBPS,
291  *     %AD_LINK_SPEED_1000MBPS,
292  *     %AD_LINK_SPEED_2500MBPS,
293  *     %AD_LINK_SPEED_5000MBPS,
294  *     %AD_LINK_SPEED_10000MBPS
295  *     %AD_LINK_SPEED_14000MBPS,
296  *     %AD_LINK_SPEED_20000MBPS
297  *     %AD_LINK_SPEED_25000MBPS
298  *     %AD_LINK_SPEED_40000MBPS
299  *     %AD_LINK_SPEED_50000MBPS
300  *     %AD_LINK_SPEED_56000MBPS
301  *     %AD_LINK_SPEED_80000MBPS
302  *     %AD_LINK_SPEED_100000MBPS
303  *     %AD_LINK_SPEED_200000MBPS
304  *     %AD_LINK_SPEED_400000MBPS
305  *     %AD_LINK_SPEED_800000MBPS
306  *     %AD_LINK_SPEED_1600000MBPS
307  */
308 static u16 __get_link_speed(struct port *port)
309 {
310 	struct slave *slave = port->slave;
311 	u16 speed;
312 
313 	/* this if covers only a special case: when the configuration starts
314 	 * with link down, it sets the speed to 0.
315 	 * This is done in spite of the fact that the e100 driver reports 0
316 	 * to be compatible with MVT in the future.
317 	 */
318 	if (slave->link != BOND_LINK_UP)
319 		speed = 0;
320 	else {
321 		switch (slave->speed) {
322 		case SPEED_10:
323 			speed = AD_LINK_SPEED_10MBPS;
324 			break;
325 
326 		case SPEED_100:
327 			speed = AD_LINK_SPEED_100MBPS;
328 			break;
329 
330 		case SPEED_1000:
331 			speed = AD_LINK_SPEED_1000MBPS;
332 			break;
333 
334 		case SPEED_2500:
335 			speed = AD_LINK_SPEED_2500MBPS;
336 			break;
337 
338 		case SPEED_5000:
339 			speed = AD_LINK_SPEED_5000MBPS;
340 			break;
341 
342 		case SPEED_10000:
343 			speed = AD_LINK_SPEED_10000MBPS;
344 			break;
345 
346 		case SPEED_14000:
347 			speed = AD_LINK_SPEED_14000MBPS;
348 			break;
349 
350 		case SPEED_20000:
351 			speed = AD_LINK_SPEED_20000MBPS;
352 			break;
353 
354 		case SPEED_25000:
355 			speed = AD_LINK_SPEED_25000MBPS;
356 			break;
357 
358 		case SPEED_40000:
359 			speed = AD_LINK_SPEED_40000MBPS;
360 			break;
361 
362 		case SPEED_50000:
363 			speed = AD_LINK_SPEED_50000MBPS;
364 			break;
365 
366 		case SPEED_56000:
367 			speed = AD_LINK_SPEED_56000MBPS;
368 			break;
369 
370 		case SPEED_80000:
371 			speed = AD_LINK_SPEED_80000MBPS;
372 			break;
373 
374 		case SPEED_100000:
375 			speed = AD_LINK_SPEED_100000MBPS;
376 			break;
377 
378 		case SPEED_200000:
379 			speed = AD_LINK_SPEED_200000MBPS;
380 			break;
381 
382 		case SPEED_400000:
383 			speed = AD_LINK_SPEED_400000MBPS;
384 			break;
385 
386 		case SPEED_800000:
387 			speed = AD_LINK_SPEED_800000MBPS;
388 			break;
389 
390 		case SPEED_1600000:
391 			speed = AD_LINK_SPEED_1600000MBPS;
392 			break;
393 
394 		default:
395 			/* unknown speed value from ethtool. shouldn't happen */
396 			if (slave->speed != SPEED_UNKNOWN)
397 				pr_err_once("%s: (slave %s): unknown ethtool speed (%d) for port %d (set it to 0)\n",
398 					    slave->bond->dev->name,
399 					    slave->dev->name, slave->speed,
400 					    port->actor_port_number);
401 			speed = 0;
402 			break;
403 		}
404 	}
405 
406 	slave_dbg(slave->bond->dev, slave->dev, "Port %d Received link speed %d update from adapter\n",
407 		  port->actor_port_number, speed);
408 	return speed;
409 }
410 
411 /**
412  * __get_duplex - get a port's duplex
413  * @port: the port we're looking at
414  *
415  * Return @port's duplex in 802.3ad bitmask format. i.e.:
416  *     0x01 if in full duplex
417  *     0x00 otherwise
418  */
419 static u8 __get_duplex(struct port *port)
420 {
421 	struct slave *slave = port->slave;
422 	u8 retval = 0x0;
423 
424 	/* handling a special case: when the configuration starts with
425 	 * link down, it sets the duplex to 0.
426 	 */
427 	if (slave->link == BOND_LINK_UP) {
428 		switch (slave->duplex) {
429 		case DUPLEX_FULL:
430 			retval = 0x1;
431 			slave_dbg(slave->bond->dev, slave->dev, "Port %d Received status full duplex update from adapter\n",
432 				  port->actor_port_number);
433 			break;
434 		case DUPLEX_HALF:
435 		default:
436 			retval = 0x0;
437 			slave_dbg(slave->bond->dev, slave->dev, "Port %d Received status NOT full duplex update from adapter\n",
438 				  port->actor_port_number);
439 			break;
440 		}
441 	}
442 	return retval;
443 }
444 
445 static void __ad_actor_update_port(struct port *port)
446 {
447 	const struct bonding *bond = bond_get_bond_by_slave(port->slave);
448 
449 	port->actor_system = BOND_AD_INFO(bond).system.sys_mac_addr;
450 	port->actor_system_priority = BOND_AD_INFO(bond).system.sys_priority;
451 	port->actor_port_priority = SLAVE_AD_INFO(port->slave)->port_priority;
452 }
453 
454 /* Conversions */
455 
456 /**
457  * __ad_timer_to_ticks - convert a given timer type to AD module ticks
458  * @timer_type:	which timer to operate
459  * @par: timer parameter. see below
460  *
461  * If @timer_type is %current_while_timer, @par indicates long/short timer.
462  * If @timer_type is %periodic_timer, @par is one of %FAST_PERIODIC_TIME,
463  *						     %SLOW_PERIODIC_TIME.
464  */
465 static u16 __ad_timer_to_ticks(u16 timer_type, u16 par)
466 {
467 	u16 retval = 0; /* to silence the compiler */
468 
469 	switch (timer_type) {
470 	case AD_CURRENT_WHILE_TIMER:	/* for rx machine usage */
471 		if (par)
472 			retval = (AD_SHORT_TIMEOUT_TIME*ad_ticks_per_sec);
473 		else
474 			retval = (AD_LONG_TIMEOUT_TIME*ad_ticks_per_sec);
475 		break;
476 	case AD_ACTOR_CHURN_TIMER:	/* for local churn machine */
477 		retval = (AD_CHURN_DETECTION_TIME*ad_ticks_per_sec);
478 		break;
479 	case AD_PERIODIC_TIMER:		/* for periodic machine */
480 		retval = (par*ad_ticks_per_sec); /* long timeout */
481 		break;
482 	case AD_PARTNER_CHURN_TIMER:	/* for remote churn machine */
483 		retval = (AD_CHURN_DETECTION_TIME*ad_ticks_per_sec);
484 		break;
485 	case AD_WAIT_WHILE_TIMER:	/* for selection machine */
486 		retval = (AD_AGGREGATE_WAIT_TIME*ad_ticks_per_sec);
487 		break;
488 	}
489 
490 	return retval;
491 }
492 
493 
494 /* ================= ad_rx_machine helper functions ================== */
495 
496 /**
497  * __choose_matched - update a port's matched variable from a received lacpdu
498  * @lacpdu: the lacpdu we've received
499  * @port: the port we're looking at
500  *
501  * Update the value of the matched variable, using parameter values from a
502  * newly received lacpdu. Parameter values for the partner carried in the
503  * received PDU are compared with the corresponding operational parameter
504  * values for the actor. Matched is set to TRUE if all of these parameters
505  * match and the PDU parameter partner_state.aggregation has the same value as
506  * actor_oper_port_state.aggregation and lacp will actively maintain the link
507  * in the aggregation. Matched is also set to TRUE if the value of
508  * actor_state.aggregation in the received PDU is set to FALSE, i.e., indicates
509  * an individual link and lacp will actively maintain the link. Otherwise,
510  * matched is set to FALSE. LACP is considered to be actively maintaining the
511  * link if either the PDU's actor_state.lacp_activity variable is TRUE or both
512  * the actor's actor_oper_port_state.lacp_activity and the PDU's
513  * partner_state.lacp_activity variables are TRUE.
514  *
515  * Note: the AD_PORT_MATCHED "variable" is not specified by 802.3ad; it is
516  * used here to implement the language from 802.3ad 43.4.9 that requires
517  * recordPDU to "match" the LACPDU parameters to the stored values.
518  */
519 static void __choose_matched(struct lacpdu *lacpdu, struct port *port)
520 {
521 	/* check if all parameters are alike
522 	 * or this is individual link(aggregation == FALSE)
523 	 * then update the state machine Matched variable.
524 	 */
525 	if (((ntohs(lacpdu->partner_port) == port->actor_port_number) &&
526 	     (ntohs(lacpdu->partner_port_priority) == port->actor_port_priority) &&
527 	     MAC_ADDRESS_EQUAL(&(lacpdu->partner_system), &(port->actor_system)) &&
528 	     (ntohs(lacpdu->partner_system_priority) == port->actor_system_priority) &&
529 	     (ntohs(lacpdu->partner_key) == port->actor_oper_port_key) &&
530 	     ((lacpdu->partner_state & LACP_STATE_AGGREGATION) == (port->actor_oper_port_state & LACP_STATE_AGGREGATION))) ||
531 	    ((lacpdu->actor_state & LACP_STATE_AGGREGATION) == 0)
532 		) {
533 		port->sm_vars |= AD_PORT_MATCHED;
534 	} else {
535 		port->sm_vars &= ~AD_PORT_MATCHED;
536 	}
537 }
538 
539 /**
540  * __record_pdu - record parameters from a received lacpdu
541  * @lacpdu: the lacpdu we've received
542  * @port: the port we're looking at
543  *
544  * Record the parameter values for the Actor carried in a received lacpdu as
545  * the current partner operational parameter values and sets
546  * actor_oper_port_state.defaulted to FALSE.
547  */
548 static void __record_pdu(struct lacpdu *lacpdu, struct port *port)
549 {
550 	if (lacpdu && port) {
551 		struct port_params *partner = &port->partner_oper;
552 
553 		__choose_matched(lacpdu, port);
554 		/* record the new parameter values for the partner
555 		 * operational
556 		 */
557 		partner->port_number = ntohs(lacpdu->actor_port);
558 		partner->port_priority = ntohs(lacpdu->actor_port_priority);
559 		partner->system = lacpdu->actor_system;
560 		partner->system_priority = ntohs(lacpdu->actor_system_priority);
561 		partner->key = ntohs(lacpdu->actor_key);
562 		partner->port_state = lacpdu->actor_state;
563 
564 		/* set actor_oper_port_state.defaulted to FALSE */
565 		port->actor_oper_port_state &= ~LACP_STATE_DEFAULTED;
566 
567 		/* set the partner sync. to on if the partner is sync,
568 		 * and the port is matched
569 		 */
570 		if ((port->sm_vars & AD_PORT_MATCHED) &&
571 		    (lacpdu->actor_state & LACP_STATE_SYNCHRONIZATION)) {
572 			partner->port_state |= LACP_STATE_SYNCHRONIZATION;
573 			slave_dbg(port->slave->bond->dev, port->slave->dev,
574 				  "partner sync=1\n");
575 		} else {
576 			partner->port_state &= ~LACP_STATE_SYNCHRONIZATION;
577 			slave_dbg(port->slave->bond->dev, port->slave->dev,
578 				  "partner sync=0\n");
579 		}
580 	}
581 }
582 
583 /**
584  * __record_default - record default parameters
585  * @port: the port we're looking at
586  *
587  * This function records the default parameter values for the partner carried
588  * in the Partner Admin parameters as the current partner operational parameter
589  * values and sets actor_oper_port_state.defaulted to TRUE.
590  */
591 static void __record_default(struct port *port)
592 {
593 	if (port) {
594 		/* record the partner admin parameters */
595 		memcpy(&port->partner_oper, &port->partner_admin,
596 		       sizeof(struct port_params));
597 
598 		/* set actor_oper_port_state.defaulted to true */
599 		port->actor_oper_port_state |= LACP_STATE_DEFAULTED;
600 	}
601 }
602 
603 /**
604  * __update_selected - update a port's Selected variable from a received lacpdu
605  * @lacpdu: the lacpdu we've received
606  * @port: the port we're looking at
607  *
608  * Update the value of the selected variable, using parameter values from a
609  * newly received lacpdu. The parameter values for the Actor carried in the
610  * received PDU are compared with the corresponding operational parameter
611  * values for the ports partner. If one or more of the comparisons shows that
612  * the value(s) received in the PDU differ from the current operational values,
613  * then selected is set to FALSE and actor_oper_port_state.synchronization is
614  * set to out_of_sync. Otherwise, selected remains unchanged.
615  */
616 static void __update_selected(struct lacpdu *lacpdu, struct port *port)
617 {
618 	if (lacpdu && port) {
619 		const struct port_params *partner = &port->partner_oper;
620 
621 		/* check if any parameter is different then
622 		 * update the state machine selected variable.
623 		 */
624 		if (ntohs(lacpdu->actor_port) != partner->port_number ||
625 		    ntohs(lacpdu->actor_port_priority) != partner->port_priority ||
626 		    !MAC_ADDRESS_EQUAL(&lacpdu->actor_system, &partner->system) ||
627 		    ntohs(lacpdu->actor_system_priority) != partner->system_priority ||
628 		    ntohs(lacpdu->actor_key) != partner->key ||
629 		    (lacpdu->actor_state & LACP_STATE_AGGREGATION) != (partner->port_state & LACP_STATE_AGGREGATION)) {
630 			port->sm_vars &= ~AD_PORT_SELECTED;
631 		}
632 	}
633 }
634 
635 /**
636  * __update_default_selected - update a port's Selected variable from Partner
637  * @port: the port we're looking at
638  *
639  * This function updates the value of the selected variable, using the partner
640  * administrative parameter values. The administrative values are compared with
641  * the corresponding operational parameter values for the partner. If one or
642  * more of the comparisons shows that the administrative value(s) differ from
643  * the current operational values, then Selected is set to FALSE and
644  * actor_oper_port_state.synchronization is set to OUT_OF_SYNC. Otherwise,
645  * Selected remains unchanged.
646  */
647 static void __update_default_selected(struct port *port)
648 {
649 	if (port) {
650 		const struct port_params *admin = &port->partner_admin;
651 		const struct port_params *oper = &port->partner_oper;
652 
653 		/* check if any parameter is different then
654 		 * update the state machine selected variable.
655 		 */
656 		if (admin->port_number != oper->port_number ||
657 		    admin->port_priority != oper->port_priority ||
658 		    !MAC_ADDRESS_EQUAL(&admin->system, &oper->system) ||
659 		    admin->system_priority != oper->system_priority ||
660 		    admin->key != oper->key ||
661 		    (admin->port_state & LACP_STATE_AGGREGATION)
662 			!= (oper->port_state & LACP_STATE_AGGREGATION)) {
663 			port->sm_vars &= ~AD_PORT_SELECTED;
664 		}
665 	}
666 }
667 
668 /**
669  * __update_ntt - update a port's ntt variable from a received lacpdu
670  * @lacpdu: the lacpdu we've received
671  * @port: the port we're looking at
672  *
673  * Updates the value of the ntt variable, using parameter values from a newly
674  * received lacpdu. The parameter values for the partner carried in the
675  * received PDU are compared with the corresponding operational parameter
676  * values for the Actor. If one or more of the comparisons shows that the
677  * value(s) received in the PDU differ from the current operational values,
678  * then ntt is set to TRUE. Otherwise, ntt remains unchanged.
679  */
680 static void __update_ntt(struct lacpdu *lacpdu, struct port *port)
681 {
682 	/* validate lacpdu and port */
683 	if (lacpdu && port) {
684 		/* check if any parameter is different then
685 		 * update the port->ntt.
686 		 */
687 		if ((ntohs(lacpdu->partner_port) != port->actor_port_number) ||
688 		    (ntohs(lacpdu->partner_port_priority) != port->actor_port_priority) ||
689 		    !MAC_ADDRESS_EQUAL(&(lacpdu->partner_system), &(port->actor_system)) ||
690 		    (ntohs(lacpdu->partner_system_priority) != port->actor_system_priority) ||
691 		    (ntohs(lacpdu->partner_key) != port->actor_oper_port_key) ||
692 		    ((lacpdu->partner_state & LACP_STATE_LACP_ACTIVITY) != (port->actor_oper_port_state & LACP_STATE_LACP_ACTIVITY)) ||
693 		    ((lacpdu->partner_state & LACP_STATE_LACP_TIMEOUT) != (port->actor_oper_port_state & LACP_STATE_LACP_TIMEOUT)) ||
694 		    ((lacpdu->partner_state & LACP_STATE_SYNCHRONIZATION) != (port->actor_oper_port_state & LACP_STATE_SYNCHRONIZATION)) ||
695 		    ((lacpdu->partner_state & LACP_STATE_AGGREGATION) != (port->actor_oper_port_state & LACP_STATE_AGGREGATION))
696 		   ) {
697 			port->ntt = true;
698 		}
699 	}
700 }
701 
702 /**
703  * __agg_ports_are_ready - check if all ports in an aggregator are ready
704  * @aggregator: the aggregator we're looking at
705  *
706  */
707 static int __agg_ports_are_ready(struct aggregator *aggregator)
708 {
709 	struct port *port;
710 	int retval = 1;
711 
712 	if (aggregator) {
713 		/* scan all ports in this aggregator to verfy if they are
714 		 * all ready.
715 		 */
716 		for (port = aggregator->lag_ports;
717 		     port;
718 		     port = port->next_port_in_aggregator) {
719 			if (!(port->sm_vars & AD_PORT_READY_N)) {
720 				retval = 0;
721 				break;
722 			}
723 		}
724 	}
725 
726 	return retval;
727 }
728 
729 /**
730  * __set_agg_ports_ready - set value of Ready bit in all ports of an aggregator
731  * @aggregator: the aggregator we're looking at
732  * @val: Should the ports' ready bit be set on or off
733  *
734  */
735 static void __set_agg_ports_ready(struct aggregator *aggregator, int val)
736 {
737 	struct port *port;
738 
739 	for (port = aggregator->lag_ports; port;
740 	     port = port->next_port_in_aggregator) {
741 		if (val)
742 			port->sm_vars |= AD_PORT_READY;
743 		else
744 			port->sm_vars &= ~AD_PORT_READY;
745 	}
746 }
747 
748 static int __agg_active_ports(struct aggregator *agg)
749 {
750 	struct port *port;
751 	int active = 0;
752 
753 	for (port = agg->lag_ports; port;
754 	     port = port->next_port_in_aggregator) {
755 		if (port->is_enabled)
756 			active++;
757 	}
758 
759 	return active;
760 }
761 
762 static unsigned int __agg_ports_priority(const struct aggregator *agg)
763 {
764 	struct port *port = agg->lag_ports;
765 	unsigned int prio = 0;
766 
767 	for (; port; port = port->next_port_in_aggregator)
768 		if (port->is_enabled)
769 			prio += port->actor_port_priority;
770 
771 	return prio;
772 }
773 
774 /**
775  * __get_agg_bandwidth - get the total bandwidth of an aggregator
776  * @aggregator: the aggregator we're looking at
777  *
778  */
779 static u32 __get_agg_bandwidth(struct aggregator *aggregator)
780 {
781 	int nports = __agg_active_ports(aggregator);
782 	u32 bandwidth = 0;
783 
784 	if (nports) {
785 		switch (__get_link_speed(aggregator->lag_ports)) {
786 		case AD_LINK_SPEED_1MBPS:
787 			bandwidth = nports;
788 			break;
789 		case AD_LINK_SPEED_10MBPS:
790 			bandwidth = nports * 10;
791 			break;
792 		case AD_LINK_SPEED_100MBPS:
793 			bandwidth = nports * 100;
794 			break;
795 		case AD_LINK_SPEED_1000MBPS:
796 			bandwidth = nports * 1000;
797 			break;
798 		case AD_LINK_SPEED_2500MBPS:
799 			bandwidth = nports * 2500;
800 			break;
801 		case AD_LINK_SPEED_5000MBPS:
802 			bandwidth = nports * 5000;
803 			break;
804 		case AD_LINK_SPEED_10000MBPS:
805 			bandwidth = nports * 10000;
806 			break;
807 		case AD_LINK_SPEED_14000MBPS:
808 			bandwidth = nports * 14000;
809 			break;
810 		case AD_LINK_SPEED_20000MBPS:
811 			bandwidth = nports * 20000;
812 			break;
813 		case AD_LINK_SPEED_25000MBPS:
814 			bandwidth = nports * 25000;
815 			break;
816 		case AD_LINK_SPEED_40000MBPS:
817 			bandwidth = nports * 40000;
818 			break;
819 		case AD_LINK_SPEED_50000MBPS:
820 			bandwidth = nports * 50000;
821 			break;
822 		case AD_LINK_SPEED_56000MBPS:
823 			bandwidth = nports * 56000;
824 			break;
825 		case AD_LINK_SPEED_80000MBPS:
826 			bandwidth = nports * 80000;
827 			break;
828 		case AD_LINK_SPEED_100000MBPS:
829 			bandwidth = nports * 100000;
830 			break;
831 		case AD_LINK_SPEED_200000MBPS:
832 			bandwidth = nports * 200000;
833 			break;
834 		case AD_LINK_SPEED_400000MBPS:
835 			bandwidth = nports * 400000;
836 			break;
837 		case AD_LINK_SPEED_800000MBPS:
838 			bandwidth = nports * 800000;
839 			break;
840 		case AD_LINK_SPEED_1600000MBPS:
841 			bandwidth = nports * 1600000;
842 			break;
843 		default:
844 			bandwidth = 0; /* to silence the compiler */
845 		}
846 	}
847 	return bandwidth;
848 }
849 
850 /**
851  * __get_active_agg - get the current active aggregator
852  * @aggregator: the aggregator we're looking at
853  *
854  * Caller must hold RCU lock.
855  */
856 static struct aggregator *__get_active_agg(struct aggregator *aggregator)
857 {
858 	struct bonding *bond = aggregator->slave->bond;
859 	struct list_head *iter;
860 	struct slave *slave;
861 
862 	bond_for_each_slave_rcu(bond, slave, iter)
863 		if (SLAVE_AD_INFO(slave)->aggregator.is_active)
864 			return &(SLAVE_AD_INFO(slave)->aggregator);
865 
866 	return NULL;
867 }
868 
869 /**
870  * __update_lacpdu_from_port - update a port's lacpdu fields
871  * @port: the port we're looking at
872  */
873 static inline void __update_lacpdu_from_port(struct port *port)
874 {
875 	struct lacpdu *lacpdu = &port->lacpdu;
876 	const struct port_params *partner = &port->partner_oper;
877 
878 	/* update current actual Actor parameters
879 	 * lacpdu->subtype                   initialized
880 	 * lacpdu->version_number            initialized
881 	 * lacpdu->tlv_type_actor_info       initialized
882 	 * lacpdu->actor_information_length  initialized
883 	 */
884 
885 	lacpdu->actor_system_priority = htons(port->actor_system_priority);
886 	lacpdu->actor_system = port->actor_system;
887 	lacpdu->actor_key = htons(port->actor_oper_port_key);
888 	lacpdu->actor_port_priority = htons(port->actor_port_priority);
889 	lacpdu->actor_port = htons(port->actor_port_number);
890 	lacpdu->actor_state = port->actor_oper_port_state;
891 	slave_dbg(port->slave->bond->dev, port->slave->dev,
892 		  "update lacpdu: actor port state %x\n",
893 		  port->actor_oper_port_state);
894 
895 	/* lacpdu->reserved_3_1              initialized
896 	 * lacpdu->tlv_type_partner_info     initialized
897 	 * lacpdu->partner_information_length initialized
898 	 */
899 
900 	lacpdu->partner_system_priority = htons(partner->system_priority);
901 	lacpdu->partner_system = partner->system;
902 	lacpdu->partner_key = htons(partner->key);
903 	lacpdu->partner_port_priority = htons(partner->port_priority);
904 	lacpdu->partner_port = htons(partner->port_number);
905 	lacpdu->partner_state = partner->port_state;
906 
907 	/* lacpdu->reserved_3_2              initialized
908 	 * lacpdu->tlv_type_collector_info   initialized
909 	 * lacpdu->collector_information_length initialized
910 	 * collector_max_delay                initialized
911 	 * reserved_12[12]                   initialized
912 	 * tlv_type_terminator               initialized
913 	 * terminator_length                 initialized
914 	 * reserved_50[50]                   initialized
915 	 */
916 }
917 
918 /* ================= main 802.3ad protocol code ========================= */
919 
920 /**
921  * ad_lacpdu_send - send out a lacpdu packet on a given port
922  * @port: the port we're looking at
923  *
924  * Returns:   0 on success
925  *          < 0 on error
926  */
927 static int ad_lacpdu_send(struct port *port)
928 {
929 	struct slave *slave = port->slave;
930 	struct sk_buff *skb;
931 	struct lacpdu_header *lacpdu_header;
932 	int length = sizeof(struct lacpdu_header);
933 
934 	skb = dev_alloc_skb(length);
935 	if (!skb)
936 		return -ENOMEM;
937 
938 	atomic64_inc(&SLAVE_AD_INFO(slave)->stats.lacpdu_tx);
939 	atomic64_inc(&BOND_AD_INFO(slave->bond).stats.lacpdu_tx);
940 
941 	skb->dev = slave->dev;
942 	skb_reset_mac_header(skb);
943 	skb->network_header = skb->mac_header + ETH_HLEN;
944 	skb->protocol = PKT_TYPE_LACPDU;
945 	skb->priority = TC_PRIO_CONTROL;
946 
947 	lacpdu_header = skb_put(skb, length);
948 
949 	ether_addr_copy(lacpdu_header->hdr.h_dest, lacpdu_mcast_addr);
950 	/* Note: source address is set to be the member's PERMANENT address,
951 	 * because we use it to identify loopback lacpdus in receive.
952 	 */
953 	ether_addr_copy(lacpdu_header->hdr.h_source, slave->perm_hwaddr);
954 	lacpdu_header->hdr.h_proto = PKT_TYPE_LACPDU;
955 
956 	lacpdu_header->lacpdu = port->lacpdu;
957 
958 	dev_queue_xmit(skb);
959 
960 	return 0;
961 }
962 
963 /**
964  * ad_marker_send - send marker information/response on a given port
965  * @port: the port we're looking at
966  * @marker: marker data to send
967  *
968  * Returns:   0 on success
969  *          < 0 on error
970  */
971 static int ad_marker_send(struct port *port, struct bond_marker *marker)
972 {
973 	struct slave *slave = port->slave;
974 	struct sk_buff *skb;
975 	struct bond_marker_header *marker_header;
976 	int length = sizeof(struct bond_marker_header);
977 
978 	skb = dev_alloc_skb(length + 16);
979 	if (!skb)
980 		return -ENOMEM;
981 
982 	switch (marker->tlv_type) {
983 	case AD_MARKER_INFORMATION_SUBTYPE:
984 		atomic64_inc(&SLAVE_AD_INFO(slave)->stats.marker_tx);
985 		atomic64_inc(&BOND_AD_INFO(slave->bond).stats.marker_tx);
986 		break;
987 	case AD_MARKER_RESPONSE_SUBTYPE:
988 		atomic64_inc(&SLAVE_AD_INFO(slave)->stats.marker_resp_tx);
989 		atomic64_inc(&BOND_AD_INFO(slave->bond).stats.marker_resp_tx);
990 		break;
991 	}
992 
993 	skb_reserve(skb, 16);
994 
995 	skb->dev = slave->dev;
996 	skb_reset_mac_header(skb);
997 	skb->network_header = skb->mac_header + ETH_HLEN;
998 	skb->protocol = PKT_TYPE_LACPDU;
999 
1000 	marker_header = skb_put(skb, length);
1001 
1002 	ether_addr_copy(marker_header->hdr.h_dest, lacpdu_mcast_addr);
1003 	/* Note: source address is set to be the member's PERMANENT address,
1004 	 * because we use it to identify loopback MARKERs in receive.
1005 	 */
1006 	ether_addr_copy(marker_header->hdr.h_source, slave->perm_hwaddr);
1007 	marker_header->hdr.h_proto = PKT_TYPE_LACPDU;
1008 
1009 	marker_header->marker = *marker;
1010 
1011 	dev_queue_xmit(skb);
1012 
1013 	return 0;
1014 }
1015 
1016 static void ad_cond_set_peer_notif(struct port *port)
1017 {
1018 	struct bonding *bond = port->slave->bond;
1019 
1020 	if (bond->params.broadcast_neighbor)
1021 		bond_peer_notify_work_rearm(bond, 0);
1022 }
1023 
1024 /**
1025  * ad_mux_machine - handle a port's mux state machine
1026  * @port: the port we're looking at
1027  * @update_slave_arr: Does slave array need update?
1028  */
1029 static void ad_mux_machine(struct port *port, bool *update_slave_arr)
1030 {
1031 	struct bonding *bond = __get_bond_by_port(port);
1032 	struct aggregator *aggregator;
1033 	mux_states_t last_state;
1034 
1035 	/* keep current State Machine state to compare later if it was
1036 	 * changed
1037 	 */
1038 	last_state = port->sm_mux_state;
1039 
1040 	aggregator = rcu_dereference(port->aggregator);
1041 	if (port->sm_vars & AD_PORT_BEGIN) {
1042 		port->sm_mux_state = AD_MUX_DETACHED;
1043 	} else {
1044 		switch (port->sm_mux_state) {
1045 		case AD_MUX_DETACHED:
1046 			if ((port->sm_vars & AD_PORT_SELECTED)
1047 			    || (port->sm_vars & AD_PORT_STANDBY))
1048 				/* if SELECTED or STANDBY */
1049 				port->sm_mux_state = AD_MUX_WAITING;
1050 			break;
1051 		case AD_MUX_WAITING:
1052 			/* if SELECTED == FALSE return to DETACH state */
1053 			if (!(port->sm_vars & AD_PORT_SELECTED)) {
1054 				port->sm_vars &= ~AD_PORT_READY_N;
1055 				/* in order to withhold the Selection Logic to
1056 				 * check all ports READY_N value every callback
1057 				 * cycle to update ready variable, we check
1058 				 * READY_N and update READY here
1059 				 */
1060 				__set_agg_ports_ready(aggregator, __agg_ports_are_ready(aggregator));
1061 				port->sm_mux_state = AD_MUX_DETACHED;
1062 				break;
1063 			}
1064 
1065 			/* check if the wait_while_timer expired */
1066 			if (port->sm_mux_timer_counter
1067 			    && !(--port->sm_mux_timer_counter))
1068 				port->sm_vars |= AD_PORT_READY_N;
1069 
1070 			/* in order to withhold the selection logic to check
1071 			 * all ports READY_N value every callback cycle to
1072 			 * update ready variable, we check READY_N and update
1073 			 * READY here
1074 			 */
1075 			__set_agg_ports_ready(aggregator, __agg_ports_are_ready(aggregator));
1076 
1077 			/* if the wait_while_timer expired, and the port is
1078 			 * in READY state, move to ATTACHED state
1079 			 */
1080 			if ((port->sm_vars & AD_PORT_READY)
1081 			    && !port->sm_mux_timer_counter)
1082 				port->sm_mux_state = AD_MUX_ATTACHED;
1083 			break;
1084 		case AD_MUX_ATTACHED:
1085 			/* check also if agg_select_timer expired (so the
1086 			 * edable port will take place only after this timer)
1087 			 */
1088 			if ((port->sm_vars & AD_PORT_SELECTED) &&
1089 			    (port->partner_oper.port_state & LACP_STATE_SYNCHRONIZATION) &&
1090 			    !__check_agg_selection_timer(port)) {
1091 				if (aggregator->is_active) {
1092 					int state = AD_MUX_COLLECTING_DISTRIBUTING;
1093 
1094 					if (!bond->params.coupled_control)
1095 						state = AD_MUX_COLLECTING;
1096 					port->sm_mux_state = state;
1097 				}
1098 			} else if (!(port->sm_vars & AD_PORT_SELECTED) ||
1099 				   (port->sm_vars & AD_PORT_STANDBY)) {
1100 				/* if UNSELECTED or STANDBY */
1101 				port->sm_vars &= ~AD_PORT_READY_N;
1102 				/* in order to withhold the selection logic to
1103 				 * check all ports READY_N value every callback
1104 				 * cycle to update ready variable, we check
1105 				 * READY_N and update READY here
1106 				 */
1107 				__set_agg_ports_ready(aggregator, __agg_ports_are_ready(aggregator));
1108 				port->sm_mux_state = AD_MUX_DETACHED;
1109 			} else if (aggregator->is_active) {
1110 				port->actor_oper_port_state |=
1111 				    LACP_STATE_SYNCHRONIZATION;
1112 			}
1113 			break;
1114 		case AD_MUX_COLLECTING_DISTRIBUTING:
1115 			if (!__port_move_to_attached_state(port)) {
1116 				/* if port state hasn't changed make
1117 				 * sure that a collecting distributing
1118 				 * port in an active aggregator is enabled
1119 				 */
1120 				if (aggregator->is_active &&
1121 				    !__port_is_collecting_distributing(port)) {
1122 					__enable_port(port);
1123 					*update_slave_arr = true;
1124 				}
1125 			}
1126 			break;
1127 		case AD_MUX_COLLECTING:
1128 			if (!__port_move_to_attached_state(port)) {
1129 				if ((port->sm_vars & AD_PORT_SELECTED) &&
1130 				    (port->partner_oper.port_state & LACP_STATE_SYNCHRONIZATION) &&
1131 				    (port->partner_oper.port_state & LACP_STATE_COLLECTING)) {
1132 					port->sm_mux_state = AD_MUX_DISTRIBUTING;
1133 				} else {
1134 					/* If port state hasn't changed, make sure that a collecting
1135 					 * port is enabled for an active aggregator.
1136 					 */
1137 					struct slave *slave = port->slave;
1138 
1139 					if (aggregator->is_active &&
1140 					    bond_is_slave_rx_disabled(slave)) {
1141 						ad_enable_collecting(port);
1142 						*update_slave_arr = true;
1143 					}
1144 				}
1145 			}
1146 			break;
1147 		case AD_MUX_DISTRIBUTING:
1148 			if (!(port->sm_vars & AD_PORT_SELECTED) ||
1149 			    (port->sm_vars & AD_PORT_STANDBY) ||
1150 			    !(port->partner_oper.port_state & LACP_STATE_COLLECTING) ||
1151 			    !(port->partner_oper.port_state & LACP_STATE_SYNCHRONIZATION) ||
1152 			    !(port->actor_oper_port_state & LACP_STATE_SYNCHRONIZATION)) {
1153 				port->sm_mux_state = AD_MUX_COLLECTING;
1154 			} else {
1155 				/* if port state hasn't changed make
1156 				 * sure that a collecting distributing
1157 				 * port in an active aggregator is enabled
1158 				 */
1159 				if (aggregator &&
1160 				    aggregator->is_active &&
1161 				    !__port_is_collecting_distributing(port)) {
1162 					__enable_port(port);
1163 					*update_slave_arr = true;
1164 				}
1165 			}
1166 			break;
1167 		default:
1168 			break;
1169 		}
1170 	}
1171 
1172 	/* check if the state machine was changed */
1173 	if (port->sm_mux_state != last_state) {
1174 		slave_dbg(port->slave->bond->dev, port->slave->dev,
1175 			  "Mux Machine: Port=%d, Last State=%d, Curr State=%d\n",
1176 			  port->actor_port_number,
1177 			  last_state,
1178 			  port->sm_mux_state);
1179 		switch (port->sm_mux_state) {
1180 		case AD_MUX_DETACHED:
1181 			port->actor_oper_port_state &= ~LACP_STATE_SYNCHRONIZATION;
1182 			ad_disable_collecting_distributing(port,
1183 							   update_slave_arr);
1184 			port->actor_oper_port_state &= ~LACP_STATE_COLLECTING;
1185 			port->actor_oper_port_state &= ~LACP_STATE_DISTRIBUTING;
1186 			port->ntt = true;
1187 			break;
1188 		case AD_MUX_WAITING:
1189 			port->sm_mux_timer_counter = __ad_timer_to_ticks(AD_WAIT_WHILE_TIMER, 0);
1190 			break;
1191 		case AD_MUX_ATTACHED:
1192 			if (aggregator->is_active)
1193 				port->actor_oper_port_state |=
1194 				    LACP_STATE_SYNCHRONIZATION;
1195 			else
1196 				port->actor_oper_port_state &=
1197 				    ~LACP_STATE_SYNCHRONIZATION;
1198 			port->actor_oper_port_state &= ~LACP_STATE_COLLECTING;
1199 			port->actor_oper_port_state &= ~LACP_STATE_DISTRIBUTING;
1200 			ad_disable_collecting_distributing(port,
1201 							   update_slave_arr);
1202 			port->ntt = true;
1203 			break;
1204 		case AD_MUX_COLLECTING_DISTRIBUTING:
1205 			port->actor_oper_port_state |= LACP_STATE_COLLECTING;
1206 			port->actor_oper_port_state |= LACP_STATE_DISTRIBUTING;
1207 			port->actor_oper_port_state |= LACP_STATE_SYNCHRONIZATION;
1208 			ad_enable_collecting_distributing(port,
1209 							  update_slave_arr);
1210 			port->ntt = true;
1211 			break;
1212 		case AD_MUX_COLLECTING:
1213 			port->actor_oper_port_state |= LACP_STATE_COLLECTING;
1214 			port->actor_oper_port_state &= ~LACP_STATE_DISTRIBUTING;
1215 			port->actor_oper_port_state |= LACP_STATE_SYNCHRONIZATION;
1216 			ad_enable_collecting(port);
1217 			ad_disable_distributing(port, update_slave_arr);
1218 			port->ntt = true;
1219 			break;
1220 		case AD_MUX_DISTRIBUTING:
1221 			port->actor_oper_port_state |= LACP_STATE_DISTRIBUTING;
1222 			port->actor_oper_port_state |= LACP_STATE_SYNCHRONIZATION;
1223 			ad_enable_collecting_distributing(port,
1224 							  update_slave_arr);
1225 			break;
1226 		default:
1227 			break;
1228 		}
1229 	}
1230 }
1231 
1232 /**
1233  * ad_rx_machine - handle a port's rx State Machine
1234  * @lacpdu: the lacpdu we've received
1235  * @port: the port we're looking at
1236  *
1237  * If lacpdu arrived, stop previous timer (if exists) and set the next state as
1238  * CURRENT. If timer expired set the state machine in the proper state.
1239  * In other cases, this function checks if we need to switch to other state.
1240  */
1241 static void ad_rx_machine(struct lacpdu *lacpdu, struct port *port)
1242 {
1243 	rx_states_t last_state;
1244 
1245 	/* keep current State Machine state to compare later if it was
1246 	 * changed
1247 	 */
1248 	last_state = port->sm_rx_state;
1249 
1250 	if (lacpdu) {
1251 		atomic64_inc(&SLAVE_AD_INFO(port->slave)->stats.lacpdu_rx);
1252 		atomic64_inc(&BOND_AD_INFO(port->slave->bond).stats.lacpdu_rx);
1253 	}
1254 	/* check if state machine should change state */
1255 
1256 	/* first, check if port was reinitialized */
1257 	if (port->sm_vars & AD_PORT_BEGIN) {
1258 		port->sm_rx_state = AD_RX_INITIALIZE;
1259 		port->sm_vars |= AD_PORT_CHURNED;
1260 	/* check if port is not enabled */
1261 	} else if (!(port->sm_vars & AD_PORT_BEGIN) && !port->is_enabled)
1262 		port->sm_rx_state = AD_RX_PORT_DISABLED;
1263 	/* check if new lacpdu arrived */
1264 	else if (lacpdu && ((port->sm_rx_state == AD_RX_EXPIRED) ||
1265 		 (port->sm_rx_state == AD_RX_DEFAULTED) ||
1266 		 (port->sm_rx_state == AD_RX_CURRENT))) {
1267 		if (port->sm_rx_state != AD_RX_CURRENT)
1268 			port->sm_vars |= AD_PORT_CHURNED;
1269 		port->sm_rx_timer_counter = 0;
1270 		port->sm_rx_state = AD_RX_CURRENT;
1271 	} else {
1272 		/* if timer is on, and if it is expired */
1273 		if (port->sm_rx_timer_counter &&
1274 		    !(--port->sm_rx_timer_counter)) {
1275 			switch (port->sm_rx_state) {
1276 			case AD_RX_EXPIRED:
1277 				port->sm_rx_state = AD_RX_DEFAULTED;
1278 				break;
1279 			case AD_RX_CURRENT:
1280 				port->sm_rx_state = AD_RX_EXPIRED;
1281 				break;
1282 			default:
1283 				break;
1284 			}
1285 		} else {
1286 			/* if no lacpdu arrived and no timer is on */
1287 			switch (port->sm_rx_state) {
1288 			case AD_RX_PORT_DISABLED:
1289 				if (port->is_enabled &&
1290 				    (port->sm_vars & AD_PORT_LACP_ENABLED))
1291 					port->sm_rx_state = AD_RX_EXPIRED;
1292 				else if (port->is_enabled
1293 					 && ((port->sm_vars
1294 					      & AD_PORT_LACP_ENABLED) == 0))
1295 					port->sm_rx_state = AD_RX_LACP_DISABLED;
1296 				break;
1297 			default:
1298 				break;
1299 
1300 			}
1301 		}
1302 	}
1303 
1304 	/* check if the State machine was changed or new lacpdu arrived */
1305 	if ((port->sm_rx_state != last_state) || (lacpdu)) {
1306 		slave_dbg(port->slave->bond->dev, port->slave->dev,
1307 			  "Rx Machine: Port=%d, Last State=%d, Curr State=%d\n",
1308 			  port->actor_port_number,
1309 			  last_state,
1310 			  port->sm_rx_state);
1311 		switch (port->sm_rx_state) {
1312 		case AD_RX_INITIALIZE:
1313 			if (!(port->actor_oper_port_key & AD_DUPLEX_KEY_MASKS))
1314 				port->sm_vars &= ~AD_PORT_LACP_ENABLED;
1315 			else
1316 				port->sm_vars |= AD_PORT_LACP_ENABLED;
1317 			port->sm_vars &= ~AD_PORT_SELECTED;
1318 			__record_default(port);
1319 			port->actor_oper_port_state &= ~LACP_STATE_EXPIRED;
1320 			port->sm_rx_state = AD_RX_PORT_DISABLED;
1321 
1322 			fallthrough;
1323 		case AD_RX_PORT_DISABLED:
1324 			port->sm_vars &= ~AD_PORT_MATCHED;
1325 			break;
1326 		case AD_RX_LACP_DISABLED:
1327 			port->sm_vars &= ~AD_PORT_SELECTED;
1328 			__record_default(port);
1329 			port->partner_oper.port_state &= ~LACP_STATE_AGGREGATION;
1330 			port->sm_vars |= AD_PORT_MATCHED;
1331 			port->actor_oper_port_state &= ~LACP_STATE_EXPIRED;
1332 			break;
1333 		case AD_RX_EXPIRED:
1334 			/* Reset of the Synchronization flag (Standard 43.4.12)
1335 			 * This reset cause to disable this port in the
1336 			 * COLLECTING_DISTRIBUTING state of the mux machine in
1337 			 * case of EXPIRED even if LINK_DOWN didn't arrive for
1338 			 * the port.
1339 			 */
1340 			port->sm_vars &= ~AD_PORT_MATCHED;
1341 			/* Based on IEEE 8021AX-2014, Figure 6-18 - Receive
1342 			 * machine state diagram, the statue should be
1343 			 * Partner_Oper_Port_State.Synchronization = FALSE;
1344 			 * Partner_Oper_Port_State.LACP_Timeout = Short Timeout;
1345 			 * start current_while_timer(Short Timeout);
1346 			 * Actor_Oper_Port_State.Expired = TRUE;
1347 			 */
1348 			port->partner_oper.port_state &= ~LACP_STATE_SYNCHRONIZATION;
1349 			port->partner_oper.port_state |= LACP_STATE_LACP_TIMEOUT;
1350 			port->sm_rx_timer_counter = __ad_timer_to_ticks(AD_CURRENT_WHILE_TIMER, (u16)(AD_SHORT_TIMEOUT));
1351 			port->actor_oper_port_state |= LACP_STATE_EXPIRED;
1352 			port->sm_vars |= AD_PORT_CHURNED;
1353 			break;
1354 		case AD_RX_DEFAULTED:
1355 			__update_default_selected(port);
1356 			__record_default(port);
1357 			port->sm_vars |= AD_PORT_MATCHED;
1358 			port->actor_oper_port_state &= ~LACP_STATE_EXPIRED;
1359 			break;
1360 		case AD_RX_CURRENT:
1361 			/* detect loopback situation */
1362 			if (MAC_ADDRESS_EQUAL(&(lacpdu->actor_system),
1363 					      &(port->actor_system))) {
1364 				slave_err(port->slave->bond->dev, port->slave->dev, "An illegal loopback occurred on slave\n"
1365 					  "Check the configuration to verify that all adapters are connected to 802.3ad compliant switch ports\n");
1366 				return;
1367 			}
1368 			__update_selected(lacpdu, port);
1369 			__update_ntt(lacpdu, port);
1370 			__record_pdu(lacpdu, port);
1371 			port->sm_rx_timer_counter = __ad_timer_to_ticks(AD_CURRENT_WHILE_TIMER, (u16)(port->actor_oper_port_state & LACP_STATE_LACP_TIMEOUT));
1372 			port->actor_oper_port_state &= ~LACP_STATE_EXPIRED;
1373 			break;
1374 		default:
1375 			break;
1376 		}
1377 	}
1378 }
1379 
1380 /**
1381  * ad_churn_machine - handle port churn's state machine
1382  * @port: the port we're looking at
1383  *
1384  */
1385 static void ad_churn_machine(struct port *port)
1386 {
1387 	if (port->sm_vars & AD_PORT_CHURNED) {
1388 		port->sm_vars &= ~AD_PORT_CHURNED;
1389 		WRITE_ONCE(port->sm_churn_actor_state, AD_CHURN_MONITOR);
1390 		WRITE_ONCE(port->sm_churn_partner_state, AD_CHURN_MONITOR);
1391 		port->sm_churn_actor_timer_counter =
1392 			__ad_timer_to_ticks(AD_ACTOR_CHURN_TIMER, 0);
1393 		port->sm_churn_partner_timer_counter =
1394 			 __ad_timer_to_ticks(AD_PARTNER_CHURN_TIMER, 0);
1395 		return;
1396 	}
1397 	if (port->sm_churn_actor_timer_counter &&
1398 	    !(--port->sm_churn_actor_timer_counter) &&
1399 	    port->sm_churn_actor_state == AD_CHURN_MONITOR) {
1400 		if (port->actor_oper_port_state & LACP_STATE_SYNCHRONIZATION) {
1401 			WRITE_ONCE(port->sm_churn_actor_state, AD_NO_CHURN);
1402 		} else {
1403 			WRITE_ONCE(port->churn_actor_count,
1404 				   port->churn_actor_count + 1);
1405 			WRITE_ONCE(port->sm_churn_actor_state, AD_CHURN);
1406 		}
1407 	}
1408 	if (port->sm_churn_partner_timer_counter &&
1409 	    !(--port->sm_churn_partner_timer_counter) &&
1410 	    port->sm_churn_partner_state == AD_CHURN_MONITOR) {
1411 		if (port->partner_oper.port_state & LACP_STATE_SYNCHRONIZATION) {
1412 			WRITE_ONCE(port->sm_churn_partner_state, AD_NO_CHURN);
1413 		} else {
1414 			WRITE_ONCE(port->churn_partner_count,
1415 				   port->churn_partner_count + 1);
1416 			WRITE_ONCE(port->sm_churn_partner_state, AD_CHURN);
1417 		}
1418 	}
1419 }
1420 
1421 /**
1422  * ad_tx_machine - handle a port's tx state machine
1423  * @port: the port we're looking at
1424  */
1425 static void ad_tx_machine(struct port *port)
1426 {
1427 	/* check if tx timer expired, to verify that we do not send more than
1428 	 * 3 packets per second
1429 	 */
1430 	if (!port->sm_tx_timer_counter || !(--port->sm_tx_timer_counter)) {
1431 		/* check if there is something to send */
1432 		if (port->ntt && (port->sm_vars & AD_PORT_LACP_ENABLED)) {
1433 			__update_lacpdu_from_port(port);
1434 
1435 			if (ad_lacpdu_send(port) >= 0) {
1436 				slave_dbg(port->slave->bond->dev,
1437 					  port->slave->dev,
1438 					  "Sent LACPDU on port %d\n",
1439 					  port->actor_port_number);
1440 
1441 				/* mark ntt as false, so it will not be sent
1442 				 * again until demanded
1443 				 */
1444 				port->ntt = false;
1445 
1446 				/* restart tx timer(to verify that we will not
1447 				 * exceed AD_MAX_TX_IN_SECOND
1448 				 */
1449 				port->sm_tx_timer_counter = ad_ticks_per_sec / AD_MAX_TX_IN_SECOND;
1450 			}
1451 		}
1452 	}
1453 }
1454 
1455 /**
1456  * ad_periodic_machine - handle a port's periodic state machine
1457  * @port: the port we're looking at
1458  *
1459  * Turn ntt flag on priodically to perform periodic transmission of lacpdu's.
1460  */
1461 static void ad_periodic_machine(struct port *port)
1462 {
1463 	periodic_states_t last_state;
1464 
1465 	/* keep current state machine state to compare later if it was changed */
1466 	last_state = port->sm_periodic_state;
1467 
1468 	/* check if port was reinitialized */
1469 	if (((port->sm_vars & AD_PORT_BEGIN) || !(port->sm_vars & AD_PORT_LACP_ENABLED) || !port->is_enabled) ||
1470 	    (!(port->actor_oper_port_state & LACP_STATE_LACP_ACTIVITY) && !(port->partner_oper.port_state & LACP_STATE_LACP_ACTIVITY))) {
1471 		port->sm_periodic_state = AD_NO_PERIODIC;
1472 	}
1473 	/* check if state machine should change state */
1474 	else if (port->sm_periodic_timer_counter) {
1475 		/* check if periodic state machine expired */
1476 		if (!(--port->sm_periodic_timer_counter)) {
1477 			/* if expired then do tx */
1478 			port->sm_periodic_state = AD_PERIODIC_TX;
1479 		} else {
1480 			/* If not expired, check if there is some new timeout
1481 			 * parameter from the partner state
1482 			 */
1483 			switch (port->sm_periodic_state) {
1484 			case AD_FAST_PERIODIC:
1485 				if (!(port->partner_oper.port_state
1486 				      & LACP_STATE_LACP_TIMEOUT))
1487 					port->sm_periodic_state = AD_SLOW_PERIODIC;
1488 				break;
1489 			case AD_SLOW_PERIODIC:
1490 				if ((port->partner_oper.port_state & LACP_STATE_LACP_TIMEOUT)) {
1491 					port->sm_periodic_timer_counter = 0;
1492 					port->sm_periodic_state = AD_PERIODIC_TX;
1493 				}
1494 				break;
1495 			default:
1496 				break;
1497 			}
1498 		}
1499 	} else {
1500 		switch (port->sm_periodic_state) {
1501 		case AD_NO_PERIODIC:
1502 			port->sm_periodic_state = AD_FAST_PERIODIC;
1503 			break;
1504 		case AD_PERIODIC_TX:
1505 			if (!(port->partner_oper.port_state &
1506 			    LACP_STATE_LACP_TIMEOUT))
1507 				port->sm_periodic_state = AD_SLOW_PERIODIC;
1508 			else
1509 				port->sm_periodic_state = AD_FAST_PERIODIC;
1510 			break;
1511 		default:
1512 			break;
1513 		}
1514 	}
1515 
1516 	/* check if the state machine was changed */
1517 	if (port->sm_periodic_state != last_state) {
1518 		slave_dbg(port->slave->bond->dev, port->slave->dev,
1519 			  "Periodic Machine: Port=%d, Last State=%d, Curr State=%d\n",
1520 			  port->actor_port_number, last_state,
1521 			  port->sm_periodic_state);
1522 		switch (port->sm_periodic_state) {
1523 		case AD_NO_PERIODIC:
1524 			port->sm_periodic_timer_counter = 0;
1525 			break;
1526 		case AD_FAST_PERIODIC:
1527 			/* decrement 1 tick we lost in the PERIODIC_TX cycle */
1528 			port->sm_periodic_timer_counter = __ad_timer_to_ticks(AD_PERIODIC_TIMER, (u16)(AD_FAST_PERIODIC_TIME))-1;
1529 			break;
1530 		case AD_SLOW_PERIODIC:
1531 			/* decrement 1 tick we lost in the PERIODIC_TX cycle */
1532 			port->sm_periodic_timer_counter = __ad_timer_to_ticks(AD_PERIODIC_TIMER, (u16)(AD_SLOW_PERIODIC_TIME))-1;
1533 			break;
1534 		case AD_PERIODIC_TX:
1535 			port->ntt = true;
1536 			break;
1537 		default:
1538 			break;
1539 		}
1540 	}
1541 }
1542 
1543 /**
1544  * ad_port_selection_logic - select aggregation groups
1545  * @port: the port we're looking at
1546  * @update_slave_arr: Does slave array need update?
1547  *
1548  * Select aggregation groups, and assign each port for it's aggregetor. The
1549  * selection logic is called in the inititalization (after all the handshkes),
1550  * and after every lacpdu receive (if selected is off).
1551  */
1552 static void ad_port_selection_logic(struct port *port, bool *update_slave_arr)
1553 {
1554 	struct aggregator *aggregator, *free_aggregator = NULL, *temp_aggregator;
1555 	struct port *last_port = NULL, *curr_port;
1556 	struct list_head *iter;
1557 	struct bonding *bond;
1558 	struct slave *slave;
1559 	int found = 0;
1560 
1561 	/* if the port is already Selected, do nothing */
1562 	if (port->sm_vars & AD_PORT_SELECTED)
1563 		return;
1564 
1565 	bond = __get_bond_by_port(port);
1566 
1567 	/* if the port is connected to other aggregator, detach it */
1568 	temp_aggregator = rcu_dereference(port->aggregator);
1569 	if (temp_aggregator) {
1570 		/* detach the port from its former aggregator */
1571 		for (curr_port = temp_aggregator->lag_ports; curr_port;
1572 		     last_port = curr_port,
1573 		     curr_port = curr_port->next_port_in_aggregator) {
1574 			if (curr_port == port) {
1575 				temp_aggregator->num_of_ports--;
1576 				/* if it is the first port attached to the
1577 				 * aggregator
1578 				 */
1579 				if (!last_port) {
1580 					temp_aggregator->lag_ports =
1581 						port->next_port_in_aggregator;
1582 				} else {
1583 					/* not the first port attached to the
1584 					 * aggregator
1585 					 */
1586 					last_port->next_port_in_aggregator =
1587 						port->next_port_in_aggregator;
1588 				}
1589 
1590 				/* clear the port's relations to this
1591 				 * aggregator
1592 				 */
1593 				RCU_INIT_POINTER(port->aggregator, NULL);
1594 				port->next_port_in_aggregator = NULL;
1595 				port->actor_port_aggregator_identifier = 0;
1596 
1597 				slave_dbg(bond->dev, port->slave->dev, "Port %d left LAG %d\n",
1598 					  port->actor_port_number,
1599 					  temp_aggregator->aggregator_identifier);
1600 				/* if the aggregator is empty, clear its
1601 				 * parameters, and set it ready to be attached
1602 				 */
1603 				if (!temp_aggregator->lag_ports)
1604 					ad_clear_agg(temp_aggregator);
1605 				break;
1606 			}
1607 		}
1608 		if (!curr_port) {
1609 			/* meaning: the port was related to an aggregator
1610 			 * but was not on the aggregator port list
1611 			 */
1612 			net_warn_ratelimited("%s: (slave %s): Warning: Port %d was related to aggregator %d but was not on its port list\n",
1613 					     port->slave->bond->dev->name,
1614 					     port->slave->dev->name,
1615 					     port->actor_port_number,
1616 					     temp_aggregator->aggregator_identifier);
1617 		}
1618 	}
1619 	/* search on all aggregators for a suitable aggregator for this port */
1620 	bond_for_each_slave(bond, slave, iter) {
1621 		aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
1622 
1623 		/* keep a free aggregator for later use(if needed) */
1624 		if (!aggregator->lag_ports) {
1625 			if (!free_aggregator)
1626 				free_aggregator = aggregator;
1627 			continue;
1628 		}
1629 		/* check if current aggregator suits us */
1630 		if (((aggregator->actor_oper_aggregator_key == port->actor_oper_port_key) && /* if all parameters match AND */
1631 		     MAC_ADDRESS_EQUAL(&(aggregator->partner_system), &(port->partner_oper.system)) &&
1632 		     (aggregator->partner_system_priority == port->partner_oper.system_priority) &&
1633 		     (aggregator->partner_oper_aggregator_key == port->partner_oper.key)
1634 		    ) &&
1635 		    ((__agg_has_partner(aggregator) && /* partner answers */
1636 		      !aggregator->is_individual)  /* but is not individual OR */
1637 		    )
1638 		   ) {
1639 			/* attach to the founded aggregator */
1640 			rcu_assign_pointer(port->aggregator, aggregator);
1641 			port->actor_port_aggregator_identifier =
1642 				aggregator->aggregator_identifier;
1643 			port->next_port_in_aggregator = aggregator->lag_ports;
1644 			aggregator->num_of_ports++;
1645 			aggregator->lag_ports = port;
1646 			slave_dbg(bond->dev, slave->dev, "Port %d joined LAG %d (existing LAG)\n",
1647 				  port->actor_port_number,
1648 				  aggregator->aggregator_identifier);
1649 
1650 			/* mark this port as selected */
1651 			port->sm_vars |= AD_PORT_SELECTED;
1652 			found = 1;
1653 			break;
1654 		}
1655 	}
1656 
1657 	/* the port couldn't find an aggregator - attach it to a new
1658 	 * aggregator
1659 	 */
1660 	if (!found) {
1661 		if (free_aggregator) {
1662 			/* assign port a new aggregator */
1663 			port->actor_port_aggregator_identifier =
1664 				free_aggregator->aggregator_identifier;
1665 
1666 			/* update the new aggregator's parameters
1667 			 * if port was responsed from the end-user
1668 			 */
1669 			if (port->actor_oper_port_key & AD_DUPLEX_KEY_MASKS)
1670 				/* if port is full duplex */
1671 				free_aggregator->is_individual = false;
1672 			else
1673 				free_aggregator->is_individual = true;
1674 
1675 			free_aggregator->actor_admin_aggregator_key =
1676 				port->actor_admin_port_key;
1677 			free_aggregator->actor_oper_aggregator_key =
1678 				port->actor_oper_port_key;
1679 			free_aggregator->partner_system =
1680 				port->partner_oper.system;
1681 			free_aggregator->partner_system_priority =
1682 				port->partner_oper.system_priority;
1683 			free_aggregator->partner_oper_aggregator_key = port->partner_oper.key;
1684 			free_aggregator->receive_state = 1;
1685 			free_aggregator->transmit_state = 1;
1686 			free_aggregator->lag_ports = port;
1687 			free_aggregator->num_of_ports++;
1688 
1689 			rcu_assign_pointer(port->aggregator, free_aggregator);
1690 
1691 			/* mark this port as selected */
1692 			port->sm_vars |= AD_PORT_SELECTED;
1693 
1694 			slave_dbg(bond->dev, port->slave->dev, "Port %d joined LAG %d (new LAG)\n",
1695 				  port->actor_port_number,
1696 				  free_aggregator->aggregator_identifier);
1697 		} else {
1698 			slave_err(bond->dev, port->slave->dev,
1699 				  "Port %d did not find a suitable aggregator\n",
1700 				  port->actor_port_number);
1701 			return;
1702 		}
1703 	}
1704 	/* if all aggregator's ports are READY_N == TRUE, set ready=TRUE
1705 	 * in all aggregator's ports, else set ready=FALSE in all
1706 	 * aggregator's ports
1707 	 */
1708 	aggregator = rcu_dereference(port->aggregator);
1709 	__set_agg_ports_ready(aggregator, __agg_ports_are_ready(aggregator));
1710 
1711 	ad_agg_selection_logic(__get_first_agg(port), update_slave_arr);
1712 
1713 	if (!aggregator->is_active)
1714 		port->actor_oper_port_state &= ~LACP_STATE_SYNCHRONIZATION;
1715 }
1716 
1717 /* Decide if "agg" is a better choice for the new active aggregator that
1718  * the current best, according to the ad_select policy.
1719  */
1720 static struct aggregator *ad_agg_selection_test(struct aggregator *best,
1721 						struct aggregator *curr)
1722 {
1723 	/* 0. If no best, select current.
1724 	 *
1725 	 * 1. If the current agg is not individual, and the best is
1726 	 *    individual, select current.
1727 	 *
1728 	 * 2. If current agg is individual and the best is not, keep best.
1729 	 *
1730 	 * 3. Therefore, current and best are both individual or both not
1731 	 *    individual, so:
1732 	 *
1733 	 * 3a. If current agg partner replied, and best agg partner did not,
1734 	 *     select current.
1735 	 *
1736 	 * 3b. If current agg partner did not reply and best agg partner
1737 	 *     did reply, keep best.
1738 	 *
1739 	 * 4.  Therefore, current and best both have partner replies or
1740 	 *     both do not, so perform selection policy:
1741 	 *
1742 	 * BOND_AD_PRIO: Select by total priority of ports. If priority
1743 	 *     is equal, select by count.
1744 	 *
1745 	 * BOND_AD_COUNT: Select by count of ports.  If count is equal,
1746 	 *     select by bandwidth.
1747 	 *
1748 	 * BOND_AD_STABLE, BOND_AD_BANDWIDTH: Select by bandwidth.
1749 	 */
1750 	if (!best)
1751 		return curr;
1752 
1753 	if (!curr->is_individual && best->is_individual)
1754 		return curr;
1755 
1756 	if (curr->is_individual && !best->is_individual)
1757 		return best;
1758 
1759 	if (__agg_has_partner(curr) && !__agg_has_partner(best))
1760 		return curr;
1761 
1762 	if (!__agg_has_partner(curr) && __agg_has_partner(best))
1763 		return best;
1764 
1765 	switch (__get_agg_selection_mode(curr->lag_ports)) {
1766 	case BOND_AD_PRIO:
1767 		if (__agg_ports_priority(curr) > __agg_ports_priority(best))
1768 			return curr;
1769 
1770 		if (__agg_ports_priority(curr) < __agg_ports_priority(best))
1771 			return best;
1772 
1773 		fallthrough;
1774 	case BOND_AD_COUNT:
1775 		if (__agg_active_ports(curr) > __agg_active_ports(best))
1776 			return curr;
1777 
1778 		if (__agg_active_ports(curr) < __agg_active_ports(best))
1779 			return best;
1780 
1781 		fallthrough;
1782 	case BOND_AD_STABLE:
1783 	case BOND_AD_BANDWIDTH:
1784 		if (__get_agg_bandwidth(curr) > __get_agg_bandwidth(best))
1785 			return curr;
1786 
1787 		break;
1788 
1789 	default:
1790 		net_warn_ratelimited("%s: (slave %s): Impossible agg select mode %d\n",
1791 				     curr->slave->bond->dev->name,
1792 				     curr->slave->dev->name,
1793 				     __get_agg_selection_mode(curr->lag_ports));
1794 		break;
1795 	}
1796 
1797 	return best;
1798 }
1799 
1800 static int agg_device_up(const struct aggregator *agg)
1801 {
1802 	struct port *port = agg->lag_ports;
1803 
1804 	if (!port)
1805 		return 0;
1806 
1807 	for (port = agg->lag_ports; port;
1808 	     port = port->next_port_in_aggregator) {
1809 		if (netif_running(port->slave->dev) &&
1810 		    netif_carrier_ok(port->slave->dev))
1811 			return 1;
1812 	}
1813 
1814 	return 0;
1815 }
1816 
1817 /**
1818  * ad_agg_selection_logic - select an aggregation group for a team
1819  * @agg: the aggregator we're looking at
1820  * @update_slave_arr: Does slave array need update?
1821  *
1822  * It is assumed that only one aggregator may be selected for a team.
1823  *
1824  * The logic of this function is to select the aggregator according to
1825  * the ad_select policy:
1826  *
1827  * BOND_AD_STABLE: select the aggregator with the most ports attached to
1828  * it, and to reselect the active aggregator only if the previous
1829  * aggregator has no more ports related to it.
1830  *
1831  * BOND_AD_BANDWIDTH: select the aggregator with the highest total
1832  * bandwidth, and reselect whenever a link state change takes place or the
1833  * set of slaves in the bond changes.
1834  *
1835  * BOND_AD_COUNT: select the aggregator with largest number of ports
1836  * (slaves), and reselect whenever a link state change takes place or the
1837  * set of slaves in the bond changes.
1838  *
1839  * BOND_AD_PRIO: select the aggregator with highest total priority of ports
1840  * (slaves), and reselect whenever a link state change takes place or the
1841  * set of slaves in the bond changes.
1842  *
1843  * FIXME: this function MUST be called with the first agg in the bond, or
1844  * __get_active_agg() won't work correctly. This function should be better
1845  * called with the bond itself, and retrieve the first agg from it.
1846  */
1847 static void ad_agg_selection_logic(struct aggregator *agg,
1848 				   bool *update_slave_arr)
1849 {
1850 	struct aggregator *best, *active, *origin;
1851 	struct bonding *bond = agg->slave->bond;
1852 	struct list_head *iter;
1853 	struct slave *slave;
1854 	struct port *port;
1855 
1856 	rcu_read_lock();
1857 	origin = agg;
1858 	active = __get_active_agg(agg);
1859 	best = (active && agg_device_up(active)) ? active : NULL;
1860 
1861 	bond_for_each_slave_rcu(bond, slave, iter) {
1862 		agg = &(SLAVE_AD_INFO(slave)->aggregator);
1863 
1864 		agg->is_active = 0;
1865 
1866 		if (__agg_active_ports(agg) && agg_device_up(agg))
1867 			best = ad_agg_selection_test(best, agg);
1868 	}
1869 
1870 	if (best &&
1871 	    __get_agg_selection_mode(best->lag_ports) == BOND_AD_STABLE) {
1872 		/* For the STABLE policy, don't replace the old active
1873 		 * aggregator if it's still active (it has an answering
1874 		 * partner) or if both the best and active don't have an
1875 		 * answering partner.
1876 		 */
1877 		if (active && active->lag_ports &&
1878 		    __agg_active_ports(active) &&
1879 		    (__agg_has_partner(active) ||
1880 		     (!__agg_has_partner(active) &&
1881 		     !__agg_has_partner(best)))) {
1882 			if (!(!active->actor_oper_aggregator_key &&
1883 			      best->actor_oper_aggregator_key)) {
1884 				best = NULL;
1885 				active->is_active = 1;
1886 			}
1887 		}
1888 	}
1889 
1890 	if (best && (best == active)) {
1891 		best = NULL;
1892 		active->is_active = 1;
1893 	}
1894 
1895 	/* if there is new best aggregator, activate it */
1896 	if (best) {
1897 		netdev_dbg(bond->dev, "(slave %s): best Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1898 			   best->slave ? best->slave->dev->name : "NULL",
1899 			   best->aggregator_identifier, best->num_of_ports,
1900 			   best->actor_oper_aggregator_key,
1901 			   best->partner_oper_aggregator_key,
1902 			   best->is_individual, best->is_active);
1903 		netdev_dbg(bond->dev, "(slave %s): best ports %p slave %p\n",
1904 			   best->slave ? best->slave->dev->name : "NULL",
1905 			   best->lag_ports, best->slave);
1906 
1907 		bond_for_each_slave_rcu(bond, slave, iter) {
1908 			agg = &(SLAVE_AD_INFO(slave)->aggregator);
1909 
1910 			slave_dbg(bond->dev, slave->dev, "Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1911 				  agg->aggregator_identifier, agg->num_of_ports,
1912 				  agg->actor_oper_aggregator_key,
1913 				  agg->partner_oper_aggregator_key,
1914 				  agg->is_individual, agg->is_active);
1915 		}
1916 
1917 		/* check if any partner replies */
1918 		if (best->is_individual)
1919 			net_warn_ratelimited("%s: Warning: No 802.3ad response from the link partner for any adapters in the bond\n",
1920 					     bond->dev->name);
1921 
1922 		best->is_active = 1;
1923 		netdev_dbg(bond->dev, "(slave %s): LAG %d chosen as the active LAG\n",
1924 			   best->slave ? best->slave->dev->name : "NULL",
1925 			   best->aggregator_identifier);
1926 		netdev_dbg(bond->dev, "(slave %s): Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1927 			   best->slave ? best->slave->dev->name : "NULL",
1928 			   best->aggregator_identifier, best->num_of_ports,
1929 			   best->actor_oper_aggregator_key,
1930 			   best->partner_oper_aggregator_key,
1931 			   best->is_individual, best->is_active);
1932 
1933 		/* disable the ports that were related to the former
1934 		 * active_aggregator
1935 		 */
1936 		if (active) {
1937 			for (port = active->lag_ports; port;
1938 			     port = port->next_port_in_aggregator) {
1939 				__disable_port(port);
1940 			}
1941 		}
1942 		/* Slave array needs update. */
1943 		*update_slave_arr = true;
1944 	}
1945 
1946 	/* if the selected aggregator is of join individuals
1947 	 * (partner_system is NULL), enable their ports
1948 	 */
1949 	active = __get_active_agg(origin);
1950 
1951 	if (active) {
1952 		if (!__agg_has_partner(active)) {
1953 			for (port = active->lag_ports; port;
1954 			     port = port->next_port_in_aggregator) {
1955 				__enable_port(port);
1956 			}
1957 			*update_slave_arr = true;
1958 		}
1959 	}
1960 
1961 	rcu_read_unlock();
1962 
1963 	bond_3ad_set_carrier(bond);
1964 }
1965 
1966 /**
1967  * ad_clear_agg - clear a given aggregator's parameters
1968  * @aggregator: the aggregator we're looking at
1969  */
1970 static void ad_clear_agg(struct aggregator *aggregator)
1971 {
1972 	if (aggregator) {
1973 		aggregator->is_individual = false;
1974 		aggregator->actor_admin_aggregator_key = 0;
1975 		aggregator->actor_oper_aggregator_key = 0;
1976 		eth_zero_addr(aggregator->partner_system.mac_addr_value);
1977 		aggregator->partner_system_priority = 0;
1978 		aggregator->partner_oper_aggregator_key = 0;
1979 		aggregator->receive_state = 0;
1980 		aggregator->transmit_state = 0;
1981 		aggregator->lag_ports = NULL;
1982 		aggregator->is_active = 0;
1983 		aggregator->num_of_ports = 0;
1984 		pr_debug("%s: LAG %d was cleared\n",
1985 			 aggregator->slave ?
1986 			 aggregator->slave->dev->name : "NULL",
1987 			 aggregator->aggregator_identifier);
1988 	}
1989 }
1990 
1991 /**
1992  * ad_initialize_agg - initialize a given aggregator's parameters
1993  * @aggregator: the aggregator we're looking at
1994  */
1995 static void ad_initialize_agg(struct aggregator *aggregator)
1996 {
1997 	if (aggregator) {
1998 		ad_clear_agg(aggregator);
1999 
2000 		eth_zero_addr(aggregator->aggregator_mac_address.mac_addr_value);
2001 		aggregator->aggregator_identifier = 0;
2002 		aggregator->slave = NULL;
2003 	}
2004 }
2005 
2006 /**
2007  * ad_initialize_port - initialize a given port's parameters
2008  * @port: the port we're looking at
2009  * @bond_params: bond parameters we will use
2010  */
2011 static void ad_initialize_port(struct port *port, const struct bond_params *bond_params)
2012 {
2013 	static const struct port_params tmpl = {
2014 		.system_priority = 0xffff,
2015 		.key             = 1,
2016 		.port_number     = 1,
2017 		.port_priority   = 0xff,
2018 		.port_state      = 0,
2019 	};
2020 	static const struct lacpdu lacpdu = {
2021 		.subtype		= 0x01,
2022 		.version_number = 0x01,
2023 		.tlv_type_actor_info = 0x01,
2024 		.actor_information_length = 0x14,
2025 		.tlv_type_partner_info = 0x02,
2026 		.partner_information_length = 0x14,
2027 		.tlv_type_collector_info = 0x03,
2028 		.collector_information_length = 0x10,
2029 		.collector_max_delay = htons(AD_COLLECTOR_MAX_DELAY),
2030 	};
2031 
2032 	if (port) {
2033 		port->actor_port_priority = 0xff;
2034 		port->actor_port_aggregator_identifier = 0;
2035 		port->ntt = false;
2036 		port->actor_admin_port_state = LACP_STATE_AGGREGATION;
2037 		port->actor_oper_port_state  = LACP_STATE_AGGREGATION;
2038 		if (bond_params->lacp_active) {
2039 			port->actor_admin_port_state |= LACP_STATE_LACP_ACTIVITY;
2040 			port->actor_oper_port_state  |= LACP_STATE_LACP_ACTIVITY;
2041 		}
2042 
2043 		if (bond_params->lacp_fast)
2044 			port->actor_oper_port_state |= LACP_STATE_LACP_TIMEOUT;
2045 
2046 		memcpy(&port->partner_admin, &tmpl, sizeof(tmpl));
2047 		memcpy(&port->partner_oper, &tmpl, sizeof(tmpl));
2048 
2049 		port->is_enabled = true;
2050 		/* private parameters */
2051 		port->sm_vars = AD_PORT_BEGIN | AD_PORT_LACP_ENABLED;
2052 		port->sm_rx_state = 0;
2053 		port->sm_rx_timer_counter = 0;
2054 		port->sm_periodic_state = 0;
2055 		port->sm_periodic_timer_counter = 0;
2056 		port->sm_mux_state = 0;
2057 		port->sm_mux_timer_counter = 0;
2058 		port->sm_tx_state = 0;
2059 		port->aggregator = NULL;
2060 		port->next_port_in_aggregator = NULL;
2061 		port->transaction_id = 0;
2062 
2063 		port->sm_churn_actor_timer_counter = 0;
2064 		port->sm_churn_actor_state = 0;
2065 		port->churn_actor_count = 0;
2066 		port->sm_churn_partner_timer_counter = 0;
2067 		port->sm_churn_partner_state = 0;
2068 		port->churn_partner_count = 0;
2069 
2070 		memcpy(&port->lacpdu, &lacpdu, sizeof(lacpdu));
2071 	}
2072 }
2073 
2074 /**
2075  * ad_enable_collecting - enable a port's receive
2076  * @port: the port we're looking at
2077  *
2078  * Enable @port if it's in an active aggregator
2079  */
2080 static void ad_enable_collecting(struct port *port)
2081 {
2082 	struct aggregator *aggregator = rcu_dereference(port->aggregator);
2083 
2084 	if (aggregator->is_active) {
2085 		struct slave *slave = port->slave;
2086 
2087 		slave_dbg(slave->bond->dev, slave->dev,
2088 			  "Enabling collecting on port %d (LAG %d)\n",
2089 			  port->actor_port_number,
2090 			  aggregator->aggregator_identifier);
2091 		__enable_collecting_port(port);
2092 	}
2093 }
2094 
2095 /**
2096  * ad_disable_distributing - disable a port's transmit
2097  * @port: the port we're looking at
2098  * @update_slave_arr: Does slave array need update?
2099  */
2100 static void ad_disable_distributing(struct port *port, bool *update_slave_arr)
2101 {
2102 	struct aggregator *aggregator = rcu_dereference(port->aggregator);
2103 
2104 	if (aggregator && __agg_has_partner(aggregator)) {
2105 		slave_dbg(port->slave->bond->dev, port->slave->dev,
2106 			  "Disabling distributing on port %d (LAG %d)\n",
2107 			  port->actor_port_number,
2108 			  aggregator->aggregator_identifier);
2109 		__disable_distributing_port(port);
2110 		/* Slave array needs an update */
2111 		*update_slave_arr = true;
2112 	}
2113 }
2114 
2115 /**
2116  * ad_enable_collecting_distributing - enable a port's transmit/receive
2117  * @port: the port we're looking at
2118  * @update_slave_arr: Does slave array need update?
2119  *
2120  * Enable @port if it's in an active aggregator
2121  */
2122 static void ad_enable_collecting_distributing(struct port *port,
2123 					      bool *update_slave_arr)
2124 {
2125 	struct aggregator *aggregator = rcu_dereference(port->aggregator);
2126 
2127 	if (aggregator->is_active) {
2128 		slave_dbg(port->slave->bond->dev, port->slave->dev,
2129 			  "Enabling port %d (LAG %d)\n",
2130 			  port->actor_port_number,
2131 			  aggregator->aggregator_identifier);
2132 		__enable_port(port);
2133 		/* Slave array needs update */
2134 		*update_slave_arr = true;
2135 		/* Should notify peers if possible */
2136 		ad_cond_set_peer_notif(port);
2137 	}
2138 }
2139 
2140 /**
2141  * ad_disable_collecting_distributing - disable a port's transmit/receive
2142  * @port: the port we're looking at
2143  * @update_slave_arr: Does slave array need update?
2144  */
2145 static void ad_disable_collecting_distributing(struct port *port,
2146 					       bool *update_slave_arr)
2147 {
2148 	struct aggregator *aggregator = rcu_dereference(port->aggregator);
2149 
2150 	if (aggregator && __agg_has_partner(aggregator)) {
2151 		slave_dbg(port->slave->bond->dev, port->slave->dev,
2152 			  "Disabling port %d (LAG %d)\n",
2153 			  port->actor_port_number,
2154 			  aggregator->aggregator_identifier);
2155 		__disable_port(port);
2156 		/* Slave array needs an update */
2157 		*update_slave_arr = true;
2158 	}
2159 }
2160 
2161 /**
2162  * ad_marker_info_received - handle receive of a Marker information frame
2163  * @marker_info: Marker info received
2164  * @port: the port we're looking at
2165  */
2166 static void ad_marker_info_received(struct bond_marker *marker_info,
2167 				    struct port *port)
2168 {
2169 	struct bond_marker marker;
2170 
2171 	atomic64_inc(&SLAVE_AD_INFO(port->slave)->stats.marker_rx);
2172 	atomic64_inc(&BOND_AD_INFO(port->slave->bond).stats.marker_rx);
2173 
2174 	/* copy the received marker data to the response marker */
2175 	memcpy(&marker, marker_info, sizeof(struct bond_marker));
2176 	/* change the marker subtype to marker response */
2177 	marker.tlv_type = AD_MARKER_RESPONSE_SUBTYPE;
2178 
2179 	/* send the marker response */
2180 	if (ad_marker_send(port, &marker) >= 0)
2181 		slave_dbg(port->slave->bond->dev, port->slave->dev,
2182 			  "Sent Marker Response on port %d\n",
2183 			  port->actor_port_number);
2184 }
2185 
2186 /**
2187  * ad_marker_response_received - handle receive of a marker response frame
2188  * @marker: marker PDU received
2189  * @port: the port we're looking at
2190  *
2191  * This function does nothing since we decided not to implement send and handle
2192  * response for marker PDU's, in this stage, but only to respond to marker
2193  * information.
2194  */
2195 static void ad_marker_response_received(struct bond_marker *marker,
2196 					struct port *port)
2197 {
2198 	atomic64_inc(&SLAVE_AD_INFO(port->slave)->stats.marker_resp_rx);
2199 	atomic64_inc(&BOND_AD_INFO(port->slave->bond).stats.marker_resp_rx);
2200 
2201 	/* DO NOTHING, SINCE WE DECIDED NOT TO IMPLEMENT THIS FEATURE FOR NOW */
2202 }
2203 
2204 /* ========= AD exported functions to the main bonding code ========= */
2205 
2206 /* Check aggregators status in team every T seconds */
2207 #define AD_AGGREGATOR_SELECTION_TIMER  8
2208 
2209 /**
2210  * bond_3ad_initiate_agg_selection - initate aggregator selection
2211  * @bond: bonding struct
2212  * @timeout: timeout value to set
2213  *
2214  * Set the aggregation selection timer, to initiate an agg selection in
2215  * the very near future.  Called during first initialization, and during
2216  * any down to up transitions of the bond.
2217  */
2218 void bond_3ad_initiate_agg_selection(struct bonding *bond, int timeout)
2219 {
2220 	atomic_set(&BOND_AD_INFO(bond).agg_select_timer, timeout);
2221 }
2222 
2223 /**
2224  * bond_3ad_initialize - initialize a bond's 802.3ad parameters and structures
2225  * @bond: bonding struct to work on
2226  *
2227  * Can be called only after the mac address of the bond is set.
2228  */
2229 void bond_3ad_initialize(struct bonding *bond)
2230 {
2231 	BOND_AD_INFO(bond).aggregator_identifier = 0;
2232 	BOND_AD_INFO(bond).system.sys_priority =
2233 		bond->params.ad_actor_sys_prio;
2234 	if (is_zero_ether_addr(bond->params.ad_actor_system))
2235 		BOND_AD_INFO(bond).system.sys_mac_addr =
2236 		    *((struct mac_addr *)bond->dev->dev_addr);
2237 	else
2238 		BOND_AD_INFO(bond).system.sys_mac_addr =
2239 		    *((struct mac_addr *)bond->params.ad_actor_system);
2240 
2241 	bond_3ad_initiate_agg_selection(bond,
2242 					AD_AGGREGATOR_SELECTION_TIMER *
2243 					ad_ticks_per_sec);
2244 }
2245 
2246 /**
2247  * bond_3ad_bind_slave - initialize a slave's port
2248  * @slave: slave struct to work on
2249  *
2250  * Returns:   0 on success
2251  *          < 0 on error
2252  */
2253 void bond_3ad_bind_slave(struct slave *slave)
2254 {
2255 	struct bonding *bond = bond_get_bond_by_slave(slave);
2256 	struct port *port;
2257 	struct aggregator *aggregator;
2258 
2259 	/* check that the slave has not been initialized yet. */
2260 	if (SLAVE_AD_INFO(slave)->port.slave != slave) {
2261 
2262 		/* port initialization */
2263 		port = &(SLAVE_AD_INFO(slave)->port);
2264 
2265 		ad_initialize_port(port, &bond->params);
2266 
2267 		/* Port priority is initialized. Update it to slave's ad info */
2268 		SLAVE_AD_INFO(slave)->port_priority = port->actor_port_priority;
2269 
2270 		port->slave = slave;
2271 		port->actor_port_number = SLAVE_AD_INFO(slave)->id;
2272 		/* key is determined according to the link speed, duplex and
2273 		 * user key
2274 		 */
2275 		port->actor_admin_port_key = bond->params.ad_user_port_key << 6;
2276 		ad_update_actor_keys(port, false);
2277 		/* actor system is the bond's system */
2278 		__ad_actor_update_port(port);
2279 		/* tx timer(to verify that no more than MAX_TX_IN_SECOND
2280 		 * lacpdu's are sent in one second)
2281 		 */
2282 		port->sm_tx_timer_counter = ad_ticks_per_sec/AD_MAX_TX_IN_SECOND;
2283 
2284 		__disable_port(port);
2285 
2286 		/* aggregator initialization */
2287 		aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
2288 
2289 		ad_initialize_agg(aggregator);
2290 
2291 		aggregator->aggregator_mac_address = *((struct mac_addr *)bond->dev->dev_addr);
2292 		aggregator->aggregator_identifier = ++BOND_AD_INFO(bond).aggregator_identifier;
2293 		aggregator->slave = slave;
2294 		aggregator->is_active = 0;
2295 		aggregator->num_of_ports = 0;
2296 	}
2297 }
2298 
2299 /**
2300  * bond_3ad_unbind_slave - deinitialize a slave's port
2301  * @slave: slave struct to work on
2302  *
2303  * Search for the aggregator that is related to this port, remove the
2304  * aggregator and assign another aggregator for other port related to it
2305  * (if any), and remove the port.
2306  */
2307 void bond_3ad_unbind_slave(struct slave *slave)
2308 {
2309 	struct port *port, *prev_port, *temp_port;
2310 	struct aggregator *aggregator, *new_aggregator, *temp_aggregator;
2311 	int select_new_active_agg = 0;
2312 	struct bonding *bond = slave->bond;
2313 	struct slave *slave_iter;
2314 	struct list_head *iter;
2315 	bool dummy_slave_update; /* Ignore this value as caller updates array */
2316 
2317 	/* Sync against bond_3ad_state_machine_handler() */
2318 	spin_lock_bh(&bond->mode_lock);
2319 	aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
2320 	port = &(SLAVE_AD_INFO(slave)->port);
2321 
2322 	/* if slave is null, the whole port is not initialized */
2323 	if (!port->slave) {
2324 		slave_warn(bond->dev, slave->dev, "Trying to unbind an uninitialized port\n");
2325 		goto out;
2326 	}
2327 
2328 	slave_dbg(bond->dev, slave->dev, "Unbinding Link Aggregation Group %d\n",
2329 		  aggregator->aggregator_identifier);
2330 
2331 	/* Tell the partner that this port is not suitable for aggregation */
2332 	port->actor_oper_port_state &= ~LACP_STATE_SYNCHRONIZATION;
2333 	port->actor_oper_port_state &= ~LACP_STATE_COLLECTING;
2334 	port->actor_oper_port_state &= ~LACP_STATE_DISTRIBUTING;
2335 	port->actor_oper_port_state &= ~LACP_STATE_AGGREGATION;
2336 	__update_lacpdu_from_port(port);
2337 	ad_lacpdu_send(port);
2338 
2339 	/* check if this aggregator is occupied */
2340 	if (aggregator->lag_ports) {
2341 		/* check if there are other ports related to this aggregator
2342 		 * except the port related to this slave(thats ensure us that
2343 		 * there is a reason to search for new aggregator, and that we
2344 		 * will find one
2345 		 */
2346 		if ((aggregator->lag_ports != port) ||
2347 		    (aggregator->lag_ports->next_port_in_aggregator)) {
2348 			/* find new aggregator for the related port(s) */
2349 			bond_for_each_slave(bond, slave_iter, iter) {
2350 				new_aggregator = &(SLAVE_AD_INFO(slave_iter)->aggregator);
2351 				/* if the new aggregator is empty, or it is
2352 				 * connected to our port only
2353 				 */
2354 				if (!new_aggregator->lag_ports ||
2355 				    ((new_aggregator->lag_ports == port) &&
2356 				     !new_aggregator->lag_ports->next_port_in_aggregator))
2357 					break;
2358 			}
2359 			if (!slave_iter)
2360 				new_aggregator = NULL;
2361 
2362 			/* if new aggregator found, copy the aggregator's
2363 			 * parameters and connect the related lag_ports to the
2364 			 * new aggregator
2365 			 */
2366 			if ((new_aggregator) && ((!new_aggregator->lag_ports) || ((new_aggregator->lag_ports == port) && !new_aggregator->lag_ports->next_port_in_aggregator))) {
2367 				slave_dbg(bond->dev, slave->dev, "Some port(s) related to LAG %d - replacing with LAG %d\n",
2368 					  aggregator->aggregator_identifier,
2369 					  new_aggregator->aggregator_identifier);
2370 
2371 				if ((new_aggregator->lag_ports == port) &&
2372 				    new_aggregator->is_active) {
2373 					slave_info(bond->dev, slave->dev, "Removing an active aggregator\n");
2374 					select_new_active_agg = 1;
2375 				}
2376 
2377 				new_aggregator->is_individual = aggregator->is_individual;
2378 				new_aggregator->actor_admin_aggregator_key = aggregator->actor_admin_aggregator_key;
2379 				new_aggregator->actor_oper_aggregator_key = aggregator->actor_oper_aggregator_key;
2380 				new_aggregator->partner_system = aggregator->partner_system;
2381 				new_aggregator->partner_system_priority = aggregator->partner_system_priority;
2382 				new_aggregator->partner_oper_aggregator_key = aggregator->partner_oper_aggregator_key;
2383 				new_aggregator->receive_state = aggregator->receive_state;
2384 				new_aggregator->transmit_state = aggregator->transmit_state;
2385 				new_aggregator->lag_ports = aggregator->lag_ports;
2386 				new_aggregator->is_active = aggregator->is_active;
2387 				new_aggregator->num_of_ports = aggregator->num_of_ports;
2388 
2389 				/* update the information that is written on
2390 				 * the ports about the aggregator
2391 				 */
2392 				for (temp_port = aggregator->lag_ports; temp_port;
2393 				     temp_port = temp_port->next_port_in_aggregator) {
2394 					rcu_assign_pointer(temp_port->aggregator, new_aggregator);
2395 					temp_port->actor_port_aggregator_identifier = new_aggregator->aggregator_identifier;
2396 				}
2397 
2398 				ad_clear_agg(aggregator);
2399 
2400 				if (select_new_active_agg)
2401 					ad_agg_selection_logic(__get_first_agg(port),
2402 							       &dummy_slave_update);
2403 			} else {
2404 				slave_warn(bond->dev, slave->dev, "unbinding aggregator, and could not find a new aggregator for its ports\n");
2405 			}
2406 		} else {
2407 			/* in case that the only port related to this
2408 			 * aggregator is the one we want to remove
2409 			 */
2410 			select_new_active_agg = aggregator->is_active;
2411 			ad_clear_agg(aggregator);
2412 			if (select_new_active_agg) {
2413 				slave_info(bond->dev, slave->dev, "Removing an active aggregator\n");
2414 				/* select new active aggregator */
2415 				temp_aggregator = __get_first_agg(port);
2416 				if (temp_aggregator)
2417 					ad_agg_selection_logic(temp_aggregator,
2418 							       &dummy_slave_update);
2419 			}
2420 		}
2421 	}
2422 
2423 	slave_dbg(bond->dev, slave->dev, "Unbinding port %d\n", port->actor_port_number);
2424 
2425 	/* find the aggregator that this port is connected to */
2426 	bond_for_each_slave(bond, slave_iter, iter) {
2427 		temp_aggregator = &(SLAVE_AD_INFO(slave_iter)->aggregator);
2428 		prev_port = NULL;
2429 		/* search the port in the aggregator's related ports */
2430 		for (temp_port = temp_aggregator->lag_ports; temp_port;
2431 		     prev_port = temp_port,
2432 		     temp_port = temp_port->next_port_in_aggregator) {
2433 			if (temp_port == port) {
2434 				/* the aggregator found - detach the port from
2435 				 * this aggregator
2436 				 */
2437 				if (prev_port)
2438 					prev_port->next_port_in_aggregator = temp_port->next_port_in_aggregator;
2439 				else
2440 					temp_aggregator->lag_ports = temp_port->next_port_in_aggregator;
2441 				temp_aggregator->num_of_ports--;
2442 				if (__agg_active_ports(temp_aggregator) == 0) {
2443 					select_new_active_agg = temp_aggregator->is_active;
2444 					if (temp_aggregator->num_of_ports == 0)
2445 						ad_clear_agg(temp_aggregator);
2446 					if (select_new_active_agg) {
2447 						slave_info(bond->dev, slave->dev, "Removing an active aggregator\n");
2448 						/* select new active aggregator */
2449 						ad_agg_selection_logic(__get_first_agg(port),
2450 							               &dummy_slave_update);
2451 					}
2452 				}
2453 				break;
2454 			}
2455 		}
2456 	}
2457 	port->slave = NULL;
2458 
2459 out:
2460 	spin_unlock_bh(&bond->mode_lock);
2461 }
2462 
2463 /**
2464  * bond_3ad_update_ad_actor_settings - reflect change of actor settings to ports
2465  * @bond: bonding struct to work on
2466  *
2467  * If an ad_actor setting gets changed we need to update the individual port
2468  * settings so the bond device will use the new values when it gets upped.
2469  */
2470 void bond_3ad_update_ad_actor_settings(struct bonding *bond)
2471 {
2472 	struct list_head *iter;
2473 	struct slave *slave;
2474 
2475 	ASSERT_RTNL();
2476 
2477 	BOND_AD_INFO(bond).system.sys_priority = bond->params.ad_actor_sys_prio;
2478 	if (is_zero_ether_addr(bond->params.ad_actor_system))
2479 		BOND_AD_INFO(bond).system.sys_mac_addr =
2480 		    *((struct mac_addr *)bond->dev->dev_addr);
2481 	else
2482 		BOND_AD_INFO(bond).system.sys_mac_addr =
2483 		    *((struct mac_addr *)bond->params.ad_actor_system);
2484 
2485 	spin_lock_bh(&bond->mode_lock);
2486 	bond_for_each_slave(bond, slave, iter) {
2487 		struct port *port = &(SLAVE_AD_INFO(slave))->port;
2488 
2489 		__ad_actor_update_port(port);
2490 		port->ntt = true;
2491 	}
2492 	spin_unlock_bh(&bond->mode_lock);
2493 }
2494 
2495 /**
2496  * bond_agg_timer_advance - advance agg_select_timer
2497  * @bond:  bonding structure
2498  *
2499  * Return true when agg_select_timer reaches 0.
2500  */
2501 static bool bond_agg_timer_advance(struct bonding *bond)
2502 {
2503 	int val, nval;
2504 
2505 	while (1) {
2506 		val = atomic_read(&BOND_AD_INFO(bond).agg_select_timer);
2507 		if (!val)
2508 			return false;
2509 		nval = val - 1;
2510 		if (atomic_cmpxchg(&BOND_AD_INFO(bond).agg_select_timer,
2511 				   val, nval) == val)
2512 			break;
2513 	}
2514 	return nval == 0;
2515 }
2516 
2517 /**
2518  * bond_3ad_state_machine_handler - handle state machines timeout
2519  * @work: work context to fetch bonding struct to work on from
2520  *
2521  * The state machine handling concept in this module is to check every tick
2522  * which state machine should operate any function. The execution order is
2523  * round robin, so when we have an interaction between state machines, the
2524  * reply of one to each other might be delayed until next tick.
2525  *
2526  * This function also complete the initialization when the agg_select_timer
2527  * times out, and it selects an aggregator for the ports that are yet not
2528  * related to any aggregator, and selects the active aggregator for a bond.
2529  */
2530 void bond_3ad_state_machine_handler(struct work_struct *work)
2531 {
2532 	struct bonding *bond = container_of(work, struct bonding,
2533 					    ad_work.work);
2534 	struct aggregator *aggregator;
2535 	struct list_head *iter;
2536 	struct slave *slave;
2537 	struct port *port;
2538 	bool should_notify_rtnl = BOND_SLAVE_NOTIFY_LATER;
2539 	bool update_slave_arr = false;
2540 
2541 	/* Lock to protect data accessed by all (e.g., port->sm_vars) and
2542 	 * against running with bond_3ad_unbind_slave. ad_rx_machine may run
2543 	 * concurrently due to incoming LACPDU as well.
2544 	 */
2545 	spin_lock_bh(&bond->mode_lock);
2546 	rcu_read_lock();
2547 
2548 	/* check if there are any slaves */
2549 	if (!bond_has_slaves(bond))
2550 		goto re_arm;
2551 
2552 	if (bond_agg_timer_advance(bond)) {
2553 		slave = bond_first_slave_rcu(bond);
2554 		port = slave ? &(SLAVE_AD_INFO(slave)->port) : NULL;
2555 
2556 		/* select the active aggregator for the bond */
2557 		if (port) {
2558 			if (!port->slave) {
2559 				net_warn_ratelimited("%s: Warning: bond's first port is uninitialized\n",
2560 						     bond->dev->name);
2561 				goto re_arm;
2562 			}
2563 
2564 			aggregator = __get_first_agg(port);
2565 			ad_agg_selection_logic(aggregator, &update_slave_arr);
2566 		}
2567 		bond_3ad_set_carrier(bond);
2568 	}
2569 
2570 	/* for each port run the state machines */
2571 	bond_for_each_slave_rcu(bond, slave, iter) {
2572 		port = &(SLAVE_AD_INFO(slave)->port);
2573 		if (!port->slave) {
2574 			net_warn_ratelimited("%s: Warning: Found an uninitialized port\n",
2575 					    bond->dev->name);
2576 			goto re_arm;
2577 		}
2578 
2579 		ad_rx_machine(NULL, port);
2580 		ad_periodic_machine(port);
2581 		ad_port_selection_logic(port, &update_slave_arr);
2582 		ad_mux_machine(port, &update_slave_arr);
2583 		ad_tx_machine(port);
2584 		ad_churn_machine(port);
2585 
2586 		/* turn off the BEGIN bit, since we already handled it */
2587 		if (port->sm_vars & AD_PORT_BEGIN)
2588 			port->sm_vars &= ~AD_PORT_BEGIN;
2589 	}
2590 
2591 re_arm:
2592 	bond_for_each_slave_rcu(bond, slave, iter) {
2593 		if (slave->should_notify) {
2594 			should_notify_rtnl = BOND_SLAVE_NOTIFY_NOW;
2595 			break;
2596 		}
2597 	}
2598 	rcu_read_unlock();
2599 	spin_unlock_bh(&bond->mode_lock);
2600 
2601 	if (update_slave_arr)
2602 		bond_slave_arr_work_rearm(bond, 0);
2603 
2604 	if (should_notify_rtnl && rtnl_trylock()) {
2605 		bond_slave_state_notify(bond);
2606 		rtnl_unlock();
2607 	}
2608 	queue_delayed_work(bond->wq, &bond->ad_work, ad_delta_in_ticks);
2609 }
2610 
2611 /**
2612  * bond_3ad_rx_indication - handle a received frame
2613  * @lacpdu: received lacpdu
2614  * @slave: slave struct to work on
2615  *
2616  * It is assumed that frames that were sent on this NIC don't returned as new
2617  * received frames (loopback). Since only the payload is given to this
2618  * function, it check for loopback.
2619  */
2620 static int bond_3ad_rx_indication(struct lacpdu *lacpdu, struct slave *slave)
2621 {
2622 	struct bonding *bond = slave->bond;
2623 	int ret = RX_HANDLER_ANOTHER;
2624 	struct bond_marker *marker;
2625 	struct port *port;
2626 	atomic64_t *stat;
2627 
2628 	port = &(SLAVE_AD_INFO(slave)->port);
2629 	if (!port->slave) {
2630 		net_warn_ratelimited("%s: Warning: port of slave %s is uninitialized\n",
2631 				     slave->dev->name, slave->bond->dev->name);
2632 		return ret;
2633 	}
2634 
2635 	switch (lacpdu->subtype) {
2636 	case AD_TYPE_LACPDU:
2637 		ret = RX_HANDLER_CONSUMED;
2638 		slave_dbg(slave->bond->dev, slave->dev,
2639 			  "Received LACPDU on port %d\n",
2640 			  port->actor_port_number);
2641 		/* Protect against concurrent state machines */
2642 		spin_lock(&slave->bond->mode_lock);
2643 		ad_rx_machine(lacpdu, port);
2644 		spin_unlock(&slave->bond->mode_lock);
2645 		break;
2646 	case AD_TYPE_MARKER:
2647 		ret = RX_HANDLER_CONSUMED;
2648 		/* No need to convert fields to Little Endian since we
2649 		 * don't use the marker's fields.
2650 		 */
2651 		marker = (struct bond_marker *)lacpdu;
2652 		switch (marker->tlv_type) {
2653 		case AD_MARKER_INFORMATION_SUBTYPE:
2654 			slave_dbg(slave->bond->dev, slave->dev, "Received Marker Information on port %d\n",
2655 				  port->actor_port_number);
2656 			ad_marker_info_received(marker, port);
2657 			break;
2658 		case AD_MARKER_RESPONSE_SUBTYPE:
2659 			slave_dbg(slave->bond->dev, slave->dev, "Received Marker Response on port %d\n",
2660 				  port->actor_port_number);
2661 			ad_marker_response_received(marker, port);
2662 			break;
2663 		default:
2664 			slave_dbg(slave->bond->dev, slave->dev, "Received an unknown Marker subtype on port %d\n",
2665 				  port->actor_port_number);
2666 			stat = &SLAVE_AD_INFO(slave)->stats.marker_unknown_rx;
2667 			atomic64_inc(stat);
2668 			stat = &BOND_AD_INFO(bond).stats.marker_unknown_rx;
2669 			atomic64_inc(stat);
2670 		}
2671 		break;
2672 	default:
2673 		atomic64_inc(&SLAVE_AD_INFO(slave)->stats.lacpdu_unknown_rx);
2674 		atomic64_inc(&BOND_AD_INFO(bond).stats.lacpdu_unknown_rx);
2675 	}
2676 
2677 	return ret;
2678 }
2679 
2680 /**
2681  * ad_update_actor_keys - Update the oper / admin keys for a port based on
2682  * its current speed and duplex settings.
2683  *
2684  * @port: the port we'are looking at
2685  * @reset: Boolean to just reset the speed and the duplex part of the key
2686  *
2687  * The logic to change the oper / admin keys is:
2688  * (a) A full duplex port can participate in LACP with partner.
2689  * (b) When the speed is changed, LACP need to be reinitiated.
2690  */
2691 static void ad_update_actor_keys(struct port *port, bool reset)
2692 {
2693 	u8 duplex = 0;
2694 	u16 ospeed = 0, speed = 0;
2695 	u16 old_oper_key = port->actor_oper_port_key;
2696 
2697 	port->actor_admin_port_key &= ~(AD_SPEED_KEY_MASKS|AD_DUPLEX_KEY_MASKS);
2698 	if (!reset) {
2699 		speed = __get_link_speed(port);
2700 		ospeed = (old_oper_key & AD_SPEED_KEY_MASKS) >> 1;
2701 		duplex = __get_duplex(port);
2702 		port->actor_admin_port_key |= (speed << 1) | duplex;
2703 	}
2704 	port->actor_oper_port_key = port->actor_admin_port_key;
2705 
2706 	if (old_oper_key != port->actor_oper_port_key) {
2707 		/* Only 'duplex' port participates in LACP */
2708 		if (duplex)
2709 			port->sm_vars |= AD_PORT_LACP_ENABLED;
2710 		else
2711 			port->sm_vars &= ~AD_PORT_LACP_ENABLED;
2712 
2713 		if (!reset) {
2714 			if (!speed) {
2715 				slave_err(port->slave->bond->dev,
2716 					  port->slave->dev,
2717 					  "speed changed to 0 on port %d\n",
2718 					  port->actor_port_number);
2719 			} else if (duplex && ospeed != speed) {
2720 				/* Speed change restarts LACP state-machine */
2721 				port->sm_vars |= AD_PORT_BEGIN;
2722 			}
2723 		}
2724 	}
2725 }
2726 
2727 /**
2728  * bond_3ad_adapter_speed_duplex_changed - handle a slave's speed / duplex
2729  * change indication
2730  *
2731  * @slave: slave struct to work on
2732  *
2733  * Handle reselection of aggregator (if needed) for this port.
2734  */
2735 void bond_3ad_adapter_speed_duplex_changed(struct slave *slave)
2736 {
2737 	struct port *port;
2738 
2739 	port = &(SLAVE_AD_INFO(slave)->port);
2740 
2741 	/* if slave is null, the whole port is not initialized */
2742 	if (!port->slave) {
2743 		slave_warn(slave->bond->dev, slave->dev,
2744 			   "speed/duplex changed for uninitialized port\n");
2745 		return;
2746 	}
2747 
2748 	spin_lock_bh(&slave->bond->mode_lock);
2749 	ad_update_actor_keys(port, false);
2750 	spin_unlock_bh(&slave->bond->mode_lock);
2751 	slave_dbg(slave->bond->dev, slave->dev, "Port %d changed speed/duplex\n",
2752 		  port->actor_port_number);
2753 }
2754 
2755 /**
2756  * bond_3ad_handle_link_change - handle a slave's link status change indication
2757  * @slave: slave struct to work on
2758  * @link: whether the link is now up or down
2759  *
2760  * Handle reselection of aggregator (if needed) for this port.
2761  */
2762 void bond_3ad_handle_link_change(struct slave *slave, char link)
2763 {
2764 	struct aggregator *agg;
2765 	struct port *port;
2766 	bool dummy;
2767 
2768 	port = &(SLAVE_AD_INFO(slave)->port);
2769 
2770 	/* if slave is null, the whole port is not initialized */
2771 	if (!port->slave) {
2772 		slave_warn(slave->bond->dev, slave->dev, "link status changed for uninitialized port\n");
2773 		return;
2774 	}
2775 
2776 	spin_lock_bh(&slave->bond->mode_lock);
2777 	/* on link down we are zeroing duplex and speed since
2778 	 * some of the adaptors(ce1000.lan) report full duplex/speed
2779 	 * instead of N/A(duplex) / 0(speed).
2780 	 *
2781 	 * on link up we are forcing recheck on the duplex and speed since
2782 	 * some of he adaptors(ce1000.lan) report.
2783 	 */
2784 	if (link == BOND_LINK_UP) {
2785 		port->is_enabled = true;
2786 		ad_update_actor_keys(port, false);
2787 	} else {
2788 		/* link has failed */
2789 		port->is_enabled = false;
2790 		ad_update_actor_keys(port, true);
2791 	}
2792 	agg = __get_first_agg(port);
2793 	ad_agg_selection_logic(agg, &dummy);
2794 
2795 	spin_unlock_bh(&slave->bond->mode_lock);
2796 
2797 	slave_dbg(slave->bond->dev, slave->dev, "Port %d changed link status to %s\n",
2798 		  port->actor_port_number,
2799 		  link == BOND_LINK_UP ? "UP" : "DOWN");
2800 
2801 	/* RTNL is held and mode_lock is released so it's safe
2802 	 * to update slave_array here.
2803 	 */
2804 	bond_update_slave_arr(slave->bond, NULL);
2805 }
2806 
2807 /**
2808  * bond_3ad_set_carrier - set link state for bonding master
2809  * @bond: bonding structure
2810  *
2811  * if we have an active aggregator, we're up, if not, we're down.
2812  * Presumes that we cannot have an active aggregator if there are
2813  * no slaves with link up.
2814  *
2815  * This behavior complies with IEEE 802.3 section 43.3.9.
2816  *
2817  * Called by bond_set_carrier(). Return zero if carrier state does not
2818  * change, nonzero if it does.
2819  */
2820 int bond_3ad_set_carrier(struct bonding *bond)
2821 {
2822 	struct aggregator *active;
2823 	struct slave *first_slave;
2824 	int ret = 1;
2825 
2826 	rcu_read_lock();
2827 	first_slave = bond_first_slave_rcu(bond);
2828 	if (!first_slave) {
2829 		ret = 0;
2830 		goto out;
2831 	}
2832 	active = __get_active_agg(&(SLAVE_AD_INFO(first_slave)->aggregator));
2833 	if (active) {
2834 		/* are enough slaves available to consider link up? */
2835 		if (__agg_active_ports(active) < bond->params.min_links) {
2836 			if (netif_carrier_ok(bond->dev)) {
2837 				netif_carrier_off(bond->dev);
2838 				goto out;
2839 			}
2840 		} else if (!netif_carrier_ok(bond->dev)) {
2841 			netif_carrier_on(bond->dev);
2842 			goto out;
2843 		}
2844 	} else if (netif_carrier_ok(bond->dev)) {
2845 		netif_carrier_off(bond->dev);
2846 	}
2847 out:
2848 	rcu_read_unlock();
2849 	return ret;
2850 }
2851 
2852 /**
2853  * __bond_3ad_get_active_agg_info - get information of the active aggregator
2854  * @bond: bonding struct to work on
2855  * @ad_info: ad_info struct to fill with the bond's info
2856  *
2857  * Returns:   0 on success
2858  *          < 0 on error
2859  */
2860 int __bond_3ad_get_active_agg_info(struct bonding *bond,
2861 				   struct ad_info *ad_info)
2862 {
2863 	struct aggregator *aggregator = NULL, *tmp;
2864 	struct list_head *iter;
2865 	struct slave *slave;
2866 	struct port *port;
2867 
2868 	bond_for_each_slave_rcu(bond, slave, iter) {
2869 		port = &(SLAVE_AD_INFO(slave)->port);
2870 		tmp = rcu_dereference(port->aggregator);
2871 		if (tmp && tmp->is_active) {
2872 			aggregator = tmp;
2873 			break;
2874 		}
2875 	}
2876 
2877 	if (!aggregator)
2878 		return -1;
2879 
2880 	ad_info->aggregator_id = aggregator->aggregator_identifier;
2881 	ad_info->ports = __agg_active_ports(aggregator);
2882 	ad_info->actor_key = aggregator->actor_oper_aggregator_key;
2883 	ad_info->partner_key = aggregator->partner_oper_aggregator_key;
2884 	ether_addr_copy(ad_info->partner_system,
2885 			aggregator->partner_system.mac_addr_value);
2886 	return 0;
2887 }
2888 
2889 int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info)
2890 {
2891 	int ret;
2892 
2893 	rcu_read_lock();
2894 	ret = __bond_3ad_get_active_agg_info(bond, ad_info);
2895 	rcu_read_unlock();
2896 
2897 	return ret;
2898 }
2899 
2900 int bond_3ad_lacpdu_recv(const struct sk_buff *skb, struct bonding *bond,
2901 			 struct slave *slave)
2902 {
2903 	struct lacpdu *lacpdu, _lacpdu;
2904 
2905 	if (skb->protocol != PKT_TYPE_LACPDU)
2906 		return RX_HANDLER_ANOTHER;
2907 
2908 	if (!MAC_ADDRESS_EQUAL(eth_hdr(skb)->h_dest, lacpdu_mcast_addr))
2909 		return RX_HANDLER_ANOTHER;
2910 
2911 	lacpdu = skb_header_pointer(skb, 0, sizeof(_lacpdu), &_lacpdu);
2912 	if (!lacpdu) {
2913 		atomic64_inc(&SLAVE_AD_INFO(slave)->stats.lacpdu_illegal_rx);
2914 		atomic64_inc(&BOND_AD_INFO(bond).stats.lacpdu_illegal_rx);
2915 		return RX_HANDLER_ANOTHER;
2916 	}
2917 
2918 	return bond_3ad_rx_indication(lacpdu, slave);
2919 }
2920 
2921 /**
2922  * bond_3ad_update_lacp_rate - change the lacp rate
2923  * @bond: bonding struct
2924  *
2925  * When modify lacp_rate parameter via sysfs,
2926  * update actor_oper_port_state of each port.
2927  *
2928  * Hold bond->mode_lock,
2929  * so we can modify port->actor_oper_port_state,
2930  * no matter bond is up or down.
2931  */
2932 void bond_3ad_update_lacp_rate(struct bonding *bond)
2933 {
2934 	struct port *port = NULL;
2935 	struct list_head *iter;
2936 	struct slave *slave;
2937 	int lacp_fast;
2938 
2939 	lacp_fast = bond->params.lacp_fast;
2940 	spin_lock_bh(&bond->mode_lock);
2941 	bond_for_each_slave(bond, slave, iter) {
2942 		port = &(SLAVE_AD_INFO(slave)->port);
2943 		if (lacp_fast)
2944 			port->actor_oper_port_state |= LACP_STATE_LACP_TIMEOUT;
2945 		else
2946 			port->actor_oper_port_state &= ~LACP_STATE_LACP_TIMEOUT;
2947 	}
2948 	spin_unlock_bh(&bond->mode_lock);
2949 }
2950 
2951 /**
2952  * bond_3ad_update_lacp_active - change the lacp active
2953  * @bond: bonding struct
2954  *
2955  * Update actor_oper_port_state when lacp_active is modified.
2956  */
2957 void bond_3ad_update_lacp_active(struct bonding *bond)
2958 {
2959 	struct port *port = NULL;
2960 	struct list_head *iter;
2961 	struct slave *slave;
2962 	int lacp_active;
2963 
2964 	lacp_active = bond->params.lacp_active;
2965 	spin_lock_bh(&bond->mode_lock);
2966 	bond_for_each_slave(bond, slave, iter) {
2967 		port = &(SLAVE_AD_INFO(slave)->port);
2968 		if (lacp_active)
2969 			port->actor_oper_port_state |= LACP_STATE_LACP_ACTIVITY;
2970 		else
2971 			port->actor_oper_port_state &= ~LACP_STATE_LACP_ACTIVITY;
2972 	}
2973 	spin_unlock_bh(&bond->mode_lock);
2974 }
2975 
2976 size_t bond_3ad_stats_size(void)
2977 {
2978 	return nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_LACPDU_RX */
2979 	       nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_LACPDU_TX */
2980 	       nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_LACPDU_UNKNOWN_RX */
2981 	       nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_LACPDU_ILLEGAL_RX */
2982 	       nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_MARKER_RX */
2983 	       nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_MARKER_TX */
2984 	       nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_MARKER_RESP_RX */
2985 	       nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_MARKER_RESP_TX */
2986 	       nla_total_size_64bit(sizeof(u64)); /* BOND_3AD_STAT_MARKER_UNKNOWN_RX */
2987 }
2988 
2989 int bond_3ad_stats_fill(struct sk_buff *skb, struct bond_3ad_stats *stats)
2990 {
2991 	u64 val;
2992 
2993 	val = atomic64_read(&stats->lacpdu_rx);
2994 	if (nla_put_u64_64bit(skb, BOND_3AD_STAT_LACPDU_RX, val,
2995 			      BOND_3AD_STAT_PAD))
2996 		return -EMSGSIZE;
2997 	val = atomic64_read(&stats->lacpdu_tx);
2998 	if (nla_put_u64_64bit(skb, BOND_3AD_STAT_LACPDU_TX, val,
2999 			      BOND_3AD_STAT_PAD))
3000 		return -EMSGSIZE;
3001 	val = atomic64_read(&stats->lacpdu_unknown_rx);
3002 	if (nla_put_u64_64bit(skb, BOND_3AD_STAT_LACPDU_UNKNOWN_RX, val,
3003 			      BOND_3AD_STAT_PAD))
3004 		return -EMSGSIZE;
3005 	val = atomic64_read(&stats->lacpdu_illegal_rx);
3006 	if (nla_put_u64_64bit(skb, BOND_3AD_STAT_LACPDU_ILLEGAL_RX, val,
3007 			      BOND_3AD_STAT_PAD))
3008 		return -EMSGSIZE;
3009 
3010 	val = atomic64_read(&stats->marker_rx);
3011 	if (nla_put_u64_64bit(skb, BOND_3AD_STAT_MARKER_RX, val,
3012 			      BOND_3AD_STAT_PAD))
3013 		return -EMSGSIZE;
3014 	val = atomic64_read(&stats->marker_tx);
3015 	if (nla_put_u64_64bit(skb, BOND_3AD_STAT_MARKER_TX, val,
3016 			      BOND_3AD_STAT_PAD))
3017 		return -EMSGSIZE;
3018 	val = atomic64_read(&stats->marker_resp_rx);
3019 	if (nla_put_u64_64bit(skb, BOND_3AD_STAT_MARKER_RESP_RX, val,
3020 			      BOND_3AD_STAT_PAD))
3021 		return -EMSGSIZE;
3022 	val = atomic64_read(&stats->marker_resp_tx);
3023 	if (nla_put_u64_64bit(skb, BOND_3AD_STAT_MARKER_RESP_TX, val,
3024 			      BOND_3AD_STAT_PAD))
3025 		return -EMSGSIZE;
3026 	val = atomic64_read(&stats->marker_unknown_rx);
3027 	if (nla_put_u64_64bit(skb, BOND_3AD_STAT_MARKER_UNKNOWN_RX, val,
3028 			      BOND_3AD_STAT_PAD))
3029 		return -EMSGSIZE;
3030 
3031 	return 0;
3032 }
3033