FD.io VPP  v19.08.1-401-g8e4ed521a
Vector Packet Processing
vpp_echo_common.h File Reference
+ Include dependency graph for vpp_echo_common.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  echo_session_t
 
union  session_connected_bundled_msg_
 
struct  echo_proto_cb_vft_
 
struct  teardown_stat_
 
struct  echo_main_t
 
struct  echo_rpc_msg_t
 

Macros

#define vl_typedefs   /* define message structures */
 
#define vl_endianfun   /* define message structures */
 
#define vl_print(handle, ...)
 
#define vl_printfun
 
#define TIMEOUT   10.0
 
#define foreach_echo_fail_code
 
#define CHECK(fail, expected, result, _fmt, _args...)
 
#define ECHO_FAIL(fail, _fmt, _args...)
 
#define ECHO_LOG(lvl, _fmt, _args...)
 
#define ECHO_REGISTER_PROTO(proto, vft)
 

Typedefs

typedef enum echo_test_evt_ echo_test_evt_t
 
typedef union session_connected_bundled_msg_ session_connected_bundled_msg_t
 
typedef struct echo_proto_cb_vft_ echo_proto_cb_vft_t
 
typedef struct teardown_stat_ teardown_stat_t
 
typedef void(* echo_rpc_t) (void *arg, u32 opaque)
 

Enumerations

enum  echo_fail_t { foreach_echo_fail_code }
 
enum  data_source_t { ECHO_NO_DATA_SOURCE, ECHO_TEST_DATA_SOURCE, ECHO_RX_DATA_SOURCE, ECHO_INVALID_DATA_SOURCE }
 
enum  echo_close_f_t { ECHO_CLOSE_F_INVALID = 0, ECHO_CLOSE_F_PASSIVE, ECHO_CLOSE_F_ACTIVE, ECHO_CLOSE_F_NONE }
 
enum  quic_session_type_t { ECHO_SESSION_TYPE_QUIC, ECHO_SESSION_TYPE_STREAM, ECHO_SESSION_TYPE_LISTEN }
 
enum  quic_session_state_t {
  ECHO_SESSION_STATE_INITIAL, ECHO_SESSION_STATE_READY, ECHO_SESSION_STATE_AWAIT_CLOSING, ECHO_SESSION_STATE_AWAIT_DATA,
  ECHO_SESSION_STATE_CLOSING, ECHO_SESSION_STATE_CLOSED
}
 
enum  connection_state_t {
  STATE_START, STATE_ATTACHED, STATE_LISTEN, STATE_READY,
  STATE_DATA_DONE, STATE_DISCONNECTED, STATE_DETACHED
}
 
enum  echo_test_evt_ {
  ECHO_EVT_START = 1, ECHO_EVT_FIRST_QCONNECT = (1 << 1), ECHO_EVT_LAST_QCONNECTED = (1 << 2), ECHO_EVT_FIRST_SCONNECT = (1 << 3),
  ECHO_EVT_LAST_SCONNECTED = (1 << 4), ECHO_EVT_LAST_BYTE = (1 << 5), ECHO_EVT_EXIT = (1 << 6)
}
 
enum  test_return_packets_t { RETURN_PACKETS_NOTEST, RETURN_PACKETS_LOG_WRONG, RETURN_PACKETS_ASSERT }
 

Functions

u8format_ip4_address (u8 *s, va_list *args)
 
u8format_ip6_address (u8 *s, va_list *args)
 
u8format_ip46_address (u8 *s, va_list *args)
 
uword unformat_data (unformat_input_t *input, va_list *args)
 
u8format_api_error (u8 *s, va_list *args)
 
void init_error_string_table ()
 
u8echo_format_app_state (u8 *s, va_list *args)
 
uword echo_unformat_close (unformat_input_t *input, va_list *args)
 
uword echo_unformat_timing_event (unformat_input_t *input, va_list *args)
 
u8echo_format_timing_event (u8 *s, va_list *args)
 
uword unformat_transport_proto (unformat_input_t *input, va_list *args)
 
u8format_transport_proto (u8 *s, va_list *args)
 
uword unformat_ip4_address (unformat_input_t *input, va_list *args)
 
uword unformat_ip6_address (unformat_input_t *input, va_list *args)
 
void echo_session_handle_add_del (echo_main_t *em, u64 handle, u32 sid)
 
echo_session_techo_session_new (echo_main_t *em)
 
int echo_send_rpc (echo_main_t *em, void *fp, void *arg, u32 opaque)
 
echo_session_techo_get_session_from_handle (echo_main_t *em, u64 handle)
 
int wait_for_segment_allocation (u64 segment_handle)
 
int wait_for_state_change (echo_main_t *em, connection_state_t state, f64 timeout)
 
void echo_notify_event (echo_main_t *em, echo_test_evt_t e)
 
void echo_session_print_stats (echo_main_t *em, echo_session_t *session)
 
void echo_send_attach (echo_main_t *em)
 
void echo_send_detach (echo_main_t *em)
 
void echo_send_listen (echo_main_t *em)
 
void echo_send_unbind (echo_main_t *em)
 
void echo_send_connect (u8 *uri, u32 opaque)
 
void echo_send_disconnect_session (u64 handle, u32 opaque)
 
void echo_api_hookup (echo_main_t *em)
 

Variables

char * echo_fail_code_str []
 
echo_main_t echo_main
 

Macro Definition Documentation

◆ CHECK

#define CHECK (   fail,
  expected,
  result,
  _fmt,
  _args... 
)
Value:
if (expected != result) \
ECHO_FAIL (fail, "expected %d, got %d : " _fmt, expected, \
result, ##_args); \

Definition at line 104 of file vpp_echo_common.h.

◆ ECHO_FAIL

#define ECHO_FAIL (   fail,
  _fmt,
  _args... 
)
Value:
{ \
echo_main_t *em = &echo_main; \
em->has_failed = fail; \
if (vec_len(em->fail_descr)) \
em->fail_descr = format(em->fail_descr, " | %s (%d): "_fmt, \
echo_fail_code_str[fail], fail, ##_args); \
else \
em->fail_descr = format(0, "%s (%d): "_fmt, \
echo_fail_code_str[fail], fail, ##_args); \
em->time_to_stop = 1; \
if (em->log_lvl > 0) \
clib_warning ("%v", em->fail_descr); \
}
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
echo_main_t echo_main
Definition: vpp_echo.c:24
char * echo_fail_code_str[]
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)

Definition at line 109 of file vpp_echo_common.h.

◆ ECHO_LOG

#define ECHO_LOG (   lvl,
  _fmt,
  _args... 
)
Value:
{ \
echo_main_t *em = &echo_main; \
if (em->log_lvl > lvl) \
clib_warning (_fmt, ##_args); \
}
echo_main_t echo_main
Definition: vpp_echo.c:24

Definition at line 124 of file vpp_echo_common.h.

◆ ECHO_REGISTER_PROTO

#define ECHO_REGISTER_PROTO (   proto,
  vft 
)
Value:
static void __clib_constructor \
vpp_echo_init_##proto () \
{ \
echo_main_t *em = &echo_main; \
}
echo_main_t echo_main
Definition: vpp_echo.c:24
echo_proto_cb_vft_t * available_proto_cb_vft[TRANSPORT_N_PROTO]
vl_api_fib_path_nh_proto_t proto
Definition: fib_types.api:125

Definition at line 131 of file vpp_echo_common.h.

◆ foreach_echo_fail_code

#define foreach_echo_fail_code

Definition at line 40 of file vpp_echo_common.h.

◆ TIMEOUT

#define TIMEOUT   10.0

Definition at line 38 of file vpp_echo_common.h.

◆ vl_endianfun

#define vl_endianfun   /* define message structures */

Definition at line 28 of file vpp_echo_common.h.

◆ vl_print

#define vl_print (   handle,
  ... 
)

Definition at line 33 of file vpp_echo_common.h.

◆ vl_printfun

#define vl_printfun

Definition at line 34 of file vpp_echo_common.h.

◆ vl_typedefs

#define vl_typedefs   /* define message structures */

Definition at line 22 of file vpp_echo_common.h.

Typedef Documentation

◆ echo_proto_cb_vft_t

◆ echo_rpc_t

typedef void(* echo_rpc_t) (void *arg, u32 opaque)

Definition at line 343 of file vpp_echo_common.h.

◆ echo_test_evt_t

◆ session_connected_bundled_msg_t

◆ teardown_stat_t

Enumeration Type Documentation

◆ connection_state_t

Enumerator
STATE_START 
STATE_ATTACHED 
STATE_LISTEN 
STATE_READY 
STATE_DATA_DONE 
STATE_DISCONNECTED 
STATE_DETACHED 

Definition at line 189 of file vpp_echo_common.h.

◆ data_source_t

Enumerator
ECHO_NO_DATA_SOURCE 
ECHO_TEST_DATA_SOURCE 
ECHO_RX_DATA_SOURCE 
ECHO_INVALID_DATA_SOURCE 

Definition at line 156 of file vpp_echo_common.h.

◆ echo_close_f_t

Enumerator
ECHO_CLOSE_F_INVALID 
ECHO_CLOSE_F_PASSIVE 
ECHO_CLOSE_F_ACTIVE 
ECHO_CLOSE_F_NONE 

Definition at line 164 of file vpp_echo_common.h.

◆ echo_fail_t

Enumerator
foreach_echo_fail_code 

Definition at line 95 of file vpp_echo_common.h.

◆ echo_test_evt_

Enumerator
ECHO_EVT_START 
ECHO_EVT_FIRST_QCONNECT 
ECHO_EVT_LAST_QCONNECTED 
ECHO_EVT_FIRST_SCONNECT 
ECHO_EVT_LAST_SCONNECTED 
ECHO_EVT_LAST_BYTE 
ECHO_EVT_EXIT 

Definition at line 200 of file vpp_echo_common.h.

◆ quic_session_state_t

Enumerator
ECHO_SESSION_STATE_INITIAL 
ECHO_SESSION_STATE_READY 
ECHO_SESSION_STATE_AWAIT_CLOSING 
ECHO_SESSION_STATE_AWAIT_DATA 
ECHO_SESSION_STATE_CLOSING 
ECHO_SESSION_STATE_CLOSED 

Definition at line 179 of file vpp_echo_common.h.

◆ quic_session_type_t

Enumerator
ECHO_SESSION_TYPE_QUIC 
ECHO_SESSION_TYPE_STREAM 
ECHO_SESSION_TYPE_LISTEN 

Definition at line 172 of file vpp_echo_common.h.

◆ test_return_packets_t

Enumerator
RETURN_PACKETS_NOTEST 
RETURN_PACKETS_LOG_WRONG 
RETURN_PACKETS_ASSERT 

Definition at line 233 of file vpp_echo_common.h.

Function Documentation

◆ echo_api_hookup()

void echo_api_hookup ( echo_main_t em)

Definition at line 433 of file vpp_echo_bapi.c.

+ Here is the caller graph for this function:

◆ echo_format_app_state()

u8* echo_format_app_state ( u8 s,
va_list *  args 
)

Definition at line 170 of file vpp_echo_common.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_format_timing_event()

u8* echo_format_timing_event ( u8 s,
va_list *  args 
)

Definition at line 230 of file vpp_echo_common.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_get_session_from_handle()

echo_session_t* echo_get_session_from_handle ( echo_main_t em,
u64  handle 
)

Definition at line 482 of file vpp_echo_common.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_notify_event()

void echo_notify_event ( echo_main_t em,
echo_test_evt_t  e 
)

Definition at line 536 of file vpp_echo_common.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_send_attach()

void echo_send_attach ( echo_main_t em)

Definition at line 28 of file vpp_echo_bapi.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_send_connect()

void echo_send_connect ( u8 uri,
u32  opaque 
)

Definition at line 119 of file vpp_echo_bapi.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_send_detach()

void echo_send_detach ( echo_main_t em)

Definition at line 78 of file vpp_echo_bapi.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_send_disconnect_session()

void echo_send_disconnect_session ( u64  handle,
u32  opaque 
)

Definition at line 133 of file vpp_echo_bapi.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_send_listen()

void echo_send_listen ( echo_main_t em)

Definition at line 91 of file vpp_echo_bapi.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_send_rpc()

int echo_send_rpc ( echo_main_t em,
void *  fp,
void *  arg,
u32  opaque 
)

Definition at line 456 of file vpp_echo_common.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_send_unbind()

void echo_send_unbind ( echo_main_t em)

Definition at line 105 of file vpp_echo_bapi.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_session_handle_add_del()

void echo_session_handle_add_del ( echo_main_t em,
u64  handle,
u32  sid 
)

Definition at line 436 of file vpp_echo_common.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_session_new()

echo_session_t* echo_session_new ( echo_main_t em)

Definition at line 447 of file vpp_echo_common.c.

+ Here is the caller graph for this function:

◆ echo_session_print_stats()

void echo_session_print_stats ( echo_main_t em,
echo_session_t session 
)

Definition at line 548 of file vpp_echo_common.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_unformat_close()

uword echo_unformat_close ( unformat_input_t input,
va_list *  args 
)

Definition at line 192 of file vpp_echo_common.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echo_unformat_timing_event()

uword echo_unformat_timing_event ( unformat_input_t input,
va_list *  args 
)

Definition at line 207 of file vpp_echo_common.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ format_api_error()

u8* format_api_error ( u8 s,
va_list *  args 
)

Definition at line 141 of file vpp_echo_common.c.

+ Here is the call graph for this function:

◆ format_ip46_address()

u8* format_ip46_address ( u8 s,
va_list *  args 
)

Definition at line 396 of file ip6_format.c.

+ Here is the call graph for this function:

◆ format_ip4_address()

u8* format_ip4_address ( u8 s,
va_list *  args 
)

Definition at line 44 of file ip4_format.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ format_ip6_address()

u8* format_ip6_address ( u8 s,
va_list *  args 
)

Definition at line 44 of file ip6_format.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ format_transport_proto()

u8* format_transport_proto ( u8 s,
va_list *  args 
)

Definition at line 46 of file transport.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ init_error_string_table()

void init_error_string_table ( )

Definition at line 157 of file vpp_echo_common.c.

◆ unformat_data()

uword unformat_data ( unformat_input_t input,
va_list *  args 
)

Definition at line 117 of file vpp_echo_common.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_ip4_address()

uword unformat_ip4_address ( unformat_input_t input,
va_list *  args 
)

Definition at line 76 of file ip4_format.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_ip6_address()

uword unformat_ip6_address ( unformat_input_t input,
va_list *  args 
)

Definition at line 139 of file ip6_format.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_transport_proto()

uword unformat_transport_proto ( unformat_input_t input,
va_list *  args 
)

Definition at line 140 of file transport.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ wait_for_segment_allocation()

int wait_for_segment_allocation ( u64  segment_handle)

Definition at line 498 of file vpp_echo_common.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ wait_for_state_change()

int wait_for_state_change ( echo_main_t em,
connection_state_t  state,
f64  timeout 
)

Definition at line 520 of file vpp_echo_common.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Variable Documentation

◆ echo_fail_code_str

char* echo_fail_code_str[]

Definition at line 21 of file vpp_echo_common.c.

◆ echo_main

echo_main_t echo_main

Definition at line 24 of file vpp_echo.c.