blob: e5386ab706ec7fa394162b338c6ff4ad1de8944c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation; either version 2 of the License, or (at your option)
7 * any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59
16 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/skbuff.h>
24#include <linux/if_ether.h>
25#include <linux/netdevice.h>
26#include <linux/spinlock.h>
27#include <linux/ethtool.h>
Jay Vosburghfd989c82008-11-04 17:51:16 -080028#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/if_bonding.h>
30#include <linux/pkt_sched.h>
Eric W. Biedermane730c152007-09-17 11:53:39 -070031#include <net/net_namespace.h>
David S. Miller1ef80192014-11-10 13:27:49 -050032#include <net/bonding.h>
33#include <net/bond_3ad.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Veaceslav Falico3bf2d282014-01-08 16:46:46 +010035/* General definitions */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define AD_SHORT_TIMEOUT 1
37#define AD_LONG_TIMEOUT 0
38#define AD_STANDBY 0x2
39#define AD_MAX_TX_IN_SECOND 3
40#define AD_COLLECTOR_MAX_DELAY 0
41
Veaceslav Falico3bf2d282014-01-08 16:46:46 +010042/* Timer definitions (43.4.4 in the 802.3ad standard) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#define AD_FAST_PERIODIC_TIME 1
44#define AD_SLOW_PERIODIC_TIME 30
45#define AD_SHORT_TIMEOUT_TIME (3*AD_FAST_PERIODIC_TIME)
46#define AD_LONG_TIMEOUT_TIME (3*AD_SLOW_PERIODIC_TIME)
47#define AD_CHURN_DETECTION_TIME 60
48#define AD_AGGREGATE_WAIT_TIME 2
49
Veaceslav Falico3bf2d282014-01-08 16:46:46 +010050/* Port state definitions (43.4.2.2 in the 802.3ad standard) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define AD_STATE_LACP_ACTIVITY 0x1
52#define AD_STATE_LACP_TIMEOUT 0x2
53#define AD_STATE_AGGREGATION 0x4
54#define AD_STATE_SYNCHRONIZATION 0x8
55#define AD_STATE_COLLECTING 0x10
56#define AD_STATE_DISTRIBUTING 0x20
57#define AD_STATE_DEFAULTED 0x40
58#define AD_STATE_EXPIRED 0x80
59
Veaceslav Falico3bf2d282014-01-08 16:46:46 +010060/* Port Variables definitions used by the State Machines (43.4.7 in the
61 * 802.3ad standard)
62 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define AD_PORT_BEGIN 0x1
64#define AD_PORT_LACP_ENABLED 0x2
65#define AD_PORT_ACTOR_CHURN 0x4
66#define AD_PORT_PARTNER_CHURN 0x8
67#define AD_PORT_READY 0x10
68#define AD_PORT_READY_N 0x20
69#define AD_PORT_MATCHED 0x40
70#define AD_PORT_STANDBY 0x80
71#define AD_PORT_SELECTED 0x100
72#define AD_PORT_MOVED 0x200
Mahesh Bandewaref015d72015-03-30 14:30:40 -070073#define AD_PORT_CHURNED (AD_PORT_ACTOR_CHURN | AD_PORT_PARTNER_CHURN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Veaceslav Falico3bf2d282014-01-08 16:46:46 +010075/* Port Key definitions
76 * key is determined according to the link speed, duplex and
77 * user key (which is yet not supported)
Mahesh Bandeward22a5fc2015-05-09 00:01:57 -070078 * --------------------------------------------------------------
79 * Port key | User key (10 bits) | Speed (5 bits) | Duplex|
80 * --------------------------------------------------------------
81 * |15 6|5 1|0
Veaceslav Falico3bf2d282014-01-08 16:46:46 +010082 */
Jianhua Xiecb8dda92014-11-19 16:48:58 +080083#define AD_DUPLEX_KEY_MASKS 0x1
84#define AD_SPEED_KEY_MASKS 0x3E
85#define AD_USER_KEY_MASKS 0xFFC0
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Jianhua Xiecb8dda92014-11-19 16:48:58 +080087enum ad_link_speed_type {
88 AD_LINK_SPEED_1MBPS = 1,
89 AD_LINK_SPEED_10MBPS,
90 AD_LINK_SPEED_100MBPS,
91 AD_LINK_SPEED_1000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +080092 AD_LINK_SPEED_2500MBPS,
Thibaut Colletc7c55062017-06-08 11:18:11 +020093 AD_LINK_SPEED_5000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +080094 AD_LINK_SPEED_10000MBPS,
Nicolas Dichtel3fcd64c2017-06-08 11:18:12 +020095 AD_LINK_SPEED_14000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +080096 AD_LINK_SPEED_20000MBPS,
Jarod Wilson19ddde12017-03-14 11:48:32 -040097 AD_LINK_SPEED_25000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +080098 AD_LINK_SPEED_40000MBPS,
Thibaut Colletc7c55062017-06-08 11:18:11 +020099 AD_LINK_SPEED_50000MBPS,
Jiri Pirko3952af42015-12-03 12:12:05 +0100100 AD_LINK_SPEED_56000MBPS,
101 AD_LINK_SPEED_100000MBPS,
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800102};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
dingtianhong815117a2014-01-02 09:12:54 +0800104/* compare MAC addresses */
105#define MAC_ADDRESS_EQUAL(A, B) \
106 ether_addr_equal_64bits((const u8 *)A, (const u8 *)B)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Eric Dumazetf87fda02016-06-30 16:13:41 +0200108static const u8 null_mac_addr[ETH_ALEN + 2] __long_aligned = {
109 0, 0, 0, 0, 0, 0
110};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static u16 ad_ticks_per_sec;
112static const int ad_delta_in_ticks = (AD_TIMER_INTERVAL * HZ) / 1000;
113
Eric Dumazetf87fda02016-06-30 16:13:41 +0200114static const u8 lacpdu_mcast_addr[ETH_ALEN + 2] __long_aligned =
115 MULTICAST_LACPDU_ADDR;
Holger Eitzenbergere4ac4322008-12-26 13:40:48 -0800116
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100117/* ================= main 802.3ad protocol functions ================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118static int ad_lacpdu_send(struct port *port);
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700119static int ad_marker_send(struct port *port, struct bond_marker *marker);
Mahesh Bandewaree637712014-10-04 17:45:01 -0700120static void ad_mux_machine(struct port *port, bool *update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static void ad_rx_machine(struct lacpdu *lacpdu, struct port *port);
122static void ad_tx_machine(struct port *port);
123static void ad_periodic_machine(struct port *port);
Mahesh Bandewaree637712014-10-04 17:45:01 -0700124static void ad_port_selection_logic(struct port *port, bool *update_slave_arr);
125static void ad_agg_selection_logic(struct aggregator *aggregator,
126 bool *update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static void ad_clear_agg(struct aggregator *aggregator);
128static void ad_initialize_agg(struct aggregator *aggregator);
129static void ad_initialize_port(struct port *port, int lacp_fast);
Mahesh Bandewaree637712014-10-04 17:45:01 -0700130static void ad_enable_collecting_distributing(struct port *port,
131 bool *update_slave_arr);
132static void ad_disable_collecting_distributing(struct port *port,
133 bool *update_slave_arr);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100134static void ad_marker_info_received(struct bond_marker *marker_info,
135 struct port *port);
136static void ad_marker_response_received(struct bond_marker *marker,
137 struct port *port);
Mahesh Bandewar7bb11dc2015-10-31 12:45:06 -0700138static void ad_update_actor_keys(struct port *port, bool reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100141/* ================= api to bonding and kernel code ================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143/**
144 * __get_bond_by_port - get the port's bonding struct
145 * @port: the port we're looking at
146 *
147 * Return @port's bonding struct, or %NULL if it can't be found.
148 */
149static inline struct bonding *__get_bond_by_port(struct port *port)
150{
Bandan Das7bfc4752010-10-16 20:19:59 +0000151 if (port->slave == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 return bond_get_bond_by_slave(port->slave);
155}
156
157/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 * __get_first_agg - get the first aggregator in the bond
159 * @bond: the bond we're looking at
160 *
161 * Return the aggregator of the first slave in @bond, or %NULL if it can't be
162 * found.
Veaceslav Falico768b9542014-01-10 11:59:44 +0100163 * The caller must hold RCU or RTNL lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 */
165static inline struct aggregator *__get_first_agg(struct port *port)
166{
167 struct bonding *bond = __get_bond_by_port(port);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200168 struct slave *first_slave;
Veaceslav Falico768b9542014-01-10 11:59:44 +0100169 struct aggregator *agg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
dingtianhongbe79bd02013-12-13 10:20:12 +0800171 /* If there's no bond for this port, or bond has no slaves */
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200172 if (bond == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return NULL;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100174
dingtianhongbe79bd02013-12-13 10:20:12 +0800175 rcu_read_lock();
176 first_slave = bond_first_slave_rcu(bond);
dingtianhong3fdddd82014-05-12 15:08:43 +0800177 agg = first_slave ? &(SLAVE_AD_INFO(first_slave)->aggregator) : NULL;
dingtianhongbe79bd02013-12-13 10:20:12 +0800178 rcu_read_unlock();
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100179
Veaceslav Falico768b9542014-01-10 11:59:44 +0100180 return agg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100183/**
184 * __agg_has_partner - see if we have a partner
185 * @agg: the agregator we're looking at
Jay Vosburghfd989c82008-11-04 17:51:16 -0800186 *
187 * Return nonzero if aggregator has a partner (denoted by a non-zero ether
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100188 * address for the partner). Return 0 if not.
Jay Vosburghfd989c82008-11-04 17:51:16 -0800189 */
190static inline int __agg_has_partner(struct aggregator *agg)
191{
192 return !is_zero_ether_addr(agg->partner_system.mac_addr_value);
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/**
196 * __disable_port - disable the port's slave
197 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 */
199static inline void __disable_port(struct port *port)
200{
dingtianhong5e5b0662014-02-26 11:05:22 +0800201 bond_set_slave_inactive_flags(port->slave, BOND_SLAVE_NOTIFY_LATER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
204/**
205 * __enable_port - enable the port's slave, if it's up
206 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 */
208static inline void __enable_port(struct port *port)
209{
210 struct slave *slave = port->slave;
211
Veaceslav Falicob6adc612014-05-15 21:39:57 +0200212 if ((slave->link == BOND_LINK_UP) && bond_slave_is_up(slave))
dingtianhong5e5b0662014-02-26 11:05:22 +0800213 bond_set_slave_active_flags(slave, BOND_SLAVE_NOTIFY_LATER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
216/**
217 * __port_is_enabled - check if the port's slave is in active state
218 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 */
220static inline int __port_is_enabled(struct port *port)
221{
Jiri Pirkoe30bc062011-03-12 03:14:37 +0000222 return bond_is_active_slave(port->slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
225/**
226 * __get_agg_selection_mode - get the aggregator selection mode
227 * @port: the port we're looking at
228 *
Jay Vosburghfd989c82008-11-04 17:51:16 -0800229 * Get the aggregator selection mode. Can be %STABLE, %BANDWIDTH or %COUNT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 */
231static inline u32 __get_agg_selection_mode(struct port *port)
232{
233 struct bonding *bond = __get_bond_by_port(port);
234
Bandan Das7bfc4752010-10-16 20:19:59 +0000235 if (bond == NULL)
Jay Vosburghfd989c82008-11-04 17:51:16 -0800236 return BOND_AD_STABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Peter Pan(潘卫平)1a14fbc2011-06-08 21:19:03 +0000238 return bond->params.ad_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
241/**
242 * __check_agg_selection_timer - check if the selection timer has expired
243 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 */
245static inline int __check_agg_selection_timer(struct port *port)
246{
247 struct bonding *bond = __get_bond_by_port(port);
248
Bandan Das7bfc4752010-10-16 20:19:59 +0000249 if (bond == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 return BOND_AD_INFO(bond).agg_select_timer ? 1 : 0;
253}
254
255/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 * __get_link_speed - get a port's speed
257 * @port: the port we're looking at
258 *
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800259 * Return @port's speed in 802.3ad enum format. i.e. one of:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 * 0,
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800261 * %AD_LINK_SPEED_10MBPS,
262 * %AD_LINK_SPEED_100MBPS,
263 * %AD_LINK_SPEED_1000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +0800264 * %AD_LINK_SPEED_2500MBPS,
Thibaut Colletc7c55062017-06-08 11:18:11 +0200265 * %AD_LINK_SPEED_5000MBPS,
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800266 * %AD_LINK_SPEED_10000MBPS
Nicolas Dichtel3fcd64c2017-06-08 11:18:12 +0200267 * %AD_LINK_SPEED_14000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +0800268 * %AD_LINK_SPEED_20000MBPS
Jarod Wilson19ddde12017-03-14 11:48:32 -0400269 * %AD_LINK_SPEED_25000MBPS
Jianhua Xie424c3232014-11-19 16:48:59 +0800270 * %AD_LINK_SPEED_40000MBPS
Thibaut Colletc7c55062017-06-08 11:18:11 +0200271 * %AD_LINK_SPEED_50000MBPS
Jianhua Xie424c3232014-11-19 16:48:59 +0800272 * %AD_LINK_SPEED_56000MBPS
Jiri Pirko3952af42015-12-03 12:12:05 +0100273 * %AD_LINK_SPEED_100000MBPS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 */
275static u16 __get_link_speed(struct port *port)
276{
277 struct slave *slave = port->slave;
278 u16 speed;
279
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100280 /* this if covers only a special case: when the configuration starts
281 * with link down, it sets the speed to 0.
282 * This is done in spite of the fact that the e100 driver reports 0
283 * to be compatible with MVT in the future.
284 */
Bandan Das7bfc4752010-10-16 20:19:59 +0000285 if (slave->link != BOND_LINK_UP)
Bandan Das128ea6c2010-10-16 20:19:58 +0000286 speed = 0;
Bandan Das7bfc4752010-10-16 20:19:59 +0000287 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 switch (slave->speed) {
289 case SPEED_10:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800290 speed = AD_LINK_SPEED_10MBPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 break;
292
293 case SPEED_100:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800294 speed = AD_LINK_SPEED_100MBPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 break;
296
297 case SPEED_1000:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800298 speed = AD_LINK_SPEED_1000MBPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 break;
300
Jianhua Xie424c3232014-11-19 16:48:59 +0800301 case SPEED_2500:
302 speed = AD_LINK_SPEED_2500MBPS;
303 break;
304
Thibaut Colletc7c55062017-06-08 11:18:11 +0200305 case SPEED_5000:
306 speed = AD_LINK_SPEED_5000MBPS;
307 break;
308
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700309 case SPEED_10000:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800310 speed = AD_LINK_SPEED_10000MBPS;
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700311 break;
312
Nicolas Dichtel3fcd64c2017-06-08 11:18:12 +0200313 case SPEED_14000:
314 speed = AD_LINK_SPEED_14000MBPS;
315 break;
316
Jianhua Xie424c3232014-11-19 16:48:59 +0800317 case SPEED_20000:
318 speed = AD_LINK_SPEED_20000MBPS;
319 break;
320
Jarod Wilson19ddde12017-03-14 11:48:32 -0400321 case SPEED_25000:
322 speed = AD_LINK_SPEED_25000MBPS;
323 break;
324
Jianhua Xie424c3232014-11-19 16:48:59 +0800325 case SPEED_40000:
326 speed = AD_LINK_SPEED_40000MBPS;
327 break;
328
Thibaut Colletc7c55062017-06-08 11:18:11 +0200329 case SPEED_50000:
330 speed = AD_LINK_SPEED_50000MBPS;
331 break;
332
Jianhua Xie424c3232014-11-19 16:48:59 +0800333 case SPEED_56000:
334 speed = AD_LINK_SPEED_56000MBPS;
335 break;
336
Jiri Pirko3952af42015-12-03 12:12:05 +0100337 case SPEED_100000:
338 speed = AD_LINK_SPEED_100000MBPS;
339 break;
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 default:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100342 /* unknown speed value from ethtool. shouldn't happen */
343 speed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 break;
345 }
346 }
347
Veaceslav Falicod4471f52014-07-15 19:36:00 +0200348 netdev_dbg(slave->bond->dev, "Port %d Received link speed %d update from adapter\n",
349 port->actor_port_number, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return speed;
351}
352
353/**
354 * __get_duplex - get a port's duplex
355 * @port: the port we're looking at
356 *
357 * Return @port's duplex in 802.3ad bitmask format. i.e.:
358 * 0x01 if in full duplex
359 * 0x00 otherwise
360 */
361static u8 __get_duplex(struct port *port)
362{
363 struct slave *slave = port->slave;
Mahesh Bandewarb25c2e72015-10-31 12:45:00 -0700364 u8 retval = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100366 /* handling a special case: when the configuration starts with
367 * link down, it sets the duplex to 0.
368 */
Mahesh Bandewarb25c2e72015-10-31 12:45:00 -0700369 if (slave->link == BOND_LINK_UP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 switch (slave->duplex) {
371 case DUPLEX_FULL:
Bandan Das128ea6c2010-10-16 20:19:58 +0000372 retval = 0x1;
Veaceslav Falicod4471f52014-07-15 19:36:00 +0200373 netdev_dbg(slave->bond->dev, "Port %d Received status full duplex update from adapter\n",
374 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 break;
376 case DUPLEX_HALF:
377 default:
Bandan Das128ea6c2010-10-16 20:19:58 +0000378 retval = 0x0;
Veaceslav Falicod4471f52014-07-15 19:36:00 +0200379 netdev_dbg(slave->bond->dev, "Port %d Received status NOT full duplex update from adapter\n",
380 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 break;
382 }
383 }
384 return retval;
385}
386
Nikolay Aleksandrov5ee14e62016-02-03 13:17:01 +0100387static void __ad_actor_update_port(struct port *port)
388{
389 const struct bonding *bond = bond_get_bond_by_slave(port->slave);
390
391 port->actor_system = BOND_AD_INFO(bond).system.sys_mac_addr;
392 port->actor_system_priority = BOND_AD_INFO(bond).system.sys_priority;
393}
394
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100395/* Conversions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397/**
398 * __ad_timer_to_ticks - convert a given timer type to AD module ticks
399 * @timer_type: which timer to operate
400 * @par: timer parameter. see below
401 *
402 * If @timer_type is %current_while_timer, @par indicates long/short timer.
403 * If @timer_type is %periodic_timer, @par is one of %FAST_PERIODIC_TIME,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100404 * %SLOW_PERIODIC_TIME.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 */
406static u16 __ad_timer_to_ticks(u16 timer_type, u16 par)
407{
Bandan Das128ea6c2010-10-16 20:19:58 +0000408 u16 retval = 0; /* to silence the compiler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 switch (timer_type) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100411 case AD_CURRENT_WHILE_TIMER: /* for rx machine usage */
Bandan Das7bfc4752010-10-16 20:19:59 +0000412 if (par)
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100413 retval = (AD_SHORT_TIMEOUT_TIME*ad_ticks_per_sec);
Bandan Das7bfc4752010-10-16 20:19:59 +0000414 else
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100415 retval = (AD_LONG_TIMEOUT_TIME*ad_ticks_per_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100417 case AD_ACTOR_CHURN_TIMER: /* for local churn machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 retval = (AD_CHURN_DETECTION_TIME*ad_ticks_per_sec);
419 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100420 case AD_PERIODIC_TIMER: /* for periodic machine */
421 retval = (par*ad_ticks_per_sec); /* long timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100423 case AD_PARTNER_CHURN_TIMER: /* for remote churn machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 retval = (AD_CHURN_DETECTION_TIME*ad_ticks_per_sec);
425 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100426 case AD_WAIT_WHILE_TIMER: /* for selection machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 retval = (AD_AGGREGATE_WAIT_TIME*ad_ticks_per_sec);
428 break;
429 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return retval;
432}
433
434
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100435/* ================= ad_rx_machine helper functions ================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437/**
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000438 * __choose_matched - update a port's matched variable from a received lacpdu
439 * @lacpdu: the lacpdu we've received
440 * @port: the port we're looking at
441 *
442 * Update the value of the matched variable, using parameter values from a
443 * newly received lacpdu. Parameter values for the partner carried in the
444 * received PDU are compared with the corresponding operational parameter
445 * values for the actor. Matched is set to TRUE if all of these parameters
446 * match and the PDU parameter partner_state.aggregation has the same value as
447 * actor_oper_port_state.aggregation and lacp will actively maintain the link
448 * in the aggregation. Matched is also set to TRUE if the value of
449 * actor_state.aggregation in the received PDU is set to FALSE, i.e., indicates
450 * an individual link and lacp will actively maintain the link. Otherwise,
451 * matched is set to FALSE. LACP is considered to be actively maintaining the
452 * link if either the PDU's actor_state.lacp_activity variable is TRUE or both
453 * the actor's actor_oper_port_state.lacp_activity and the PDU's
454 * partner_state.lacp_activity variables are TRUE.
455 *
456 * Note: the AD_PORT_MATCHED "variable" is not specified by 802.3ad; it is
457 * used here to implement the language from 802.3ad 43.4.9 that requires
458 * recordPDU to "match" the LACPDU parameters to the stored values.
459 */
460static void __choose_matched(struct lacpdu *lacpdu, struct port *port)
461{
dingtianhong815117a2014-01-02 09:12:54 +0800462 /* check if all parameters are alike
463 * or this is individual link(aggregation == FALSE)
464 * then update the state machine Matched variable.
465 */
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000466 if (((ntohs(lacpdu->partner_port) == port->actor_port_number) &&
467 (ntohs(lacpdu->partner_port_priority) == port->actor_port_priority) &&
dingtianhong815117a2014-01-02 09:12:54 +0800468 MAC_ADDRESS_EQUAL(&(lacpdu->partner_system), &(port->actor_system)) &&
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000469 (ntohs(lacpdu->partner_system_priority) == port->actor_system_priority) &&
470 (ntohs(lacpdu->partner_key) == port->actor_oper_port_key) &&
471 ((lacpdu->partner_state & AD_STATE_AGGREGATION) == (port->actor_oper_port_state & AD_STATE_AGGREGATION))) ||
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000472 ((lacpdu->actor_state & AD_STATE_AGGREGATION) == 0)
473 ) {
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000474 port->sm_vars |= AD_PORT_MATCHED;
475 } else {
476 port->sm_vars &= ~AD_PORT_MATCHED;
477 }
478}
479
480/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 * __record_pdu - record parameters from a received lacpdu
482 * @lacpdu: the lacpdu we've received
483 * @port: the port we're looking at
484 *
485 * Record the parameter values for the Actor carried in a received lacpdu as
486 * the current partner operational parameter values and sets
487 * actor_oper_port_state.defaulted to FALSE.
488 */
489static void __record_pdu(struct lacpdu *lacpdu, struct port *port)
490{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (lacpdu && port) {
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800492 struct port_params *partner = &port->partner_oper;
493
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000494 __choose_matched(lacpdu, port);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100495 /* record the new parameter values for the partner
496 * operational
497 */
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800498 partner->port_number = ntohs(lacpdu->actor_port);
499 partner->port_priority = ntohs(lacpdu->actor_port_priority);
500 partner->system = lacpdu->actor_system;
501 partner->system_priority = ntohs(lacpdu->actor_system_priority);
502 partner->key = ntohs(lacpdu->actor_key);
503 partner->port_state = lacpdu->actor_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100505 /* set actor_oper_port_state.defaulted to FALSE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 port->actor_oper_port_state &= ~AD_STATE_DEFAULTED;
507
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100508 /* set the partner sync. to on if the partner is sync,
509 * and the port is matched
510 */
Wilson Kok63b46242015-01-26 01:16:59 -0500511 if ((port->sm_vars & AD_PORT_MATCHED) &&
512 (lacpdu->actor_state & AD_STATE_SYNCHRONIZATION)) {
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800513 partner->port_state |= AD_STATE_SYNCHRONIZATION;
Wilson Kok63b46242015-01-26 01:16:59 -0500514 pr_debug("%s partner sync=1\n", port->slave->dev->name);
515 } else {
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800516 partner->port_state &= ~AD_STATE_SYNCHRONIZATION;
Wilson Kok63b46242015-01-26 01:16:59 -0500517 pr_debug("%s partner sync=0\n", port->slave->dev->name);
518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520}
521
522/**
523 * __record_default - record default parameters
524 * @port: the port we're looking at
525 *
526 * This function records the default parameter values for the partner carried
527 * in the Partner Admin parameters as the current partner operational parameter
528 * values and sets actor_oper_port_state.defaulted to TRUE.
529 */
530static void __record_default(struct port *port)
531{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (port) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100533 /* record the partner admin parameters */
Holger Eitzenberger5eefd1a2008-12-17 19:08:46 -0800534 memcpy(&port->partner_oper, &port->partner_admin,
535 sizeof(struct port_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100537 /* set actor_oper_port_state.defaulted to true */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 port->actor_oper_port_state |= AD_STATE_DEFAULTED;
539 }
540}
541
542/**
543 * __update_selected - update a port's Selected variable from a received lacpdu
544 * @lacpdu: the lacpdu we've received
545 * @port: the port we're looking at
546 *
547 * Update the value of the selected variable, using parameter values from a
548 * newly received lacpdu. The parameter values for the Actor carried in the
549 * received PDU are compared with the corresponding operational parameter
550 * values for the ports partner. If one or more of the comparisons shows that
551 * the value(s) received in the PDU differ from the current operational values,
552 * then selected is set to FALSE and actor_oper_port_state.synchronization is
553 * set to out_of_sync. Otherwise, selected remains unchanged.
554 */
555static void __update_selected(struct lacpdu *lacpdu, struct port *port)
556{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (lacpdu && port) {
Holger Eitzenbergerce6a49a2008-12-17 19:13:07 -0800558 const struct port_params *partner = &port->partner_oper;
559
dingtianhong815117a2014-01-02 09:12:54 +0800560 /* check if any parameter is different then
561 * update the state machine selected variable.
562 */
Joe Perches8e95a202009-12-03 07:58:21 +0000563 if (ntohs(lacpdu->actor_port) != partner->port_number ||
564 ntohs(lacpdu->actor_port_priority) != partner->port_priority ||
dingtianhong815117a2014-01-02 09:12:54 +0800565 !MAC_ADDRESS_EQUAL(&lacpdu->actor_system, &partner->system) ||
Joe Perches8e95a202009-12-03 07:58:21 +0000566 ntohs(lacpdu->actor_system_priority) != partner->system_priority ||
567 ntohs(lacpdu->actor_key) != partner->key ||
568 (lacpdu->actor_state & AD_STATE_AGGREGATION) != (partner->port_state & AD_STATE_AGGREGATION)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 port->sm_vars &= ~AD_PORT_SELECTED;
570 }
571 }
572}
573
574/**
575 * __update_default_selected - update a port's Selected variable from Partner
576 * @port: the port we're looking at
577 *
578 * This function updates the value of the selected variable, using the partner
579 * administrative parameter values. The administrative values are compared with
580 * the corresponding operational parameter values for the partner. If one or
581 * more of the comparisons shows that the administrative value(s) differ from
582 * the current operational values, then Selected is set to FALSE and
583 * actor_oper_port_state.synchronization is set to OUT_OF_SYNC. Otherwise,
584 * Selected remains unchanged.
585 */
586static void __update_default_selected(struct port *port)
587{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (port) {
Holger Eitzenberger3c520652008-12-17 19:13:27 -0800589 const struct port_params *admin = &port->partner_admin;
590 const struct port_params *oper = &port->partner_oper;
591
dingtianhong815117a2014-01-02 09:12:54 +0800592 /* check if any parameter is different then
593 * update the state machine selected variable.
594 */
Joe Perches8e95a202009-12-03 07:58:21 +0000595 if (admin->port_number != oper->port_number ||
596 admin->port_priority != oper->port_priority ||
dingtianhong815117a2014-01-02 09:12:54 +0800597 !MAC_ADDRESS_EQUAL(&admin->system, &oper->system) ||
Joe Perches8e95a202009-12-03 07:58:21 +0000598 admin->system_priority != oper->system_priority ||
599 admin->key != oper->key ||
600 (admin->port_state & AD_STATE_AGGREGATION)
Holger Eitzenberger3c520652008-12-17 19:13:27 -0800601 != (oper->port_state & AD_STATE_AGGREGATION)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 port->sm_vars &= ~AD_PORT_SELECTED;
603 }
604 }
605}
606
607/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 * __update_ntt - update a port's ntt variable from a received lacpdu
609 * @lacpdu: the lacpdu we've received
610 * @port: the port we're looking at
611 *
612 * Updates the value of the ntt variable, using parameter values from a newly
613 * received lacpdu. The parameter values for the partner carried in the
614 * received PDU are compared with the corresponding operational parameter
615 * values for the Actor. If one or more of the comparisons shows that the
616 * value(s) received in the PDU differ from the current operational values,
617 * then ntt is set to TRUE. Otherwise, ntt remains unchanged.
618 */
619static void __update_ntt(struct lacpdu *lacpdu, struct port *port)
620{
dingtianhong815117a2014-01-02 09:12:54 +0800621 /* validate lacpdu and port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (lacpdu && port) {
dingtianhong815117a2014-01-02 09:12:54 +0800623 /* check if any parameter is different then
624 * update the port->ntt.
625 */
Jay Vosburgh89cc76f2006-09-22 21:55:32 -0700626 if ((ntohs(lacpdu->partner_port) != port->actor_port_number) ||
627 (ntohs(lacpdu->partner_port_priority) != port->actor_port_priority) ||
dingtianhong815117a2014-01-02 09:12:54 +0800628 !MAC_ADDRESS_EQUAL(&(lacpdu->partner_system), &(port->actor_system)) ||
Jay Vosburgh89cc76f2006-09-22 21:55:32 -0700629 (ntohs(lacpdu->partner_system_priority) != port->actor_system_priority) ||
630 (ntohs(lacpdu->partner_key) != port->actor_oper_port_key) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 ((lacpdu->partner_state & AD_STATE_LACP_ACTIVITY) != (port->actor_oper_port_state & AD_STATE_LACP_ACTIVITY)) ||
632 ((lacpdu->partner_state & AD_STATE_LACP_TIMEOUT) != (port->actor_oper_port_state & AD_STATE_LACP_TIMEOUT)) ||
633 ((lacpdu->partner_state & AD_STATE_SYNCHRONIZATION) != (port->actor_oper_port_state & AD_STATE_SYNCHRONIZATION)) ||
634 ((lacpdu->partner_state & AD_STATE_AGGREGATION) != (port->actor_oper_port_state & AD_STATE_AGGREGATION))
635 ) {
Holger Eitzenbergerd238d452008-12-26 11:18:15 -0800636 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638 }
639}
640
641/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 * __agg_ports_are_ready - check if all ports in an aggregator are ready
643 * @aggregator: the aggregator we're looking at
644 *
645 */
646static int __agg_ports_are_ready(struct aggregator *aggregator)
647{
648 struct port *port;
649 int retval = 1;
650
651 if (aggregator) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100652 /* scan all ports in this aggregator to verfy if they are
653 * all ready.
654 */
Bandan Das128ea6c2010-10-16 20:19:58 +0000655 for (port = aggregator->lag_ports;
656 port;
657 port = port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (!(port->sm_vars & AD_PORT_READY_N)) {
659 retval = 0;
660 break;
661 }
662 }
663 }
664
665 return retval;
666}
667
668/**
669 * __set_agg_ports_ready - set value of Ready bit in all ports of an aggregator
670 * @aggregator: the aggregator we're looking at
671 * @val: Should the ports' ready bit be set on or off
672 *
673 */
674static void __set_agg_ports_ready(struct aggregator *aggregator, int val)
675{
676 struct port *port;
677
Bandan Das128ea6c2010-10-16 20:19:58 +0000678 for (port = aggregator->lag_ports; port;
679 port = port->next_port_in_aggregator) {
Bandan Das7bfc4752010-10-16 20:19:59 +0000680 if (val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 port->sm_vars |= AD_PORT_READY;
Bandan Das7bfc4752010-10-16 20:19:59 +0000682 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 port->sm_vars &= ~AD_PORT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685}
686
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700687static int __agg_active_ports(struct aggregator *agg)
688{
689 struct port *port;
690 int active = 0;
691
692 for (port = agg->lag_ports; port;
693 port = port->next_port_in_aggregator) {
694 if (port->is_enabled)
695 active++;
696 }
697
698 return active;
699}
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701/**
702 * __get_agg_bandwidth - get the total bandwidth of an aggregator
703 * @aggregator: the aggregator we're looking at
704 *
705 */
706static u32 __get_agg_bandwidth(struct aggregator *aggregator)
707{
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700708 int nports = __agg_active_ports(aggregator);
Bandan Das128ea6c2010-10-16 20:19:58 +0000709 u32 bandwidth = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700711 if (nports) {
David Decotigny65cce192011-04-13 15:22:30 +0000712 switch (__get_link_speed(aggregator->lag_ports)) {
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800713 case AD_LINK_SPEED_1MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700714 bandwidth = nports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800716 case AD_LINK_SPEED_10MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700717 bandwidth = nports * 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800719 case AD_LINK_SPEED_100MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700720 bandwidth = nports * 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800722 case AD_LINK_SPEED_1000MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700723 bandwidth = nports * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 break;
Jianhua Xie424c3232014-11-19 16:48:59 +0800725 case AD_LINK_SPEED_2500MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700726 bandwidth = nports * 2500;
Jianhua Xie424c3232014-11-19 16:48:59 +0800727 break;
Thibaut Colletc7c55062017-06-08 11:18:11 +0200728 case AD_LINK_SPEED_5000MBPS:
729 bandwidth = nports * 5000;
730 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800731 case AD_LINK_SPEED_10000MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700732 bandwidth = nports * 10000;
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700733 break;
Nicolas Dichtel3fcd64c2017-06-08 11:18:12 +0200734 case AD_LINK_SPEED_14000MBPS:
735 bandwidth = nports * 14000;
736 break;
Jianhua Xie424c3232014-11-19 16:48:59 +0800737 case AD_LINK_SPEED_20000MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700738 bandwidth = nports * 20000;
Jianhua Xie424c3232014-11-19 16:48:59 +0800739 break;
Jarod Wilson19ddde12017-03-14 11:48:32 -0400740 case AD_LINK_SPEED_25000MBPS:
741 bandwidth = nports * 25000;
742 break;
Jianhua Xie424c3232014-11-19 16:48:59 +0800743 case AD_LINK_SPEED_40000MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700744 bandwidth = nports * 40000;
Jianhua Xie424c3232014-11-19 16:48:59 +0800745 break;
Thibaut Colletc7c55062017-06-08 11:18:11 +0200746 case AD_LINK_SPEED_50000MBPS:
747 bandwidth = nports * 50000;
748 break;
Jianhua Xie424c3232014-11-19 16:48:59 +0800749 case AD_LINK_SPEED_56000MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700750 bandwidth = nports * 56000;
Jianhua Xie424c3232014-11-19 16:48:59 +0800751 break;
Jiri Pirko3952af42015-12-03 12:12:05 +0100752 case AD_LINK_SPEED_100000MBPS:
Jay Vosburgh0622cab2016-06-23 14:20:51 -0700753 bandwidth = nports * 100000;
Jiri Pirko3952af42015-12-03 12:12:05 +0100754 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 default:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100756 bandwidth = 0; /* to silence the compiler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
758 }
759 return bandwidth;
760}
761
762/**
763 * __get_active_agg - get the current active aggregator
764 * @aggregator: the aggregator we're looking at
Veaceslav Falico49b76242014-01-10 11:59:45 +0100765 *
766 * Caller must hold RCU lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 */
768static struct aggregator *__get_active_agg(struct aggregator *aggregator)
769{
Veaceslav Falico19177e72013-09-27 16:12:00 +0200770 struct bonding *bond = aggregator->slave->bond;
771 struct list_head *iter;
772 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
dingtianhongbe79bd02013-12-13 10:20:12 +0800774 bond_for_each_slave_rcu(bond, slave, iter)
dingtianhong3fdddd82014-05-12 15:08:43 +0800775 if (SLAVE_AD_INFO(slave)->aggregator.is_active)
776 return &(SLAVE_AD_INFO(slave)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Veaceslav Falico19177e72013-09-27 16:12:00 +0200778 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
781/**
782 * __update_lacpdu_from_port - update a port's lacpdu fields
783 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 */
785static inline void __update_lacpdu_from_port(struct port *port)
786{
787 struct lacpdu *lacpdu = &port->lacpdu;
Holger Eitzenberger3b5b35d2008-12-17 19:13:53 -0800788 const struct port_params *partner = &port->partner_oper;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100790 /* update current actual Actor parameters
791 * lacpdu->subtype initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 * lacpdu->version_number initialized
793 * lacpdu->tlv_type_actor_info initialized
794 * lacpdu->actor_information_length initialized
795 */
796
Al Virod3bb52b2007-08-22 20:06:58 -0400797 lacpdu->actor_system_priority = htons(port->actor_system_priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 lacpdu->actor_system = port->actor_system;
Al Virod3bb52b2007-08-22 20:06:58 -0400799 lacpdu->actor_key = htons(port->actor_oper_port_key);
800 lacpdu->actor_port_priority = htons(port->actor_port_priority);
801 lacpdu->actor_port = htons(port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 lacpdu->actor_state = port->actor_oper_port_state;
Wilson Kok63b46242015-01-26 01:16:59 -0500803 pr_debug("update lacpdu: %s, actor port state %x\n",
804 port->slave->dev->name, 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
849 skb->dev = slave->dev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700850 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700851 skb->network_header = skb->mac_header + ETH_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 skb->protocol = PKT_TYPE_LACPDU;
853 skb->priority = TC_PRIO_CONTROL;
854
855 lacpdu_header = (struct lacpdu_header *)skb_put(skb, length);
856
Joe Perchesada0f862014-02-15 16:02:17 -0800857 ether_addr_copy(lacpdu_header->hdr.h_dest, lacpdu_mcast_addr);
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400858 /* Note: source address is set to be the member's PERMANENT address,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100859 * because we use it to identify loopback lacpdus in receive.
860 */
Joe Perchesada0f862014-02-15 16:02:17 -0800861 ether_addr_copy(lacpdu_header->hdr.h_source, slave->perm_hwaddr);
Holger Eitzenbergere7271492008-12-26 13:41:53 -0800862 lacpdu_header->hdr.h_proto = PKT_TYPE_LACPDU;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100864 lacpdu_header->lacpdu = port->lacpdu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 dev_queue_xmit(skb);
867
868 return 0;
869}
870
871/**
872 * ad_marker_send - send marker information/response on a given port
873 * @port: the port we're looking at
874 * @marker: marker data to send
875 *
876 * Returns: 0 on success
877 * < 0 on error
878 */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700879static int ad_marker_send(struct port *port, struct bond_marker *marker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
881 struct slave *slave = port->slave;
882 struct sk_buff *skb;
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700883 struct bond_marker_header *marker_header;
884 int length = sizeof(struct bond_marker_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 skb = dev_alloc_skb(length + 16);
Bandan Das7bfc4752010-10-16 20:19:59 +0000887 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 skb_reserve(skb, 16);
891
892 skb->dev = slave->dev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700893 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700894 skb->network_header = skb->mac_header + ETH_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 skb->protocol = PKT_TYPE_LACPDU;
896
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700897 marker_header = (struct bond_marker_header *)skb_put(skb, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Joe Perchesada0f862014-02-15 16:02:17 -0800899 ether_addr_copy(marker_header->hdr.h_dest, lacpdu_mcast_addr);
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400900 /* Note: source address is set to be the member's PERMANENT address,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100901 * because we use it to identify loopback MARKERs in receive.
902 */
Joe Perchesada0f862014-02-15 16:02:17 -0800903 ether_addr_copy(marker_header->hdr.h_source, slave->perm_hwaddr);
Holger Eitzenbergere7271492008-12-26 13:41:53 -0800904 marker_header->hdr.h_proto = PKT_TYPE_LACPDU;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100906 marker_header->marker = *marker;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 dev_queue_xmit(skb);
909
910 return 0;
911}
912
913/**
914 * ad_mux_machine - handle a port's mux state machine
915 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -0700916 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 */
Mahesh Bandewaree637712014-10-04 17:45:01 -0700918static void ad_mux_machine(struct port *port, bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
920 mux_states_t last_state;
921
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100922 /* keep current State Machine state to compare later if it was
923 * changed
924 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 last_state = port->sm_mux_state;
926
927 if (port->sm_vars & AD_PORT_BEGIN) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100928 port->sm_mux_state = AD_MUX_DETACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 } else {
930 switch (port->sm_mux_state) {
931 case AD_MUX_DETACHED:
Bandan Das7bfc4752010-10-16 20:19:59 +0000932 if ((port->sm_vars & AD_PORT_SELECTED)
933 || (port->sm_vars & AD_PORT_STANDBY))
934 /* if SELECTED or STANDBY */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100935 port->sm_mux_state = AD_MUX_WAITING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 break;
937 case AD_MUX_WAITING:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100938 /* if SELECTED == FALSE return to DETACH state */
939 if (!(port->sm_vars & AD_PORT_SELECTED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 port->sm_vars &= ~AD_PORT_READY_N;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100941 /* in order to withhold the Selection Logic to
942 * check all ports READY_N value every callback
943 * cycle to update ready variable, we check
944 * READY_N and update READY here
945 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100947 port->sm_mux_state = AD_MUX_DETACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 break;
949 }
950
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100951 /* check if the wait_while_timer expired */
Bandan Das7bfc4752010-10-16 20:19:59 +0000952 if (port->sm_mux_timer_counter
953 && !(--port->sm_mux_timer_counter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 port->sm_vars |= AD_PORT_READY_N;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100956 /* in order to withhold the selection logic to check
957 * all ports READY_N value every callback cycle to
958 * update ready variable, we check READY_N and update
959 * READY here
960 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
962
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100963 /* if the wait_while_timer expired, and the port is
964 * in READY state, move to ATTACHED state
965 */
Bandan Das7bfc4752010-10-16 20:19:59 +0000966 if ((port->sm_vars & AD_PORT_READY)
967 && !port->sm_mux_timer_counter)
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100968 port->sm_mux_state = AD_MUX_ATTACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 break;
970 case AD_MUX_ATTACHED:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100971 /* check also if agg_select_timer expired (so the
972 * edable port will take place only after this timer)
973 */
974 if ((port->sm_vars & AD_PORT_SELECTED) &&
975 (port->partner_oper.port_state & AD_STATE_SYNCHRONIZATION) &&
976 !__check_agg_selection_timer(port)) {
Wilson Kok63b46242015-01-26 01:16:59 -0500977 if (port->aggregator->is_active)
978 port->sm_mux_state =
979 AD_MUX_COLLECTING_DISTRIBUTING;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100980 } else if (!(port->sm_vars & AD_PORT_SELECTED) ||
981 (port->sm_vars & AD_PORT_STANDBY)) {
982 /* if UNSELECTED or STANDBY */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 port->sm_vars &= ~AD_PORT_READY_N;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100984 /* in order to withhold the selection logic to
985 * check all ports READY_N value every callback
986 * cycle to update ready variable, we check
987 * READY_N and update READY here
988 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100990 port->sm_mux_state = AD_MUX_DETACHED;
Wilson Kok63b46242015-01-26 01:16:59 -0500991 } else if (port->aggregator->is_active) {
992 port->actor_oper_port_state |=
993 AD_STATE_SYNCHRONIZATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
995 break;
996 case AD_MUX_COLLECTING_DISTRIBUTING:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100997 if (!(port->sm_vars & AD_PORT_SELECTED) ||
998 (port->sm_vars & AD_PORT_STANDBY) ||
Wilson Kok63b46242015-01-26 01:16:59 -0500999 !(port->partner_oper.port_state & AD_STATE_SYNCHRONIZATION) ||
1000 !(port->actor_oper_port_state & AD_STATE_SYNCHRONIZATION)) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001001 port->sm_mux_state = AD_MUX_ATTACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001003 /* if port state hasn't changed make
1004 * sure that a collecting distributing
1005 * port in an active aggregator is enabled
1006 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (port->aggregator &&
1008 port->aggregator->is_active &&
1009 !__port_is_enabled(port)) {
1010
1011 __enable_port(port);
1012 }
1013 }
1014 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001015 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 break;
1017 }
1018 }
1019
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001020 /* check if the state machine was changed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (port->sm_mux_state != last_state) {
Wilson Kok63b46242015-01-26 01:16:59 -05001022 pr_debug("Mux Machine: Port=%d (%s), Last State=%d, Curr State=%d\n",
1023 port->actor_port_number,
1024 port->slave->dev->name,
1025 last_state,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001026 port->sm_mux_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 switch (port->sm_mux_state) {
1028 case AD_MUX_DETACHED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 port->actor_oper_port_state &= ~AD_STATE_SYNCHRONIZATION;
Mahesh Bandewaree637712014-10-04 17:45:01 -07001030 ad_disable_collecting_distributing(port,
1031 update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 port->actor_oper_port_state &= ~AD_STATE_COLLECTING;
1033 port->actor_oper_port_state &= ~AD_STATE_DISTRIBUTING;
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001034 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 break;
1036 case AD_MUX_WAITING:
1037 port->sm_mux_timer_counter = __ad_timer_to_ticks(AD_WAIT_WHILE_TIMER, 0);
1038 break;
1039 case AD_MUX_ATTACHED:
Wilson Kok63b46242015-01-26 01:16:59 -05001040 if (port->aggregator->is_active)
1041 port->actor_oper_port_state |=
1042 AD_STATE_SYNCHRONIZATION;
1043 else
1044 port->actor_oper_port_state &=
1045 ~AD_STATE_SYNCHRONIZATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 port->actor_oper_port_state &= ~AD_STATE_COLLECTING;
1047 port->actor_oper_port_state &= ~AD_STATE_DISTRIBUTING;
Mahesh Bandewaree637712014-10-04 17:45:01 -07001048 ad_disable_collecting_distributing(port,
1049 update_slave_arr);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001050 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 break;
1052 case AD_MUX_COLLECTING_DISTRIBUTING:
1053 port->actor_oper_port_state |= AD_STATE_COLLECTING;
1054 port->actor_oper_port_state |= AD_STATE_DISTRIBUTING;
Wilson Kok63b46242015-01-26 01:16:59 -05001055 port->actor_oper_port_state |= AD_STATE_SYNCHRONIZATION;
Mahesh Bandewaree637712014-10-04 17:45:01 -07001056 ad_enable_collecting_distributing(port,
1057 update_slave_arr);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001058 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001060 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 break;
1062 }
1063 }
1064}
1065
1066/**
1067 * ad_rx_machine - handle a port's rx State Machine
1068 * @lacpdu: the lacpdu we've received
1069 * @port: the port we're looking at
1070 *
1071 * If lacpdu arrived, stop previous timer (if exists) and set the next state as
1072 * CURRENT. If timer expired set the state machine in the proper state.
1073 * In other cases, this function checks if we need to switch to other state.
1074 */
1075static void ad_rx_machine(struct lacpdu *lacpdu, struct port *port)
1076{
1077 rx_states_t last_state;
1078
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001079 /* keep current State Machine state to compare later if it was
1080 * changed
1081 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 last_state = port->sm_rx_state;
1083
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001084 /* check if state machine should change state */
1085
1086 /* first, check if port was reinitialized */
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001087 if (port->sm_vars & AD_PORT_BEGIN) {
Bandan Das7bfc4752010-10-16 20:19:59 +00001088 port->sm_rx_state = AD_RX_INITIALIZE;
Mahesh Bandewaref015d72015-03-30 14:30:40 -07001089 port->sm_vars |= AD_PORT_CHURNED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001090 /* check if port is not enabled */
Mahesh Bandewarec891c82017-03-08 10:55:59 -08001091 } else if (!(port->sm_vars & AD_PORT_BEGIN) && !port->is_enabled)
Bandan Das7bfc4752010-10-16 20:19:59 +00001092 port->sm_rx_state = AD_RX_PORT_DISABLED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001093 /* check if new lacpdu arrived */
1094 else if (lacpdu && ((port->sm_rx_state == AD_RX_EXPIRED) ||
1095 (port->sm_rx_state == AD_RX_DEFAULTED) ||
1096 (port->sm_rx_state == AD_RX_CURRENT))) {
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001097 if (port->sm_rx_state != AD_RX_CURRENT)
Mahesh Bandewaref015d72015-03-30 14:30:40 -07001098 port->sm_vars |= AD_PORT_CHURNED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001099 port->sm_rx_timer_counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 port->sm_rx_state = AD_RX_CURRENT;
1101 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001102 /* if timer is on, and if it is expired */
1103 if (port->sm_rx_timer_counter &&
1104 !(--port->sm_rx_timer_counter)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 switch (port->sm_rx_state) {
1106 case AD_RX_EXPIRED:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001107 port->sm_rx_state = AD_RX_DEFAULTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 break;
1109 case AD_RX_CURRENT:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001110 port->sm_rx_state = AD_RX_EXPIRED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001112 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 break;
1114 }
1115 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001116 /* if no lacpdu arrived and no timer is on */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 switch (port->sm_rx_state) {
1118 case AD_RX_PORT_DISABLED:
Mahesh Bandewarec891c82017-03-08 10:55:59 -08001119 if (port->is_enabled &&
1120 (port->sm_vars & AD_PORT_LACP_ENABLED))
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001121 port->sm_rx_state = AD_RX_EXPIRED;
Bandan Das7bfc4752010-10-16 20:19:59 +00001122 else if (port->is_enabled
1123 && ((port->sm_vars
1124 & AD_PORT_LACP_ENABLED) == 0))
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001125 port->sm_rx_state = AD_RX_LACP_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001127 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 break;
1129
1130 }
1131 }
1132 }
1133
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001134 /* check if the State machine was changed or new lacpdu arrived */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if ((port->sm_rx_state != last_state) || (lacpdu)) {
Wilson Kok63b46242015-01-26 01:16:59 -05001136 pr_debug("Rx Machine: Port=%d (%s), Last State=%d, Curr State=%d\n",
1137 port->actor_port_number,
1138 port->slave->dev->name,
1139 last_state,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001140 port->sm_rx_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 switch (port->sm_rx_state) {
1142 case AD_RX_INITIALIZE:
Jianhua Xiecb8dda92014-11-19 16:48:58 +08001143 if (!(port->actor_oper_port_key & AD_DUPLEX_KEY_MASKS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 port->sm_vars &= ~AD_PORT_LACP_ENABLED;
Bandan Das7bfc4752010-10-16 20:19:59 +00001145 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 port->sm_vars |= AD_PORT_LACP_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 port->sm_vars &= ~AD_PORT_SELECTED;
1148 __record_default(port);
1149 port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001150 port->sm_rx_state = AD_RX_PORT_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001152 /* Fall Through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 case AD_RX_PORT_DISABLED:
1154 port->sm_vars &= ~AD_PORT_MATCHED;
1155 break;
1156 case AD_RX_LACP_DISABLED:
1157 port->sm_vars &= ~AD_PORT_SELECTED;
1158 __record_default(port);
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001159 port->partner_oper.port_state &= ~AD_STATE_AGGREGATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 port->sm_vars |= AD_PORT_MATCHED;
1161 port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
1162 break;
1163 case AD_RX_EXPIRED:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001164 /* Reset of the Synchronization flag (Standard 43.4.12)
1165 * This reset cause to disable this port in the
1166 * COLLECTING_DISTRIBUTING state of the mux machine in
1167 * case of EXPIRED even if LINK_DOWN didn't arrive for
1168 * the port.
1169 */
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001170 port->partner_oper.port_state &= ~AD_STATE_SYNCHRONIZATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 port->sm_vars &= ~AD_PORT_MATCHED;
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001172 port->partner_oper.port_state |= AD_STATE_LACP_TIMEOUT;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001173 port->partner_oper.port_state |= AD_STATE_LACP_ACTIVITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 port->sm_rx_timer_counter = __ad_timer_to_ticks(AD_CURRENT_WHILE_TIMER, (u16)(AD_SHORT_TIMEOUT));
1175 port->actor_oper_port_state |= AD_STATE_EXPIRED;
Mahesh Bandewaref015d72015-03-30 14:30:40 -07001176 port->sm_vars |= AD_PORT_CHURNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 break;
1178 case AD_RX_DEFAULTED:
1179 __update_default_selected(port);
1180 __record_default(port);
1181 port->sm_vars |= AD_PORT_MATCHED;
1182 port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
1183 break;
1184 case AD_RX_CURRENT:
dingtianhong815117a2014-01-02 09:12:54 +08001185 /* detect loopback situation */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001186 if (MAC_ADDRESS_EQUAL(&(lacpdu->actor_system),
1187 &(port->actor_system))) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001188 netdev_err(port->slave->bond->dev, "An illegal loopback occurred on adapter (%s)\n"
Joe Perches90194262014-02-15 16:01:45 -08001189 "Check the configuration to verify that all adapters are connected to 802.3ad compliant switch ports\n",
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001190 port->slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 return;
1192 }
1193 __update_selected(lacpdu, port);
1194 __update_ntt(lacpdu, port);
1195 __record_pdu(lacpdu, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 port->sm_rx_timer_counter = __ad_timer_to_ticks(AD_CURRENT_WHILE_TIMER, (u16)(port->actor_oper_port_state & AD_STATE_LACP_TIMEOUT));
1197 port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001199 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 break;
1201 }
1202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
1205/**
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001206 * ad_churn_machine - handle port churn's state machine
1207 * @port: the port we're looking at
1208 *
1209 */
1210static void ad_churn_machine(struct port *port)
1211{
Mahesh Bandewaref015d72015-03-30 14:30:40 -07001212 if (port->sm_vars & AD_PORT_CHURNED) {
1213 port->sm_vars &= ~AD_PORT_CHURNED;
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001214 port->sm_churn_actor_state = AD_CHURN_MONITOR;
1215 port->sm_churn_partner_state = AD_CHURN_MONITOR;
1216 port->sm_churn_actor_timer_counter =
1217 __ad_timer_to_ticks(AD_ACTOR_CHURN_TIMER, 0);
1218 port->sm_churn_partner_timer_counter =
1219 __ad_timer_to_ticks(AD_PARTNER_CHURN_TIMER, 0);
1220 return;
1221 }
1222 if (port->sm_churn_actor_timer_counter &&
1223 !(--port->sm_churn_actor_timer_counter) &&
1224 port->sm_churn_actor_state == AD_CHURN_MONITOR) {
1225 if (port->actor_oper_port_state & AD_STATE_SYNCHRONIZATION) {
1226 port->sm_churn_actor_state = AD_NO_CHURN;
1227 } else {
1228 port->churn_actor_count++;
1229 port->sm_churn_actor_state = AD_CHURN;
1230 }
1231 }
1232 if (port->sm_churn_partner_timer_counter &&
1233 !(--port->sm_churn_partner_timer_counter) &&
1234 port->sm_churn_partner_state == AD_CHURN_MONITOR) {
1235 if (port->partner_oper.port_state & AD_STATE_SYNCHRONIZATION) {
1236 port->sm_churn_partner_state = AD_NO_CHURN;
1237 } else {
1238 port->churn_partner_count++;
1239 port->sm_churn_partner_state = AD_CHURN;
1240 }
1241 }
1242}
1243
1244/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 * ad_tx_machine - handle a port's tx state machine
1246 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 */
1248static void ad_tx_machine(struct port *port)
1249{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001250 /* check if tx timer expired, to verify that we do not send more than
1251 * 3 packets per second
1252 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (port->sm_tx_timer_counter && !(--port->sm_tx_timer_counter)) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001254 /* check if there is something to send */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 if (port->ntt && (port->sm_vars & AD_PORT_LACP_ENABLED)) {
1256 __update_lacpdu_from_port(port);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (ad_lacpdu_send(port) >= 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001259 pr_debug("Sent LACPDU on port %d\n",
1260 port->actor_port_number);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001261
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001262 /* mark ntt as false, so it will not be sent
1263 * again until demanded
1264 */
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001265 port->ntt = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
1267 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001268 /* restart tx timer(to verify that we will not exceed
1269 * AD_MAX_TX_IN_SECOND
1270 */
1271 port->sm_tx_timer_counter = ad_ticks_per_sec/AD_MAX_TX_IN_SECOND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273}
1274
1275/**
1276 * ad_periodic_machine - handle a port's periodic state machine
1277 * @port: the port we're looking at
1278 *
1279 * Turn ntt flag on priodically to perform periodic transmission of lacpdu's.
1280 */
1281static void ad_periodic_machine(struct port *port)
1282{
1283 periodic_states_t last_state;
1284
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001285 /* keep current state machine state to compare later if it was changed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 last_state = port->sm_periodic_state;
1287
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001288 /* check if port was reinitialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (((port->sm_vars & AD_PORT_BEGIN) || !(port->sm_vars & AD_PORT_LACP_ENABLED) || !port->is_enabled) ||
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001290 (!(port->actor_oper_port_state & AD_STATE_LACP_ACTIVITY) && !(port->partner_oper.port_state & AD_STATE_LACP_ACTIVITY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 ) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001292 port->sm_periodic_state = AD_NO_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001294 /* check if state machine should change state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 else if (port->sm_periodic_timer_counter) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001296 /* check if periodic state machine expired */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (!(--port->sm_periodic_timer_counter)) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001298 /* if expired then do tx */
1299 port->sm_periodic_state = AD_PERIODIC_TX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001301 /* If not expired, check if there is some new timeout
1302 * parameter from the partner state
1303 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 switch (port->sm_periodic_state) {
1305 case AD_FAST_PERIODIC:
Bandan Das7bfc4752010-10-16 20:19:59 +00001306 if (!(port->partner_oper.port_state
1307 & AD_STATE_LACP_TIMEOUT))
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001308 port->sm_periodic_state = AD_SLOW_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 break;
1310 case AD_SLOW_PERIODIC:
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001311 if ((port->partner_oper.port_state & AD_STATE_LACP_TIMEOUT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 port->sm_periodic_timer_counter = 0;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001313 port->sm_periodic_state = AD_PERIODIC_TX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 }
1315 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001316 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 break;
1318 }
1319 }
1320 } else {
1321 switch (port->sm_periodic_state) {
1322 case AD_NO_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001323 port->sm_periodic_state = AD_FAST_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 break;
1325 case AD_PERIODIC_TX:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001326 if (!(port->partner_oper.port_state &
1327 AD_STATE_LACP_TIMEOUT))
1328 port->sm_periodic_state = AD_SLOW_PERIODIC;
Bandan Das7bfc4752010-10-16 20:19:59 +00001329 else
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001330 port->sm_periodic_state = AD_FAST_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001332 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 break;
1334 }
1335 }
1336
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001337 /* check if the state machine was changed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 if (port->sm_periodic_state != last_state) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001339 pr_debug("Periodic Machine: Port=%d, Last State=%d, Curr State=%d\n",
1340 port->actor_port_number, last_state,
1341 port->sm_periodic_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 switch (port->sm_periodic_state) {
1343 case AD_NO_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001344 port->sm_periodic_timer_counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 break;
1346 case AD_FAST_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001347 /* decrement 1 tick we lost in the PERIODIC_TX cycle */
1348 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 -07001349 break;
1350 case AD_SLOW_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001351 /* decrement 1 tick we lost in the PERIODIC_TX cycle */
1352 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 -07001353 break;
1354 case AD_PERIODIC_TX:
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001355 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001357 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 break;
1359 }
1360 }
1361}
1362
1363/**
1364 * ad_port_selection_logic - select aggregation groups
1365 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001366 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 *
1368 * Select aggregation groups, and assign each port for it's aggregetor. The
1369 * selection logic is called in the inititalization (after all the handshkes),
1370 * and after every lacpdu receive (if selected is off).
1371 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001372static void ad_port_selection_logic(struct port *port, bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
1374 struct aggregator *aggregator, *free_aggregator = NULL, *temp_aggregator;
1375 struct port *last_port = NULL, *curr_port;
Veaceslav Falico3e36bb72013-09-27 16:11:59 +02001376 struct list_head *iter;
1377 struct bonding *bond;
1378 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 int found = 0;
1380
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001381 /* if the port is already Selected, do nothing */
Bandan Das7bfc4752010-10-16 20:19:59 +00001382 if (port->sm_vars & AD_PORT_SELECTED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Veaceslav Falico3e36bb72013-09-27 16:11:59 +02001385 bond = __get_bond_by_port(port);
1386
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001387 /* if the port is connected to other aggregator, detach it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 if (port->aggregator) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001389 /* detach the port from its former aggregator */
Bandan Das128ea6c2010-10-16 20:19:58 +00001390 temp_aggregator = port->aggregator;
1391 for (curr_port = temp_aggregator->lag_ports; curr_port;
1392 last_port = curr_port,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001393 curr_port = curr_port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 if (curr_port == port) {
1395 temp_aggregator->num_of_ports--;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001396 /* if it is the first port attached to the
1397 * aggregator
1398 */
1399 if (!last_port) {
Bandan Das128ea6c2010-10-16 20:19:58 +00001400 temp_aggregator->lag_ports =
1401 port->next_port_in_aggregator;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001402 } else {
1403 /* not the first port attached to the
1404 * aggregator
1405 */
Bandan Das128ea6c2010-10-16 20:19:58 +00001406 last_port->next_port_in_aggregator =
1407 port->next_port_in_aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001410 /* clear the port's relations to this
1411 * aggregator
1412 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 port->aggregator = NULL;
Bandan Das128ea6c2010-10-16 20:19:58 +00001414 port->next_port_in_aggregator = NULL;
1415 port->actor_port_aggregator_identifier = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001417 netdev_dbg(bond->dev, "Port %d left LAG %d\n",
1418 port->actor_port_number,
1419 temp_aggregator->aggregator_identifier);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001420 /* if the aggregator is empty, clear its
1421 * parameters, and set it ready to be attached
1422 */
Bandan Das7bfc4752010-10-16 20:19:59 +00001423 if (!temp_aggregator->lag_ports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 ad_clear_agg(temp_aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 break;
1426 }
1427 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001428 if (!curr_port) {
1429 /* meaning: the port was related to an aggregator
1430 * but was not on the aggregator port list
1431 */
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001432 net_warn_ratelimited("%s: Warning: Port %d (on %s) was related to aggregator %d but was not on its port list\n",
1433 port->slave->bond->dev->name,
1434 port->actor_port_number,
1435 port->slave->dev->name,
1436 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
1438 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001439 /* search on all aggregators for a suitable aggregator for this port */
Veaceslav Falico3e36bb72013-09-27 16:11:59 +02001440 bond_for_each_slave(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08001441 aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001443 /* keep a free aggregator for later use(if needed) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 if (!aggregator->lag_ports) {
Bandan Das7bfc4752010-10-16 20:19:59 +00001445 if (!free_aggregator)
Bandan Das128ea6c2010-10-16 20:19:58 +00001446 free_aggregator = aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 continue;
1448 }
dingtianhong815117a2014-01-02 09:12:54 +08001449 /* check if current aggregator suits us */
1450 if (((aggregator->actor_oper_aggregator_key == port->actor_oper_port_key) && /* if all parameters match AND */
1451 MAC_ADDRESS_EQUAL(&(aggregator->partner_system), &(port->partner_oper.system)) &&
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001452 (aggregator->partner_system_priority == port->partner_oper.system_priority) &&
1453 (aggregator->partner_oper_aggregator_key == port->partner_oper.key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 ) &&
dingtianhong815117a2014-01-02 09:12:54 +08001455 ((!MAC_ADDRESS_EQUAL(&(port->partner_oper.system), &(null_mac_addr)) && /* partner answers */
1456 !aggregator->is_individual) /* but is not individual OR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 )
1458 ) {
dingtianhong815117a2014-01-02 09:12:54 +08001459 /* attach to the founded aggregator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 port->aggregator = aggregator;
Bandan Das128ea6c2010-10-16 20:19:58 +00001461 port->actor_port_aggregator_identifier =
1462 port->aggregator->aggregator_identifier;
1463 port->next_port_in_aggregator = aggregator->lag_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 port->aggregator->num_of_ports++;
Bandan Das128ea6c2010-10-16 20:19:58 +00001465 aggregator->lag_ports = port;
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001466 netdev_dbg(bond->dev, "Port %d joined LAG %d(existing LAG)\n",
1467 port->actor_port_number,
1468 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001470 /* mark this port as selected */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 port->sm_vars |= AD_PORT_SELECTED;
1472 found = 1;
1473 break;
1474 }
1475 }
1476
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001477 /* the port couldn't find an aggregator - attach it to a new
1478 * aggregator
1479 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 if (!found) {
1481 if (free_aggregator) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001482 /* assign port a new aggregator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 port->aggregator = free_aggregator;
Bandan Das128ea6c2010-10-16 20:19:58 +00001484 port->actor_port_aggregator_identifier =
1485 port->aggregator->aggregator_identifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001487 /* update the new aggregator's parameters
1488 * if port was responsed from the end-user
1489 */
Jianhua Xiecb8dda92014-11-19 16:48:58 +08001490 if (port->actor_oper_port_key & AD_DUPLEX_KEY_MASKS)
Bandan Das7bfc4752010-10-16 20:19:59 +00001491 /* if port is full duplex */
Holger Eitzenberger1624db72008-12-26 13:27:21 -08001492 port->aggregator->is_individual = false;
Bandan Das7bfc4752010-10-16 20:19:59 +00001493 else
Holger Eitzenberger1624db72008-12-26 13:27:21 -08001494 port->aggregator->is_individual = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Mahesh Bandewarc3cd9ee2015-04-07 16:16:11 -07001496 port->aggregator->actor_admin_aggregator_key =
1497 port->actor_admin_port_key;
1498 port->aggregator->actor_oper_aggregator_key =
1499 port->actor_oper_port_key;
Bandan Das128ea6c2010-10-16 20:19:58 +00001500 port->aggregator->partner_system =
1501 port->partner_oper.system;
1502 port->aggregator->partner_system_priority =
1503 port->partner_oper.system_priority;
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001504 port->aggregator->partner_oper_aggregator_key = port->partner_oper.key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 port->aggregator->receive_state = 1;
1506 port->aggregator->transmit_state = 1;
1507 port->aggregator->lag_ports = port;
1508 port->aggregator->num_of_ports++;
1509
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001510 /* mark this port as selected */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 port->sm_vars |= AD_PORT_SELECTED;
1512
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001513 netdev_dbg(bond->dev, "Port %d joined LAG %d(new LAG)\n",
1514 port->actor_port_number,
1515 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 } else {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001517 netdev_err(bond->dev, "Port %d (on %s) did not find a suitable aggregator\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 port->actor_port_number, port->slave->dev->name);
1519 }
1520 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001521 /* if all aggregator's ports are READY_N == TRUE, set ready=TRUE
1522 * in all aggregator's ports, else set ready=FALSE in all
1523 * aggregator's ports
1524 */
1525 __set_agg_ports_ready(port->aggregator,
1526 __agg_ports_are_ready(port->aggregator));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Jay Vosburghfd989c82008-11-04 17:51:16 -08001528 aggregator = __get_first_agg(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07001529 ad_agg_selection_logic(aggregator, update_slave_arr);
Wilson Kok63b46242015-01-26 01:16:59 -05001530
1531 if (!port->aggregator->is_active)
1532 port->actor_oper_port_state &= ~AD_STATE_SYNCHRONIZATION;
Jay Vosburghfd989c82008-11-04 17:51:16 -08001533}
1534
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001535/* Decide if "agg" is a better choice for the new active aggregator that
Jay Vosburghfd989c82008-11-04 17:51:16 -08001536 * the current best, according to the ad_select policy.
1537 */
1538static struct aggregator *ad_agg_selection_test(struct aggregator *best,
1539 struct aggregator *curr)
1540{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001541 /* 0. If no best, select current.
Jay Vosburghfd989c82008-11-04 17:51:16 -08001542 *
1543 * 1. If the current agg is not individual, and the best is
1544 * individual, select current.
1545 *
1546 * 2. If current agg is individual and the best is not, keep best.
1547 *
1548 * 3. Therefore, current and best are both individual or both not
1549 * individual, so:
1550 *
1551 * 3a. If current agg partner replied, and best agg partner did not,
1552 * select current.
1553 *
1554 * 3b. If current agg partner did not reply and best agg partner
1555 * did reply, keep best.
1556 *
1557 * 4. Therefore, current and best both have partner replies or
1558 * both do not, so perform selection policy:
1559 *
1560 * BOND_AD_COUNT: Select by count of ports. If count is equal,
1561 * select by bandwidth.
1562 *
1563 * BOND_AD_STABLE, BOND_AD_BANDWIDTH: Select by bandwidth.
1564 */
1565 if (!best)
1566 return curr;
1567
1568 if (!curr->is_individual && best->is_individual)
1569 return curr;
1570
1571 if (curr->is_individual && !best->is_individual)
1572 return best;
1573
1574 if (__agg_has_partner(curr) && !__agg_has_partner(best))
1575 return curr;
1576
1577 if (!__agg_has_partner(curr) && __agg_has_partner(best))
1578 return best;
1579
1580 switch (__get_agg_selection_mode(curr->lag_ports)) {
1581 case BOND_AD_COUNT:
Jay Vosburgh0622cab2016-06-23 14:20:51 -07001582 if (__agg_active_ports(curr) > __agg_active_ports(best))
Jay Vosburghfd989c82008-11-04 17:51:16 -08001583 return curr;
1584
Jay Vosburgh0622cab2016-06-23 14:20:51 -07001585 if (__agg_active_ports(curr) < __agg_active_ports(best))
Jay Vosburghfd989c82008-11-04 17:51:16 -08001586 return best;
1587
1588 /*FALLTHROUGH*/
1589 case BOND_AD_STABLE:
1590 case BOND_AD_BANDWIDTH:
1591 if (__get_agg_bandwidth(curr) > __get_agg_bandwidth(best))
1592 return curr;
1593
1594 break;
1595
1596 default:
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001597 net_warn_ratelimited("%s: Impossible agg select mode %d\n",
1598 curr->slave->bond->dev->name,
1599 __get_agg_selection_mode(curr->lag_ports));
Jay Vosburghfd989c82008-11-04 17:51:16 -08001600 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
Jay Vosburghfd989c82008-11-04 17:51:16 -08001602
1603 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
1605
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001606static int agg_device_up(const struct aggregator *agg)
1607{
Jiri Bohac2430af82011-04-19 02:09:55 +00001608 struct port *port = agg->lag_ports;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001609
Jiri Bohac2430af82011-04-19 02:09:55 +00001610 if (!port)
1611 return 0;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001612
Jay Vosburgh0622cab2016-06-23 14:20:51 -07001613 for (port = agg->lag_ports; port;
1614 port = port->next_port_in_aggregator) {
1615 if (netif_running(port->slave->dev) &&
1616 netif_carrier_ok(port->slave->dev))
1617 return 1;
1618 }
1619
1620 return 0;
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001621}
1622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623/**
1624 * ad_agg_selection_logic - select an aggregation group for a team
1625 * @aggregator: the aggregator we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001626 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 *
1628 * It is assumed that only one aggregator may be selected for a team.
Jay Vosburghfd989c82008-11-04 17:51:16 -08001629 *
1630 * The logic of this function is to select the aggregator according to
1631 * the ad_select policy:
1632 *
1633 * BOND_AD_STABLE: select the aggregator with the most ports attached to
1634 * it, and to reselect the active aggregator only if the previous
1635 * aggregator has no more ports related to it.
1636 *
1637 * BOND_AD_BANDWIDTH: select the aggregator with the highest total
1638 * bandwidth, and reselect whenever a link state change takes place or the
1639 * set of slaves in the bond changes.
1640 *
1641 * BOND_AD_COUNT: select the aggregator with largest number of ports
1642 * (slaves), and reselect whenever a link state change takes place or the
1643 * set of slaves in the bond changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 *
1645 * FIXME: this function MUST be called with the first agg in the bond, or
1646 * __get_active_agg() won't work correctly. This function should be better
1647 * called with the bond itself, and retrieve the first agg from it.
1648 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001649static void ad_agg_selection_logic(struct aggregator *agg,
1650 bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651{
Jay Vosburghfd989c82008-11-04 17:51:16 -08001652 struct aggregator *best, *active, *origin;
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001653 struct bonding *bond = agg->slave->bond;
1654 struct list_head *iter;
1655 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 struct port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Veaceslav Falico49b76242014-01-10 11:59:45 +01001658 rcu_read_lock();
Jay Vosburghfd989c82008-11-04 17:51:16 -08001659 origin = agg;
Jay Vosburghfd989c82008-11-04 17:51:16 -08001660 active = __get_active_agg(agg);
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001661 best = (active && agg_device_up(active)) ? active : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
dingtianhongbe79bd02013-12-13 10:20:12 +08001663 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08001664 agg = &(SLAVE_AD_INFO(slave)->aggregator);
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001665
Jay Vosburghfd989c82008-11-04 17:51:16 -08001666 agg->is_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Jay Vosburgh0622cab2016-06-23 14:20:51 -07001668 if (__agg_active_ports(agg) && agg_device_up(agg))
Jay Vosburghfd989c82008-11-04 17:51:16 -08001669 best = ad_agg_selection_test(best, agg);
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Jay Vosburghfd989c82008-11-04 17:51:16 -08001672 if (best &&
1673 __get_agg_selection_mode(best->lag_ports) == BOND_AD_STABLE) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001674 /* For the STABLE policy, don't replace the old active
Jay Vosburghfd989c82008-11-04 17:51:16 -08001675 * aggregator if it's still active (it has an answering
1676 * partner) or if both the best and active don't have an
1677 * answering partner.
1678 */
1679 if (active && active->lag_ports &&
Jay Vosburgh0622cab2016-06-23 14:20:51 -07001680 __agg_active_ports(active) &&
Jay Vosburghfd989c82008-11-04 17:51:16 -08001681 (__agg_has_partner(active) ||
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001682 (!__agg_has_partner(active) &&
1683 !__agg_has_partner(best)))) {
Jay Vosburghfd989c82008-11-04 17:51:16 -08001684 if (!(!active->actor_oper_aggregator_key &&
1685 best->actor_oper_aggregator_key)) {
1686 best = NULL;
1687 active->is_active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 }
1689 }
1690 }
1691
Jay Vosburghfd989c82008-11-04 17:51:16 -08001692 if (best && (best == active)) {
1693 best = NULL;
1694 active->is_active = 1;
1695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
dingtianhongbe79bd02013-12-13 10:20:12 +08001697 /* if there is new best aggregator, activate it */
Jay Vosburghfd989c82008-11-04 17:51:16 -08001698 if (best) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001699 netdev_dbg(bond->dev, "best Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1700 best->aggregator_identifier, best->num_of_ports,
1701 best->actor_oper_aggregator_key,
1702 best->partner_oper_aggregator_key,
1703 best->is_individual, best->is_active);
1704 netdev_dbg(bond->dev, "best ports %p slave %p %s\n",
1705 best->lag_ports, best->slave,
1706 best->slave ? best->slave->dev->name : "NULL");
Jay Vosburghfd989c82008-11-04 17:51:16 -08001707
dingtianhongbe79bd02013-12-13 10:20:12 +08001708 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08001709 agg = &(SLAVE_AD_INFO(slave)->aggregator);
Jay Vosburghfd989c82008-11-04 17:51:16 -08001710
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001711 netdev_dbg(bond->dev, "Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1712 agg->aggregator_identifier, agg->num_of_ports,
1713 agg->actor_oper_aggregator_key,
1714 agg->partner_oper_aggregator_key,
1715 agg->is_individual, agg->is_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 }
1717
dingtianhongbe79bd02013-12-13 10:20:12 +08001718 /* check if any partner replys */
Jay Vosburghfd989c82008-11-04 17:51:16 -08001719 if (best->is_individual) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001720 net_warn_ratelimited("%s: Warning: No 802.3ad response from the link partner for any adapters in the bond\n",
1721 best->slave ?
1722 best->slave->bond->dev->name : "NULL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 }
1724
Jay Vosburghfd989c82008-11-04 17:51:16 -08001725 best->is_active = 1;
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001726 netdev_dbg(bond->dev, "LAG %d chosen as the active LAG\n",
1727 best->aggregator_identifier);
1728 netdev_dbg(bond->dev, "Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1729 best->aggregator_identifier, best->num_of_ports,
1730 best->actor_oper_aggregator_key,
1731 best->partner_oper_aggregator_key,
1732 best->is_individual, best->is_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001734 /* disable the ports that were related to the former
1735 * active_aggregator
1736 */
Jay Vosburghfd989c82008-11-04 17:51:16 -08001737 if (active) {
1738 for (port = active->lag_ports; port;
1739 port = port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 __disable_port(port);
1741 }
1742 }
Mahesh Bandewaree637712014-10-04 17:45:01 -07001743 /* Slave array needs update. */
1744 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 }
1746
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001747 /* if the selected aggregator is of join individuals
Jay Vosburghfd989c82008-11-04 17:51:16 -08001748 * (partner_system is NULL), enable their ports
1749 */
1750 active = __get_active_agg(origin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Jay Vosburghfd989c82008-11-04 17:51:16 -08001752 if (active) {
1753 if (!__agg_has_partner(active)) {
1754 for (port = active->lag_ports; port;
1755 port = port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 __enable_port(port);
1757 }
1758 }
1759 }
Jay Vosburghfd989c82008-11-04 17:51:16 -08001760
dingtianhongbe79bd02013-12-13 10:20:12 +08001761 rcu_read_unlock();
1762
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001763 bond_3ad_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
1765
1766/**
1767 * ad_clear_agg - clear a given aggregator's parameters
1768 * @aggregator: the aggregator we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 */
1770static void ad_clear_agg(struct aggregator *aggregator)
1771{
1772 if (aggregator) {
Holger Eitzenberger1624db72008-12-26 13:27:21 -08001773 aggregator->is_individual = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 aggregator->actor_admin_aggregator_key = 0;
1775 aggregator->actor_oper_aggregator_key = 0;
Eric Dumazetf87fda02016-06-30 16:13:41 +02001776 eth_zero_addr(aggregator->partner_system.mac_addr_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 aggregator->partner_system_priority = 0;
1778 aggregator->partner_oper_aggregator_key = 0;
1779 aggregator->receive_state = 0;
1780 aggregator->transmit_state = 0;
1781 aggregator->lag_ports = NULL;
1782 aggregator->is_active = 0;
1783 aggregator->num_of_ports = 0;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001784 pr_debug("LAG %d was cleared\n",
1785 aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
1787}
1788
1789/**
1790 * ad_initialize_agg - initialize a given aggregator's parameters
1791 * @aggregator: the aggregator we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 */
1793static void ad_initialize_agg(struct aggregator *aggregator)
1794{
1795 if (aggregator) {
1796 ad_clear_agg(aggregator);
1797
Eric Dumazetf87fda02016-06-30 16:13:41 +02001798 eth_zero_addr(aggregator->aggregator_mac_address.mac_addr_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 aggregator->aggregator_identifier = 0;
1800 aggregator->slave = NULL;
1801 }
1802}
1803
1804/**
1805 * ad_initialize_port - initialize a given port's parameters
1806 * @aggregator: the aggregator we're looking at
1807 * @lacp_fast: boolean. whether fast periodic should be used
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 */
1809static void ad_initialize_port(struct port *port, int lacp_fast)
1810{
Holger Eitzenbergerc7e703d2008-12-17 19:12:07 -08001811 static const struct port_params tmpl = {
1812 .system_priority = 0xffff,
1813 .key = 1,
1814 .port_number = 1,
1815 .port_priority = 0xff,
1816 .port_state = 1,
1817 };
Holger Eitzenberger7addeef2008-12-26 13:28:33 -08001818 static const struct lacpdu lacpdu = {
1819 .subtype = 0x01,
1820 .version_number = 0x01,
1821 .tlv_type_actor_info = 0x01,
1822 .actor_information_length = 0x14,
1823 .tlv_type_partner_info = 0x02,
1824 .partner_information_length = 0x14,
1825 .tlv_type_collector_info = 0x03,
1826 .collector_information_length = 0x10,
1827 .collector_max_delay = htons(AD_COLLECTOR_MAX_DELAY),
1828 };
Holger Eitzenbergerc7e703d2008-12-17 19:12:07 -08001829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 if (port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 port->actor_port_priority = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 port->actor_port_aggregator_identifier = 0;
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001833 port->ntt = false;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001834 port->actor_admin_port_state = AD_STATE_AGGREGATION |
1835 AD_STATE_LACP_ACTIVITY;
1836 port->actor_oper_port_state = AD_STATE_AGGREGATION |
1837 AD_STATE_LACP_ACTIVITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Bandan Das7bfc4752010-10-16 20:19:59 +00001839 if (lacp_fast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 port->actor_oper_port_state |= AD_STATE_LACP_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Holger Eitzenbergerc7e703d2008-12-17 19:12:07 -08001842 memcpy(&port->partner_admin, &tmpl, sizeof(tmpl));
1843 memcpy(&port->partner_oper, &tmpl, sizeof(tmpl));
1844
Holger Eitzenbergerf48127b2008-12-26 13:26:54 -08001845 port->is_enabled = true;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001846 /* private parameters */
Mahesh Bandewar19a12042015-03-27 22:34:31 -07001847 port->sm_vars = AD_PORT_BEGIN | AD_PORT_LACP_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 port->sm_rx_state = 0;
1849 port->sm_rx_timer_counter = 0;
1850 port->sm_periodic_state = 0;
1851 port->sm_periodic_timer_counter = 0;
1852 port->sm_mux_state = 0;
1853 port->sm_mux_timer_counter = 0;
1854 port->sm_tx_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 port->aggregator = NULL;
1856 port->next_port_in_aggregator = NULL;
1857 port->transaction_id = 0;
1858
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001859 port->sm_churn_actor_timer_counter = 0;
1860 port->sm_churn_actor_state = 0;
1861 port->churn_actor_count = 0;
1862 port->sm_churn_partner_timer_counter = 0;
1863 port->sm_churn_partner_state = 0;
1864 port->churn_partner_count = 0;
1865
Holger Eitzenberger7addeef2008-12-26 13:28:33 -08001866 memcpy(&port->lacpdu, &lacpdu, sizeof(lacpdu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
1868}
1869
1870/**
1871 * ad_enable_collecting_distributing - enable a port's transmit/receive
1872 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001873 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 *
1875 * Enable @port if it's in an active aggregator
1876 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001877static void ad_enable_collecting_distributing(struct port *port,
1878 bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
1880 if (port->aggregator->is_active) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001881 pr_debug("Enabling port %d(LAG %d)\n",
1882 port->actor_port_number,
1883 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 __enable_port(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07001885 /* Slave array needs update */
1886 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
1888}
1889
1890/**
1891 * ad_disable_collecting_distributing - disable a port's transmit/receive
1892 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001893 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001895static void ad_disable_collecting_distributing(struct port *port,
1896 bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001898 if (port->aggregator &&
1899 !MAC_ADDRESS_EQUAL(&(port->aggregator->partner_system),
1900 &(null_mac_addr))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001901 pr_debug("Disabling port %d(LAG %d)\n",
1902 port->actor_port_number,
1903 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 __disable_port(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07001905 /* Slave array needs an update */
1906 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 }
1908}
1909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910/**
1911 * ad_marker_info_received - handle receive of a Marker information frame
1912 * @marker_info: Marker info received
1913 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001915static void ad_marker_info_received(struct bond_marker *marker_info,
1916 struct port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001918 struct bond_marker marker;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001920 /* copy the received marker data to the response marker */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001921 memcpy(&marker, marker_info, sizeof(struct bond_marker));
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001922 /* change the marker subtype to marker response */
Bandan Das128ea6c2010-10-16 20:19:58 +00001923 marker.tlv_type = AD_MARKER_RESPONSE_SUBTYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001925 /* send the marker response */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 if (ad_marker_send(port, &marker) >= 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001927 pr_debug("Sent Marker Response on port %d\n",
1928 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930}
1931
1932/**
1933 * ad_marker_response_received - handle receive of a marker response frame
1934 * @marker: marker PDU received
1935 * @port: the port we're looking at
1936 *
1937 * This function does nothing since we decided not to implement send and handle
1938 * response for marker PDU's, in this stage, but only to respond to marker
1939 * information.
1940 */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001941static void ad_marker_response_received(struct bond_marker *marker,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001942 struct port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001944 /* DO NOTHING, SINCE WE DECIDED NOT TO IMPLEMENT THIS FEATURE FOR NOW */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945}
1946
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001947/* ========= AD exported functions to the main bonding code ========= */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001949/* Check aggregators status in team every T seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950#define AD_AGGREGATOR_SELECTION_TIMER 8
1951
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001952/**
1953 * bond_3ad_initiate_agg_selection - initate aggregator selection
1954 * @bond: bonding struct
Jay Vosburghfd989c82008-11-04 17:51:16 -08001955 *
1956 * Set the aggregation selection timer, to initiate an agg selection in
1957 * the very near future. Called during first initialization, and during
1958 * any down to up transitions of the bond.
1959 */
1960void bond_3ad_initiate_agg_selection(struct bonding *bond, int timeout)
1961{
1962 BOND_AD_INFO(bond).agg_select_timer = timeout;
Jay Vosburghfd989c82008-11-04 17:51:16 -08001963}
1964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965/**
1966 * bond_3ad_initialize - initialize a bond's 802.3ad parameters and structures
1967 * @bond: bonding struct to work on
1968 * @tick_resolution: tick duration (millisecond resolution)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 *
1970 * Can be called only after the mac address of the bond is set.
1971 */
Peter Pan(潘卫平)56d00c672011-06-08 21:19:02 +00001972void bond_3ad_initialize(struct bonding *bond, u16 tick_resolution)
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001973{
dingtianhong815117a2014-01-02 09:12:54 +08001974 /* check that the bond is not initialized yet */
1975 if (!MAC_ADDRESS_EQUAL(&(BOND_AD_INFO(bond).system.sys_mac_addr),
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001976 bond->dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Jiri Bohac163c8ff2014-02-14 18:13:50 +01001978 BOND_AD_INFO(bond).aggregator_identifier = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Mahesh Bandewar6791e462015-05-09 00:01:55 -07001980 BOND_AD_INFO(bond).system.sys_priority =
1981 bond->params.ad_actor_sys_prio;
Mahesh Bandewar74514952015-05-09 00:01:56 -07001982 if (is_zero_ether_addr(bond->params.ad_actor_system))
1983 BOND_AD_INFO(bond).system.sys_mac_addr =
1984 *((struct mac_addr *)bond->dev->dev_addr);
1985 else
1986 BOND_AD_INFO(bond).system.sys_mac_addr =
1987 *((struct mac_addr *)bond->params.ad_actor_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001989 /* initialize how many times this module is called in one
1990 * second (should be about every 100ms)
1991 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 ad_ticks_per_sec = tick_resolution;
1993
Jay Vosburghfd989c82008-11-04 17:51:16 -08001994 bond_3ad_initiate_agg_selection(bond,
1995 AD_AGGREGATOR_SELECTION_TIMER *
1996 ad_ticks_per_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 }
1998}
1999
2000/**
2001 * bond_3ad_bind_slave - initialize a slave's port
2002 * @slave: slave struct to work on
2003 *
2004 * Returns: 0 on success
2005 * < 0 on error
2006 */
dingtianhong359632e2014-01-02 09:13:12 +08002007void bond_3ad_bind_slave(struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
2009 struct bonding *bond = bond_get_bond_by_slave(slave);
2010 struct port *port;
2011 struct aggregator *aggregator;
2012
dingtianhong359632e2014-01-02 09:13:12 +08002013 /* check that the slave has not been initialized yet. */
dingtianhong3fdddd82014-05-12 15:08:43 +08002014 if (SLAVE_AD_INFO(slave)->port.slave != slave) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
dingtianhong359632e2014-01-02 09:13:12 +08002016 /* port initialization */
dingtianhong3fdddd82014-05-12 15:08:43 +08002017 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Peter Pan(潘卫平)bf0239a2011-06-13 04:30:10 +00002019 ad_initialize_port(port, bond->params.lacp_fast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 port->slave = slave;
dingtianhong3fdddd82014-05-12 15:08:43 +08002022 port->actor_port_number = SLAVE_AD_INFO(slave)->id;
Mahesh Bandeward22a5fc2015-05-09 00:01:57 -07002023 /* key is determined according to the link speed, duplex and
2024 * user key
dingtianhong359632e2014-01-02 09:13:12 +08002025 */
Mahesh Bandeward22a5fc2015-05-09 00:01:57 -07002026 port->actor_admin_port_key = bond->params.ad_user_port_key << 6;
Mahesh Bandewar7bb11dc2015-10-31 12:45:06 -07002027 ad_update_actor_keys(port, false);
dingtianhong359632e2014-01-02 09:13:12 +08002028 /* actor system is the bond's system */
Nikolay Aleksandrov5ee14e62016-02-03 13:17:01 +01002029 __ad_actor_update_port(port);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002030 /* tx timer(to verify that no more than MAX_TX_IN_SECOND
2031 * lacpdu's are sent in one second)
2032 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 port->sm_tx_timer_counter = ad_ticks_per_sec/AD_MAX_TX_IN_SECOND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 __disable_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
dingtianhong359632e2014-01-02 09:13:12 +08002037 /* aggregator initialization */
dingtianhong3fdddd82014-05-12 15:08:43 +08002038 aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
2040 ad_initialize_agg(aggregator);
2041
2042 aggregator->aggregator_mac_address = *((struct mac_addr *)bond->dev->dev_addr);
Jiri Bohac163c8ff2014-02-14 18:13:50 +01002043 aggregator->aggregator_identifier = ++BOND_AD_INFO(bond).aggregator_identifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 aggregator->slave = slave;
2045 aggregator->is_active = 0;
2046 aggregator->num_of_ports = 0;
2047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048}
2049
2050/**
2051 * bond_3ad_unbind_slave - deinitialize a slave's port
2052 * @slave: slave struct to work on
2053 *
2054 * Search for the aggregator that is related to this port, remove the
2055 * aggregator and assign another aggregator for other port related to it
2056 * (if any), and remove the port.
2057 */
2058void bond_3ad_unbind_slave(struct slave *slave)
2059{
2060 struct port *port, *prev_port, *temp_port;
2061 struct aggregator *aggregator, *new_aggregator, *temp_aggregator;
2062 int select_new_active_agg = 0;
Veaceslav Falico0b0882642013-09-27 16:12:02 +02002063 struct bonding *bond = slave->bond;
2064 struct slave *slave_iter;
2065 struct list_head *iter;
Mahesh Bandewaree637712014-10-04 17:45:01 -07002066 bool dummy_slave_update; /* Ignore this value as caller updates array */
Jasper Spaansa361c832009-10-23 04:09:24 +00002067
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002068 /* Sync against bond_3ad_state_machine_handler() */
2069 spin_lock_bh(&bond->mode_lock);
dingtianhong3fdddd82014-05-12 15:08:43 +08002070 aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
2071 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002073 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002075 netdev_warn(bond->dev, "Trying to unbind an uninitialized port on %s\n",
2076 slave->dev->name);
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002077 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 }
2079
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002080 netdev_dbg(bond->dev, "Unbinding Link Aggregation Group %d\n",
2081 aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 /* Tell the partner that this port is not suitable for aggregation */
2084 port->actor_oper_port_state &= ~AD_STATE_AGGREGATION;
2085 __update_lacpdu_from_port(port);
2086 ad_lacpdu_send(port);
2087
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002088 /* check if this aggregator is occupied */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 if (aggregator->lag_ports) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002090 /* check if there are other ports related to this aggregator
2091 * except the port related to this slave(thats ensure us that
2092 * there is a reason to search for new aggregator, and that we
2093 * will find one
2094 */
2095 if ((aggregator->lag_ports != port) ||
2096 (aggregator->lag_ports->next_port_in_aggregator)) {
2097 /* find new aggregator for the related port(s) */
Veaceslav Falico0b0882642013-09-27 16:12:02 +02002098 bond_for_each_slave(bond, slave_iter, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002099 new_aggregator = &(SLAVE_AD_INFO(slave_iter)->aggregator);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002100 /* if the new aggregator is empty, or it is
2101 * connected to our port only
2102 */
2103 if (!new_aggregator->lag_ports ||
2104 ((new_aggregator->lag_ports == port) &&
2105 !new_aggregator->lag_ports->next_port_in_aggregator))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 }
Veaceslav Falico0b0882642013-09-27 16:12:02 +02002108 if (!slave_iter)
2109 new_aggregator = NULL;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002110
2111 /* if new aggregator found, copy the aggregator's
2112 * parameters and connect the related lag_ports to the
2113 * new aggregator
2114 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 if ((new_aggregator) && ((!new_aggregator->lag_ports) || ((new_aggregator->lag_ports == port) && !new_aggregator->lag_ports->next_port_in_aggregator))) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002116 netdev_dbg(bond->dev, "Some port(s) related to LAG %d - replacing with LAG %d\n",
2117 aggregator->aggregator_identifier,
2118 new_aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002120 if ((new_aggregator->lag_ports == port) &&
2121 new_aggregator->is_active) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002122 netdev_info(bond->dev, "Removing an active aggregator\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 select_new_active_agg = 1;
2124 }
2125
2126 new_aggregator->is_individual = aggregator->is_individual;
2127 new_aggregator->actor_admin_aggregator_key = aggregator->actor_admin_aggregator_key;
2128 new_aggregator->actor_oper_aggregator_key = aggregator->actor_oper_aggregator_key;
2129 new_aggregator->partner_system = aggregator->partner_system;
2130 new_aggregator->partner_system_priority = aggregator->partner_system_priority;
2131 new_aggregator->partner_oper_aggregator_key = aggregator->partner_oper_aggregator_key;
2132 new_aggregator->receive_state = aggregator->receive_state;
2133 new_aggregator->transmit_state = aggregator->transmit_state;
2134 new_aggregator->lag_ports = aggregator->lag_ports;
2135 new_aggregator->is_active = aggregator->is_active;
2136 new_aggregator->num_of_ports = aggregator->num_of_ports;
2137
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002138 /* update the information that is written on
2139 * the ports about the aggregator
2140 */
Bandan Das128ea6c2010-10-16 20:19:58 +00002141 for (temp_port = aggregator->lag_ports; temp_port;
2142 temp_port = temp_port->next_port_in_aggregator) {
2143 temp_port->aggregator = new_aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 temp_port->actor_port_aggregator_identifier = new_aggregator->aggregator_identifier;
2145 }
2146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 ad_clear_agg(aggregator);
Jasper Spaansa361c832009-10-23 04:09:24 +00002148
Bandan Das7bfc4752010-10-16 20:19:59 +00002149 if (select_new_active_agg)
Mahesh Bandewaree637712014-10-04 17:45:01 -07002150 ad_agg_selection_logic(__get_first_agg(port),
2151 &dummy_slave_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 } else {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002153 netdev_warn(bond->dev, "unbinding aggregator, and could not find a new aggregator for its ports\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002155 } else {
2156 /* in case that the only port related to this
2157 * aggregator is the one we want to remove
2158 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 select_new_active_agg = aggregator->is_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 ad_clear_agg(aggregator);
2161 if (select_new_active_agg) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002162 netdev_info(bond->dev, "Removing an active aggregator\n");
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002163 /* select new active aggregator */
Veaceslav Falico74684492013-09-27 15:10:58 +02002164 temp_aggregator = __get_first_agg(port);
2165 if (temp_aggregator)
Mahesh Bandewaree637712014-10-04 17:45:01 -07002166 ad_agg_selection_logic(temp_aggregator,
2167 &dummy_slave_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 }
2169 }
2170 }
2171
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002172 netdev_dbg(bond->dev, "Unbinding port %d\n", port->actor_port_number);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002173
2174 /* find the aggregator that this port is connected to */
Veaceslav Falico0b0882642013-09-27 16:12:02 +02002175 bond_for_each_slave(bond, slave_iter, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002176 temp_aggregator = &(SLAVE_AD_INFO(slave_iter)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 prev_port = NULL;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002178 /* search the port in the aggregator's related ports */
Bandan Das128ea6c2010-10-16 20:19:58 +00002179 for (temp_port = temp_aggregator->lag_ports; temp_port;
2180 prev_port = temp_port,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002181 temp_port = temp_port->next_port_in_aggregator) {
2182 if (temp_port == port) {
2183 /* the aggregator found - detach the port from
2184 * this aggregator
2185 */
Bandan Das7bfc4752010-10-16 20:19:59 +00002186 if (prev_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 prev_port->next_port_in_aggregator = temp_port->next_port_in_aggregator;
Bandan Das7bfc4752010-10-16 20:19:59 +00002188 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 temp_aggregator->lag_ports = temp_port->next_port_in_aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 temp_aggregator->num_of_ports--;
Jay Vosburgh0622cab2016-06-23 14:20:51 -07002191 if (__agg_active_ports(temp_aggregator) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 select_new_active_agg = temp_aggregator->is_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 ad_clear_agg(temp_aggregator);
2194 if (select_new_active_agg) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002195 netdev_info(bond->dev, "Removing an active aggregator\n");
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002196 /* select new active aggregator */
Mahesh Bandewaree637712014-10-04 17:45:01 -07002197 ad_agg_selection_logic(__get_first_agg(port),
2198 &dummy_slave_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 }
2200 }
2201 break;
2202 }
2203 }
2204 }
Bandan Das128ea6c2010-10-16 20:19:58 +00002205 port->slave = NULL;
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002206
2207out:
2208 spin_unlock_bh(&bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209}
2210
2211/**
Nikolay Aleksandrov5ee14e62016-02-03 13:17:01 +01002212 * bond_3ad_update_ad_actor_settings - reflect change of actor settings to ports
2213 * @bond: bonding struct to work on
2214 *
2215 * If an ad_actor setting gets changed we need to update the individual port
2216 * settings so the bond device will use the new values when it gets upped.
2217 */
2218void bond_3ad_update_ad_actor_settings(struct bonding *bond)
2219{
2220 struct list_head *iter;
2221 struct slave *slave;
2222
2223 ASSERT_RTNL();
2224
2225 BOND_AD_INFO(bond).system.sys_priority = bond->params.ad_actor_sys_prio;
2226 if (is_zero_ether_addr(bond->params.ad_actor_system))
2227 BOND_AD_INFO(bond).system.sys_mac_addr =
2228 *((struct mac_addr *)bond->dev->dev_addr);
2229 else
2230 BOND_AD_INFO(bond).system.sys_mac_addr =
2231 *((struct mac_addr *)bond->params.ad_actor_system);
2232
2233 spin_lock_bh(&bond->mode_lock);
Nikolay Aleksandrov7f20cd22016-02-04 17:42:28 +01002234 bond_for_each_slave(bond, slave, iter) {
2235 struct port *port = &(SLAVE_AD_INFO(slave))->port;
2236
2237 __ad_actor_update_port(port);
2238 port->ntt = true;
2239 }
Nikolay Aleksandrov5ee14e62016-02-03 13:17:01 +01002240 spin_unlock_bh(&bond->mode_lock);
2241}
2242
2243/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 * bond_3ad_state_machine_handler - handle state machines timeout
2245 * @bond: bonding struct to work on
2246 *
2247 * The state machine handling concept in this module is to check every tick
2248 * which state machine should operate any function. The execution order is
2249 * round robin, so when we have an interaction between state machines, the
2250 * reply of one to each other might be delayed until next tick.
2251 *
2252 * This function also complete the initialization when the agg_select_timer
2253 * times out, and it selects an aggregator for the ports that are yet not
2254 * related to any aggregator, and selects the active aggregator for a bond.
2255 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002256void bond_3ad_state_machine_handler(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002258 struct bonding *bond = container_of(work, struct bonding,
2259 ad_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 struct aggregator *aggregator;
Veaceslav Falico3c4c88a2013-09-27 16:11:57 +02002261 struct list_head *iter;
2262 struct slave *slave;
2263 struct port *port;
dingtianhong5e5b0662014-02-26 11:05:22 +08002264 bool should_notify_rtnl = BOND_SLAVE_NOTIFY_LATER;
Mahesh Bandewaree637712014-10-04 17:45:01 -07002265 bool update_slave_arr = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002267 /* Lock to protect data accessed by all (e.g., port->sm_vars) and
2268 * against running with bond_3ad_unbind_slave. ad_rx_machine may run
2269 * concurrently due to incoming LACPDU as well.
2270 */
Nikolay Aleksandrovb7435622014-09-11 22:49:25 +02002271 spin_lock_bh(&bond->mode_lock);
dingtianhongbe79bd02013-12-13 10:20:12 +08002272 rcu_read_lock();
David S. Miller1f2cd842013-10-28 00:11:22 -04002273
dingtianhongbe79bd02013-12-13 10:20:12 +08002274 /* check if there are any slaves */
Veaceslav Falico0965a1f2013-09-25 09:20:21 +02002275 if (!bond_has_slaves(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
dingtianhongbe79bd02013-12-13 10:20:12 +08002278 /* check if agg_select_timer timer after initialize is timed out */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002279 if (BOND_AD_INFO(bond).agg_select_timer &&
2280 !(--BOND_AD_INFO(bond).agg_select_timer)) {
dingtianhongbe79bd02013-12-13 10:20:12 +08002281 slave = bond_first_slave_rcu(bond);
dingtianhong3fdddd82014-05-12 15:08:43 +08002282 port = slave ? &(SLAVE_AD_INFO(slave)->port) : NULL;
Veaceslav Falicofe9323d2013-09-27 16:11:58 +02002283
dingtianhongbe79bd02013-12-13 10:20:12 +08002284 /* select the active aggregator for the bond */
Veaceslav Falicofe9323d2013-09-27 16:11:58 +02002285 if (port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002287 net_warn_ratelimited("%s: Warning: bond's first port is uninitialized\n",
2288 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 goto re_arm;
2290 }
2291
2292 aggregator = __get_first_agg(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07002293 ad_agg_selection_logic(aggregator, &update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002295 bond_3ad_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 }
2297
dingtianhongbe79bd02013-12-13 10:20:12 +08002298 /* for each port run the state machines */
2299 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002300 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002302 net_warn_ratelimited("%s: Warning: Found an uninitialized port\n",
Veaceslav Falico86a2b9c2014-03-16 17:55:03 +01002303 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 goto re_arm;
2305 }
2306
2307 ad_rx_machine(NULL, port);
2308 ad_periodic_machine(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07002309 ad_port_selection_logic(port, &update_slave_arr);
2310 ad_mux_machine(port, &update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 ad_tx_machine(port);
Mahesh Bandewar14c95512015-02-23 17:50:11 -08002312 ad_churn_machine(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
dingtianhongbe79bd02013-12-13 10:20:12 +08002314 /* turn off the BEGIN bit, since we already handled it */
Bandan Das7bfc4752010-10-16 20:19:59 +00002315 if (port->sm_vars & AD_PORT_BEGIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 port->sm_vars &= ~AD_PORT_BEGIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 }
2318
2319re_arm:
dingtianhong5e5b0662014-02-26 11:05:22 +08002320 bond_for_each_slave_rcu(bond, slave, iter) {
2321 if (slave->should_notify) {
2322 should_notify_rtnl = BOND_SLAVE_NOTIFY_NOW;
2323 break;
2324 }
2325 }
dingtianhongbe79bd02013-12-13 10:20:12 +08002326 rcu_read_unlock();
Nikolay Aleksandrovb7435622014-09-11 22:49:25 +02002327 spin_unlock_bh(&bond->mode_lock);
dingtianhong5e5b0662014-02-26 11:05:22 +08002328
Mahesh Bandewaree637712014-10-04 17:45:01 -07002329 if (update_slave_arr)
2330 bond_slave_arr_work_rearm(bond, 0);
2331
dingtianhong5e5b0662014-02-26 11:05:22 +08002332 if (should_notify_rtnl && rtnl_trylock()) {
dingtianhongb0929912014-02-26 11:05:23 +08002333 bond_slave_state_notify(bond);
dingtianhong5e5b0662014-02-26 11:05:22 +08002334 rtnl_unlock();
2335 }
dingtianhongbe79bd02013-12-13 10:20:12 +08002336 queue_delayed_work(bond->wq, &bond->ad_work, ad_delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337}
2338
2339/**
2340 * bond_3ad_rx_indication - handle a received frame
2341 * @lacpdu: received lacpdu
2342 * @slave: slave struct to work on
2343 * @length: length of the data received
2344 *
2345 * It is assumed that frames that were sent on this NIC don't returned as new
2346 * received frames (loopback). Since only the payload is given to this
2347 * function, it check for loopback.
2348 */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002349static int bond_3ad_rx_indication(struct lacpdu *lacpdu, struct slave *slave,
2350 u16 length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
2352 struct port *port;
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002353 int ret = RX_HANDLER_ANOTHER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
2355 if (length >= sizeof(struct lacpdu)) {
2356
dingtianhong3fdddd82014-05-12 15:08:43 +08002357 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
2359 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002360 net_warn_ratelimited("%s: Warning: port of slave %s is uninitialized\n",
2361 slave->dev->name, slave->bond->dev->name);
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002362 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 }
2364
2365 switch (lacpdu->subtype) {
2366 case AD_TYPE_LACPDU:
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002367 ret = RX_HANDLER_CONSUMED;
Satish Ashok2f637322015-01-26 01:17:00 -05002368 netdev_dbg(slave->bond->dev,
2369 "Received LACPDU on port %d slave %s\n",
2370 port->actor_port_number,
2371 slave->dev->name);
Nils Carlson16d79d72011-03-03 22:09:11 +00002372 /* Protect against concurrent state machines */
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002373 spin_lock(&slave->bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 ad_rx_machine(lacpdu, port);
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002375 spin_unlock(&slave->bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 break;
2377
2378 case AD_TYPE_MARKER:
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002379 ret = RX_HANDLER_CONSUMED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002380 /* No need to convert fields to Little Endian since we
2381 * don't use the marker's fields.
2382 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07002384 switch (((struct bond_marker *)lacpdu)->tlv_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 case AD_MARKER_INFORMATION_SUBTYPE:
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002386 netdev_dbg(slave->bond->dev, "Received Marker Information on port %d\n",
2387 port->actor_port_number);
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07002388 ad_marker_info_received((struct bond_marker *)lacpdu, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 break;
2390
2391 case AD_MARKER_RESPONSE_SUBTYPE:
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002392 netdev_dbg(slave->bond->dev, "Received Marker Response on port %d\n",
2393 port->actor_port_number);
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07002394 ad_marker_response_received((struct bond_marker *)lacpdu, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 break;
2396
2397 default:
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002398 netdev_dbg(slave->bond->dev, "Received an unknown Marker subtype on slot %d\n",
2399 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 }
2401 }
2402 }
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002403 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404}
2405
2406/**
Mahesh Bandewar7bb11dc2015-10-31 12:45:06 -07002407 * ad_update_actor_keys - Update the oper / admin keys for a port based on
2408 * its current speed and duplex settings.
2409 *
2410 * @port: the port we'are looking at
2411 * @reset: Boolean to just reset the speed and the duplex part of the key
2412 *
2413 * The logic to change the oper / admin keys is:
2414 * (a) A full duplex port can participate in LACP with partner.
2415 * (b) When the speed is changed, LACP need to be reinitiated.
2416 */
2417static void ad_update_actor_keys(struct port *port, bool reset)
2418{
2419 u8 duplex = 0;
2420 u16 ospeed = 0, speed = 0;
2421 u16 old_oper_key = port->actor_oper_port_key;
2422
2423 port->actor_admin_port_key &= ~(AD_SPEED_KEY_MASKS|AD_DUPLEX_KEY_MASKS);
2424 if (!reset) {
2425 speed = __get_link_speed(port);
2426 ospeed = (old_oper_key & AD_SPEED_KEY_MASKS) >> 1;
2427 duplex = __get_duplex(port);
2428 port->actor_admin_port_key |= (speed << 1) | duplex;
2429 }
2430 port->actor_oper_port_key = port->actor_admin_port_key;
2431
2432 if (old_oper_key != port->actor_oper_port_key) {
2433 /* Only 'duplex' port participates in LACP */
2434 if (duplex)
2435 port->sm_vars |= AD_PORT_LACP_ENABLED;
2436 else
2437 port->sm_vars &= ~AD_PORT_LACP_ENABLED;
2438
2439 if (!reset) {
2440 if (!speed) {
2441 netdev_err(port->slave->dev,
2442 "speed changed to 0 for port %s",
2443 port->slave->dev->name);
2444 } else if (duplex && ospeed != speed) {
2445 /* Speed change restarts LACP state-machine */
2446 port->sm_vars |= AD_PORT_BEGIN;
2447 }
2448 }
2449 }
2450}
2451
2452/**
Mahesh Bandewar52bc6712015-10-31 12:45:11 -07002453 * bond_3ad_adapter_speed_duplex_changed - handle a slave's speed / duplex
2454 * change indication
2455 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 * @slave: slave struct to work on
2457 *
2458 * Handle reselection of aggregator (if needed) for this port.
2459 */
Mahesh Bandewar52bc6712015-10-31 12:45:11 -07002460void bond_3ad_adapter_speed_duplex_changed(struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
2462 struct port *port;
2463
dingtianhong3fdddd82014-05-12 15:08:43 +08002464 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
dingtianhong71a06c52013-12-13 17:29:19 +08002466 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 if (!port->slave) {
Mahesh Bandewar52bc6712015-10-31 12:45:11 -07002468 netdev_warn(slave->bond->dev,
2469 "speed/duplex changed for uninitialized port %s\n",
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002470 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 return;
2472 }
2473
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002474 spin_lock_bh(&slave->bond->mode_lock);
Mahesh Bandewar7bb11dc2015-10-31 12:45:06 -07002475 ad_update_actor_keys(port, false);
Mahesh Bandeware292dca2017-03-27 11:37:40 -07002476 spin_unlock_bh(&slave->bond->mode_lock);
Mahesh Bandewar52bc6712015-10-31 12:45:11 -07002477 netdev_dbg(slave->bond->dev, "Port %d slave %s changed speed/duplex\n",
Satish Ashok2f637322015-01-26 01:17:00 -05002478 port->actor_port_number, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479}
2480
2481/**
2482 * bond_3ad_handle_link_change - handle a slave's link status change indication
2483 * @slave: slave struct to work on
2484 * @status: whether the link is now up or down
2485 *
2486 * Handle reselection of aggregator (if needed) for this port.
2487 */
2488void bond_3ad_handle_link_change(struct slave *slave, char link)
2489{
Jay Vosburgh0622cab2016-06-23 14:20:51 -07002490 struct aggregator *agg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 struct port *port;
Jay Vosburgh0622cab2016-06-23 14:20:51 -07002492 bool dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
dingtianhong3fdddd82014-05-12 15:08:43 +08002494 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
dingtianhong108db732013-12-13 17:29:29 +08002496 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002498 netdev_warn(slave->bond->dev, "link status changed for uninitialized port on %s\n",
2499 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 return;
2501 }
2502
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002503 spin_lock_bh(&slave->bond->mode_lock);
dingtianhong108db732013-12-13 17:29:29 +08002504 /* on link down we are zeroing duplex and speed since
2505 * some of the adaptors(ce1000.lan) report full duplex/speed
2506 * instead of N/A(duplex) / 0(speed).
2507 *
2508 * on link up we are forcing recheck on the duplex and speed since
2509 * some of he adaptors(ce1000.lan) report.
2510 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 if (link == BOND_LINK_UP) {
Holger Eitzenbergerf48127b2008-12-26 13:26:54 -08002512 port->is_enabled = true;
Mahesh Bandewar7bb11dc2015-10-31 12:45:06 -07002513 ad_update_actor_keys(port, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 } else {
2515 /* link has failed */
Holger Eitzenbergerf48127b2008-12-26 13:26:54 -08002516 port->is_enabled = false;
Mahesh Bandewar7bb11dc2015-10-31 12:45:06 -07002517 ad_update_actor_keys(port, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 }
Jay Vosburgh0622cab2016-06-23 14:20:51 -07002519 agg = __get_first_agg(port);
2520 ad_agg_selection_logic(agg, &dummy);
2521
Mahesh Bandeware292dca2017-03-27 11:37:40 -07002522 spin_unlock_bh(&slave->bond->mode_lock);
2523
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002524 netdev_dbg(slave->bond->dev, "Port %d changed link status to %s\n",
2525 port->actor_port_number,
2526 link == BOND_LINK_UP ? "UP" : "DOWN");
dingtianhong108db732013-12-13 17:29:29 +08002527
Mahesh Bandewaree637712014-10-04 17:45:01 -07002528 /* RTNL is held and mode_lock is released so it's safe
2529 * to update slave_array here.
2530 */
2531 bond_update_slave_arr(slave->bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532}
2533
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002534/**
2535 * bond_3ad_set_carrier - set link state for bonding master
2536 * @bond - bonding structure
2537 *
2538 * if we have an active aggregator, we're up, if not, we're down.
2539 * Presumes that we cannot have an active aggregator if there are
2540 * no slaves with link up.
Jay Vosburghff59c452006-03-27 13:27:43 -08002541 *
Jay Vosburgh031ae4d2007-06-13 22:11:34 -07002542 * This behavior complies with IEEE 802.3 section 43.3.9.
2543 *
Jay Vosburghff59c452006-03-27 13:27:43 -08002544 * Called by bond_set_carrier(). Return zero if carrier state does not
2545 * change, nonzero if it does.
2546 */
2547int bond_3ad_set_carrier(struct bonding *bond)
2548{
stephen hemminger655f8912011-06-22 09:54:39 +00002549 struct aggregator *active;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02002550 struct slave *first_slave;
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002551 int ret = 1;
stephen hemminger655f8912011-06-22 09:54:39 +00002552
dingtianhongbe79bd02013-12-13 10:20:12 +08002553 rcu_read_lock();
2554 first_slave = bond_first_slave_rcu(bond);
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002555 if (!first_slave) {
2556 ret = 0;
2557 goto out;
2558 }
dingtianhong3fdddd82014-05-12 15:08:43 +08002559 active = __get_active_agg(&(SLAVE_AD_INFO(first_slave)->aggregator));
stephen hemminger655f8912011-06-22 09:54:39 +00002560 if (active) {
2561 /* are enough slaves available to consider link up? */
Jay Vosburgh0622cab2016-06-23 14:20:51 -07002562 if (__agg_active_ports(active) < bond->params.min_links) {
stephen hemminger655f8912011-06-22 09:54:39 +00002563 if (netif_carrier_ok(bond->dev)) {
2564 netif_carrier_off(bond->dev);
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002565 goto out;
stephen hemminger655f8912011-06-22 09:54:39 +00002566 }
2567 } else if (!netif_carrier_ok(bond->dev)) {
Jay Vosburghff59c452006-03-27 13:27:43 -08002568 netif_carrier_on(bond->dev);
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002569 goto out;
Jay Vosburghff59c452006-03-27 13:27:43 -08002570 }
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002571 } else if (netif_carrier_ok(bond->dev)) {
Jay Vosburghff59c452006-03-27 13:27:43 -08002572 netif_carrier_off(bond->dev);
Jay Vosburghff59c452006-03-27 13:27:43 -08002573 }
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002574out:
2575 rcu_read_unlock();
2576 return ret;
Jay Vosburghff59c452006-03-27 13:27:43 -08002577}
2578
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579/**
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002580 * __bond_3ad_get_active_agg_info - get information of the active aggregator
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 * @bond: bonding struct to work on
2582 * @ad_info: ad_info struct to fill with the bond's info
2583 *
2584 * Returns: 0 on success
2585 * < 0 on error
2586 */
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002587int __bond_3ad_get_active_agg_info(struct bonding *bond,
2588 struct ad_info *ad_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589{
2590 struct aggregator *aggregator = NULL;
Veaceslav Falico3c4c88a2013-09-27 16:11:57 +02002591 struct list_head *iter;
2592 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 struct port *port;
2594
dingtianhong47e91f562013-10-15 16:28:35 +08002595 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002596 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 if (port->aggregator && port->aggregator->is_active) {
2598 aggregator = port->aggregator;
2599 break;
2600 }
2601 }
2602
Joe Perches21f374c2014-02-18 09:42:47 -08002603 if (!aggregator)
2604 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
Joe Perches21f374c2014-02-18 09:42:47 -08002606 ad_info->aggregator_id = aggregator->aggregator_identifier;
Jarod Wilson751da2a2017-05-19 19:43:45 -04002607 ad_info->ports = __agg_active_ports(aggregator);
Joe Perches21f374c2014-02-18 09:42:47 -08002608 ad_info->actor_key = aggregator->actor_oper_aggregator_key;
2609 ad_info->partner_key = aggregator->partner_oper_aggregator_key;
2610 ether_addr_copy(ad_info->partner_system,
2611 aggregator->partner_system.mac_addr_value);
2612 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613}
2614
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002615int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info)
2616{
2617 int ret;
2618
dingtianhong47e91f562013-10-15 16:28:35 +08002619 rcu_read_lock();
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002620 ret = __bond_3ad_get_active_agg_info(bond, ad_info);
dingtianhong47e91f562013-10-15 16:28:35 +08002621 rcu_read_unlock();
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002622
2623 return ret;
2624}
2625
Eric Dumazetde063b72012-06-11 19:23:07 +00002626int bond_3ad_lacpdu_recv(const struct sk_buff *skb, struct bonding *bond,
2627 struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628{
Eric Dumazetde063b72012-06-11 19:23:07 +00002629 struct lacpdu *lacpdu, _lacpdu;
2630
Jiri Pirko3aba8912011-04-19 03:48:16 +00002631 if (skb->protocol != PKT_TYPE_LACPDU)
Nikolay Aleksandrov86e74982014-09-11 22:49:22 +02002632 return RX_HANDLER_ANOTHER;
Neil Hormanb3053252011-01-20 09:02:31 +00002633
Mahesh Bandewarbb54e582015-02-23 17:50:10 -08002634 if (!MAC_ADDRESS_EQUAL(eth_hdr(skb)->h_dest, lacpdu_mcast_addr))
2635 return RX_HANDLER_ANOTHER;
2636
Eric Dumazetde063b72012-06-11 19:23:07 +00002637 lacpdu = skb_header_pointer(skb, 0, sizeof(_lacpdu), &_lacpdu);
2638 if (!lacpdu)
Nikolay Aleksandrov86e74982014-09-11 22:49:22 +02002639 return RX_HANDLER_ANOTHER;
Andy Gospodarekab128112010-09-10 11:43:20 +00002640
Nikolay Aleksandrov86e74982014-09-11 22:49:22 +02002641 return bond_3ad_rx_indication(lacpdu, slave, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642}
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002643
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002644/**
2645 * bond_3ad_update_lacp_rate - change the lacp rate
2646 * @bond - bonding struct
2647 *
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002648 * When modify lacp_rate parameter via sysfs,
2649 * update actor_oper_port_state of each port.
2650 *
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002651 * Hold bond->mode_lock,
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002652 * so we can modify port->actor_oper_port_state,
2653 * no matter bond is up or down.
2654 */
2655void bond_3ad_update_lacp_rate(struct bonding *bond)
2656{
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002657 struct port *port = NULL;
Veaceslav Falico9caff1e72013-09-25 09:20:14 +02002658 struct list_head *iter;
nikolay@redhat.comc5093162013-09-02 13:51:40 +02002659 struct slave *slave;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002660 int lacp_fast;
2661
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002662 lacp_fast = bond->params.lacp_fast;
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002663 spin_lock_bh(&bond->mode_lock);
Veaceslav Falico9caff1e72013-09-25 09:20:14 +02002664 bond_for_each_slave(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002665 port = &(SLAVE_AD_INFO(slave)->port);
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002666 if (lacp_fast)
2667 port->actor_oper_port_state |= AD_STATE_LACP_TIMEOUT;
2668 else
2669 port->actor_oper_port_state &= ~AD_STATE_LACP_TIMEOUT;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002670 }
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002671 spin_unlock_bh(&bond->mode_lock);
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002672}