blob: e3c96b216eb866916fc8984be3d44d87388baa1b [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
73
Veaceslav Falico3bf2d282014-01-08 16:46:46 +010074/* Port Key definitions
75 * key is determined according to the link speed, duplex and
76 * user key (which is yet not supported)
77 * --------------------------------------------------------------
78 * Port key : | User key | Speed | Duplex |
79 * --------------------------------------------------------------
80 * 16 6 1 0
81 */
Jianhua Xiecb8dda92014-11-19 16:48:58 +080082#define AD_DUPLEX_KEY_MASKS 0x1
83#define AD_SPEED_KEY_MASKS 0x3E
84#define AD_USER_KEY_MASKS 0xFFC0
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Jianhua Xiecb8dda92014-11-19 16:48:58 +080086enum ad_link_speed_type {
87 AD_LINK_SPEED_1MBPS = 1,
88 AD_LINK_SPEED_10MBPS,
89 AD_LINK_SPEED_100MBPS,
90 AD_LINK_SPEED_1000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +080091 AD_LINK_SPEED_2500MBPS,
92 AD_LINK_SPEED_10000MBPS,
93 AD_LINK_SPEED_20000MBPS,
94 AD_LINK_SPEED_40000MBPS,
95 AD_LINK_SPEED_56000MBPS
Jianhua Xiecb8dda92014-11-19 16:48:58 +080096};
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
dingtianhong815117a2014-01-02 09:12:54 +080098/* compare MAC addresses */
99#define MAC_ADDRESS_EQUAL(A, B) \
100 ether_addr_equal_64bits((const u8 *)A, (const u8 *)B)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Bandan Das128ea6c2010-10-16 20:19:58 +0000102static struct mac_addr null_mac_addr = { { 0, 0, 0, 0, 0, 0 } };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static u16 ad_ticks_per_sec;
104static const int ad_delta_in_ticks = (AD_TIMER_INTERVAL * HZ) / 1000;
105
Holger Eitzenbergere4ac4322008-12-26 13:40:48 -0800106static const u8 lacpdu_mcast_addr[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
107
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100108/* ================= main 802.3ad protocol functions ================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static int ad_lacpdu_send(struct port *port);
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700110static int ad_marker_send(struct port *port, struct bond_marker *marker);
Mahesh Bandewaree637712014-10-04 17:45:01 -0700111static void ad_mux_machine(struct port *port, bool *update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static void ad_rx_machine(struct lacpdu *lacpdu, struct port *port);
113static void ad_tx_machine(struct port *port);
114static void ad_periodic_machine(struct port *port);
Mahesh Bandewaree637712014-10-04 17:45:01 -0700115static void ad_port_selection_logic(struct port *port, bool *update_slave_arr);
116static void ad_agg_selection_logic(struct aggregator *aggregator,
117 bool *update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118static void ad_clear_agg(struct aggregator *aggregator);
119static void ad_initialize_agg(struct aggregator *aggregator);
120static void ad_initialize_port(struct port *port, int lacp_fast);
Mahesh Bandewaree637712014-10-04 17:45:01 -0700121static void ad_enable_collecting_distributing(struct port *port,
122 bool *update_slave_arr);
123static void ad_disable_collecting_distributing(struct port *port,
124 bool *update_slave_arr);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100125static void ad_marker_info_received(struct bond_marker *marker_info,
126 struct port *port);
127static void ad_marker_response_received(struct bond_marker *marker,
128 struct port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100131/* ================= api to bonding and kernel code ================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133/**
134 * __get_bond_by_port - get the port's bonding struct
135 * @port: the port we're looking at
136 *
137 * Return @port's bonding struct, or %NULL if it can't be found.
138 */
139static inline struct bonding *__get_bond_by_port(struct port *port)
140{
Bandan Das7bfc4752010-10-16 20:19:59 +0000141 if (port->slave == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 return bond_get_bond_by_slave(port->slave);
145}
146
147/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 * __get_first_agg - get the first aggregator in the bond
149 * @bond: the bond we're looking at
150 *
151 * Return the aggregator of the first slave in @bond, or %NULL if it can't be
152 * found.
Veaceslav Falico768b9542014-01-10 11:59:44 +0100153 * The caller must hold RCU or RTNL lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 */
155static inline struct aggregator *__get_first_agg(struct port *port)
156{
157 struct bonding *bond = __get_bond_by_port(port);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200158 struct slave *first_slave;
Veaceslav Falico768b9542014-01-10 11:59:44 +0100159 struct aggregator *agg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
dingtianhongbe79bd02013-12-13 10:20:12 +0800161 /* If there's no bond for this port, or bond has no slaves */
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200162 if (bond == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return NULL;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100164
dingtianhongbe79bd02013-12-13 10:20:12 +0800165 rcu_read_lock();
166 first_slave = bond_first_slave_rcu(bond);
dingtianhong3fdddd82014-05-12 15:08:43 +0800167 agg = first_slave ? &(SLAVE_AD_INFO(first_slave)->aggregator) : NULL;
dingtianhongbe79bd02013-12-13 10:20:12 +0800168 rcu_read_unlock();
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100169
Veaceslav Falico768b9542014-01-10 11:59:44 +0100170 return agg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100173/**
174 * __agg_has_partner - see if we have a partner
175 * @agg: the agregator we're looking at
Jay Vosburghfd989c82008-11-04 17:51:16 -0800176 *
177 * Return nonzero if aggregator has a partner (denoted by a non-zero ether
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100178 * address for the partner). Return 0 if not.
Jay Vosburghfd989c82008-11-04 17:51:16 -0800179 */
180static inline int __agg_has_partner(struct aggregator *agg)
181{
182 return !is_zero_ether_addr(agg->partner_system.mac_addr_value);
183}
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/**
186 * __disable_port - disable the port's slave
187 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 */
189static inline void __disable_port(struct port *port)
190{
dingtianhong5e5b0662014-02-26 11:05:22 +0800191 bond_set_slave_inactive_flags(port->slave, BOND_SLAVE_NOTIFY_LATER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
194/**
195 * __enable_port - enable the port's slave, if it's up
196 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 */
198static inline void __enable_port(struct port *port)
199{
200 struct slave *slave = port->slave;
201
Veaceslav Falicob6adc612014-05-15 21:39:57 +0200202 if ((slave->link == BOND_LINK_UP) && bond_slave_is_up(slave))
dingtianhong5e5b0662014-02-26 11:05:22 +0800203 bond_set_slave_active_flags(slave, BOND_SLAVE_NOTIFY_LATER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206/**
207 * __port_is_enabled - check if the port's slave is in active state
208 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 */
210static inline int __port_is_enabled(struct port *port)
211{
Jiri Pirkoe30bc062011-03-12 03:14:37 +0000212 return bond_is_active_slave(port->slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
215/**
216 * __get_agg_selection_mode - get the aggregator selection mode
217 * @port: the port we're looking at
218 *
Jay Vosburghfd989c82008-11-04 17:51:16 -0800219 * Get the aggregator selection mode. Can be %STABLE, %BANDWIDTH or %COUNT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 */
221static inline u32 __get_agg_selection_mode(struct port *port)
222{
223 struct bonding *bond = __get_bond_by_port(port);
224
Bandan Das7bfc4752010-10-16 20:19:59 +0000225 if (bond == NULL)
Jay Vosburghfd989c82008-11-04 17:51:16 -0800226 return BOND_AD_STABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Peter Pan(潘卫平)1a14fbc2011-06-08 21:19:03 +0000228 return bond->params.ad_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
231/**
232 * __check_agg_selection_timer - check if the selection timer has expired
233 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
235static inline int __check_agg_selection_timer(struct port *port)
236{
237 struct bonding *bond = __get_bond_by_port(port);
238
Bandan Das7bfc4752010-10-16 20:19:59 +0000239 if (bond == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 return BOND_AD_INFO(bond).agg_select_timer ? 1 : 0;
243}
244
245/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 * __get_link_speed - get a port's speed
247 * @port: the port we're looking at
248 *
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800249 * Return @port's speed in 802.3ad enum format. i.e. one of:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 * 0,
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800251 * %AD_LINK_SPEED_10MBPS,
252 * %AD_LINK_SPEED_100MBPS,
253 * %AD_LINK_SPEED_1000MBPS,
Jianhua Xie424c3232014-11-19 16:48:59 +0800254 * %AD_LINK_SPEED_2500MBPS,
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800255 * %AD_LINK_SPEED_10000MBPS
Jianhua Xie424c3232014-11-19 16:48:59 +0800256 * %AD_LINK_SPEED_20000MBPS
257 * %AD_LINK_SPEED_40000MBPS
258 * %AD_LINK_SPEED_56000MBPS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 */
260static u16 __get_link_speed(struct port *port)
261{
262 struct slave *slave = port->slave;
263 u16 speed;
264
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100265 /* this if covers only a special case: when the configuration starts
266 * with link down, it sets the speed to 0.
267 * This is done in spite of the fact that the e100 driver reports 0
268 * to be compatible with MVT in the future.
269 */
Bandan Das7bfc4752010-10-16 20:19:59 +0000270 if (slave->link != BOND_LINK_UP)
Bandan Das128ea6c2010-10-16 20:19:58 +0000271 speed = 0;
Bandan Das7bfc4752010-10-16 20:19:59 +0000272 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 switch (slave->speed) {
274 case SPEED_10:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800275 speed = AD_LINK_SPEED_10MBPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 break;
277
278 case SPEED_100:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800279 speed = AD_LINK_SPEED_100MBPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 break;
281
282 case SPEED_1000:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800283 speed = AD_LINK_SPEED_1000MBPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 break;
285
Jianhua Xie424c3232014-11-19 16:48:59 +0800286 case SPEED_2500:
287 speed = AD_LINK_SPEED_2500MBPS;
288 break;
289
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700290 case SPEED_10000:
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800291 speed = AD_LINK_SPEED_10000MBPS;
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700292 break;
293
Jianhua Xie424c3232014-11-19 16:48:59 +0800294 case SPEED_20000:
295 speed = AD_LINK_SPEED_20000MBPS;
296 break;
297
298 case SPEED_40000:
299 speed = AD_LINK_SPEED_40000MBPS;
300 break;
301
302 case SPEED_56000:
303 speed = AD_LINK_SPEED_56000MBPS;
304 break;
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 default:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100307 /* unknown speed value from ethtool. shouldn't happen */
308 speed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 break;
310 }
311 }
312
Veaceslav Falicod4471f52014-07-15 19:36:00 +0200313 netdev_dbg(slave->bond->dev, "Port %d Received link speed %d update from adapter\n",
314 port->actor_port_number, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return speed;
316}
317
318/**
319 * __get_duplex - get a port's duplex
320 * @port: the port we're looking at
321 *
322 * Return @port's duplex in 802.3ad bitmask format. i.e.:
323 * 0x01 if in full duplex
324 * 0x00 otherwise
325 */
326static u8 __get_duplex(struct port *port)
327{
328 struct slave *slave = port->slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 u8 retval;
330
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100331 /* handling a special case: when the configuration starts with
332 * link down, it sets the duplex to 0.
333 */
Nikolay Aleksandrov547942c2014-09-15 17:19:34 +0200334 if (slave->link != BOND_LINK_UP) {
Bandan Das128ea6c2010-10-16 20:19:58 +0000335 retval = 0x0;
Nikolay Aleksandrov547942c2014-09-15 17:19:34 +0200336 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 switch (slave->duplex) {
338 case DUPLEX_FULL:
Bandan Das128ea6c2010-10-16 20:19:58 +0000339 retval = 0x1;
Veaceslav Falicod4471f52014-07-15 19:36:00 +0200340 netdev_dbg(slave->bond->dev, "Port %d Received status full duplex update from adapter\n",
341 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 break;
343 case DUPLEX_HALF:
344 default:
Bandan Das128ea6c2010-10-16 20:19:58 +0000345 retval = 0x0;
Veaceslav Falicod4471f52014-07-15 19:36:00 +0200346 netdev_dbg(slave->bond->dev, "Port %d Received status NOT full duplex update from adapter\n",
347 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 break;
349 }
350 }
351 return retval;
352}
353
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100354/* Conversions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356/**
357 * __ad_timer_to_ticks - convert a given timer type to AD module ticks
358 * @timer_type: which timer to operate
359 * @par: timer parameter. see below
360 *
361 * If @timer_type is %current_while_timer, @par indicates long/short timer.
362 * If @timer_type is %periodic_timer, @par is one of %FAST_PERIODIC_TIME,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100363 * %SLOW_PERIODIC_TIME.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
365static u16 __ad_timer_to_ticks(u16 timer_type, u16 par)
366{
Bandan Das128ea6c2010-10-16 20:19:58 +0000367 u16 retval = 0; /* to silence the compiler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 switch (timer_type) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100370 case AD_CURRENT_WHILE_TIMER: /* for rx machine usage */
Bandan Das7bfc4752010-10-16 20:19:59 +0000371 if (par)
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100372 retval = (AD_SHORT_TIMEOUT_TIME*ad_ticks_per_sec);
Bandan Das7bfc4752010-10-16 20:19:59 +0000373 else
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100374 retval = (AD_LONG_TIMEOUT_TIME*ad_ticks_per_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100376 case AD_ACTOR_CHURN_TIMER: /* for local churn machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 retval = (AD_CHURN_DETECTION_TIME*ad_ticks_per_sec);
378 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100379 case AD_PERIODIC_TIMER: /* for periodic machine */
380 retval = (par*ad_ticks_per_sec); /* long timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100382 case AD_PARTNER_CHURN_TIMER: /* for remote churn machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 retval = (AD_CHURN_DETECTION_TIME*ad_ticks_per_sec);
384 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100385 case AD_WAIT_WHILE_TIMER: /* for selection machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 retval = (AD_AGGREGATE_WAIT_TIME*ad_ticks_per_sec);
387 break;
388 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return retval;
391}
392
393
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100394/* ================= ad_rx_machine helper functions ================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396/**
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000397 * __choose_matched - update a port's matched variable from a received lacpdu
398 * @lacpdu: the lacpdu we've received
399 * @port: the port we're looking at
400 *
401 * Update the value of the matched variable, using parameter values from a
402 * newly received lacpdu. Parameter values for the partner carried in the
403 * received PDU are compared with the corresponding operational parameter
404 * values for the actor. Matched is set to TRUE if all of these parameters
405 * match and the PDU parameter partner_state.aggregation has the same value as
406 * actor_oper_port_state.aggregation and lacp will actively maintain the link
407 * in the aggregation. Matched is also set to TRUE if the value of
408 * actor_state.aggregation in the received PDU is set to FALSE, i.e., indicates
409 * an individual link and lacp will actively maintain the link. Otherwise,
410 * matched is set to FALSE. LACP is considered to be actively maintaining the
411 * link if either the PDU's actor_state.lacp_activity variable is TRUE or both
412 * the actor's actor_oper_port_state.lacp_activity and the PDU's
413 * partner_state.lacp_activity variables are TRUE.
414 *
415 * Note: the AD_PORT_MATCHED "variable" is not specified by 802.3ad; it is
416 * used here to implement the language from 802.3ad 43.4.9 that requires
417 * recordPDU to "match" the LACPDU parameters to the stored values.
418 */
419static void __choose_matched(struct lacpdu *lacpdu, struct port *port)
420{
dingtianhong815117a2014-01-02 09:12:54 +0800421 /* check if all parameters are alike
422 * or this is individual link(aggregation == FALSE)
423 * then update the state machine Matched variable.
424 */
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000425 if (((ntohs(lacpdu->partner_port) == port->actor_port_number) &&
426 (ntohs(lacpdu->partner_port_priority) == port->actor_port_priority) &&
dingtianhong815117a2014-01-02 09:12:54 +0800427 MAC_ADDRESS_EQUAL(&(lacpdu->partner_system), &(port->actor_system)) &&
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000428 (ntohs(lacpdu->partner_system_priority) == port->actor_system_priority) &&
429 (ntohs(lacpdu->partner_key) == port->actor_oper_port_key) &&
430 ((lacpdu->partner_state & AD_STATE_AGGREGATION) == (port->actor_oper_port_state & AD_STATE_AGGREGATION))) ||
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000431 ((lacpdu->actor_state & AD_STATE_AGGREGATION) == 0)
432 ) {
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000433 port->sm_vars |= AD_PORT_MATCHED;
434 } else {
435 port->sm_vars &= ~AD_PORT_MATCHED;
436 }
437}
438
439/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 * __record_pdu - record parameters from a received lacpdu
441 * @lacpdu: the lacpdu we've received
442 * @port: the port we're looking at
443 *
444 * Record the parameter values for the Actor carried in a received lacpdu as
445 * the current partner operational parameter values and sets
446 * actor_oper_port_state.defaulted to FALSE.
447 */
448static void __record_pdu(struct lacpdu *lacpdu, struct port *port)
449{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (lacpdu && port) {
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800451 struct port_params *partner = &port->partner_oper;
452
Jay Vosburgh2d6682d2009-11-13 13:13:01 +0000453 __choose_matched(lacpdu, port);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100454 /* record the new parameter values for the partner
455 * operational
456 */
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800457 partner->port_number = ntohs(lacpdu->actor_port);
458 partner->port_priority = ntohs(lacpdu->actor_port_priority);
459 partner->system = lacpdu->actor_system;
460 partner->system_priority = ntohs(lacpdu->actor_system_priority);
461 partner->key = ntohs(lacpdu->actor_key);
462 partner->port_state = lacpdu->actor_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100464 /* set actor_oper_port_state.defaulted to FALSE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 port->actor_oper_port_state &= ~AD_STATE_DEFAULTED;
466
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100467 /* set the partner sync. to on if the partner is sync,
468 * and the port is matched
469 */
Wilson Kok63b46242015-01-26 01:16:59 -0500470 if ((port->sm_vars & AD_PORT_MATCHED) &&
471 (lacpdu->actor_state & AD_STATE_SYNCHRONIZATION)) {
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800472 partner->port_state |= AD_STATE_SYNCHRONIZATION;
Wilson Kok63b46242015-01-26 01:16:59 -0500473 pr_debug("%s partner sync=1\n", port->slave->dev->name);
474 } else {
Holger Eitzenbergerb99d6ba2008-12-17 19:08:14 -0800475 partner->port_state &= ~AD_STATE_SYNCHRONIZATION;
Wilson Kok63b46242015-01-26 01:16:59 -0500476 pr_debug("%s partner sync=0\n", port->slave->dev->name);
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
479}
480
481/**
482 * __record_default - record default parameters
483 * @port: the port we're looking at
484 *
485 * This function records the default parameter values for the partner carried
486 * in the Partner Admin parameters as the current partner operational parameter
487 * values and sets actor_oper_port_state.defaulted to TRUE.
488 */
489static void __record_default(struct port *port)
490{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (port) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100492 /* record the partner admin parameters */
Holger Eitzenberger5eefd1a2008-12-17 19:08:46 -0800493 memcpy(&port->partner_oper, &port->partner_admin,
494 sizeof(struct port_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100496 /* set actor_oper_port_state.defaulted to true */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 port->actor_oper_port_state |= AD_STATE_DEFAULTED;
498 }
499}
500
501/**
502 * __update_selected - update a port's Selected variable from a received lacpdu
503 * @lacpdu: the lacpdu we've received
504 * @port: the port we're looking at
505 *
506 * Update the value of the selected variable, using parameter values from a
507 * newly received lacpdu. The parameter values for the Actor carried in the
508 * received PDU are compared with the corresponding operational parameter
509 * values for the ports partner. If one or more of the comparisons shows that
510 * the value(s) received in the PDU differ from the current operational values,
511 * then selected is set to FALSE and actor_oper_port_state.synchronization is
512 * set to out_of_sync. Otherwise, selected remains unchanged.
513 */
514static void __update_selected(struct lacpdu *lacpdu, struct port *port)
515{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (lacpdu && port) {
Holger Eitzenbergerce6a49a2008-12-17 19:13:07 -0800517 const struct port_params *partner = &port->partner_oper;
518
dingtianhong815117a2014-01-02 09:12:54 +0800519 /* check if any parameter is different then
520 * update the state machine selected variable.
521 */
Joe Perches8e95a202009-12-03 07:58:21 +0000522 if (ntohs(lacpdu->actor_port) != partner->port_number ||
523 ntohs(lacpdu->actor_port_priority) != partner->port_priority ||
dingtianhong815117a2014-01-02 09:12:54 +0800524 !MAC_ADDRESS_EQUAL(&lacpdu->actor_system, &partner->system) ||
Joe Perches8e95a202009-12-03 07:58:21 +0000525 ntohs(lacpdu->actor_system_priority) != partner->system_priority ||
526 ntohs(lacpdu->actor_key) != partner->key ||
527 (lacpdu->actor_state & AD_STATE_AGGREGATION) != (partner->port_state & AD_STATE_AGGREGATION)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 port->sm_vars &= ~AD_PORT_SELECTED;
529 }
530 }
531}
532
533/**
534 * __update_default_selected - update a port's Selected variable from Partner
535 * @port: the port we're looking at
536 *
537 * This function updates the value of the selected variable, using the partner
538 * administrative parameter values. The administrative values are compared with
539 * the corresponding operational parameter values for the partner. If one or
540 * more of the comparisons shows that the administrative value(s) differ from
541 * the current operational values, then Selected is set to FALSE and
542 * actor_oper_port_state.synchronization is set to OUT_OF_SYNC. Otherwise,
543 * Selected remains unchanged.
544 */
545static void __update_default_selected(struct port *port)
546{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (port) {
Holger Eitzenberger3c520652008-12-17 19:13:27 -0800548 const struct port_params *admin = &port->partner_admin;
549 const struct port_params *oper = &port->partner_oper;
550
dingtianhong815117a2014-01-02 09:12:54 +0800551 /* check if any parameter is different then
552 * update the state machine selected variable.
553 */
Joe Perches8e95a202009-12-03 07:58:21 +0000554 if (admin->port_number != oper->port_number ||
555 admin->port_priority != oper->port_priority ||
dingtianhong815117a2014-01-02 09:12:54 +0800556 !MAC_ADDRESS_EQUAL(&admin->system, &oper->system) ||
Joe Perches8e95a202009-12-03 07:58:21 +0000557 admin->system_priority != oper->system_priority ||
558 admin->key != oper->key ||
559 (admin->port_state & AD_STATE_AGGREGATION)
Holger Eitzenberger3c520652008-12-17 19:13:27 -0800560 != (oper->port_state & AD_STATE_AGGREGATION)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 port->sm_vars &= ~AD_PORT_SELECTED;
562 }
563 }
564}
565
566/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 * __update_ntt - update a port's ntt variable from a received lacpdu
568 * @lacpdu: the lacpdu we've received
569 * @port: the port we're looking at
570 *
571 * Updates the value of the ntt variable, using parameter values from a newly
572 * received lacpdu. The parameter values for the partner carried in the
573 * received PDU are compared with the corresponding operational parameter
574 * values for the Actor. If one or more of the comparisons shows that the
575 * value(s) received in the PDU differ from the current operational values,
576 * then ntt is set to TRUE. Otherwise, ntt remains unchanged.
577 */
578static void __update_ntt(struct lacpdu *lacpdu, struct port *port)
579{
dingtianhong815117a2014-01-02 09:12:54 +0800580 /* validate lacpdu and port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (lacpdu && port) {
dingtianhong815117a2014-01-02 09:12:54 +0800582 /* check if any parameter is different then
583 * update the port->ntt.
584 */
Jay Vosburgh89cc76f2006-09-22 21:55:32 -0700585 if ((ntohs(lacpdu->partner_port) != port->actor_port_number) ||
586 (ntohs(lacpdu->partner_port_priority) != port->actor_port_priority) ||
dingtianhong815117a2014-01-02 09:12:54 +0800587 !MAC_ADDRESS_EQUAL(&(lacpdu->partner_system), &(port->actor_system)) ||
Jay Vosburgh89cc76f2006-09-22 21:55:32 -0700588 (ntohs(lacpdu->partner_system_priority) != port->actor_system_priority) ||
589 (ntohs(lacpdu->partner_key) != port->actor_oper_port_key) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 ((lacpdu->partner_state & AD_STATE_LACP_ACTIVITY) != (port->actor_oper_port_state & AD_STATE_LACP_ACTIVITY)) ||
591 ((lacpdu->partner_state & AD_STATE_LACP_TIMEOUT) != (port->actor_oper_port_state & AD_STATE_LACP_TIMEOUT)) ||
592 ((lacpdu->partner_state & AD_STATE_SYNCHRONIZATION) != (port->actor_oper_port_state & AD_STATE_SYNCHRONIZATION)) ||
593 ((lacpdu->partner_state & AD_STATE_AGGREGATION) != (port->actor_oper_port_state & AD_STATE_AGGREGATION))
594 ) {
Holger Eitzenbergerd238d452008-12-26 11:18:15 -0800595 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597 }
598}
599
600/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 * __agg_ports_are_ready - check if all ports in an aggregator are ready
602 * @aggregator: the aggregator we're looking at
603 *
604 */
605static int __agg_ports_are_ready(struct aggregator *aggregator)
606{
607 struct port *port;
608 int retval = 1;
609
610 if (aggregator) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100611 /* scan all ports in this aggregator to verfy if they are
612 * all ready.
613 */
Bandan Das128ea6c2010-10-16 20:19:58 +0000614 for (port = aggregator->lag_ports;
615 port;
616 port = port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (!(port->sm_vars & AD_PORT_READY_N)) {
618 retval = 0;
619 break;
620 }
621 }
622 }
623
624 return retval;
625}
626
627/**
628 * __set_agg_ports_ready - set value of Ready bit in all ports of an aggregator
629 * @aggregator: the aggregator we're looking at
630 * @val: Should the ports' ready bit be set on or off
631 *
632 */
633static void __set_agg_ports_ready(struct aggregator *aggregator, int val)
634{
635 struct port *port;
636
Bandan Das128ea6c2010-10-16 20:19:58 +0000637 for (port = aggregator->lag_ports; port;
638 port = port->next_port_in_aggregator) {
Bandan Das7bfc4752010-10-16 20:19:59 +0000639 if (val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 port->sm_vars |= AD_PORT_READY;
Bandan Das7bfc4752010-10-16 20:19:59 +0000641 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 port->sm_vars &= ~AD_PORT_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
644}
645
646/**
647 * __get_agg_bandwidth - get the total bandwidth of an aggregator
648 * @aggregator: the aggregator we're looking at
649 *
650 */
651static u32 __get_agg_bandwidth(struct aggregator *aggregator)
652{
Bandan Das128ea6c2010-10-16 20:19:58 +0000653 u32 bandwidth = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 if (aggregator->num_of_ports) {
David Decotigny65cce192011-04-13 15:22:30 +0000656 switch (__get_link_speed(aggregator->lag_ports)) {
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800657 case AD_LINK_SPEED_1MBPS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 bandwidth = aggregator->num_of_ports;
659 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800660 case AD_LINK_SPEED_10MBPS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 bandwidth = aggregator->num_of_ports * 10;
662 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800663 case AD_LINK_SPEED_100MBPS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 bandwidth = aggregator->num_of_ports * 100;
665 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800666 case AD_LINK_SPEED_1000MBPS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 bandwidth = aggregator->num_of_ports * 1000;
668 break;
Jianhua Xie424c3232014-11-19 16:48:59 +0800669 case AD_LINK_SPEED_2500MBPS:
670 bandwidth = aggregator->num_of_ports * 2500;
671 break;
Jianhua Xiecb8dda92014-11-19 16:48:58 +0800672 case AD_LINK_SPEED_10000MBPS:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700673 bandwidth = aggregator->num_of_ports * 10000;
674 break;
Jianhua Xie424c3232014-11-19 16:48:59 +0800675 case AD_LINK_SPEED_20000MBPS:
676 bandwidth = aggregator->num_of_ports * 20000;
677 break;
678 case AD_LINK_SPEED_40000MBPS:
679 bandwidth = aggregator->num_of_ports * 40000;
680 break;
681 case AD_LINK_SPEED_56000MBPS:
682 bandwidth = aggregator->num_of_ports * 56000;
683 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 default:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100685 bandwidth = 0; /* to silence the compiler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687 }
688 return bandwidth;
689}
690
691/**
692 * __get_active_agg - get the current active aggregator
693 * @aggregator: the aggregator we're looking at
Veaceslav Falico49b76242014-01-10 11:59:45 +0100694 *
695 * Caller must hold RCU lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 */
697static struct aggregator *__get_active_agg(struct aggregator *aggregator)
698{
Veaceslav Falico19177e72013-09-27 16:12:00 +0200699 struct bonding *bond = aggregator->slave->bond;
700 struct list_head *iter;
701 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
dingtianhongbe79bd02013-12-13 10:20:12 +0800703 bond_for_each_slave_rcu(bond, slave, iter)
dingtianhong3fdddd82014-05-12 15:08:43 +0800704 if (SLAVE_AD_INFO(slave)->aggregator.is_active)
705 return &(SLAVE_AD_INFO(slave)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Veaceslav Falico19177e72013-09-27 16:12:00 +0200707 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
710/**
711 * __update_lacpdu_from_port - update a port's lacpdu fields
712 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 */
714static inline void __update_lacpdu_from_port(struct port *port)
715{
716 struct lacpdu *lacpdu = &port->lacpdu;
Holger Eitzenberger3b5b35d2008-12-17 19:13:53 -0800717 const struct port_params *partner = &port->partner_oper;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100719 /* update current actual Actor parameters
720 * lacpdu->subtype initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 * lacpdu->version_number initialized
722 * lacpdu->tlv_type_actor_info initialized
723 * lacpdu->actor_information_length initialized
724 */
725
Al Virod3bb52b2007-08-22 20:06:58 -0400726 lacpdu->actor_system_priority = htons(port->actor_system_priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 lacpdu->actor_system = port->actor_system;
Al Virod3bb52b2007-08-22 20:06:58 -0400728 lacpdu->actor_key = htons(port->actor_oper_port_key);
729 lacpdu->actor_port_priority = htons(port->actor_port_priority);
730 lacpdu->actor_port = htons(port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 lacpdu->actor_state = port->actor_oper_port_state;
Wilson Kok63b46242015-01-26 01:16:59 -0500732 pr_debug("update lacpdu: %s, actor port state %x\n",
733 port->slave->dev->name, port->actor_oper_port_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 /* lacpdu->reserved_3_1 initialized
736 * lacpdu->tlv_type_partner_info initialized
737 * lacpdu->partner_information_length initialized
738 */
739
Holger Eitzenberger3b5b35d2008-12-17 19:13:53 -0800740 lacpdu->partner_system_priority = htons(partner->system_priority);
741 lacpdu->partner_system = partner->system;
742 lacpdu->partner_key = htons(partner->key);
743 lacpdu->partner_port_priority = htons(partner->port_priority);
744 lacpdu->partner_port = htons(partner->port_number);
745 lacpdu->partner_state = partner->port_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 /* lacpdu->reserved_3_2 initialized
748 * lacpdu->tlv_type_collector_info initialized
749 * lacpdu->collector_information_length initialized
750 * collector_max_delay initialized
751 * reserved_12[12] initialized
752 * tlv_type_terminator initialized
753 * terminator_length initialized
754 * reserved_50[50] initialized
755 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100758/* ================= main 802.3ad protocol code ========================= */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760/**
761 * ad_lacpdu_send - send out a lacpdu packet on a given port
762 * @port: the port we're looking at
763 *
764 * Returns: 0 on success
765 * < 0 on error
766 */
767static int ad_lacpdu_send(struct port *port)
768{
769 struct slave *slave = port->slave;
770 struct sk_buff *skb;
771 struct lacpdu_header *lacpdu_header;
772 int length = sizeof(struct lacpdu_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 skb = dev_alloc_skb(length);
Bandan Das7bfc4752010-10-16 20:19:59 +0000775 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 skb->dev = slave->dev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700779 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700780 skb->network_header = skb->mac_header + ETH_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 skb->protocol = PKT_TYPE_LACPDU;
782 skb->priority = TC_PRIO_CONTROL;
783
784 lacpdu_header = (struct lacpdu_header *)skb_put(skb, length);
785
Joe Perchesada0f862014-02-15 16:02:17 -0800786 ether_addr_copy(lacpdu_header->hdr.h_dest, lacpdu_mcast_addr);
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400787 /* Note: source address is set to be the member's PERMANENT address,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100788 * because we use it to identify loopback lacpdus in receive.
789 */
Joe Perchesada0f862014-02-15 16:02:17 -0800790 ether_addr_copy(lacpdu_header->hdr.h_source, slave->perm_hwaddr);
Holger Eitzenbergere7271492008-12-26 13:41:53 -0800791 lacpdu_header->hdr.h_proto = PKT_TYPE_LACPDU;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100793 lacpdu_header->lacpdu = port->lacpdu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 dev_queue_xmit(skb);
796
797 return 0;
798}
799
800/**
801 * ad_marker_send - send marker information/response on a given port
802 * @port: the port we're looking at
803 * @marker: marker data to send
804 *
805 * Returns: 0 on success
806 * < 0 on error
807 */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700808static int ad_marker_send(struct port *port, struct bond_marker *marker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 struct slave *slave = port->slave;
811 struct sk_buff *skb;
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700812 struct bond_marker_header *marker_header;
813 int length = sizeof(struct bond_marker_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 skb = dev_alloc_skb(length + 16);
Bandan Das7bfc4752010-10-16 20:19:59 +0000816 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 skb_reserve(skb, 16);
820
821 skb->dev = slave->dev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700822 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700823 skb->network_header = skb->mac_header + ETH_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 skb->protocol = PKT_TYPE_LACPDU;
825
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700826 marker_header = (struct bond_marker_header *)skb_put(skb, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Joe Perchesada0f862014-02-15 16:02:17 -0800828 ether_addr_copy(marker_header->hdr.h_dest, lacpdu_mcast_addr);
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400829 /* Note: source address is set to be the member's PERMANENT address,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100830 * because we use it to identify loopback MARKERs in receive.
831 */
Joe Perchesada0f862014-02-15 16:02:17 -0800832 ether_addr_copy(marker_header->hdr.h_source, slave->perm_hwaddr);
Holger Eitzenbergere7271492008-12-26 13:41:53 -0800833 marker_header->hdr.h_proto = PKT_TYPE_LACPDU;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100835 marker_header->marker = *marker;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 dev_queue_xmit(skb);
838
839 return 0;
840}
841
842/**
843 * ad_mux_machine - handle a port's mux state machine
844 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -0700845 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 */
Mahesh Bandewaree637712014-10-04 17:45:01 -0700847static void ad_mux_machine(struct port *port, bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
849 mux_states_t last_state;
850
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100851 /* keep current State Machine state to compare later if it was
852 * changed
853 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 last_state = port->sm_mux_state;
855
856 if (port->sm_vars & AD_PORT_BEGIN) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100857 port->sm_mux_state = AD_MUX_DETACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 } else {
859 switch (port->sm_mux_state) {
860 case AD_MUX_DETACHED:
Bandan Das7bfc4752010-10-16 20:19:59 +0000861 if ((port->sm_vars & AD_PORT_SELECTED)
862 || (port->sm_vars & AD_PORT_STANDBY))
863 /* if SELECTED or STANDBY */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100864 port->sm_mux_state = AD_MUX_WAITING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 break;
866 case AD_MUX_WAITING:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100867 /* if SELECTED == FALSE return to DETACH state */
868 if (!(port->sm_vars & AD_PORT_SELECTED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 port->sm_vars &= ~AD_PORT_READY_N;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100870 /* in order to withhold the Selection Logic to
871 * check all ports READY_N value every callback
872 * cycle to update ready variable, we check
873 * READY_N and update READY here
874 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100876 port->sm_mux_state = AD_MUX_DETACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 break;
878 }
879
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100880 /* check if the wait_while_timer expired */
Bandan Das7bfc4752010-10-16 20:19:59 +0000881 if (port->sm_mux_timer_counter
882 && !(--port->sm_mux_timer_counter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 port->sm_vars |= AD_PORT_READY_N;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100885 /* in order to withhold the selection logic to check
886 * all ports READY_N value every callback cycle to
887 * update ready variable, we check READY_N and update
888 * READY here
889 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
891
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100892 /* if the wait_while_timer expired, and the port is
893 * in READY state, move to ATTACHED state
894 */
Bandan Das7bfc4752010-10-16 20:19:59 +0000895 if ((port->sm_vars & AD_PORT_READY)
896 && !port->sm_mux_timer_counter)
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100897 port->sm_mux_state = AD_MUX_ATTACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 break;
899 case AD_MUX_ATTACHED:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100900 /* check also if agg_select_timer expired (so the
901 * edable port will take place only after this timer)
902 */
903 if ((port->sm_vars & AD_PORT_SELECTED) &&
904 (port->partner_oper.port_state & AD_STATE_SYNCHRONIZATION) &&
905 !__check_agg_selection_timer(port)) {
Wilson Kok63b46242015-01-26 01:16:59 -0500906 if (port->aggregator->is_active)
907 port->sm_mux_state =
908 AD_MUX_COLLECTING_DISTRIBUTING;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100909 } else if (!(port->sm_vars & AD_PORT_SELECTED) ||
910 (port->sm_vars & AD_PORT_STANDBY)) {
911 /* if UNSELECTED or STANDBY */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 port->sm_vars &= ~AD_PORT_READY_N;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100913 /* in order to withhold the selection logic to
914 * check all ports READY_N value every callback
915 * cycle to update ready variable, we check
916 * READY_N and update READY here
917 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100919 port->sm_mux_state = AD_MUX_DETACHED;
Wilson Kok63b46242015-01-26 01:16:59 -0500920 } else if (port->aggregator->is_active) {
921 port->actor_oper_port_state |=
922 AD_STATE_SYNCHRONIZATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
924 break;
925 case AD_MUX_COLLECTING_DISTRIBUTING:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100926 if (!(port->sm_vars & AD_PORT_SELECTED) ||
927 (port->sm_vars & AD_PORT_STANDBY) ||
Wilson Kok63b46242015-01-26 01:16:59 -0500928 !(port->partner_oper.port_state & AD_STATE_SYNCHRONIZATION) ||
929 !(port->actor_oper_port_state & AD_STATE_SYNCHRONIZATION)) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100930 port->sm_mux_state = AD_MUX_ATTACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100932 /* if port state hasn't changed make
933 * sure that a collecting distributing
934 * port in an active aggregator is enabled
935 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 if (port->aggregator &&
937 port->aggregator->is_active &&
938 !__port_is_enabled(port)) {
939
940 __enable_port(port);
941 }
942 }
943 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100944 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 break;
946 }
947 }
948
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100949 /* check if the state machine was changed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (port->sm_mux_state != last_state) {
Wilson Kok63b46242015-01-26 01:16:59 -0500951 pr_debug("Mux Machine: Port=%d (%s), Last State=%d, Curr State=%d\n",
952 port->actor_port_number,
953 port->slave->dev->name,
954 last_state,
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800955 port->sm_mux_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 switch (port->sm_mux_state) {
957 case AD_MUX_DETACHED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 port->actor_oper_port_state &= ~AD_STATE_SYNCHRONIZATION;
Mahesh Bandewaree637712014-10-04 17:45:01 -0700959 ad_disable_collecting_distributing(port,
960 update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 port->actor_oper_port_state &= ~AD_STATE_COLLECTING;
962 port->actor_oper_port_state &= ~AD_STATE_DISTRIBUTING;
Holger Eitzenbergerd238d452008-12-26 11:18:15 -0800963 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 break;
965 case AD_MUX_WAITING:
966 port->sm_mux_timer_counter = __ad_timer_to_ticks(AD_WAIT_WHILE_TIMER, 0);
967 break;
968 case AD_MUX_ATTACHED:
Wilson Kok63b46242015-01-26 01:16:59 -0500969 if (port->aggregator->is_active)
970 port->actor_oper_port_state |=
971 AD_STATE_SYNCHRONIZATION;
972 else
973 port->actor_oper_port_state &=
974 ~AD_STATE_SYNCHRONIZATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 port->actor_oper_port_state &= ~AD_STATE_COLLECTING;
976 port->actor_oper_port_state &= ~AD_STATE_DISTRIBUTING;
Mahesh Bandewaree637712014-10-04 17:45:01 -0700977 ad_disable_collecting_distributing(port,
978 update_slave_arr);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -0800979 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 break;
981 case AD_MUX_COLLECTING_DISTRIBUTING:
982 port->actor_oper_port_state |= AD_STATE_COLLECTING;
983 port->actor_oper_port_state |= AD_STATE_DISTRIBUTING;
Wilson Kok63b46242015-01-26 01:16:59 -0500984 port->actor_oper_port_state |= AD_STATE_SYNCHRONIZATION;
Mahesh Bandewaree637712014-10-04 17:45:01 -0700985 ad_enable_collecting_distributing(port,
986 update_slave_arr);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -0800987 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +0100989 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 break;
991 }
992 }
993}
994
995/**
996 * ad_rx_machine - handle a port's rx State Machine
997 * @lacpdu: the lacpdu we've received
998 * @port: the port we're looking at
999 *
1000 * If lacpdu arrived, stop previous timer (if exists) and set the next state as
1001 * CURRENT. If timer expired set the state machine in the proper state.
1002 * In other cases, this function checks if we need to switch to other state.
1003 */
1004static void ad_rx_machine(struct lacpdu *lacpdu, struct port *port)
1005{
1006 rx_states_t last_state;
1007
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001008 /* keep current State Machine state to compare later if it was
1009 * changed
1010 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 last_state = port->sm_rx_state;
1012
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001013 /* check if state machine should change state */
1014
1015 /* first, check if port was reinitialized */
Bandan Das7bfc4752010-10-16 20:19:59 +00001016 if (port->sm_vars & AD_PORT_BEGIN)
Bandan Das7bfc4752010-10-16 20:19:59 +00001017 port->sm_rx_state = AD_RX_INITIALIZE;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001018 /* check if port is not enabled */
Bandan Das7bfc4752010-10-16 20:19:59 +00001019 else if (!(port->sm_vars & AD_PORT_BEGIN)
1020 && !port->is_enabled && !(port->sm_vars & AD_PORT_MOVED))
Bandan Das7bfc4752010-10-16 20:19:59 +00001021 port->sm_rx_state = AD_RX_PORT_DISABLED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001022 /* check if new lacpdu arrived */
1023 else if (lacpdu && ((port->sm_rx_state == AD_RX_EXPIRED) ||
1024 (port->sm_rx_state == AD_RX_DEFAULTED) ||
1025 (port->sm_rx_state == AD_RX_CURRENT))) {
1026 port->sm_rx_timer_counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 port->sm_rx_state = AD_RX_CURRENT;
1028 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001029 /* if timer is on, and if it is expired */
1030 if (port->sm_rx_timer_counter &&
1031 !(--port->sm_rx_timer_counter)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 switch (port->sm_rx_state) {
1033 case AD_RX_EXPIRED:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001034 port->sm_rx_state = AD_RX_DEFAULTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 break;
1036 case AD_RX_CURRENT:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001037 port->sm_rx_state = AD_RX_EXPIRED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001039 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 break;
1041 }
1042 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001043 /* if no lacpdu arrived and no timer is on */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 switch (port->sm_rx_state) {
1045 case AD_RX_PORT_DISABLED:
Bandan Das7bfc4752010-10-16 20:19:59 +00001046 if (port->sm_vars & AD_PORT_MOVED)
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001047 port->sm_rx_state = AD_RX_INITIALIZE;
Bandan Das7bfc4752010-10-16 20:19:59 +00001048 else if (port->is_enabled
1049 && (port->sm_vars
1050 & AD_PORT_LACP_ENABLED))
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001051 port->sm_rx_state = AD_RX_EXPIRED;
Bandan Das7bfc4752010-10-16 20:19:59 +00001052 else if (port->is_enabled
1053 && ((port->sm_vars
1054 & AD_PORT_LACP_ENABLED) == 0))
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001055 port->sm_rx_state = AD_RX_LACP_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001057 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 break;
1059
1060 }
1061 }
1062 }
1063
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001064 /* check if the State machine was changed or new lacpdu arrived */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if ((port->sm_rx_state != last_state) || (lacpdu)) {
Wilson Kok63b46242015-01-26 01:16:59 -05001066 pr_debug("Rx Machine: Port=%d (%s), Last State=%d, Curr State=%d\n",
1067 port->actor_port_number,
1068 port->slave->dev->name,
1069 last_state,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001070 port->sm_rx_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 switch (port->sm_rx_state) {
1072 case AD_RX_INITIALIZE:
Jianhua Xiecb8dda92014-11-19 16:48:58 +08001073 if (!(port->actor_oper_port_key & AD_DUPLEX_KEY_MASKS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 port->sm_vars &= ~AD_PORT_LACP_ENABLED;
Bandan Das7bfc4752010-10-16 20:19:59 +00001075 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 port->sm_vars |= AD_PORT_LACP_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 port->sm_vars &= ~AD_PORT_SELECTED;
1078 __record_default(port);
1079 port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
1080 port->sm_vars &= ~AD_PORT_MOVED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001081 port->sm_rx_state = AD_RX_PORT_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001083 /* Fall Through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 case AD_RX_PORT_DISABLED:
1085 port->sm_vars &= ~AD_PORT_MATCHED;
1086 break;
1087 case AD_RX_LACP_DISABLED:
1088 port->sm_vars &= ~AD_PORT_SELECTED;
1089 __record_default(port);
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001090 port->partner_oper.port_state &= ~AD_STATE_AGGREGATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 port->sm_vars |= AD_PORT_MATCHED;
1092 port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
1093 break;
1094 case AD_RX_EXPIRED:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001095 /* Reset of the Synchronization flag (Standard 43.4.12)
1096 * This reset cause to disable this port in the
1097 * COLLECTING_DISTRIBUTING state of the mux machine in
1098 * case of EXPIRED even if LINK_DOWN didn't arrive for
1099 * the port.
1100 */
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001101 port->partner_oper.port_state &= ~AD_STATE_SYNCHRONIZATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 port->sm_vars &= ~AD_PORT_MATCHED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001103 port->partner_oper.port_state |= AD_STATE_LACP_ACTIVITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 port->sm_rx_timer_counter = __ad_timer_to_ticks(AD_CURRENT_WHILE_TIMER, (u16)(AD_SHORT_TIMEOUT));
1105 port->actor_oper_port_state |= AD_STATE_EXPIRED;
1106 break;
1107 case AD_RX_DEFAULTED:
1108 __update_default_selected(port);
1109 __record_default(port);
1110 port->sm_vars |= AD_PORT_MATCHED;
1111 port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
1112 break;
1113 case AD_RX_CURRENT:
dingtianhong815117a2014-01-02 09:12:54 +08001114 /* detect loopback situation */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001115 if (MAC_ADDRESS_EQUAL(&(lacpdu->actor_system),
1116 &(port->actor_system))) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001117 netdev_err(port->slave->bond->dev, "An illegal loopback occurred on adapter (%s)\n"
Joe Perches90194262014-02-15 16:01:45 -08001118 "Check the configuration to verify that all adapters are connected to 802.3ad compliant switch ports\n",
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001119 port->slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 return;
1121 }
1122 __update_selected(lacpdu, port);
1123 __update_ntt(lacpdu, port);
1124 __record_pdu(lacpdu, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 port->sm_rx_timer_counter = __ad_timer_to_ticks(AD_CURRENT_WHILE_TIMER, (u16)(port->actor_oper_port_state & AD_STATE_LACP_TIMEOUT));
1126 port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001128 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 break;
1130 }
1131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
1134/**
1135 * ad_tx_machine - handle a port's tx state machine
1136 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 */
1138static void ad_tx_machine(struct port *port)
1139{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001140 /* check if tx timer expired, to verify that we do not send more than
1141 * 3 packets per second
1142 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 if (port->sm_tx_timer_counter && !(--port->sm_tx_timer_counter)) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001144 /* check if there is something to send */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 if (port->ntt && (port->sm_vars & AD_PORT_LACP_ENABLED)) {
1146 __update_lacpdu_from_port(port);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (ad_lacpdu_send(port) >= 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001149 pr_debug("Sent LACPDU on port %d\n",
1150 port->actor_port_number);
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001151
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001152 /* mark ntt as false, so it will not be sent
1153 * again until demanded
1154 */
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001155 port->ntt = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
1157 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001158 /* restart tx timer(to verify that we will not exceed
1159 * AD_MAX_TX_IN_SECOND
1160 */
1161 port->sm_tx_timer_counter = ad_ticks_per_sec/AD_MAX_TX_IN_SECOND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 }
1163}
1164
1165/**
1166 * ad_periodic_machine - handle a port's periodic state machine
1167 * @port: the port we're looking at
1168 *
1169 * Turn ntt flag on priodically to perform periodic transmission of lacpdu's.
1170 */
1171static void ad_periodic_machine(struct port *port)
1172{
1173 periodic_states_t last_state;
1174
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001175 /* keep current state machine state to compare later if it was changed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 last_state = port->sm_periodic_state;
1177
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001178 /* check if port was reinitialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (((port->sm_vars & AD_PORT_BEGIN) || !(port->sm_vars & AD_PORT_LACP_ENABLED) || !port->is_enabled) ||
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001180 (!(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 -07001181 ) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001182 port->sm_periodic_state = AD_NO_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001184 /* check if state machine should change state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 else if (port->sm_periodic_timer_counter) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001186 /* check if periodic state machine expired */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if (!(--port->sm_periodic_timer_counter)) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001188 /* if expired then do tx */
1189 port->sm_periodic_state = AD_PERIODIC_TX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 } else {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001191 /* If not expired, check if there is some new timeout
1192 * parameter from the partner state
1193 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 switch (port->sm_periodic_state) {
1195 case AD_FAST_PERIODIC:
Bandan Das7bfc4752010-10-16 20:19:59 +00001196 if (!(port->partner_oper.port_state
1197 & AD_STATE_LACP_TIMEOUT))
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001198 port->sm_periodic_state = AD_SLOW_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 break;
1200 case AD_SLOW_PERIODIC:
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001201 if ((port->partner_oper.port_state & AD_STATE_LACP_TIMEOUT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 port->sm_periodic_timer_counter = 0;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001203 port->sm_periodic_state = AD_PERIODIC_TX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 }
1205 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001206 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 break;
1208 }
1209 }
1210 } else {
1211 switch (port->sm_periodic_state) {
1212 case AD_NO_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001213 port->sm_periodic_state = AD_FAST_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 break;
1215 case AD_PERIODIC_TX:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001216 if (!(port->partner_oper.port_state &
1217 AD_STATE_LACP_TIMEOUT))
1218 port->sm_periodic_state = AD_SLOW_PERIODIC;
Bandan Das7bfc4752010-10-16 20:19:59 +00001219 else
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001220 port->sm_periodic_state = AD_FAST_PERIODIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001222 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 break;
1224 }
1225 }
1226
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001227 /* check if the state machine was changed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (port->sm_periodic_state != last_state) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001229 pr_debug("Periodic Machine: Port=%d, Last State=%d, Curr State=%d\n",
1230 port->actor_port_number, last_state,
1231 port->sm_periodic_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 switch (port->sm_periodic_state) {
1233 case AD_NO_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001234 port->sm_periodic_timer_counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 break;
1236 case AD_FAST_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001237 /* decrement 1 tick we lost in the PERIODIC_TX cycle */
1238 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 -07001239 break;
1240 case AD_SLOW_PERIODIC:
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001241 /* decrement 1 tick we lost in the PERIODIC_TX cycle */
1242 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 -07001243 break;
1244 case AD_PERIODIC_TX:
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001245 port->ntt = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 break;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001247 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 break;
1249 }
1250 }
1251}
1252
1253/**
1254 * ad_port_selection_logic - select aggregation groups
1255 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001256 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 *
1258 * Select aggregation groups, and assign each port for it's aggregetor. The
1259 * selection logic is called in the inititalization (after all the handshkes),
1260 * and after every lacpdu receive (if selected is off).
1261 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001262static void ad_port_selection_logic(struct port *port, bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
1264 struct aggregator *aggregator, *free_aggregator = NULL, *temp_aggregator;
1265 struct port *last_port = NULL, *curr_port;
Veaceslav Falico3e36bb72013-09-27 16:11:59 +02001266 struct list_head *iter;
1267 struct bonding *bond;
1268 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 int found = 0;
1270
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001271 /* if the port is already Selected, do nothing */
Bandan Das7bfc4752010-10-16 20:19:59 +00001272 if (port->sm_vars & AD_PORT_SELECTED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Veaceslav Falico3e36bb72013-09-27 16:11:59 +02001275 bond = __get_bond_by_port(port);
1276
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001277 /* if the port is connected to other aggregator, detach it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 if (port->aggregator) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001279 /* detach the port from its former aggregator */
Bandan Das128ea6c2010-10-16 20:19:58 +00001280 temp_aggregator = port->aggregator;
1281 for (curr_port = temp_aggregator->lag_ports; curr_port;
1282 last_port = curr_port,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001283 curr_port = curr_port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 if (curr_port == port) {
1285 temp_aggregator->num_of_ports--;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001286 /* if it is the first port attached to the
1287 * aggregator
1288 */
1289 if (!last_port) {
Bandan Das128ea6c2010-10-16 20:19:58 +00001290 temp_aggregator->lag_ports =
1291 port->next_port_in_aggregator;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001292 } else {
1293 /* not the first port attached to the
1294 * aggregator
1295 */
Bandan Das128ea6c2010-10-16 20:19:58 +00001296 last_port->next_port_in_aggregator =
1297 port->next_port_in_aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001300 /* clear the port's relations to this
1301 * aggregator
1302 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 port->aggregator = NULL;
Bandan Das128ea6c2010-10-16 20:19:58 +00001304 port->next_port_in_aggregator = NULL;
1305 port->actor_port_aggregator_identifier = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001307 netdev_dbg(bond->dev, "Port %d left LAG %d\n",
1308 port->actor_port_number,
1309 temp_aggregator->aggregator_identifier);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001310 /* if the aggregator is empty, clear its
1311 * parameters, and set it ready to be attached
1312 */
Bandan Das7bfc4752010-10-16 20:19:59 +00001313 if (!temp_aggregator->lag_ports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 ad_clear_agg(temp_aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 break;
1316 }
1317 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001318 if (!curr_port) {
1319 /* meaning: the port was related to an aggregator
1320 * but was not on the aggregator port list
1321 */
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001322 net_warn_ratelimited("%s: Warning: Port %d (on %s) was related to aggregator %d but was not on its port list\n",
1323 port->slave->bond->dev->name,
1324 port->actor_port_number,
1325 port->slave->dev->name,
1326 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
1328 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001329 /* search on all aggregators for a suitable aggregator for this port */
Veaceslav Falico3e36bb72013-09-27 16:11:59 +02001330 bond_for_each_slave(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08001331 aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001333 /* keep a free aggregator for later use(if needed) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (!aggregator->lag_ports) {
Bandan Das7bfc4752010-10-16 20:19:59 +00001335 if (!free_aggregator)
Bandan Das128ea6c2010-10-16 20:19:58 +00001336 free_aggregator = aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 continue;
1338 }
dingtianhong815117a2014-01-02 09:12:54 +08001339 /* check if current aggregator suits us */
1340 if (((aggregator->actor_oper_aggregator_key == port->actor_oper_port_key) && /* if all parameters match AND */
1341 MAC_ADDRESS_EQUAL(&(aggregator->partner_system), &(port->partner_oper.system)) &&
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001342 (aggregator->partner_system_priority == port->partner_oper.system_priority) &&
1343 (aggregator->partner_oper_aggregator_key == port->partner_oper.key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 ) &&
dingtianhong815117a2014-01-02 09:12:54 +08001345 ((!MAC_ADDRESS_EQUAL(&(port->partner_oper.system), &(null_mac_addr)) && /* partner answers */
1346 !aggregator->is_individual) /* but is not individual OR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 )
1348 ) {
dingtianhong815117a2014-01-02 09:12:54 +08001349 /* attach to the founded aggregator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 port->aggregator = aggregator;
Bandan Das128ea6c2010-10-16 20:19:58 +00001351 port->actor_port_aggregator_identifier =
1352 port->aggregator->aggregator_identifier;
1353 port->next_port_in_aggregator = aggregator->lag_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 port->aggregator->num_of_ports++;
Bandan Das128ea6c2010-10-16 20:19:58 +00001355 aggregator->lag_ports = port;
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001356 netdev_dbg(bond->dev, "Port %d joined LAG %d(existing LAG)\n",
1357 port->actor_port_number,
1358 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001360 /* mark this port as selected */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 port->sm_vars |= AD_PORT_SELECTED;
1362 found = 1;
1363 break;
1364 }
1365 }
1366
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001367 /* the port couldn't find an aggregator - attach it to a new
1368 * aggregator
1369 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (!found) {
1371 if (free_aggregator) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001372 /* assign port a new aggregator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 port->aggregator = free_aggregator;
Bandan Das128ea6c2010-10-16 20:19:58 +00001374 port->actor_port_aggregator_identifier =
1375 port->aggregator->aggregator_identifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001377 /* update the new aggregator's parameters
1378 * if port was responsed from the end-user
1379 */
Jianhua Xiecb8dda92014-11-19 16:48:58 +08001380 if (port->actor_oper_port_key & AD_DUPLEX_KEY_MASKS)
Bandan Das7bfc4752010-10-16 20:19:59 +00001381 /* if port is full duplex */
Holger Eitzenberger1624db72008-12-26 13:27:21 -08001382 port->aggregator->is_individual = false;
Bandan Das7bfc4752010-10-16 20:19:59 +00001383 else
Holger Eitzenberger1624db72008-12-26 13:27:21 -08001384 port->aggregator->is_individual = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 port->aggregator->actor_admin_aggregator_key = port->actor_admin_port_key;
1387 port->aggregator->actor_oper_aggregator_key = port->actor_oper_port_key;
Bandan Das128ea6c2010-10-16 20:19:58 +00001388 port->aggregator->partner_system =
1389 port->partner_oper.system;
1390 port->aggregator->partner_system_priority =
1391 port->partner_oper.system_priority;
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -08001392 port->aggregator->partner_oper_aggregator_key = port->partner_oper.key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 port->aggregator->receive_state = 1;
1394 port->aggregator->transmit_state = 1;
1395 port->aggregator->lag_ports = port;
1396 port->aggregator->num_of_ports++;
1397
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001398 /* mark this port as selected */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 port->sm_vars |= AD_PORT_SELECTED;
1400
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001401 netdev_dbg(bond->dev, "Port %d joined LAG %d(new LAG)\n",
1402 port->actor_port_number,
1403 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 } else {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001405 netdev_err(bond->dev, "Port %d (on %s) did not find a suitable aggregator\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 port->actor_port_number, port->slave->dev->name);
1407 }
1408 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001409 /* if all aggregator's ports are READY_N == TRUE, set ready=TRUE
1410 * in all aggregator's ports, else set ready=FALSE in all
1411 * aggregator's ports
1412 */
1413 __set_agg_ports_ready(port->aggregator,
1414 __agg_ports_are_ready(port->aggregator));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Jay Vosburghfd989c82008-11-04 17:51:16 -08001416 aggregator = __get_first_agg(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07001417 ad_agg_selection_logic(aggregator, update_slave_arr);
Wilson Kok63b46242015-01-26 01:16:59 -05001418
1419 if (!port->aggregator->is_active)
1420 port->actor_oper_port_state &= ~AD_STATE_SYNCHRONIZATION;
Jay Vosburghfd989c82008-11-04 17:51:16 -08001421}
1422
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001423/* Decide if "agg" is a better choice for the new active aggregator that
Jay Vosburghfd989c82008-11-04 17:51:16 -08001424 * the current best, according to the ad_select policy.
1425 */
1426static struct aggregator *ad_agg_selection_test(struct aggregator *best,
1427 struct aggregator *curr)
1428{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001429 /* 0. If no best, select current.
Jay Vosburghfd989c82008-11-04 17:51:16 -08001430 *
1431 * 1. If the current agg is not individual, and the best is
1432 * individual, select current.
1433 *
1434 * 2. If current agg is individual and the best is not, keep best.
1435 *
1436 * 3. Therefore, current and best are both individual or both not
1437 * individual, so:
1438 *
1439 * 3a. If current agg partner replied, and best agg partner did not,
1440 * select current.
1441 *
1442 * 3b. If current agg partner did not reply and best agg partner
1443 * did reply, keep best.
1444 *
1445 * 4. Therefore, current and best both have partner replies or
1446 * both do not, so perform selection policy:
1447 *
1448 * BOND_AD_COUNT: Select by count of ports. If count is equal,
1449 * select by bandwidth.
1450 *
1451 * BOND_AD_STABLE, BOND_AD_BANDWIDTH: Select by bandwidth.
1452 */
1453 if (!best)
1454 return curr;
1455
1456 if (!curr->is_individual && best->is_individual)
1457 return curr;
1458
1459 if (curr->is_individual && !best->is_individual)
1460 return best;
1461
1462 if (__agg_has_partner(curr) && !__agg_has_partner(best))
1463 return curr;
1464
1465 if (!__agg_has_partner(curr) && __agg_has_partner(best))
1466 return best;
1467
1468 switch (__get_agg_selection_mode(curr->lag_ports)) {
1469 case BOND_AD_COUNT:
1470 if (curr->num_of_ports > best->num_of_ports)
1471 return curr;
1472
1473 if (curr->num_of_ports < best->num_of_ports)
1474 return best;
1475
1476 /*FALLTHROUGH*/
1477 case BOND_AD_STABLE:
1478 case BOND_AD_BANDWIDTH:
1479 if (__get_agg_bandwidth(curr) > __get_agg_bandwidth(best))
1480 return curr;
1481
1482 break;
1483
1484 default:
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001485 net_warn_ratelimited("%s: Impossible agg select mode %d\n",
1486 curr->slave->bond->dev->name,
1487 __get_agg_selection_mode(curr->lag_ports));
Jay Vosburghfd989c82008-11-04 17:51:16 -08001488 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 }
Jay Vosburghfd989c82008-11-04 17:51:16 -08001490
1491 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001494static int agg_device_up(const struct aggregator *agg)
1495{
Jiri Bohac2430af82011-04-19 02:09:55 +00001496 struct port *port = agg->lag_ports;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001497
Jiri Bohac2430af82011-04-19 02:09:55 +00001498 if (!port)
1499 return 0;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001500
1501 return netif_running(port->slave->dev) &&
1502 netif_carrier_ok(port->slave->dev);
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001503}
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505/**
1506 * ad_agg_selection_logic - select an aggregation group for a team
1507 * @aggregator: the aggregator we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001508 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 *
1510 * It is assumed that only one aggregator may be selected for a team.
Jay Vosburghfd989c82008-11-04 17:51:16 -08001511 *
1512 * The logic of this function is to select the aggregator according to
1513 * the ad_select policy:
1514 *
1515 * BOND_AD_STABLE: select the aggregator with the most ports attached to
1516 * it, and to reselect the active aggregator only if the previous
1517 * aggregator has no more ports related to it.
1518 *
1519 * BOND_AD_BANDWIDTH: select the aggregator with the highest total
1520 * bandwidth, and reselect whenever a link state change takes place or the
1521 * set of slaves in the bond changes.
1522 *
1523 * BOND_AD_COUNT: select the aggregator with largest number of ports
1524 * (slaves), and reselect whenever a link state change takes place or the
1525 * set of slaves in the bond changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 *
1527 * FIXME: this function MUST be called with the first agg in the bond, or
1528 * __get_active_agg() won't work correctly. This function should be better
1529 * called with the bond itself, and retrieve the first agg from it.
1530 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001531static void ad_agg_selection_logic(struct aggregator *agg,
1532 bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
Jay Vosburghfd989c82008-11-04 17:51:16 -08001534 struct aggregator *best, *active, *origin;
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001535 struct bonding *bond = agg->slave->bond;
1536 struct list_head *iter;
1537 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 struct port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Veaceslav Falico49b76242014-01-10 11:59:45 +01001540 rcu_read_lock();
Jay Vosburghfd989c82008-11-04 17:51:16 -08001541 origin = agg;
Jay Vosburghfd989c82008-11-04 17:51:16 -08001542 active = __get_active_agg(agg);
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001543 best = (active && agg_device_up(active)) ? active : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
dingtianhongbe79bd02013-12-13 10:20:12 +08001545 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08001546 agg = &(SLAVE_AD_INFO(slave)->aggregator);
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001547
Jay Vosburghfd989c82008-11-04 17:51:16 -08001548 agg->is_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Stephen Hemminger4cd6fe12009-05-15 08:44:32 +00001550 if (agg->num_of_ports && agg_device_up(agg))
Jay Vosburghfd989c82008-11-04 17:51:16 -08001551 best = ad_agg_selection_test(best, agg);
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Jay Vosburghfd989c82008-11-04 17:51:16 -08001554 if (best &&
1555 __get_agg_selection_mode(best->lag_ports) == BOND_AD_STABLE) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001556 /* For the STABLE policy, don't replace the old active
Jay Vosburghfd989c82008-11-04 17:51:16 -08001557 * aggregator if it's still active (it has an answering
1558 * partner) or if both the best and active don't have an
1559 * answering partner.
1560 */
1561 if (active && active->lag_ports &&
1562 active->lag_ports->is_enabled &&
1563 (__agg_has_partner(active) ||
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001564 (!__agg_has_partner(active) &&
1565 !__agg_has_partner(best)))) {
Jay Vosburghfd989c82008-11-04 17:51:16 -08001566 if (!(!active->actor_oper_aggregator_key &&
1567 best->actor_oper_aggregator_key)) {
1568 best = NULL;
1569 active->is_active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
1571 }
1572 }
1573
Jay Vosburghfd989c82008-11-04 17:51:16 -08001574 if (best && (best == active)) {
1575 best = NULL;
1576 active->is_active = 1;
1577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
dingtianhongbe79bd02013-12-13 10:20:12 +08001579 /* if there is new best aggregator, activate it */
Jay Vosburghfd989c82008-11-04 17:51:16 -08001580 if (best) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001581 netdev_dbg(bond->dev, "best Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1582 best->aggregator_identifier, best->num_of_ports,
1583 best->actor_oper_aggregator_key,
1584 best->partner_oper_aggregator_key,
1585 best->is_individual, best->is_active);
1586 netdev_dbg(bond->dev, "best ports %p slave %p %s\n",
1587 best->lag_ports, best->slave,
1588 best->slave ? best->slave->dev->name : "NULL");
Jay Vosburghfd989c82008-11-04 17:51:16 -08001589
dingtianhongbe79bd02013-12-13 10:20:12 +08001590 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08001591 agg = &(SLAVE_AD_INFO(slave)->aggregator);
Jay Vosburghfd989c82008-11-04 17:51:16 -08001592
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001593 netdev_dbg(bond->dev, "Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1594 agg->aggregator_identifier, agg->num_of_ports,
1595 agg->actor_oper_aggregator_key,
1596 agg->partner_oper_aggregator_key,
1597 agg->is_individual, agg->is_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
1599
dingtianhongbe79bd02013-12-13 10:20:12 +08001600 /* check if any partner replys */
Jay Vosburghfd989c82008-11-04 17:51:16 -08001601 if (best->is_individual) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001602 net_warn_ratelimited("%s: Warning: No 802.3ad response from the link partner for any adapters in the bond\n",
1603 best->slave ?
1604 best->slave->bond->dev->name : "NULL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 }
1606
Jay Vosburghfd989c82008-11-04 17:51:16 -08001607 best->is_active = 1;
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001608 netdev_dbg(bond->dev, "LAG %d chosen as the active LAG\n",
1609 best->aggregator_identifier);
1610 netdev_dbg(bond->dev, "Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
1611 best->aggregator_identifier, best->num_of_ports,
1612 best->actor_oper_aggregator_key,
1613 best->partner_oper_aggregator_key,
1614 best->is_individual, best->is_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001616 /* disable the ports that were related to the former
1617 * active_aggregator
1618 */
Jay Vosburghfd989c82008-11-04 17:51:16 -08001619 if (active) {
1620 for (port = active->lag_ports; port;
1621 port = port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 __disable_port(port);
1623 }
1624 }
Mahesh Bandewaree637712014-10-04 17:45:01 -07001625 /* Slave array needs update. */
1626 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 }
1628
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001629 /* if the selected aggregator is of join individuals
Jay Vosburghfd989c82008-11-04 17:51:16 -08001630 * (partner_system is NULL), enable their ports
1631 */
1632 active = __get_active_agg(origin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Jay Vosburghfd989c82008-11-04 17:51:16 -08001634 if (active) {
1635 if (!__agg_has_partner(active)) {
1636 for (port = active->lag_ports; port;
1637 port = port->next_port_in_aggregator) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 __enable_port(port);
1639 }
1640 }
1641 }
Jay Vosburghfd989c82008-11-04 17:51:16 -08001642
dingtianhongbe79bd02013-12-13 10:20:12 +08001643 rcu_read_unlock();
1644
Veaceslav Falicobef1fcc2013-09-27 16:12:01 +02001645 bond_3ad_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646}
1647
1648/**
1649 * ad_clear_agg - clear a given aggregator's parameters
1650 * @aggregator: the aggregator we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 */
1652static void ad_clear_agg(struct aggregator *aggregator)
1653{
1654 if (aggregator) {
Holger Eitzenberger1624db72008-12-26 13:27:21 -08001655 aggregator->is_individual = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 aggregator->actor_admin_aggregator_key = 0;
1657 aggregator->actor_oper_aggregator_key = 0;
1658 aggregator->partner_system = null_mac_addr;
1659 aggregator->partner_system_priority = 0;
1660 aggregator->partner_oper_aggregator_key = 0;
1661 aggregator->receive_state = 0;
1662 aggregator->transmit_state = 0;
1663 aggregator->lag_ports = NULL;
1664 aggregator->is_active = 0;
1665 aggregator->num_of_ports = 0;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001666 pr_debug("LAG %d was cleared\n",
1667 aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 }
1669}
1670
1671/**
1672 * ad_initialize_agg - initialize a given aggregator's parameters
1673 * @aggregator: the aggregator we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 */
1675static void ad_initialize_agg(struct aggregator *aggregator)
1676{
1677 if (aggregator) {
1678 ad_clear_agg(aggregator);
1679
1680 aggregator->aggregator_mac_address = null_mac_addr;
1681 aggregator->aggregator_identifier = 0;
1682 aggregator->slave = NULL;
1683 }
1684}
1685
1686/**
1687 * ad_initialize_port - initialize a given port's parameters
1688 * @aggregator: the aggregator we're looking at
1689 * @lacp_fast: boolean. whether fast periodic should be used
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 */
1691static void ad_initialize_port(struct port *port, int lacp_fast)
1692{
Holger Eitzenbergerc7e703d2008-12-17 19:12:07 -08001693 static const struct port_params tmpl = {
1694 .system_priority = 0xffff,
1695 .key = 1,
1696 .port_number = 1,
1697 .port_priority = 0xff,
1698 .port_state = 1,
1699 };
Holger Eitzenberger7addeef2008-12-26 13:28:33 -08001700 static const struct lacpdu lacpdu = {
1701 .subtype = 0x01,
1702 .version_number = 0x01,
1703 .tlv_type_actor_info = 0x01,
1704 .actor_information_length = 0x14,
1705 .tlv_type_partner_info = 0x02,
1706 .partner_information_length = 0x14,
1707 .tlv_type_collector_info = 0x03,
1708 .collector_information_length = 0x10,
1709 .collector_max_delay = htons(AD_COLLECTOR_MAX_DELAY),
1710 };
Holger Eitzenbergerc7e703d2008-12-17 19:12:07 -08001711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 if (port) {
1713 port->actor_port_number = 1;
1714 port->actor_port_priority = 0xff;
1715 port->actor_system = null_mac_addr;
1716 port->actor_system_priority = 0xffff;
1717 port->actor_port_aggregator_identifier = 0;
Holger Eitzenbergerd238d452008-12-26 11:18:15 -08001718 port->ntt = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 port->actor_admin_port_key = 1;
1720 port->actor_oper_port_key = 1;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001721 port->actor_admin_port_state = AD_STATE_AGGREGATION |
1722 AD_STATE_LACP_ACTIVITY;
1723 port->actor_oper_port_state = AD_STATE_AGGREGATION |
1724 AD_STATE_LACP_ACTIVITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Bandan Das7bfc4752010-10-16 20:19:59 +00001726 if (lacp_fast)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 port->actor_oper_port_state |= AD_STATE_LACP_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Holger Eitzenbergerc7e703d2008-12-17 19:12:07 -08001729 memcpy(&port->partner_admin, &tmpl, sizeof(tmpl));
1730 memcpy(&port->partner_oper, &tmpl, sizeof(tmpl));
1731
Holger Eitzenbergerf48127b2008-12-26 13:26:54 -08001732 port->is_enabled = true;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001733 /* private parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 port->sm_vars = 0x3;
1735 port->sm_rx_state = 0;
1736 port->sm_rx_timer_counter = 0;
1737 port->sm_periodic_state = 0;
1738 port->sm_periodic_timer_counter = 0;
1739 port->sm_mux_state = 0;
1740 port->sm_mux_timer_counter = 0;
1741 port->sm_tx_state = 0;
1742 port->sm_tx_timer_counter = 0;
1743 port->slave = NULL;
1744 port->aggregator = NULL;
1745 port->next_port_in_aggregator = NULL;
1746 port->transaction_id = 0;
1747
Holger Eitzenberger7addeef2008-12-26 13:28:33 -08001748 memcpy(&port->lacpdu, &lacpdu, sizeof(lacpdu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 }
1750}
1751
1752/**
1753 * ad_enable_collecting_distributing - enable a port's transmit/receive
1754 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001755 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 *
1757 * Enable @port if it's in an active aggregator
1758 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001759static void ad_enable_collecting_distributing(struct port *port,
1760 bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761{
1762 if (port->aggregator->is_active) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001763 pr_debug("Enabling port %d(LAG %d)\n",
1764 port->actor_port_number,
1765 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 __enable_port(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07001767 /* Slave array needs update */
1768 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 }
1770}
1771
1772/**
1773 * ad_disable_collecting_distributing - disable a port's transmit/receive
1774 * @port: the port we're looking at
Mahesh Bandewaree637712014-10-04 17:45:01 -07001775 * @update_slave_arr: Does slave array need update?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 */
Mahesh Bandewaree637712014-10-04 17:45:01 -07001777static void ad_disable_collecting_distributing(struct port *port,
1778 bool *update_slave_arr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001780 if (port->aggregator &&
1781 !MAC_ADDRESS_EQUAL(&(port->aggregator->partner_system),
1782 &(null_mac_addr))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001783 pr_debug("Disabling port %d(LAG %d)\n",
1784 port->actor_port_number,
1785 port->aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 __disable_port(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07001787 /* Slave array needs an update */
1788 *update_slave_arr = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 }
1790}
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792/**
1793 * ad_marker_info_received - handle receive of a Marker information frame
1794 * @marker_info: Marker info received
1795 * @port: the port we're looking at
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001797static void ad_marker_info_received(struct bond_marker *marker_info,
1798 struct port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799{
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001800 struct bond_marker marker;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001802 /* copy the received marker data to the response marker */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001803 memcpy(&marker, marker_info, sizeof(struct bond_marker));
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001804 /* change the marker subtype to marker response */
Bandan Das128ea6c2010-10-16 20:19:58 +00001805 marker.tlv_type = AD_MARKER_RESPONSE_SUBTYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001807 /* send the marker response */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 if (ad_marker_send(port, &marker) >= 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001809 pr_debug("Sent Marker Response on port %d\n",
1810 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
1812}
1813
1814/**
1815 * ad_marker_response_received - handle receive of a marker response frame
1816 * @marker: marker PDU received
1817 * @port: the port we're looking at
1818 *
1819 * This function does nothing since we decided not to implement send and handle
1820 * response for marker PDU's, in this stage, but only to respond to marker
1821 * information.
1822 */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07001823static void ad_marker_response_received(struct bond_marker *marker,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001824 struct port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001826 marker = NULL;
1827 port = NULL;
1828 /* DO NOTHING, SINCE WE DECIDED NOT TO IMPLEMENT THIS FEATURE FOR NOW */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829}
1830
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001831/* ========= AD exported functions to the main bonding code ========= */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001833/* Check aggregators status in team every T seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834#define AD_AGGREGATOR_SELECTION_TIMER 8
1835
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001836/**
1837 * bond_3ad_initiate_agg_selection - initate aggregator selection
1838 * @bond: bonding struct
Jay Vosburghfd989c82008-11-04 17:51:16 -08001839 *
1840 * Set the aggregation selection timer, to initiate an agg selection in
1841 * the very near future. Called during first initialization, and during
1842 * any down to up transitions of the bond.
1843 */
1844void bond_3ad_initiate_agg_selection(struct bonding *bond, int timeout)
1845{
1846 BOND_AD_INFO(bond).agg_select_timer = timeout;
Jay Vosburghfd989c82008-11-04 17:51:16 -08001847}
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849/**
1850 * bond_3ad_initialize - initialize a bond's 802.3ad parameters and structures
1851 * @bond: bonding struct to work on
1852 * @tick_resolution: tick duration (millisecond resolution)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 *
1854 * Can be called only after the mac address of the bond is set.
1855 */
Peter Pan(潘卫平)56d00c672011-06-08 21:19:02 +00001856void bond_3ad_initialize(struct bonding *bond, u16 tick_resolution)
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001857{
dingtianhong815117a2014-01-02 09:12:54 +08001858 /* check that the bond is not initialized yet */
1859 if (!MAC_ADDRESS_EQUAL(&(BOND_AD_INFO(bond).system.sys_mac_addr),
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001860 bond->dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Jiri Bohac163c8ff2014-02-14 18:13:50 +01001862 BOND_AD_INFO(bond).aggregator_identifier = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 BOND_AD_INFO(bond).system.sys_priority = 0xFFFF;
1865 BOND_AD_INFO(bond).system.sys_mac_addr = *((struct mac_addr *)bond->dev->dev_addr);
1866
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001867 /* initialize how many times this module is called in one
1868 * second (should be about every 100ms)
1869 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 ad_ticks_per_sec = tick_resolution;
1871
Jay Vosburghfd989c82008-11-04 17:51:16 -08001872 bond_3ad_initiate_agg_selection(bond,
1873 AD_AGGREGATOR_SELECTION_TIMER *
1874 ad_ticks_per_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 }
1876}
1877
1878/**
1879 * bond_3ad_bind_slave - initialize a slave's port
1880 * @slave: slave struct to work on
1881 *
1882 * Returns: 0 on success
1883 * < 0 on error
1884 */
dingtianhong359632e2014-01-02 09:13:12 +08001885void bond_3ad_bind_slave(struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886{
1887 struct bonding *bond = bond_get_bond_by_slave(slave);
1888 struct port *port;
1889 struct aggregator *aggregator;
1890
dingtianhong359632e2014-01-02 09:13:12 +08001891 /* check that the slave has not been initialized yet. */
dingtianhong3fdddd82014-05-12 15:08:43 +08001892 if (SLAVE_AD_INFO(slave)->port.slave != slave) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
dingtianhong359632e2014-01-02 09:13:12 +08001894 /* port initialization */
dingtianhong3fdddd82014-05-12 15:08:43 +08001895 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Peter Pan(潘卫平)bf0239a2011-06-13 04:30:10 +00001897 ad_initialize_port(port, bond->params.lacp_fast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
1899 port->slave = slave;
dingtianhong3fdddd82014-05-12 15:08:43 +08001900 port->actor_port_number = SLAVE_AD_INFO(slave)->id;
dingtianhong359632e2014-01-02 09:13:12 +08001901 /* key is determined according to the link speed, duplex and user key(which
1902 * is yet not supported)
dingtianhong359632e2014-01-02 09:13:12 +08001903 */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001904 port->actor_admin_port_key = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 port->actor_admin_port_key |= __get_duplex(port);
1906 port->actor_admin_port_key |= (__get_link_speed(port) << 1);
1907 port->actor_oper_port_key = port->actor_admin_port_key;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001908 /* if the port is not full duplex, then the port should be not
1909 * lacp Enabled
1910 */
Jianhua Xiecb8dda92014-11-19 16:48:58 +08001911 if (!(port->actor_oper_port_key & AD_DUPLEX_KEY_MASKS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 port->sm_vars &= ~AD_PORT_LACP_ENABLED;
dingtianhong359632e2014-01-02 09:13:12 +08001913 /* actor system is the bond's system */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 port->actor_system = BOND_AD_INFO(bond).system.sys_mac_addr;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001915 /* tx timer(to verify that no more than MAX_TX_IN_SECOND
1916 * lacpdu's are sent in one second)
1917 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 port->sm_tx_timer_counter = ad_ticks_per_sec/AD_MAX_TX_IN_SECOND;
1919 port->aggregator = NULL;
1920 port->next_port_in_aggregator = NULL;
1921
1922 __disable_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
dingtianhong359632e2014-01-02 09:13:12 +08001924 /* aggregator initialization */
dingtianhong3fdddd82014-05-12 15:08:43 +08001925 aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927 ad_initialize_agg(aggregator);
1928
1929 aggregator->aggregator_mac_address = *((struct mac_addr *)bond->dev->dev_addr);
Jiri Bohac163c8ff2014-02-14 18:13:50 +01001930 aggregator->aggregator_identifier = ++BOND_AD_INFO(bond).aggregator_identifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 aggregator->slave = slave;
1932 aggregator->is_active = 0;
1933 aggregator->num_of_ports = 0;
1934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
1936
1937/**
1938 * bond_3ad_unbind_slave - deinitialize a slave's port
1939 * @slave: slave struct to work on
1940 *
1941 * Search for the aggregator that is related to this port, remove the
1942 * aggregator and assign another aggregator for other port related to it
1943 * (if any), and remove the port.
1944 */
1945void bond_3ad_unbind_slave(struct slave *slave)
1946{
1947 struct port *port, *prev_port, *temp_port;
1948 struct aggregator *aggregator, *new_aggregator, *temp_aggregator;
1949 int select_new_active_agg = 0;
Veaceslav Falico0b088262013-09-27 16:12:02 +02001950 struct bonding *bond = slave->bond;
1951 struct slave *slave_iter;
1952 struct list_head *iter;
Mahesh Bandewaree637712014-10-04 17:45:01 -07001953 bool dummy_slave_update; /* Ignore this value as caller updates array */
Jasper Spaansa361c832009-10-23 04:09:24 +00001954
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02001955 /* Sync against bond_3ad_state_machine_handler() */
1956 spin_lock_bh(&bond->mode_lock);
dingtianhong3fdddd82014-05-12 15:08:43 +08001957 aggregator = &(SLAVE_AD_INFO(slave)->aggregator);
1958 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001960 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001962 netdev_warn(bond->dev, "Trying to unbind an uninitialized port on %s\n",
1963 slave->dev->name);
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02001964 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 }
1966
Veaceslav Falicod4471f52014-07-15 19:36:00 +02001967 netdev_dbg(bond->dev, "Unbinding Link Aggregation Group %d\n",
1968 aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970 /* Tell the partner that this port is not suitable for aggregation */
1971 port->actor_oper_port_state &= ~AD_STATE_AGGREGATION;
1972 __update_lacpdu_from_port(port);
1973 ad_lacpdu_send(port);
1974
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001975 /* check if this aggregator is occupied */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 if (aggregator->lag_ports) {
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001977 /* check if there are other ports related to this aggregator
1978 * except the port related to this slave(thats ensure us that
1979 * there is a reason to search for new aggregator, and that we
1980 * will find one
1981 */
1982 if ((aggregator->lag_ports != port) ||
1983 (aggregator->lag_ports->next_port_in_aggregator)) {
1984 /* find new aggregator for the related port(s) */
Veaceslav Falico0b088262013-09-27 16:12:02 +02001985 bond_for_each_slave(bond, slave_iter, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08001986 new_aggregator = &(SLAVE_AD_INFO(slave_iter)->aggregator);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001987 /* if the new aggregator is empty, or it is
1988 * connected to our port only
1989 */
1990 if (!new_aggregator->lag_ports ||
1991 ((new_aggregator->lag_ports == port) &&
1992 !new_aggregator->lag_ports->next_port_in_aggregator))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 }
Veaceslav Falico0b088262013-09-27 16:12:02 +02001995 if (!slave_iter)
1996 new_aggregator = NULL;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01001997
1998 /* if new aggregator found, copy the aggregator's
1999 * parameters and connect the related lag_ports to the
2000 * new aggregator
2001 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 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 +02002003 netdev_dbg(bond->dev, "Some port(s) related to LAG %d - replacing with LAG %d\n",
2004 aggregator->aggregator_identifier,
2005 new_aggregator->aggregator_identifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002007 if ((new_aggregator->lag_ports == port) &&
2008 new_aggregator->is_active) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002009 netdev_info(bond->dev, "Removing an active aggregator\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 select_new_active_agg = 1;
2011 }
2012
2013 new_aggregator->is_individual = aggregator->is_individual;
2014 new_aggregator->actor_admin_aggregator_key = aggregator->actor_admin_aggregator_key;
2015 new_aggregator->actor_oper_aggregator_key = aggregator->actor_oper_aggregator_key;
2016 new_aggregator->partner_system = aggregator->partner_system;
2017 new_aggregator->partner_system_priority = aggregator->partner_system_priority;
2018 new_aggregator->partner_oper_aggregator_key = aggregator->partner_oper_aggregator_key;
2019 new_aggregator->receive_state = aggregator->receive_state;
2020 new_aggregator->transmit_state = aggregator->transmit_state;
2021 new_aggregator->lag_ports = aggregator->lag_ports;
2022 new_aggregator->is_active = aggregator->is_active;
2023 new_aggregator->num_of_ports = aggregator->num_of_ports;
2024
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002025 /* update the information that is written on
2026 * the ports about the aggregator
2027 */
Bandan Das128ea6c2010-10-16 20:19:58 +00002028 for (temp_port = aggregator->lag_ports; temp_port;
2029 temp_port = temp_port->next_port_in_aggregator) {
2030 temp_port->aggregator = new_aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 temp_port->actor_port_aggregator_identifier = new_aggregator->aggregator_identifier;
2032 }
2033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 ad_clear_agg(aggregator);
Jasper Spaansa361c832009-10-23 04:09:24 +00002035
Bandan Das7bfc4752010-10-16 20:19:59 +00002036 if (select_new_active_agg)
Mahesh Bandewaree637712014-10-04 17:45:01 -07002037 ad_agg_selection_logic(__get_first_agg(port),
2038 &dummy_slave_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 } else {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002040 netdev_warn(bond->dev, "unbinding aggregator, and could not find a new aggregator for its ports\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 }
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002042 } else {
2043 /* in case that the only port related to this
2044 * aggregator is the one we want to remove
2045 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 select_new_active_agg = aggregator->is_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 ad_clear_agg(aggregator);
2048 if (select_new_active_agg) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002049 netdev_info(bond->dev, "Removing an active aggregator\n");
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002050 /* select new active aggregator */
Veaceslav Falico74684492013-09-27 15:10:58 +02002051 temp_aggregator = __get_first_agg(port);
2052 if (temp_aggregator)
Mahesh Bandewaree637712014-10-04 17:45:01 -07002053 ad_agg_selection_logic(temp_aggregator,
2054 &dummy_slave_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 }
2056 }
2057 }
2058
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002059 netdev_dbg(bond->dev, "Unbinding port %d\n", port->actor_port_number);
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002060
2061 /* find the aggregator that this port is connected to */
Veaceslav Falico0b088262013-09-27 16:12:02 +02002062 bond_for_each_slave(bond, slave_iter, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002063 temp_aggregator = &(SLAVE_AD_INFO(slave_iter)->aggregator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 prev_port = NULL;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002065 /* search the port in the aggregator's related ports */
Bandan Das128ea6c2010-10-16 20:19:58 +00002066 for (temp_port = temp_aggregator->lag_ports; temp_port;
2067 prev_port = temp_port,
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002068 temp_port = temp_port->next_port_in_aggregator) {
2069 if (temp_port == port) {
2070 /* the aggregator found - detach the port from
2071 * this aggregator
2072 */
Bandan Das7bfc4752010-10-16 20:19:59 +00002073 if (prev_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 prev_port->next_port_in_aggregator = temp_port->next_port_in_aggregator;
Bandan Das7bfc4752010-10-16 20:19:59 +00002075 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 temp_aggregator->lag_ports = temp_port->next_port_in_aggregator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 temp_aggregator->num_of_ports--;
Bandan Das128ea6c2010-10-16 20:19:58 +00002078 if (temp_aggregator->num_of_ports == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 select_new_active_agg = temp_aggregator->is_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 ad_clear_agg(temp_aggregator);
2081 if (select_new_active_agg) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002082 netdev_info(bond->dev, "Removing an active aggregator\n");
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002083 /* select new active aggregator */
Mahesh Bandewaree637712014-10-04 17:45:01 -07002084 ad_agg_selection_logic(__get_first_agg(port),
2085 &dummy_slave_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 }
2087 }
2088 break;
2089 }
2090 }
2091 }
Bandan Das128ea6c2010-10-16 20:19:58 +00002092 port->slave = NULL;
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002093
2094out:
2095 spin_unlock_bh(&bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096}
2097
2098/**
2099 * bond_3ad_state_machine_handler - handle state machines timeout
2100 * @bond: bonding struct to work on
2101 *
2102 * The state machine handling concept in this module is to check every tick
2103 * which state machine should operate any function. The execution order is
2104 * round robin, so when we have an interaction between state machines, the
2105 * reply of one to each other might be delayed until next tick.
2106 *
2107 * This function also complete the initialization when the agg_select_timer
2108 * times out, and it selects an aggregator for the ports that are yet not
2109 * related to any aggregator, and selects the active aggregator for a bond.
2110 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002111void bond_3ad_state_machine_handler(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002113 struct bonding *bond = container_of(work, struct bonding,
2114 ad_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 struct aggregator *aggregator;
Veaceslav Falico3c4c88a2013-09-27 16:11:57 +02002116 struct list_head *iter;
2117 struct slave *slave;
2118 struct port *port;
dingtianhong5e5b0662014-02-26 11:05:22 +08002119 bool should_notify_rtnl = BOND_SLAVE_NOTIFY_LATER;
Mahesh Bandewaree637712014-10-04 17:45:01 -07002120 bool update_slave_arr = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002122 /* Lock to protect data accessed by all (e.g., port->sm_vars) and
2123 * against running with bond_3ad_unbind_slave. ad_rx_machine may run
2124 * concurrently due to incoming LACPDU as well.
2125 */
Nikolay Aleksandrovb7435622014-09-11 22:49:25 +02002126 spin_lock_bh(&bond->mode_lock);
dingtianhongbe79bd02013-12-13 10:20:12 +08002127 rcu_read_lock();
David S. Miller1f2cd842013-10-28 00:11:22 -04002128
dingtianhongbe79bd02013-12-13 10:20:12 +08002129 /* check if there are any slaves */
Veaceslav Falico0965a1f2013-09-25 09:20:21 +02002130 if (!bond_has_slaves(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
dingtianhongbe79bd02013-12-13 10:20:12 +08002133 /* check if agg_select_timer timer after initialize is timed out */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002134 if (BOND_AD_INFO(bond).agg_select_timer &&
2135 !(--BOND_AD_INFO(bond).agg_select_timer)) {
dingtianhongbe79bd02013-12-13 10:20:12 +08002136 slave = bond_first_slave_rcu(bond);
dingtianhong3fdddd82014-05-12 15:08:43 +08002137 port = slave ? &(SLAVE_AD_INFO(slave)->port) : NULL;
Veaceslav Falicofe9323d2013-09-27 16:11:58 +02002138
dingtianhongbe79bd02013-12-13 10:20:12 +08002139 /* select the active aggregator for the bond */
Veaceslav Falicofe9323d2013-09-27 16:11:58 +02002140 if (port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002142 net_warn_ratelimited("%s: Warning: bond's first port is uninitialized\n",
2143 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 goto re_arm;
2145 }
2146
2147 aggregator = __get_first_agg(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07002148 ad_agg_selection_logic(aggregator, &update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002150 bond_3ad_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 }
2152
dingtianhongbe79bd02013-12-13 10:20:12 +08002153 /* for each port run the state machines */
2154 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002155 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002157 net_warn_ratelimited("%s: Warning: Found an uninitialized port\n",
Veaceslav Falico86a2b9c2014-03-16 17:55:03 +01002158 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 goto re_arm;
2160 }
2161
2162 ad_rx_machine(NULL, port);
2163 ad_periodic_machine(port);
Mahesh Bandewaree637712014-10-04 17:45:01 -07002164 ad_port_selection_logic(port, &update_slave_arr);
2165 ad_mux_machine(port, &update_slave_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 ad_tx_machine(port);
2167
dingtianhongbe79bd02013-12-13 10:20:12 +08002168 /* turn off the BEGIN bit, since we already handled it */
Bandan Das7bfc4752010-10-16 20:19:59 +00002169 if (port->sm_vars & AD_PORT_BEGIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 port->sm_vars &= ~AD_PORT_BEGIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 }
2172
2173re_arm:
dingtianhong5e5b0662014-02-26 11:05:22 +08002174 bond_for_each_slave_rcu(bond, slave, iter) {
2175 if (slave->should_notify) {
2176 should_notify_rtnl = BOND_SLAVE_NOTIFY_NOW;
2177 break;
2178 }
2179 }
dingtianhongbe79bd02013-12-13 10:20:12 +08002180 rcu_read_unlock();
Nikolay Aleksandrovb7435622014-09-11 22:49:25 +02002181 spin_unlock_bh(&bond->mode_lock);
dingtianhong5e5b0662014-02-26 11:05:22 +08002182
Mahesh Bandewaree637712014-10-04 17:45:01 -07002183 if (update_slave_arr)
2184 bond_slave_arr_work_rearm(bond, 0);
2185
dingtianhong5e5b0662014-02-26 11:05:22 +08002186 if (should_notify_rtnl && rtnl_trylock()) {
dingtianhongb0929912014-02-26 11:05:23 +08002187 bond_slave_state_notify(bond);
dingtianhong5e5b0662014-02-26 11:05:22 +08002188 rtnl_unlock();
2189 }
dingtianhongbe79bd02013-12-13 10:20:12 +08002190 queue_delayed_work(bond->wq, &bond->ad_work, ad_delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
2192
2193/**
2194 * bond_3ad_rx_indication - handle a received frame
2195 * @lacpdu: received lacpdu
2196 * @slave: slave struct to work on
2197 * @length: length of the data received
2198 *
2199 * It is assumed that frames that were sent on this NIC don't returned as new
2200 * received frames (loopback). Since only the payload is given to this
2201 * function, it check for loopback.
2202 */
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002203static int bond_3ad_rx_indication(struct lacpdu *lacpdu, struct slave *slave,
2204 u16 length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205{
2206 struct port *port;
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002207 int ret = RX_HANDLER_ANOTHER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
2209 if (length >= sizeof(struct lacpdu)) {
2210
dingtianhong3fdddd82014-05-12 15:08:43 +08002211 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
2213 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002214 net_warn_ratelimited("%s: Warning: port of slave %s is uninitialized\n",
2215 slave->dev->name, slave->bond->dev->name);
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002216 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 }
2218
2219 switch (lacpdu->subtype) {
2220 case AD_TYPE_LACPDU:
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002221 ret = RX_HANDLER_CONSUMED;
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002222 netdev_dbg(slave->bond->dev, "Received LACPDU on port %d\n",
2223 port->actor_port_number);
Nils Carlson16d79d72011-03-03 22:09:11 +00002224 /* Protect against concurrent state machines */
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002225 spin_lock(&slave->bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 ad_rx_machine(lacpdu, port);
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002227 spin_unlock(&slave->bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 break;
2229
2230 case AD_TYPE_MARKER:
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002231 ret = RX_HANDLER_CONSUMED;
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002232 /* No need to convert fields to Little Endian since we
2233 * don't use the marker's fields.
2234 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07002236 switch (((struct bond_marker *)lacpdu)->tlv_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 case AD_MARKER_INFORMATION_SUBTYPE:
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002238 netdev_dbg(slave->bond->dev, "Received Marker Information on port %d\n",
2239 port->actor_port_number);
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07002240 ad_marker_info_received((struct bond_marker *)lacpdu, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 break;
2242
2243 case AD_MARKER_RESPONSE_SUBTYPE:
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002244 netdev_dbg(slave->bond->dev, "Received Marker Response on port %d\n",
2245 port->actor_port_number);
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -07002246 ad_marker_response_received((struct bond_marker *)lacpdu, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 break;
2248
2249 default:
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002250 netdev_dbg(slave->bond->dev, "Received an unknown Marker subtype on slot %d\n",
2251 port->actor_port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 }
2253 }
2254 }
Jiri Bohac13a8e0c2012-05-09 01:01:40 +00002255 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256}
2257
2258/**
2259 * bond_3ad_adapter_speed_changed - handle a slave's speed change indication
2260 * @slave: slave struct to work on
2261 *
2262 * Handle reselection of aggregator (if needed) for this port.
2263 */
2264void bond_3ad_adapter_speed_changed(struct slave *slave)
2265{
2266 struct port *port;
2267
dingtianhong3fdddd82014-05-12 15:08:43 +08002268 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
dingtianhong71a06c52013-12-13 17:29:19 +08002270 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002272 netdev_warn(slave->bond->dev, "speed changed for uninitialized port on %s\n",
2273 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 return;
2275 }
2276
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002277 spin_lock_bh(&slave->bond->mode_lock);
dingtianhong71a06c52013-12-13 17:29:19 +08002278
Jianhua Xiecb8dda92014-11-19 16:48:58 +08002279 port->actor_admin_port_key &= ~AD_SPEED_KEY_MASKS;
Bandan Das128ea6c2010-10-16 20:19:58 +00002280 port->actor_oper_port_key = port->actor_admin_port_key |=
2281 (__get_link_speed(port) << 1);
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002282 netdev_dbg(slave->bond->dev, "Port %d changed speed\n", port->actor_port_number);
dingtianhong71a06c52013-12-13 17:29:19 +08002283 /* there is no need to reselect a new aggregator, just signal the
2284 * state machines to reinitialize
2285 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 port->sm_vars |= AD_PORT_BEGIN;
dingtianhong71a06c52013-12-13 17:29:19 +08002287
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002288 spin_unlock_bh(&slave->bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
2291/**
2292 * bond_3ad_adapter_duplex_changed - handle a slave's duplex change indication
2293 * @slave: slave struct to work on
2294 *
2295 * Handle reselection of aggregator (if needed) for this port.
2296 */
2297void bond_3ad_adapter_duplex_changed(struct slave *slave)
2298{
2299 struct port *port;
2300
dingtianhong3fdddd82014-05-12 15:08:43 +08002301 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
dingtianhongbca44a72013-12-13 17:29:24 +08002303 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002305 netdev_warn(slave->bond->dev, "duplex changed for uninitialized port on %s\n",
2306 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 return;
2308 }
2309
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002310 spin_lock_bh(&slave->bond->mode_lock);
dingtianhongbca44a72013-12-13 17:29:24 +08002311
Jianhua Xiecb8dda92014-11-19 16:48:58 +08002312 port->actor_admin_port_key &= ~AD_DUPLEX_KEY_MASKS;
Bandan Das128ea6c2010-10-16 20:19:58 +00002313 port->actor_oper_port_key = port->actor_admin_port_key |=
2314 __get_duplex(port);
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002315 netdev_dbg(slave->bond->dev, "Port %d changed duplex\n", port->actor_port_number);
dingtianhongbca44a72013-12-13 17:29:24 +08002316 /* there is no need to reselect a new aggregator, just signal the
2317 * state machines to reinitialize
2318 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 port->sm_vars |= AD_PORT_BEGIN;
dingtianhongbca44a72013-12-13 17:29:24 +08002320
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002321 spin_unlock_bh(&slave->bond->mode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322}
2323
2324/**
2325 * bond_3ad_handle_link_change - handle a slave's link status change indication
2326 * @slave: slave struct to work on
2327 * @status: whether the link is now up or down
2328 *
2329 * Handle reselection of aggregator (if needed) for this port.
2330 */
2331void bond_3ad_handle_link_change(struct slave *slave, char link)
2332{
2333 struct port *port;
2334
dingtianhong3fdddd82014-05-12 15:08:43 +08002335 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
dingtianhong108db732013-12-13 17:29:29 +08002337 /* if slave is null, the whole port is not initialized */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 if (!port->slave) {
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002339 netdev_warn(slave->bond->dev, "link status changed for uninitialized port on %s\n",
2340 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 return;
2342 }
2343
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002344 spin_lock_bh(&slave->bond->mode_lock);
dingtianhong108db732013-12-13 17:29:29 +08002345 /* on link down we are zeroing duplex and speed since
2346 * some of the adaptors(ce1000.lan) report full duplex/speed
2347 * instead of N/A(duplex) / 0(speed).
2348 *
2349 * on link up we are forcing recheck on the duplex and speed since
2350 * some of he adaptors(ce1000.lan) report.
2351 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 if (link == BOND_LINK_UP) {
Holger Eitzenbergerf48127b2008-12-26 13:26:54 -08002353 port->is_enabled = true;
Jianhua Xiecb8dda92014-11-19 16:48:58 +08002354 port->actor_admin_port_key &= ~AD_DUPLEX_KEY_MASKS;
Bandan Das128ea6c2010-10-16 20:19:58 +00002355 port->actor_oper_port_key = port->actor_admin_port_key |=
2356 __get_duplex(port);
Jianhua Xiecb8dda92014-11-19 16:48:58 +08002357 port->actor_admin_port_key &= ~AD_SPEED_KEY_MASKS;
Bandan Das128ea6c2010-10-16 20:19:58 +00002358 port->actor_oper_port_key = port->actor_admin_port_key |=
2359 (__get_link_speed(port) << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 } else {
2361 /* link has failed */
Holger Eitzenbergerf48127b2008-12-26 13:26:54 -08002362 port->is_enabled = false;
Jianhua Xiecb8dda92014-11-19 16:48:58 +08002363 port->actor_admin_port_key &= ~AD_DUPLEX_KEY_MASKS;
Bandan Das128ea6c2010-10-16 20:19:58 +00002364 port->actor_oper_port_key = (port->actor_admin_port_key &=
Jianhua Xiecb8dda92014-11-19 16:48:58 +08002365 ~AD_SPEED_KEY_MASKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
Veaceslav Falicod4471f52014-07-15 19:36:00 +02002367 netdev_dbg(slave->bond->dev, "Port %d changed link status to %s\n",
2368 port->actor_port_number,
2369 link == BOND_LINK_UP ? "UP" : "DOWN");
dingtianhong108db732013-12-13 17:29:29 +08002370 /* there is no need to reselect a new aggregator, just signal the
2371 * state machines to reinitialize
2372 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 port->sm_vars |= AD_PORT_BEGIN;
dingtianhong108db732013-12-13 17:29:29 +08002374
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002375 spin_unlock_bh(&slave->bond->mode_lock);
Mahesh Bandewaree637712014-10-04 17:45:01 -07002376
2377 /* RTNL is held and mode_lock is released so it's safe
2378 * to update slave_array here.
2379 */
2380 bond_update_slave_arr(slave->bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381}
2382
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002383/**
2384 * bond_3ad_set_carrier - set link state for bonding master
2385 * @bond - bonding structure
2386 *
2387 * if we have an active aggregator, we're up, if not, we're down.
2388 * Presumes that we cannot have an active aggregator if there are
2389 * no slaves with link up.
Jay Vosburghff59c452006-03-27 13:27:43 -08002390 *
Jay Vosburgh031ae4d2007-06-13 22:11:34 -07002391 * This behavior complies with IEEE 802.3 section 43.3.9.
2392 *
Jay Vosburghff59c452006-03-27 13:27:43 -08002393 * Called by bond_set_carrier(). Return zero if carrier state does not
2394 * change, nonzero if it does.
2395 */
2396int bond_3ad_set_carrier(struct bonding *bond)
2397{
stephen hemminger655f8912011-06-22 09:54:39 +00002398 struct aggregator *active;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02002399 struct slave *first_slave;
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002400 int ret = 1;
stephen hemminger655f8912011-06-22 09:54:39 +00002401
dingtianhongbe79bd02013-12-13 10:20:12 +08002402 rcu_read_lock();
2403 first_slave = bond_first_slave_rcu(bond);
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002404 if (!first_slave) {
2405 ret = 0;
2406 goto out;
2407 }
dingtianhong3fdddd82014-05-12 15:08:43 +08002408 active = __get_active_agg(&(SLAVE_AD_INFO(first_slave)->aggregator));
stephen hemminger655f8912011-06-22 09:54:39 +00002409 if (active) {
2410 /* are enough slaves available to consider link up? */
2411 if (active->num_of_ports < bond->params.min_links) {
2412 if (netif_carrier_ok(bond->dev)) {
2413 netif_carrier_off(bond->dev);
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002414 goto out;
stephen hemminger655f8912011-06-22 09:54:39 +00002415 }
2416 } else if (!netif_carrier_ok(bond->dev)) {
Jay Vosburghff59c452006-03-27 13:27:43 -08002417 netif_carrier_on(bond->dev);
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002418 goto out;
Jay Vosburghff59c452006-03-27 13:27:43 -08002419 }
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002420 } else if (netif_carrier_ok(bond->dev)) {
Jay Vosburghff59c452006-03-27 13:27:43 -08002421 netif_carrier_off(bond->dev);
Jay Vosburghff59c452006-03-27 13:27:43 -08002422 }
Veaceslav Falicoc1bc9642014-01-10 11:59:43 +01002423out:
2424 rcu_read_unlock();
2425 return ret;
Jay Vosburghff59c452006-03-27 13:27:43 -08002426}
2427
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428/**
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002429 * __bond_3ad_get_active_agg_info - get information of the active aggregator
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 * @bond: bonding struct to work on
2431 * @ad_info: ad_info struct to fill with the bond's info
2432 *
2433 * Returns: 0 on success
2434 * < 0 on error
2435 */
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002436int __bond_3ad_get_active_agg_info(struct bonding *bond,
2437 struct ad_info *ad_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438{
2439 struct aggregator *aggregator = NULL;
Veaceslav Falico3c4c88a2013-09-27 16:11:57 +02002440 struct list_head *iter;
2441 struct slave *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 struct port *port;
2443
dingtianhong47e91f562013-10-15 16:28:35 +08002444 bond_for_each_slave_rcu(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002445 port = &(SLAVE_AD_INFO(slave)->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 if (port->aggregator && port->aggregator->is_active) {
2447 aggregator = port->aggregator;
2448 break;
2449 }
2450 }
2451
Joe Perches21f374c2014-02-18 09:42:47 -08002452 if (!aggregator)
2453 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
Joe Perches21f374c2014-02-18 09:42:47 -08002455 ad_info->aggregator_id = aggregator->aggregator_identifier;
2456 ad_info->ports = aggregator->num_of_ports;
2457 ad_info->actor_key = aggregator->actor_oper_aggregator_key;
2458 ad_info->partner_key = aggregator->partner_oper_aggregator_key;
2459 ether_addr_copy(ad_info->partner_system,
2460 aggregator->partner_system.mac_addr_value);
2461 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462}
2463
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002464int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info)
2465{
2466 int ret;
2467
dingtianhong47e91f562013-10-15 16:28:35 +08002468 rcu_read_lock();
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002469 ret = __bond_3ad_get_active_agg_info(bond, ad_info);
dingtianhong47e91f562013-10-15 16:28:35 +08002470 rcu_read_unlock();
nikolay@redhat.com318debd2013-05-18 01:18:31 +00002471
2472 return ret;
2473}
2474
Eric Dumazetde063b72012-06-11 19:23:07 +00002475int bond_3ad_lacpdu_recv(const struct sk_buff *skb, struct bonding *bond,
2476 struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477{
Eric Dumazetde063b72012-06-11 19:23:07 +00002478 struct lacpdu *lacpdu, _lacpdu;
2479
Jiri Pirko3aba8912011-04-19 03:48:16 +00002480 if (skb->protocol != PKT_TYPE_LACPDU)
Nikolay Aleksandrov86e74982014-09-11 22:49:22 +02002481 return RX_HANDLER_ANOTHER;
Neil Hormanb3053252011-01-20 09:02:31 +00002482
Eric Dumazetde063b72012-06-11 19:23:07 +00002483 lacpdu = skb_header_pointer(skb, 0, sizeof(_lacpdu), &_lacpdu);
2484 if (!lacpdu)
Nikolay Aleksandrov86e74982014-09-11 22:49:22 +02002485 return RX_HANDLER_ANOTHER;
Andy Gospodarekab128112010-09-10 11:43:20 +00002486
Nikolay Aleksandrov86e74982014-09-11 22:49:22 +02002487 return bond_3ad_rx_indication(lacpdu, slave, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002489
Veaceslav Falico3bf2d282014-01-08 16:46:46 +01002490/**
2491 * bond_3ad_update_lacp_rate - change the lacp rate
2492 * @bond - bonding struct
2493 *
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002494 * When modify lacp_rate parameter via sysfs,
2495 * update actor_oper_port_state of each port.
2496 *
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002497 * Hold bond->mode_lock,
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002498 * so we can modify port->actor_oper_port_state,
2499 * no matter bond is up or down.
2500 */
2501void bond_3ad_update_lacp_rate(struct bonding *bond)
2502{
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002503 struct port *port = NULL;
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02002504 struct list_head *iter;
nikolay@redhat.comc5093162013-09-02 13:51:40 +02002505 struct slave *slave;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002506 int lacp_fast;
2507
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002508 lacp_fast = bond->params.lacp_fast;
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002509 spin_lock_bh(&bond->mode_lock);
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02002510 bond_for_each_slave(bond, slave, iter) {
dingtianhong3fdddd82014-05-12 15:08:43 +08002511 port = &(SLAVE_AD_INFO(slave)->port);
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002512 if (lacp_fast)
2513 port->actor_oper_port_state |= AD_STATE_LACP_TIMEOUT;
2514 else
2515 port->actor_oper_port_state &= ~AD_STATE_LACP_TIMEOUT;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002516 }
Nikolay Aleksandrove4702592014-09-11 22:49:27 +02002517 spin_unlock_bh(&bond->mode_lock);
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +00002518}