23 lacp_pdu_t *lacpdu = (lacp_pdu_t *) sif->
last_rx_pkt;
26 return LACP_ERROR_UNSUPPORTED;
32 if ((lacpdu->actor.tlv_length != sizeof (lacp_actor_partner_t)) ||
33 (lacpdu->partner.tlv_length !=
sizeof (lacp_actor_partner_t)) ||
34 (lacpdu->collector.tlv_length !=
sizeof (lacp_collector_t)) ||
35 (lacpdu->terminator.tlv_length != 0))
36 return (LACP_ERROR_BAD_TLV);
39 LACP_RX_EVENT_PDU_RECEIVED, &sif->
rx_state);
41 return LACP_ERROR_NONE;
49 marker->marker_info = pkt->marker_info;
50 marker->marker_info.tlv_type = MARKER_RESPONSE_INFORMATION;
56 marker->marker_info.tlv_type = MARKER_INFORMATION;
57 marker->marker_info.requester_port = sif->
actor.port_number;
59 marker->marker_info.requester_transaction_id = sif->
marker_tx_id;
68 ethernet_marker_pdu_t *h0;
122 if ((marker->marker_info.tlv_length != sizeof (marker_information_t)) ||
123 (marker->terminator.tlv_length != 0))
124 return (LACP_ERROR_BAD_TLV);
128 return LACP_ERROR_NONE;
141 marker_pdu_t *marker;
142 uword last_packet_signature;
147 if ((sif == 0) || (sif->
mode != BOND_MODE_LACP))
149 return LACP_ERROR_DISABLED;
162 if (nbytes <
sizeof (lacp_pdu_t))
163 return LACP_ERROR_TOO_SMALL;
188 if (nbytes <
sizeof (lacp_pdu_t))
190 return LACP_ERROR_TOO_SMALL;
193 last_packet_signature =
203 e = LACP_ERROR_CACHE_HIT;
255 if (t->
len >= sizeof (lacp_pdu_t))
257 switch (lacpdu->subtype)
261 s =
format (s,
" Markerv1\n");
263 s =
format (s,
" Subtype %u, Version %u\n", marker->subtype,
264 marker->version_number);
265 s =
format (s,
" Marker Information TLV: type %u\n",
266 marker->marker_info.tlv_type);
267 s =
format (s,
" Marker Information TLV: length %u\n",
268 marker->marker_info.tlv_length);
269 s =
format (s,
" Requester port: %u\n",
270 marker->marker_info.requester_port);
272 marker->marker_info.requester_system);
273 s =
format (s,
" Requester transaction ID: %u\n",
274 marker->marker_info.requester_transaction_id);
279 s =
format (s,
" LACPv1\n");
281 s =
format (s,
" Subtype %u, Version %u\n", lacpdu->subtype,
282 lacpdu->version_number);
283 s =
format (s,
" Actor Information TLV: length %u\n",
284 lacpdu->actor.tlv_length);
286 lacpdu->actor.port_info.system);
287 s =
format (s,
" System priority %u\n",
288 ntohs (lacpdu->actor.port_info.system_priority));
289 s =
format (s,
" Key %u\n", ntohs (lacpdu->actor.port_info.key));
290 s =
format (s,
" Port priority %u\n",
291 ntohs (lacpdu->actor.port_info.port_priority));
292 s =
format (s,
" Port number %u\n",
293 ntohs (lacpdu->actor.port_info.port_number));
294 s =
format (s,
" State 0x%x\n", lacpdu->actor.port_info.state);
296 while (state_entry->
str)
298 if (lacpdu->actor.port_info.state & (1 << state_entry->
bit))
299 s =
format (s,
" %s (%d)\n", state_entry->
str,
304 s =
format (s,
" Partner Information TLV: length %u\n",
305 lacpdu->partner.tlv_length);
307 lacpdu->partner.port_info.system);
308 s =
format (s,
" System priority %u\n",
309 ntohs (lacpdu->partner.port_info.system_priority));
311 format (s,
" Key %u\n", ntohs (lacpdu->partner.port_info.key));
313 format (s,
" Port priority %u\n",
314 ntohs (lacpdu->partner.port_info.port_priority));
316 format (s,
" Port number %u\n",
317 ntohs (lacpdu->partner.port_info.port_number));
318 s =
format (s,
" State 0x%x\n", lacpdu->partner.port_info.state);
320 while (state_entry->
str)
322 if (lacpdu->partner.port_info.state & (1 << state_entry->
bit))
323 s =
format (s,
" %s (%d)\n", state_entry->
str,
334 if (t->
len > sizeof (lacp_pdu_t))
335 len =
sizeof (lacp_pdu_t);
339 for (i = 0; i < len; i++)
345 s =
format (s,
" 0x%04x: ", i);
349 s =
format (s,
"%02x", p[i]);
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
u8 last_packet_signature_valid
vnet_main_t * vnet_get_main(void)
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
lacp_state_struct lacp_state_array[]
static uword vlib_buffer_length_in_chain(vlib_main_t *vm, vlib_buffer_t *b)
Get length in bytes of the buffer chain.
format_function_t format_vnet_sw_if_index_name
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
u8 * format_ethernet_address(u8 *s, va_list *args)
void * vlib_packet_template_get_packet(vlib_main_t *vm, vlib_packet_template_t *t, u32 *bi_result)
#define VLIB_INIT_FUNCTION(x)
uword * active_slave_by_sw_if_index
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
#define vlib_call_init_function(vm, x)
u16 current_length
Nbytes between current data and the end of this buffer.
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
#define MARKER_PROTOCOL_VERSION
static clib_error_t * lacp_periodic_init(vlib_main_t *vm)
static uword vlib_buffer_contents(vlib_main_t *vm, u32 buffer_index, u8 *contents)
Copy buffer contents to memory.
#define clib_memcpy(a, b, c)
static bond_if_t * bond_get_master_by_dev_instance(u32 dev_instance)
uword hash_memory(void *p, word n_bytes, uword state)
vlib_packet_template_t marker_packet_templates[MARKER_N_PACKET_TEMPLATES]
u32 total_length_not_including_first_buffer
Only valid for first buffer in chain.
lacp_machine_t lacp_rx_machine
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
static void lacp_start_current_while_timer(vlib_main_t *vm, slave_if_t *sif, u8 expiration)
static slave_if_t * bond_get_slave_by_sw_if_index(u32 sw_if_index)
uword last_packet_signature
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
int lacp_machine_dispatch(lacp_machine_t *machine, vlib_main_t *vm, slave_if_t *sif, int event, int *state)
#define LACP_ACTOR_LACP_VERSION