blob: 38785d48baff99da65d97ce974a831b77a8adc16 [file] [log] [blame]
Thomas Gleixner9e567af2019-05-22 09:51:36 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
David S. Miller1ef80192014-11-10 13:27:49 -05006#ifndef _NET_BOND_3AD_H
7#define _NET_BOND_3AD_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9#include <asm/byteorder.h>
10#include <linux/skbuff.h>
11#include <linux/netdevice.h>
Richard Genouded9b58b2009-05-09 06:59:16 +000012#include <linux/if_ether.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Joe Perches2ea24f22014-02-15 16:02:03 -080014/* General definitions */
Richard Genouded9b58b2009-05-09 06:59:16 +000015#define PKT_TYPE_LACPDU cpu_to_be16(ETH_P_SLOW)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#define AD_TIMER_INTERVAL 100 /*msec*/
17
18#define MULTICAST_LACPDU_ADDR {0x01, 0x80, 0xC2, 0x00, 0x00, 0x02}
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#define AD_LACP_SLOW 0
21#define AD_LACP_FAST 1
22
23typedef struct mac_addr {
24 u8 mac_addr_value[ETH_ALEN];
Vitalii Demianetsa10e1462011-05-12 23:04:29 +000025} __packed mac_addr_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Jay Vosburghfd989c82008-11-04 17:51:16 -080027enum {
28 BOND_AD_STABLE = 0,
29 BOND_AD_BANDWIDTH = 1,
30 BOND_AD_COUNT = 2,
31};
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Joe Perches2ea24f22014-02-15 16:02:03 -080033/* rx machine states(43.4.11 in the 802.3ad standard) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034typedef enum {
35 AD_RX_DUMMY,
Joe Perches2ea24f22014-02-15 16:02:03 -080036 AD_RX_INITIALIZE, /* rx Machine */
37 AD_RX_PORT_DISABLED, /* rx Machine */
38 AD_RX_LACP_DISABLED, /* rx Machine */
39 AD_RX_EXPIRED, /* rx Machine */
40 AD_RX_DEFAULTED, /* rx Machine */
41 AD_RX_CURRENT /* rx Machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042} rx_states_t;
43
Joe Perches2ea24f22014-02-15 16:02:03 -080044/* periodic machine states(43.4.12 in the 802.3ad standard) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045typedef enum {
46 AD_PERIODIC_DUMMY,
Joe Perches2ea24f22014-02-15 16:02:03 -080047 AD_NO_PERIODIC, /* periodic machine */
48 AD_FAST_PERIODIC, /* periodic machine */
49 AD_SLOW_PERIODIC, /* periodic machine */
50 AD_PERIODIC_TX /* periodic machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051} periodic_states_t;
52
Joe Perches2ea24f22014-02-15 16:02:03 -080053/* mux machine states(43.4.13 in the 802.3ad standard) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054typedef enum {
55 AD_MUX_DUMMY,
Joe Perches2ea24f22014-02-15 16:02:03 -080056 AD_MUX_DETACHED, /* mux machine */
57 AD_MUX_WAITING, /* mux machine */
58 AD_MUX_ATTACHED, /* mux machine */
59 AD_MUX_COLLECTING_DISTRIBUTING /* mux machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060} mux_states_t;
61
Joe Perches2ea24f22014-02-15 16:02:03 -080062/* tx machine states(43.4.15 in the 802.3ad standard) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063typedef enum {
64 AD_TX_DUMMY,
Joe Perches2ea24f22014-02-15 16:02:03 -080065 AD_TRANSMIT /* tx Machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066} tx_states_t;
67
Mahesh Bandewar14c95512015-02-23 17:50:11 -080068/* churn machine states(43.4.17 in the 802.3ad standard) */
69typedef enum {
70 AD_CHURN_MONITOR, /* monitoring for churn */
71 AD_CHURN, /* churn detected (error) */
72 AD_NO_CHURN /* no churn (no error) */
73} churn_state_t;
74
Joe Perches2ea24f22014-02-15 16:02:03 -080075/* rx indication types */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076typedef enum {
Joe Perches2ea24f22014-02-15 16:02:03 -080077 AD_TYPE_LACPDU = 1, /* type lacpdu */
78 AD_TYPE_MARKER /* type marker */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079} pdu_type_t;
80
Joe Perches2ea24f22014-02-15 16:02:03 -080081/* rx marker indication types */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082typedef enum {
Joe Perches2ea24f22014-02-15 16:02:03 -080083 AD_MARKER_INFORMATION_SUBTYPE = 1, /* marker imformation subtype */
84 AD_MARKER_RESPONSE_SUBTYPE /* marker response subtype */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -070085} bond_marker_subtype_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Joe Perches2ea24f22014-02-15 16:02:03 -080087/* timers types(43.4.9 in the 802.3ad standard) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088typedef enum {
89 AD_CURRENT_WHILE_TIMER,
90 AD_ACTOR_CHURN_TIMER,
91 AD_PERIODIC_TIMER,
92 AD_PARTNER_CHURN_TIMER,
93 AD_WAIT_WHILE_TIMER
94} ad_timers_t;
95
96#pragma pack(1)
97
Joe Perches2ea24f22014-02-15 16:02:03 -080098/* Link Aggregation Control Protocol(LACP) data unit structure(43.4.2.2 in the 802.3ad standard) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099typedef struct lacpdu {
Joe Perches2ea24f22014-02-15 16:02:03 -0800100 u8 subtype; /* = LACP(= 0x01) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 u8 version_number;
Joe Perches2ea24f22014-02-15 16:02:03 -0800102 u8 tlv_type_actor_info; /* = actor information(type/length/value) */
103 u8 actor_information_length; /* = 20 */
Al Virod3bb52b2007-08-22 20:06:58 -0400104 __be16 actor_system_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 struct mac_addr actor_system;
Al Virod3bb52b2007-08-22 20:06:58 -0400106 __be16 actor_key;
107 __be16 actor_port_priority;
108 __be16 actor_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 u8 actor_state;
Joe Perches2ea24f22014-02-15 16:02:03 -0800110 u8 reserved_3_1[3]; /* = 0 */
111 u8 tlv_type_partner_info; /* = partner information */
112 u8 partner_information_length; /* = 20 */
Al Virod3bb52b2007-08-22 20:06:58 -0400113 __be16 partner_system_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 struct mac_addr partner_system;
Al Virod3bb52b2007-08-22 20:06:58 -0400115 __be16 partner_key;
116 __be16 partner_port_priority;
117 __be16 partner_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 u8 partner_state;
Joe Perches2ea24f22014-02-15 16:02:03 -0800119 u8 reserved_3_2[3]; /* = 0 */
120 u8 tlv_type_collector_info; /* = collector information */
121 u8 collector_information_length;/* = 16 */
Al Virod3bb52b2007-08-22 20:06:58 -0400122 __be16 collector_max_delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 u8 reserved_12[12];
Joe Perches2ea24f22014-02-15 16:02:03 -0800124 u8 tlv_type_terminator; /* = terminator */
125 u8 terminator_length; /* = 0 */
126 u8 reserved_50[50]; /* = 0 */
Vitalii Demianetsa10e1462011-05-12 23:04:29 +0000127} __packed lacpdu_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129typedef struct lacpdu_header {
Holger Eitzenbergere7271492008-12-26 13:41:53 -0800130 struct ethhdr hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 struct lacpdu lacpdu;
Vitalii Demianetsa10e1462011-05-12 23:04:29 +0000132} __packed lacpdu_header_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Joe Perches2ea24f22014-02-15 16:02:03 -0800134/* Marker Protocol Data Unit(PDU) structure(43.5.3.2 in the 802.3ad standard) */
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700135typedef struct bond_marker {
Joe Perches2ea24f22014-02-15 16:02:03 -0800136 u8 subtype; /* = 0x02 (marker PDU) */
137 u8 version_number; /* = 0x01 */
138 u8 tlv_type; /* = 0x01 (marker information) */
139 /* = 0x02 (marker response information) */
140 u8 marker_length; /* = 0x16 */
141 u16 requester_port; /* The number assigned to the port by the requester */
142 struct mac_addr requester_system; /* The requester's system id */
143 u32 requester_transaction_id; /* The transaction id allocated by the requester, */
144 u16 pad; /* = 0 */
145 u8 tlv_type_terminator; /* = 0x00 */
146 u8 terminator_length; /* = 0x00 */
147 u8 reserved_90[90]; /* = 0 */
Vitalii Demianetsa10e1462011-05-12 23:04:29 +0000148} __packed bond_marker_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700150typedef struct bond_marker_header {
Holger Eitzenbergere7271492008-12-26 13:41:53 -0800151 struct ethhdr hdr;
Mathieu Desnoyers1c3f0b82007-10-18 23:41:04 -0700152 struct bond_marker marker;
Vitalii Demianetsa10e1462011-05-12 23:04:29 +0000153} __packed bond_marker_header_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155#pragma pack()
156
157struct slave;
158struct bonding;
159struct ad_info;
160struct port;
161
162#ifdef __ia64__
163#pragma pack(8)
164#endif
165
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +0200166struct bond_3ad_stats {
167 atomic64_t lacpdu_rx;
168 atomic64_t lacpdu_tx;
169 atomic64_t lacpdu_unknown_rx;
170 atomic64_t lacpdu_illegal_rx;
171
172 atomic64_t marker_rx;
173 atomic64_t marker_tx;
174 atomic64_t marker_resp_rx;
175 atomic64_t marker_resp_tx;
176 atomic64_t marker_unknown_rx;
177};
178
Joe Perches2ea24f22014-02-15 16:02:03 -0800179/* aggregator structure(43.4.5 in the 802.3ad standard) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180typedef struct aggregator {
181 struct mac_addr aggregator_mac_address;
182 u16 aggregator_identifier;
Holger Eitzenberger1624db72008-12-26 13:27:21 -0800183 bool is_individual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 u16 actor_admin_aggregator_key;
185 u16 actor_oper_aggregator_key;
186 struct mac_addr partner_system;
187 u16 partner_system_priority;
188 u16 partner_oper_aggregator_key;
Joe Perches2ea24f22014-02-15 16:02:03 -0800189 u16 receive_state; /* BOOLEAN */
190 u16 transmit_state; /* BOOLEAN */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 struct port *lag_ports;
Joe Perches2ea24f22014-02-15 16:02:03 -0800192 /* ****** PRIVATE PARAMETERS ****** */
193 struct slave *slave; /* pointer to the bond slave that this aggregator belongs to */
194 u16 is_active; /* BOOLEAN. Indicates if this aggregator is active */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 u16 num_of_ports;
196} aggregator_t;
197
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -0800198struct port_params {
199 struct mac_addr system;
200 u16 system_priority;
201 u16 key;
202 u16 port_number;
203 u16 port_priority;
204 u16 port_state;
205};
206
Joe Perches2ea24f22014-02-15 16:02:03 -0800207/* port structure(43.4.6 in the 802.3ad standard) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208typedef struct port {
209 u16 actor_port_number;
210 u16 actor_port_priority;
Joe Perches2ea24f22014-02-15 16:02:03 -0800211 struct mac_addr actor_system; /* This parameter is added here although it is not specified in the standard, just for simplification */
212 u16 actor_system_priority; /* This parameter is added here although it is not specified in the standard, just for simplification */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 u16 actor_port_aggregator_identifier;
Holger Eitzenbergerd238d452008-12-26 11:18:15 -0800214 bool ntt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 u16 actor_admin_port_key;
216 u16 actor_oper_port_key;
217 u8 actor_admin_port_state;
218 u8 actor_oper_port_state;
Holger Eitzenberger1055c9a2008-12-17 19:07:38 -0800219
220 struct port_params partner_admin;
221 struct port_params partner_oper;
222
Holger Eitzenbergerf48127b2008-12-26 13:26:54 -0800223 bool is_enabled;
224
Joe Perches2ea24f22014-02-15 16:02:03 -0800225 /* ****** PRIVATE PARAMETERS ****** */
226 u16 sm_vars; /* all state machines variables for this port */
227 rx_states_t sm_rx_state; /* state machine rx state */
228 u16 sm_rx_timer_counter; /* state machine rx timer counter */
229 periodic_states_t sm_periodic_state; /* state machine periodic state */
230 u16 sm_periodic_timer_counter; /* state machine periodic timer counter */
231 mux_states_t sm_mux_state; /* state machine mux state */
232 u16 sm_mux_timer_counter; /* state machine mux timer counter */
233 tx_states_t sm_tx_state; /* state machine tx state */
234 u16 sm_tx_timer_counter; /* state machine tx timer counter(allways on - enter to transmit state 3 time per second) */
Mahesh Bandewar14c95512015-02-23 17:50:11 -0800235 u16 sm_churn_actor_timer_counter;
236 u16 sm_churn_partner_timer_counter;
237 u32 churn_actor_count;
238 u32 churn_partner_count;
239 churn_state_t sm_churn_actor_state;
240 churn_state_t sm_churn_partner_state;
Joe Perches2ea24f22014-02-15 16:02:03 -0800241 struct slave *slave; /* pointer to the bond slave that this port belongs to */
242 struct aggregator *aggregator; /* pointer to an aggregator that this port related to */
243 struct port *next_port_in_aggregator; /* Next port on the linked list of the parent aggregator */
244 u32 transaction_id; /* continuous number for identification of Marker PDU's; */
245 struct lacpdu lacpdu; /* the lacpdu that will be sent for this port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246} port_t;
247
Joe Perches2ea24f22014-02-15 16:02:03 -0800248/* system structure */
Holger Eitzenberger87f422f2008-12-26 13:27:57 -0800249struct ad_system {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 u16 sys_priority;
251 struct mac_addr sys_mac_addr;
Holger Eitzenberger87f422f2008-12-26 13:27:57 -0800252};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254#ifdef __ia64__
255#pragma pack()
256#endif
257
Joe Perches2ea24f22014-02-15 16:02:03 -0800258/* ========== AD Exported structures to the main bonding code ========== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259#define BOND_AD_INFO(bond) ((bond)->ad_info)
260#define SLAVE_AD_INFO(slave) ((slave)->ad_info)
261
262struct ad_bond_info {
Joe Perches2ea24f22014-02-15 16:02:03 -0800263 struct ad_system system; /* 802.3ad system structure */
Nikolay Aleksandrov949e7ce2019-01-23 19:14:50 +0200264 struct bond_3ad_stats stats;
Joe Perches2ea24f22014-02-15 16:02:03 -0800265 u32 agg_select_timer; /* Timer to select aggregator after all adapter's hand shakes */
Jiri Bohac163c8ff2014-02-14 18:13:50 +0100266 u16 aggregator_identifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267};
268
269struct ad_slave_info {
Joe Perches2ea24f22014-02-15 16:02:03 -0800270 struct aggregator aggregator; /* 802.3ad aggregator structure */
271 struct port port; /* 802.3ad port structure */
Nikolay Aleksandrov267c0952019-01-18 14:30:22 +0200272 struct bond_3ad_stats stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 u16 id;
274};
275
Mahesh Bandewar14c95512015-02-23 17:50:11 -0800276static inline const char *bond_3ad_churn_desc(churn_state_t state)
277{
278 static const char *const churn_description[] = {
279 "monitoring",
280 "churned",
281 "none",
282 "unknown"
283 };
zhong jiang31ba1912018-08-03 14:53:15 +0800284 int max_size = ARRAY_SIZE(churn_description);
Mahesh Bandewar14c95512015-02-23 17:50:11 -0800285
286 if (state >= max_size)
287 state = max_size - 1;
288
289 return churn_description[state];
290}
291
Joe Perches2ea24f22014-02-15 16:02:03 -0800292/* ========== AD Exported functions to the main bonding code ========== */
Peter Pan(潘卫平)56d00c672011-06-08 21:19:02 +0000293void bond_3ad_initialize(struct bonding *bond, u16 tick_resolution);
Joe Perches2ea24f22014-02-15 16:02:03 -0800294void bond_3ad_bind_slave(struct slave *slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295void bond_3ad_unbind_slave(struct slave *slave);
Jay Vosburgh1b76b312007-10-17 17:37:45 -0700296void bond_3ad_state_machine_handler(struct work_struct *);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800297void bond_3ad_initiate_agg_selection(struct bonding *bond, int timeout);
Mahesh Bandewar52bc6712015-10-31 12:45:11 -0700298void bond_3ad_adapter_speed_duplex_changed(struct slave *slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299void bond_3ad_handle_link_change(struct slave *slave, char link);
300int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info);
nikolay@redhat.com318debd2013-05-18 01:18:31 +0000301int __bond_3ad_get_active_agg_info(struct bonding *bond,
302 struct ad_info *ad_info);
Eric Dumazetde063b72012-06-11 19:23:07 +0000303int bond_3ad_lacpdu_recv(const struct sk_buff *skb, struct bonding *bond,
304 struct slave *slave);
Jay Vosburghff59c452006-03-27 13:27:43 -0800305int bond_3ad_set_carrier(struct bonding *bond);
Hangbin Liu3a755cd2021-08-02 11:02:19 +0800306void bond_3ad_update_lacp_active(struct bonding *bond);
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +0000307void bond_3ad_update_lacp_rate(struct bonding *bond);
Nikolay Aleksandrov5ee14e62016-02-03 13:17:01 +0100308void bond_3ad_update_ad_actor_settings(struct bonding *bond);
Nikolay Aleksandrova258aea2019-01-18 14:30:23 +0200309int bond_3ad_stats_fill(struct sk_buff *skb, struct bond_3ad_stats *stats);
310size_t bond_3ad_stats_size(void);
David S. Miller1ef80192014-11-10 13:27:49 -0500311#endif /* _NET_BOND_3AD_H */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312