84 return VNET_API_ERROR_BFD_ENOENT;
100 BFD_DBG (
"UDP echo source not set - echo not available");
113 if (BFD_TRANSPORT_UDP4 == transport)
121 if (ia->address_length <= 31)
128 else if (BFD_TRANSPORT_UDP6 == transport)
136 if (ia->address_length <= 127)
144 BFD_DBG (
"No usable IP address for UDP echo - echo not available");
159 return 49152 + bs_idx % (65535 - 49152 + 1);
167 BFD_ERR (
"cannot find ip4 address, echo source not set");
178 ip_interface_address_get_address (&im->lookup_main, ia);
179 if (ia->address_length <= 31)
181 addr->as_u32 = clib_host_to_net_u32 (x->as_u32);
187 addr->as_u32 = clib_net_to_host_u32 (addr->as_u32);
192 BFD_ERR (
"cannot find ip4 address, no usable address found");
201 BFD_ERR (
"cannot find ip6 address, echo source not set");
212 ip_interface_address_get_address (&im->lookup_main, ia);
213 if (ia->address_length <= 127)
216 addr->as_u8[15] ^= 1;
221 BFD_ERR (
"cannot find ip6 address, no usable address found");
248 const bfd_udp_key_t *key = &bus->
key;
251 b->
flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
261 ip4_udp_headers *headers =
NULL;
264 memset (headers, 0,
sizeof (*headers));
265 headers->ip4.ip_version_and_header_length = 0x45;
266 headers->ip4.ttl = 255;
267 headers->ip4.protocol = IP_PROTOCOL_UDP;
268 headers->udp.src_port =
277 headers->ip4.dst_address.as_u32 = key->local_addr.ip4.as_u32;
278 headers->udp.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_bfd_echo4);
282 headers->ip4.src_address.as_u32 = key->local_addr.ip4.as_u32;
283 headers->ip4.dst_address.as_u32 = key->peer_addr.ip4.as_u32;
284 headers->udp.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_bfd4);
290 headers->ip4.length = clib_host_to_net_u16 (ip_length);
293 const u16 udp_length = ip_length - (
sizeof (headers->ip4));
294 headers->udp.length = clib_host_to_net_u16 (udp_length);
303 const bfd_udp_key_t *key = &bus->
key;
306 b->
flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
316 ip6_udp_headers *headers =
NULL;
319 memset (headers, 0,
sizeof (*headers));
320 headers->ip6.ip_version_traffic_class_and_flow_label =
321 clib_host_to_net_u32 (0x6 << 28);
322 headers->ip6.hop_limit = 255;
323 headers->ip6.protocol = IP_PROTOCOL_UDP;
324 headers->udp.src_port =
333 clib_memcpy (&headers->ip6.dst_address, &key->local_addr.ip6,
334 sizeof (headers->ip6.dst_address));
336 headers->udp.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_bfd_echo6);
340 clib_memcpy (&headers->ip6.src_address, &key->local_addr.ip6,
341 sizeof (headers->ip6.src_address));
342 clib_memcpy (&headers->ip6.dst_address, &key->peer_addr.ip6,
343 sizeof (headers->ip6.dst_address));
344 headers->udp.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_bfd6);
348 const u16 udp_length =
350 headers->udp.length = clib_host_to_net_u16 (udp_length);
351 headers->ip6.payload_length = headers->udp.length;
355 headers->udp.checksum =
358 if (headers->udp.checksum == 0)
360 headers->udp.checksum = 0xffff;
385 case BFD_TRANSPORT_UDP4:
388 case BFD_TRANSPORT_UDP6:
396 case BFD_TRANSPORT_UDP4:
399 case BFD_TRANSPORT_UDP6:
448 const ip46_address_t * local_addr,
449 const ip46_address_t * peer_addr)
451 memset (key, 0,
sizeof (*key));
452 key->sw_if_index = sw_if_index;
453 key->local_addr.as_u64[0] = local_addr->as_u64[0];
454 key->local_addr.as_u64[1] = local_addr->as_u64[1];
455 key->peer_addr.as_u64[0] = peer_addr->as_u64[0];
456 key->peer_addr.as_u64[1] = peer_addr->as_u64[1];
461 u32 desired_min_tx_usec,
462 u32 required_min_rx_usec,
u8 detect_mult,
463 const ip46_address_t * local_addr,
464 const ip46_address_t * peer_addr,
471 t = BFD_TRANSPORT_UDP6;
477 return VNET_API_ERROR_BFD_EAGAIN;
480 memset (bus, 0,
sizeof (*bus));
481 bfd_udp_key_t *key = &bus->
key;
487 "duplicate bfd-udp session, existing bs_idx=%d",
490 return VNET_API_ERROR_BFD_EEXIST;
493 BFD_DBG (
"session created, bs_idx=%u, sw_if_index=%d, local=%U, peer=%U",
499 if (BFD_TRANSPORT_UDP4 == t)
504 BFD_DBG (
"adj_nbr_add_or_lock(FIB_PROTOCOL_IP4, VNET_LINK_IP4, %U, %d) " 513 BFD_DBG (
"adj_nbr_add_or_lock(FIB_PROTOCOL_IP6, VNET_LINK_IP6, %U, %d) " 519 required_min_rx_usec, detect_mult);
524 const ip46_address_t * local_addr,
525 const ip46_address_t * peer_addr)
530 u8 local_ip_valid = 0;
535 "got NULL sw_if when getting interface by index %u",
537 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
544 "IP family mismatch (local is ipv4, peer is ipv6)");
545 return VNET_API_ERROR_INVALID_ARGUMENT;
553 ip_interface_address_get_address (&im->lookup_main, ia);
554 if (x->as_u32 == local_addr->ip4.as_u32)
568 "IP family mismatch (local is ipv6, peer is ipv4)");
569 return VNET_API_ERROR_INVALID_ARGUMENT;
576 ip_interface_address_get_address (&im->lookup_main, ia);
577 if (local_addr->ip6.as_u64[0] == x->as_u64[0] &&
578 local_addr->ip6.as_u64[1] == x->as_u64[1])
591 "local address %U not found on interface with index %u",
594 return VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
602 const ip46_address_t * local_addr,
603 const ip46_address_t * peer_addr,
621 "BFD session not found, sw_if_index=%u, local=%U, peer=%U",
625 return VNET_API_ERROR_BFD_ENOENT;
633 u32 required_min_rx_usec,
u8 detect_mult,
634 const ip46_address_t * local_addr,
635 const ip46_address_t * peer_addr)
647 return VNET_API_ERROR_INVALID_ARGUMENT;
649 if (desired_min_tx_usec < 1)
652 return VNET_API_ERROR_INVALID_ARGUMENT;
669 const ip46_address_t * peer_addr,
670 u32 desired_min_tx_usec,
u32 required_min_rx_usec,
671 u8 detect_mult,
u8 is_authenticated,
u32 conf_key_id,
676 required_min_rx_usec, detect_mult,
677 local_addr, peer_addr);
684 required_min_rx_usec, detect_mult,
685 local_addr, peer_addr, &bs);
687 if (!rv && is_authenticated)
694 "SSL missing, cannot add authenticated BFD session");
695 rv = VNET_API_ERROR_BFD_NOTSUPP;
712 const ip46_address_t * local_addr,
713 const ip46_address_t * peer_addr,
714 u32 desired_min_tx_usec,
715 u32 required_min_rx_usec,
u8 detect_mult)
727 desired_min_tx_usec, required_min_rx_usec,
733 const ip46_address_t * local_addr,
734 const ip46_address_t * peer_addr)
750 const ip46_address_t * local_addr,
751 const ip46_address_t * peer_addr,
u8 admin_up_down)
767 const ip46_address_t * local_addr,
768 const ip46_address_t * peer_addr,
769 u32 conf_key_id,
u8 key_id,
u8 is_delayed)
783 "SSL missing, cannot activate BFD authentication");
784 return VNET_API_ERROR_BFD_NOTSUPP;
790 const ip46_address_t * local_addr,
791 const ip46_address_t * peer_addr,
u8 is_delayed)
813 #define foreach_bfd_udp_error(F) \ 814 F (NONE, "good bfd packets (processed)") \ 815 F (BAD, "invalid bfd packets") 817 #define F(sym, string) static char BFD_UDP_ERR_##sym##_STR[] = string; 822 #define F(sym, string) BFD_UDP_ERR_##sym##_STR, 829 #define F(sym, str) BFD_UDP_ERROR_##sym, 836 #define foreach_bfd_udp_echo_error(F) \ 837 F (NONE, "good bfd echo packets (processed)") \ 838 F (BAD, "invalid bfd echo packets") 840 #define F(sym, string) static char BFD_UDP_ECHO_ERR_##sym##_STR[] = string; 845 #define F(sym, string) BFD_UDP_ECHO_ERR_##sym##_STR, 852 #define F(sym, str) BFD_UDP_ECHO_ERROR_##sym, 855 BFD_UDP_ECHO_N_ERROR,
864 if (start < 0 && start <
sizeof (b->
pre_data))
866 BFD_ERR (
"Start of ip header is before pre_data, ignoring");
874 BFD_ERR (
"Start of ip header is beyond current data, ignoring");
882 static bfd_udp_error_t
887 const bfd_udp_key_t *key = &bus->
key;
890 BFD_ERR (
"IPv4 src addr mismatch, got %U, expected %U",
892 key->peer_addr.ip4.as_u8);
893 return BFD_UDP_ERROR_BAD;
897 BFD_ERR (
"IPv4 dst addr mismatch, got %U, expected %U",
899 key->local_addr.ip4.as_u8);
900 return BFD_UDP_ERROR_BAD;
902 const u8 expected_ttl = 255;
903 if (ip4->
ttl != expected_ttl)
905 BFD_ERR (
"IPv4 unexpected TTL value %u, expected %u", ip4->
ttl,
907 return BFD_UDP_ERROR_BAD;
909 if (clib_net_to_host_u16 (udp->
src_port) < 49152)
911 BFD_ERR (
"Invalid UDP src port %u, out of range <49152,65535>",
914 return BFD_UDP_ERROR_NONE;
942 static bfd_udp_error_t
950 (
"Payload size %d too small to hold bfd packet of minimum size %d",
952 return BFD_UDP_ERROR_BAD;
959 BFD_ERR (
"Couldn't find ip4 or udp header");
960 return BFD_UDP_ERROR_BAD;
962 const u32 udp_payload_length = udp->
length -
sizeof (*udp);
963 if (pkt->head.length > udp_payload_length)
966 (
"BFD packet length is larger than udp payload length (%u > %u)",
967 pkt->head.length, udp_payload_length);
968 return BFD_UDP_ERROR_BAD;
972 return BFD_UDP_ERROR_BAD;
977 BFD_DBG (
"Looking up BFD session using discriminator %u",
984 memset (&key, 0,
sizeof (key));
988 BFD_DBG (
"Looking up BFD session using key (sw_if_index=%u, local=%U, " 996 BFD_ERR (
"BFD session lookup failed - no session matches BFD pkt");
997 return BFD_UDP_ERROR_BAD;
1002 BFD_ERR (
"Packet verification failed, dropping packet");
1003 return BFD_UDP_ERROR_BAD;
1005 bfd_udp_error_t err;
1012 return BFD_UDP_ERROR_NONE;
1021 if (start < 0 && start <
sizeof (b->
pre_data))
1023 BFD_ERR (
"Start of ip header is before pre_data, ignoring");
1031 BFD_ERR (
"Start of ip header is beyond current data, ignoring");
1036 if ((*ip6)->protocol != IP_PROTOCOL_UDP)
1038 BFD_ERR (
"Unexpected protocol in IPv6 header '%u', expected '%u' (== " 1039 "IP_PROTOCOL_UDP)", (*ip6)->protocol, IP_PROTOCOL_UDP);
1047 static bfd_udp_error_t
1052 const bfd_udp_key_t *key = &bus->
key;
1056 BFD_ERR (
"IP src addr mismatch, got %U, expected %U",
1058 &key->peer_addr.ip6);
1059 return BFD_UDP_ERROR_BAD;
1064 BFD_ERR (
"IP dst addr mismatch, got %U, expected %U",
1066 &key->local_addr.ip6);
1067 return BFD_UDP_ERROR_BAD;
1069 const u8 expected_hop_limit = 255;
1070 if (ip6->
hop_limit != expected_hop_limit)
1072 BFD_ERR (
"IPv6 unexpected hop-limit value %u, expected %u",
1074 return BFD_UDP_ERROR_BAD;
1076 if (clib_net_to_host_u16 (udp->
src_port) < 49152)
1078 BFD_ERR (
"Invalid UDP src port %u, out of range <49152,65535>",
1081 return BFD_UDP_ERROR_NONE;
1084 static bfd_udp_error_t
1092 (
"Payload size %d too small to hold bfd packet of minimum size %d",
1094 return BFD_UDP_ERROR_BAD;
1101 BFD_ERR (
"Couldn't find ip6 or udp header");
1102 return BFD_UDP_ERROR_BAD;
1104 const u32 udp_payload_length = udp->
length -
sizeof (*udp);
1105 if (pkt->head.length > udp_payload_length)
1108 (
"BFD packet length is larger than udp payload length (%u > %u)",
1109 pkt->head.length, udp_payload_length);
1110 return BFD_UDP_ERROR_BAD;
1114 return BFD_UDP_ERROR_BAD;
1119 BFD_DBG (
"Looking up BFD session using discriminator %u",
1126 memset (&key, 0,
sizeof (key));
1132 BFD_DBG (
"Looking up BFD session using key (sw_if_index=%u, local=%U, " 1140 BFD_ERR (
"BFD session lookup failed - no session matches BFD pkt");
1141 return BFD_UDP_ERROR_BAD;
1146 BFD_ERR (
"Packet verification failed, dropping packet");
1147 return BFD_UDP_ERROR_BAD;
1149 bfd_udp_error_t err;
1156 return BFD_UDP_ERROR_NONE;
1167 u32 n_left_from, *from;
1173 while (n_left_from > 0)
1185 if (b0->
flags & VLIB_BUFFER_IS_TRACED)
1190 :
sizeof (t0->
data);
1207 if (BFD_UDP_ERROR_NONE == error0)
1269 .name =
"bfd-udp4-input",
1270 .vector_size =
sizeof (
u32),
1273 .n_errors = BFD_UDP_N_ERROR,
1297 .name =
"bfd-udp6-input",
1298 .vector_size =
sizeof (
u32),
1301 .n_errors = BFD_UDP_N_ERROR,
1324 u32 n_left_from, *from;
1330 while (n_left_from > 0)
1340 if (b0->
flags & VLIB_BUFFER_IS_TRACED)
1345 :
sizeof (t0->
data);
1397 s =
format (s,
"BFD ECHO:\n");
1410 .name =
"bfd-udp-echo4-input",
1411 .vector_size =
sizeof (
u32),
1414 .n_errors = BFD_UDP_ECHO_N_ERROR,
1439 .name =
"bfd-udp-echo6-input",
1440 .vector_size =
sizeof (
u32),
1443 .n_errors = BFD_UDP_ECHO_N_ERROR,
1444 .error_strings = bfd_udp_echo_error_strings,
1464 BFD_DBG (
"sw_if_add_del called, sw_if_index=%u, is_create=%u", sw_if_index,
1471 if (bs->transport != BFD_TRANSPORT_UDP4 &&
1472 bs->transport != BFD_TRANSPORT_UDP6)
1475 if (bs->
udp.
key.sw_if_index != sw_if_index)
1485 "removal of sw_if_index=%u forces removal of bfd session " 1486 "with bs_idx=%u", sw_if_index, (*bs)->bs_idx);
1502 sizeof (bfd_udp_key_t));
vlib_log_class_t vlib_log_register_class(char *class, char *subclass)
static clib_error_t * bfd_udp_init(vlib_main_t *vm)
vnet_api_error_t bfd_udp_auth_activate(u32 sw_if_index, const ip46_address_t *local_addr, const ip46_address_t *peer_addr, u32 conf_key_id, u8 key_id, u8 is_delayed)
activate authentication for existing session
#define foreach_ip_interface_address(lm, a, sw_if_index, loop, body)
static uword bfd_udp_input(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f, int is_ipv6)
bfd_session_t * bfd_get_session(bfd_main_t *bm, bfd_transport_e t)
static char * bfd_udp_echo_error_strings[]
static vnet_api_error_t bfd_api_verify_common(u32 sw_if_index, u32 desired_min_tx_usec, u32 required_min_rx_usec, u8 detect_mult, const ip46_address_t *local_addr, const ip46_address_t *peer_addr)
void bfd_consume_pkt(bfd_main_t *bm, const bfd_pkt_t *pkt, u32 bs_idx)
static uword bfd_udp_echo6_input(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
static void vlib_set_next_frame_buffer(vlib_main_t *vm, vlib_node_runtime_t *node, u32 next_index, u32 buffer_index)
vnet_main_t * vnet_get_main(void)
bfd_session_t * bfd_find_session_by_disc(bfd_main_t *bm, u32 disc)
Definitions for all things IP (v4|v6) unicast and multicast lookup related.
uword mhash_unset(mhash_t *h, void *key, uword *old_value)
int bfd_verify_pkt_common(const bfd_pkt_t *pkt)
verify bfd packet - common checks
This packet is to be rewritten and forwarded to the next processing node.
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
static vlib_node_registration_t bfd_udp4_input_node
(constructor) VLIB_REGISTER_NODE (bfd_udp4_input_node)
void bfd_put_session(bfd_main_t *bm, bfd_session_t *bs)
ip_lookup_main_t lookup_main
static vlib_node_registration_t bfd_udp6_input_node
(constructor) VLIB_REGISTER_NODE (bfd_udp6_input_node)
static bfd_udp_error_t bfd_udp6_scan(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_buffer_t *b, bfd_session_t **bs_out)
#define foreach_bfd_udp_error(F)
void bfd_init_final_control_frame(vlib_main_t *vm, vlib_buffer_t *b, bfd_main_t *bm, bfd_session_t *bs, int is_local)
VNET_SW_INTERFACE_ADD_DEL_FUNCTION(bfd_udp_sw_if_add_del)
static uword bfd_udp4_input(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
vlib_error_t * errors
Vector of errors for this node.
static uword vlib_buffer_length_in_chain(vlib_main_t *vm, vlib_buffer_t *b)
Get length in bytes of the buffer chain.
u32 echo_source_sw_if_index
static vnet_api_error_t bfd_udp_validate_api_input(u32 sw_if_index, const ip46_address_t *local_addr, const ip46_address_t *peer_addr)
static uword bfd_udp_echo_input(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f, int is_ipv6)
int bfd_add_udp4_transport(vlib_main_t *vm, u32 bi, const bfd_session_t *bs, int is_echo)
#define foreach_bfd_udp_echo_error(F)
void bfd_udp_get_echo_source(int *is_set, u32 *sw_if_index, int *have_usable_ip4, ip4_address_t *ip4, int *have_usable_ip6, ip6_address_t *ip6)
get echo source information - used by CLI
vnet_api_error_t bfd_auth_deactivate(bfd_session_t *bs, u8 is_delayed)
mhash_t bfd_session_idx_by_bfd_key
static ip_adjacency_t * adj_get(adj_index_t adj_index)
Get a pointer to an adjacency object from its index.
vnet_api_error_t bfd_udp_del_echo_source(u32 sw_if_index)
static char * bfd_udp_error_strings[]
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
static void bfd_udp6_find_headers(vlib_buffer_t *b, ip6_header_t **ip6, udp_header_t **udp)
#define VLIB_INIT_FUNCTION(x)
vnet_api_error_t bfd_udp_mod_session(u32 sw_if_index, const ip46_address_t *local_addr, const ip46_address_t *peer_addr, u32 desired_min_tx_usec, u32 required_min_rx_usec, u8 detect_mult)
modify existing session
static void bfd_udp4_find_headers(vlib_buffer_t *b, ip4_header_t **ip4, udp_header_t **udp)
static bfd_session_t * bfd_lookup_session(bfd_udp_main_t *bum, const bfd_udp_key_t *key)
int bfd_transport_udp4(vlib_main_t *vm, u32 bi, const struct bfd_session_s *bs)
transport packet over udpv4
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
UDP transport specific data embedded in bfd_session's union.
void vl_api_rpc_call_main_thread(void *fp, u8 *data, u32 data_length)
u8 pre_data[VLIB_BUFFER_PRE_DATA_SIZE]
Space for inserting data before buffer start.
void adj_unlock(adj_index_t adj_index)
Release a reference counting lock on the adjacency.
static void bfd_rpc_update_session_cb(const bfd_rpc_update_t *a)
#define vlib_log_debug(...)
bfd_session_t * bfd_find_session_by_idx(bfd_main_t *bm, uword bs_idx)
static vnet_api_error_t bfd_udp_find_session_by_api_input(u32 sw_if_index, const ip46_address_t *local_addr, const ip46_address_t *peer_addr, bfd_session_t **bs_out)
bfd_session_t * sessions
pool of bfd sessions context data
bfd_udp_key_t key
key identifying this session
bfd_transport_e transport
transport type for this session
u16 current_length
Nbytes between current data and the end of this buffer.
vnet_api_error_t bfd_udp_set_echo_source(u32 sw_if_index)
set echo-source interface
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
static vlib_node_registration_t bfd_udp_echo4_input_node
(constructor) VLIB_REGISTER_NODE (bfd_udp_echo4_input_node)
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
u8 * bfd_echo_input_format_trace(u8 *s, va_list *args)
vnet_api_error_t bfd_udp_add_session(u32 sw_if_index, const ip46_address_t *local_addr, const ip46_address_t *peer_addr, u32 desired_min_tx_usec, u32 required_min_rx_usec, u8 detect_mult, u8 is_authenticated, u32 conf_key_id, u8 bfd_key_id)
create a new bfd session
static uword mhash_set(mhash_t *h, void *key, uword new_value, uword *old_value)
static bfd_udp_error_t bfd_udp4_scan(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_buffer_t *b, bfd_session_t **bs_out)
int bfd_transport_udp6(vlib_main_t *vm, u32 bi, const struct bfd_session_s *bs)
transport packet over udpv6
int bfd_add_udp6_transport(vlib_main_t *vm, u32 bi, const bfd_session_t *bs, int is_echo)
vlib_error_t error
Error code for buffers to be enqueued to error handler.
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
void bfd_session_start(bfd_main_t *bm, bfd_session_t *bs)
#define ip46_address_is_ip4(ip46)
int bfd_udp_get_echo_src_ip6(ip6_address_t *addr)
This packet matches an "incomplete adjacency" and packets need to be passed to ARP to find rewrite st...
#define VLIB_REGISTER_NODE(x,...)
void mhash_init(mhash_t *h, uword n_value_bytes, uword n_key_bytes)
vlib_log_class_t log_class
static void bfd_create_frame_to_next_node(vlib_main_t *vm, u32 bi, u32 next_node)
static uword bfd_udp6_input(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
u8 * format_bfd_session(u8 *s, va_list *args)
#define clib_memcpy(a, b, c)
static vnet_sw_interface_t * vnet_get_sw_interface_safe(vnet_main_t *vnm, u32 sw_if_index)
vnet_api_error_t bfd_auth_activate(bfd_session_t *bs, u32 conf_key_id, u8 bfd_key_id, u8 is_delayed)
vlib_node_t * vlib_get_node_by_name(vlib_main_t *vm, u8 *name)
static clib_error_t * bfd_udp_sw_if_add_del(vnet_main_t *vnm, u32 sw_if_index, u32 is_create)
u8 * bfd_input_format_trace(u8 *s, va_list *args)
int bfd_udp_get_echo_src_ip4(ip4_address_t *addr)
u16 ip6_tcp_udp_icmp_compute_checksum(vlib_main_t *vm, vlib_buffer_t *p0, ip6_header_t *ip0, int *bogus_lengthp)
vlib buffer structure definition and a few select access methods.
#define VNET_SW_INTERFACE_FLAG_ADMIN_UP
static bfd_udp_error_t bfd_udp6_verify_transport(const ip6_header_t *ip6, const udp_header_t *udp, const bfd_session_t *bs)
static uword * mhash_get(mhash_t *h, const void *key)
ip_lookup_main_t lookup_main
int bfd_udp_is_echo_available(bfd_transport_e transport)
check if the bfd udp layer is echo-capable at this time
static bfd_udp_error_t bfd_udp4_verify_transport(const ip4_header_t *ip4, const udp_header_t *udp, const bfd_session_t *bs)
adj_index_t adj_index
adjacency index returned from adj lock call
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
static vlib_node_registration_t bfd_udp_echo6_input_node
(constructor) VLIB_REGISTER_NODE (bfd_udp_echo6_input_node)
bfd_udp_main_t bfd_udp_main
static u16 bfd_udp_bs_idx_to_sport(u32 bs_idx)
vnet_api_error_t bfd_udp_session_set_flags(u32 sw_if_index, const ip46_address_t *local_addr, const ip46_address_t *peer_addr, u8 admin_up_down)
set session admin down/up
int bfd_consume_echo_pkt(bfd_main_t *bm, vlib_buffer_t *b)
vnet_api_error_t bfd_session_set_params(bfd_main_t *bm, bfd_session_t *bs, u32 desired_min_tx_usec, u32 required_min_rx_usec, u8 detect_mult)
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
struct _vlib_node_registration vlib_node_registration_t
static vnet_api_error_t bfd_udp_add_session_internal(bfd_udp_main_t *bum, u32 sw_if_index, u32 desired_min_tx_usec, u32 required_min_rx_usec, u8 detect_mult, const ip46_address_t *local_addr, const ip46_address_t *peer_addr, bfd_session_t **bs_out)
BFD UDP transport layer declarations.
ip_lookup_next_t lookup_next_index
Next hop after ip4-lookup.
int bfd_udp_calc_next_node(const struct bfd_session_s *bs, u32 *next_node)
static void bfd_udp_del_session_internal(bfd_session_t *bs)
#define vlib_log_info(...)
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
vnet_api_error_t bfd_udp_del_session(u32 sw_if_index, const ip46_address_t *local_addr, const ip46_address_t *peer_addr)
delete existing session
u8 bfd_pkt_get_poll(const bfd_pkt_t *pkt)
u32 bs_idx
index in bfd_main.sessions pool
ip4_main_t ip4_main
Global ip4 main structure.
static void bfd_udp_key_init(bfd_udp_key_t *key, u32 sw_if_index, const ip46_address_t *local_addr, const ip46_address_t *peer_addr)
#define STRUCT_SIZE_OF(t, f)
adj_index_t adj_nbr_add_or_lock(fib_protocol_t nh_proto, vnet_link_t link_type, const ip46_address_t *nh_addr, u32 sw_if_index)
Neighbour Adjacency sub-type.
#define vec_foreach(var, vec)
Vector iterator.
#define vlib_log_err(...)
int bfd_verify_pkt_auth(const bfd_pkt_t *pkt, u16 pkt_size, bfd_session_t *bs)
verify bfd packet - authentication
void udp_register_dst_port(vlib_main_t *vm, udp_dst_port_t dst_port, u32 node_index, u8 is_ip4)
static void bfd_rpc_update_session(u32 bs_idx, const bfd_pkt_t *pkt)
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
vnet_api_error_t bfd_udp_auth_deactivate(u32 sw_if_index, const ip46_address_t *local_addr, const ip46_address_t *peer_addr, u8 is_delayed)
deactivate authentication for existing session
static uword bfd_udp_echo4_input(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
static u16 ip4_header_checksum(ip4_header_t *i)
void bfd_session_set_flags(bfd_session_t *bs, u8 admin_up_down)
#define vlib_log_notice(...)