blob: 3c45358844eb94bc8d44c3934e0a5689b9adf994 [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,
93 AD_LINK_SPEED_10000MBPS,
94 AD_LINK_SPEED_20000MBPS,
95 AD_LINK_SPEED_40000MBPS,
96 AD_LINK_SPEED_56000MBPS
Jianhua Xiecb8dda92014-11-19 16:48:58 +080097};
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
dingtianhong815117a2014-01-02 09:12:54 +080099/* compare MAC addresses */
100#define MAC_ADDRESS_EQUAL(A, B) \
101 ether_addr_equal_64bits((const u8 *)A, (const u8 *)B)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Bandan Das128ea6c2010-10-16 20:19:58 +0000103static struct mac_addr null_mac_addr = { { 0, 0, 0, 0, 0, 0 } };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static u16 ad_ticks_per_sec;
105static const int ad_delta_in_ticks = (AD_TIMER_INTERVAL * HZ) / 1000;
106
Holger Eitzenbergere4ac4322008-12-26 13:40:48 -0800107static const u8 lacpdu_mcast_addr[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
108
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100109/* ================= main 802.3ad protocol functions ================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static int ad_lacpdu_send(struct port *port);
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700111static int ad_marker_send(struct port *port, struct bond_marker *marker);
Mahesh Bandewaree637712014-10-04 17:45:01 -0700112static void ad_mux_machine(struct port *port, bool *update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static void ad_rx_machine(struct lacpdu *lacpdu, struct port *port);
114static void ad_tx_machine(struct port *port);
115static void ad_periodic_machine(struct port *port);
Mahesh Bandewaree637712014-10-04 17:45:01 -0700116static void ad_port_selection_logic(struct port *port, bool *update_slave_arr);
117static void ad_agg_selection_logic(struct aggregator *aggregator,
118 bool *update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119static void ad_clear_agg(struct aggregator *aggregator);
120static void ad_initialize_agg(struct aggregator *aggregator);
121static void ad_initialize_port(struct port *port, int lacp_fast);
Mahesh Bandewaree637712014-10-04 17:45:01 -0700122static void ad_enable_collecting_distributing(struct port *port,
123 bool *update_slave_arr);
124static void ad_disable_collecting_distributing(struct port *port,
125 bool *update_slave_arr);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100126static void ad_marker_info_received(struct bond_marker *marker_info,
127 struct port *port);
128static void ad_marker_response_received(struct bond_marker *marker,
129 struct port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100132/* ================= api to bonding and kernel code ================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134/**
135 * __get_bond_by_port - get the port's bonding struct
136 * @port: the port we're looking at
137 *
138 * Return @port's bonding struct, or %NULL if it can't be found.
139 */
140static inline struct bonding *__get_bond_by_port(struct port *port)
141{
Bandan Das7bfc4752010-10-16 20:19:59 +0000142 if (port->slave == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 return bond_get_bond_by_slave(port->slave);
146}
147
148/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 * __get_first_agg - get the first aggregator in the bond
150 * @bond: the bond we're looking at
151 *
152 * Return the aggregator of the first slave in @bond, or %NULL if it can't be
153 * found.
Veaceslav Falico768b9542014-01-10 11:59:44 +0100154 * The caller must hold RCU or RTNL lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
156static inline struct aggregator *__get_first_agg(struct port *port)
157{
158 struct bonding *bond = __get_bond_by_port(port);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200159 struct slave *first_slave;
Veaceslav Falico768b9542014-01-10 11:59:44 +0100160 struct aggregator *agg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
dingtianhongbe79bd02013-12-13 10:20:12 +0800162 /* If there's no bond for this port, or bond has no slaves */
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200163 if (bond == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return NULL;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100165
dingtianhongbe79bd02013-12-13 10:20:12 +0800166 rcu_read_lock();
167 first_slave = bond_first_slave_rcu(bond);
dingtianhong3fdddd82014-05-12 15:08:43 +0800168 agg = first_slave ? &(SLAVE_AD_INFO(first_slave)->aggregator) : NULL;
dingtianhongbe79bd02013-12-13 10:20:12 +0800169 rcu_read_unlock();
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100170
Veaceslav Falico768b9542014-01-10 11:59:44 +0100171 return agg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100174/**
175 * __agg_has_partner - see if we have a partner
176 * @agg: the agregator we're looking at
Jay Vosburghfd989c82008-11-04 17:51:16 -0800177 *
178 * Return nonzero if aggregator has a partner (denoted by a non-zero ether
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100179 * address for the partner). Return 0 if not.
Jay Vosburghfd989c82008-11-04 17:51:16 -0800180 */
181static inline int __agg_has_partner(struct aggregator *agg)
182{
183 return !is_zero_ether_addr(agg->partner_system.mac_addr_value);
184}
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/**
187 * __disable_port - disable the port's slave
188 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 */
190static inline void __disable_port(struct port *port)
191{
dingtianhong5e5b0662014-02-26 11:05:22 +0800192 bond_set_slave_inactive_flags(port->slave, BOND_SLAVE_NOTIFY_LATER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195/**
196 * __enable_port - enable the port's slave, if it's up
197 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 */
199static inline void __enable_port(struct port *port)
200{
201 struct slave *slave = port->slave;
202
Veaceslav Falicob6adc612014-05-15 21:39:57 +0200203 if ((slave->link == BOND_LINK_UP) && bond_slave_is_up(slave))
dingtianhong5e5b0662014-02-26 11:05:22 +0800204 bond_set_slave_active_flags(slave, BOND_SLAVE_NOTIFY_LATER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
207/**
208 * __port_is_enabled - check if the port's slave is in active state
209 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 */
211static inline int __port_is_enabled(struct port *port)
212{
Jiri Pirkoe30bc062011-03-12 03:14:37 +0000213 return bond_is_active_slave(port->slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
216/**
217 * __get_agg_selection_mode - get the aggregator selection mode
218 * @port: the port we're looking at
219 *
Jay Vosburghfd989c82008-11-04 17:51:16 -0800220 * Get the aggregator selection mode. Can be %STABLE, %BANDWIDTH or %COUNT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 */
222static inline u32 __get_agg_selection_mode(struct port *port)
223{
224 struct bonding *bond = __get_bond_by_port(port);
225
Bandan Das7bfc4752010-10-16 20:19:59 +0000226 if (bond == NULL)
Jay Vosburghfd989c82008-11-04 17:51:16 -0800227 return BOND_AD_STABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Peter Pan(潘卫平)1a14fbc2011-06-08 21:19:03 +0000229 return bond->params.ad_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
232/**
233 * __check_agg_selection_timer - check if the selection timer has expired
234 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 */
236static inline int __check_agg_selection_timer(struct port *port)
237{
238 struct bonding *bond = __get_bond_by_port(port);
239
Bandan Das7bfc4752010-10-16 20:19:59 +0000240 if (bond == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 return BOND_AD_INFO(bond).agg_select_timer ? 1 : 0;
244}
245
246/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 * __get_link_speed - get a port's speed
248 * @port: the port we're looking at
249 *
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800250 * Return @port's speed in 802.3ad enum format. i.e. one of:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 * 0,
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800252 * %AD_LINK_SPEED_10MBPS,
253 * %AD_LINK_SPEED_100MBPS,
254 * %AD_LINK_SPEED_1000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +0800255 * %AD_LINK_SPEED_2500MBPS,
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800256 * %AD_LINK_SPEED_10000MBPS
Jianhua Xie424c3232014-11-19 16:48:59 +0800257 * %AD_LINK_SPEED_20000MBPS
258 * %AD_LINK_SPEED_40000MBPS
259 * %AD_LINK_SPEED_56000MBPS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 */
261static u16 __get_link_speed(struct port *port)
262{
263 struct slave *slave = port->slave;
264 u16 speed;
265
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100266 /* this if covers only a special case: when the configuration starts
267 * with link down, it sets the speed to 0.
268 * This is done in spite of the fact that the e100 driver reports 0
269 * to be compatible with MVT in the future.
270 */
Bandan Das7bfc4752010-10-16 20:19:59 +0000271 if (slave->link != BOND_LINK_UP)
Bandan Das128ea6c2010-10-16 20:19:58 +0000272 speed = 0;
Bandan Das7bfc4752010-10-16 20:19:59 +0000273 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 switch (slave->speed) {
275 case SPEED_10:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800276 speed = AD_LINK_SPEED_10MBPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 break;
278
279 case SPEED_100:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800280 speed = AD_LINK_SPEED_100MBPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 break;
282
283 case SPEED_1000:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800284 speed = AD_LINK_SPEED_1000MBPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 break;
286
Jianhua Xie424c3232014-11-19 16:48:59 +0800287 case SPEED_2500:
288 speed = AD_LINK_SPEED_2500MBPS;
289 break;
290
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700291 case SPEED_10000:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800292 speed = AD_LINK_SPEED_10000MBPS;
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700293 break;
294
Jianhua Xie424c3232014-11-19 16:48:59 +0800295 case SPEED_20000:
296 speed = AD_LINK_SPEED_20000MBPS;
297 break;
298
299 case SPEED_40000:
300 speed = AD_LINK_SPEED_40000MBPS;
301 break;
302
303 case SPEED_56000:
304 speed = AD_LINK_SPEED_56000MBPS;
305 break;
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 default:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100308 /* unknown speed value from ethtool. shouldn't happen */
309 speed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 break;
311 }
312 }
313
Veaceslav Falicod4471f52014-07-15 19:36:00 +0200314 netdev_dbg(slave->bond->dev, "Port %d Received link speed %d update from adapter\n",
315 port->actor_port_number, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return speed;
317}
318
319/**
320 * __get_duplex - get a port's duplex
321 * @port: the port we're looking at
322 *
323 * Return @port's duplex in 802.3ad bitmask format. i.e.:
324 * 0x01 if in full duplex
325 * 0x00 otherwise
326 */
327static u8 __get_duplex(struct port *port)
328{
329 struct slave *slave = port->slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 u8 retval;
331
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100332 /* handling a special case: when the configuration starts with
333 * link down, it sets the duplex to 0.
334 */
Nikolay Aleksandrov547942c2014-09-15 17:19:34 +0200335 if (slave->link != BOND_LINK_UP) {
Bandan Das128ea6c2010-10-16 20:19:58 +0000336 retval = 0x0;
Nikolay Aleksandrov547942c2014-09-15 17:19:34 +0200337 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 switch (slave->duplex) {
339 case DUPLEX_FULL:
Bandan Das128ea6c2010-10-16 20:19:58 +0000340 retval = 0x1;
Veaceslav Falicod4471f52014-07-15 19:36:00 +0200341 netdev_dbg(slave->bond->dev, "Port %d Received status full duplex update from adapter\n",
342 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 break;
344 case DUPLEX_HALF:
345 default:
Bandan Das128ea6c2010-10-16 20:19:58 +0000346 retval = 0x0;
Veaceslav Falicod4471f52014-07-15 19:36:00 +0200347 netdev_dbg(slave->bond->dev, "Port %d Received status NOT full duplex update from adapter\n",
348 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 break;
350 }
351 }
352 return retval;
353}
354
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100355/* Conversions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357/**
358 * __ad_timer_to_ticks - convert a given timer type to AD module ticks
359 * @timer_type: which timer to operate
360 * @par: timer parameter. see below
361 *
362 * If @timer_type is %current_while_timer, @par indicates long/short timer.
363 * If @timer_type is %periodic_timer, @par is one of %FAST_PERIODIC_TIME,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100364 * %SLOW_PERIODIC_TIME.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 */
366static u16 __ad_timer_to_ticks(u16 timer_type, u16 par)
367{
Bandan Das128ea6c2010-10-16 20:19:58 +0000368 u16 retval = 0; /* to silence the compiler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 switch (timer_type) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100371 case AD_CURRENT_WHILE_TIMER: /* for rx machine usage */
Bandan Das7bfc4752010-10-16 20:19:59 +0000372 if (par)
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100373 retval = (AD_SHORT_TIMEOUT_TIME*ad_ticks_per_sec);
Bandan Das7bfc4752010-10-16 20:19:59 +0000374 else
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100375 retval = (AD_LONG_TIMEOUT_TIME*ad_ticks_per_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100377 case AD_ACTOR_CHURN_TIMER: /* for local churn machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 retval = (AD_CHURN_DETECTION_TIME*ad_ticks_per_sec);
379 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100380 case AD_PERIODIC_TIMER: /* for periodic machine */
381 retval = (par*ad_ticks_per_sec); /* long timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100383 case AD_PARTNER_CHURN_TIMER: /* for remote churn machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 retval = (AD_CHURN_DETECTION_TIME*ad_ticks_per_sec);
385 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100386 case AD_WAIT_WHILE_TIMER: /* for selection machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 retval = (AD_AGGREGATE_WAIT_TIME*ad_ticks_per_sec);
388 break;
389 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return retval;
392}
393
394
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100395/* ================= ad_rx_machine helper functions ================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397/**
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000398 * __choose_matched - update a port's matched variable from a received lacpdu
399 * @lacpdu: the lacpdu we've received
400 * @port: the port we're looking at
401 *
402 * Update the value of the matched variable, using parameter values from a
403 * newly received lacpdu. Parameter values for the partner carried in the
404 * received PDU are compared with the corresponding operational parameter
405 * values for the actor. Matched is set to TRUE if all of these parameters
406 * match and the PDU parameter partner_state.aggregation has the same value as
407 * actor_oper_port_state.aggregation and lacp will actively maintain the link
408 * in the aggregation. Matched is also set to TRUE if the value of
409 * actor_state.aggregation in the received PDU is set to FALSE, i.e., indicates
410 * an individual link and lacp will actively maintain the link. Otherwise,
411 * matched is set to FALSE. LACP is considered to be actively maintaining the
412 * link if either the PDU's actor_state.lacp_activity variable is TRUE or both
413 * the actor's actor_oper_port_state.lacp_activity and the PDU's
414 * partner_state.lacp_activity variables are TRUE.
415 *
416 * Note: the AD_PORT_MATCHED "variable" is not specified by 802.3ad; it is
417 * used here to implement the language from 802.3ad 43.4.9 that requires
418 * recordPDU to "match" the LACPDU parameters to the stored values.
419 */
420static void __choose_matched(struct lacpdu *lacpdu, struct port *port)
421{
dingtianhong815117a2014-01-02 09:12:54 +0800422 /* check if all parameters are alike
423 * or this is individual link(aggregation == FALSE)
424 * then update the state machine Matched variable.
425 */
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000426 if (((ntohs(lacpdu->partner_port) == port->actor_port_number) &&
427 (ntohs(lacpdu->partner_port_priority) == port->actor_port_priority) &&
dingtianhong815117a2014-01-02 09:12:54 +0800428 MAC_ADDRESS_EQUAL(&(lacpdu->partner_system), &(port->actor_system)) &&
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000429 (ntohs(lacpdu->partner_system_priority) == port->actor_system_priority) &&
430 (ntohs(lacpdu->partner_key) == port->actor_oper_port_key) &&
431 ((lacpdu->partner_state & AD_STATE_AGGREGATION) == (port->actor_oper_port_state & AD_STATE_AGGREGATION))) ||
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000432 ((lacpdu->actor_state & AD_STATE_AGGREGATION) == 0)
433 ) {
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000434 port->sm_vars |= AD_PORT_MATCHED;
435 } else {
436 port->sm_vars &= ~AD_PORT_MATCHED;
437 }
438}
439
440/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * __record_pdu - record parameters from a received lacpdu
442 * @lacpdu: the lacpdu we've received
443 * @port: the port we're looking at
444 *
445 * Record the parameter values for the Actor carried in a received lacpdu as
446 * the current partner operational parameter values and sets
447 * actor_oper_port_state.defaulted to FALSE.
448 */
449static void __record_pdu(struct lacpdu *lacpdu, struct port *port)
450{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (lacpdu && port) {
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800452 struct port_params *partner = &port->partner_oper;
453
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000454 __choose_matched(lacpdu, port);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100455 /* record the new parameter values for the partner
456 * operational
457 */
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800458 partner->port_number = ntohs(lacpdu->actor_port);
459 partner->port_priority = ntohs(lacpdu->actor_port_priority);
460 partner->system = lacpdu->actor_system;
461 partner->system_priority = ntohs(lacpdu->actor_system_priority);
462 partner->key = ntohs(lacpdu->actor_key);
463 partner->port_state = lacpdu->actor_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100465 /* set actor_oper_port_state.defaulted to FALSE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 port->actor_oper_port_state &= ~AD_STATE_DEFAULTED;
467
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100468 /* set the partner sync. to on if the partner is sync,
469 * and the port is matched
470 */
Wilson Kok63b46242015-01-26 01:16:59 -0500471 if ((port->sm_vars & AD_PORT_MATCHED) &&
472 (lacpdu->actor_state & AD_STATE_SYNCHRONIZATION)) {
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800473 partner->port_state |= AD_STATE_SYNCHRONIZATION;
Wilson Kok63b46242015-01-26 01:16:59 -0500474 pr_debug("%s partner sync=1\n", port->slave->dev->name);
475 } else {
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800476 partner->port_state &= ~AD_STATE_SYNCHRONIZATION;
Wilson Kok63b46242015-01-26 01:16:59 -0500477 pr_debug("%s partner sync=0\n", port->slave->dev->name);
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480}
481
482/**
483 * __record_default - record default parameters
484 * @port: the port we're looking at
485 *
486 * This function records the default parameter values for the partner carried
487 * in the Partner Admin parameters as the current partner operational parameter
488 * values and sets actor_oper_port_state.defaulted to TRUE.
489 */
490static void __record_default(struct port *port)
491{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (port) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100493 /* record the partner admin parameters */
Holger Eitzenberger5eefd1a2008-12-17 19:08:46 -0800494 memcpy(&port->partner_oper, &port->partner_admin,
495 sizeof(struct port_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100497 /* set actor_oper_port_state.defaulted to true */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 port->actor_oper_port_state |= AD_STATE_DEFAULTED;
499 }
500}
501
502/**
503 * __update_selected - update a port's Selected variable from a received lacpdu
504 * @lacpdu: the lacpdu we've received
505 * @port: the port we're looking at
506 *
507 * Update the value of the selected variable, using parameter values from a
508 * newly received lacpdu. The parameter values for the Actor carried in the
509 * received PDU are compared with the corresponding operational parameter
510 * values for the ports partner. If one or more of the comparisons shows that
511 * the value(s) received in the PDU differ from the current operational values,
512 * then selected is set to FALSE and actor_oper_port_state.synchronization is
513 * set to out_of_sync. Otherwise, selected remains unchanged.
514 */
515static void __update_selected(struct lacpdu *lacpdu, struct port *port)
516{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (lacpdu && port) {
Holger Eitzenbergerce6a49a2008-12-17 19:13:07 -0800518 const struct port_params *partner = &port->partner_oper;
519
dingtianhong815117a2014-01-02 09:12:54 +0800520 /* check if any parameter is different then
521 * update the state machine selected variable.
522 */
Joe Perches8e95a202009-12-03 07:58:21 +0000523 if (ntohs(lacpdu->actor_port) != partner->port_number ||
524 ntohs(lacpdu->actor_port_priority) != partner->port_priority ||
dingtianhong815117a2014-01-02 09:12:54 +0800525 !MAC_ADDRESS_EQUAL(&lacpdu->actor_system, &partner->system) ||
Joe Perches8e95a202009-12-03 07:58:21 +0000526 ntohs(lacpdu->actor_system_priority) != partner->system_priority ||
527 ntohs(lacpdu->actor_key) != partner->key ||
528 (lacpdu->actor_state & AD_STATE_AGGREGATION) != (partner->port_state & AD_STATE_AGGREGATION)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 port->sm_vars &= ~AD_PORT_SELECTED;
530 }
531 }
532}
533
534/**
535 * __update_default_selected - update a port's Selected variable from Partner
536 * @port: the port we're looking at
537 *
538 * This function updates the value of the selected variable, using the partner
539 * administrative parameter values. The administrative values are compared with
540 * the corresponding operational parameter values for the partner. If one or
541 * more of the comparisons shows that the administrative value(s) differ from
542 * the current operational values, then Selected is set to FALSE and
543 * actor_oper_port_state.synchronization is set to OUT_OF_SYNC. Otherwise,
544 * Selected remains unchanged.
545 */
546static void __update_default_selected(struct port *port)
547{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (port) {
Holger Eitzenberger3c520652008-12-17 19:13:27 -0800549 const struct port_params *admin = &port->partner_admin;
550 const struct port_params *oper = &port->partner_oper;
551
dingtianhong815117a2014-01-02 09:12:54 +0800552 /* check if any parameter is different then
553 * update the state machine selected variable.
554 */
Joe Perches8e95a202009-12-03 07:58:21 +0000555 if (admin->port_number != oper->port_number ||
556 admin->port_priority != oper->port_priority ||
dingtianhong815117a2014-01-02 09:12:54 +0800557 !MAC_ADDRESS_EQUAL(&admin->system, &oper->system) ||
Joe Perches8e95a202009-12-03 07:58:21 +0000558 admin->system_priority != oper->system_priority ||
559 admin->key != oper->key ||
560 (admin->port_state & AD_STATE_AGGREGATION)
Holger Eitzenberger3c520652008-12-17 19:13:27 -0800561 != (oper->port_state & AD_STATE_AGGREGATION)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 port->sm_vars &= ~AD_PORT_SELECTED;
563 }
564 }
565}
566
567/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 * __update_ntt - update a port's ntt variable from a received lacpdu
569 * @lacpdu: the lacpdu we've received
570 * @port: the port we're looking at
571 *
572 * Updates the value of the ntt variable, using parameter values from a newly
573 * received lacpdu. The parameter values for the partner carried in the
574 * received PDU are compared with the corresponding operational parameter
575 * values for the Actor. If one or more of the comparisons shows that the
576 * value(s) received in the PDU differ from the current operational values,
577 * then ntt is set to TRUE. Otherwise, ntt remains unchanged.
578 */
579static void __update_ntt(struct lacpdu *lacpdu, struct port *port)
580{
dingtianhong815117a2014-01-02 09:12:54 +0800581 /* validate lacpdu and port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (lacpdu && port) {
dingtianhong815117a2014-01-02 09:12:54 +0800583 /* check if any parameter is different then
584 * update the port->ntt.
585 */
Jay Vosburgh89cc76f2006-09-22 21:55:32 -0700586 if ((ntohs(lacpdu->partner_port) != port->actor_port_number) ||
587 (ntohs(lacpdu->partner_port_priority) != port->actor_port_priority) ||
dingtianhong815117a2014-01-02 09:12:54 +0800588 !MAC_ADDRESS_EQUAL(&(lacpdu->partner_system), &(port->actor_system)) ||
Jay Vosburgh89cc76f2006-09-22 21:55:32 -0700589 (ntohs(lacpdu->partner_system_priority) != port->actor_system_priority) ||
590 (ntohs(lacpdu->partner_key) != port->actor_oper_port_key) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 ((lacpdu->partner_state & AD_STATE_LACP_ACTIVITY) != (port->actor_oper_port_state & AD_STATE_LACP_ACTIVITY)) ||
592 ((lacpdu->partner_state & AD_STATE_LACP_TIMEOUT) != (port->actor_oper_port_state & AD_STATE_LACP_TIMEOUT)) ||
593 ((lacpdu->partner_state & AD_STATE_SYNCHRONIZATION) != (port->actor_oper_port_state & AD_STATE_SYNCHRONIZATION)) ||
594 ((lacpdu->partner_state & AD_STATE_AGGREGATION) != (port->actor_oper_port_state & AD_STATE_AGGREGATION))
595 ) {
Holger Eitzenbergerd238d452008-12-26 11:18:15 -0800596 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598 }
599}
600
601/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 * __agg_ports_are_ready - check if all ports in an aggregator are ready
603 * @aggregator: the aggregator we're looking at
604 *
605 */
606static int __agg_ports_are_ready(struct aggregator *aggregator)
607{
608 struct port *port;
609 int retval = 1;
610
611 if (aggregator) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100612 /* scan all ports in this aggregator to verfy if they are
613 * all ready.
614 */
Bandan Das128ea6c2010-10-16 20:19:58 +0000615 for (port = aggregator->lag_ports;
616 port;
617 port = port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (!(port->sm_vars & AD_PORT_READY_N)) {
619 retval = 0;
620 break;
621 }
622 }
623 }
624
625 return retval;
626}
627
628/**
629 * __set_agg_ports_ready - set value of Ready bit in all ports of an aggregator
630 * @aggregator: the aggregator we're looking at
631 * @val: Should the ports' ready bit be set on or off
632 *
633 */
634static void __set_agg_ports_ready(struct aggregator *aggregator, int val)
635{
636 struct port *port;
637
Bandan Das128ea6c2010-10-16 20:19:58 +0000638 for (port = aggregator->lag_ports; port;
639 port = port->next_port_in_aggregator) {
Bandan Das7bfc4752010-10-16 20:19:59 +0000640 if (val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 port->sm_vars |= AD_PORT_READY;
Bandan Das7bfc4752010-10-16 20:19:59 +0000642 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 port->sm_vars &= ~AD_PORT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645}
646
647/**
648 * __get_agg_bandwidth - get the total bandwidth of an aggregator
649 * @aggregator: the aggregator we're looking at
650 *
651 */
652static u32 __get_agg_bandwidth(struct aggregator *aggregator)
653{
Bandan Das128ea6c2010-10-16 20:19:58 +0000654 u32 bandwidth = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 if (aggregator->num_of_ports) {
David Decotigny65cce192011-04-13 15:22:30 +0000657 switch (__get_link_speed(aggregator->lag_ports)) {
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800658 case AD_LINK_SPEED_1MBPS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 bandwidth = aggregator->num_of_ports;
660 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800661 case AD_LINK_SPEED_10MBPS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 bandwidth = aggregator->num_of_ports * 10;
663 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800664 case AD_LINK_SPEED_100MBPS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 bandwidth = aggregator->num_of_ports * 100;
666 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800667 case AD_LINK_SPEED_1000MBPS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 bandwidth = aggregator->num_of_ports * 1000;
669 break;
Jianhua Xie424c3232014-11-19 16:48:59 +0800670 case AD_LINK_SPEED_2500MBPS:
671 bandwidth = aggregator->num_of_ports * 2500;
672 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800673 case AD_LINK_SPEED_10000MBPS:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700674 bandwidth = aggregator->num_of_ports * 10000;
675 break;
Jianhua Xie424c3232014-11-19 16:48:59 +0800676 case AD_LINK_SPEED_20000MBPS:
677 bandwidth = aggregator->num_of_ports * 20000;
678 break;
679 case AD_LINK_SPEED_40000MBPS:
680 bandwidth = aggregator->num_of_ports * 40000;
681 break;
682 case AD_LINK_SPEED_56000MBPS:
683 bandwidth = aggregator->num_of_ports * 56000;
684 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 default:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100686 bandwidth = 0; /* to silence the compiler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
688 }
689 return bandwidth;
690}
691
692/**
693 * __get_active_agg - get the current active aggregator
694 * @aggregator: the aggregator we're looking at
Veaceslav Falico49b76242014-01-10 11:59:45 +0100695 *
696 * Caller must hold RCU lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 */
698static struct aggregator *__get_active_agg(struct aggregator *aggregator)
699{
Veaceslav Falico19177e72013-09-27 16:12:00 +0200700 struct bonding *bond = aggregator->slave->bond;
701 struct list_head *iter;
702 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
dingtianhongbe79bd02013-12-13 10:20:12 +0800704 bond_for_each_slave_rcu(bond, slave, iter)
dingtianhong3fdddd82014-05-12 15:08:43 +0800705 if (SLAVE_AD_INFO(slave)->aggregator.is_active)
706 return &(SLAVE_AD_INFO(slave)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Veaceslav Falico19177e72013-09-27 16:12:00 +0200708 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
711/**
712 * __update_lacpdu_from_port - update a port's lacpdu fields
713 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 */
715static inline void __update_lacpdu_from_port(struct port *port)
716{
717 struct lacpdu *lacpdu = &port->lacpdu;
Holger Eitzenberger3b5b35d2008-12-17 19:13:53 -0800718 const struct port_params *partner = &port->partner_oper;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100720 /* update current actual Actor parameters
721 * lacpdu->subtype initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 * lacpdu->version_number initialized
723 * lacpdu->tlv_type_actor_info initialized
724 * lacpdu->actor_information_length initialized
725 */
726
Al Virod3bb52b2007-08-22 20:06:58 -0400727 lacpdu->actor_system_priority = htons(port->actor_system_priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 lacpdu->actor_system = port->actor_system;
Al Virod3bb52b2007-08-22 20:06:58 -0400729 lacpdu->actor_key = htons(port->actor_oper_port_key);
730 lacpdu->actor_port_priority = htons(port->actor_port_priority);
731 lacpdu->actor_port = htons(port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 lacpdu->actor_state = port->actor_oper_port_state;
Wilson Kok63b46242015-01-26 01:16:59 -0500733 pr_debug("update lacpdu: %s, actor port state %x\n",
734 port->slave->dev->name, port->actor_oper_port_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 /* lacpdu->reserved_3_1 initialized
737 * lacpdu->tlv_type_partner_info initialized
738 * lacpdu->partner_information_length initialized
739 */
740
Holger Eitzenberger3b5b35d2008-12-17 19:13:53 -0800741 lacpdu->partner_system_priority = htons(partner->system_priority);
742 lacpdu->partner_system = partner->system;
743 lacpdu->partner_key = htons(partner->key);
744 lacpdu->partner_port_priority = htons(partner->port_priority);
745 lacpdu->partner_port = htons(partner->port_number);
746 lacpdu->partner_state = partner->port_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 /* lacpdu->reserved_3_2 initialized
749 * lacpdu->tlv_type_collector_info initialized
750 * lacpdu->collector_information_length initialized
751 * collector_max_delay initialized
752 * reserved_12[12] initialized
753 * tlv_type_terminator initialized
754 * terminator_length initialized
755 * reserved_50[50] initialized
756 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100759/* ================= main 802.3ad protocol code ========================= */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761/**
762 * ad_lacpdu_send - send out a lacpdu packet on a given port
763 * @port: the port we're looking at
764 *
765 * Returns: 0 on success
766 * < 0 on error
767 */
768static int ad_lacpdu_send(struct port *port)
769{
770 struct slave *slave = port->slave;
771 struct sk_buff *skb;
772 struct lacpdu_header *lacpdu_header;
773 int length = sizeof(struct lacpdu_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 skb = dev_alloc_skb(length);
Bandan Das7bfc4752010-10-16 20:19:59 +0000776 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 skb->dev = slave->dev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700780 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700781 skb->network_header = skb->mac_header + ETH_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 skb->protocol = PKT_TYPE_LACPDU;
783 skb->priority = TC_PRIO_CONTROL;
784
785 lacpdu_header = (struct lacpdu_header *)skb_put(skb, length);
786
Joe Perchesada0f862014-02-15 16:02:17 -0800787 ether_addr_copy(lacpdu_header->hdr.h_dest, lacpdu_mcast_addr);
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400788 /* Note: source address is set to be the member's PERMANENT address,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100789 * because we use it to identify loopback lacpdus in receive.
790 */
Joe Perchesada0f862014-02-15 16:02:17 -0800791 ether_addr_copy(lacpdu_header->hdr.h_source, slave->perm_hwaddr);
Holger Eitzenbergere7271492008-12-26 13:41:53 -0800792 lacpdu_header->hdr.h_proto = PKT_TYPE_LACPDU;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100794 lacpdu_header->lacpdu = port->lacpdu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 dev_queue_xmit(skb);
797
798 return 0;
799}
800
801/**
802 * ad_marker_send - send marker information/response on a given port
803 * @port: the port we're looking at
804 * @marker: marker data to send
805 *
806 * Returns: 0 on success
807 * < 0 on error
808 */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700809static int ad_marker_send(struct port *port, struct bond_marker *marker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 struct slave *slave = port->slave;
812 struct sk_buff *skb;
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700813 struct bond_marker_header *marker_header;
814 int length = sizeof(struct bond_marker_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 skb = dev_alloc_skb(length + 16);
Bandan Das7bfc4752010-10-16 20:19:59 +0000817 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 skb_reserve(skb, 16);
821
822 skb->dev = slave->dev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700823 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700824 skb->network_header = skb->mac_header + ETH_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 skb->protocol = PKT_TYPE_LACPDU;
826
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700827 marker_header = (struct bond_marker_header *)skb_put(skb, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Joe Perchesada0f862014-02-15 16:02:17 -0800829 ether_addr_copy(marker_header->hdr.h_dest, lacpdu_mcast_addr);
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400830 /* Note: source address is set to be the member's PERMANENT address,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100831 * because we use it to identify loopback MARKERs in receive.
832 */
Joe Perchesada0f862014-02-15 16:02:17 -0800833 ether_addr_copy(marker_header->hdr.h_source, slave->perm_hwaddr);
Holger Eitzenbergere7271492008-12-26 13:41:53 -0800834 marker_header->hdr.h_proto = PKT_TYPE_LACPDU;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100836 marker_header->marker = *marker;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 dev_queue_xmit(skb);
839
840 return 0;
841}
842
843/**
844 * ad_mux_machine - handle a port's mux state machine
845 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -0700846 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 */
Mahesh Bandewaree637712014-10-04 17:45:01 -0700848static void ad_mux_machine(struct port *port, bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
850 mux_states_t last_state;
851
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100852 /* keep current State Machine state to compare later if it was
853 * changed
854 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 last_state = port->sm_mux_state;
856
857 if (port->sm_vars & AD_PORT_BEGIN) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100858 port->sm_mux_state = AD_MUX_DETACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 } else {
860 switch (port->sm_mux_state) {
861 case AD_MUX_DETACHED:
Bandan Das7bfc4752010-10-16 20:19:59 +0000862 if ((port->sm_vars & AD_PORT_SELECTED)
863 || (port->sm_vars & AD_PORT_STANDBY))
864 /* if SELECTED or STANDBY */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100865 port->sm_mux_state = AD_MUX_WAITING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 break;
867 case AD_MUX_WAITING:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100868 /* if SELECTED == FALSE return to DETACH state */
869 if (!(port->sm_vars & AD_PORT_SELECTED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 port->sm_vars &= ~AD_PORT_READY_N;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100871 /* in order to withhold the Selection Logic to
872 * check all ports READY_N value every callback
873 * cycle to update ready variable, we check
874 * READY_N and update READY here
875 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100877 port->sm_mux_state = AD_MUX_DETACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 break;
879 }
880
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100881 /* check if the wait_while_timer expired */
Bandan Das7bfc4752010-10-16 20:19:59 +0000882 if (port->sm_mux_timer_counter
883 && !(--port->sm_mux_timer_counter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 port->sm_vars |= AD_PORT_READY_N;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100886 /* in order to withhold the selection logic to check
887 * all ports READY_N value every callback cycle to
888 * update ready variable, we check READY_N and update
889 * READY here
890 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
892
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100893 /* if the wait_while_timer expired, and the port is
894 * in READY state, move to ATTACHED state
895 */
Bandan Das7bfc4752010-10-16 20:19:59 +0000896 if ((port->sm_vars & AD_PORT_READY)
897 && !port->sm_mux_timer_counter)
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100898 port->sm_mux_state = AD_MUX_ATTACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 break;
900 case AD_MUX_ATTACHED:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100901 /* check also if agg_select_timer expired (so the
902 * edable port will take place only after this timer)
903 */
904 if ((port->sm_vars & AD_PORT_SELECTED) &&
905 (port->partner_oper.port_state & AD_STATE_SYNCHRONIZATION) &&
906 !__check_agg_selection_timer(port)) {
Wilson Kok63b46242015-01-26 01:16:59 -0500907 if (port->aggregator->is_active)
908 port->sm_mux_state =
909 AD_MUX_COLLECTING_DISTRIBUTING;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100910 } else if (!(port->sm_vars & AD_PORT_SELECTED) ||
911 (port->sm_vars & AD_PORT_STANDBY)) {
912 /* if UNSELECTED or STANDBY */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 port->sm_vars &= ~AD_PORT_READY_N;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100914 /* in order to withhold the selection logic to
915 * check all ports READY_N value every callback
916 * cycle to update ready variable, we check
917 * READY_N and update READY here
918 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100920 port->sm_mux_state = AD_MUX_DETACHED;
Wilson Kok63b46242015-01-26 01:16:59 -0500921 } else if (port->aggregator->is_active) {
922 port->actor_oper_port_state |=
923 AD_STATE_SYNCHRONIZATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
925 break;
926 case AD_MUX_COLLECTING_DISTRIBUTING:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100927 if (!(port->sm_vars & AD_PORT_SELECTED) ||
928 (port->sm_vars & AD_PORT_STANDBY) ||
Wilson Kok63b46242015-01-26 01:16:59 -0500929 !(port->partner_oper.port_state & AD_STATE_SYNCHRONIZATION) ||
930 !(port->actor_oper_port_state & AD_STATE_SYNCHRONIZATION)) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100931 port->sm_mux_state = AD_MUX_ATTACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100933 /* if port state hasn't changed make
934 * sure that a collecting distributing
935 * port in an active aggregator is enabled
936 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (port->aggregator &&
938 port->aggregator->is_active &&
939 !__port_is_enabled(port)) {
940
941 __enable_port(port);
942 }
943 }
944 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100945 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 break;
947 }
948 }
949
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100950 /* check if the state machine was changed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if (port->sm_mux_state != last_state) {
Wilson Kok63b46242015-01-26 01:16:59 -0500952 pr_debug("Mux Machine: Port=%d (%s), Last State=%d, Curr State=%d\n",
953 port->actor_port_number,
954 port->slave->dev->name,
955 last_state,
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800956 port->sm_mux_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 switch (port->sm_mux_state) {
958 case AD_MUX_DETACHED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 port->actor_oper_port_state &= ~AD_STATE_SYNCHRONIZATION;
Mahesh Bandewaree637712014-10-04 17:45:01 -0700960 ad_disable_collecting_distributing(port,
961 update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 port->actor_oper_port_state &= ~AD_STATE_COLLECTING;
963 port->actor_oper_port_state &= ~AD_STATE_DISTRIBUTING;
Holger Eitzenbergerd238d452008-12-26 11:18:15 -0800964 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 break;
966 case AD_MUX_WAITING:
967 port->sm_mux_timer_counter = __ad_timer_to_ticks(AD_WAIT_WHILE_TIMER, 0);
968 break;
969 case AD_MUX_ATTACHED:
Wilson Kok63b46242015-01-26 01:16:59 -0500970 if (port->aggregator->is_active)
971 port->actor_oper_port_state |=
972 AD_STATE_SYNCHRONIZATION;
973 else
974 port->actor_oper_port_state &=
975 ~AD_STATE_SYNCHRONIZATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 port->actor_oper_port_state &= ~AD_STATE_COLLECTING;
977 port->actor_oper_port_state &= ~AD_STATE_DISTRIBUTING;
Mahesh Bandewaree637712014-10-04 17:45:01 -0700978 ad_disable_collecting_distributing(port,
979 update_slave_arr);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -0800980 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 break;
982 case AD_MUX_COLLECTING_DISTRIBUTING:
983 port->actor_oper_port_state |= AD_STATE_COLLECTING;
984 port->actor_oper_port_state |= AD_STATE_DISTRIBUTING;
Wilson Kok63b46242015-01-26 01:16:59 -0500985 port->actor_oper_port_state |= AD_STATE_SYNCHRONIZATION;
Mahesh Bandewaree637712014-10-04 17:45:01 -0700986 ad_enable_collecting_distributing(port,
987 update_slave_arr);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -0800988 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100990 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 break;
992 }
993 }
994}
995
996/**
997 * ad_rx_machine - handle a port's rx State Machine
998 * @lacpdu: the lacpdu we've received
999 * @port: the port we're looking at
1000 *
1001 * If lacpdu arrived, stop previous timer (if exists) and set the next state as
1002 * CURRENT. If timer expired set the state machine in the proper state.
1003 * In other cases, this function checks if we need to switch to other state.
1004 */
1005static void ad_rx_machine(struct lacpdu *lacpdu, struct port *port)
1006{
1007 rx_states_t last_state;
1008
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001009 /* keep current State Machine state to compare later if it was
1010 * changed
1011 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 last_state = port->sm_rx_state;
1013
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001014 /* check if state machine should change state */
1015
1016 /* first, check if port was reinitialized */
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001017 if (port->sm_vars & AD_PORT_BEGIN) {
Bandan Das7bfc4752010-10-16 20:19:59 +00001018 port->sm_rx_state = AD_RX_INITIALIZE;
Mahesh Bandewaref015d72015-03-30 14:30:40 -07001019 port->sm_vars |= AD_PORT_CHURNED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001020 /* check if port is not enabled */
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001021 } else if (!(port->sm_vars & AD_PORT_BEGIN)
Bandan Das7bfc4752010-10-16 20:19:59 +00001022 && !port->is_enabled && !(port->sm_vars & AD_PORT_MOVED))
Bandan Das7bfc4752010-10-16 20:19:59 +00001023 port->sm_rx_state = AD_RX_PORT_DISABLED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001024 /* check if new lacpdu arrived */
1025 else if (lacpdu && ((port->sm_rx_state == AD_RX_EXPIRED) ||
1026 (port->sm_rx_state == AD_RX_DEFAULTED) ||
1027 (port->sm_rx_state == AD_RX_CURRENT))) {
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001028 if (port->sm_rx_state != AD_RX_CURRENT)
Mahesh Bandewaref015d72015-03-30 14:30:40 -07001029 port->sm_vars |= AD_PORT_CHURNED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001030 port->sm_rx_timer_counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 port->sm_rx_state = AD_RX_CURRENT;
1032 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001033 /* if timer is on, and if it is expired */
1034 if (port->sm_rx_timer_counter &&
1035 !(--port->sm_rx_timer_counter)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 switch (port->sm_rx_state) {
1037 case AD_RX_EXPIRED:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001038 port->sm_rx_state = AD_RX_DEFAULTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 break;
1040 case AD_RX_CURRENT:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001041 port->sm_rx_state = AD_RX_EXPIRED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001043 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 break;
1045 }
1046 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001047 /* if no lacpdu arrived and no timer is on */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 switch (port->sm_rx_state) {
1049 case AD_RX_PORT_DISABLED:
Bandan Das7bfc4752010-10-16 20:19:59 +00001050 if (port->sm_vars & AD_PORT_MOVED)
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001051 port->sm_rx_state = AD_RX_INITIALIZE;
Bandan Das7bfc4752010-10-16 20:19:59 +00001052 else if (port->is_enabled
1053 && (port->sm_vars
1054 & AD_PORT_LACP_ENABLED))
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001055 port->sm_rx_state = AD_RX_EXPIRED;
Bandan Das7bfc4752010-10-16 20:19:59 +00001056 else if (port->is_enabled
1057 && ((port->sm_vars
1058 & AD_PORT_LACP_ENABLED) == 0))
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001059 port->sm_rx_state = AD_RX_LACP_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001061 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 break;
1063
1064 }
1065 }
1066 }
1067
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001068 /* check if the State machine was changed or new lacpdu arrived */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if ((port->sm_rx_state != last_state) || (lacpdu)) {
Wilson Kok63b46242015-01-26 01:16:59 -05001070 pr_debug("Rx Machine: Port=%d (%s), Last State=%d, Curr State=%d\n",
1071 port->actor_port_number,
1072 port->slave->dev->name,
1073 last_state,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001074 port->sm_rx_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 switch (port->sm_rx_state) {
1076 case AD_RX_INITIALIZE:
Jianhua Xiecb8dda92014-11-19 16:48:58 +08001077 if (!(port->actor_oper_port_key & AD_DUPLEX_KEY_MASKS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 port->sm_vars &= ~AD_PORT_LACP_ENABLED;
Bandan Das7bfc4752010-10-16 20:19:59 +00001079 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 port->sm_vars |= AD_PORT_LACP_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 port->sm_vars &= ~AD_PORT_SELECTED;
1082 __record_default(port);
1083 port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
1084 port->sm_vars &= ~AD_PORT_MOVED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001085 port->sm_rx_state = AD_RX_PORT_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001087 /* Fall Through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 case AD_RX_PORT_DISABLED:
1089 port->sm_vars &= ~AD_PORT_MATCHED;
1090 break;
1091 case AD_RX_LACP_DISABLED:
1092 port->sm_vars &= ~AD_PORT_SELECTED;
1093 __record_default(port);
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001094 port->partner_oper.port_state &= ~AD_STATE_AGGREGATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 port->sm_vars |= AD_PORT_MATCHED;
1096 port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
1097 break;
1098 case AD_RX_EXPIRED:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001099 /* Reset of the Synchronization flag (Standard 43.4.12)
1100 * This reset cause to disable this port in the
1101 * COLLECTING_DISTRIBUTING state of the mux machine in
1102 * case of EXPIRED even if LINK_DOWN didn't arrive for
1103 * the port.
1104 */
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001105 port->partner_oper.port_state &= ~AD_STATE_SYNCHRONIZATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 port->sm_vars &= ~AD_PORT_MATCHED;
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001107 port->partner_oper.port_state |= AD_STATE_LACP_TIMEOUT;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001108 port->partner_oper.port_state |= AD_STATE_LACP_ACTIVITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 port->sm_rx_timer_counter = __ad_timer_to_ticks(AD_CURRENT_WHILE_TIMER, (u16)(AD_SHORT_TIMEOUT));
1110 port->actor_oper_port_state |= AD_STATE_EXPIRED;
Mahesh Bandewaref015d72015-03-30 14:30:40 -07001111 port->sm_vars |= AD_PORT_CHURNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 break;
1113 case AD_RX_DEFAULTED:
1114 __update_default_selected(port);
1115 __record_default(port);
1116 port->sm_vars |= AD_PORT_MATCHED;
1117 port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
1118 break;
1119 case AD_RX_CURRENT:
dingtianhong815117a2014-01-02 09:12:54 +08001120 /* detect loopback situation */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001121 if (MAC_ADDRESS_EQUAL(&(lacpdu->actor_system),
1122 &(port->actor_system))) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001123 netdev_err(port->slave->bond->dev, "An illegal loopback occurred on adapter (%s)\n"
Joe Perches90194262014-02-15 16:01:45 -08001124 "Check the configuration to verify that all adapters are connected to 802.3ad compliant switch ports\n",
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001125 port->slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return;
1127 }
1128 __update_selected(lacpdu, port);
1129 __update_ntt(lacpdu, port);
1130 __record_pdu(lacpdu, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 port->sm_rx_timer_counter = __ad_timer_to_ticks(AD_CURRENT_WHILE_TIMER, (u16)(port->actor_oper_port_state & AD_STATE_LACP_TIMEOUT));
1132 port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001134 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 break;
1136 }
1137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
1140/**
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001141 * ad_churn_machine - handle port churn's state machine
1142 * @port: the port we're looking at
1143 *
1144 */
1145static void ad_churn_machine(struct port *port)
1146{
Mahesh Bandewaref015d72015-03-30 14:30:40 -07001147 if (port->sm_vars & AD_PORT_CHURNED) {
1148 port->sm_vars &= ~AD_PORT_CHURNED;
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001149 port->sm_churn_actor_state = AD_CHURN_MONITOR;
1150 port->sm_churn_partner_state = AD_CHURN_MONITOR;
1151 port->sm_churn_actor_timer_counter =
1152 __ad_timer_to_ticks(AD_ACTOR_CHURN_TIMER, 0);
1153 port->sm_churn_partner_timer_counter =
1154 __ad_timer_to_ticks(AD_PARTNER_CHURN_TIMER, 0);
1155 return;
1156 }
1157 if (port->sm_churn_actor_timer_counter &&
1158 !(--port->sm_churn_actor_timer_counter) &&
1159 port->sm_churn_actor_state == AD_CHURN_MONITOR) {
1160 if (port->actor_oper_port_state & AD_STATE_SYNCHRONIZATION) {
1161 port->sm_churn_actor_state = AD_NO_CHURN;
1162 } else {
1163 port->churn_actor_count++;
1164 port->sm_churn_actor_state = AD_CHURN;
1165 }
1166 }
1167 if (port->sm_churn_partner_timer_counter &&
1168 !(--port->sm_churn_partner_timer_counter) &&
1169 port->sm_churn_partner_state == AD_CHURN_MONITOR) {
1170 if (port->partner_oper.port_state & AD_STATE_SYNCHRONIZATION) {
1171 port->sm_churn_partner_state = AD_NO_CHURN;
1172 } else {
1173 port->churn_partner_count++;
1174 port->sm_churn_partner_state = AD_CHURN;
1175 }
1176 }
1177}
1178
1179/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 * ad_tx_machine - handle a port's tx state machine
1181 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 */
1183static void ad_tx_machine(struct port *port)
1184{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001185 /* check if tx timer expired, to verify that we do not send more than
1186 * 3 packets per second
1187 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (port->sm_tx_timer_counter && !(--port->sm_tx_timer_counter)) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001189 /* check if there is something to send */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (port->ntt && (port->sm_vars & AD_PORT_LACP_ENABLED)) {
1191 __update_lacpdu_from_port(port);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 if (ad_lacpdu_send(port) >= 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001194 pr_debug("Sent LACPDU on port %d\n",
1195 port->actor_port_number);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001196
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001197 /* mark ntt as false, so it will not be sent
1198 * again until demanded
1199 */
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001200 port->ntt = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
1202 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001203 /* restart tx timer(to verify that we will not exceed
1204 * AD_MAX_TX_IN_SECOND
1205 */
1206 port->sm_tx_timer_counter = ad_ticks_per_sec/AD_MAX_TX_IN_SECOND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
1208}
1209
1210/**
1211 * ad_periodic_machine - handle a port's periodic state machine
1212 * @port: the port we're looking at
1213 *
1214 * Turn ntt flag on priodically to perform periodic transmission of lacpdu's.
1215 */
1216static void ad_periodic_machine(struct port *port)
1217{
1218 periodic_states_t last_state;
1219
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001220 /* keep current state machine state to compare later if it was changed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 last_state = port->sm_periodic_state;
1222
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001223 /* check if port was reinitialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (((port->sm_vars & AD_PORT_BEGIN) || !(port->sm_vars & AD_PORT_LACP_ENABLED) || !port->is_enabled) ||
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001225 (!(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 -07001226 ) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001227 port->sm_periodic_state = AD_NO_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001229 /* check if state machine should change state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 else if (port->sm_periodic_timer_counter) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001231 /* check if periodic state machine expired */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (!(--port->sm_periodic_timer_counter)) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001233 /* if expired then do tx */
1234 port->sm_periodic_state = AD_PERIODIC_TX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001236 /* If not expired, check if there is some new timeout
1237 * parameter from the partner state
1238 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 switch (port->sm_periodic_state) {
1240 case AD_FAST_PERIODIC:
Bandan Das7bfc4752010-10-16 20:19:59 +00001241 if (!(port->partner_oper.port_state
1242 & AD_STATE_LACP_TIMEOUT))
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001243 port->sm_periodic_state = AD_SLOW_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 break;
1245 case AD_SLOW_PERIODIC:
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001246 if ((port->partner_oper.port_state & AD_STATE_LACP_TIMEOUT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 port->sm_periodic_timer_counter = 0;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001248 port->sm_periodic_state = AD_PERIODIC_TX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001251 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 break;
1253 }
1254 }
1255 } else {
1256 switch (port->sm_periodic_state) {
1257 case AD_NO_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001258 port->sm_periodic_state = AD_FAST_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 break;
1260 case AD_PERIODIC_TX:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001261 if (!(port->partner_oper.port_state &
1262 AD_STATE_LACP_TIMEOUT))
1263 port->sm_periodic_state = AD_SLOW_PERIODIC;
Bandan Das7bfc4752010-10-16 20:19:59 +00001264 else
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001265 port->sm_periodic_state = AD_FAST_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001267 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 break;
1269 }
1270 }
1271
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001272 /* check if the state machine was changed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (port->sm_periodic_state != last_state) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001274 pr_debug("Periodic Machine: Port=%d, Last State=%d, Curr State=%d\n",
1275 port->actor_port_number, last_state,
1276 port->sm_periodic_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 switch (port->sm_periodic_state) {
1278 case AD_NO_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001279 port->sm_periodic_timer_counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 break;
1281 case AD_FAST_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001282 /* decrement 1 tick we lost in the PERIODIC_TX cycle */
1283 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 -07001284 break;
1285 case AD_SLOW_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001286 /* decrement 1 tick we lost in the PERIODIC_TX cycle */
1287 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 -07001288 break;
1289 case AD_PERIODIC_TX:
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001290 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001292 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 break;
1294 }
1295 }
1296}
1297
1298/**
1299 * ad_port_selection_logic - select aggregation groups
1300 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001301 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 *
1303 * Select aggregation groups, and assign each port for it's aggregetor. The
1304 * selection logic is called in the inititalization (after all the handshkes),
1305 * and after every lacpdu receive (if selected is off).
1306 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001307static void ad_port_selection_logic(struct port *port, bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
1309 struct aggregator *aggregator, *free_aggregator = NULL, *temp_aggregator;
1310 struct port *last_port = NULL, *curr_port;
Veaceslav Falico3e36bb72013-09-27 16:11:59 +02001311 struct list_head *iter;
1312 struct bonding *bond;
1313 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 int found = 0;
1315
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001316 /* if the port is already Selected, do nothing */
Bandan Das7bfc4752010-10-16 20:19:59 +00001317 if (port->sm_vars & AD_PORT_SELECTED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Veaceslav Falico3e36bb72013-09-27 16:11:59 +02001320 bond = __get_bond_by_port(port);
1321
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001322 /* if the port is connected to other aggregator, detach it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 if (port->aggregator) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001324 /* detach the port from its former aggregator */
Bandan Das128ea6c2010-10-16 20:19:58 +00001325 temp_aggregator = port->aggregator;
1326 for (curr_port = temp_aggregator->lag_ports; curr_port;
1327 last_port = curr_port,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001328 curr_port = curr_port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (curr_port == port) {
1330 temp_aggregator->num_of_ports--;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001331 /* if it is the first port attached to the
1332 * aggregator
1333 */
1334 if (!last_port) {
Bandan Das128ea6c2010-10-16 20:19:58 +00001335 temp_aggregator->lag_ports =
1336 port->next_port_in_aggregator;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001337 } else {
1338 /* not the first port attached to the
1339 * aggregator
1340 */
Bandan Das128ea6c2010-10-16 20:19:58 +00001341 last_port->next_port_in_aggregator =
1342 port->next_port_in_aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 }
1344
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001345 /* clear the port's relations to this
1346 * aggregator
1347 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 port->aggregator = NULL;
Bandan Das128ea6c2010-10-16 20:19:58 +00001349 port->next_port_in_aggregator = NULL;
1350 port->actor_port_aggregator_identifier = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001352 netdev_dbg(bond->dev, "Port %d left LAG %d\n",
1353 port->actor_port_number,
1354 temp_aggregator->aggregator_identifier);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001355 /* if the aggregator is empty, clear its
1356 * parameters, and set it ready to be attached
1357 */
Bandan Das7bfc4752010-10-16 20:19:59 +00001358 if (!temp_aggregator->lag_ports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 ad_clear_agg(temp_aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 break;
1361 }
1362 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001363 if (!curr_port) {
1364 /* meaning: the port was related to an aggregator
1365 * but was not on the aggregator port list
1366 */
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001367 net_warn_ratelimited("%s: Warning: Port %d (on %s) was related to aggregator %d but was not on its port list\n",
1368 port->slave->bond->dev->name,
1369 port->actor_port_number,
1370 port->slave->dev->name,
1371 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 }
1373 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001374 /* search on all aggregators for a suitable aggregator for this port */
Veaceslav Falico3e36bb72013-09-27 16:11:59 +02001375 bond_for_each_slave(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08001376 aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001378 /* keep a free aggregator for later use(if needed) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (!aggregator->lag_ports) {
Bandan Das7bfc4752010-10-16 20:19:59 +00001380 if (!free_aggregator)
Bandan Das128ea6c2010-10-16 20:19:58 +00001381 free_aggregator = aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 continue;
1383 }
dingtianhong815117a2014-01-02 09:12:54 +08001384 /* check if current aggregator suits us */
1385 if (((aggregator->actor_oper_aggregator_key == port->actor_oper_port_key) && /* if all parameters match AND */
1386 MAC_ADDRESS_EQUAL(&(aggregator->partner_system), &(port->partner_oper.system)) &&
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001387 (aggregator->partner_system_priority == port->partner_oper.system_priority) &&
1388 (aggregator->partner_oper_aggregator_key == port->partner_oper.key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 ) &&
dingtianhong815117a2014-01-02 09:12:54 +08001390 ((!MAC_ADDRESS_EQUAL(&(port->partner_oper.system), &(null_mac_addr)) && /* partner answers */
1391 !aggregator->is_individual) /* but is not individual OR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 )
1393 ) {
dingtianhong815117a2014-01-02 09:12:54 +08001394 /* attach to the founded aggregator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 port->aggregator = aggregator;
Bandan Das128ea6c2010-10-16 20:19:58 +00001396 port->actor_port_aggregator_identifier =
1397 port->aggregator->aggregator_identifier;
1398 port->next_port_in_aggregator = aggregator->lag_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 port->aggregator->num_of_ports++;
Bandan Das128ea6c2010-10-16 20:19:58 +00001400 aggregator->lag_ports = port;
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001401 netdev_dbg(bond->dev, "Port %d joined LAG %d(existing LAG)\n",
1402 port->actor_port_number,
1403 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001405 /* mark this port as selected */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 port->sm_vars |= AD_PORT_SELECTED;
1407 found = 1;
1408 break;
1409 }
1410 }
1411
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001412 /* the port couldn't find an aggregator - attach it to a new
1413 * aggregator
1414 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 if (!found) {
1416 if (free_aggregator) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001417 /* assign port a new aggregator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 port->aggregator = free_aggregator;
Bandan Das128ea6c2010-10-16 20:19:58 +00001419 port->actor_port_aggregator_identifier =
1420 port->aggregator->aggregator_identifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001422 /* update the new aggregator's parameters
1423 * if port was responsed from the end-user
1424 */
Jianhua Xiecb8dda92014-11-19 16:48:58 +08001425 if (port->actor_oper_port_key & AD_DUPLEX_KEY_MASKS)
Bandan Das7bfc4752010-10-16 20:19:59 +00001426 /* if port is full duplex */
Holger Eitzenberger1624db72008-12-26 13:27:21 -08001427 port->aggregator->is_individual = false;
Bandan Das7bfc4752010-10-16 20:19:59 +00001428 else
Holger Eitzenberger1624db72008-12-26 13:27:21 -08001429 port->aggregator->is_individual = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Mahesh Bandewarc3cd9ee2015-04-07 16:16:11 -07001431 port->aggregator->actor_admin_aggregator_key =
1432 port->actor_admin_port_key;
1433 port->aggregator->actor_oper_aggregator_key =
1434 port->actor_oper_port_key;
Bandan Das128ea6c2010-10-16 20:19:58 +00001435 port->aggregator->partner_system =
1436 port->partner_oper.system;
1437 port->aggregator->partner_system_priority =
1438 port->partner_oper.system_priority;
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001439 port->aggregator->partner_oper_aggregator_key = port->partner_oper.key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 port->aggregator->receive_state = 1;
1441 port->aggregator->transmit_state = 1;
1442 port->aggregator->lag_ports = port;
1443 port->aggregator->num_of_ports++;
1444
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001445 /* mark this port as selected */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 port->sm_vars |= AD_PORT_SELECTED;
1447
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001448 netdev_dbg(bond->dev, "Port %d joined LAG %d(new LAG)\n",
1449 port->actor_port_number,
1450 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 } else {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001452 netdev_err(bond->dev, "Port %d (on %s) did not find a suitable aggregator\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 port->actor_port_number, port->slave->dev->name);
1454 }
1455 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001456 /* if all aggregator's ports are READY_N == TRUE, set ready=TRUE
1457 * in all aggregator's ports, else set ready=FALSE in all
1458 * aggregator's ports
1459 */
1460 __set_agg_ports_ready(port->aggregator,
1461 __agg_ports_are_ready(port->aggregator));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Jay Vosburghfd989c82008-11-04 17:51:16 -08001463 aggregator = __get_first_agg(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07001464 ad_agg_selection_logic(aggregator, update_slave_arr);
Wilson Kok63b46242015-01-26 01:16:59 -05001465
1466 if (!port->aggregator->is_active)
1467 port->actor_oper_port_state &= ~AD_STATE_SYNCHRONIZATION;
Jay Vosburghfd989c82008-11-04 17:51:16 -08001468}
1469
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001470/* Decide if "agg" is a better choice for the new active aggregator that
Jay Vosburghfd989c82008-11-04 17:51:16 -08001471 * the current best, according to the ad_select policy.
1472 */
1473static struct aggregator *ad_agg_selection_test(struct aggregator *best,
1474 struct aggregator *curr)
1475{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001476 /* 0. If no best, select current.
Jay Vosburghfd989c82008-11-04 17:51:16 -08001477 *
1478 * 1. If the current agg is not individual, and the best is
1479 * individual, select current.
1480 *
1481 * 2. If current agg is individual and the best is not, keep best.
1482 *
1483 * 3. Therefore, current and best are both individual or both not
1484 * individual, so:
1485 *
1486 * 3a. If current agg partner replied, and best agg partner did not,
1487 * select current.
1488 *
1489 * 3b. If current agg partner did not reply and best agg partner
1490 * did reply, keep best.
1491 *
1492 * 4. Therefore, current and best both have partner replies or
1493 * both do not, so perform selection policy:
1494 *
1495 * BOND_AD_COUNT: Select by count of ports. If count is equal,
1496 * select by bandwidth.
1497 *
1498 * BOND_AD_STABLE, BOND_AD_BANDWIDTH: Select by bandwidth.
1499 */
1500 if (!best)
1501 return curr;
1502
1503 if (!curr->is_individual && best->is_individual)
1504 return curr;
1505
1506 if (curr->is_individual && !best->is_individual)
1507 return best;
1508
1509 if (__agg_has_partner(curr) && !__agg_has_partner(best))
1510 return curr;
1511
1512 if (!__agg_has_partner(curr) && __agg_has_partner(best))
1513 return best;
1514
1515 switch (__get_agg_selection_mode(curr->lag_ports)) {
1516 case BOND_AD_COUNT:
1517 if (curr->num_of_ports > best->num_of_ports)
1518 return curr;
1519
1520 if (curr->num_of_ports < best->num_of_ports)
1521 return best;
1522
1523 /*FALLTHROUGH*/
1524 case BOND_AD_STABLE:
1525 case BOND_AD_BANDWIDTH:
1526 if (__get_agg_bandwidth(curr) > __get_agg_bandwidth(best))
1527 return curr;
1528
1529 break;
1530
1531 default:
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001532 net_warn_ratelimited("%s: Impossible agg select mode %d\n",
1533 curr->slave->bond->dev->name,
1534 __get_agg_selection_mode(curr->lag_ports));
Jay Vosburghfd989c82008-11-04 17:51:16 -08001535 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
Jay Vosburghfd989c82008-11-04 17:51:16 -08001537
1538 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001541static int agg_device_up(const struct aggregator *agg)
1542{
Jiri Bohac2430af82011-04-19 02:09:55 +00001543 struct port *port = agg->lag_ports;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001544
Jiri Bohac2430af82011-04-19 02:09:55 +00001545 if (!port)
1546 return 0;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001547
1548 return netif_running(port->slave->dev) &&
1549 netif_carrier_ok(port->slave->dev);
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001550}
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552/**
1553 * ad_agg_selection_logic - select an aggregation group for a team
1554 * @aggregator: the aggregator we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001555 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 *
1557 * It is assumed that only one aggregator may be selected for a team.
Jay Vosburghfd989c82008-11-04 17:51:16 -08001558 *
1559 * The logic of this function is to select the aggregator according to
1560 * the ad_select policy:
1561 *
1562 * BOND_AD_STABLE: select the aggregator with the most ports attached to
1563 * it, and to reselect the active aggregator only if the previous
1564 * aggregator has no more ports related to it.
1565 *
1566 * BOND_AD_BANDWIDTH: select the aggregator with the highest total
1567 * bandwidth, and reselect whenever a link state change takes place or the
1568 * set of slaves in the bond changes.
1569 *
1570 * BOND_AD_COUNT: select the aggregator with largest number of ports
1571 * (slaves), and reselect whenever a link state change takes place or the
1572 * set of slaves in the bond changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 *
1574 * FIXME: this function MUST be called with the first agg in the bond, or
1575 * __get_active_agg() won't work correctly. This function should be better
1576 * called with the bond itself, and retrieve the first agg from it.
1577 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001578static void ad_agg_selection_logic(struct aggregator *agg,
1579 bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
Jay Vosburghfd989c82008-11-04 17:51:16 -08001581 struct aggregator *best, *active, *origin;
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001582 struct bonding *bond = agg->slave->bond;
1583 struct list_head *iter;
1584 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 struct port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Veaceslav Falico49b76242014-01-10 11:59:45 +01001587 rcu_read_lock();
Jay Vosburghfd989c82008-11-04 17:51:16 -08001588 origin = agg;
Jay Vosburghfd989c82008-11-04 17:51:16 -08001589 active = __get_active_agg(agg);
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001590 best = (active && agg_device_up(active)) ? active : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
dingtianhongbe79bd02013-12-13 10:20:12 +08001592 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08001593 agg = &(SLAVE_AD_INFO(slave)->aggregator);
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001594
Jay Vosburghfd989c82008-11-04 17:51:16 -08001595 agg->is_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001597 if (agg->num_of_ports && agg_device_up(agg))
Jay Vosburghfd989c82008-11-04 17:51:16 -08001598 best = ad_agg_selection_test(best, agg);
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Jay Vosburghfd989c82008-11-04 17:51:16 -08001601 if (best &&
1602 __get_agg_selection_mode(best->lag_ports) == BOND_AD_STABLE) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001603 /* For the STABLE policy, don't replace the old active
Jay Vosburghfd989c82008-11-04 17:51:16 -08001604 * aggregator if it's still active (it has an answering
1605 * partner) or if both the best and active don't have an
1606 * answering partner.
1607 */
1608 if (active && active->lag_ports &&
1609 active->lag_ports->is_enabled &&
1610 (__agg_has_partner(active) ||
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001611 (!__agg_has_partner(active) &&
1612 !__agg_has_partner(best)))) {
Jay Vosburghfd989c82008-11-04 17:51:16 -08001613 if (!(!active->actor_oper_aggregator_key &&
1614 best->actor_oper_aggregator_key)) {
1615 best = NULL;
1616 active->is_active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 }
1618 }
1619 }
1620
Jay Vosburghfd989c82008-11-04 17:51:16 -08001621 if (best && (best == active)) {
1622 best = NULL;
1623 active->is_active = 1;
1624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
dingtianhongbe79bd02013-12-13 10:20:12 +08001626 /* if there is new best aggregator, activate it */
Jay Vosburghfd989c82008-11-04 17:51:16 -08001627 if (best) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001628 netdev_dbg(bond->dev, "best Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1629 best->aggregator_identifier, best->num_of_ports,
1630 best->actor_oper_aggregator_key,
1631 best->partner_oper_aggregator_key,
1632 best->is_individual, best->is_active);
1633 netdev_dbg(bond->dev, "best ports %p slave %p %s\n",
1634 best->lag_ports, best->slave,
1635 best->slave ? best->slave->dev->name : "NULL");
Jay Vosburghfd989c82008-11-04 17:51:16 -08001636
dingtianhongbe79bd02013-12-13 10:20:12 +08001637 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08001638 agg = &(SLAVE_AD_INFO(slave)->aggregator);
Jay Vosburghfd989c82008-11-04 17:51:16 -08001639
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001640 netdev_dbg(bond->dev, "Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1641 agg->aggregator_identifier, agg->num_of_ports,
1642 agg->actor_oper_aggregator_key,
1643 agg->partner_oper_aggregator_key,
1644 agg->is_individual, agg->is_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
1646
dingtianhongbe79bd02013-12-13 10:20:12 +08001647 /* check if any partner replys */
Jay Vosburghfd989c82008-11-04 17:51:16 -08001648 if (best->is_individual) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001649 net_warn_ratelimited("%s: Warning: No 802.3ad response from the link partner for any adapters in the bond\n",
1650 best->slave ?
1651 best->slave->bond->dev->name : "NULL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
1653
Jay Vosburghfd989c82008-11-04 17:51:16 -08001654 best->is_active = 1;
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001655 netdev_dbg(bond->dev, "LAG %d chosen as the active LAG\n",
1656 best->aggregator_identifier);
1657 netdev_dbg(bond->dev, "Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1658 best->aggregator_identifier, best->num_of_ports,
1659 best->actor_oper_aggregator_key,
1660 best->partner_oper_aggregator_key,
1661 best->is_individual, best->is_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001663 /* disable the ports that were related to the former
1664 * active_aggregator
1665 */
Jay Vosburghfd989c82008-11-04 17:51:16 -08001666 if (active) {
1667 for (port = active->lag_ports; port;
1668 port = port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 __disable_port(port);
1670 }
1671 }
Mahesh Bandewaree637712014-10-04 17:45:01 -07001672 /* Slave array needs update. */
1673 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 }
1675
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001676 /* if the selected aggregator is of join individuals
Jay Vosburghfd989c82008-11-04 17:51:16 -08001677 * (partner_system is NULL), enable their ports
1678 */
1679 active = __get_active_agg(origin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Jay Vosburghfd989c82008-11-04 17:51:16 -08001681 if (active) {
1682 if (!__agg_has_partner(active)) {
1683 for (port = active->lag_ports; port;
1684 port = port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 __enable_port(port);
1686 }
1687 }
1688 }
Jay Vosburghfd989c82008-11-04 17:51:16 -08001689
dingtianhongbe79bd02013-12-13 10:20:12 +08001690 rcu_read_unlock();
1691
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001692 bond_3ad_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
1694
1695/**
1696 * ad_clear_agg - clear a given aggregator's parameters
1697 * @aggregator: the aggregator we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 */
1699static void ad_clear_agg(struct aggregator *aggregator)
1700{
1701 if (aggregator) {
Holger Eitzenberger1624db72008-12-26 13:27:21 -08001702 aggregator->is_individual = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 aggregator->actor_admin_aggregator_key = 0;
1704 aggregator->actor_oper_aggregator_key = 0;
1705 aggregator->partner_system = null_mac_addr;
1706 aggregator->partner_system_priority = 0;
1707 aggregator->partner_oper_aggregator_key = 0;
1708 aggregator->receive_state = 0;
1709 aggregator->transmit_state = 0;
1710 aggregator->lag_ports = NULL;
1711 aggregator->is_active = 0;
1712 aggregator->num_of_ports = 0;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001713 pr_debug("LAG %d was cleared\n",
1714 aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 }
1716}
1717
1718/**
1719 * ad_initialize_agg - initialize a given aggregator's parameters
1720 * @aggregator: the aggregator we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 */
1722static void ad_initialize_agg(struct aggregator *aggregator)
1723{
1724 if (aggregator) {
1725 ad_clear_agg(aggregator);
1726
1727 aggregator->aggregator_mac_address = null_mac_addr;
1728 aggregator->aggregator_identifier = 0;
1729 aggregator->slave = NULL;
1730 }
1731}
1732
1733/**
1734 * ad_initialize_port - initialize a given port's parameters
1735 * @aggregator: the aggregator we're looking at
1736 * @lacp_fast: boolean. whether fast periodic should be used
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 */
1738static void ad_initialize_port(struct port *port, int lacp_fast)
1739{
Holger Eitzenbergerc7e703d2008-12-17 19:12:07 -08001740 static const struct port_params tmpl = {
1741 .system_priority = 0xffff,
1742 .key = 1,
1743 .port_number = 1,
1744 .port_priority = 0xff,
1745 .port_state = 1,
1746 };
Holger Eitzenberger7addeef2008-12-26 13:28:33 -08001747 static const struct lacpdu lacpdu = {
1748 .subtype = 0x01,
1749 .version_number = 0x01,
1750 .tlv_type_actor_info = 0x01,
1751 .actor_information_length = 0x14,
1752 .tlv_type_partner_info = 0x02,
1753 .partner_information_length = 0x14,
1754 .tlv_type_collector_info = 0x03,
1755 .collector_information_length = 0x10,
1756 .collector_max_delay = htons(AD_COLLECTOR_MAX_DELAY),
1757 };
Holger Eitzenbergerc7e703d2008-12-17 19:12:07 -08001758
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 if (port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 port->actor_port_priority = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 port->actor_port_aggregator_identifier = 0;
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001762 port->ntt = false;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001763 port->actor_admin_port_state = AD_STATE_AGGREGATION |
1764 AD_STATE_LACP_ACTIVITY;
1765 port->actor_oper_port_state = AD_STATE_AGGREGATION |
1766 AD_STATE_LACP_ACTIVITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Bandan Das7bfc4752010-10-16 20:19:59 +00001768 if (lacp_fast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 port->actor_oper_port_state |= AD_STATE_LACP_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Holger Eitzenbergerc7e703d2008-12-17 19:12:07 -08001771 memcpy(&port->partner_admin, &tmpl, sizeof(tmpl));
1772 memcpy(&port->partner_oper, &tmpl, sizeof(tmpl));
1773
Holger Eitzenbergerf48127b2008-12-26 13:26:54 -08001774 port->is_enabled = true;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001775 /* private parameters */
Mahesh Bandewar19a12042015-03-27 22:34:31 -07001776 port->sm_vars = AD_PORT_BEGIN | AD_PORT_LACP_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 port->sm_rx_state = 0;
1778 port->sm_rx_timer_counter = 0;
1779 port->sm_periodic_state = 0;
1780 port->sm_periodic_timer_counter = 0;
1781 port->sm_mux_state = 0;
1782 port->sm_mux_timer_counter = 0;
1783 port->sm_tx_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 port->aggregator = NULL;
1785 port->next_port_in_aggregator = NULL;
1786 port->transaction_id = 0;
1787
Mahesh Bandewar14c95512015-02-23 17:50:11 -08001788 port->sm_churn_actor_timer_counter = 0;
1789 port->sm_churn_actor_state = 0;
1790 port->churn_actor_count = 0;
1791 port->sm_churn_partner_timer_counter = 0;
1792 port->sm_churn_partner_state = 0;
1793 port->churn_partner_count = 0;
1794
Holger Eitzenberger7addeef2008-12-26 13:28:33 -08001795 memcpy(&port->lacpdu, &lacpdu, sizeof(lacpdu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 }
1797}
1798
1799/**
1800 * ad_enable_collecting_distributing - enable a port's transmit/receive
1801 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001802 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 *
1804 * Enable @port if it's in an active aggregator
1805 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001806static void ad_enable_collecting_distributing(struct port *port,
1807 bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
1809 if (port->aggregator->is_active) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001810 pr_debug("Enabling port %d(LAG %d)\n",
1811 port->actor_port_number,
1812 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 __enable_port(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07001814 /* Slave array needs update */
1815 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 }
1817}
1818
1819/**
1820 * ad_disable_collecting_distributing - disable a port's transmit/receive
1821 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001822 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001824static void ad_disable_collecting_distributing(struct port *port,
1825 bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001827 if (port->aggregator &&
1828 !MAC_ADDRESS_EQUAL(&(port->aggregator->partner_system),
1829 &(null_mac_addr))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001830 pr_debug("Disabling port %d(LAG %d)\n",
1831 port->actor_port_number,
1832 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 __disable_port(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07001834 /* Slave array needs an update */
1835 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
1837}
1838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839/**
1840 * ad_marker_info_received - handle receive of a Marker information frame
1841 * @marker_info: Marker info received
1842 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001844static void ad_marker_info_received(struct bond_marker *marker_info,
1845 struct port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001847 struct bond_marker marker;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001849 /* copy the received marker data to the response marker */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001850 memcpy(&marker, marker_info, sizeof(struct bond_marker));
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001851 /* change the marker subtype to marker response */
Bandan Das128ea6c2010-10-16 20:19:58 +00001852 marker.tlv_type = AD_MARKER_RESPONSE_SUBTYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001854 /* send the marker response */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 if (ad_marker_send(port, &marker) >= 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001856 pr_debug("Sent Marker Response on port %d\n",
1857 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 }
1859}
1860
1861/**
1862 * ad_marker_response_received - handle receive of a marker response frame
1863 * @marker: marker PDU received
1864 * @port: the port we're looking at
1865 *
1866 * This function does nothing since we decided not to implement send and handle
1867 * response for marker PDU's, in this stage, but only to respond to marker
1868 * information.
1869 */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001870static void ad_marker_response_received(struct bond_marker *marker,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001871 struct port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001873 /* DO NOTHING, SINCE WE DECIDED NOT TO IMPLEMENT THIS FEATURE FOR NOW */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
1875
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001876/* ========= AD exported functions to the main bonding code ========= */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001878/* Check aggregators status in team every T seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879#define AD_AGGREGATOR_SELECTION_TIMER 8
1880
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001881/**
1882 * bond_3ad_initiate_agg_selection - initate aggregator selection
1883 * @bond: bonding struct
Jay Vosburghfd989c82008-11-04 17:51:16 -08001884 *
1885 * Set the aggregation selection timer, to initiate an agg selection in
1886 * the very near future. Called during first initialization, and during
1887 * any down to up transitions of the bond.
1888 */
1889void bond_3ad_initiate_agg_selection(struct bonding *bond, int timeout)
1890{
1891 BOND_AD_INFO(bond).agg_select_timer = timeout;
Jay Vosburghfd989c82008-11-04 17:51:16 -08001892}
1893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894/**
1895 * bond_3ad_initialize - initialize a bond's 802.3ad parameters and structures
1896 * @bond: bonding struct to work on
1897 * @tick_resolution: tick duration (millisecond resolution)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 *
1899 * Can be called only after the mac address of the bond is set.
1900 */
Peter Pan(潘卫平)56d00c672011-06-08 21:19:02 +00001901void bond_3ad_initialize(struct bonding *bond, u16 tick_resolution)
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001902{
dingtianhong815117a2014-01-02 09:12:54 +08001903 /* check that the bond is not initialized yet */
1904 if (!MAC_ADDRESS_EQUAL(&(BOND_AD_INFO(bond).system.sys_mac_addr),
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001905 bond->dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Jiri Bohac163c8ff2014-02-14 18:13:50 +01001907 BOND_AD_INFO(bond).aggregator_identifier = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Mahesh Bandewar6791e462015-05-09 00:01:55 -07001909 BOND_AD_INFO(bond).system.sys_priority =
1910 bond->params.ad_actor_sys_prio;
Mahesh Bandewar74514952015-05-09 00:01:56 -07001911 if (is_zero_ether_addr(bond->params.ad_actor_system))
1912 BOND_AD_INFO(bond).system.sys_mac_addr =
1913 *((struct mac_addr *)bond->dev->dev_addr);
1914 else
1915 BOND_AD_INFO(bond).system.sys_mac_addr =
1916 *((struct mac_addr *)bond->params.ad_actor_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001918 /* initialize how many times this module is called in one
1919 * second (should be about every 100ms)
1920 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 ad_ticks_per_sec = tick_resolution;
1922
Jay Vosburghfd989c82008-11-04 17:51:16 -08001923 bond_3ad_initiate_agg_selection(bond,
1924 AD_AGGREGATOR_SELECTION_TIMER *
1925 ad_ticks_per_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 }
1927}
1928
1929/**
1930 * bond_3ad_bind_slave - initialize a slave's port
1931 * @slave: slave struct to work on
1932 *
1933 * Returns: 0 on success
1934 * < 0 on error
1935 */
dingtianhong359632e2014-01-02 09:13:12 +08001936void bond_3ad_bind_slave(struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
1938 struct bonding *bond = bond_get_bond_by_slave(slave);
1939 struct port *port;
1940 struct aggregator *aggregator;
1941
dingtianhong359632e2014-01-02 09:13:12 +08001942 /* check that the slave has not been initialized yet. */
dingtianhong3fdddd82014-05-12 15:08:43 +08001943 if (SLAVE_AD_INFO(slave)->port.slave != slave) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
dingtianhong359632e2014-01-02 09:13:12 +08001945 /* port initialization */
dingtianhong3fdddd82014-05-12 15:08:43 +08001946 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Peter Pan(潘卫平)bf0239a2011-06-13 04:30:10 +00001948 ad_initialize_port(port, bond->params.lacp_fast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 port->slave = slave;
dingtianhong3fdddd82014-05-12 15:08:43 +08001951 port->actor_port_number = SLAVE_AD_INFO(slave)->id;
Mahesh Bandeward22a5fc2015-05-09 00:01:57 -07001952 /* key is determined according to the link speed, duplex and
1953 * user key
dingtianhong359632e2014-01-02 09:13:12 +08001954 */
Mahesh Bandeward22a5fc2015-05-09 00:01:57 -07001955 port->actor_admin_port_key = bond->params.ad_user_port_key << 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 port->actor_admin_port_key |= __get_duplex(port);
1957 port->actor_admin_port_key |= (__get_link_speed(port) << 1);
1958 port->actor_oper_port_key = port->actor_admin_port_key;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001959 /* if the port is not full duplex, then the port should be not
1960 * lacp Enabled
1961 */
Jianhua Xiecb8dda92014-11-19 16:48:58 +08001962 if (!(port->actor_oper_port_key & AD_DUPLEX_KEY_MASKS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 port->sm_vars &= ~AD_PORT_LACP_ENABLED;
dingtianhong359632e2014-01-02 09:13:12 +08001964 /* actor system is the bond's system */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 port->actor_system = BOND_AD_INFO(bond).system.sys_mac_addr;
Mahesh Bandewar6791e462015-05-09 00:01:55 -07001966 port->actor_system_priority =
1967 BOND_AD_INFO(bond).system.sys_priority;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001968 /* tx timer(to verify that no more than MAX_TX_IN_SECOND
1969 * lacpdu's are sent in one second)
1970 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 port->sm_tx_timer_counter = ad_ticks_per_sec/AD_MAX_TX_IN_SECOND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 __disable_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
dingtianhong359632e2014-01-02 09:13:12 +08001975 /* aggregator initialization */
dingtianhong3fdddd82014-05-12 15:08:43 +08001976 aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978 ad_initialize_agg(aggregator);
1979
1980 aggregator->aggregator_mac_address = *((struct mac_addr *)bond->dev->dev_addr);
Jiri Bohac163c8ff2014-02-14 18:13:50 +01001981 aggregator->aggregator_identifier = ++BOND_AD_INFO(bond).aggregator_identifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 aggregator->slave = slave;
1983 aggregator->is_active = 0;
1984 aggregator->num_of_ports = 0;
1985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986}
1987
1988/**
1989 * bond_3ad_unbind_slave - deinitialize a slave's port
1990 * @slave: slave struct to work on
1991 *
1992 * Search for the aggregator that is related to this port, remove the
1993 * aggregator and assign another aggregator for other port related to it
1994 * (if any), and remove the port.
1995 */
1996void bond_3ad_unbind_slave(struct slave *slave)
1997{
1998 struct port *port, *prev_port, *temp_port;
1999 struct aggregator *aggregator, *new_aggregator, *temp_aggregator;
2000 int select_new_active_agg = 0;
Veaceslav Falico0b088262013-09-27 16:12:02 +02002001 struct bonding *bond = slave->bond;
2002 struct slave *slave_iter;
2003 struct list_head *iter;
Mahesh Bandewaree637712014-10-04 17:45:01 -07002004 bool dummy_slave_update; /* Ignore this value as caller updates array */
Jasper Spaansa361c832009-10-23 04:09:24 +00002005
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002006 /* Sync against bond_3ad_state_machine_handler() */
2007 spin_lock_bh(&bond->mode_lock);
dingtianhong3fdddd82014-05-12 15:08:43 +08002008 aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
2009 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002011 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002013 netdev_warn(bond->dev, "Trying to unbind an uninitialized port on %s\n",
2014 slave->dev->name);
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002015 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 }
2017
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002018 netdev_dbg(bond->dev, "Unbinding Link Aggregation Group %d\n",
2019 aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 /* Tell the partner that this port is not suitable for aggregation */
2022 port->actor_oper_port_state &= ~AD_STATE_AGGREGATION;
2023 __update_lacpdu_from_port(port);
2024 ad_lacpdu_send(port);
2025
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002026 /* check if this aggregator is occupied */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 if (aggregator->lag_ports) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002028 /* check if there are other ports related to this aggregator
2029 * except the port related to this slave(thats ensure us that
2030 * there is a reason to search for new aggregator, and that we
2031 * will find one
2032 */
2033 if ((aggregator->lag_ports != port) ||
2034 (aggregator->lag_ports->next_port_in_aggregator)) {
2035 /* find new aggregator for the related port(s) */
Veaceslav Falico0b088262013-09-27 16:12:02 +02002036 bond_for_each_slave(bond, slave_iter, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002037 new_aggregator = &(SLAVE_AD_INFO(slave_iter)->aggregator);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002038 /* if the new aggregator is empty, or it is
2039 * connected to our port only
2040 */
2041 if (!new_aggregator->lag_ports ||
2042 ((new_aggregator->lag_ports == port) &&
2043 !new_aggregator->lag_ports->next_port_in_aggregator))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 }
Veaceslav Falico0b088262013-09-27 16:12:02 +02002046 if (!slave_iter)
2047 new_aggregator = NULL;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002048
2049 /* if new aggregator found, copy the aggregator's
2050 * parameters and connect the related lag_ports to the
2051 * new aggregator
2052 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 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 +02002054 netdev_dbg(bond->dev, "Some port(s) related to LAG %d - replacing with LAG %d\n",
2055 aggregator->aggregator_identifier,
2056 new_aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002058 if ((new_aggregator->lag_ports == port) &&
2059 new_aggregator->is_active) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002060 netdev_info(bond->dev, "Removing an active aggregator\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 select_new_active_agg = 1;
2062 }
2063
2064 new_aggregator->is_individual = aggregator->is_individual;
2065 new_aggregator->actor_admin_aggregator_key = aggregator->actor_admin_aggregator_key;
2066 new_aggregator->actor_oper_aggregator_key = aggregator->actor_oper_aggregator_key;
2067 new_aggregator->partner_system = aggregator->partner_system;
2068 new_aggregator->partner_system_priority = aggregator->partner_system_priority;
2069 new_aggregator->partner_oper_aggregator_key = aggregator->partner_oper_aggregator_key;
2070 new_aggregator->receive_state = aggregator->receive_state;
2071 new_aggregator->transmit_state = aggregator->transmit_state;
2072 new_aggregator->lag_ports = aggregator->lag_ports;
2073 new_aggregator->is_active = aggregator->is_active;
2074 new_aggregator->num_of_ports = aggregator->num_of_ports;
2075
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002076 /* update the information that is written on
2077 * the ports about the aggregator
2078 */
Bandan Das128ea6c2010-10-16 20:19:58 +00002079 for (temp_port = aggregator->lag_ports; temp_port;
2080 temp_port = temp_port->next_port_in_aggregator) {
2081 temp_port->aggregator = new_aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 temp_port->actor_port_aggregator_identifier = new_aggregator->aggregator_identifier;
2083 }
2084
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 ad_clear_agg(aggregator);
Jasper Spaansa361c832009-10-23 04:09:24 +00002086
Bandan Das7bfc4752010-10-16 20:19:59 +00002087 if (select_new_active_agg)
Mahesh Bandewaree637712014-10-04 17:45:01 -07002088 ad_agg_selection_logic(__get_first_agg(port),
2089 &dummy_slave_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 } else {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002091 netdev_warn(bond->dev, "unbinding aggregator, and could not find a new aggregator for its ports\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002093 } else {
2094 /* in case that the only port related to this
2095 * aggregator is the one we want to remove
2096 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 select_new_active_agg = aggregator->is_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 ad_clear_agg(aggregator);
2099 if (select_new_active_agg) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002100 netdev_info(bond->dev, "Removing an active aggregator\n");
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002101 /* select new active aggregator */
Veaceslav Falico74684492013-09-27 15:10:58 +02002102 temp_aggregator = __get_first_agg(port);
2103 if (temp_aggregator)
Mahesh Bandewaree637712014-10-04 17:45:01 -07002104 ad_agg_selection_logic(temp_aggregator,
2105 &dummy_slave_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
2107 }
2108 }
2109
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002110 netdev_dbg(bond->dev, "Unbinding port %d\n", port->actor_port_number);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002111
2112 /* find the aggregator that this port is connected to */
Veaceslav Falico0b088262013-09-27 16:12:02 +02002113 bond_for_each_slave(bond, slave_iter, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002114 temp_aggregator = &(SLAVE_AD_INFO(slave_iter)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 prev_port = NULL;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002116 /* search the port in the aggregator's related ports */
Bandan Das128ea6c2010-10-16 20:19:58 +00002117 for (temp_port = temp_aggregator->lag_ports; temp_port;
2118 prev_port = temp_port,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002119 temp_port = temp_port->next_port_in_aggregator) {
2120 if (temp_port == port) {
2121 /* the aggregator found - detach the port from
2122 * this aggregator
2123 */
Bandan Das7bfc4752010-10-16 20:19:59 +00002124 if (prev_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 prev_port->next_port_in_aggregator = temp_port->next_port_in_aggregator;
Bandan Das7bfc4752010-10-16 20:19:59 +00002126 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 temp_aggregator->lag_ports = temp_port->next_port_in_aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 temp_aggregator->num_of_ports--;
Bandan Das128ea6c2010-10-16 20:19:58 +00002129 if (temp_aggregator->num_of_ports == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 select_new_active_agg = temp_aggregator->is_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 ad_clear_agg(temp_aggregator);
2132 if (select_new_active_agg) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002133 netdev_info(bond->dev, "Removing an active aggregator\n");
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002134 /* select new active aggregator */
Mahesh Bandewaree637712014-10-04 17:45:01 -07002135 ad_agg_selection_logic(__get_first_agg(port),
2136 &dummy_slave_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 }
2138 }
2139 break;
2140 }
2141 }
2142 }
Bandan Das128ea6c2010-10-16 20:19:58 +00002143 port->slave = NULL;
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002144
2145out:
2146 spin_unlock_bh(&bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
2148
2149/**
2150 * bond_3ad_state_machine_handler - handle state machines timeout
2151 * @bond: bonding struct to work on
2152 *
2153 * The state machine handling concept in this module is to check every tick
2154 * which state machine should operate any function. The execution order is
2155 * round robin, so when we have an interaction between state machines, the
2156 * reply of one to each other might be delayed until next tick.
2157 *
2158 * This function also complete the initialization when the agg_select_timer
2159 * times out, and it selects an aggregator for the ports that are yet not
2160 * related to any aggregator, and selects the active aggregator for a bond.
2161 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002162void bond_3ad_state_machine_handler(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002164 struct bonding *bond = container_of(work, struct bonding,
2165 ad_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 struct aggregator *aggregator;
Veaceslav Falico3c4c88a2013-09-27 16:11:57 +02002167 struct list_head *iter;
2168 struct slave *slave;
2169 struct port *port;
dingtianhong5e5b0662014-02-26 11:05:22 +08002170 bool should_notify_rtnl = BOND_SLAVE_NOTIFY_LATER;
Mahesh Bandewaree637712014-10-04 17:45:01 -07002171 bool update_slave_arr = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002173 /* Lock to protect data accessed by all (e.g., port->sm_vars) and
2174 * against running with bond_3ad_unbind_slave. ad_rx_machine may run
2175 * concurrently due to incoming LACPDU as well.
2176 */
Nikolay Aleksandrovb7435622014-09-11 22:49:25 +02002177 spin_lock_bh(&bond->mode_lock);
dingtianhongbe79bd02013-12-13 10:20:12 +08002178 rcu_read_lock();
David S. Miller1f2cd842013-10-28 00:11:22 -04002179
dingtianhongbe79bd02013-12-13 10:20:12 +08002180 /* check if there are any slaves */
Veaceslav Falico0965a1f2013-09-25 09:20:21 +02002181 if (!bond_has_slaves(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
dingtianhongbe79bd02013-12-13 10:20:12 +08002184 /* check if agg_select_timer timer after initialize is timed out */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002185 if (BOND_AD_INFO(bond).agg_select_timer &&
2186 !(--BOND_AD_INFO(bond).agg_select_timer)) {
dingtianhongbe79bd02013-12-13 10:20:12 +08002187 slave = bond_first_slave_rcu(bond);
dingtianhong3fdddd82014-05-12 15:08:43 +08002188 port = slave ? &(SLAVE_AD_INFO(slave)->port) : NULL;
Veaceslav Falicofe9323d2013-09-27 16:11:58 +02002189
dingtianhongbe79bd02013-12-13 10:20:12 +08002190 /* select the active aggregator for the bond */
Veaceslav Falicofe9323d2013-09-27 16:11:58 +02002191 if (port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002193 net_warn_ratelimited("%s: Warning: bond's first port is uninitialized\n",
2194 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 goto re_arm;
2196 }
2197
2198 aggregator = __get_first_agg(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07002199 ad_agg_selection_logic(aggregator, &update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002201 bond_3ad_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 }
2203
dingtianhongbe79bd02013-12-13 10:20:12 +08002204 /* for each port run the state machines */
2205 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002206 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002208 net_warn_ratelimited("%s: Warning: Found an uninitialized port\n",
Veaceslav Falico86a2b9c2014-03-16 17:55:03 +01002209 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 goto re_arm;
2211 }
2212
2213 ad_rx_machine(NULL, port);
2214 ad_periodic_machine(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07002215 ad_port_selection_logic(port, &update_slave_arr);
2216 ad_mux_machine(port, &update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 ad_tx_machine(port);
Mahesh Bandewar14c95512015-02-23 17:50:11 -08002218 ad_churn_machine(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
dingtianhongbe79bd02013-12-13 10:20:12 +08002220 /* turn off the BEGIN bit, since we already handled it */
Bandan Das7bfc4752010-10-16 20:19:59 +00002221 if (port->sm_vars & AD_PORT_BEGIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 port->sm_vars &= ~AD_PORT_BEGIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 }
2224
2225re_arm:
dingtianhong5e5b0662014-02-26 11:05:22 +08002226 bond_for_each_slave_rcu(bond, slave, iter) {
2227 if (slave->should_notify) {
2228 should_notify_rtnl = BOND_SLAVE_NOTIFY_NOW;
2229 break;
2230 }
2231 }
dingtianhongbe79bd02013-12-13 10:20:12 +08002232 rcu_read_unlock();
Nikolay Aleksandrovb7435622014-09-11 22:49:25 +02002233 spin_unlock_bh(&bond->mode_lock);
dingtianhong5e5b0662014-02-26 11:05:22 +08002234
Mahesh Bandewaree637712014-10-04 17:45:01 -07002235 if (update_slave_arr)
2236 bond_slave_arr_work_rearm(bond, 0);
2237
dingtianhong5e5b0662014-02-26 11:05:22 +08002238 if (should_notify_rtnl && rtnl_trylock()) {
dingtianhongb0929912014-02-26 11:05:23 +08002239 bond_slave_state_notify(bond);
dingtianhong5e5b0662014-02-26 11:05:22 +08002240 rtnl_unlock();
2241 }
dingtianhongbe79bd02013-12-13 10:20:12 +08002242 queue_delayed_work(bond->wq, &bond->ad_work, ad_delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243}
2244
2245/**
2246 * bond_3ad_rx_indication - handle a received frame
2247 * @lacpdu: received lacpdu
2248 * @slave: slave struct to work on
2249 * @length: length of the data received
2250 *
2251 * It is assumed that frames that were sent on this NIC don't returned as new
2252 * received frames (loopback). Since only the payload is given to this
2253 * function, it check for loopback.
2254 */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002255static int bond_3ad_rx_indication(struct lacpdu *lacpdu, struct slave *slave,
2256 u16 length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
2258 struct port *port;
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002259 int ret = RX_HANDLER_ANOTHER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261 if (length >= sizeof(struct lacpdu)) {
2262
dingtianhong3fdddd82014-05-12 15:08:43 +08002263 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
2265 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002266 net_warn_ratelimited("%s: Warning: port of slave %s is uninitialized\n",
2267 slave->dev->name, slave->bond->dev->name);
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002268 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 }
2270
2271 switch (lacpdu->subtype) {
2272 case AD_TYPE_LACPDU:
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002273 ret = RX_HANDLER_CONSUMED;
Satish Ashok2f637322015-01-26 01:17:00 -05002274 netdev_dbg(slave->bond->dev,
2275 "Received LACPDU on port %d slave %s\n",
2276 port->actor_port_number,
2277 slave->dev->name);
Nils Carlson16d79d72011-03-03 22:09:11 +00002278 /* Protect against concurrent state machines */
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002279 spin_lock(&slave->bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 ad_rx_machine(lacpdu, port);
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002281 spin_unlock(&slave->bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 break;
2283
2284 case AD_TYPE_MARKER:
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002285 ret = RX_HANDLER_CONSUMED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002286 /* No need to convert fields to Little Endian since we
2287 * don't use the marker's fields.
2288 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07002290 switch (((struct bond_marker *)lacpdu)->tlv_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 case AD_MARKER_INFORMATION_SUBTYPE:
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002292 netdev_dbg(slave->bond->dev, "Received Marker Information on port %d\n",
2293 port->actor_port_number);
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07002294 ad_marker_info_received((struct bond_marker *)lacpdu, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 break;
2296
2297 case AD_MARKER_RESPONSE_SUBTYPE:
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002298 netdev_dbg(slave->bond->dev, "Received Marker Response on port %d\n",
2299 port->actor_port_number);
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07002300 ad_marker_response_received((struct bond_marker *)lacpdu, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 break;
2302
2303 default:
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002304 netdev_dbg(slave->bond->dev, "Received an unknown Marker subtype on slot %d\n",
2305 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
2307 }
2308 }
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002309 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310}
2311
2312/**
2313 * bond_3ad_adapter_speed_changed - handle a slave's speed change indication
2314 * @slave: slave struct to work on
2315 *
2316 * Handle reselection of aggregator (if needed) for this port.
2317 */
2318void bond_3ad_adapter_speed_changed(struct slave *slave)
2319{
2320 struct port *port;
2321
dingtianhong3fdddd82014-05-12 15:08:43 +08002322 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
dingtianhong71a06c52013-12-13 17:29:19 +08002324 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002326 netdev_warn(slave->bond->dev, "speed changed for uninitialized port on %s\n",
2327 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 return;
2329 }
2330
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002331 spin_lock_bh(&slave->bond->mode_lock);
dingtianhong71a06c52013-12-13 17:29:19 +08002332
Jianhua Xiecb8dda92014-11-19 16:48:58 +08002333 port->actor_admin_port_key &= ~AD_SPEED_KEY_MASKS;
Mahesh Bandewarc3cd9ee2015-04-07 16:16:11 -07002334 port->actor_admin_port_key |= __get_link_speed(port) << 1;
2335 port->actor_oper_port_key = port->actor_admin_port_key;
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002336 netdev_dbg(slave->bond->dev, "Port %d changed speed\n", port->actor_port_number);
dingtianhong71a06c52013-12-13 17:29:19 +08002337 /* there is no need to reselect a new aggregator, just signal the
2338 * state machines to reinitialize
2339 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 port->sm_vars |= AD_PORT_BEGIN;
dingtianhong71a06c52013-12-13 17:29:19 +08002341
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002342 spin_unlock_bh(&slave->bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343}
2344
2345/**
2346 * bond_3ad_adapter_duplex_changed - handle a slave's duplex change indication
2347 * @slave: slave struct to work on
2348 *
2349 * Handle reselection of aggregator (if needed) for this port.
2350 */
2351void bond_3ad_adapter_duplex_changed(struct slave *slave)
2352{
2353 struct port *port;
2354
dingtianhong3fdddd82014-05-12 15:08:43 +08002355 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
dingtianhongbca44a72013-12-13 17:29:24 +08002357 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002359 netdev_warn(slave->bond->dev, "duplex changed for uninitialized port on %s\n",
2360 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 return;
2362 }
2363
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002364 spin_lock_bh(&slave->bond->mode_lock);
dingtianhongbca44a72013-12-13 17:29:24 +08002365
Jianhua Xiecb8dda92014-11-19 16:48:58 +08002366 port->actor_admin_port_key &= ~AD_DUPLEX_KEY_MASKS;
Mahesh Bandewarc3cd9ee2015-04-07 16:16:11 -07002367 port->actor_admin_port_key |= __get_duplex(port);
2368 port->actor_oper_port_key = port->actor_admin_port_key;
Satish Ashok2f637322015-01-26 01:17:00 -05002369 netdev_dbg(slave->bond->dev, "Port %d slave %s changed duplex\n",
2370 port->actor_port_number, slave->dev->name);
2371 if (port->actor_oper_port_key & AD_DUPLEX_KEY_MASKS)
2372 port->sm_vars |= AD_PORT_LACP_ENABLED;
dingtianhongbca44a72013-12-13 17:29:24 +08002373 /* there is no need to reselect a new aggregator, just signal the
2374 * state machines to reinitialize
2375 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 port->sm_vars |= AD_PORT_BEGIN;
dingtianhongbca44a72013-12-13 17:29:24 +08002377
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002378 spin_unlock_bh(&slave->bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379}
2380
2381/**
2382 * bond_3ad_handle_link_change - handle a slave's link status change indication
2383 * @slave: slave struct to work on
2384 * @status: whether the link is now up or down
2385 *
2386 * Handle reselection of aggregator (if needed) for this port.
2387 */
2388void bond_3ad_handle_link_change(struct slave *slave, char link)
2389{
2390 struct port *port;
2391
dingtianhong3fdddd82014-05-12 15:08:43 +08002392 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
dingtianhong108db732013-12-13 17:29:29 +08002394 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002396 netdev_warn(slave->bond->dev, "link status changed for uninitialized port on %s\n",
2397 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 return;
2399 }
2400
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002401 spin_lock_bh(&slave->bond->mode_lock);
dingtianhong108db732013-12-13 17:29:29 +08002402 /* on link down we are zeroing duplex and speed since
2403 * some of the adaptors(ce1000.lan) report full duplex/speed
2404 * instead of N/A(duplex) / 0(speed).
2405 *
2406 * on link up we are forcing recheck on the duplex and speed since
2407 * some of he adaptors(ce1000.lan) report.
2408 */
Mahesh Bandewarc3cd9ee2015-04-07 16:16:11 -07002409 port->actor_admin_port_key &= ~(AD_DUPLEX_KEY_MASKS|AD_SPEED_KEY_MASKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 if (link == BOND_LINK_UP) {
Holger Eitzenbergerf48127b2008-12-26 13:26:54 -08002411 port->is_enabled = true;
Mahesh Bandewarc3cd9ee2015-04-07 16:16:11 -07002412 port->actor_admin_port_key |=
2413 (__get_link_speed(port) << 1) | __get_duplex(port);
2414 if (port->actor_admin_port_key & AD_DUPLEX_KEY_MASKS)
Mahesh Bandewarf6a69a82015-03-30 14:31:16 -07002415 port->sm_vars |= AD_PORT_LACP_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 } else {
2417 /* link has failed */
Holger Eitzenbergerf48127b2008-12-26 13:26:54 -08002418 port->is_enabled = false;
Mahesh Bandewarf6a69a82015-03-30 14:31:16 -07002419 port->sm_vars &= ~AD_PORT_LACP_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 }
Mahesh Bandewarc3cd9ee2015-04-07 16:16:11 -07002421 port->actor_oper_port_key = port->actor_admin_port_key;
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002422 netdev_dbg(slave->bond->dev, "Port %d changed link status to %s\n",
2423 port->actor_port_number,
2424 link == BOND_LINK_UP ? "UP" : "DOWN");
dingtianhong108db732013-12-13 17:29:29 +08002425 /* there is no need to reselect a new aggregator, just signal the
2426 * state machines to reinitialize
2427 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 port->sm_vars |= AD_PORT_BEGIN;
dingtianhong108db732013-12-13 17:29:29 +08002429
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002430 spin_unlock_bh(&slave->bond->mode_lock);
Mahesh Bandewaree637712014-10-04 17:45:01 -07002431
2432 /* RTNL is held and mode_lock is released so it's safe
2433 * to update slave_array here.
2434 */
2435 bond_update_slave_arr(slave->bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436}
2437
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002438/**
2439 * bond_3ad_set_carrier - set link state for bonding master
2440 * @bond - bonding structure
2441 *
2442 * if we have an active aggregator, we're up, if not, we're down.
2443 * Presumes that we cannot have an active aggregator if there are
2444 * no slaves with link up.
Jay Vosburghff59c452006-03-27 13:27:43 -08002445 *
Jay Vosburgh031ae4d2007-06-13 22:11:34 -07002446 * This behavior complies with IEEE 802.3 section 43.3.9.
2447 *
Jay Vosburghff59c452006-03-27 13:27:43 -08002448 * Called by bond_set_carrier(). Return zero if carrier state does not
2449 * change, nonzero if it does.
2450 */
2451int bond_3ad_set_carrier(struct bonding *bond)
2452{
stephen hemminger655f8912011-06-22 09:54:39 +00002453 struct aggregator *active;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02002454 struct slave *first_slave;
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002455 int ret = 1;
stephen hemminger655f8912011-06-22 09:54:39 +00002456
dingtianhongbe79bd02013-12-13 10:20:12 +08002457 rcu_read_lock();
2458 first_slave = bond_first_slave_rcu(bond);
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002459 if (!first_slave) {
2460 ret = 0;
2461 goto out;
2462 }
dingtianhong3fdddd82014-05-12 15:08:43 +08002463 active = __get_active_agg(&(SLAVE_AD_INFO(first_slave)->aggregator));
stephen hemminger655f8912011-06-22 09:54:39 +00002464 if (active) {
2465 /* are enough slaves available to consider link up? */
2466 if (active->num_of_ports < bond->params.min_links) {
2467 if (netif_carrier_ok(bond->dev)) {
2468 netif_carrier_off(bond->dev);
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002469 goto out;
stephen hemminger655f8912011-06-22 09:54:39 +00002470 }
2471 } else if (!netif_carrier_ok(bond->dev)) {
Jay Vosburghff59c452006-03-27 13:27:43 -08002472 netif_carrier_on(bond->dev);
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002473 goto out;
Jay Vosburghff59c452006-03-27 13:27:43 -08002474 }
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002475 } else if (netif_carrier_ok(bond->dev)) {
Jay Vosburghff59c452006-03-27 13:27:43 -08002476 netif_carrier_off(bond->dev);
Jay Vosburghff59c452006-03-27 13:27:43 -08002477 }
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002478out:
2479 rcu_read_unlock();
2480 return ret;
Jay Vosburghff59c452006-03-27 13:27:43 -08002481}
2482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483/**
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002484 * __bond_3ad_get_active_agg_info - get information of the active aggregator
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 * @bond: bonding struct to work on
2486 * @ad_info: ad_info struct to fill with the bond's info
2487 *
2488 * Returns: 0 on success
2489 * < 0 on error
2490 */
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002491int __bond_3ad_get_active_agg_info(struct bonding *bond,
2492 struct ad_info *ad_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493{
2494 struct aggregator *aggregator = NULL;
Veaceslav Falico3c4c88a2013-09-27 16:11:57 +02002495 struct list_head *iter;
2496 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 struct port *port;
2498
dingtianhong47e91f562013-10-15 16:28:35 +08002499 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002500 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 if (port->aggregator && port->aggregator->is_active) {
2502 aggregator = port->aggregator;
2503 break;
2504 }
2505 }
2506
Joe Perches21f374c2014-02-18 09:42:47 -08002507 if (!aggregator)
2508 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Joe Perches21f374c2014-02-18 09:42:47 -08002510 ad_info->aggregator_id = aggregator->aggregator_identifier;
2511 ad_info->ports = aggregator->num_of_ports;
2512 ad_info->actor_key = aggregator->actor_oper_aggregator_key;
2513 ad_info->partner_key = aggregator->partner_oper_aggregator_key;
2514 ether_addr_copy(ad_info->partner_system,
2515 aggregator->partner_system.mac_addr_value);
2516 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517}
2518
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002519int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info)
2520{
2521 int ret;
2522
dingtianhong47e91f562013-10-15 16:28:35 +08002523 rcu_read_lock();
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002524 ret = __bond_3ad_get_active_agg_info(bond, ad_info);
dingtianhong47e91f562013-10-15 16:28:35 +08002525 rcu_read_unlock();
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002526
2527 return ret;
2528}
2529
Eric Dumazetde063b72012-06-11 19:23:07 +00002530int bond_3ad_lacpdu_recv(const struct sk_buff *skb, struct bonding *bond,
2531 struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532{
Eric Dumazetde063b72012-06-11 19:23:07 +00002533 struct lacpdu *lacpdu, _lacpdu;
2534
Jiri Pirko3aba8912011-04-19 03:48:16 +00002535 if (skb->protocol != PKT_TYPE_LACPDU)
Nikolay Aleksandrov86e74982014-09-11 22:49:22 +02002536 return RX_HANDLER_ANOTHER;
Neil Hormanb3053252011-01-20 09:02:31 +00002537
Mahesh Bandewarbb54e582015-02-23 17:50:10 -08002538 if (!MAC_ADDRESS_EQUAL(eth_hdr(skb)->h_dest, lacpdu_mcast_addr))
2539 return RX_HANDLER_ANOTHER;
2540
Eric Dumazetde063b72012-06-11 19:23:07 +00002541 lacpdu = skb_header_pointer(skb, 0, sizeof(_lacpdu), &_lacpdu);
2542 if (!lacpdu)
Nikolay Aleksandrov86e74982014-09-11 22:49:22 +02002543 return RX_HANDLER_ANOTHER;
Andy Gospodarekab128112010-09-10 11:43:20 +00002544
Nikolay Aleksandrov86e74982014-09-11 22:49:22 +02002545 return bond_3ad_rx_indication(lacpdu, slave, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546}
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002547
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002548/**
2549 * bond_3ad_update_lacp_rate - change the lacp rate
2550 * @bond - bonding struct
2551 *
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002552 * When modify lacp_rate parameter via sysfs,
2553 * update actor_oper_port_state of each port.
2554 *
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002555 * Hold bond->mode_lock,
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002556 * so we can modify port->actor_oper_port_state,
2557 * no matter bond is up or down.
2558 */
2559void bond_3ad_update_lacp_rate(struct bonding *bond)
2560{
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002561 struct port *port = NULL;
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02002562 struct list_head *iter;
nikolay@redhat.comc5093162013-09-02 13:51:40 +02002563 struct slave *slave;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002564 int lacp_fast;
2565
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002566 lacp_fast = bond->params.lacp_fast;
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002567 spin_lock_bh(&bond->mode_lock);
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02002568 bond_for_each_slave(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002569 port = &(SLAVE_AD_INFO(slave)->port);
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002570 if (lacp_fast)
2571 port->actor_oper_port_state |= AD_STATE_LACP_TIMEOUT;
2572 else
2573 port->actor_oper_port_state &= ~AD_STATE_LACP_TIMEOUT;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002574 }
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002575 spin_unlock_bh(&bond->mode_lock);
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002576}