blob: c38b5339453ba394a77e14ee436346027fb5b547 [file] [log] [blame]
Florin Coras4399c2e2018-01-25 06:34:42 -08001/*
2 * echo_client.c - vpp built-in echo client code
3 *
4 * Copyright (c) 2017 by Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <vnet/vnet.h>
19#include <vlibapi/api.h>
20#include <vlibmemory/api.h>
21#include <vnet/session-apps/echo_client.h>
22
23echo_client_main_t echo_client_main;
24
25#define ECHO_CLIENT_DBG (0)
26
27static void
28signal_evt_to_cli_i (int *code)
29{
30 echo_client_main_t *ecm = &echo_client_main;
31 ASSERT (vlib_get_thread_index () == 0);
32 vlib_process_signal_event (ecm->vlib_main, ecm->cli_node_index, *code, 0);
33}
34
35static void
36signal_evt_to_cli (int code)
37{
38 if (vlib_get_thread_index () != 0)
39 vl_api_rpc_call_main_thread (signal_evt_to_cli_i, (u8 *) & code,
40 sizeof (code));
41 else
42 signal_evt_to_cli_i (&code);
43}
44
45static void
46send_data_chunk (echo_client_main_t * ecm, session_t * s)
47{
48 u8 *test_data = ecm->connect_test_data;
49 int test_buf_offset;
50 u32 bytes_this_chunk;
51 session_fifo_event_t evt;
52 svm_fifo_t *txf;
53 int rv;
54
55 ASSERT (vec_len (test_data) > 0);
56
57 test_buf_offset = s->bytes_sent % vec_len (test_data);
58 bytes_this_chunk = vec_len (test_data) - test_buf_offset;
59
60 bytes_this_chunk = bytes_this_chunk < s->bytes_to_send
61 ? bytes_this_chunk : s->bytes_to_send;
62
63 txf = s->server_tx_fifo;
64 rv = svm_fifo_enqueue_nowait (txf, bytes_this_chunk,
65 test_data + test_buf_offset);
66
67 /* If we managed to enqueue data... */
68 if (rv > 0)
69 {
70 /* Account for it... */
71 s->bytes_to_send -= rv;
72 s->bytes_sent += rv;
73
74 if (ECHO_CLIENT_DBG)
75 {
76 /* *INDENT-OFF* */
77 ELOG_TYPE_DECLARE (e) =
78 {
79 .format = "tx-enq: xfer %d bytes, sent %u remain %u",
80 .format_args = "i4i4i4",
81 };
82 /* *INDENT-ON* */
83 struct
84 {
85 u32 data[3];
86 } *ed;
87 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
88 ed->data[0] = rv;
89 ed->data[1] = s->bytes_sent;
90 ed->data[2] = s->bytes_to_send;
91 }
92
93 /* Poke the session layer */
94 if (svm_fifo_set_event (txf))
95 {
96 /* Fabricate TX event, send to vpp */
97 evt.fifo = txf;
98 evt.event_type = FIFO_EVENT_APP_TX;
99
100 if (svm_queue_add
101 (ecm->vpp_event_queue[txf->master_thread_index], (u8 *) & evt,
102 0 /* do wait for mutex */ ))
103 clib_warning ("could not enqueue event");
104 }
105 }
106}
107
108static void
109receive_data_chunk (echo_client_main_t * ecm, session_t * s)
110{
111 svm_fifo_t *rx_fifo = s->server_rx_fifo;
112 u32 my_thread_index = vlib_get_thread_index ();
113 int n_read, i;
114
115 if (ecm->test_bytes)
116 {
117 n_read = svm_fifo_dequeue_nowait (rx_fifo,
118 vec_len (ecm->rx_buf
119 [my_thread_index]),
120 ecm->rx_buf[my_thread_index]);
121 }
122 else
123 {
124 n_read = svm_fifo_max_dequeue (rx_fifo);
125 svm_fifo_dequeue_drop (rx_fifo, n_read);
126 }
127
128 if (n_read > 0)
129 {
130 if (ECHO_CLIENT_DBG)
131 {
132 /* *INDENT-OFF* */
133 ELOG_TYPE_DECLARE (e) =
134 {
135 .format = "rx-deq: %d bytes",
136 .format_args = "i4",
137 };
138 /* *INDENT-ON* */
139 struct
140 {
141 u32 data[1];
142 } *ed;
143 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
144 ed->data[0] = n_read;
145 }
146
147 if (ecm->test_bytes)
148 {
149 for (i = 0; i < n_read; i++)
150 {
151 if (ecm->rx_buf[my_thread_index][i]
152 != ((s->bytes_received + i) & 0xff))
153 {
154 clib_warning ("read %d error at byte %lld, 0x%x not 0x%x",
155 n_read, s->bytes_received + i,
156 ecm->rx_buf[my_thread_index][i],
157 ((s->bytes_received + i) & 0xff));
158 ecm->test_failed = 1;
159 }
160 }
161 }
162 s->bytes_to_receive -= n_read;
163 s->bytes_received += n_read;
164 }
165}
166
167static uword
168echo_client_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
169 vlib_frame_t * frame)
170{
171 echo_client_main_t *ecm = &echo_client_main;
172 int my_thread_index = vlib_get_thread_index ();
173 session_t *sp;
174 int i;
175 int delete_session;
176 u32 *connection_indices;
177 u32 *connections_this_batch;
178 u32 nconnections_this_batch;
179
180 connection_indices = ecm->connection_index_by_thread[my_thread_index];
181 connections_this_batch =
182 ecm->connections_this_batch_by_thread[my_thread_index];
183
184 if ((ecm->run_test == 0) ||
185 ((vec_len (connection_indices) == 0)
186 && vec_len (connections_this_batch) == 0))
187 return 0;
188
189 /* Grab another pile of connections */
190 if (PREDICT_FALSE (vec_len (connections_this_batch) == 0))
191 {
192 nconnections_this_batch =
193 clib_min (ecm->connections_per_batch, vec_len (connection_indices));
194
195 ASSERT (nconnections_this_batch > 0);
196 vec_validate (connections_this_batch, nconnections_this_batch - 1);
197 clib_memcpy (connections_this_batch,
198 connection_indices + vec_len (connection_indices)
199 - nconnections_this_batch,
200 nconnections_this_batch * sizeof (u32));
201 _vec_len (connection_indices) -= nconnections_this_batch;
202 }
203
204 if (PREDICT_FALSE (ecm->prev_conns != ecm->connections_per_batch
205 && ecm->prev_conns == vec_len (connections_this_batch)))
206 {
207 ecm->repeats++;
208 ecm->prev_conns = vec_len (connections_this_batch);
209 if (ecm->repeats == 500000)
210 {
211 clib_warning ("stuck clients");
212 }
213 }
214 else
215 {
216 ecm->prev_conns = vec_len (connections_this_batch);
217 ecm->repeats = 0;
218 }
219
220 for (i = 0; i < vec_len (connections_this_batch); i++)
221 {
222 delete_session = 1;
223
224 sp = pool_elt_at_index (ecm->sessions, connections_this_batch[i]);
225
226 if (sp->bytes_to_send > 0)
227 {
228 send_data_chunk (ecm, sp);
229 delete_session = 0;
230 }
231 if (sp->bytes_to_receive > 0)
232 {
233 receive_data_chunk (ecm, sp);
234 delete_session = 0;
235 }
236 if (PREDICT_FALSE (delete_session == 1))
237 {
238 u32 index, thread_index;
239 stream_session_t *s;
240
241 __sync_fetch_and_add (&ecm->tx_total, sp->bytes_sent);
242 __sync_fetch_and_add (&ecm->rx_total, sp->bytes_received);
243
244 session_parse_handle (sp->vpp_session_handle,
245 &index, &thread_index);
246 s = session_get_if_valid (index, thread_index);
247
248 if (s)
249 {
250 vnet_disconnect_args_t _a, *a = &_a;
251 a->handle = session_handle (s);
252 a->app_index = ecm->app_index;
253 vnet_disconnect_session (a);
254
255 vec_delete (connections_this_batch, 1, i);
256 i--;
257 __sync_fetch_and_add (&ecm->ready_connections, -1);
258 }
259 else
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800260 {
261 clib_warning ("session AWOL?");
262 vec_delete (connections_this_batch, 1, i);
263 }
Florin Coras4399c2e2018-01-25 06:34:42 -0800264
265 /* Kick the debug CLI process */
266 if (ecm->ready_connections == 0)
267 {
268 signal_evt_to_cli (2);
269 }
270 }
271 }
272
273 ecm->connection_index_by_thread[my_thread_index] = connection_indices;
274 ecm->connections_this_batch_by_thread[my_thread_index] =
275 connections_this_batch;
276 return 0;
277}
278
279/* *INDENT-OFF* */
280VLIB_REGISTER_NODE (echo_clients_node) =
281{
282 .function = echo_client_node_fn,
283 .name = "echo-clients",
284 .type = VLIB_NODE_TYPE_INPUT,
285 .state = VLIB_NODE_STATE_DISABLED,
286};
287/* *INDENT-ON* */
288
289static int
290create_api_loopback (echo_client_main_t * ecm)
291{
292 api_main_t *am = &api_main;
293 vl_shmem_hdr_t *shmem_hdr;
294
295 shmem_hdr = am->shmem_hdr;
296 ecm->vl_input_queue = shmem_hdr->vl_input_queue;
297 ecm->my_client_index = vl_api_memclnt_create_internal ("echo_client",
298 ecm->vl_input_queue);
299 return 0;
300}
301
302static int
303echo_clients_init (vlib_main_t * vm)
304{
305 echo_client_main_t *ecm = &echo_client_main;
306 vlib_thread_main_t *vtm = vlib_get_thread_main ();
307 u32 num_threads;
308 int i;
309
310 if (create_api_loopback (ecm))
311 return -1;
312
313 num_threads = 1 /* main thread */ + vtm->n_threads;
314
315 /* Init test data. Bigecmuffer */
316 vec_validate (ecm->connect_test_data, 1024 * 1024 - 1);
317 for (i = 0; i < vec_len (ecm->connect_test_data); i++)
318 ecm->connect_test_data[i] = i & 0xff;
319
320 vec_validate (ecm->rx_buf, num_threads - 1);
321 for (i = 0; i < num_threads; i++)
322 vec_validate (ecm->rx_buf[i], vec_len (ecm->connect_test_data) - 1);
323
324 ecm->is_init = 1;
325
326 vec_validate (ecm->connection_index_by_thread, vtm->n_vlib_mains);
327 vec_validate (ecm->connections_this_batch_by_thread, vtm->n_vlib_mains);
328 vec_validate (ecm->vpp_event_queue, vtm->n_vlib_mains);
329
330 return 0;
331}
332
333static int
334echo_clients_session_connected_callback (u32 app_index, u32 api_context,
335 stream_session_t * s, u8 is_fail)
336{
337 echo_client_main_t *ecm = &echo_client_main;
338 session_t *session;
339 u32 session_index;
340 u8 thread_index = vlib_get_thread_index ();
341
342 if (is_fail)
343 {
344 clib_warning ("connection %d failed!", api_context);
345 signal_evt_to_cli (-1);
346 return 0;
347 }
348
349 ASSERT (s->thread_index == thread_index);
350
351 if (!ecm->vpp_event_queue[thread_index])
352 ecm->vpp_event_queue[thread_index] =
353 session_manager_get_vpp_event_queue (thread_index);
354
355 /*
356 * Setup session
357 */
358 clib_spinlock_lock_if_init (&ecm->sessions_lock);
359 pool_get (ecm->sessions, session);
360 clib_spinlock_unlock_if_init (&ecm->sessions_lock);
361
362 memset (session, 0, sizeof (*session));
363 session_index = session - ecm->sessions;
364 session->bytes_to_send = ecm->bytes_to_send;
365 session->bytes_to_receive = ecm->no_return ? 0ULL : ecm->bytes_to_send;
366 session->server_rx_fifo = s->server_rx_fifo;
367 session->server_rx_fifo->client_session_index = session_index;
368 session->server_tx_fifo = s->server_tx_fifo;
369 session->server_tx_fifo->client_session_index = session_index;
370 session->vpp_session_handle = session_handle (s);
371
372 vec_add1 (ecm->connection_index_by_thread[thread_index], session_index);
373 __sync_fetch_and_add (&ecm->ready_connections, 1);
374 if (ecm->ready_connections == ecm->expected_connections)
375 {
376 ecm->run_test = 1;
377 /* Signal the CLI process that the action is starting... */
378 signal_evt_to_cli (1);
379 }
380
381 return 0;
382}
383
384static void
385echo_clients_session_reset_callback (stream_session_t * s)
386{
387 if (s->session_state == SESSION_STATE_READY)
388 clib_warning ("Reset active connection %U", format_stream_session, s, 2);
389 stream_session_cleanup (s);
390 return;
391}
392
393static int
394echo_clients_session_create_callback (stream_session_t * s)
395{
396 return 0;
397}
398
399static void
400echo_clients_session_disconnect_callback (stream_session_t * s)
401{
402 echo_client_main_t *ecm = &echo_client_main;
403 vnet_disconnect_args_t _a, *a = &_a;
404 a->handle = session_handle (s);
405 a->app_index = ecm->app_index;
406 vnet_disconnect_session (a);
407 return;
408}
409
410static int
411echo_clients_rx_callback (stream_session_t * s)
412{
Florin Coras4399c2e2018-01-25 06:34:42 -0800413 return 0;
414}
415
416/* *INDENT-OFF* */
417static session_cb_vft_t echo_clients = {
418 .session_reset_callback = echo_clients_session_reset_callback,
419 .session_connected_callback = echo_clients_session_connected_callback,
420 .session_accept_callback = echo_clients_session_create_callback,
421 .session_disconnect_callback = echo_clients_session_disconnect_callback,
422 .builtin_server_rx_callback = echo_clients_rx_callback
423};
424/* *INDENT-ON* */
425
426static clib_error_t *
427echo_clients_attach (u8 * appns_id, u64 appns_flags, u64 appns_secret)
428{
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800429 u32 prealloc_fifos, segment_size = 256 << 20;
Florin Coras4399c2e2018-01-25 06:34:42 -0800430 echo_client_main_t *ecm = &echo_client_main;
431 vnet_app_attach_args_t _a, *a = &_a;
432 u64 options[16];
433 clib_error_t *error = 0;
434
435 memset (a, 0, sizeof (*a));
436 memset (options, 0, sizeof (options));
437
438 a->api_client_index = ecm->my_client_index;
439 a->session_cb_vft = &echo_clients;
440
441 prealloc_fifos = ecm->prealloc_fifos ? ecm->expected_connections : 1;
442
443 if (ecm->private_segment_size)
444 segment_size = ecm->private_segment_size;
445
446 options[APP_OPTIONS_ACCEPT_COOKIE] = 0x12345678;
447 options[APP_OPTIONS_SEGMENT_SIZE] = segment_size;
448 options[APP_OPTIONS_RX_FIFO_SIZE] = ecm->fifo_size;
449 options[APP_OPTIONS_TX_FIFO_SIZE] = ecm->fifo_size;
450 options[APP_OPTIONS_PRIVATE_SEGMENT_COUNT] = ecm->private_segment_count;
451 options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = prealloc_fifos;
452
453 options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN;
454 if (appns_id)
455 {
456 options[APP_OPTIONS_FLAGS] |= appns_flags;
457 options[APP_OPTIONS_NAMESPACE_SECRET] = appns_secret;
458 }
459 a->options = options;
460 a->namespace_id = appns_id;
461
462 if ((error = vnet_application_attach (a)))
463 return error;
464
465 ecm->app_index = a->app_index;
466 return 0;
467}
468
469static int
470echo_clients_detach ()
471{
472 echo_client_main_t *ecm = &echo_client_main;
473 vnet_app_detach_args_t _da, *da = &_da;
474 int rv;
475
476 da->app_index = ecm->app_index;
477 rv = vnet_application_detach (da);
478 ecm->test_client_attached = 0;
479 ecm->app_index = ~0;
480 return rv;
481}
482
483static void *
484echo_client_thread_fn (void *arg)
485{
486 return 0;
487}
488
489/** Start a transmit thread */
490int
491echo_clients_start_tx_pthread (echo_client_main_t * ecm)
492{
493 if (ecm->client_thread_handle == 0)
494 {
495 int rv = pthread_create (&ecm->client_thread_handle,
496 NULL /*attr */ ,
497 echo_client_thread_fn, 0);
498 if (rv)
499 {
500 ecm->client_thread_handle = 0;
501 return -1;
502 }
503 }
504 return 0;
505}
506
507clib_error_t *
508echo_clients_connect (vlib_main_t * vm, u32 n_clients)
509{
510 echo_client_main_t *ecm = &echo_client_main;
511 vnet_connect_args_t _a, *a = &_a;
512 clib_error_t *error = 0;
513 int i;
514 for (i = 0; i < n_clients; i++)
515 {
516 memset (a, 0, sizeof (*a));
517
518 a->uri = (char *) ecm->connect_uri;
519 a->api_context = i;
520 a->app_index = ecm->app_index;
521 a->mp = 0;
522
523 if ((error = vnet_connect_uri (a)))
524 return error;
525
526 /* Crude pacing for call setups */
527 if ((i % 4) == 0)
528 vlib_process_suspend (vm, 10e-6);
529 ASSERT (i + 1 >= ecm->ready_connections);
530 while (i + 1 - ecm->ready_connections > 1000)
531 {
532 vlib_process_suspend (vm, 100e-6);
533 }
534 }
535 return 0;
536}
537
538#define ec_cli_output(_fmt, _args...) \
539 if (!ecm->no_output) \
540 vlib_cli_output(vm, _fmt, ##_args)
541
542static clib_error_t *
543echo_clients_command_fn (vlib_main_t * vm,
544 unformat_input_t * input, vlib_cli_command_t * cmd)
545{
546 echo_client_main_t *ecm = &echo_client_main;
547 vlib_thread_main_t *thread_main = vlib_get_thread_main ();
Florin Coras4399c2e2018-01-25 06:34:42 -0800548 u64 tmp, total_bytes, appns_flags = 0, appns_secret = 0;
549 f64 test_timeout = 20.0, syn_timeout = 20.0, delta;
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800550 char *default_uri = "tcp://6.0.1.1/1234";
551 uword *event_data = 0, event_type;
Florin Coras4399c2e2018-01-25 06:34:42 -0800552 f64 time_before_connects;
553 u32 n_clients = 1;
554 int preallocate_sessions = 0;
555 char *transfer_type;
556 clib_error_t *error = 0;
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800557 u8 *appns_id = 0;
Florin Coras4399c2e2018-01-25 06:34:42 -0800558 int i;
559
560 ecm->bytes_to_send = 8192;
561 ecm->no_return = 0;
562 ecm->fifo_size = 64 << 10;
563 ecm->connections_per_batch = 1000;
564 ecm->private_segment_count = 0;
565 ecm->private_segment_size = 0;
566 ecm->no_output = 0;
567 ecm->test_bytes = 0;
568 ecm->test_failed = 0;
569 ecm->vlib_main = vm;
570 if (thread_main->n_vlib_mains > 1)
571 clib_spinlock_init (&ecm->sessions_lock);
572 vec_free (ecm->connect_uri);
573
574 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
575 {
576 if (unformat (input, "uri %s", &ecm->connect_uri))
577 ;
578 else if (unformat (input, "nclients %d", &n_clients))
579 ;
580 else if (unformat (input, "mbytes %lld", &tmp))
581 ecm->bytes_to_send = tmp << 20;
582 else if (unformat (input, "gbytes %lld", &tmp))
583 ecm->bytes_to_send = tmp << 30;
584 else if (unformat (input, "bytes %lld", &ecm->bytes_to_send))
585 ;
586 else if (unformat (input, "test-timeout %f", &test_timeout))
587 ;
588 else if (unformat (input, "syn-timeout %f", &syn_timeout))
589 ;
590 else if (unformat (input, "no-return"))
591 ecm->no_return = 1;
592 else if (unformat (input, "fifo-size %d", &ecm->fifo_size))
593 ecm->fifo_size <<= 10;
594 else if (unformat (input, "private-segment-count %d",
595 &ecm->private_segment_count))
596 ;
597 else if (unformat (input, "private-segment-size %U",
598 unformat_memory_size, &tmp))
599 {
600 if (tmp >= 0x100000000ULL)
601 return clib_error_return
602 (0, "private segment size %lld (%llu) too large", tmp, tmp);
603 ecm->private_segment_size = tmp;
604 }
605 else if (unformat (input, "preallocate-fifos"))
606 ecm->prealloc_fifos = 1;
607 else if (unformat (input, "preallocate-sessions"))
608 preallocate_sessions = 1;
609 else
610 if (unformat (input, "client-batch %d", &ecm->connections_per_batch))
611 ;
612 else if (unformat (input, "appns %_%v%_", &appns_id))
613 ;
614 else if (unformat (input, "all-scope"))
615 appns_flags |= (APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE
616 | APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE);
617 else if (unformat (input, "local-scope"))
618 appns_flags = APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
619 else if (unformat (input, "global-scope"))
620 appns_flags = APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
621 else if (unformat (input, "secret %lu", &appns_secret))
622 ;
623 else if (unformat (input, "no-output"))
624 ecm->no_output = 1;
625 else if (unformat (input, "test-bytes"))
626 ecm->test_bytes = 1;
627 else
628 return clib_error_return (0, "unknown input `%U'",
629 format_unformat_error, input);
630 }
631
632 /* Store cli process node index for signalling */
633 ecm->cli_node_index =
634 vlib_get_current_process (vm)->node_runtime.node_index;
635
636 if (ecm->is_init == 0)
637 {
638 if (echo_clients_init (vm))
639 return clib_error_return (0, "failed init");
640 }
641
642
643 ecm->ready_connections = 0;
644 ecm->expected_connections = n_clients;
645 ecm->rx_total = 0;
646 ecm->tx_total = 0;
647
648 if (!ecm->connect_uri)
649 {
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800650 clib_warning ("No uri provided. Using default: %s", default_uri);
651 ecm->connect_uri = format (0, "%s%c", default_uri, 0);
Florin Coras4399c2e2018-01-25 06:34:42 -0800652 }
653
654#if ECHO_CLIENT_PTHREAD
655 echo_clients_start_tx_pthread ();
656#endif
657
658 vlib_worker_thread_barrier_sync (vm);
659 vnet_session_enable_disable (vm, 1 /* turn on session and transports */ );
660 vlib_worker_thread_barrier_release (vm);
661
662 if (ecm->test_client_attached == 0)
663 {
664 if ((error = echo_clients_attach (appns_id, appns_flags, appns_secret)))
665 {
666 vec_free (appns_id);
667 clib_error_report (error);
668 return error;
669 }
670 vec_free (appns_id);
671 }
672 ecm->test_client_attached = 1;
673
674 /* Turn on the builtin client input nodes */
675 for (i = 0; i < thread_main->n_vlib_mains; i++)
676 vlib_node_set_state (vlib_mains[i], echo_clients_node.index,
677 VLIB_NODE_STATE_POLLING);
678
679 if (preallocate_sessions)
680 {
681 session_t *sp __attribute__ ((unused));
682 for (i = 0; i < n_clients; i++)
683 pool_get (ecm->sessions, sp);
684 for (i = 0; i < n_clients; i++)
685 pool_put_index (ecm->sessions, i);
686 }
687
688 /* Fire off connect requests */
689 time_before_connects = vlib_time_now (vm);
690 if ((error = echo_clients_connect (vm, n_clients)))
691 return error;
692
693 /* Park until the sessions come up, or ten seconds elapse... */
694 vlib_process_wait_for_event_or_clock (vm, syn_timeout);
695 event_type = vlib_process_get_events (vm, &event_data);
696 switch (event_type)
697 {
698 case ~0:
699 ec_cli_output ("Timeout with only %d sessions active...",
700 ecm->ready_connections);
701 error = clib_error_return (0, "failed: syn timeout with %d sessions",
702 ecm->ready_connections);
703 goto cleanup;
704
705 case 1:
706 delta = vlib_time_now (vm) - time_before_connects;
707 if (delta != 0.0)
708 ec_cli_output ("%d three-way handshakes in %.2f seconds %.2f/s",
709 n_clients, delta, ((f64) n_clients) / delta);
710
711 ecm->test_start_time = vlib_time_now (ecm->vlib_main);
712 ec_cli_output ("Test started at %.6f", ecm->test_start_time);
713 break;
714
715 default:
716 ec_cli_output ("unexpected event(1): %d", event_type);
717 error = clib_error_return (0, "failed: unexpected event(1): %d",
718 event_type);
719 goto cleanup;
720 }
721
722 /* Now wait for the sessions to finish... */
723 vlib_process_wait_for_event_or_clock (vm, test_timeout);
724 event_type = vlib_process_get_events (vm, &event_data);
725 switch (event_type)
726 {
727 case ~0:
728 ec_cli_output ("Timeout with %d sessions still active...",
729 ecm->ready_connections);
730 error = clib_error_return (0, "failed: timeout with %d sessions",
731 ecm->ready_connections);
732 goto cleanup;
733
734 case 2:
735 ecm->test_end_time = vlib_time_now (vm);
736 ec_cli_output ("Test finished at %.6f", ecm->test_end_time);
737 break;
738
739 default:
740 ec_cli_output ("unexpected event(2): %d", event_type);
741 error = clib_error_return (0, "failed: unexpected event(2): %d",
742 event_type);
743 goto cleanup;
744 }
745
746 delta = ecm->test_end_time - ecm->test_start_time;
747 if (delta != 0.0)
748 {
749 total_bytes = (ecm->no_return ? ecm->tx_total : ecm->rx_total);
750 transfer_type = ecm->no_return ? "half-duplex" : "full-duplex";
751 ec_cli_output ("%lld bytes (%lld mbytes, %lld gbytes) in %.2f seconds",
752 total_bytes, total_bytes / (1ULL << 20),
753 total_bytes / (1ULL << 30), delta);
754 ec_cli_output ("%.2f bytes/second %s", ((f64) total_bytes) / (delta),
755 transfer_type);
756 ec_cli_output ("%.4f gbit/second %s",
757 (((f64) total_bytes * 8.0) / delta / 1e9),
758 transfer_type);
759 }
760 else
761 {
762 ec_cli_output ("zero delta-t?");
763 error = clib_error_return (0, "failed: zero delta-t");
764 goto cleanup;
765 }
766
767 if (ecm->test_bytes && ecm->test_failed)
768 error = clib_error_return (0, "failed: test bytes");
769
770cleanup:
771 ecm->run_test = 0;
772 for (i = 0; i < vec_len (ecm->connection_index_by_thread); i++)
773 {
774 vec_reset_length (ecm->connection_index_by_thread[i]);
775 vec_reset_length (ecm->connections_this_batch_by_thread[i]);
776 }
777
778 pool_free (ecm->sessions);
779
780 /* Detach the application, so we can use different fifo sizes next time */
781 if (ecm->test_client_attached)
782 {
783 if (echo_clients_detach ())
784 {
785 error = clib_error_return (0, "failed: app detach");
786 ec_cli_output ("WARNING: app detach failed...");
787 }
788 }
789 if (error)
790 ec_cli_output ("test failed");
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800791 vec_free (ecm->connect_uri);
Florin Coras4399c2e2018-01-25 06:34:42 -0800792 return error;
793}
794
795/* *INDENT-OFF* */
796VLIB_CLI_COMMAND (echo_clients_command, static) =
797{
798 .path = "test echo clients",
799 .short_help = "test echo clients [nclients %d][[m|g]bytes <bytes>]"
800 "[test-timeout <time>][syn-timeout <time>][no-return][fifo-size <size>]"
801 "[private-segment-count <count>][private-segment-size <bytes>[m|g]]"
802 "[preallocate-fifos][preallocate-sessions][client-batch <batch-size>]"
803 "[uri <tcp://ip/port>][test-bytes][no-output]",
804 .function = echo_clients_command_fn,
805 .is_mp_safe = 1,
806};
807/* *INDENT-ON* */
808
809clib_error_t *
810echo_clients_main_init (vlib_main_t * vm)
811{
812 echo_client_main_t *ecm = &echo_client_main;
813 ecm->is_init = 0;
814 return 0;
815}
816
817VLIB_INIT_FUNCTION (echo_clients_main_init);
818
819/*
820 * fd.io coding-style-patch-verification: ON
821 *
822 * Local Variables:
823 * eval: (c-set-style "gnu")
824 * End:
825 */