blob: 9fd1d6cba3cdaa22df34a2a4e2cb0e85863f853b [file] [log] [blame]
Thomas Gleixner9e567af2019-05-22 09:51:36 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#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>
Jay Vosburghfd989c82008-11-04 17:51:16 -080011#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/if_bonding.h>
13#include <linux/pkt_sched.h>
Eric W. Biedermane730c152007-09-17 11:53:39 -070014#include <net/net_namespace.h>
David S. Miller1ef80192014-11-10 13:27:49 -050015#include <net/bonding.h>
16#include <net/bond_3ad.h>
Nikolay Aleksandrova258aea2019-01-18 14:30:23 +020017#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Veaceslav Falico3bf2d282014-01-08 16:46:46 +010019/* General definitions */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#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
Veaceslav Falico3bf2d282014-01-08 16:46:46 +010026/* Timer definitions (43.4.4 in the 802.3ad standard) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#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
Veaceslav Falico3bf2d282014-01-08 16:46:46 +010034/* Port Variables definitions used by the State Machines (43.4.7 in the
35 * 802.3ad standard)
36 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#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
Mahesh Bandewaref015d72015-03-30 14:30:40 -070047#define AD_PORT_CHURNED (AD_PORT_ACTOR_CHURN | AD_PORT_PARTNER_CHURN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Veaceslav Falico3bf2d282014-01-08 16:46:46 +010049/* Port Key definitions
50 * key is determined according to the link speed, duplex and
51 * user key (which is yet not supported)
Mahesh Bandeward22a5fc2015-05-09 00:01:57 -070052 * --------------------------------------------------------------
53 * Port key | User key (10 bits) | Speed (5 bits) | Duplex|
54 * --------------------------------------------------------------
55 * |15 6|5 1|0
Veaceslav Falico3bf2d282014-01-08 16:46:46 +010056 */
Jianhua Xiecb8dda92014-11-19 16:48:58 +080057#define AD_DUPLEX_KEY_MASKS 0x1
58#define AD_SPEED_KEY_MASKS 0x3E
59#define AD_USER_KEY_MASKS 0xFFC0
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Jianhua Xiecb8dda92014-11-19 16:48:58 +080061enum 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,
Jianhua Xie424c3232014-11-19 16:48:59 +080066 AD_LINK_SPEED_2500MBPS,
Thibaut Colletc7c55062017-06-08 11:18:11 +020067 AD_LINK_SPEED_5000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +080068 AD_LINK_SPEED_10000MBPS,
Nicolas Dichtel3fcd64c2017-06-08 11:18:12 +020069 AD_LINK_SPEED_14000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +080070 AD_LINK_SPEED_20000MBPS,
Jarod Wilson19ddde12017-03-14 11:48:32 -040071 AD_LINK_SPEED_25000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +080072 AD_LINK_SPEED_40000MBPS,
Thibaut Colletc7c55062017-06-08 11:18:11 +020073 AD_LINK_SPEED_50000MBPS,
Jiri Pirko3952af42015-12-03 12:12:05 +010074 AD_LINK_SPEED_56000MBPS,
75 AD_LINK_SPEED_100000MBPS,
Nikolay Aleksandrovab734472021-02-10 22:43:31 +020076 AD_LINK_SPEED_200000MBPS,
Nikolay Aleksandrov138e3b32021-02-10 22:43:32 +020077 AD_LINK_SPEED_400000MBPS,
Jianhua Xiecb8dda92014-11-19 16:48:58 +080078};
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
dingtianhong815117a2014-01-02 09:12:54 +080080/* compare MAC addresses */
81#define MAC_ADDRESS_EQUAL(A, B) \
82 ether_addr_equal_64bits((const u8 *)A, (const u8 *)B)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Eric Dumazetf87fda02016-06-30 16:13:41 +020084static const u8 null_mac_addr[ETH_ALEN + 2] __long_aligned = {
85 0, 0, 0, 0, 0, 0
86};
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static u16 ad_ticks_per_sec;
88static const int ad_delta_in_ticks = (AD_TIMER_INTERVAL * HZ) / 1000;
89
Eric Dumazetf87fda02016-06-30 16:13:41 +020090static const u8 lacpdu_mcast_addr[ETH_ALEN + 2] __long_aligned =
91 MULTICAST_LACPDU_ADDR;
Holger Eitzenbergere4ac4322008-12-26 13:40:48 -080092
Veaceslav Falico3bf2d282014-01-08 16:46:46 +010093/* ================= main 802.3ad protocol functions ================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static int ad_lacpdu_send(struct port *port);
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -070095static int ad_marker_send(struct port *port, struct bond_marker *marker);
Mahesh Bandewaree637712014-10-04 17:45:01 -070096static void ad_mux_machine(struct port *port, bool *update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static void ad_rx_machine(struct lacpdu *lacpdu, struct port *port);
98static void ad_tx_machine(struct port *port);
Colin Ian Kingbbef56d2021-09-07 09:45:34 +010099static void ad_periodic_machine(struct port *port, struct bond_params *bond_params);
Mahesh Bandewaree637712014-10-04 17:45:01 -0700100static void ad_port_selection_logic(struct port *port, bool *update_slave_arr);
101static void ad_agg_selection_logic(struct aggregator *aggregator,
102 bool *update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static void ad_clear_agg(struct aggregator *aggregator);
104static void ad_initialize_agg(struct aggregator *aggregator);
105static void ad_initialize_port(struct port *port, int lacp_fast);
Mahesh Bandewaree637712014-10-04 17:45:01 -0700106static void ad_enable_collecting_distributing(struct port *port,
107 bool *update_slave_arr);
108static void ad_disable_collecting_distributing(struct port *port,
109 bool *update_slave_arr);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100110static void ad_marker_info_received(struct bond_marker *marker_info,
111 struct port *port);
112static void ad_marker_response_received(struct bond_marker *marker,
113 struct port *port);
Mahesh Bandewar7bb11dc2015-10-31 12:45:06 -0700114static void ad_update_actor_keys(struct port *port, bool reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100117/* ================= api to bonding and kernel code ================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119/**
120 * __get_bond_by_port - get the port's bonding struct
121 * @port: the port we're looking at
122 *
123 * Return @port's bonding struct, or %NULL if it can't be found.
124 */
125static inline struct bonding *__get_bond_by_port(struct port *port)
126{
Bandan Das7bfc4752010-10-16 20:19:59 +0000127 if (port->slave == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 return bond_get_bond_by_slave(port->slave);
131}
132
133/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 * __get_first_agg - get the first aggregator in the bond
Lee Jonesa35e5472020-08-14 12:39:04 +0100135 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 *
137 * Return the aggregator of the first slave in @bond, or %NULL if it can't be
138 * found.
Veaceslav Falico768b9542014-01-10 11:59:44 +0100139 * The caller must hold RCU or RTNL lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 */
141static inline struct aggregator *__get_first_agg(struct port *port)
142{
143 struct bonding *bond = __get_bond_by_port(port);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200144 struct slave *first_slave;
Veaceslav Falico768b9542014-01-10 11:59:44 +0100145 struct aggregator *agg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
dingtianhongbe79bd02013-12-13 10:20:12 +0800147 /* If there's no bond for this port, or bond has no slaves */
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200148 if (bond == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return NULL;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100150
dingtianhongbe79bd02013-12-13 10:20:12 +0800151 rcu_read_lock();
152 first_slave = bond_first_slave_rcu(bond);
dingtianhong3fdddd82014-05-12 15:08:43 +0800153 agg = first_slave ? &(SLAVE_AD_INFO(first_slave)->aggregator) : NULL;
dingtianhongbe79bd02013-12-13 10:20:12 +0800154 rcu_read_unlock();
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100155
Veaceslav Falico768b9542014-01-10 11:59:44 +0100156 return agg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100159/**
160 * __agg_has_partner - see if we have a partner
161 * @agg: the agregator we're looking at
Jay Vosburghfd989c82008-11-04 17:51:16 -0800162 *
163 * Return nonzero if aggregator has a partner (denoted by a non-zero ether
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100164 * address for the partner). Return 0 if not.
Jay Vosburghfd989c82008-11-04 17:51:16 -0800165 */
166static inline int __agg_has_partner(struct aggregator *agg)
167{
168 return !is_zero_ether_addr(agg->partner_system.mac_addr_value);
169}
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171/**
172 * __disable_port - disable the port's slave
173 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 */
175static inline void __disable_port(struct port *port)
176{
dingtianhong5e5b0662014-02-26 11:05:22 +0800177 bond_set_slave_inactive_flags(port->slave, BOND_SLAVE_NOTIFY_LATER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
180/**
181 * __enable_port - enable the port's slave, if it's up
182 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 */
184static inline void __enable_port(struct port *port)
185{
186 struct slave *slave = port->slave;
187
Veaceslav Falicob6adc612014-05-15 21:39:57 +0200188 if ((slave->link == BOND_LINK_UP) && bond_slave_is_up(slave))
dingtianhong5e5b0662014-02-26 11:05:22 +0800189 bond_set_slave_active_flags(slave, BOND_SLAVE_NOTIFY_LATER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
192/**
193 * __port_is_enabled - check if the port's slave is in active state
194 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 */
196static inline int __port_is_enabled(struct port *port)
197{
Jiri Pirkoe30bc062011-03-12 03:14:37 +0000198 return bond_is_active_slave(port->slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
201/**
202 * __get_agg_selection_mode - get the aggregator selection mode
203 * @port: the port we're looking at
204 *
Jay Vosburghfd989c82008-11-04 17:51:16 -0800205 * Get the aggregator selection mode. Can be %STABLE, %BANDWIDTH or %COUNT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 */
207static inline u32 __get_agg_selection_mode(struct port *port)
208{
209 struct bonding *bond = __get_bond_by_port(port);
210
Bandan Das7bfc4752010-10-16 20:19:59 +0000211 if (bond == NULL)
Jay Vosburghfd989c82008-11-04 17:51:16 -0800212 return BOND_AD_STABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Peter Pan(潘卫平)1a14fbc2011-06-08 21:19:03 +0000214 return bond->params.ad_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217/**
218 * __check_agg_selection_timer - check if the selection timer has expired
219 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 */
221static inline int __check_agg_selection_timer(struct port *port)
222{
223 struct bonding *bond = __get_bond_by_port(port);
224
Bandan Das7bfc4752010-10-16 20:19:59 +0000225 if (bond == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 return BOND_AD_INFO(bond).agg_select_timer ? 1 : 0;
229}
230
231/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * __get_link_speed - get a port's speed
233 * @port: the port we're looking at
234 *
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800235 * Return @port's speed in 802.3ad enum format. i.e. one of:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 * 0,
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800237 * %AD_LINK_SPEED_10MBPS,
238 * %AD_LINK_SPEED_100MBPS,
239 * %AD_LINK_SPEED_1000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +0800240 * %AD_LINK_SPEED_2500MBPS,
Thibaut Colletc7c55062017-06-08 11:18:11 +0200241 * %AD_LINK_SPEED_5000MBPS,
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800242 * %AD_LINK_SPEED_10000MBPS
Nicolas Dichtel3fcd64c2017-06-08 11:18:12 +0200243 * %AD_LINK_SPEED_14000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +0800244 * %AD_LINK_SPEED_20000MBPS
Jarod Wilson19ddde12017-03-14 11:48:32 -0400245 * %AD_LINK_SPEED_25000MBPS
Jianhua Xie424c3232014-11-19 16:48:59 +0800246 * %AD_LINK_SPEED_40000MBPS
Thibaut Colletc7c55062017-06-08 11:18:11 +0200247 * %AD_LINK_SPEED_50000MBPS
Jianhua Xie424c3232014-11-19 16:48:59 +0800248 * %AD_LINK_SPEED_56000MBPS
Jiri Pirko3952af42015-12-03 12:12:05 +0100249 * %AD_LINK_SPEED_100000MBPS
Nikolay Aleksandrovab734472021-02-10 22:43:31 +0200250 * %AD_LINK_SPEED_200000MBPS
Nikolay Aleksandrov138e3b32021-02-10 22:43:32 +0200251 * %AD_LINK_SPEED_400000MBPS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 */
253static u16 __get_link_speed(struct port *port)
254{
255 struct slave *slave = port->slave;
256 u16 speed;
257
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100258 /* this if covers only a special case: when the configuration starts
259 * with link down, it sets the speed to 0.
260 * This is done in spite of the fact that the e100 driver reports 0
261 * to be compatible with MVT in the future.
262 */
Bandan Das7bfc4752010-10-16 20:19:59 +0000263 if (slave->link != BOND_LINK_UP)
Bandan Das128ea6c2010-10-16 20:19:58 +0000264 speed = 0;
Bandan Das7bfc4752010-10-16 20:19:59 +0000265 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 switch (slave->speed) {
267 case SPEED_10:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800268 speed = AD_LINK_SPEED_10MBPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 break;
270
271 case SPEED_100:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800272 speed = AD_LINK_SPEED_100MBPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 break;
274
275 case SPEED_1000:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800276 speed = AD_LINK_SPEED_1000MBPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 break;
278
Jianhua Xie424c3232014-11-19 16:48:59 +0800279 case SPEED_2500:
280 speed = AD_LINK_SPEED_2500MBPS;
281 break;
282
Thibaut Colletc7c55062017-06-08 11:18:11 +0200283 case SPEED_5000:
284 speed = AD_LINK_SPEED_5000MBPS;
285 break;
286
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700287 case SPEED_10000:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800288 speed = AD_LINK_SPEED_10000MBPS;
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700289 break;
290
Nicolas Dichtel3fcd64c2017-06-08 11:18:12 +0200291 case SPEED_14000:
292 speed = AD_LINK_SPEED_14000MBPS;
293 break;
294
Jianhua Xie424c3232014-11-19 16:48:59 +0800295 case SPEED_20000:
296 speed = AD_LINK_SPEED_20000MBPS;
297 break;
298
Jarod Wilson19ddde12017-03-14 11:48:32 -0400299 case SPEED_25000:
300 speed = AD_LINK_SPEED_25000MBPS;
301 break;
302
Jianhua Xie424c3232014-11-19 16:48:59 +0800303 case SPEED_40000:
304 speed = AD_LINK_SPEED_40000MBPS;
305 break;
306
Thibaut Colletc7c55062017-06-08 11:18:11 +0200307 case SPEED_50000:
308 speed = AD_LINK_SPEED_50000MBPS;
309 break;
310
Jianhua Xie424c3232014-11-19 16:48:59 +0800311 case SPEED_56000:
312 speed = AD_LINK_SPEED_56000MBPS;
313 break;
314
Jiri Pirko3952af42015-12-03 12:12:05 +0100315 case SPEED_100000:
316 speed = AD_LINK_SPEED_100000MBPS;
317 break;
318
Nikolay Aleksandrovab734472021-02-10 22:43:31 +0200319 case SPEED_200000:
320 speed = AD_LINK_SPEED_200000MBPS;
321 break;
322
Nikolay Aleksandrov138e3b32021-02-10 22:43:32 +0200323 case SPEED_400000:
324 speed = AD_LINK_SPEED_400000MBPS;
325 break;
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 default:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100328 /* unknown speed value from ethtool. shouldn't happen */
Nicolas Dichtelcd99c372017-06-09 17:58:08 +0200329 if (slave->speed != SPEED_UNKNOWN)
Ido Schimmel5edf55a2021-02-10 22:43:33 +0200330 pr_err_once("%s: (slave %s): unknown ethtool speed (%d) for port %d (set it to 0)\n",
331 slave->bond->dev->name,
332 slave->dev->name, slave->speed,
333 port->actor_port_number);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100334 speed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 break;
336 }
337 }
338
Jarod Wilson17720982019-06-07 10:59:30 -0400339 slave_dbg(slave->bond->dev, slave->dev, "Port %d Received link speed %d update from adapter\n",
340 port->actor_port_number, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return speed;
342}
343
344/**
345 * __get_duplex - get a port's duplex
346 * @port: the port we're looking at
347 *
348 * Return @port's duplex in 802.3ad bitmask format. i.e.:
349 * 0x01 if in full duplex
350 * 0x00 otherwise
351 */
352static u8 __get_duplex(struct port *port)
353{
354 struct slave *slave = port->slave;
Mahesh Bandewarb25c2e72015-10-31 12:45:00 -0700355 u8 retval = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100357 /* handling a special case: when the configuration starts with
358 * link down, it sets the duplex to 0.
359 */
Mahesh Bandewarb25c2e72015-10-31 12:45:00 -0700360 if (slave->link == BOND_LINK_UP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 switch (slave->duplex) {
362 case DUPLEX_FULL:
Bandan Das128ea6c2010-10-16 20:19:58 +0000363 retval = 0x1;
Jarod Wilson17720982019-06-07 10:59:30 -0400364 slave_dbg(slave->bond->dev, slave->dev, "Port %d Received status full duplex update from adapter\n",
365 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 break;
367 case DUPLEX_HALF:
368 default:
Bandan Das128ea6c2010-10-16 20:19:58 +0000369 retval = 0x0;
Jarod Wilson17720982019-06-07 10:59:30 -0400370 slave_dbg(slave->bond->dev, slave->dev, "Port %d Received status NOT full duplex update from adapter\n",
371 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 break;
373 }
374 }
375 return retval;
376}
377
Nikolay Aleksandrov5ee14e62016-02-03 13:17:01 +0100378static void __ad_actor_update_port(struct port *port)
379{
380 const struct bonding *bond = bond_get_bond_by_slave(port->slave);
381
382 port->actor_system = BOND_AD_INFO(bond).system.sys_mac_addr;
383 port->actor_system_priority = BOND_AD_INFO(bond).system.sys_priority;
384}
385
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100386/* Conversions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388/**
389 * __ad_timer_to_ticks - convert a given timer type to AD module ticks
390 * @timer_type: which timer to operate
391 * @par: timer parameter. see below
392 *
393 * If @timer_type is %current_while_timer, @par indicates long/short timer.
394 * If @timer_type is %periodic_timer, @par is one of %FAST_PERIODIC_TIME,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100395 * %SLOW_PERIODIC_TIME.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 */
397static u16 __ad_timer_to_ticks(u16 timer_type, u16 par)
398{
Bandan Das128ea6c2010-10-16 20:19:58 +0000399 u16 retval = 0; /* to silence the compiler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 switch (timer_type) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100402 case AD_CURRENT_WHILE_TIMER: /* for rx machine usage */
Bandan Das7bfc4752010-10-16 20:19:59 +0000403 if (par)
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100404 retval = (AD_SHORT_TIMEOUT_TIME*ad_ticks_per_sec);
Bandan Das7bfc4752010-10-16 20:19:59 +0000405 else
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100406 retval = (AD_LONG_TIMEOUT_TIME*ad_ticks_per_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100408 case AD_ACTOR_CHURN_TIMER: /* for local churn machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 retval = (AD_CHURN_DETECTION_TIME*ad_ticks_per_sec);
410 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100411 case AD_PERIODIC_TIMER: /* for periodic machine */
412 retval = (par*ad_ticks_per_sec); /* long timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100414 case AD_PARTNER_CHURN_TIMER: /* for remote churn machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 retval = (AD_CHURN_DETECTION_TIME*ad_ticks_per_sec);
416 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100417 case AD_WAIT_WHILE_TIMER: /* for selection machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 retval = (AD_AGGREGATE_WAIT_TIME*ad_ticks_per_sec);
419 break;
420 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return retval;
423}
424
425
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100426/* ================= ad_rx_machine helper functions ================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428/**
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000429 * __choose_matched - update a port's matched variable from a received lacpdu
430 * @lacpdu: the lacpdu we've received
431 * @port: the port we're looking at
432 *
433 * Update the value of the matched variable, using parameter values from a
434 * newly received lacpdu. Parameter values for the partner carried in the
435 * received PDU are compared with the corresponding operational parameter
436 * values for the actor. Matched is set to TRUE if all of these parameters
437 * match and the PDU parameter partner_state.aggregation has the same value as
438 * actor_oper_port_state.aggregation and lacp will actively maintain the link
439 * in the aggregation. Matched is also set to TRUE if the value of
440 * actor_state.aggregation in the received PDU is set to FALSE, i.e., indicates
441 * an individual link and lacp will actively maintain the link. Otherwise,
442 * matched is set to FALSE. LACP is considered to be actively maintaining the
443 * link if either the PDU's actor_state.lacp_activity variable is TRUE or both
444 * the actor's actor_oper_port_state.lacp_activity and the PDU's
445 * partner_state.lacp_activity variables are TRUE.
446 *
447 * Note: the AD_PORT_MATCHED "variable" is not specified by 802.3ad; it is
448 * used here to implement the language from 802.3ad 43.4.9 that requires
449 * recordPDU to "match" the LACPDU parameters to the stored values.
450 */
451static void __choose_matched(struct lacpdu *lacpdu, struct port *port)
452{
dingtianhong815117a2014-01-02 09:12:54 +0800453 /* check if all parameters are alike
454 * or this is individual link(aggregation == FALSE)
455 * then update the state machine Matched variable.
456 */
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000457 if (((ntohs(lacpdu->partner_port) == port->actor_port_number) &&
458 (ntohs(lacpdu->partner_port_priority) == port->actor_port_priority) &&
dingtianhong815117a2014-01-02 09:12:54 +0800459 MAC_ADDRESS_EQUAL(&(lacpdu->partner_system), &(port->actor_system)) &&
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000460 (ntohs(lacpdu->partner_system_priority) == port->actor_system_priority) &&
461 (ntohs(lacpdu->partner_key) == port->actor_oper_port_key) &&
Andy Roulinc1e469902019-12-26 05:41:57 -0800462 ((lacpdu->partner_state & LACP_STATE_AGGREGATION) == (port->actor_oper_port_state & LACP_STATE_AGGREGATION))) ||
463 ((lacpdu->actor_state & LACP_STATE_AGGREGATION) == 0)
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000464 ) {
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000465 port->sm_vars |= AD_PORT_MATCHED;
466 } else {
467 port->sm_vars &= ~AD_PORT_MATCHED;
468 }
469}
470
471/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 * __record_pdu - record parameters from a received lacpdu
473 * @lacpdu: the lacpdu we've received
474 * @port: the port we're looking at
475 *
476 * Record the parameter values for the Actor carried in a received lacpdu as
477 * the current partner operational parameter values and sets
478 * actor_oper_port_state.defaulted to FALSE.
479 */
480static void __record_pdu(struct lacpdu *lacpdu, struct port *port)
481{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (lacpdu && port) {
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800483 struct port_params *partner = &port->partner_oper;
484
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000485 __choose_matched(lacpdu, port);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100486 /* record the new parameter values for the partner
487 * operational
488 */
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800489 partner->port_number = ntohs(lacpdu->actor_port);
490 partner->port_priority = ntohs(lacpdu->actor_port_priority);
491 partner->system = lacpdu->actor_system;
492 partner->system_priority = ntohs(lacpdu->actor_system_priority);
493 partner->key = ntohs(lacpdu->actor_key);
494 partner->port_state = lacpdu->actor_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100496 /* set actor_oper_port_state.defaulted to FALSE */
Andy Roulinc1e469902019-12-26 05:41:57 -0800497 port->actor_oper_port_state &= ~LACP_STATE_DEFAULTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100499 /* set the partner sync. to on if the partner is sync,
500 * and the port is matched
501 */
Wilson Kok63b46242015-01-26 01:16:59 -0500502 if ((port->sm_vars & AD_PORT_MATCHED) &&
Andy Roulinc1e469902019-12-26 05:41:57 -0800503 (lacpdu->actor_state & LACP_STATE_SYNCHRONIZATION)) {
504 partner->port_state |= LACP_STATE_SYNCHRONIZATION;
Jarod Wilson17720982019-06-07 10:59:30 -0400505 slave_dbg(port->slave->bond->dev, port->slave->dev,
506 "partner sync=1\n");
Wilson Kok63b46242015-01-26 01:16:59 -0500507 } else {
Andy Roulinc1e469902019-12-26 05:41:57 -0800508 partner->port_state &= ~LACP_STATE_SYNCHRONIZATION;
Jarod Wilson17720982019-06-07 10:59:30 -0400509 slave_dbg(port->slave->bond->dev, port->slave->dev,
510 "partner sync=0\n");
Wilson Kok63b46242015-01-26 01:16:59 -0500511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513}
514
515/**
516 * __record_default - record default parameters
517 * @port: the port we're looking at
518 *
519 * This function records the default parameter values for the partner carried
520 * in the Partner Admin parameters as the current partner operational parameter
521 * values and sets actor_oper_port_state.defaulted to TRUE.
522 */
523static void __record_default(struct port *port)
524{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (port) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100526 /* record the partner admin parameters */
Holger Eitzenberger5eefd1a2008-12-17 19:08:46 -0800527 memcpy(&port->partner_oper, &port->partner_admin,
528 sizeof(struct port_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100530 /* set actor_oper_port_state.defaulted to true */
Andy Roulinc1e469902019-12-26 05:41:57 -0800531 port->actor_oper_port_state |= LACP_STATE_DEFAULTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
533}
534
535/**
536 * __update_selected - update a port's Selected variable from a received lacpdu
537 * @lacpdu: the lacpdu we've received
538 * @port: the port we're looking at
539 *
540 * Update the value of the selected variable, using parameter values from a
541 * newly received lacpdu. The parameter values for the Actor carried in the
542 * received PDU are compared with the corresponding operational parameter
543 * values for the ports partner. If one or more of the comparisons shows that
544 * the value(s) received in the PDU differ from the current operational values,
545 * then selected is set to FALSE and actor_oper_port_state.synchronization is
546 * set to out_of_sync. Otherwise, selected remains unchanged.
547 */
548static void __update_selected(struct lacpdu *lacpdu, struct port *port)
549{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (lacpdu && port) {
Holger Eitzenbergerce6a49a2008-12-17 19:13:07 -0800551 const struct port_params *partner = &port->partner_oper;
552
dingtianhong815117a2014-01-02 09:12:54 +0800553 /* check if any parameter is different then
554 * update the state machine selected variable.
555 */
Joe Perches8e95a202009-12-03 07:58:21 +0000556 if (ntohs(lacpdu->actor_port) != partner->port_number ||
557 ntohs(lacpdu->actor_port_priority) != partner->port_priority ||
dingtianhong815117a2014-01-02 09:12:54 +0800558 !MAC_ADDRESS_EQUAL(&lacpdu->actor_system, &partner->system) ||
Joe Perches8e95a202009-12-03 07:58:21 +0000559 ntohs(lacpdu->actor_system_priority) != partner->system_priority ||
560 ntohs(lacpdu->actor_key) != partner->key ||
Andy Roulinc1e469902019-12-26 05:41:57 -0800561 (lacpdu->actor_state & LACP_STATE_AGGREGATION) != (partner->port_state & LACP_STATE_AGGREGATION)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 port->sm_vars &= ~AD_PORT_SELECTED;
563 }
564 }
565}
566
567/**
568 * __update_default_selected - update a port's Selected variable from Partner
569 * @port: the port we're looking at
570 *
571 * This function updates the value of the selected variable, using the partner
572 * administrative parameter values. The administrative values are compared with
573 * the corresponding operational parameter values for the partner. If one or
574 * more of the comparisons shows that the administrative value(s) differ from
575 * the current operational values, then Selected is set to FALSE and
576 * actor_oper_port_state.synchronization is set to OUT_OF_SYNC. Otherwise,
577 * Selected remains unchanged.
578 */
579static void __update_default_selected(struct port *port)
580{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (port) {
Holger Eitzenberger3c520652008-12-17 19:13:27 -0800582 const struct port_params *admin = &port->partner_admin;
583 const struct port_params *oper = &port->partner_oper;
584
dingtianhong815117a2014-01-02 09:12:54 +0800585 /* check if any parameter is different then
586 * update the state machine selected variable.
587 */
Joe Perches8e95a202009-12-03 07:58:21 +0000588 if (admin->port_number != oper->port_number ||
589 admin->port_priority != oper->port_priority ||
dingtianhong815117a2014-01-02 09:12:54 +0800590 !MAC_ADDRESS_EQUAL(&admin->system, &oper->system) ||
Joe Perches8e95a202009-12-03 07:58:21 +0000591 admin->system_priority != oper->system_priority ||
592 admin->key != oper->key ||
Andy Roulinc1e469902019-12-26 05:41:57 -0800593 (admin->port_state & LACP_STATE_AGGREGATION)
594 != (oper->port_state & LACP_STATE_AGGREGATION)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 port->sm_vars &= ~AD_PORT_SELECTED;
596 }
597 }
598}
599
600/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 * __update_ntt - update a port's ntt variable from a received lacpdu
602 * @lacpdu: the lacpdu we've received
603 * @port: the port we're looking at
604 *
605 * Updates the value of the ntt variable, using parameter values from a newly
606 * received lacpdu. The parameter values for the partner carried in the
607 * received PDU are compared with the corresponding operational parameter
608 * values for the Actor. If one or more of the comparisons shows that the
609 * value(s) received in the PDU differ from the current operational values,
610 * then ntt is set to TRUE. Otherwise, ntt remains unchanged.
611 */
612static void __update_ntt(struct lacpdu *lacpdu, struct port *port)
613{
dingtianhong815117a2014-01-02 09:12:54 +0800614 /* validate lacpdu and port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (lacpdu && port) {
dingtianhong815117a2014-01-02 09:12:54 +0800616 /* check if any parameter is different then
617 * update the port->ntt.
618 */
Jay Vosburgh89cc76f2006-09-22 21:55:32 -0700619 if ((ntohs(lacpdu->partner_port) != port->actor_port_number) ||
620 (ntohs(lacpdu->partner_port_priority) != port->actor_port_priority) ||
dingtianhong815117a2014-01-02 09:12:54 +0800621 !MAC_ADDRESS_EQUAL(&(lacpdu->partner_system), &(port->actor_system)) ||
Jay Vosburgh89cc76f2006-09-22 21:55:32 -0700622 (ntohs(lacpdu->partner_system_priority) != port->actor_system_priority) ||
623 (ntohs(lacpdu->partner_key) != port->actor_oper_port_key) ||
Andy Roulinc1e469902019-12-26 05:41:57 -0800624 ((lacpdu->partner_state & LACP_STATE_LACP_ACTIVITY) != (port->actor_oper_port_state & LACP_STATE_LACP_ACTIVITY)) ||
625 ((lacpdu->partner_state & LACP_STATE_LACP_TIMEOUT) != (port->actor_oper_port_state & LACP_STATE_LACP_TIMEOUT)) ||
626 ((lacpdu->partner_state & LACP_STATE_SYNCHRONIZATION) != (port->actor_oper_port_state & LACP_STATE_SYNCHRONIZATION)) ||
627 ((lacpdu->partner_state & LACP_STATE_AGGREGATION) != (port->actor_oper_port_state & LACP_STATE_AGGREGATION))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 ) {
Holger Eitzenbergerd238d452008-12-26 11:18:15 -0800629 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
631 }
632}
633
634/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 * __agg_ports_are_ready - check if all ports in an aggregator are ready
636 * @aggregator: the aggregator we're looking at
637 *
638 */
639static int __agg_ports_are_ready(struct aggregator *aggregator)
640{
641 struct port *port;
642 int retval = 1;
643
644 if (aggregator) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100645 /* scan all ports in this aggregator to verfy if they are
646 * all ready.
647 */
Bandan Das128ea6c2010-10-16 20:19:58 +0000648 for (port = aggregator->lag_ports;
649 port;
650 port = port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (!(port->sm_vars & AD_PORT_READY_N)) {
652 retval = 0;
653 break;
654 }
655 }
656 }
657
658 return retval;
659}
660
661/**
662 * __set_agg_ports_ready - set value of Ready bit in all ports of an aggregator
663 * @aggregator: the aggregator we're looking at
664 * @val: Should the ports' ready bit be set on or off
665 *
666 */
667static void __set_agg_ports_ready(struct aggregator *aggregator, int val)
668{
669 struct port *port;
670
Bandan Das128ea6c2010-10-16 20:19:58 +0000671 for (port = aggregator->lag_ports; port;
672 port = port->next_port_in_aggregator) {
Bandan Das7bfc4752010-10-16 20:19:59 +0000673 if (val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 port->sm_vars |= AD_PORT_READY;
Bandan Das7bfc4752010-10-16 20:19:59 +0000675 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 port->sm_vars &= ~AD_PORT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678}
679
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700680static int __agg_active_ports(struct aggregator *agg)
681{
682 struct port *port;
683 int active = 0;
684
685 for (port = agg->lag_ports; port;
686 port = port->next_port_in_aggregator) {
687 if (port->is_enabled)
688 active++;
689 }
690
691 return active;
692}
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694/**
695 * __get_agg_bandwidth - get the total bandwidth of an aggregator
696 * @aggregator: the aggregator we're looking at
697 *
698 */
699static u32 __get_agg_bandwidth(struct aggregator *aggregator)
700{
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700701 int nports = __agg_active_ports(aggregator);
Bandan Das128ea6c2010-10-16 20:19:58 +0000702 u32 bandwidth = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700704 if (nports) {
David Decotigny65cce192011-04-13 15:22:30 +0000705 switch (__get_link_speed(aggregator->lag_ports)) {
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800706 case AD_LINK_SPEED_1MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700707 bandwidth = nports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800709 case AD_LINK_SPEED_10MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700710 bandwidth = nports * 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800712 case AD_LINK_SPEED_100MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700713 bandwidth = nports * 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800715 case AD_LINK_SPEED_1000MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700716 bandwidth = nports * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 break;
Jianhua Xie424c3232014-11-19 16:48:59 +0800718 case AD_LINK_SPEED_2500MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700719 bandwidth = nports * 2500;
Jianhua Xie424c3232014-11-19 16:48:59 +0800720 break;
Thibaut Colletc7c55062017-06-08 11:18:11 +0200721 case AD_LINK_SPEED_5000MBPS:
722 bandwidth = nports * 5000;
723 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800724 case AD_LINK_SPEED_10000MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700725 bandwidth = nports * 10000;
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700726 break;
Nicolas Dichtel3fcd64c2017-06-08 11:18:12 +0200727 case AD_LINK_SPEED_14000MBPS:
728 bandwidth = nports * 14000;
729 break;
Jianhua Xie424c3232014-11-19 16:48:59 +0800730 case AD_LINK_SPEED_20000MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700731 bandwidth = nports * 20000;
Jianhua Xie424c3232014-11-19 16:48:59 +0800732 break;
Jarod Wilson19ddde12017-03-14 11:48:32 -0400733 case AD_LINK_SPEED_25000MBPS:
734 bandwidth = nports * 25000;
735 break;
Jianhua Xie424c3232014-11-19 16:48:59 +0800736 case AD_LINK_SPEED_40000MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700737 bandwidth = nports * 40000;
Jianhua Xie424c3232014-11-19 16:48:59 +0800738 break;
Thibaut Colletc7c55062017-06-08 11:18:11 +0200739 case AD_LINK_SPEED_50000MBPS:
740 bandwidth = nports * 50000;
741 break;
Jianhua Xie424c3232014-11-19 16:48:59 +0800742 case AD_LINK_SPEED_56000MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700743 bandwidth = nports * 56000;
Jianhua Xie424c3232014-11-19 16:48:59 +0800744 break;
Jiri Pirko3952af42015-12-03 12:12:05 +0100745 case AD_LINK_SPEED_100000MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700746 bandwidth = nports * 100000;
Jiri Pirko3952af42015-12-03 12:12:05 +0100747 break;
Nikolay Aleksandrovab734472021-02-10 22:43:31 +0200748 case AD_LINK_SPEED_200000MBPS:
749 bandwidth = nports * 200000;
750 break;
Nikolay Aleksandrov138e3b32021-02-10 22:43:32 +0200751 case AD_LINK_SPEED_400000MBPS:
752 bandwidth = nports * 400000;
753 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 default:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100755 bandwidth = 0; /* to silence the compiler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757 }
758 return bandwidth;
759}
760
761/**
762 * __get_active_agg - get the current active aggregator
763 * @aggregator: the aggregator we're looking at
Veaceslav Falico49b76242014-01-10 11:59:45 +0100764 *
765 * Caller must hold RCU lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 */
767static struct aggregator *__get_active_agg(struct aggregator *aggregator)
768{
Veaceslav Falico19177e72013-09-27 16:12:00 +0200769 struct bonding *bond = aggregator->slave->bond;
770 struct list_head *iter;
771 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
dingtianhongbe79bd02013-12-13 10:20:12 +0800773 bond_for_each_slave_rcu(bond, slave, iter)
dingtianhong3fdddd82014-05-12 15:08:43 +0800774 if (SLAVE_AD_INFO(slave)->aggregator.is_active)
775 return &(SLAVE_AD_INFO(slave)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Veaceslav Falico19177e72013-09-27 16:12:00 +0200777 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
780/**
781 * __update_lacpdu_from_port - update a port's lacpdu fields
782 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 */
784static inline void __update_lacpdu_from_port(struct port *port)
785{
786 struct lacpdu *lacpdu = &port->lacpdu;
Holger Eitzenberger3b5b35d2008-12-17 19:13:53 -0800787 const struct port_params *partner = &port->partner_oper;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100789 /* update current actual Actor parameters
790 * lacpdu->subtype initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 * lacpdu->version_number initialized
792 * lacpdu->tlv_type_actor_info initialized
793 * lacpdu->actor_information_length initialized
794 */
795
Al Virod3bb52b2007-08-22 20:06:58 -0400796 lacpdu->actor_system_priority = htons(port->actor_system_priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 lacpdu->actor_system = port->actor_system;
Al Virod3bb52b2007-08-22 20:06:58 -0400798 lacpdu->actor_key = htons(port->actor_oper_port_key);
799 lacpdu->actor_port_priority = htons(port->actor_port_priority);
800 lacpdu->actor_port = htons(port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 lacpdu->actor_state = port->actor_oper_port_state;
Jarod Wilson17720982019-06-07 10:59:30 -0400802 slave_dbg(port->slave->bond->dev, port->slave->dev,
803 "update lacpdu: actor port state %x\n",
804 port->actor_oper_port_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 /* lacpdu->reserved_3_1 initialized
807 * lacpdu->tlv_type_partner_info initialized
808 * lacpdu->partner_information_length initialized
809 */
810
Holger Eitzenberger3b5b35d2008-12-17 19:13:53 -0800811 lacpdu->partner_system_priority = htons(partner->system_priority);
812 lacpdu->partner_system = partner->system;
813 lacpdu->partner_key = htons(partner->key);
814 lacpdu->partner_port_priority = htons(partner->port_priority);
815 lacpdu->partner_port = htons(partner->port_number);
816 lacpdu->partner_state = partner->port_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 /* lacpdu->reserved_3_2 initialized
819 * lacpdu->tlv_type_collector_info initialized
820 * lacpdu->collector_information_length initialized
821 * collector_max_delay initialized
822 * reserved_12[12] initialized
823 * tlv_type_terminator initialized
824 * terminator_length initialized
825 * reserved_50[50] initialized
826 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100829/* ================= main 802.3ad protocol code ========================= */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831/**
832 * ad_lacpdu_send - send out a lacpdu packet on a given port
833 * @port: the port we're looking at
834 *
835 * Returns: 0 on success
836 * < 0 on error
837 */
838static int ad_lacpdu_send(struct port *port)
839{
840 struct slave *slave = port->slave;
841 struct sk_buff *skb;
842 struct lacpdu_header *lacpdu_header;
843 int length = sizeof(struct lacpdu_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 skb = dev_alloc_skb(length);
Bandan Das7bfc4752010-10-16 20:19:59 +0000846 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +0200849 atomic64_inc(&SLAVE_AD_INFO(slave)->stats.lacpdu_tx);
Nikolay Aleksandrov949e7ce2019-01-23 19:14:50 +0200850 atomic64_inc(&BOND_AD_INFO(slave->bond).stats.lacpdu_tx);
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +0200851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 skb->dev = slave->dev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700853 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700854 skb->network_header = skb->mac_header + ETH_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 skb->protocol = PKT_TYPE_LACPDU;
856 skb->priority = TC_PRIO_CONTROL;
857
Johannes Berg4df864c2017-06-16 14:29:21 +0200858 lacpdu_header = skb_put(skb, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Joe Perchesada0f862014-02-15 16:02:17 -0800860 ether_addr_copy(lacpdu_header->hdr.h_dest, lacpdu_mcast_addr);
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400861 /* Note: source address is set to be the member's PERMANENT address,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100862 * because we use it to identify loopback lacpdus in receive.
863 */
Joe Perchesada0f862014-02-15 16:02:17 -0800864 ether_addr_copy(lacpdu_header->hdr.h_source, slave->perm_hwaddr);
Holger Eitzenbergere7271492008-12-26 13:41:53 -0800865 lacpdu_header->hdr.h_proto = PKT_TYPE_LACPDU;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100867 lacpdu_header->lacpdu = port->lacpdu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 dev_queue_xmit(skb);
870
871 return 0;
872}
873
874/**
875 * ad_marker_send - send marker information/response on a given port
876 * @port: the port we're looking at
877 * @marker: marker data to send
878 *
879 * Returns: 0 on success
880 * < 0 on error
881 */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700882static int ad_marker_send(struct port *port, struct bond_marker *marker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
884 struct slave *slave = port->slave;
885 struct sk_buff *skb;
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700886 struct bond_marker_header *marker_header;
887 int length = sizeof(struct bond_marker_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 skb = dev_alloc_skb(length + 16);
Bandan Das7bfc4752010-10-16 20:19:59 +0000890 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +0200893 switch (marker->tlv_type) {
894 case AD_MARKER_INFORMATION_SUBTYPE:
895 atomic64_inc(&SLAVE_AD_INFO(slave)->stats.marker_tx);
Nikolay Aleksandrov949e7ce2019-01-23 19:14:50 +0200896 atomic64_inc(&BOND_AD_INFO(slave->bond).stats.marker_tx);
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +0200897 break;
898 case AD_MARKER_RESPONSE_SUBTYPE:
899 atomic64_inc(&SLAVE_AD_INFO(slave)->stats.marker_resp_tx);
Nikolay Aleksandrov949e7ce2019-01-23 19:14:50 +0200900 atomic64_inc(&BOND_AD_INFO(slave->bond).stats.marker_resp_tx);
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +0200901 break;
902 }
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 skb_reserve(skb, 16);
905
906 skb->dev = slave->dev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700907 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700908 skb->network_header = skb->mac_header + ETH_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 skb->protocol = PKT_TYPE_LACPDU;
910
Johannes Berg4df864c2017-06-16 14:29:21 +0200911 marker_header = skb_put(skb, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Joe Perchesada0f862014-02-15 16:02:17 -0800913 ether_addr_copy(marker_header->hdr.h_dest, lacpdu_mcast_addr);
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400914 /* Note: source address is set to be the member's PERMANENT address,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100915 * because we use it to identify loopback MARKERs in receive.
916 */
Joe Perchesada0f862014-02-15 16:02:17 -0800917 ether_addr_copy(marker_header->hdr.h_source, slave->perm_hwaddr);
Holger Eitzenbergere7271492008-12-26 13:41:53 -0800918 marker_header->hdr.h_proto = PKT_TYPE_LACPDU;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100920 marker_header->marker = *marker;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 dev_queue_xmit(skb);
923
924 return 0;
925}
926
927/**
928 * ad_mux_machine - handle a port's mux state machine
929 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -0700930 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 */
Mahesh Bandewaree637712014-10-04 17:45:01 -0700932static void ad_mux_machine(struct port *port, bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
934 mux_states_t last_state;
935
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100936 /* keep current State Machine state to compare later if it was
937 * changed
938 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 last_state = port->sm_mux_state;
940
941 if (port->sm_vars & AD_PORT_BEGIN) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100942 port->sm_mux_state = AD_MUX_DETACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 } else {
944 switch (port->sm_mux_state) {
945 case AD_MUX_DETACHED:
Bandan Das7bfc4752010-10-16 20:19:59 +0000946 if ((port->sm_vars & AD_PORT_SELECTED)
947 || (port->sm_vars & AD_PORT_STANDBY))
948 /* if SELECTED or STANDBY */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100949 port->sm_mux_state = AD_MUX_WAITING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 break;
951 case AD_MUX_WAITING:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100952 /* if SELECTED == FALSE return to DETACH state */
953 if (!(port->sm_vars & AD_PORT_SELECTED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 port->sm_vars &= ~AD_PORT_READY_N;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100955 /* in order to withhold the Selection Logic to
956 * check all ports READY_N value every callback
957 * cycle to update ready variable, we check
958 * READY_N and update READY here
959 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100961 port->sm_mux_state = AD_MUX_DETACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 break;
963 }
964
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100965 /* check if the wait_while_timer expired */
Bandan Das7bfc4752010-10-16 20:19:59 +0000966 if (port->sm_mux_timer_counter
967 && !(--port->sm_mux_timer_counter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 port->sm_vars |= AD_PORT_READY_N;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100970 /* in order to withhold the selection logic to check
971 * all ports READY_N value every callback cycle to
972 * update ready variable, we check READY_N and update
973 * READY here
974 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
976
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100977 /* if the wait_while_timer expired, and the port is
978 * in READY state, move to ATTACHED state
979 */
Bandan Das7bfc4752010-10-16 20:19:59 +0000980 if ((port->sm_vars & AD_PORT_READY)
981 && !port->sm_mux_timer_counter)
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100982 port->sm_mux_state = AD_MUX_ATTACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 break;
984 case AD_MUX_ATTACHED:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100985 /* check also if agg_select_timer expired (so the
986 * edable port will take place only after this timer)
987 */
988 if ((port->sm_vars & AD_PORT_SELECTED) &&
Andy Roulinc1e469902019-12-26 05:41:57 -0800989 (port->partner_oper.port_state & LACP_STATE_SYNCHRONIZATION) &&
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100990 !__check_agg_selection_timer(port)) {
Wilson Kok63b46242015-01-26 01:16:59 -0500991 if (port->aggregator->is_active)
992 port->sm_mux_state =
993 AD_MUX_COLLECTING_DISTRIBUTING;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100994 } else if (!(port->sm_vars & AD_PORT_SELECTED) ||
995 (port->sm_vars & AD_PORT_STANDBY)) {
996 /* if UNSELECTED or STANDBY */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 port->sm_vars &= ~AD_PORT_READY_N;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100998 /* in order to withhold the selection logic to
999 * check all ports READY_N value every callback
1000 * cycle to update ready variable, we check
1001 * READY_N and update READY here
1002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001004 port->sm_mux_state = AD_MUX_DETACHED;
Wilson Kok63b46242015-01-26 01:16:59 -05001005 } else if (port->aggregator->is_active) {
1006 port->actor_oper_port_state |=
Andy Roulinc1e469902019-12-26 05:41:57 -08001007 LACP_STATE_SYNCHRONIZATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009 break;
1010 case AD_MUX_COLLECTING_DISTRIBUTING:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001011 if (!(port->sm_vars & AD_PORT_SELECTED) ||
1012 (port->sm_vars & AD_PORT_STANDBY) ||
Andy Roulinc1e469902019-12-26 05:41:57 -08001013 !(port->partner_oper.port_state & LACP_STATE_SYNCHRONIZATION) ||
1014 !(port->actor_oper_port_state & LACP_STATE_SYNCHRONIZATION)) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001015 port->sm_mux_state = AD_MUX_ATTACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001017 /* if port state hasn't changed make
1018 * sure that a collecting distributing
1019 * port in an active aggregator is enabled
1020 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (port->aggregator &&
1022 port->aggregator->is_active &&
1023 !__port_is_enabled(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 __enable_port(port);
Mahesh Bandewar23de0d72022-02-07 14:29:01 -08001025 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027 }
1028 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001029 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 break;
1031 }
1032 }
1033
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001034 /* check if the state machine was changed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (port->sm_mux_state != last_state) {
Jarod Wilson17720982019-06-07 10:59:30 -04001036 slave_dbg(port->slave->bond->dev, port->slave->dev,
1037 "Mux Machine: Port=%d, Last State=%d, Curr State=%d\n",
1038 port->actor_port_number,
1039 last_state,
1040 port->sm_mux_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 switch (port->sm_mux_state) {
1042 case AD_MUX_DETACHED:
Andy Roulinc1e469902019-12-26 05:41:57 -08001043 port->actor_oper_port_state &= ~LACP_STATE_SYNCHRONIZATION;
Mahesh Bandewaree637712014-10-04 17:45:01 -07001044 ad_disable_collecting_distributing(port,
1045 update_slave_arr);
Andy Roulinc1e469902019-12-26 05:41:57 -08001046 port->actor_oper_port_state &= ~LACP_STATE_COLLECTING;
1047 port->actor_oper_port_state &= ~LACP_STATE_DISTRIBUTING;
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001048 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 break;
1050 case AD_MUX_WAITING:
1051 port->sm_mux_timer_counter = __ad_timer_to_ticks(AD_WAIT_WHILE_TIMER, 0);
1052 break;
1053 case AD_MUX_ATTACHED:
Wilson Kok63b46242015-01-26 01:16:59 -05001054 if (port->aggregator->is_active)
1055 port->actor_oper_port_state |=
Andy Roulinc1e469902019-12-26 05:41:57 -08001056 LACP_STATE_SYNCHRONIZATION;
Wilson Kok63b46242015-01-26 01:16:59 -05001057 else
1058 port->actor_oper_port_state &=
Andy Roulinc1e469902019-12-26 05:41:57 -08001059 ~LACP_STATE_SYNCHRONIZATION;
1060 port->actor_oper_port_state &= ~LACP_STATE_COLLECTING;
1061 port->actor_oper_port_state &= ~LACP_STATE_DISTRIBUTING;
Mahesh Bandewaree637712014-10-04 17:45:01 -07001062 ad_disable_collecting_distributing(port,
1063 update_slave_arr);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001064 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 break;
1066 case AD_MUX_COLLECTING_DISTRIBUTING:
Andy Roulinc1e469902019-12-26 05:41:57 -08001067 port->actor_oper_port_state |= LACP_STATE_COLLECTING;
1068 port->actor_oper_port_state |= LACP_STATE_DISTRIBUTING;
1069 port->actor_oper_port_state |= LACP_STATE_SYNCHRONIZATION;
Mahesh Bandewaree637712014-10-04 17:45:01 -07001070 ad_enable_collecting_distributing(port,
1071 update_slave_arr);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001072 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001074 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 break;
1076 }
1077 }
1078}
1079
1080/**
1081 * ad_rx_machine - handle a port's rx State Machine
1082 * @lacpdu: the lacpdu we've received
1083 * @port: the port we're looking at
1084 *
1085 * If lacpdu arrived, stop previous timer (if exists) and set the next state as
1086 * CURRENT. If timer expired set the state machine in the proper state.
1087 * In other cases, this function checks if we need to switch to other state.
1088 */
1089static void ad_rx_machine(struct lacpdu *lacpdu, struct port *port)
1090{
1091 rx_states_t last_state;
1092
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001093 /* keep current State Machine state to compare later if it was
1094 * changed
1095 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 last_state = port->sm_rx_state;
1097
Nikolay Aleksandrov949e7ce2019-01-23 19:14:50 +02001098 if (lacpdu) {
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +02001099 atomic64_inc(&SLAVE_AD_INFO(port->slave)->stats.lacpdu_rx);
Nikolay Aleksandrov949e7ce2019-01-23 19:14:50 +02001100 atomic64_inc(&BOND_AD_INFO(port->slave->bond).stats.lacpdu_rx);
1101 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001102 /* check if state machine should change state */
1103
1104 /* first, check if port was reinitialized */
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001105 if (port->sm_vars & AD_PORT_BEGIN) {
Bandan Das7bfc4752010-10-16 20:19:59 +00001106 port->sm_rx_state = AD_RX_INITIALIZE;
Mahesh Bandewaref015d72015-03-30 14:30:40 -07001107 port->sm_vars |= AD_PORT_CHURNED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001108 /* check if port is not enabled */
Mahesh Bandewarec891c82017-03-08 10:55:59 -08001109 } else if (!(port->sm_vars & AD_PORT_BEGIN) && !port->is_enabled)
Bandan Das7bfc4752010-10-16 20:19:59 +00001110 port->sm_rx_state = AD_RX_PORT_DISABLED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001111 /* check if new lacpdu arrived */
1112 else if (lacpdu && ((port->sm_rx_state == AD_RX_EXPIRED) ||
1113 (port->sm_rx_state == AD_RX_DEFAULTED) ||
1114 (port->sm_rx_state == AD_RX_CURRENT))) {
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001115 if (port->sm_rx_state != AD_RX_CURRENT)
Mahesh Bandewaref015d72015-03-30 14:30:40 -07001116 port->sm_vars |= AD_PORT_CHURNED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001117 port->sm_rx_timer_counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 port->sm_rx_state = AD_RX_CURRENT;
1119 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001120 /* if timer is on, and if it is expired */
1121 if (port->sm_rx_timer_counter &&
1122 !(--port->sm_rx_timer_counter)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 switch (port->sm_rx_state) {
1124 case AD_RX_EXPIRED:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001125 port->sm_rx_state = AD_RX_DEFAULTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 break;
1127 case AD_RX_CURRENT:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001128 port->sm_rx_state = AD_RX_EXPIRED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001130 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 break;
1132 }
1133 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001134 /* if no lacpdu arrived and no timer is on */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 switch (port->sm_rx_state) {
1136 case AD_RX_PORT_DISABLED:
Mahesh Bandewarec891c82017-03-08 10:55:59 -08001137 if (port->is_enabled &&
1138 (port->sm_vars & AD_PORT_LACP_ENABLED))
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001139 port->sm_rx_state = AD_RX_EXPIRED;
Bandan Das7bfc4752010-10-16 20:19:59 +00001140 else if (port->is_enabled
1141 && ((port->sm_vars
1142 & AD_PORT_LACP_ENABLED) == 0))
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001143 port->sm_rx_state = AD_RX_LACP_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001145 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 break;
1147
1148 }
1149 }
1150 }
1151
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001152 /* check if the State machine was changed or new lacpdu arrived */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if ((port->sm_rx_state != last_state) || (lacpdu)) {
Jarod Wilson17720982019-06-07 10:59:30 -04001154 slave_dbg(port->slave->bond->dev, port->slave->dev,
1155 "Rx Machine: Port=%d, Last State=%d, Curr State=%d\n",
1156 port->actor_port_number,
1157 last_state,
1158 port->sm_rx_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 switch (port->sm_rx_state) {
1160 case AD_RX_INITIALIZE:
Jianhua Xiecb8dda92014-11-19 16:48:58 +08001161 if (!(port->actor_oper_port_key & AD_DUPLEX_KEY_MASKS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 port->sm_vars &= ~AD_PORT_LACP_ENABLED;
Bandan Das7bfc4752010-10-16 20:19:59 +00001163 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 port->sm_vars |= AD_PORT_LACP_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 port->sm_vars &= ~AD_PORT_SELECTED;
1166 __record_default(port);
Andy Roulinc1e469902019-12-26 05:41:57 -08001167 port->actor_oper_port_state &= ~LACP_STATE_EXPIRED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001168 port->sm_rx_state = AD_RX_PORT_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001170 fallthrough;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 case AD_RX_PORT_DISABLED:
1172 port->sm_vars &= ~AD_PORT_MATCHED;
1173 break;
1174 case AD_RX_LACP_DISABLED:
1175 port->sm_vars &= ~AD_PORT_SELECTED;
1176 __record_default(port);
Andy Roulinc1e469902019-12-26 05:41:57 -08001177 port->partner_oper.port_state &= ~LACP_STATE_AGGREGATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 port->sm_vars |= AD_PORT_MATCHED;
Andy Roulinc1e469902019-12-26 05:41:57 -08001179 port->actor_oper_port_state &= ~LACP_STATE_EXPIRED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 break;
1181 case AD_RX_EXPIRED:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001182 /* Reset of the Synchronization flag (Standard 43.4.12)
1183 * This reset cause to disable this port in the
1184 * COLLECTING_DISTRIBUTING state of the mux machine in
1185 * case of EXPIRED even if LINK_DOWN didn't arrive for
1186 * the port.
1187 */
Andy Roulinc1e469902019-12-26 05:41:57 -08001188 port->partner_oper.port_state &= ~LACP_STATE_SYNCHRONIZATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 port->sm_vars &= ~AD_PORT_MATCHED;
Andy Roulinc1e469902019-12-26 05:41:57 -08001190 port->partner_oper.port_state |= LACP_STATE_LACP_TIMEOUT;
1191 port->partner_oper.port_state |= LACP_STATE_LACP_ACTIVITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 port->sm_rx_timer_counter = __ad_timer_to_ticks(AD_CURRENT_WHILE_TIMER, (u16)(AD_SHORT_TIMEOUT));
Andy Roulinc1e469902019-12-26 05:41:57 -08001193 port->actor_oper_port_state |= LACP_STATE_EXPIRED;
Mahesh Bandewaref015d72015-03-30 14:30:40 -07001194 port->sm_vars |= AD_PORT_CHURNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 break;
1196 case AD_RX_DEFAULTED:
1197 __update_default_selected(port);
1198 __record_default(port);
1199 port->sm_vars |= AD_PORT_MATCHED;
Andy Roulinc1e469902019-12-26 05:41:57 -08001200 port->actor_oper_port_state &= ~LACP_STATE_EXPIRED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 break;
1202 case AD_RX_CURRENT:
dingtianhong815117a2014-01-02 09:12:54 +08001203 /* detect loopback situation */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001204 if (MAC_ADDRESS_EQUAL(&(lacpdu->actor_system),
1205 &(port->actor_system))) {
Jarod Wilson17720982019-06-07 10:59:30 -04001206 slave_err(port->slave->bond->dev, port->slave->dev, "An illegal loopback occurred on slave\n"
1207 "Check the configuration to verify that all adapters are connected to 802.3ad compliant switch ports\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 return;
1209 }
1210 __update_selected(lacpdu, port);
1211 __update_ntt(lacpdu, port);
1212 __record_pdu(lacpdu, port);
Andy Roulinc1e469902019-12-26 05:41:57 -08001213 port->sm_rx_timer_counter = __ad_timer_to_ticks(AD_CURRENT_WHILE_TIMER, (u16)(port->actor_oper_port_state & LACP_STATE_LACP_TIMEOUT));
1214 port->actor_oper_port_state &= ~LACP_STATE_EXPIRED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001216 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 break;
1218 }
1219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221
1222/**
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001223 * ad_churn_machine - handle port churn's state machine
1224 * @port: the port we're looking at
1225 *
1226 */
1227static void ad_churn_machine(struct port *port)
1228{
Mahesh Bandewaref015d72015-03-30 14:30:40 -07001229 if (port->sm_vars & AD_PORT_CHURNED) {
1230 port->sm_vars &= ~AD_PORT_CHURNED;
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001231 port->sm_churn_actor_state = AD_CHURN_MONITOR;
1232 port->sm_churn_partner_state = AD_CHURN_MONITOR;
1233 port->sm_churn_actor_timer_counter =
1234 __ad_timer_to_ticks(AD_ACTOR_CHURN_TIMER, 0);
Colin Ian King3379b3b2018-12-16 13:33:15 +00001235 port->sm_churn_partner_timer_counter =
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001236 __ad_timer_to_ticks(AD_PARTNER_CHURN_TIMER, 0);
1237 return;
1238 }
1239 if (port->sm_churn_actor_timer_counter &&
1240 !(--port->sm_churn_actor_timer_counter) &&
1241 port->sm_churn_actor_state == AD_CHURN_MONITOR) {
Andy Roulinc1e469902019-12-26 05:41:57 -08001242 if (port->actor_oper_port_state & LACP_STATE_SYNCHRONIZATION) {
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001243 port->sm_churn_actor_state = AD_NO_CHURN;
1244 } else {
1245 port->churn_actor_count++;
1246 port->sm_churn_actor_state = AD_CHURN;
1247 }
1248 }
1249 if (port->sm_churn_partner_timer_counter &&
1250 !(--port->sm_churn_partner_timer_counter) &&
1251 port->sm_churn_partner_state == AD_CHURN_MONITOR) {
Andy Roulinc1e469902019-12-26 05:41:57 -08001252 if (port->partner_oper.port_state & LACP_STATE_SYNCHRONIZATION) {
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001253 port->sm_churn_partner_state = AD_NO_CHURN;
1254 } else {
1255 port->churn_partner_count++;
1256 port->sm_churn_partner_state = AD_CHURN;
1257 }
1258 }
1259}
1260
1261/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 * ad_tx_machine - handle a port's tx state machine
1263 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 */
1265static void ad_tx_machine(struct port *port)
1266{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001267 /* check if tx timer expired, to verify that we do not send more than
1268 * 3 packets per second
1269 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (port->sm_tx_timer_counter && !(--port->sm_tx_timer_counter)) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001271 /* check if there is something to send */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (port->ntt && (port->sm_vars & AD_PORT_LACP_ENABLED)) {
1273 __update_lacpdu_from_port(port);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (ad_lacpdu_send(port) >= 0) {
Jarod Wilson17720982019-06-07 10:59:30 -04001276 slave_dbg(port->slave->bond->dev,
1277 port->slave->dev,
1278 "Sent LACPDU on port %d\n",
1279 port->actor_port_number);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001280
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001281 /* mark ntt as false, so it will not be sent
1282 * again until demanded
1283 */
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001284 port->ntt = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
1286 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001287 /* restart tx timer(to verify that we will not exceed
1288 * AD_MAX_TX_IN_SECOND
1289 */
1290 port->sm_tx_timer_counter = ad_ticks_per_sec/AD_MAX_TX_IN_SECOND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
1292}
1293
1294/**
1295 * ad_periodic_machine - handle a port's periodic state machine
1296 * @port: the port we're looking at
Hangbin Liu3a755cd2021-08-02 11:02:19 +08001297 * @bond_params: bond parameters we will use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 *
1299 * Turn ntt flag on priodically to perform periodic transmission of lacpdu's.
1300 */
Colin Ian Kingbbef56d2021-09-07 09:45:34 +01001301static void ad_periodic_machine(struct port *port, struct bond_params *bond_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
1303 periodic_states_t last_state;
1304
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001305 /* keep current state machine state to compare later if it was changed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 last_state = port->sm_periodic_state;
1307
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001308 /* check if port was reinitialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 if (((port->sm_vars & AD_PORT_BEGIN) || !(port->sm_vars & AD_PORT_LACP_ENABLED) || !port->is_enabled) ||
Hangbin Liu3a755cd2021-08-02 11:02:19 +08001310 (!(port->actor_oper_port_state & LACP_STATE_LACP_ACTIVITY) && !(port->partner_oper.port_state & LACP_STATE_LACP_ACTIVITY)) ||
Colin Ian Kingbbef56d2021-09-07 09:45:34 +01001311 !bond_params->lacp_active) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001312 port->sm_periodic_state = AD_NO_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001314 /* check if state machine should change state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 else if (port->sm_periodic_timer_counter) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001316 /* check if periodic state machine expired */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 if (!(--port->sm_periodic_timer_counter)) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001318 /* if expired then do tx */
1319 port->sm_periodic_state = AD_PERIODIC_TX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001321 /* If not expired, check if there is some new timeout
1322 * parameter from the partner state
1323 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 switch (port->sm_periodic_state) {
1325 case AD_FAST_PERIODIC:
Bandan Das7bfc4752010-10-16 20:19:59 +00001326 if (!(port->partner_oper.port_state
Andy Roulinc1e469902019-12-26 05:41:57 -08001327 & LACP_STATE_LACP_TIMEOUT))
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001328 port->sm_periodic_state = AD_SLOW_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 break;
1330 case AD_SLOW_PERIODIC:
Andy Roulinc1e469902019-12-26 05:41:57 -08001331 if ((port->partner_oper.port_state & LACP_STATE_LACP_TIMEOUT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 port->sm_periodic_timer_counter = 0;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001333 port->sm_periodic_state = AD_PERIODIC_TX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
1335 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001336 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 break;
1338 }
1339 }
1340 } else {
1341 switch (port->sm_periodic_state) {
1342 case AD_NO_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001343 port->sm_periodic_state = AD_FAST_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 break;
1345 case AD_PERIODIC_TX:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001346 if (!(port->partner_oper.port_state &
Andy Roulinc1e469902019-12-26 05:41:57 -08001347 LACP_STATE_LACP_TIMEOUT))
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001348 port->sm_periodic_state = AD_SLOW_PERIODIC;
Bandan Das7bfc4752010-10-16 20:19:59 +00001349 else
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001350 port->sm_periodic_state = AD_FAST_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001352 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 break;
1354 }
1355 }
1356
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001357 /* check if the state machine was changed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 if (port->sm_periodic_state != last_state) {
Jarod Wilson17720982019-06-07 10:59:30 -04001359 slave_dbg(port->slave->bond->dev, port->slave->dev,
1360 "Periodic Machine: Port=%d, Last State=%d, Curr State=%d\n",
1361 port->actor_port_number, last_state,
1362 port->sm_periodic_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 switch (port->sm_periodic_state) {
1364 case AD_NO_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001365 port->sm_periodic_timer_counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 break;
1367 case AD_FAST_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001368 /* decrement 1 tick we lost in the PERIODIC_TX cycle */
1369 port->sm_periodic_timer_counter = __ad_timer_to_ticks(AD_PERIODIC_TIMER, (u16)(AD_FAST_PERIODIC_TIME))-1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 break;
1371 case AD_SLOW_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001372 /* decrement 1 tick we lost in the PERIODIC_TX cycle */
1373 port->sm_periodic_timer_counter = __ad_timer_to_ticks(AD_PERIODIC_TIMER, (u16)(AD_SLOW_PERIODIC_TIME))-1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 break;
1375 case AD_PERIODIC_TX:
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001376 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001378 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 break;
1380 }
1381 }
1382}
1383
1384/**
1385 * ad_port_selection_logic - select aggregation groups
1386 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001387 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 *
1389 * Select aggregation groups, and assign each port for it's aggregetor. The
1390 * selection logic is called in the inititalization (after all the handshkes),
1391 * and after every lacpdu receive (if selected is off).
1392 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001393static void ad_port_selection_logic(struct port *port, bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
1395 struct aggregator *aggregator, *free_aggregator = NULL, *temp_aggregator;
1396 struct port *last_port = NULL, *curr_port;
Veaceslav Falico3e36bb72013-09-27 16:11:59 +02001397 struct list_head *iter;
1398 struct bonding *bond;
1399 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 int found = 0;
1401
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001402 /* if the port is already Selected, do nothing */
Bandan Das7bfc4752010-10-16 20:19:59 +00001403 if (port->sm_vars & AD_PORT_SELECTED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Veaceslav Falico3e36bb72013-09-27 16:11:59 +02001406 bond = __get_bond_by_port(port);
1407
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001408 /* if the port is connected to other aggregator, detach it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 if (port->aggregator) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001410 /* detach the port from its former aggregator */
Bandan Das128ea6c2010-10-16 20:19:58 +00001411 temp_aggregator = port->aggregator;
1412 for (curr_port = temp_aggregator->lag_ports; curr_port;
1413 last_port = curr_port,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001414 curr_port = curr_port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 if (curr_port == port) {
1416 temp_aggregator->num_of_ports--;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001417 /* if it is the first port attached to the
1418 * aggregator
1419 */
1420 if (!last_port) {
Bandan Das128ea6c2010-10-16 20:19:58 +00001421 temp_aggregator->lag_ports =
1422 port->next_port_in_aggregator;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001423 } else {
1424 /* not the first port attached to the
1425 * aggregator
1426 */
Bandan Das128ea6c2010-10-16 20:19:58 +00001427 last_port->next_port_in_aggregator =
1428 port->next_port_in_aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 }
1430
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001431 /* clear the port's relations to this
1432 * aggregator
1433 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 port->aggregator = NULL;
Bandan Das128ea6c2010-10-16 20:19:58 +00001435 port->next_port_in_aggregator = NULL;
1436 port->actor_port_aggregator_identifier = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Jarod Wilson17720982019-06-07 10:59:30 -04001438 slave_dbg(bond->dev, port->slave->dev, "Port %d left LAG %d\n",
1439 port->actor_port_number,
1440 temp_aggregator->aggregator_identifier);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001441 /* if the aggregator is empty, clear its
1442 * parameters, and set it ready to be attached
1443 */
Bandan Das7bfc4752010-10-16 20:19:59 +00001444 if (!temp_aggregator->lag_ports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 ad_clear_agg(temp_aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 break;
1447 }
1448 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001449 if (!curr_port) {
1450 /* meaning: the port was related to an aggregator
1451 * but was not on the aggregator port list
1452 */
Jarod Wilson17720982019-06-07 10:59:30 -04001453 net_warn_ratelimited("%s: (slave %s): Warning: Port %d was related to aggregator %d but was not on its port list\n",
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001454 port->slave->bond->dev->name,
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001455 port->slave->dev->name,
Jarod Wilson17720982019-06-07 10:59:30 -04001456 port->actor_port_number,
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001457 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
1459 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001460 /* search on all aggregators for a suitable aggregator for this port */
Veaceslav Falico3e36bb72013-09-27 16:11:59 +02001461 bond_for_each_slave(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08001462 aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001464 /* keep a free aggregator for later use(if needed) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 if (!aggregator->lag_ports) {
Bandan Das7bfc4752010-10-16 20:19:59 +00001466 if (!free_aggregator)
Bandan Das128ea6c2010-10-16 20:19:58 +00001467 free_aggregator = aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 continue;
1469 }
dingtianhong815117a2014-01-02 09:12:54 +08001470 /* check if current aggregator suits us */
1471 if (((aggregator->actor_oper_aggregator_key == port->actor_oper_port_key) && /* if all parameters match AND */
1472 MAC_ADDRESS_EQUAL(&(aggregator->partner_system), &(port->partner_oper.system)) &&
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001473 (aggregator->partner_system_priority == port->partner_oper.system_priority) &&
1474 (aggregator->partner_oper_aggregator_key == port->partner_oper.key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 ) &&
dingtianhong815117a2014-01-02 09:12:54 +08001476 ((!MAC_ADDRESS_EQUAL(&(port->partner_oper.system), &(null_mac_addr)) && /* partner answers */
1477 !aggregator->is_individual) /* but is not individual OR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 )
1479 ) {
dingtianhong815117a2014-01-02 09:12:54 +08001480 /* attach to the founded aggregator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 port->aggregator = aggregator;
Bandan Das128ea6c2010-10-16 20:19:58 +00001482 port->actor_port_aggregator_identifier =
1483 port->aggregator->aggregator_identifier;
1484 port->next_port_in_aggregator = aggregator->lag_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 port->aggregator->num_of_ports++;
Bandan Das128ea6c2010-10-16 20:19:58 +00001486 aggregator->lag_ports = port;
Jarod Wilson17720982019-06-07 10:59:30 -04001487 slave_dbg(bond->dev, slave->dev, "Port %d joined LAG %d (existing LAG)\n",
1488 port->actor_port_number,
1489 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001491 /* mark this port as selected */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 port->sm_vars |= AD_PORT_SELECTED;
1493 found = 1;
1494 break;
1495 }
1496 }
1497
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001498 /* the port couldn't find an aggregator - attach it to a new
1499 * aggregator
1500 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 if (!found) {
1502 if (free_aggregator) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001503 /* assign port a new aggregator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 port->aggregator = free_aggregator;
Bandan Das128ea6c2010-10-16 20:19:58 +00001505 port->actor_port_aggregator_identifier =
1506 port->aggregator->aggregator_identifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001508 /* update the new aggregator's parameters
1509 * if port was responsed from the end-user
1510 */
Jianhua Xiecb8dda92014-11-19 16:48:58 +08001511 if (port->actor_oper_port_key & AD_DUPLEX_KEY_MASKS)
Bandan Das7bfc4752010-10-16 20:19:59 +00001512 /* if port is full duplex */
Holger Eitzenberger1624db72008-12-26 13:27:21 -08001513 port->aggregator->is_individual = false;
Bandan Das7bfc4752010-10-16 20:19:59 +00001514 else
Holger Eitzenberger1624db72008-12-26 13:27:21 -08001515 port->aggregator->is_individual = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Mahesh Bandewarc3cd9ee2015-04-07 16:16:11 -07001517 port->aggregator->actor_admin_aggregator_key =
1518 port->actor_admin_port_key;
1519 port->aggregator->actor_oper_aggregator_key =
1520 port->actor_oper_port_key;
Bandan Das128ea6c2010-10-16 20:19:58 +00001521 port->aggregator->partner_system =
1522 port->partner_oper.system;
1523 port->aggregator->partner_system_priority =
1524 port->partner_oper.system_priority;
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001525 port->aggregator->partner_oper_aggregator_key = port->partner_oper.key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 port->aggregator->receive_state = 1;
1527 port->aggregator->transmit_state = 1;
1528 port->aggregator->lag_ports = port;
1529 port->aggregator->num_of_ports++;
1530
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001531 /* mark this port as selected */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 port->sm_vars |= AD_PORT_SELECTED;
1533
Jarod Wilson17720982019-06-07 10:59:30 -04001534 slave_dbg(bond->dev, port->slave->dev, "Port %d joined LAG %d (new LAG)\n",
1535 port->actor_port_number,
1536 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 } else {
Jarod Wilson17720982019-06-07 10:59:30 -04001538 slave_err(bond->dev, port->slave->dev,
1539 "Port %d did not find a suitable aggregator\n",
1540 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
1542 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001543 /* if all aggregator's ports are READY_N == TRUE, set ready=TRUE
1544 * in all aggregator's ports, else set ready=FALSE in all
1545 * aggregator's ports
1546 */
1547 __set_agg_ports_ready(port->aggregator,
1548 __agg_ports_are_ready(port->aggregator));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Jay Vosburghfd989c82008-11-04 17:51:16 -08001550 aggregator = __get_first_agg(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07001551 ad_agg_selection_logic(aggregator, update_slave_arr);
Wilson Kok63b46242015-01-26 01:16:59 -05001552
1553 if (!port->aggregator->is_active)
Andy Roulinc1e469902019-12-26 05:41:57 -08001554 port->actor_oper_port_state &= ~LACP_STATE_SYNCHRONIZATION;
Jay Vosburghfd989c82008-11-04 17:51:16 -08001555}
1556
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001557/* Decide if "agg" is a better choice for the new active aggregator that
Jay Vosburghfd989c82008-11-04 17:51:16 -08001558 * the current best, according to the ad_select policy.
1559 */
1560static struct aggregator *ad_agg_selection_test(struct aggregator *best,
1561 struct aggregator *curr)
1562{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001563 /* 0. If no best, select current.
Jay Vosburghfd989c82008-11-04 17:51:16 -08001564 *
1565 * 1. If the current agg is not individual, and the best is
1566 * individual, select current.
1567 *
1568 * 2. If current agg is individual and the best is not, keep best.
1569 *
1570 * 3. Therefore, current and best are both individual or both not
1571 * individual, so:
1572 *
1573 * 3a. If current agg partner replied, and best agg partner did not,
1574 * select current.
1575 *
1576 * 3b. If current agg partner did not reply and best agg partner
1577 * did reply, keep best.
1578 *
1579 * 4. Therefore, current and best both have partner replies or
1580 * both do not, so perform selection policy:
1581 *
1582 * BOND_AD_COUNT: Select by count of ports. If count is equal,
1583 * select by bandwidth.
1584 *
1585 * BOND_AD_STABLE, BOND_AD_BANDWIDTH: Select by bandwidth.
1586 */
1587 if (!best)
1588 return curr;
1589
1590 if (!curr->is_individual && best->is_individual)
1591 return curr;
1592
1593 if (curr->is_individual && !best->is_individual)
1594 return best;
1595
1596 if (__agg_has_partner(curr) && !__agg_has_partner(best))
1597 return curr;
1598
1599 if (!__agg_has_partner(curr) && __agg_has_partner(best))
1600 return best;
1601
1602 switch (__get_agg_selection_mode(curr->lag_ports)) {
1603 case BOND_AD_COUNT:
Jay Vosburgh0622cab2016-06-23 14:20:51 -07001604 if (__agg_active_ports(curr) > __agg_active_ports(best))
Jay Vosburghfd989c82008-11-04 17:51:16 -08001605 return curr;
1606
Jay Vosburgh0622cab2016-06-23 14:20:51 -07001607 if (__agg_active_ports(curr) < __agg_active_ports(best))
Jay Vosburghfd989c82008-11-04 17:51:16 -08001608 return best;
1609
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001610 fallthrough;
Jay Vosburghfd989c82008-11-04 17:51:16 -08001611 case BOND_AD_STABLE:
1612 case BOND_AD_BANDWIDTH:
1613 if (__get_agg_bandwidth(curr) > __get_agg_bandwidth(best))
1614 return curr;
1615
1616 break;
1617
1618 default:
Jarod Wilson17720982019-06-07 10:59:30 -04001619 net_warn_ratelimited("%s: (slave %s): Impossible agg select mode %d\n",
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001620 curr->slave->bond->dev->name,
Jarod Wilson17720982019-06-07 10:59:30 -04001621 curr->slave->dev->name,
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001622 __get_agg_selection_mode(curr->lag_ports));
Jay Vosburghfd989c82008-11-04 17:51:16 -08001623 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 }
Jay Vosburghfd989c82008-11-04 17:51:16 -08001625
1626 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
1628
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001629static int agg_device_up(const struct aggregator *agg)
1630{
Jiri Bohac2430af82011-04-19 02:09:55 +00001631 struct port *port = agg->lag_ports;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001632
Jiri Bohac2430af82011-04-19 02:09:55 +00001633 if (!port)
1634 return 0;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001635
Jay Vosburgh0622cab2016-06-23 14:20:51 -07001636 for (port = agg->lag_ports; port;
1637 port = port->next_port_in_aggregator) {
1638 if (netif_running(port->slave->dev) &&
1639 netif_carrier_ok(port->slave->dev))
1640 return 1;
1641 }
1642
1643 return 0;
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001644}
1645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646/**
1647 * ad_agg_selection_logic - select an aggregation group for a team
Lee Jonesa35e5472020-08-14 12:39:04 +01001648 * @agg: the aggregator we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001649 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 *
1651 * It is assumed that only one aggregator may be selected for a team.
Jay Vosburghfd989c82008-11-04 17:51:16 -08001652 *
1653 * The logic of this function is to select the aggregator according to
1654 * the ad_select policy:
1655 *
1656 * BOND_AD_STABLE: select the aggregator with the most ports attached to
1657 * it, and to reselect the active aggregator only if the previous
1658 * aggregator has no more ports related to it.
1659 *
1660 * BOND_AD_BANDWIDTH: select the aggregator with the highest total
1661 * bandwidth, and reselect whenever a link state change takes place or the
1662 * set of slaves in the bond changes.
1663 *
1664 * BOND_AD_COUNT: select the aggregator with largest number of ports
1665 * (slaves), and reselect whenever a link state change takes place or the
1666 * set of slaves in the bond changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 *
1668 * FIXME: this function MUST be called with the first agg in the bond, or
1669 * __get_active_agg() won't work correctly. This function should be better
1670 * called with the bond itself, and retrieve the first agg from it.
1671 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001672static void ad_agg_selection_logic(struct aggregator *agg,
1673 bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674{
Jay Vosburghfd989c82008-11-04 17:51:16 -08001675 struct aggregator *best, *active, *origin;
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001676 struct bonding *bond = agg->slave->bond;
1677 struct list_head *iter;
1678 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 struct port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Veaceslav Falico49b76242014-01-10 11:59:45 +01001681 rcu_read_lock();
Jay Vosburghfd989c82008-11-04 17:51:16 -08001682 origin = agg;
Jay Vosburghfd989c82008-11-04 17:51:16 -08001683 active = __get_active_agg(agg);
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001684 best = (active && agg_device_up(active)) ? active : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
dingtianhongbe79bd02013-12-13 10:20:12 +08001686 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08001687 agg = &(SLAVE_AD_INFO(slave)->aggregator);
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001688
Jay Vosburghfd989c82008-11-04 17:51:16 -08001689 agg->is_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Jay Vosburgh0622cab2016-06-23 14:20:51 -07001691 if (__agg_active_ports(agg) && agg_device_up(agg))
Jay Vosburghfd989c82008-11-04 17:51:16 -08001692 best = ad_agg_selection_test(best, agg);
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Jay Vosburghfd989c82008-11-04 17:51:16 -08001695 if (best &&
1696 __get_agg_selection_mode(best->lag_ports) == BOND_AD_STABLE) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001697 /* For the STABLE policy, don't replace the old active
Jay Vosburghfd989c82008-11-04 17:51:16 -08001698 * aggregator if it's still active (it has an answering
1699 * partner) or if both the best and active don't have an
1700 * answering partner.
1701 */
1702 if (active && active->lag_ports &&
Jay Vosburgh0622cab2016-06-23 14:20:51 -07001703 __agg_active_ports(active) &&
Jay Vosburghfd989c82008-11-04 17:51:16 -08001704 (__agg_has_partner(active) ||
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001705 (!__agg_has_partner(active) &&
1706 !__agg_has_partner(best)))) {
Jay Vosburghfd989c82008-11-04 17:51:16 -08001707 if (!(!active->actor_oper_aggregator_key &&
1708 best->actor_oper_aggregator_key)) {
1709 best = NULL;
1710 active->is_active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 }
1712 }
1713 }
1714
Jay Vosburghfd989c82008-11-04 17:51:16 -08001715 if (best && (best == active)) {
1716 best = NULL;
1717 active->is_active = 1;
1718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
dingtianhongbe79bd02013-12-13 10:20:12 +08001720 /* if there is new best aggregator, activate it */
Jay Vosburghfd989c82008-11-04 17:51:16 -08001721 if (best) {
Jarod Wilson17720982019-06-07 10:59:30 -04001722 netdev_dbg(bond->dev, "(slave %s): best Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1723 best->slave ? best->slave->dev->name : "NULL",
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001724 best->aggregator_identifier, best->num_of_ports,
1725 best->actor_oper_aggregator_key,
1726 best->partner_oper_aggregator_key,
1727 best->is_individual, best->is_active);
Jarod Wilson17720982019-06-07 10:59:30 -04001728 netdev_dbg(bond->dev, "(slave %s): best ports %p slave %p\n",
1729 best->slave ? best->slave->dev->name : "NULL",
1730 best->lag_ports, best->slave);
Jay Vosburghfd989c82008-11-04 17:51:16 -08001731
dingtianhongbe79bd02013-12-13 10:20:12 +08001732 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08001733 agg = &(SLAVE_AD_INFO(slave)->aggregator);
Jay Vosburghfd989c82008-11-04 17:51:16 -08001734
Jarod Wilson17720982019-06-07 10:59:30 -04001735 slave_dbg(bond->dev, slave->dev, "Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1736 agg->aggregator_identifier, agg->num_of_ports,
1737 agg->actor_oper_aggregator_key,
1738 agg->partner_oper_aggregator_key,
1739 agg->is_individual, agg->is_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
1741
Jarod Wilson17720982019-06-07 10:59:30 -04001742 /* check if any partner replies */
1743 if (best->is_individual)
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001744 net_warn_ratelimited("%s: Warning: No 802.3ad response from the link partner for any adapters in the bond\n",
Jarod Wilson17720982019-06-07 10:59:30 -04001745 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Jay Vosburghfd989c82008-11-04 17:51:16 -08001747 best->is_active = 1;
Jarod Wilson17720982019-06-07 10:59:30 -04001748 netdev_dbg(bond->dev, "(slave %s): LAG %d chosen as the active LAG\n",
1749 best->slave ? best->slave->dev->name : "NULL",
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001750 best->aggregator_identifier);
Jarod Wilson17720982019-06-07 10:59:30 -04001751 netdev_dbg(bond->dev, "(slave %s): Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1752 best->slave ? best->slave->dev->name : "NULL",
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001753 best->aggregator_identifier, best->num_of_ports,
1754 best->actor_oper_aggregator_key,
1755 best->partner_oper_aggregator_key,
1756 best->is_individual, best->is_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001758 /* disable the ports that were related to the former
1759 * active_aggregator
1760 */
Jay Vosburghfd989c82008-11-04 17:51:16 -08001761 if (active) {
1762 for (port = active->lag_ports; port;
1763 port = port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 __disable_port(port);
1765 }
1766 }
Mahesh Bandewaree637712014-10-04 17:45:01 -07001767 /* Slave array needs update. */
1768 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 }
1770
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001771 /* if the selected aggregator is of join individuals
Jay Vosburghfd989c82008-11-04 17:51:16 -08001772 * (partner_system is NULL), enable their ports
1773 */
1774 active = __get_active_agg(origin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Jay Vosburghfd989c82008-11-04 17:51:16 -08001776 if (active) {
1777 if (!__agg_has_partner(active)) {
1778 for (port = active->lag_ports; port;
1779 port = port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 __enable_port(port);
1781 }
Mahesh Bandewar23de0d72022-02-07 14:29:01 -08001782 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
1784 }
Jay Vosburghfd989c82008-11-04 17:51:16 -08001785
dingtianhongbe79bd02013-12-13 10:20:12 +08001786 rcu_read_unlock();
1787
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001788 bond_3ad_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789}
1790
1791/**
1792 * ad_clear_agg - clear a given aggregator's parameters
1793 * @aggregator: the aggregator we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 */
1795static void ad_clear_agg(struct aggregator *aggregator)
1796{
1797 if (aggregator) {
Holger Eitzenberger1624db72008-12-26 13:27:21 -08001798 aggregator->is_individual = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 aggregator->actor_admin_aggregator_key = 0;
1800 aggregator->actor_oper_aggregator_key = 0;
Eric Dumazetf87fda02016-06-30 16:13:41 +02001801 eth_zero_addr(aggregator->partner_system.mac_addr_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 aggregator->partner_system_priority = 0;
1803 aggregator->partner_oper_aggregator_key = 0;
1804 aggregator->receive_state = 0;
1805 aggregator->transmit_state = 0;
1806 aggregator->lag_ports = NULL;
1807 aggregator->is_active = 0;
1808 aggregator->num_of_ports = 0;
Jarod Wilson17720982019-06-07 10:59:30 -04001809 pr_debug("%s: LAG %d was cleared\n",
1810 aggregator->slave ?
1811 aggregator->slave->dev->name : "NULL",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001812 aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
1814}
1815
1816/**
1817 * ad_initialize_agg - initialize a given aggregator's parameters
1818 * @aggregator: the aggregator we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 */
1820static void ad_initialize_agg(struct aggregator *aggregator)
1821{
1822 if (aggregator) {
1823 ad_clear_agg(aggregator);
1824
Eric Dumazetf87fda02016-06-30 16:13:41 +02001825 eth_zero_addr(aggregator->aggregator_mac_address.mac_addr_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 aggregator->aggregator_identifier = 0;
1827 aggregator->slave = NULL;
1828 }
1829}
1830
1831/**
1832 * ad_initialize_port - initialize a given port's parameters
Lee Jonesa35e5472020-08-14 12:39:04 +01001833 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 * @lacp_fast: boolean. whether fast periodic should be used
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 */
1836static void ad_initialize_port(struct port *port, int lacp_fast)
1837{
Holger Eitzenbergerc7e703d2008-12-17 19:12:07 -08001838 static const struct port_params tmpl = {
1839 .system_priority = 0xffff,
1840 .key = 1,
1841 .port_number = 1,
1842 .port_priority = 0xff,
1843 .port_state = 1,
1844 };
Holger Eitzenberger7addeef2008-12-26 13:28:33 -08001845 static const struct lacpdu lacpdu = {
1846 .subtype = 0x01,
1847 .version_number = 0x01,
1848 .tlv_type_actor_info = 0x01,
1849 .actor_information_length = 0x14,
1850 .tlv_type_partner_info = 0x02,
1851 .partner_information_length = 0x14,
1852 .tlv_type_collector_info = 0x03,
1853 .collector_information_length = 0x10,
1854 .collector_max_delay = htons(AD_COLLECTOR_MAX_DELAY),
1855 };
Holger Eitzenbergerc7e703d2008-12-17 19:12:07 -08001856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 if (port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 port->actor_port_priority = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 port->actor_port_aggregator_identifier = 0;
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001860 port->ntt = false;
Andy Roulinc1e469902019-12-26 05:41:57 -08001861 port->actor_admin_port_state = LACP_STATE_AGGREGATION |
1862 LACP_STATE_LACP_ACTIVITY;
1863 port->actor_oper_port_state = LACP_STATE_AGGREGATION |
1864 LACP_STATE_LACP_ACTIVITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Bandan Das7bfc4752010-10-16 20:19:59 +00001866 if (lacp_fast)
Andy Roulinc1e469902019-12-26 05:41:57 -08001867 port->actor_oper_port_state |= LACP_STATE_LACP_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Holger Eitzenbergerc7e703d2008-12-17 19:12:07 -08001869 memcpy(&port->partner_admin, &tmpl, sizeof(tmpl));
1870 memcpy(&port->partner_oper, &tmpl, sizeof(tmpl));
1871
Holger Eitzenbergerf48127b2008-12-26 13:26:54 -08001872 port->is_enabled = true;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001873 /* private parameters */
Mahesh Bandewar19a12042015-03-27 22:34:31 -07001874 port->sm_vars = AD_PORT_BEGIN | AD_PORT_LACP_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 port->sm_rx_state = 0;
1876 port->sm_rx_timer_counter = 0;
1877 port->sm_periodic_state = 0;
1878 port->sm_periodic_timer_counter = 0;
1879 port->sm_mux_state = 0;
1880 port->sm_mux_timer_counter = 0;
1881 port->sm_tx_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 port->aggregator = NULL;
1883 port->next_port_in_aggregator = NULL;
1884 port->transaction_id = 0;
1885
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001886 port->sm_churn_actor_timer_counter = 0;
1887 port->sm_churn_actor_state = 0;
1888 port->churn_actor_count = 0;
1889 port->sm_churn_partner_timer_counter = 0;
1890 port->sm_churn_partner_state = 0;
1891 port->churn_partner_count = 0;
1892
Holger Eitzenberger7addeef2008-12-26 13:28:33 -08001893 memcpy(&port->lacpdu, &lacpdu, sizeof(lacpdu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 }
1895}
1896
1897/**
1898 * ad_enable_collecting_distributing - enable a port's transmit/receive
1899 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001900 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 *
1902 * Enable @port if it's in an active aggregator
1903 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001904static void ad_enable_collecting_distributing(struct port *port,
1905 bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906{
1907 if (port->aggregator->is_active) {
Jarod Wilson17720982019-06-07 10:59:30 -04001908 slave_dbg(port->slave->bond->dev, port->slave->dev,
1909 "Enabling port %d (LAG %d)\n",
1910 port->actor_port_number,
1911 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 __enable_port(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07001913 /* Slave array needs update */
1914 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 }
1916}
1917
1918/**
1919 * ad_disable_collecting_distributing - disable a port's transmit/receive
1920 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001921 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001923static void ad_disable_collecting_distributing(struct port *port,
1924 bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001926 if (port->aggregator &&
1927 !MAC_ADDRESS_EQUAL(&(port->aggregator->partner_system),
1928 &(null_mac_addr))) {
Jarod Wilson17720982019-06-07 10:59:30 -04001929 slave_dbg(port->slave->bond->dev, port->slave->dev,
1930 "Disabling port %d (LAG %d)\n",
1931 port->actor_port_number,
1932 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 __disable_port(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07001934 /* Slave array needs an update */
1935 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 }
1937}
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939/**
1940 * ad_marker_info_received - handle receive of a Marker information frame
1941 * @marker_info: Marker info received
1942 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001944static void ad_marker_info_received(struct bond_marker *marker_info,
Jarod Wilson17720982019-06-07 10:59:30 -04001945 struct port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001947 struct bond_marker marker;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +02001949 atomic64_inc(&SLAVE_AD_INFO(port->slave)->stats.marker_rx);
Nikolay Aleksandrov949e7ce2019-01-23 19:14:50 +02001950 atomic64_inc(&BOND_AD_INFO(port->slave->bond).stats.marker_rx);
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +02001951
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001952 /* copy the received marker data to the response marker */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001953 memcpy(&marker, marker_info, sizeof(struct bond_marker));
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001954 /* change the marker subtype to marker response */
Bandan Das128ea6c2010-10-16 20:19:58 +00001955 marker.tlv_type = AD_MARKER_RESPONSE_SUBTYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001957 /* send the marker response */
Jarod Wilson17720982019-06-07 10:59:30 -04001958 if (ad_marker_send(port, &marker) >= 0)
1959 slave_dbg(port->slave->bond->dev, port->slave->dev,
1960 "Sent Marker Response on port %d\n",
1961 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962}
1963
1964/**
1965 * ad_marker_response_received - handle receive of a marker response frame
1966 * @marker: marker PDU received
1967 * @port: the port we're looking at
1968 *
1969 * This function does nothing since we decided not to implement send and handle
1970 * response for marker PDU's, in this stage, but only to respond to marker
1971 * information.
1972 */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001973static void ad_marker_response_received(struct bond_marker *marker,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001974 struct port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +02001976 atomic64_inc(&SLAVE_AD_INFO(port->slave)->stats.marker_resp_rx);
Nikolay Aleksandrov949e7ce2019-01-23 19:14:50 +02001977 atomic64_inc(&BOND_AD_INFO(port->slave->bond).stats.marker_resp_rx);
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +02001978
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001979 /* DO NOTHING, SINCE WE DECIDED NOT TO IMPLEMENT THIS FEATURE FOR NOW */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980}
1981
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001982/* ========= AD exported functions to the main bonding code ========= */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001984/* Check aggregators status in team every T seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985#define AD_AGGREGATOR_SELECTION_TIMER 8
1986
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001987/**
1988 * bond_3ad_initiate_agg_selection - initate aggregator selection
1989 * @bond: bonding struct
Lee Jonesa35e5472020-08-14 12:39:04 +01001990 * @timeout: timeout value to set
Jay Vosburghfd989c82008-11-04 17:51:16 -08001991 *
1992 * Set the aggregation selection timer, to initiate an agg selection in
1993 * the very near future. Called during first initialization, and during
1994 * any down to up transitions of the bond.
1995 */
1996void bond_3ad_initiate_agg_selection(struct bonding *bond, int timeout)
1997{
1998 BOND_AD_INFO(bond).agg_select_timer = timeout;
Jay Vosburghfd989c82008-11-04 17:51:16 -08001999}
2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001/**
2002 * bond_3ad_initialize - initialize a bond's 802.3ad parameters and structures
2003 * @bond: bonding struct to work on
2004 * @tick_resolution: tick duration (millisecond resolution)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 *
2006 * Can be called only after the mac address of the bond is set.
2007 */
Peter Pan(潘卫平)56d00c672011-06-08 21:19:02 +00002008void bond_3ad_initialize(struct bonding *bond, u16 tick_resolution)
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00002009{
dingtianhong815117a2014-01-02 09:12:54 +08002010 /* check that the bond is not initialized yet */
2011 if (!MAC_ADDRESS_EQUAL(&(BOND_AD_INFO(bond).system.sys_mac_addr),
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00002012 bond->dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Jiri Bohac163c8ff2014-02-14 18:13:50 +01002014 BOND_AD_INFO(bond).aggregator_identifier = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Mahesh Bandewar6791e462015-05-09 00:01:55 -07002016 BOND_AD_INFO(bond).system.sys_priority =
2017 bond->params.ad_actor_sys_prio;
Mahesh Bandewar74514952015-05-09 00:01:56 -07002018 if (is_zero_ether_addr(bond->params.ad_actor_system))
2019 BOND_AD_INFO(bond).system.sys_mac_addr =
2020 *((struct mac_addr *)bond->dev->dev_addr);
2021 else
2022 BOND_AD_INFO(bond).system.sys_mac_addr =
2023 *((struct mac_addr *)bond->params.ad_actor_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002025 /* initialize how many times this module is called in one
2026 * second (should be about every 100ms)
2027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 ad_ticks_per_sec = tick_resolution;
2029
Jay Vosburghfd989c82008-11-04 17:51:16 -08002030 bond_3ad_initiate_agg_selection(bond,
2031 AD_AGGREGATOR_SELECTION_TIMER *
2032 ad_ticks_per_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 }
2034}
2035
2036/**
2037 * bond_3ad_bind_slave - initialize a slave's port
2038 * @slave: slave struct to work on
2039 *
2040 * Returns: 0 on success
2041 * < 0 on error
2042 */
dingtianhong359632e2014-01-02 09:13:12 +08002043void bond_3ad_bind_slave(struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
2045 struct bonding *bond = bond_get_bond_by_slave(slave);
2046 struct port *port;
2047 struct aggregator *aggregator;
2048
dingtianhong359632e2014-01-02 09:13:12 +08002049 /* check that the slave has not been initialized yet. */
dingtianhong3fdddd82014-05-12 15:08:43 +08002050 if (SLAVE_AD_INFO(slave)->port.slave != slave) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
dingtianhong359632e2014-01-02 09:13:12 +08002052 /* port initialization */
dingtianhong3fdddd82014-05-12 15:08:43 +08002053 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Peter Pan(潘卫平)bf0239a2011-06-13 04:30:10 +00002055 ad_initialize_port(port, bond->params.lacp_fast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
2057 port->slave = slave;
dingtianhong3fdddd82014-05-12 15:08:43 +08002058 port->actor_port_number = SLAVE_AD_INFO(slave)->id;
Mahesh Bandeward22a5fc2015-05-09 00:01:57 -07002059 /* key is determined according to the link speed, duplex and
2060 * user key
dingtianhong359632e2014-01-02 09:13:12 +08002061 */
Mahesh Bandeward22a5fc2015-05-09 00:01:57 -07002062 port->actor_admin_port_key = bond->params.ad_user_port_key << 6;
Mahesh Bandewar7bb11dc2015-10-31 12:45:06 -07002063 ad_update_actor_keys(port, false);
dingtianhong359632e2014-01-02 09:13:12 +08002064 /* actor system is the bond's system */
Nikolay Aleksandrov5ee14e62016-02-03 13:17:01 +01002065 __ad_actor_update_port(port);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002066 /* tx timer(to verify that no more than MAX_TX_IN_SECOND
2067 * lacpdu's are sent in one second)
2068 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 port->sm_tx_timer_counter = ad_ticks_per_sec/AD_MAX_TX_IN_SECOND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 __disable_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
dingtianhong359632e2014-01-02 09:13:12 +08002073 /* aggregator initialization */
dingtianhong3fdddd82014-05-12 15:08:43 +08002074 aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 ad_initialize_agg(aggregator);
2077
2078 aggregator->aggregator_mac_address = *((struct mac_addr *)bond->dev->dev_addr);
Jiri Bohac163c8ff2014-02-14 18:13:50 +01002079 aggregator->aggregator_identifier = ++BOND_AD_INFO(bond).aggregator_identifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 aggregator->slave = slave;
2081 aggregator->is_active = 0;
2082 aggregator->num_of_ports = 0;
2083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084}
2085
2086/**
2087 * bond_3ad_unbind_slave - deinitialize a slave's port
2088 * @slave: slave struct to work on
2089 *
2090 * Search for the aggregator that is related to this port, remove the
2091 * aggregator and assign another aggregator for other port related to it
2092 * (if any), and remove the port.
2093 */
2094void bond_3ad_unbind_slave(struct slave *slave)
2095{
2096 struct port *port, *prev_port, *temp_port;
2097 struct aggregator *aggregator, *new_aggregator, *temp_aggregator;
2098 int select_new_active_agg = 0;
Veaceslav Falico0b0882642013-09-27 16:12:02 +02002099 struct bonding *bond = slave->bond;
2100 struct slave *slave_iter;
2101 struct list_head *iter;
Mahesh Bandewaree637712014-10-04 17:45:01 -07002102 bool dummy_slave_update; /* Ignore this value as caller updates array */
Jasper Spaansa361c832009-10-23 04:09:24 +00002103
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002104 /* Sync against bond_3ad_state_machine_handler() */
2105 spin_lock_bh(&bond->mode_lock);
dingtianhong3fdddd82014-05-12 15:08:43 +08002106 aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
2107 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002109 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 if (!port->slave) {
Jarod Wilson17720982019-06-07 10:59:30 -04002111 slave_warn(bond->dev, slave->dev, "Trying to unbind an uninitialized port\n");
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002112 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 }
2114
Jarod Wilson17720982019-06-07 10:59:30 -04002115 slave_dbg(bond->dev, slave->dev, "Unbinding Link Aggregation Group %d\n",
2116 aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 /* Tell the partner that this port is not suitable for aggregation */
Andy Roulinc1e469902019-12-26 05:41:57 -08002119 port->actor_oper_port_state &= ~LACP_STATE_SYNCHRONIZATION;
2120 port->actor_oper_port_state &= ~LACP_STATE_COLLECTING;
2121 port->actor_oper_port_state &= ~LACP_STATE_DISTRIBUTING;
2122 port->actor_oper_port_state &= ~LACP_STATE_AGGREGATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 __update_lacpdu_from_port(port);
2124 ad_lacpdu_send(port);
2125
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002126 /* check if this aggregator is occupied */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 if (aggregator->lag_ports) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002128 /* check if there are other ports related to this aggregator
2129 * except the port related to this slave(thats ensure us that
2130 * there is a reason to search for new aggregator, and that we
2131 * will find one
2132 */
2133 if ((aggregator->lag_ports != port) ||
2134 (aggregator->lag_ports->next_port_in_aggregator)) {
2135 /* find new aggregator for the related port(s) */
Veaceslav Falico0b0882642013-09-27 16:12:02 +02002136 bond_for_each_slave(bond, slave_iter, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002137 new_aggregator = &(SLAVE_AD_INFO(slave_iter)->aggregator);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002138 /* if the new aggregator is empty, or it is
2139 * connected to our port only
2140 */
2141 if (!new_aggregator->lag_ports ||
2142 ((new_aggregator->lag_ports == port) &&
2143 !new_aggregator->lag_ports->next_port_in_aggregator))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
Veaceslav Falico0b0882642013-09-27 16:12:02 +02002146 if (!slave_iter)
2147 new_aggregator = NULL;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002148
2149 /* if new aggregator found, copy the aggregator's
2150 * parameters and connect the related lag_ports to the
2151 * new aggregator
2152 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 if ((new_aggregator) && ((!new_aggregator->lag_ports) || ((new_aggregator->lag_ports == port) && !new_aggregator->lag_ports->next_port_in_aggregator))) {
Jarod Wilson17720982019-06-07 10:59:30 -04002154 slave_dbg(bond->dev, slave->dev, "Some port(s) related to LAG %d - replacing with LAG %d\n",
2155 aggregator->aggregator_identifier,
2156 new_aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002158 if ((new_aggregator->lag_ports == port) &&
2159 new_aggregator->is_active) {
Jarod Wilson17720982019-06-07 10:59:30 -04002160 slave_info(bond->dev, slave->dev, "Removing an active aggregator\n");
Colin Ian King3379b3b2018-12-16 13:33:15 +00002161 select_new_active_agg = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 }
2163
2164 new_aggregator->is_individual = aggregator->is_individual;
2165 new_aggregator->actor_admin_aggregator_key = aggregator->actor_admin_aggregator_key;
2166 new_aggregator->actor_oper_aggregator_key = aggregator->actor_oper_aggregator_key;
2167 new_aggregator->partner_system = aggregator->partner_system;
2168 new_aggregator->partner_system_priority = aggregator->partner_system_priority;
2169 new_aggregator->partner_oper_aggregator_key = aggregator->partner_oper_aggregator_key;
2170 new_aggregator->receive_state = aggregator->receive_state;
2171 new_aggregator->transmit_state = aggregator->transmit_state;
2172 new_aggregator->lag_ports = aggregator->lag_ports;
2173 new_aggregator->is_active = aggregator->is_active;
2174 new_aggregator->num_of_ports = aggregator->num_of_ports;
2175
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002176 /* update the information that is written on
2177 * the ports about the aggregator
2178 */
Bandan Das128ea6c2010-10-16 20:19:58 +00002179 for (temp_port = aggregator->lag_ports; temp_port;
2180 temp_port = temp_port->next_port_in_aggregator) {
2181 temp_port->aggregator = new_aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 temp_port->actor_port_aggregator_identifier = new_aggregator->aggregator_identifier;
2183 }
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 ad_clear_agg(aggregator);
Jasper Spaansa361c832009-10-23 04:09:24 +00002186
Bandan Das7bfc4752010-10-16 20:19:59 +00002187 if (select_new_active_agg)
Mahesh Bandewaree637712014-10-04 17:45:01 -07002188 ad_agg_selection_logic(__get_first_agg(port),
2189 &dummy_slave_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 } else {
Jarod Wilson17720982019-06-07 10:59:30 -04002191 slave_warn(bond->dev, slave->dev, "unbinding aggregator, and could not find a new aggregator for its ports\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002193 } else {
2194 /* in case that the only port related to this
2195 * aggregator is the one we want to remove
2196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 select_new_active_agg = aggregator->is_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 ad_clear_agg(aggregator);
2199 if (select_new_active_agg) {
Jarod Wilson17720982019-06-07 10:59:30 -04002200 slave_info(bond->dev, slave->dev, "Removing an active aggregator\n");
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002201 /* select new active aggregator */
Veaceslav Falico74684492013-09-27 15:10:58 +02002202 temp_aggregator = __get_first_agg(port);
2203 if (temp_aggregator)
Mahesh Bandewaree637712014-10-04 17:45:01 -07002204 ad_agg_selection_logic(temp_aggregator,
2205 &dummy_slave_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
2207 }
2208 }
2209
Jarod Wilson17720982019-06-07 10:59:30 -04002210 slave_dbg(bond->dev, slave->dev, "Unbinding port %d\n", port->actor_port_number);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002211
2212 /* find the aggregator that this port is connected to */
Veaceslav Falico0b0882642013-09-27 16:12:02 +02002213 bond_for_each_slave(bond, slave_iter, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002214 temp_aggregator = &(SLAVE_AD_INFO(slave_iter)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 prev_port = NULL;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002216 /* search the port in the aggregator's related ports */
Bandan Das128ea6c2010-10-16 20:19:58 +00002217 for (temp_port = temp_aggregator->lag_ports; temp_port;
2218 prev_port = temp_port,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002219 temp_port = temp_port->next_port_in_aggregator) {
2220 if (temp_port == port) {
2221 /* the aggregator found - detach the port from
2222 * this aggregator
2223 */
Bandan Das7bfc4752010-10-16 20:19:59 +00002224 if (prev_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 prev_port->next_port_in_aggregator = temp_port->next_port_in_aggregator;
Bandan Das7bfc4752010-10-16 20:19:59 +00002226 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 temp_aggregator->lag_ports = temp_port->next_port_in_aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 temp_aggregator->num_of_ports--;
Jay Vosburgh0622cab2016-06-23 14:20:51 -07002229 if (__agg_active_ports(temp_aggregator) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 select_new_active_agg = temp_aggregator->is_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 ad_clear_agg(temp_aggregator);
2232 if (select_new_active_agg) {
Jarod Wilson17720982019-06-07 10:59:30 -04002233 slave_info(bond->dev, slave->dev, "Removing an active aggregator\n");
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002234 /* select new active aggregator */
Mahesh Bandewaree637712014-10-04 17:45:01 -07002235 ad_agg_selection_logic(__get_first_agg(port),
2236 &dummy_slave_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 }
2238 }
2239 break;
2240 }
2241 }
2242 }
Bandan Das128ea6c2010-10-16 20:19:58 +00002243 port->slave = NULL;
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002244
2245out:
2246 spin_unlock_bh(&bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247}
2248
2249/**
Nikolay Aleksandrov5ee14e62016-02-03 13:17:01 +01002250 * bond_3ad_update_ad_actor_settings - reflect change of actor settings to ports
2251 * @bond: bonding struct to work on
2252 *
2253 * If an ad_actor setting gets changed we need to update the individual port
2254 * settings so the bond device will use the new values when it gets upped.
2255 */
2256void bond_3ad_update_ad_actor_settings(struct bonding *bond)
2257{
2258 struct list_head *iter;
2259 struct slave *slave;
2260
2261 ASSERT_RTNL();
2262
2263 BOND_AD_INFO(bond).system.sys_priority = bond->params.ad_actor_sys_prio;
2264 if (is_zero_ether_addr(bond->params.ad_actor_system))
2265 BOND_AD_INFO(bond).system.sys_mac_addr =
2266 *((struct mac_addr *)bond->dev->dev_addr);
2267 else
2268 BOND_AD_INFO(bond).system.sys_mac_addr =
2269 *((struct mac_addr *)bond->params.ad_actor_system);
2270
2271 spin_lock_bh(&bond->mode_lock);
Nikolay Aleksandrov7f20cd22016-02-04 17:42:28 +01002272 bond_for_each_slave(bond, slave, iter) {
2273 struct port *port = &(SLAVE_AD_INFO(slave))->port;
2274
2275 __ad_actor_update_port(port);
2276 port->ntt = true;
2277 }
Nikolay Aleksandrov5ee14e62016-02-03 13:17:01 +01002278 spin_unlock_bh(&bond->mode_lock);
2279}
2280
2281/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 * bond_3ad_state_machine_handler - handle state machines timeout
Lee Jonesa35e5472020-08-14 12:39:04 +01002283 * @work: work context to fetch bonding struct to work on from
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 *
2285 * The state machine handling concept in this module is to check every tick
2286 * which state machine should operate any function. The execution order is
2287 * round robin, so when we have an interaction between state machines, the
2288 * reply of one to each other might be delayed until next tick.
2289 *
2290 * This function also complete the initialization when the agg_select_timer
2291 * times out, and it selects an aggregator for the ports that are yet not
2292 * related to any aggregator, and selects the active aggregator for a bond.
2293 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002294void bond_3ad_state_machine_handler(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002296 struct bonding *bond = container_of(work, struct bonding,
2297 ad_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 struct aggregator *aggregator;
Veaceslav Falico3c4c88a2013-09-27 16:11:57 +02002299 struct list_head *iter;
2300 struct slave *slave;
2301 struct port *port;
dingtianhong5e5b0662014-02-26 11:05:22 +08002302 bool should_notify_rtnl = BOND_SLAVE_NOTIFY_LATER;
Mahesh Bandewaree637712014-10-04 17:45:01 -07002303 bool update_slave_arr = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002305 /* Lock to protect data accessed by all (e.g., port->sm_vars) and
2306 * against running with bond_3ad_unbind_slave. ad_rx_machine may run
2307 * concurrently due to incoming LACPDU as well.
2308 */
Nikolay Aleksandrovb7435622014-09-11 22:49:25 +02002309 spin_lock_bh(&bond->mode_lock);
dingtianhongbe79bd02013-12-13 10:20:12 +08002310 rcu_read_lock();
David S. Miller1f2cd842013-10-28 00:11:22 -04002311
dingtianhongbe79bd02013-12-13 10:20:12 +08002312 /* check if there are any slaves */
Veaceslav Falico0965a1f2013-09-25 09:20:21 +02002313 if (!bond_has_slaves(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
dingtianhongbe79bd02013-12-13 10:20:12 +08002316 /* check if agg_select_timer timer after initialize is timed out */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002317 if (BOND_AD_INFO(bond).agg_select_timer &&
2318 !(--BOND_AD_INFO(bond).agg_select_timer)) {
dingtianhongbe79bd02013-12-13 10:20:12 +08002319 slave = bond_first_slave_rcu(bond);
dingtianhong3fdddd82014-05-12 15:08:43 +08002320 port = slave ? &(SLAVE_AD_INFO(slave)->port) : NULL;
Veaceslav Falicofe9323d2013-09-27 16:11:58 +02002321
dingtianhongbe79bd02013-12-13 10:20:12 +08002322 /* select the active aggregator for the bond */
Veaceslav Falicofe9323d2013-09-27 16:11:58 +02002323 if (port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002325 net_warn_ratelimited("%s: Warning: bond's first port is uninitialized\n",
2326 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 goto re_arm;
2328 }
2329
2330 aggregator = __get_first_agg(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07002331 ad_agg_selection_logic(aggregator, &update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002333 bond_3ad_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 }
2335
dingtianhongbe79bd02013-12-13 10:20:12 +08002336 /* for each port run the state machines */
2337 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002338 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002340 net_warn_ratelimited("%s: Warning: Found an uninitialized port\n",
Veaceslav Falico86a2b9c2014-03-16 17:55:03 +01002341 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 goto re_arm;
2343 }
2344
2345 ad_rx_machine(NULL, port);
Colin Ian Kingbbef56d2021-09-07 09:45:34 +01002346 ad_periodic_machine(port, &bond->params);
Mahesh Bandewaree637712014-10-04 17:45:01 -07002347 ad_port_selection_logic(port, &update_slave_arr);
2348 ad_mux_machine(port, &update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 ad_tx_machine(port);
Mahesh Bandewar14c95512015-02-23 17:50:11 -08002350 ad_churn_machine(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
dingtianhongbe79bd02013-12-13 10:20:12 +08002352 /* turn off the BEGIN bit, since we already handled it */
Bandan Das7bfc4752010-10-16 20:19:59 +00002353 if (port->sm_vars & AD_PORT_BEGIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 port->sm_vars &= ~AD_PORT_BEGIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 }
2356
2357re_arm:
dingtianhong5e5b0662014-02-26 11:05:22 +08002358 bond_for_each_slave_rcu(bond, slave, iter) {
2359 if (slave->should_notify) {
2360 should_notify_rtnl = BOND_SLAVE_NOTIFY_NOW;
2361 break;
2362 }
2363 }
dingtianhongbe79bd02013-12-13 10:20:12 +08002364 rcu_read_unlock();
Nikolay Aleksandrovb7435622014-09-11 22:49:25 +02002365 spin_unlock_bh(&bond->mode_lock);
dingtianhong5e5b0662014-02-26 11:05:22 +08002366
Mahesh Bandewaree637712014-10-04 17:45:01 -07002367 if (update_slave_arr)
2368 bond_slave_arr_work_rearm(bond, 0);
2369
dingtianhong5e5b0662014-02-26 11:05:22 +08002370 if (should_notify_rtnl && rtnl_trylock()) {
dingtianhongb0929912014-02-26 11:05:23 +08002371 bond_slave_state_notify(bond);
dingtianhong5e5b0662014-02-26 11:05:22 +08002372 rtnl_unlock();
2373 }
dingtianhongbe79bd02013-12-13 10:20:12 +08002374 queue_delayed_work(bond->wq, &bond->ad_work, ad_delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375}
2376
2377/**
2378 * bond_3ad_rx_indication - handle a received frame
2379 * @lacpdu: received lacpdu
2380 * @slave: slave struct to work on
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 *
2382 * It is assumed that frames that were sent on this NIC don't returned as new
2383 * received frames (loopback). Since only the payload is given to this
2384 * function, it check for loopback.
2385 */
Nikolay Aleksandrovdadeb612019-01-18 14:30:21 +02002386static int bond_3ad_rx_indication(struct lacpdu *lacpdu, struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387{
Nikolay Aleksandrov949e7ce2019-01-23 19:14:50 +02002388 struct bonding *bond = slave->bond;
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002389 int ret = RX_HANDLER_ANOTHER;
Nikolay Aleksandrov3d021712019-01-18 14:30:20 +02002390 struct bond_marker *marker;
2391 struct port *port;
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +02002392 atomic64_t *stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
Nikolay Aleksandrov3d021712019-01-18 14:30:20 +02002394 port = &(SLAVE_AD_INFO(slave)->port);
2395 if (!port->slave) {
2396 net_warn_ratelimited("%s: Warning: port of slave %s is uninitialized\n",
2397 slave->dev->name, slave->bond->dev->name);
2398 return ret;
2399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
Nikolay Aleksandrov3d021712019-01-18 14:30:20 +02002401 switch (lacpdu->subtype) {
2402 case AD_TYPE_LACPDU:
2403 ret = RX_HANDLER_CONSUMED;
Jarod Wilson17720982019-06-07 10:59:30 -04002404 slave_dbg(slave->bond->dev, slave->dev,
2405 "Received LACPDU on port %d\n",
2406 port->actor_port_number);
Nikolay Aleksandrov3d021712019-01-18 14:30:20 +02002407 /* Protect against concurrent state machines */
2408 spin_lock(&slave->bond->mode_lock);
2409 ad_rx_machine(lacpdu, port);
2410 spin_unlock(&slave->bond->mode_lock);
2411 break;
2412 case AD_TYPE_MARKER:
2413 ret = RX_HANDLER_CONSUMED;
2414 /* No need to convert fields to Little Endian since we
2415 * don't use the marker's fields.
2416 */
2417 marker = (struct bond_marker *)lacpdu;
2418 switch (marker->tlv_type) {
2419 case AD_MARKER_INFORMATION_SUBTYPE:
Jarod Wilson17720982019-06-07 10:59:30 -04002420 slave_dbg(slave->bond->dev, slave->dev, "Received Marker Information on port %d\n",
2421 port->actor_port_number);
Nikolay Aleksandrov3d021712019-01-18 14:30:20 +02002422 ad_marker_info_received(marker, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 break;
Nikolay Aleksandrov3d021712019-01-18 14:30:20 +02002424 case AD_MARKER_RESPONSE_SUBTYPE:
Jarod Wilson17720982019-06-07 10:59:30 -04002425 slave_dbg(slave->bond->dev, slave->dev, "Received Marker Response on port %d\n",
2426 port->actor_port_number);
Nikolay Aleksandrov3d021712019-01-18 14:30:20 +02002427 ad_marker_response_received(marker, port);
2428 break;
2429 default:
Jarod Wilson17720982019-06-07 10:59:30 -04002430 slave_dbg(slave->bond->dev, slave->dev, "Received an unknown Marker subtype on port %d\n",
2431 port->actor_port_number);
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +02002432 stat = &SLAVE_AD_INFO(slave)->stats.marker_unknown_rx;
2433 atomic64_inc(stat);
Nikolay Aleksandrov949e7ce2019-01-23 19:14:50 +02002434 stat = &BOND_AD_INFO(bond).stats.marker_unknown_rx;
2435 atomic64_inc(stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 }
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +02002437 break;
2438 default:
2439 atomic64_inc(&SLAVE_AD_INFO(slave)->stats.lacpdu_unknown_rx);
Nikolay Aleksandrov949e7ce2019-01-23 19:14:50 +02002440 atomic64_inc(&BOND_AD_INFO(bond).stats.lacpdu_unknown_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 }
Nikolay Aleksandrov3d021712019-01-18 14:30:20 +02002442
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002443 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444}
2445
2446/**
Mahesh Bandewar7bb11dc2015-10-31 12:45:06 -07002447 * ad_update_actor_keys - Update the oper / admin keys for a port based on
2448 * its current speed and duplex settings.
2449 *
2450 * @port: the port we'are looking at
2451 * @reset: Boolean to just reset the speed and the duplex part of the key
2452 *
2453 * The logic to change the oper / admin keys is:
2454 * (a) A full duplex port can participate in LACP with partner.
2455 * (b) When the speed is changed, LACP need to be reinitiated.
2456 */
2457static void ad_update_actor_keys(struct port *port, bool reset)
2458{
2459 u8 duplex = 0;
2460 u16 ospeed = 0, speed = 0;
2461 u16 old_oper_key = port->actor_oper_port_key;
2462
2463 port->actor_admin_port_key &= ~(AD_SPEED_KEY_MASKS|AD_DUPLEX_KEY_MASKS);
2464 if (!reset) {
2465 speed = __get_link_speed(port);
2466 ospeed = (old_oper_key & AD_SPEED_KEY_MASKS) >> 1;
2467 duplex = __get_duplex(port);
2468 port->actor_admin_port_key |= (speed << 1) | duplex;
2469 }
2470 port->actor_oper_port_key = port->actor_admin_port_key;
2471
2472 if (old_oper_key != port->actor_oper_port_key) {
2473 /* Only 'duplex' port participates in LACP */
2474 if (duplex)
2475 port->sm_vars |= AD_PORT_LACP_ENABLED;
2476 else
2477 port->sm_vars &= ~AD_PORT_LACP_ENABLED;
2478
2479 if (!reset) {
2480 if (!speed) {
Jarod Wilson17720982019-06-07 10:59:30 -04002481 slave_err(port->slave->bond->dev,
2482 port->slave->dev,
2483 "speed changed to 0 on port %d\n",
2484 port->actor_port_number);
Mahesh Bandewar7bb11dc2015-10-31 12:45:06 -07002485 } else if (duplex && ospeed != speed) {
2486 /* Speed change restarts LACP state-machine */
2487 port->sm_vars |= AD_PORT_BEGIN;
2488 }
2489 }
2490 }
2491}
2492
2493/**
Mahesh Bandewar52bc6712015-10-31 12:45:11 -07002494 * bond_3ad_adapter_speed_duplex_changed - handle a slave's speed / duplex
2495 * change indication
2496 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 * @slave: slave struct to work on
2498 *
2499 * Handle reselection of aggregator (if needed) for this port.
2500 */
Mahesh Bandewar52bc6712015-10-31 12:45:11 -07002501void bond_3ad_adapter_speed_duplex_changed(struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502{
2503 struct port *port;
2504
dingtianhong3fdddd82014-05-12 15:08:43 +08002505 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
dingtianhong71a06c52013-12-13 17:29:19 +08002507 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 if (!port->slave) {
Jarod Wilson17720982019-06-07 10:59:30 -04002509 slave_warn(slave->bond->dev, slave->dev,
2510 "speed/duplex changed for uninitialized port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 return;
2512 }
2513
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002514 spin_lock_bh(&slave->bond->mode_lock);
Mahesh Bandewar7bb11dc2015-10-31 12:45:06 -07002515 ad_update_actor_keys(port, false);
Mahesh Bandeware292dca2017-03-27 11:37:40 -07002516 spin_unlock_bh(&slave->bond->mode_lock);
Jarod Wilson17720982019-06-07 10:59:30 -04002517 slave_dbg(slave->bond->dev, slave->dev, "Port %d changed speed/duplex\n",
2518 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519}
2520
2521/**
2522 * bond_3ad_handle_link_change - handle a slave's link status change indication
2523 * @slave: slave struct to work on
Lee Jonesa35e5472020-08-14 12:39:04 +01002524 * @link: whether the link is now up or down
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 *
2526 * Handle reselection of aggregator (if needed) for this port.
2527 */
2528void bond_3ad_handle_link_change(struct slave *slave, char link)
2529{
Jay Vosburgh0622cab2016-06-23 14:20:51 -07002530 struct aggregator *agg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 struct port *port;
Jay Vosburgh0622cab2016-06-23 14:20:51 -07002532 bool dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
dingtianhong3fdddd82014-05-12 15:08:43 +08002534 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
dingtianhong108db732013-12-13 17:29:29 +08002536 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 if (!port->slave) {
Jarod Wilson17720982019-06-07 10:59:30 -04002538 slave_warn(slave->bond->dev, slave->dev, "link status changed for uninitialized port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 return;
2540 }
2541
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002542 spin_lock_bh(&slave->bond->mode_lock);
dingtianhong108db732013-12-13 17:29:29 +08002543 /* on link down we are zeroing duplex and speed since
2544 * some of the adaptors(ce1000.lan) report full duplex/speed
2545 * instead of N/A(duplex) / 0(speed).
2546 *
2547 * on link up we are forcing recheck on the duplex and speed since
2548 * some of he adaptors(ce1000.lan) report.
2549 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 if (link == BOND_LINK_UP) {
Holger Eitzenbergerf48127b2008-12-26 13:26:54 -08002551 port->is_enabled = true;
Mahesh Bandewar7bb11dc2015-10-31 12:45:06 -07002552 ad_update_actor_keys(port, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 } else {
2554 /* link has failed */
Holger Eitzenbergerf48127b2008-12-26 13:26:54 -08002555 port->is_enabled = false;
Mahesh Bandewar7bb11dc2015-10-31 12:45:06 -07002556 ad_update_actor_keys(port, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 }
Jay Vosburgh0622cab2016-06-23 14:20:51 -07002558 agg = __get_first_agg(port);
2559 ad_agg_selection_logic(agg, &dummy);
2560
Mahesh Bandeware292dca2017-03-27 11:37:40 -07002561 spin_unlock_bh(&slave->bond->mode_lock);
2562
Jarod Wilson17720982019-06-07 10:59:30 -04002563 slave_dbg(slave->bond->dev, slave->dev, "Port %d changed link status to %s\n",
2564 port->actor_port_number,
2565 link == BOND_LINK_UP ? "UP" : "DOWN");
dingtianhong108db732013-12-13 17:29:29 +08002566
Mahesh Bandewaree637712014-10-04 17:45:01 -07002567 /* RTNL is held and mode_lock is released so it's safe
2568 * to update slave_array here.
2569 */
2570 bond_update_slave_arr(slave->bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571}
2572
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002573/**
2574 * bond_3ad_set_carrier - set link state for bonding master
Lee Jonesa35e5472020-08-14 12:39:04 +01002575 * @bond: bonding structure
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002576 *
2577 * if we have an active aggregator, we're up, if not, we're down.
2578 * Presumes that we cannot have an active aggregator if there are
2579 * no slaves with link up.
Jay Vosburghff59c452006-03-27 13:27:43 -08002580 *
Jay Vosburgh031ae4d2007-06-13 22:11:34 -07002581 * This behavior complies with IEEE 802.3 section 43.3.9.
2582 *
Jay Vosburghff59c452006-03-27 13:27:43 -08002583 * Called by bond_set_carrier(). Return zero if carrier state does not
2584 * change, nonzero if it does.
2585 */
2586int bond_3ad_set_carrier(struct bonding *bond)
2587{
stephen hemminger655f8912011-06-22 09:54:39 +00002588 struct aggregator *active;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02002589 struct slave *first_slave;
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002590 int ret = 1;
stephen hemminger655f8912011-06-22 09:54:39 +00002591
dingtianhongbe79bd02013-12-13 10:20:12 +08002592 rcu_read_lock();
2593 first_slave = bond_first_slave_rcu(bond);
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002594 if (!first_slave) {
2595 ret = 0;
2596 goto out;
2597 }
dingtianhong3fdddd82014-05-12 15:08:43 +08002598 active = __get_active_agg(&(SLAVE_AD_INFO(first_slave)->aggregator));
stephen hemminger655f8912011-06-22 09:54:39 +00002599 if (active) {
2600 /* are enough slaves available to consider link up? */
Jay Vosburgh0622cab2016-06-23 14:20:51 -07002601 if (__agg_active_ports(active) < bond->params.min_links) {
stephen hemminger655f8912011-06-22 09:54:39 +00002602 if (netif_carrier_ok(bond->dev)) {
2603 netif_carrier_off(bond->dev);
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002604 goto out;
stephen hemminger655f8912011-06-22 09:54:39 +00002605 }
2606 } else if (!netif_carrier_ok(bond->dev)) {
Jay Vosburghff59c452006-03-27 13:27:43 -08002607 netif_carrier_on(bond->dev);
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002608 goto out;
Jay Vosburghff59c452006-03-27 13:27:43 -08002609 }
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002610 } else if (netif_carrier_ok(bond->dev)) {
Jay Vosburghff59c452006-03-27 13:27:43 -08002611 netif_carrier_off(bond->dev);
Jay Vosburghff59c452006-03-27 13:27:43 -08002612 }
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002613out:
2614 rcu_read_unlock();
2615 return ret;
Jay Vosburghff59c452006-03-27 13:27:43 -08002616}
2617
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618/**
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002619 * __bond_3ad_get_active_agg_info - get information of the active aggregator
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 * @bond: bonding struct to work on
2621 * @ad_info: ad_info struct to fill with the bond's info
2622 *
2623 * Returns: 0 on success
2624 * < 0 on error
2625 */
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002626int __bond_3ad_get_active_agg_info(struct bonding *bond,
2627 struct ad_info *ad_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628{
2629 struct aggregator *aggregator = NULL;
Veaceslav Falico3c4c88a2013-09-27 16:11:57 +02002630 struct list_head *iter;
2631 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 struct port *port;
2633
dingtianhong47e91f562013-10-15 16:28:35 +08002634 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002635 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 if (port->aggregator && port->aggregator->is_active) {
2637 aggregator = port->aggregator;
2638 break;
2639 }
2640 }
2641
Joe Perches21f374c2014-02-18 09:42:47 -08002642 if (!aggregator)
2643 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Joe Perches21f374c2014-02-18 09:42:47 -08002645 ad_info->aggregator_id = aggregator->aggregator_identifier;
Jarod Wilson751da2a2017-05-19 19:43:45 -04002646 ad_info->ports = __agg_active_ports(aggregator);
Joe Perches21f374c2014-02-18 09:42:47 -08002647 ad_info->actor_key = aggregator->actor_oper_aggregator_key;
2648 ad_info->partner_key = aggregator->partner_oper_aggregator_key;
2649 ether_addr_copy(ad_info->partner_system,
2650 aggregator->partner_system.mac_addr_value);
2651 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652}
2653
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002654int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info)
2655{
2656 int ret;
2657
dingtianhong47e91f562013-10-15 16:28:35 +08002658 rcu_read_lock();
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002659 ret = __bond_3ad_get_active_agg_info(bond, ad_info);
dingtianhong47e91f562013-10-15 16:28:35 +08002660 rcu_read_unlock();
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002661
2662 return ret;
2663}
2664
Eric Dumazetde063b72012-06-11 19:23:07 +00002665int bond_3ad_lacpdu_recv(const struct sk_buff *skb, struct bonding *bond,
2666 struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
Eric Dumazetde063b72012-06-11 19:23:07 +00002668 struct lacpdu *lacpdu, _lacpdu;
2669
Jiri Pirko3aba8912011-04-19 03:48:16 +00002670 if (skb->protocol != PKT_TYPE_LACPDU)
Nikolay Aleksandrov86e74982014-09-11 22:49:22 +02002671 return RX_HANDLER_ANOTHER;
Neil Hormanb3053252011-01-20 09:02:31 +00002672
Mahesh Bandewarbb54e582015-02-23 17:50:10 -08002673 if (!MAC_ADDRESS_EQUAL(eth_hdr(skb)->h_dest, lacpdu_mcast_addr))
2674 return RX_HANDLER_ANOTHER;
2675
Eric Dumazetde063b72012-06-11 19:23:07 +00002676 lacpdu = skb_header_pointer(skb, 0, sizeof(_lacpdu), &_lacpdu);
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +02002677 if (!lacpdu) {
2678 atomic64_inc(&SLAVE_AD_INFO(slave)->stats.lacpdu_illegal_rx);
Nikolay Aleksandrov949e7ce2019-01-23 19:14:50 +02002679 atomic64_inc(&BOND_AD_INFO(bond).stats.lacpdu_illegal_rx);
Nikolay Aleksandrov86e74982014-09-11 22:49:22 +02002680 return RX_HANDLER_ANOTHER;
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +02002681 }
Andy Gospodarekab128112010-09-10 11:43:20 +00002682
Nikolay Aleksandrovdadeb612019-01-18 14:30:21 +02002683 return bond_3ad_rx_indication(lacpdu, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684}
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002685
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002686/**
2687 * bond_3ad_update_lacp_rate - change the lacp rate
Lee Jonesa35e5472020-08-14 12:39:04 +01002688 * @bond: bonding struct
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002689 *
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002690 * When modify lacp_rate parameter via sysfs,
2691 * update actor_oper_port_state of each port.
2692 *
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002693 * Hold bond->mode_lock,
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002694 * so we can modify port->actor_oper_port_state,
2695 * no matter bond is up or down.
2696 */
2697void bond_3ad_update_lacp_rate(struct bonding *bond)
2698{
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002699 struct port *port = NULL;
Veaceslav Falico9caff1e72013-09-25 09:20:14 +02002700 struct list_head *iter;
nikolay@redhat.comc5093162013-09-02 13:51:40 +02002701 struct slave *slave;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002702 int lacp_fast;
2703
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002704 lacp_fast = bond->params.lacp_fast;
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002705 spin_lock_bh(&bond->mode_lock);
Veaceslav Falico9caff1e72013-09-25 09:20:14 +02002706 bond_for_each_slave(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002707 port = &(SLAVE_AD_INFO(slave)->port);
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002708 if (lacp_fast)
Andy Roulinc1e469902019-12-26 05:41:57 -08002709 port->actor_oper_port_state |= LACP_STATE_LACP_TIMEOUT;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002710 else
Andy Roulinc1e469902019-12-26 05:41:57 -08002711 port->actor_oper_port_state &= ~LACP_STATE_LACP_TIMEOUT;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002712 }
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002713 spin_unlock_bh(&bond->mode_lock);
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002714}
Nikolay Aleksandrova258aea2019-01-18 14:30:23 +02002715
Nikolay Aleksandrova258aea2019-01-18 14:30:23 +02002716size_t bond_3ad_stats_size(void)
2717{
2718 return nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_LACPDU_RX */
2719 nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_LACPDU_TX */
2720 nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_LACPDU_UNKNOWN_RX */
2721 nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_LACPDU_ILLEGAL_RX */
2722 nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_MARKER_RX */
2723 nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_MARKER_TX */
2724 nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_MARKER_RESP_RX */
2725 nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_MARKER_RESP_TX */
2726 nla_total_size_64bit(sizeof(u64)); /* BOND_3AD_STAT_MARKER_UNKNOWN_RX */
2727}
2728
2729int bond_3ad_stats_fill(struct sk_buff *skb, struct bond_3ad_stats *stats)
2730{
2731 u64 val;
2732
2733 val = atomic64_read(&stats->lacpdu_rx);
2734 if (nla_put_u64_64bit(skb, BOND_3AD_STAT_LACPDU_RX, val,
2735 BOND_3AD_STAT_PAD))
2736 return -EMSGSIZE;
2737 val = atomic64_read(&stats->lacpdu_tx);
2738 if (nla_put_u64_64bit(skb, BOND_3AD_STAT_LACPDU_TX, val,
2739 BOND_3AD_STAT_PAD))
2740 return -EMSGSIZE;
2741 val = atomic64_read(&stats->lacpdu_unknown_rx);
2742 if (nla_put_u64_64bit(skb, BOND_3AD_STAT_LACPDU_UNKNOWN_RX, val,
2743 BOND_3AD_STAT_PAD))
2744 return -EMSGSIZE;
2745 val = atomic64_read(&stats->lacpdu_illegal_rx);
2746 if (nla_put_u64_64bit(skb, BOND_3AD_STAT_LACPDU_ILLEGAL_RX, val,
2747 BOND_3AD_STAT_PAD))
2748 return -EMSGSIZE;
2749
2750 val = atomic64_read(&stats->marker_rx);
2751 if (nla_put_u64_64bit(skb, BOND_3AD_STAT_MARKER_RX, val,
2752 BOND_3AD_STAT_PAD))
2753 return -EMSGSIZE;
2754 val = atomic64_read(&stats->marker_tx);
2755 if (nla_put_u64_64bit(skb, BOND_3AD_STAT_MARKER_TX, val,
2756 BOND_3AD_STAT_PAD))
2757 return -EMSGSIZE;
2758 val = atomic64_read(&stats->marker_resp_rx);
2759 if (nla_put_u64_64bit(skb, BOND_3AD_STAT_MARKER_RESP_RX, val,
2760 BOND_3AD_STAT_PAD))
2761 return -EMSGSIZE;
2762 val = atomic64_read(&stats->marker_resp_tx);
2763 if (nla_put_u64_64bit(skb, BOND_3AD_STAT_MARKER_RESP_TX, val,
2764 BOND_3AD_STAT_PAD))
2765 return -EMSGSIZE;
2766 val = atomic64_read(&stats->marker_unknown_rx);
2767 if (nla_put_u64_64bit(skb, BOND_3AD_STAT_MARKER_UNKNOWN_RX, val,
2768 BOND_3AD_STAT_PAD))
2769 return -EMSGSIZE;
2770
2771 return 0;
2772}