1 /* Copyright 2004 Linux Networx */
10 /* Structure definitions originally taken from the linux bond_3ad driver */
12 #define SLOW_DST_MAC "\x01\x80\xc2\x00\x00\x02"
13 static const char slow_dest
[] = SLOW_DST_MAC
;
16 #define SLOW_SUBTYPE_LACP 1
17 #define SLOW_SUBTYPE_MARKER 2
24 uint16_t system_priority
;
25 uint8_t system
[ETH_ALEN
];
27 uint16_t port_priority
;
33 #define LACP_CMP_LEN (2 + 6 + 2 + 2 + 2)
34 #define LACP_CP_LEN (2 + 6 + 2 + 2 + 2 + 1)
36 /* Link Aggregation Control Protocol(LACP) data unit structure(43.4.2.2 in the 802.3ad standard) */
38 uint8_t subtype
; /* = LACP(= 0x01) */
39 uint8_t version_number
;
40 uint8_t tlv_type_actor_info
; /* = actor information(type/length/value) */
41 #define LACP_TLV_TERMINATOR 0
42 #define LACP_TLV_ACTOR 1
43 #define LACP_TLV_PARTNER 2
44 #define LACP_TLV_COLLECTOR 3
45 uint8_t actor_information_length
; /* = 20 */
46 struct lacp_info actor
;
47 uint8_t tlv_type_partner_info
; /* = partner information */
48 uint8_t partner_information_length
; /* = 20 */
49 struct lacp_info partner
;
50 uint8_t tlv_type_collector_info
; /* = collector information */
51 uint8_t collector_information_length
; /* = 16 */
52 uint16_t collector_max_delay
;
53 uint8_t reserved_12
[12];
54 uint8_t tlv_type_terminator
; /* = terminator */
55 uint8_t terminator_length
; /* = 0 */
56 uint8_t reserved_50
[50]; /* = 0 */
59 /* Marker Protocol Data Unit(PDU) structure(43.5.3.2 in the 802.3ad standard) */
61 uint8_t subtype
; /* = 0x02 (marker PDU) */
62 uint8_t version_number
; /* = 0x01 */
64 #define MARKER_TLV_TERMINATOR 0 /* marker terminator */
65 #define MARKER_TLV_INFO 1 /* marker information */
66 #define MARKER_TLV_RESPONSE 2 /* marker response information */
67 uint8_t marker_length
; /* = 0x16 */
68 uint16_t requester_port
; /* The number assigned to the port by the requester */
69 uint8_t requester_system
[ETH_ALEN
]; /* The requester's system id */
70 uint32_t requester_transaction_id
; /* The transaction id allocated by the requester, */
71 uint16_t pad
; /* = 0 */
72 uint8_t tlv_type_terminator
; /* = 0x00 */
73 uint8_t terminator_length
; /* = 0x00 */
74 uint8_t reserved_90
[90]; /* = 0 */
78 struct slow_header header
;
79 struct slow_lacp lacp
;
80 struct slow_marker marker
;
83 #define FAST_PERIODIC_TIME (1*TICKS_PER_SEC)
84 #define SLOW_PERIODIC_TIME (30*TICKS_PER_SEC)
85 #define SHORT_TIMEOUT_TIME (3*FAST_PERIODIC_TIME)
86 #define LONG_TIMEOUT_TIME (3*SLOW_PERIODIC_TIME)
87 #define CHURN_DETECTION_TIME (60*TICKS_PER_SEC)
88 #define AGGREGATE_WAIT_TIME (2*TICKS_PER_SEC)
90 #define LACP_ACTIVITY (1 << 0)
91 #define LACP_TIMEOUT (1 << 1)
92 #define LACP_AGGREGATION (1 << 2)
93 #define LACP_SYNCHRONIZATION (1 << 3)
94 #define LACP_COLLECTING (1 << 4)
95 #define LACP_DISTRIBUTING (1 << 5)
96 #define LACP_DEFAULTED (1 << 6)
97 #define LACP_EXPIRED (1 << 7)
105 struct slow_lacp pkt
;
106 unsigned long current_while_timer
; /* Time when the LACP information expires */
107 unsigned long periodic_timer
; /* Time when I need to send my partner an update */
110 static struct lacp_state lacp
;
114 static void print_lacp_state(uint8_t state
)
116 printf("%hhx", state
);
117 if (state
& LACP_ACTIVITY
) {
120 if (state
& LACP_TIMEOUT
) {
123 if (state
& LACP_AGGREGATION
) {
124 printf(" Aggregation");
126 if (state
& LACP_SYNCHRONIZATION
) {
127 printf(" Syncronization");
129 if (state
& LACP_COLLECTING
) {
130 printf(" Collecting");
132 if (state
& LACP_DISTRIBUTING
) {
133 printf(" Distributing");
135 if (state
& LACP_DEFAULTED
) {
136 printf(" Defaulted");
138 if (state
& LACP_EXPIRED
) {
144 static inline void print_lacpdu(struct slow_lacp
*pkt
)
146 printf("subtype version: %hhx %hhx\n",
147 pkt
->subtype
, pkt
->version_number
);
148 printf("actor_tlv %hhx", pkt
->tlv_type_actor_info
);
149 printf(" len: %hhx (\n", pkt
->actor_information_length
);
150 printf(" sys_pri: %hx", ntohs(pkt
->actor
.system_priority
));
151 printf(" mac: %!", pkt
->actor
.system
);
152 printf(" key: %hx", ntohs(pkt
->actor
.key
));
153 printf(" port_pri: %hx", ntohs(pkt
->actor
.port_priority
));
154 printf(" port: %hx\n", ntohs(pkt
->actor
.port
));
156 print_lacp_state(pkt
->actor
.state
);
158 printf(" reserved: %hhx %hhx %hhx\n",
159 pkt
->actor
.reserved
[0], pkt
->actor
.reserved
[1], pkt
->actor
.reserved
[2]);
162 printf("partner_tlv: %hhx", pkt
->tlv_type_partner_info
);
163 printf(" len: %hhx (\n", pkt
->partner_information_length
);
164 printf(" sys_pri: %hx", ntohs(pkt
->partner
.system_priority
));
165 printf(" mac: %!", pkt
->partner
.system
);
166 printf(" key: %hx", ntohs(pkt
->partner
.key
));
167 printf(" port_pri: %hx", ntohs(pkt
->partner
.port_priority
));
168 printf(" port: %hx\n", ntohs(pkt
->partner
.port
));
170 print_lacp_state(pkt
->partner
.state
);
172 printf(" reserved: %hhx %hhx %hhx\n",
173 pkt
->partner
.reserved
[0], pkt
->partner
.reserved
[1], pkt
->partner
.reserved
[2]);
176 printf("collector_tlv: %hhx ", pkt
->tlv_type_collector_info
);
177 printf(" len: %hhx (", pkt
->collector_information_length
);
178 printf(" max_delay: %hx", ntohs(pkt
->collector_max_delay
));
180 printf("reserved_12: %hhx %hhx %hhx %hhx %hhx %hhx %hhx %hhx %hhx %hhx %hhx %hhx\n",
181 pkt
->reserved_12
[0], pkt
->reserved_12
[1], pkt
->reserved_12
[2],
182 pkt
->reserved_12
[3], pkt
->reserved_12
[4], pkt
->reserved_12
[5],
183 pkt
->reserved_12
[6], pkt
->reserved_12
[7], pkt
->reserved_12
[8],
184 pkt
->reserved_12
[9], pkt
->reserved_12
[10], pkt
->reserved_12
[11]);
187 printf("terminator_tlv: %hhx", pkt
->tlv_type_terminator
);
188 printf(" len: %hhx ()\n", pkt
->terminator_length
);
191 static inline unsigned long lacp_timer_val(unsigned long now
, unsigned long when
)
193 return when
?(when
- now
)/TICKS_PER_SEC
: 0;
195 static void print_lacp(const char *which
, struct slow_lacp
*pkt
, unsigned long now
)
197 printf("%s\n", which
);
199 printf("timers: c %ds p %ds\n",
200 lacp_timer_val(now
, lacp
.current_while_timer
),
201 lacp_timer_val(now
, lacp
.periodic_timer
)
205 #else /* LACP_DEBUG */
206 #define print_lacp(which, pkt, now) do {} while(0)
207 #endif /* LACP_DEBUG */
209 static void lacp_init_state(const uint8_t *mac
)
211 memset(&lacp
, 0, sizeof(lacp
));
213 /* Initialize the packet constants */
214 lacp
.pkt
.subtype
= 1;
215 lacp
.pkt
.version_number
= 1;
218 /* The default state of my interface */
219 lacp
.pkt
.tlv_type_actor_info
= LACP_TLV_ACTOR
;
220 lacp
.pkt
.actor_information_length
= 0x14;
221 lacp
.pkt
.actor
.system_priority
= htons(1);
222 memcpy(lacp
.pkt
.actor
.system
, mac
, ETH_ALEN
);
223 lacp
.pkt
.actor
.key
= htons(1);
224 lacp
.pkt
.actor
.port
= htons(1);
225 lacp
.pkt
.actor
.port_priority
= htons(1);
226 lacp
.pkt
.actor
.state
=
227 LACP_SYNCHRONIZATION
|
232 /* Set my partner defaults */
233 lacp
.pkt
.tlv_type_partner_info
= LACP_TLV_PARTNER
;
234 lacp
.pkt
.partner_information_length
= 0x14;
235 lacp
.pkt
.partner
.system_priority
= htons(1);
236 /* memset(lacp.pkt.parnter_system, 0, ETH_ALEN); */
237 lacp
.pkt
.partner
.key
= htons(1);
238 lacp
.pkt
.partner
.port
= htons(1);
239 lacp
.pkt
.partner
.port_priority
= htons(1);
240 lacp
.pkt
.partner
.state
=
242 LACP_SYNCHRONIZATION
|
247 lacp
.pkt
.tlv_type_collector_info
= LACP_TLV_COLLECTOR
;
248 lacp
.pkt
.collector_information_length
= 0x10;
249 lacp
.pkt
.collector_max_delay
= htons(0x8000); /* ???? */
251 lacp
.pkt
.tlv_type_terminator
= LACP_TLV_TERMINATOR
;
252 lacp
.pkt
.terminator_length
= 0;
255 #define LACP_NTT_MASK (LACP_ACTIVITY | LACP_TIMEOUT | \
256 LACP_SYNCHRONIZATION | LACP_AGGREGATION)
258 static inline int lacp_update_ntt(struct slow_lacp
*pkt
)
261 if ((memcmp(&pkt
->partner
, &lacp
.pkt
.actor
, LACP_CMP_LEN
) != 0) ||
262 ((pkt
->partner
.state
& LACP_NTT_MASK
) !=
263 (lacp
.pkt
.actor
.state
& LACP_NTT_MASK
)))
270 static inline void lacp_record_pdu(struct slow_lacp
*pkt
)
272 memcpy(&lacp
.pkt
.partner
, &pkt
->actor
, LACP_CP_LEN
);
274 lacp
.pkt
.actor
.state
&= ~LACP_DEFAULTED
;
275 lacp
.pkt
.partner
.state
&= ~LACP_SYNCHRONIZATION
;
276 if ((memcmp(&pkt
->partner
, &lacp
.pkt
.actor
, LACP_CMP_LEN
) == 0) &&
277 ((pkt
->partner
.state
& LACP_AGGREGATION
) ==
278 (lacp
.pkt
.actor
.state
& LACP_AGGREGATION
)))
280 lacp
.pkt
.partner
.state
|= LACP_SYNCHRONIZATION
;
282 if (!(pkt
->actor
.state
& LACP_AGGREGATION
)) {
283 lacp
.pkt
.partner
.state
|= LACP_SYNCHRONIZATION
;
289 static inline int lacp_timer_expired(unsigned long now
, unsigned long when
)
291 return when
&& (now
> when
);
294 static inline void lacp_start_periodic_timer(unsigned long now
)
296 if ((lacp
.pkt
.partner
.state
& LACP_ACTIVITY
) ||
297 (lacp
.pkt
.actor
.state
& LACP_ACTIVITY
)) {
298 lacp
.periodic_timer
= now
+
299 (((lacp
.pkt
.partner
.state
& LACP_TIMEOUT
)?
300 FAST_PERIODIC_TIME
: SLOW_PERIODIC_TIME
));
304 static inline void lacp_start_current_while_timer(unsigned long now
)
306 lacp
.current_while_timer
= now
+
307 ((lacp
.pkt
.actor
.state
& LACP_TIMEOUT
) ?
308 SHORT_TIMEOUT_TIME
: LONG_TIMEOUT_TIME
);
310 lacp
.pkt
.actor
.state
&= ~LACP_EXPIRED
;
313 static void send_lacp_reports(unsigned long now
, int ntt
)
315 if (memcmp(nic
.node_addr
, lacp
.pkt
.actor
.system
, ETH_ALEN
) != 0) {
316 lacp_init_state(nic
.node_addr
);
318 /* If the remote information has expired I need to take action */
319 if (lacp_timer_expired(now
, lacp
.current_while_timer
)) {
320 if (!(lacp
.pkt
.actor
.state
& LACP_EXPIRED
)) {
321 lacp
.pkt
.partner
.state
&= ~LACP_SYNCHRONIZATION
;
322 lacp
.pkt
.partner
.state
|= LACP_TIMEOUT
;
323 lacp
.pkt
.actor
.state
|= LACP_EXPIRED
;
324 lacp
.current_while_timer
= now
+ SHORT_TIMEOUT_TIME
;
328 lacp_init_state(nic
.node_addr
);
331 /* If the periodic timer has expired I need to transmit */
332 if (lacp_timer_expired(now
, lacp
.periodic_timer
)) {
334 /* Reset by lacp_start_periodic_timer */
337 eth_transmit(slow_dest
, ETH_P_SLOW
, sizeof(lacp
.pkt
), &lacp
.pkt
);
339 /* Restart the periodic timer */
340 lacp_start_periodic_timer(now
);
342 print_lacp("Trasmitted", &lacp
.pkt
, now
);
346 static inline void send_eth_slow_reports(unsigned long now
)
348 send_lacp_reports(now
, 0);
351 static inline void process_eth_slow(unsigned short ptype
, unsigned long now
)
353 union slow_union
*pkt
;
354 if ((ptype
!= ETH_P_SLOW
) ||
355 (nic
.packetlen
< (ETH_HLEN
+ sizeof(pkt
->header
)))) {
358 pkt
= (union slow_union
*)&nic
.packet
[ETH_HLEN
];
359 if ((pkt
->header
.subtype
== SLOW_SUBTYPE_LACP
) &&
360 (nic
.packetlen
>= ETH_HLEN
+ sizeof(pkt
->lacp
))) {
362 if (memcmp(nic
.node_addr
, lacp
.pkt
.actor
.system
, ETH_ALEN
) != 0) {
363 lacp_init_state(nic
.node_addr
);
365 /* As long as nic.packet is 2 byte aligned all is good */
366 print_lacp("Received", &pkt
->lacp
, now
);
367 /* I don't actually implement the MUX or SELECT
370 * What logically happens when the client and I
371 * disagree about an aggregator is the current
372 * aggregtator is unselected. The MUX machine places
373 * me in DETACHED. The SELECT machine runs and
374 * reslects the same aggregator. If I go through
375 * these steps fast enough an outside observer can not
378 * Since the process will not generate any noticeable
379 * effect it does not need an implmenetation. This
380 * keeps the code simple and the code and binary
383 /* lacp_update_selected(&pkt->lacp); */
384 ntt
= lacp_update_ntt(&pkt
->lacp
);
385 lacp_record_pdu(&pkt
->lacp
);
386 lacp_start_current_while_timer(now
);
387 send_lacp_reports(now
, ntt
);
389 /* If we receive a marker information packet return it */
390 else if ((pkt
->header
.subtype
== SLOW_SUBTYPE_MARKER
) &&
391 (nic
.packetlen
>= ETH_HLEN
+ sizeof(pkt
->marker
)) &&
392 (pkt
->marker
.tlv_type
== MARKER_TLV_INFO
) &&
393 (pkt
->marker
.marker_length
== 0x16))
395 pkt
->marker
.tlv_type
= MARKER_TLV_RESPONSE
;
396 eth_transmit(slow_dest
, ETH_P_SLOW
,
397 sizeof(pkt
->marker
), &pkt
->marker
);
403 #define send_eth_slow_reports(now) do {} while(0)
404 #define process_eth_slow(ptype, now) do {} while(0)