25 #define ECHO_CLIENT_DBG (0) 49 int test_buf_len, test_buf_offset, rv;
52 test_buf_len =
vec_len (test_data);
54 test_buf_offset = s->
bytes_sent % test_buf_len;
55 bytes_this_chunk =
clib_min (test_buf_len - test_buf_offset,
67 session_fifo_event_t evt;
81 session_dgram_hdr_t hdr;
86 if (max_enqueue <=
sizeof (session_dgram_hdr_t))
89 max_enqueue -=
sizeof (session_dgram_hdr_t);
90 rv =
clib_min (max_enqueue, bytes_this_chunk);
103 session_fifo_event_t evt;
111 bytes_this_chunk, 0);
126 .format =
"tx-enq: xfer %d bytes, sent %u remain %u",
127 .format_args =
"i4i4i4",
171 .format =
"rx-deq: %d bytes",
180 ed->data[0] = n_read;
185 for (i = 0; i < n_read; i++)
187 if (ecm->
rx_buf[thread_index][i]
190 clib_warning (
"read %d error at byte %lld, 0x%x not 0x%x",
192 ecm->
rx_buf[thread_index][i],
198 ASSERT (n_read <= s->bytes_to_receive);
213 u32 *connection_indices;
214 u32 *connections_this_batch;
215 u32 nconnections_this_batch;
218 connections_this_batch =
222 ((
vec_len (connection_indices) == 0)
223 &&
vec_len (connections_this_batch) == 0))
229 nconnections_this_batch =
232 ASSERT (nconnections_this_batch > 0);
233 vec_validate (connections_this_batch, nconnections_this_batch - 1);
235 connection_indices +
vec_len (connection_indices)
236 - nconnections_this_batch,
237 nconnections_this_batch *
sizeof (
u32));
238 _vec_len (connection_indices) -= nconnections_this_batch;
257 for (i = 0; i <
vec_len (connections_this_batch); i++)
307 connections_this_batch;
315 .name =
"echo-clients",
317 .state = VLIB_NODE_STATE_DISABLED,
353 for (i = 0; i < num_threads; i++)
395 memset (session, 0,
sizeof (*session));
396 session_index = session - ecm->
sessions;
399 session->
data.rx_fifo = s->server_rx_fifo;
400 session->
data.rx_fifo->client_session_index = session_index;
401 session->
data.tx_fifo = s->server_tx_fifo;
402 session->
data.tx_fifo->client_session_index = session_index;
411 sizeof (session->
data.transport));
412 session->
data.is_dgram = 1;
460 s->server_rx_fifo->client_session_index);
465 session_fifo_event_t evt;
469 evt.fifo = s->server_rx_fifo;
502 u32 prealloc_fifos, segment_size = 256 << 20;
508 memset (a, 0,
sizeof (*a));
509 memset (options, 0,
sizeof (options));
533 a->options = options;
534 a->namespace_id = appns_id;
589 memset (a, 0,
sizeof (*a));
590 for (i = 0; i < n_clients; i++)
611 #define ec_cli_output(_fmt, _args...) \ 612 if (!ecm->no_output) \ 613 vlib_cli_output(vm, _fmt, ##_args) 621 u64 tmp, total_bytes, appns_flags = 0, appns_secret = 0;
622 f64 test_timeout = 20.0, syn_timeout = 20.0, delta;
623 char *default_uri =
"tcp://6.0.1.1/1234";
624 uword *event_data = 0, event_type;
625 f64 time_before_connects;
627 int preallocate_sessions = 0;
654 else if (
unformat (input,
"nclients %d", &n_clients))
656 else if (
unformat (input,
"mbytes %lld", &tmp))
658 else if (
unformat (input,
"gbytes %lld", &tmp))
662 else if (
unformat (input,
"test-timeout %f", &test_timeout))
664 else if (
unformat (input,
"syn-timeout %f", &syn_timeout))
666 else if (
unformat (input,
"no-return"))
670 else if (
unformat (input,
"private-segment-count %d",
673 else if (
unformat (input,
"private-segment-size %U",
676 if (tmp >= 0x100000000ULL)
678 (0,
"private segment size %lld (%llu) too large", tmp, tmp);
681 else if (
unformat (input,
"preallocate-fifos"))
683 else if (
unformat (input,
"preallocate-sessions"))
684 preallocate_sessions = 1;
688 else if (
unformat (input,
"appns %_%v%_", &appns_id))
690 else if (
unformat (input,
"all-scope"))
691 appns_flags |= (APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE
692 | APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE);
693 else if (
unformat (input,
"local-scope"))
694 appns_flags = APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
695 else if (
unformat (input,
"global-scope"))
696 appns_flags = APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
697 else if (
unformat (input,
"secret %lu", &appns_secret))
699 else if (
unformat (input,
"no-output"))
701 else if (
unformat (input,
"test-bytes"))
728 clib_warning (
"No uri provided. Using default: %s", default_uri);
735 #if ECHO_CLIENT_PTHREAD 758 VLIB_NODE_STATE_POLLING);
760 if (preallocate_sessions)
783 ec_cli_output (
"%d three-way handshakes in %.2f seconds %.2f/s",
784 n_clients, delta, ((
f64) n_clients) / delta);
825 transfer_type = ecm->
no_return ?
"half-duplex" :
"full-duplex";
826 ec_cli_output (
"%lld bytes (%lld mbytes, %lld gbytes) in %.2f seconds",
827 total_bytes, total_bytes / (1ULL << 20),
828 total_bytes / (1ULL << 30), delta);
832 (((
f64) total_bytes * 8.0) / delta / 1e9),
873 .path =
"test echo clients",
874 .short_help =
"test echo clients [nclients %d][[m|g]bytes <bytes>]" 875 "[test-timeout <time>][syn-timeout <time>][no-return][fifo-size <size>]" 876 "[private-segment-count <count>][private-segment-size <bytes>[m|g]]" 877 "[preallocate-fifos][preallocate-sessions][client-batch <batch-size>]" 878 "[uri <tcp://ip/port>][test-bytes][no-output]",
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
static svm_queue_t * session_manager_get_vpp_event_queue(u32 thread_index)
vlib_main_t vlib_global_main
clib_error_t * echo_clients_connect(vlib_main_t *vm, u32 n_clients)
svm_queue_t ** vpp_event_queue
int svm_queue_add(svm_queue_t *q, u8 *elem, int nowait)
u32 vl_api_memclnt_create_internal(char *name, svm_queue_t *q)
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
u8 is_ip4
set if uses ip4 networking
vlib_node_runtime_t node_runtime
struct _transport_connection transport_connection_t
struct _vnet_connect_args vnet_connect_args_t
static session_cb_vft_t echo_clients
u32 tls_engine
TLS engine mbedtls/openssl.
static int echo_clients_detach()
static f64 vlib_time_now(vlib_main_t *vm)
static uword echo_client_node_fn(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
u32 expected_connections
Number of clients/connections.
static_always_inline void clib_spinlock_unlock_if_init(clib_spinlock_t *p)
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
eclient_session_t * sessions
Session pool, shared.
static int app_send_stream(app_session_t *s, u8 *data, u32 len, u8 noblock)
u64 bytes_to_send
Bytes to send.
static void receive_data_chunk(echo_client_main_t *ecm, eclient_session_t *s)
volatile int run_test
Signal start of test.
transport_connection_t * session_get_transport(stream_session_t *s)
static u32 svm_fifo_max_enqueue(svm_fifo_t *f)
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
vlib_main_t ** vlib_mains
static void echo_clients_session_disconnect_callback(stream_session_t *s)
u8 * connect_test_data
Pre-computed test data.
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
#define vlib_worker_thread_barrier_sync(X)
struct _svm_fifo svm_fifo_t
static uword vlib_process_suspend(vlib_main_t *vm, f64 dt)
Suspend a vlib cooperative multi-tasking thread for a period of time.
static void svm_fifo_enqueue_nocopy(svm_fifo_t *f, u32 bytes)
Advance tail pointer.
clib_error_t * echo_clients_main_init(vlib_main_t *vm)
#define VLIB_INIT_FUNCTION(x)
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
struct _vnet_disconnect_args_t vnet_disconnect_args_t
int echo_clients_start_tx_pthread(echo_client_main_t *ecm)
Start a transmit thread.
static u32 svm_fifo_max_dequeue(svm_fifo_t *f)
struct _stream_session_cb_vft session_cb_vft_t
#define clib_error_return(e, args...)
void vl_api_rpc_call_main_thread(void *fp, u8 *data, u32 data_length)
u32 app_index
app index after attach
int svm_fifo_enqueue_nowait(svm_fifo_t *f, u32 max_bytes, const u8 *copy_from_here)
svm_queue_t * vl_input_queue
vpe input queue
struct vl_shmem_hdr_ * shmem_hdr
Binary API shared-memory segment header pointer.
void stream_session_cleanup(stream_session_t *s)
Cleanup transport and session state.
struct _stream_session_t stream_session_t
struct _vnet_app_attach_args_t vnet_app_attach_args_t
static void clib_spinlock_init(clib_spinlock_t *p)
vl_shmem_hdr_t * shmem_hdr
static int create_api_loopback(echo_client_main_t *ecm)
static void signal_evt_to_cli(int code)
static clib_error_t * echo_clients_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
volatile u32 ready_connections
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
static session_handle_t session_handle(stream_session_t *s)
static void cleanup(void)
ip46_address_t rmt_ip
remote ip
u32 ** connection_index_by_thread
u32 private_segment_count
Number of private fifo segs.
u32 ** connections_this_batch_by_thread
active connection batch
u32 node_index
Node index.
static int echo_clients_rx_callback(stream_session_t *s)
clib_error_t * vnet_session_enable_disable(vlib_main_t *vm, u8 is_en)
API main structure, used by both vpp and binary API clients.
#define pool_free(p)
Free a pool.
static int echo_clients_session_create_callback(stream_session_t *s)
static u8 svm_fifo_set_event(svm_fifo_t *f)
Sets fifo event flag.
u32 no_copy
Don't memcpy data to tx fifo.
u32 connections_per_batch
Connections to rx/tx at once.
#define VLIB_REGISTER_NODE(x,...)
static_always_inline uword vlib_get_thread_index(void)
static clib_error_t * echo_clients_attach(u8 *appns_id, u64 appns_flags, u64 appns_secret)
static vlib_process_t * vlib_get_current_process(vlib_main_t *vm)
vlib_node_registration_t echo_clients_node
(constructor) VLIB_REGISTER_NODE (echo_clients_node)
u8 * format_stream_session(u8 *s, va_list *args)
Format stream session as per the following format.
#define vec_free(V)
Free vector's memory (no header).
transport_service_type_t session_transport_service_type(stream_session_t *s)
#define clib_warning(format, args...)
echo_client_main_t echo_client_main
#define clib_memcpy(a, b, c)
int vnet_disconnect_session(vnet_disconnect_args_t *a)
#define ELOG_TYPE_DECLARE(f)
u32 private_segment_size
size of private fifo segs
static int app_recv_stream(app_session_t *s, u8 *buf, u32 len)
svm_queue_t * vl_input_queue
static void send_data_chunk(echo_client_main_t *ecm, eclient_session_t *s)
#define pool_init_fixed(pool, max_elts)
initialize a fixed-size, preallocated pool
static stream_session_t * session_get_from_handle_if_valid(session_handle_t handle)
#define VLIB_CLI_COMMAND(x,...)
u32 cli_node_index
cli process node index
static int echo_clients_session_connected_callback(u32 app_index, u32 api_context, stream_session_t *s, u8 is_fail)
#define vec_delete(V, N, M)
Delete N elements starting at element M.
u32 my_client_index
loopback API client handle
static int app_send_dgram(app_session_t *s, u8 *data, u32 len, u8 noblock)
#define clib_error_report(e)
static void vlib_node_set_state(vlib_main_t *vm, u32 node_index, vlib_node_state_t new_state)
Set node dispatch state.
int echo_client_add_segment_callback(u32 client_index, const ssvm_private_t *sp)
u16 lcl_port
local port (network order)
struct _vnet_app_detach_args_t vnet_app_detach_args_t
u8 ** rx_buf
intermediate rx buffers
ip46_address_t lcl_ip
local ip
u8 prealloc_fifos
Request fifo preallocation.
int svm_fifo_dequeue_drop(svm_fifo_t *f, u32 max_bytes)
clib_error_t * vnet_connect_uri(vnet_connect_args_t *a)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
clib_error_t * vnet_application_attach(vnet_app_attach_args_t *a)
Attach application to vpp.
u8 * connect_uri
URI for slave's connect.
#define ec_cli_output(_fmt, _args...)
clib_spinlock_t sessions_lock
static void * echo_client_thread_fn(void *arg)
struct _svm_queue svm_queue_t
static void echo_clients_session_reset_callback(stream_session_t *s)
static void signal_evt_to_cli_i(int *code)
void vlib_worker_thread_barrier_release(vlib_main_t *vm)
static vlib_thread_main_t * vlib_get_thread_main()
pthread_t client_thread_handle
int vnet_application_detach(vnet_app_detach_args_t *a)
Detach application from vpp.
static_always_inline void clib_spinlock_lock_if_init(clib_spinlock_t *p)
static int echo_clients_init(vlib_main_t *vm)
static int app_recv_dgram(app_session_t *s, u8 *buf, u32 len)
u16 rmt_port
remote port (network order)