blob: 7935eb8b2421d04ace6515438c27b3dff2c16690 [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
Florin Coras48750892018-05-16 09:28:02 -070046send_data_chunk (echo_client_main_t * ecm, eclient_session_t * s)
Florin Coras4399c2e2018-01-25 06:34:42 -080047{
48 u8 *test_data = ecm->connect_test_data;
Florin Coras7fb0fe12018-04-09 09:24:52 -070049 int test_buf_len, test_buf_offset, rv;
Florin Coras4399c2e2018-01-25 06:34:42 -080050 u32 bytes_this_chunk;
Florin Coras4399c2e2018-01-25 06:34:42 -080051
Florin Coras7fb0fe12018-04-09 09:24:52 -070052 test_buf_len = vec_len (test_data);
Florin Coras6c354942018-04-18 00:05:21 -070053 ASSERT (test_buf_len > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -070054 test_buf_offset = s->bytes_sent % test_buf_len;
55 bytes_this_chunk = clib_min (test_buf_len - test_buf_offset,
56 s->bytes_to_send);
Florin Coras4399c2e2018-01-25 06:34:42 -080057
Florin Coras7fb0fe12018-04-09 09:24:52 -070058 if (!ecm->is_dgram)
Florin Coras8e43d042018-05-04 15:46:57 -070059 {
60 if (ecm->no_copy)
61 {
62 svm_fifo_t *f = s->data.tx_fifo;
63 rv = clib_min (svm_fifo_max_enqueue (f), bytes_this_chunk);
64 svm_fifo_enqueue_nocopy (f, rv);
Florin Coras3c2fed52018-07-04 04:15:05 -070065 session_send_io_evt_to_thread_custom (f, s->thread_index,
66 FIFO_EVENT_APP_TX);
Florin Coras8e43d042018-05-04 15:46:57 -070067 }
68 else
69 rv = app_send_stream (&s->data, test_data + test_buf_offset,
70 bytes_this_chunk, 0);
71 }
Florin Coras7fb0fe12018-04-09 09:24:52 -070072 else
Florin Coras8e43d042018-05-04 15:46:57 -070073 {
74 if (ecm->no_copy)
75 {
76 session_dgram_hdr_t hdr;
77 svm_fifo_t *f = s->data.tx_fifo;
78 app_session_transport_t *at = &s->data.transport;
79 u32 max_enqueue = svm_fifo_max_enqueue (f);
80
81 if (max_enqueue <= sizeof (session_dgram_hdr_t))
82 return;
83
84 max_enqueue -= sizeof (session_dgram_hdr_t);
85 rv = clib_min (max_enqueue, bytes_this_chunk);
86
87 hdr.data_length = rv;
88 hdr.data_offset = 0;
89 clib_memcpy (&hdr.rmt_ip, &at->rmt_ip, sizeof (ip46_address_t));
90 hdr.is_ip4 = at->is_ip4;
91 hdr.rmt_port = at->rmt_port;
92 clib_memcpy (&hdr.lcl_ip, &at->lcl_ip, sizeof (ip46_address_t));
93 hdr.lcl_port = at->lcl_port;
94 svm_fifo_enqueue_nowait (f, sizeof (hdr), (u8 *) & hdr);
95 svm_fifo_enqueue_nocopy (f, rv);
Florin Coras3c2fed52018-07-04 04:15:05 -070096 session_send_io_evt_to_thread_custom (f, s->thread_index,
97 FIFO_EVENT_APP_TX);
Florin Coras8e43d042018-05-04 15:46:57 -070098 }
99 else
100 rv = app_send_dgram (&s->data, test_data + test_buf_offset,
101 bytes_this_chunk, 0);
102 }
Florin Coras4399c2e2018-01-25 06:34:42 -0800103
104 /* If we managed to enqueue data... */
105 if (rv > 0)
106 {
107 /* Account for it... */
108 s->bytes_to_send -= rv;
109 s->bytes_sent += rv;
110
111 if (ECHO_CLIENT_DBG)
112 {
113 /* *INDENT-OFF* */
114 ELOG_TYPE_DECLARE (e) =
115 {
116 .format = "tx-enq: xfer %d bytes, sent %u remain %u",
117 .format_args = "i4i4i4",
118 };
119 /* *INDENT-ON* */
120 struct
121 {
122 u32 data[3];
123 } *ed;
124 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
125 ed->data[0] = rv;
126 ed->data[1] = s->bytes_sent;
127 ed->data[2] = s->bytes_to_send;
128 }
Florin Coras4399c2e2018-01-25 06:34:42 -0800129 }
130}
131
132static void
Florin Coras48750892018-05-16 09:28:02 -0700133receive_data_chunk (echo_client_main_t * ecm, eclient_session_t * s)
Florin Coras4399c2e2018-01-25 06:34:42 -0800134{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700135 svm_fifo_t *rx_fifo = s->data.rx_fifo;
136 u32 thread_index = vlib_get_thread_index ();
Florin Coras4399c2e2018-01-25 06:34:42 -0800137 int n_read, i;
138
139 if (ecm->test_bytes)
140 {
Florin Coras7fb0fe12018-04-09 09:24:52 -0700141 if (!ecm->is_dgram)
142 n_read = app_recv_stream (&s->data, ecm->rx_buf[thread_index],
143 vec_len (ecm->rx_buf[thread_index]));
144 else
145 n_read = app_recv_dgram (&s->data, ecm->rx_buf[thread_index],
146 vec_len (ecm->rx_buf[thread_index]));
Florin Coras4399c2e2018-01-25 06:34:42 -0800147 }
148 else
149 {
150 n_read = svm_fifo_max_dequeue (rx_fifo);
151 svm_fifo_dequeue_drop (rx_fifo, n_read);
152 }
153
154 if (n_read > 0)
155 {
156 if (ECHO_CLIENT_DBG)
157 {
158 /* *INDENT-OFF* */
159 ELOG_TYPE_DECLARE (e) =
160 {
161 .format = "rx-deq: %d bytes",
162 .format_args = "i4",
163 };
164 /* *INDENT-ON* */
165 struct
166 {
167 u32 data[1];
168 } *ed;
169 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
170 ed->data[0] = n_read;
171 }
172
173 if (ecm->test_bytes)
174 {
175 for (i = 0; i < n_read; i++)
176 {
Florin Coras7fb0fe12018-04-09 09:24:52 -0700177 if (ecm->rx_buf[thread_index][i]
Florin Coras4399c2e2018-01-25 06:34:42 -0800178 != ((s->bytes_received + i) & 0xff))
179 {
180 clib_warning ("read %d error at byte %lld, 0x%x not 0x%x",
181 n_read, s->bytes_received + i,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700182 ecm->rx_buf[thread_index][i],
Florin Coras4399c2e2018-01-25 06:34:42 -0800183 ((s->bytes_received + i) & 0xff));
184 ecm->test_failed = 1;
185 }
186 }
187 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700188 ASSERT (n_read <= s->bytes_to_receive);
Florin Coras4399c2e2018-01-25 06:34:42 -0800189 s->bytes_to_receive -= n_read;
190 s->bytes_received += n_read;
191 }
192}
193
194static uword
195echo_client_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
196 vlib_frame_t * frame)
197{
198 echo_client_main_t *ecm = &echo_client_main;
199 int my_thread_index = vlib_get_thread_index ();
Florin Coras48750892018-05-16 09:28:02 -0700200 eclient_session_t *sp;
Florin Coras4399c2e2018-01-25 06:34:42 -0800201 int i;
202 int delete_session;
203 u32 *connection_indices;
204 u32 *connections_this_batch;
205 u32 nconnections_this_batch;
206
207 connection_indices = ecm->connection_index_by_thread[my_thread_index];
208 connections_this_batch =
209 ecm->connections_this_batch_by_thread[my_thread_index];
210
Florin Coraseb97e5f2018-10-15 21:35:42 -0700211 if ((ecm->run_test != ECHO_CLIENTS_RUNNING) ||
Florin Coras4399c2e2018-01-25 06:34:42 -0800212 ((vec_len (connection_indices) == 0)
213 && vec_len (connections_this_batch) == 0))
214 return 0;
215
216 /* Grab another pile of connections */
217 if (PREDICT_FALSE (vec_len (connections_this_batch) == 0))
218 {
219 nconnections_this_batch =
220 clib_min (ecm->connections_per_batch, vec_len (connection_indices));
221
222 ASSERT (nconnections_this_batch > 0);
223 vec_validate (connections_this_batch, nconnections_this_batch - 1);
224 clib_memcpy (connections_this_batch,
225 connection_indices + vec_len (connection_indices)
226 - nconnections_this_batch,
227 nconnections_this_batch * sizeof (u32));
228 _vec_len (connection_indices) -= nconnections_this_batch;
229 }
230
231 if (PREDICT_FALSE (ecm->prev_conns != ecm->connections_per_batch
232 && ecm->prev_conns == vec_len (connections_this_batch)))
233 {
234 ecm->repeats++;
235 ecm->prev_conns = vec_len (connections_this_batch);
236 if (ecm->repeats == 500000)
237 {
238 clib_warning ("stuck clients");
239 }
240 }
241 else
242 {
243 ecm->prev_conns = vec_len (connections_this_batch);
244 ecm->repeats = 0;
245 }
246
247 for (i = 0; i < vec_len (connections_this_batch); i++)
248 {
249 delete_session = 1;
250
251 sp = pool_elt_at_index (ecm->sessions, connections_this_batch[i]);
252
253 if (sp->bytes_to_send > 0)
254 {
255 send_data_chunk (ecm, sp);
256 delete_session = 0;
257 }
258 if (sp->bytes_to_receive > 0)
259 {
Florin Coras4399c2e2018-01-25 06:34:42 -0800260 delete_session = 0;
261 }
262 if (PREDICT_FALSE (delete_session == 1))
263 {
Florin Coras4399c2e2018-01-25 06:34:42 -0800264 stream_session_t *s;
265
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000266 clib_atomic_fetch_add (&ecm->tx_total, sp->bytes_sent);
267 clib_atomic_fetch_add (&ecm->rx_total, sp->bytes_received);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700268 s = session_get_from_handle_if_valid (sp->vpp_session_handle);
Florin Coras4399c2e2018-01-25 06:34:42 -0800269
270 if (s)
271 {
272 vnet_disconnect_args_t _a, *a = &_a;
273 a->handle = session_handle (s);
274 a->app_index = ecm->app_index;
275 vnet_disconnect_session (a);
276
277 vec_delete (connections_this_batch, 1, i);
278 i--;
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000279 clib_atomic_fetch_add (&ecm->ready_connections, -1);
Florin Coras4399c2e2018-01-25 06:34:42 -0800280 }
281 else
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800282 {
283 clib_warning ("session AWOL?");
284 vec_delete (connections_this_batch, 1, i);
285 }
Florin Coras4399c2e2018-01-25 06:34:42 -0800286
287 /* Kick the debug CLI process */
288 if (ecm->ready_connections == 0)
289 {
290 signal_evt_to_cli (2);
291 }
292 }
293 }
294
295 ecm->connection_index_by_thread[my_thread_index] = connection_indices;
296 ecm->connections_this_batch_by_thread[my_thread_index] =
297 connections_this_batch;
298 return 0;
299}
300
301/* *INDENT-OFF* */
302VLIB_REGISTER_NODE (echo_clients_node) =
303{
304 .function = echo_client_node_fn,
305 .name = "echo-clients",
306 .type = VLIB_NODE_TYPE_INPUT,
307 .state = VLIB_NODE_STATE_DISABLED,
308};
309/* *INDENT-ON* */
310
311static int
312create_api_loopback (echo_client_main_t * ecm)
313{
314 api_main_t *am = &api_main;
315 vl_shmem_hdr_t *shmem_hdr;
316
317 shmem_hdr = am->shmem_hdr;
318 ecm->vl_input_queue = shmem_hdr->vl_input_queue;
319 ecm->my_client_index = vl_api_memclnt_create_internal ("echo_client",
320 ecm->vl_input_queue);
321 return 0;
322}
323
324static int
325echo_clients_init (vlib_main_t * vm)
326{
327 echo_client_main_t *ecm = &echo_client_main;
328 vlib_thread_main_t *vtm = vlib_get_thread_main ();
329 u32 num_threads;
330 int i;
331
332 if (create_api_loopback (ecm))
333 return -1;
334
335 num_threads = 1 /* main thread */ + vtm->n_threads;
336
Florin Coras7fb0fe12018-04-09 09:24:52 -0700337 /* Init test data. Big buffer */
338 vec_validate (ecm->connect_test_data, 4 * 1024 * 1024 - 1);
Florin Coras4399c2e2018-01-25 06:34:42 -0800339 for (i = 0; i < vec_len (ecm->connect_test_data); i++)
340 ecm->connect_test_data[i] = i & 0xff;
341
342 vec_validate (ecm->rx_buf, num_threads - 1);
343 for (i = 0; i < num_threads; i++)
344 vec_validate (ecm->rx_buf[i], vec_len (ecm->connect_test_data) - 1);
345
346 ecm->is_init = 1;
347
348 vec_validate (ecm->connection_index_by_thread, vtm->n_vlib_mains);
349 vec_validate (ecm->connections_this_batch_by_thread, vtm->n_vlib_mains);
350 vec_validate (ecm->vpp_event_queue, vtm->n_vlib_mains);
351
352 return 0;
353}
354
355static int
356echo_clients_session_connected_callback (u32 app_index, u32 api_context,
357 stream_session_t * s, u8 is_fail)
358{
359 echo_client_main_t *ecm = &echo_client_main;
Florin Coras48750892018-05-16 09:28:02 -0700360 eclient_session_t *session;
Florin Coras4399c2e2018-01-25 06:34:42 -0800361 u32 session_index;
Florin Coras52207f12018-07-12 14:48:06 -0700362 u8 thread_index;
Florin Coras4399c2e2018-01-25 06:34:42 -0800363
Florin Coraseb97e5f2018-10-15 21:35:42 -0700364 if (PREDICT_FALSE (ecm->run_test != ECHO_CLIENTS_STARTING))
365 return -1;
366
Florin Coras4399c2e2018-01-25 06:34:42 -0800367 if (is_fail)
368 {
369 clib_warning ("connection %d failed!", api_context);
Florin Corasc01d5782018-10-17 14:53:11 -0700370 ecm->run_test = ECHO_CLIENTS_EXITING;
Florin Coras4399c2e2018-01-25 06:34:42 -0800371 signal_evt_to_cli (-1);
372 return 0;
373 }
374
Florin Coras52207f12018-07-12 14:48:06 -0700375 thread_index = s->thread_index;
Florin Coras40903ac2018-06-10 14:41:23 -0700376 ASSERT (thread_index == vlib_get_thread_index ()
377 || session_transport_service_type (s) == TRANSPORT_SERVICE_CL);
Florin Coras4399c2e2018-01-25 06:34:42 -0800378
379 if (!ecm->vpp_event_queue[thread_index])
380 ecm->vpp_event_queue[thread_index] =
381 session_manager_get_vpp_event_queue (thread_index);
382
383 /*
384 * Setup session
385 */
386 clib_spinlock_lock_if_init (&ecm->sessions_lock);
387 pool_get (ecm->sessions, session);
388 clib_spinlock_unlock_if_init (&ecm->sessions_lock);
389
Dave Barachb7b92992018-10-17 10:38:51 -0400390 clib_memset (session, 0, sizeof (*session));
Florin Coras4399c2e2018-01-25 06:34:42 -0800391 session_index = session - ecm->sessions;
392 session->bytes_to_send = ecm->bytes_to_send;
393 session->bytes_to_receive = ecm->no_return ? 0ULL : ecm->bytes_to_send;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700394 session->data.rx_fifo = s->server_rx_fifo;
395 session->data.rx_fifo->client_session_index = session_index;
396 session->data.tx_fifo = s->server_tx_fifo;
397 session->data.tx_fifo->client_session_index = session_index;
398 session->data.vpp_evt_q = ecm->vpp_event_queue[thread_index];
Florin Coras4399c2e2018-01-25 06:34:42 -0800399 session->vpp_session_handle = session_handle (s);
400
Florin Coras7fb0fe12018-04-09 09:24:52 -0700401 if (ecm->is_dgram)
402 {
403 transport_connection_t *tc;
404 tc = session_get_transport (s);
405 clib_memcpy (&session->data.transport, tc,
406 sizeof (session->data.transport));
407 session->data.is_dgram = 1;
408 }
409
Florin Coras4399c2e2018-01-25 06:34:42 -0800410 vec_add1 (ecm->connection_index_by_thread[thread_index], session_index);
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000411 clib_atomic_fetch_add (&ecm->ready_connections, 1);
Florin Coras4399c2e2018-01-25 06:34:42 -0800412 if (ecm->ready_connections == ecm->expected_connections)
413 {
Florin Coraseb97e5f2018-10-15 21:35:42 -0700414 ecm->run_test = ECHO_CLIENTS_RUNNING;
Florin Coras4399c2e2018-01-25 06:34:42 -0800415 /* Signal the CLI process that the action is starting... */
416 signal_evt_to_cli (1);
417 }
418
419 return 0;
420}
421
422static void
423echo_clients_session_reset_callback (stream_session_t * s)
424{
425 if (s->session_state == SESSION_STATE_READY)
426 clib_warning ("Reset active connection %U", format_stream_session, s, 2);
427 stream_session_cleanup (s);
428 return;
429}
430
431static int
432echo_clients_session_create_callback (stream_session_t * s)
433{
434 return 0;
435}
436
437static void
438echo_clients_session_disconnect_callback (stream_session_t * s)
439{
440 echo_client_main_t *ecm = &echo_client_main;
441 vnet_disconnect_args_t _a, *a = &_a;
442 a->handle = session_handle (s);
443 a->app_index = ecm->app_index;
444 vnet_disconnect_session (a);
445 return;
446}
447
Florin Corasc01d5782018-10-17 14:53:11 -0700448void
449echo_clients_session_disconnect (stream_session_t * s)
450{
451 echo_client_main_t *ecm = &echo_client_main;
452 vnet_disconnect_args_t _a, *a = &_a;
453 a->handle = session_handle (s);
454 a->app_index = ecm->app_index;
455 vnet_disconnect_session (a);
456}
457
Florin Coras4399c2e2018-01-25 06:34:42 -0800458static int
459echo_clients_rx_callback (stream_session_t * s)
460{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700461 echo_client_main_t *ecm = &echo_client_main;
Florin Coras48750892018-05-16 09:28:02 -0700462 eclient_session_t *sp;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700463
Florin Coraseb97e5f2018-10-15 21:35:42 -0700464 if (PREDICT_FALSE (ecm->run_test != ECHO_CLIENTS_RUNNING))
465 {
466 echo_clients_session_disconnect (s);
467 return -1;
468 }
469
Florin Coras7fb0fe12018-04-09 09:24:52 -0700470 sp = pool_elt_at_index (ecm->sessions,
471 s->server_rx_fifo->client_session_index);
472 receive_data_chunk (ecm, sp);
473
474 if (svm_fifo_max_dequeue (s->server_rx_fifo))
475 {
Florin Coras7fb0fe12018-04-09 09:24:52 -0700476 if (svm_fifo_set_event (s->server_rx_fifo))
Florin Coras3c2fed52018-07-04 04:15:05 -0700477 session_send_io_evt_to_thread (s->server_rx_fifo,
478 FIFO_EVENT_BUILTIN_RX);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700479 }
Florin Coras4399c2e2018-01-25 06:34:42 -0800480 return 0;
481}
482
Florin Corasa332c462018-01-31 06:52:17 -0800483int
484echo_client_add_segment_callback (u32 client_index, const ssvm_private_t * sp)
485{
486 /* New heaps may be added */
487 return 0;
488}
489
Florin Coras4399c2e2018-01-25 06:34:42 -0800490/* *INDENT-OFF* */
491static session_cb_vft_t echo_clients = {
492 .session_reset_callback = echo_clients_session_reset_callback,
493 .session_connected_callback = echo_clients_session_connected_callback,
494 .session_accept_callback = echo_clients_session_create_callback,
495 .session_disconnect_callback = echo_clients_session_disconnect_callback,
Florin Coras371ca502018-02-21 12:07:41 -0800496 .builtin_app_rx_callback = echo_clients_rx_callback,
Florin Corasa332c462018-01-31 06:52:17 -0800497 .add_segment_callback = echo_client_add_segment_callback
Florin Coras4399c2e2018-01-25 06:34:42 -0800498};
499/* *INDENT-ON* */
500
501static clib_error_t *
502echo_clients_attach (u8 * appns_id, u64 appns_flags, u64 appns_secret)
503{
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800504 u32 prealloc_fifos, segment_size = 256 << 20;
Florin Coras4399c2e2018-01-25 06:34:42 -0800505 echo_client_main_t *ecm = &echo_client_main;
506 vnet_app_attach_args_t _a, *a = &_a;
507 u64 options[16];
508 clib_error_t *error = 0;
509
Dave Barachb7b92992018-10-17 10:38:51 -0400510 clib_memset (a, 0, sizeof (*a));
511 clib_memset (options, 0, sizeof (options));
Florin Coras4399c2e2018-01-25 06:34:42 -0800512
513 a->api_client_index = ecm->my_client_index;
514 a->session_cb_vft = &echo_clients;
515
516 prealloc_fifos = ecm->prealloc_fifos ? ecm->expected_connections : 1;
517
518 if (ecm->private_segment_size)
519 segment_size = ecm->private_segment_size;
520
521 options[APP_OPTIONS_ACCEPT_COOKIE] = 0x12345678;
522 options[APP_OPTIONS_SEGMENT_SIZE] = segment_size;
Florin Corasa332c462018-01-31 06:52:17 -0800523 options[APP_OPTIONS_ADD_SEGMENT_SIZE] = segment_size;
Florin Coras4399c2e2018-01-25 06:34:42 -0800524 options[APP_OPTIONS_RX_FIFO_SIZE] = ecm->fifo_size;
525 options[APP_OPTIONS_TX_FIFO_SIZE] = ecm->fifo_size;
526 options[APP_OPTIONS_PRIVATE_SEGMENT_COUNT] = ecm->private_segment_count;
527 options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = prealloc_fifos;
Florin Coras4399c2e2018-01-25 06:34:42 -0800528 options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN;
Florin Coras58d36f02018-03-09 13:05:53 -0800529 options[APP_OPTIONS_TLS_ENGINE] = ecm->tls_engine;
Florin Coras4399c2e2018-01-25 06:34:42 -0800530 if (appns_id)
531 {
532 options[APP_OPTIONS_FLAGS] |= appns_flags;
533 options[APP_OPTIONS_NAMESPACE_SECRET] = appns_secret;
534 }
535 a->options = options;
536 a->namespace_id = appns_id;
537
538 if ((error = vnet_application_attach (a)))
539 return error;
540
541 ecm->app_index = a->app_index;
542 return 0;
543}
544
545static int
546echo_clients_detach ()
547{
548 echo_client_main_t *ecm = &echo_client_main;
549 vnet_app_detach_args_t _da, *da = &_da;
550 int rv;
551
552 da->app_index = ecm->app_index;
553 rv = vnet_application_detach (da);
554 ecm->test_client_attached = 0;
555 ecm->app_index = ~0;
556 return rv;
557}
558
559static void *
560echo_client_thread_fn (void *arg)
561{
562 return 0;
563}
564
565/** Start a transmit thread */
566int
567echo_clients_start_tx_pthread (echo_client_main_t * ecm)
568{
569 if (ecm->client_thread_handle == 0)
570 {
571 int rv = pthread_create (&ecm->client_thread_handle,
572 NULL /*attr */ ,
573 echo_client_thread_fn, 0);
574 if (rv)
575 {
576 ecm->client_thread_handle = 0;
577 return -1;
578 }
579 }
580 return 0;
581}
582
583clib_error_t *
584echo_clients_connect (vlib_main_t * vm, u32 n_clients)
585{
586 echo_client_main_t *ecm = &echo_client_main;
587 vnet_connect_args_t _a, *a = &_a;
588 clib_error_t *error = 0;
589 int i;
Florin Coras8f89dd02018-03-05 16:53:07 -0800590
Dave Barachb7b92992018-10-17 10:38:51 -0400591 clib_memset (a, 0, sizeof (*a));
Florin Coras4399c2e2018-01-25 06:34:42 -0800592 for (i = 0; i < n_clients; i++)
593 {
Florin Coras4399c2e2018-01-25 06:34:42 -0800594 a->uri = (char *) ecm->connect_uri;
595 a->api_context = i;
596 a->app_index = ecm->app_index;
Florin Coras4399c2e2018-01-25 06:34:42 -0800597
598 if ((error = vnet_connect_uri (a)))
599 return error;
600
601 /* Crude pacing for call setups */
602 if ((i % 4) == 0)
603 vlib_process_suspend (vm, 10e-6);
604 ASSERT (i + 1 >= ecm->ready_connections);
605 while (i + 1 - ecm->ready_connections > 1000)
606 {
607 vlib_process_suspend (vm, 100e-6);
608 }
609 }
610 return 0;
611}
612
613#define ec_cli_output(_fmt, _args...) \
Florin Coras7fb0fe12018-04-09 09:24:52 -0700614 if (!ecm->no_output) \
Florin Coras4399c2e2018-01-25 06:34:42 -0800615 vlib_cli_output(vm, _fmt, ##_args)
616
617static clib_error_t *
618echo_clients_command_fn (vlib_main_t * vm,
619 unformat_input_t * input, vlib_cli_command_t * cmd)
620{
621 echo_client_main_t *ecm = &echo_client_main;
622 vlib_thread_main_t *thread_main = vlib_get_thread_main ();
Florin Coras4399c2e2018-01-25 06:34:42 -0800623 u64 tmp, total_bytes, appns_flags = 0, appns_secret = 0;
624 f64 test_timeout = 20.0, syn_timeout = 20.0, delta;
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800625 char *default_uri = "tcp://6.0.1.1/1234";
626 uword *event_data = 0, event_type;
Florin Coras4399c2e2018-01-25 06:34:42 -0800627 f64 time_before_connects;
628 u32 n_clients = 1;
629 int preallocate_sessions = 0;
630 char *transfer_type;
631 clib_error_t *error = 0;
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800632 u8 *appns_id = 0;
Florin Coras4399c2e2018-01-25 06:34:42 -0800633 int i;
634
635 ecm->bytes_to_send = 8192;
636 ecm->no_return = 0;
637 ecm->fifo_size = 64 << 10;
638 ecm->connections_per_batch = 1000;
639 ecm->private_segment_count = 0;
640 ecm->private_segment_size = 0;
641 ecm->no_output = 0;
642 ecm->test_bytes = 0;
643 ecm->test_failed = 0;
644 ecm->vlib_main = vm;
Florin Coras58d36f02018-03-09 13:05:53 -0800645 ecm->tls_engine = TLS_ENGINE_OPENSSL;
Florin Coras8e43d042018-05-04 15:46:57 -0700646 ecm->no_copy = 0;
Florin Coraseb97e5f2018-10-15 21:35:42 -0700647 ecm->run_test = ECHO_CLIENTS_STARTING;
Florin Coras58d36f02018-03-09 13:05:53 -0800648
Florin Coras4399c2e2018-01-25 06:34:42 -0800649 if (thread_main->n_vlib_mains > 1)
650 clib_spinlock_init (&ecm->sessions_lock);
651 vec_free (ecm->connect_uri);
652
653 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
654 {
655 if (unformat (input, "uri %s", &ecm->connect_uri))
656 ;
657 else if (unformat (input, "nclients %d", &n_clients))
658 ;
659 else if (unformat (input, "mbytes %lld", &tmp))
660 ecm->bytes_to_send = tmp << 20;
661 else if (unformat (input, "gbytes %lld", &tmp))
662 ecm->bytes_to_send = tmp << 30;
663 else if (unformat (input, "bytes %lld", &ecm->bytes_to_send))
664 ;
665 else if (unformat (input, "test-timeout %f", &test_timeout))
666 ;
667 else if (unformat (input, "syn-timeout %f", &syn_timeout))
668 ;
669 else if (unformat (input, "no-return"))
670 ecm->no_return = 1;
671 else if (unformat (input, "fifo-size %d", &ecm->fifo_size))
672 ecm->fifo_size <<= 10;
673 else if (unformat (input, "private-segment-count %d",
674 &ecm->private_segment_count))
675 ;
676 else if (unformat (input, "private-segment-size %U",
677 unformat_memory_size, &tmp))
678 {
679 if (tmp >= 0x100000000ULL)
680 return clib_error_return
681 (0, "private segment size %lld (%llu) too large", tmp, tmp);
682 ecm->private_segment_size = tmp;
683 }
684 else if (unformat (input, "preallocate-fifos"))
685 ecm->prealloc_fifos = 1;
686 else if (unformat (input, "preallocate-sessions"))
687 preallocate_sessions = 1;
688 else
689 if (unformat (input, "client-batch %d", &ecm->connections_per_batch))
690 ;
691 else if (unformat (input, "appns %_%v%_", &appns_id))
692 ;
693 else if (unformat (input, "all-scope"))
694 appns_flags |= (APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE
695 | APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE);
696 else if (unformat (input, "local-scope"))
697 appns_flags = APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
698 else if (unformat (input, "global-scope"))
699 appns_flags = APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
700 else if (unformat (input, "secret %lu", &appns_secret))
701 ;
702 else if (unformat (input, "no-output"))
703 ecm->no_output = 1;
704 else if (unformat (input, "test-bytes"))
705 ecm->test_bytes = 1;
Florin Coras58d36f02018-03-09 13:05:53 -0800706 else if (unformat (input, "tls-engine %d", &ecm->tls_engine))
707 ;
Florin Coras4399c2e2018-01-25 06:34:42 -0800708 else
Florin Corasa332c462018-01-31 06:52:17 -0800709 return clib_error_return (0, "failed: unknown input `%U'",
Florin Coras4399c2e2018-01-25 06:34:42 -0800710 format_unformat_error, input);
711 }
712
713 /* Store cli process node index for signalling */
714 ecm->cli_node_index =
715 vlib_get_current_process (vm)->node_runtime.node_index;
716
717 if (ecm->is_init == 0)
718 {
719 if (echo_clients_init (vm))
720 return clib_error_return (0, "failed init");
721 }
722
723
724 ecm->ready_connections = 0;
725 ecm->expected_connections = n_clients;
726 ecm->rx_total = 0;
727 ecm->tx_total = 0;
728
729 if (!ecm->connect_uri)
730 {
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800731 clib_warning ("No uri provided. Using default: %s", default_uri);
732 ecm->connect_uri = format (0, "%s%c", default_uri, 0);
Florin Coras4399c2e2018-01-25 06:34:42 -0800733 }
734
Florin Coras7fb0fe12018-04-09 09:24:52 -0700735 if (ecm->connect_uri[0] == 'u' && ecm->connect_uri[3] != 'c')
736 ecm->is_dgram = 1;
737
Florin Coras4399c2e2018-01-25 06:34:42 -0800738#if ECHO_CLIENT_PTHREAD
739 echo_clients_start_tx_pthread ();
740#endif
741
742 vlib_worker_thread_barrier_sync (vm);
743 vnet_session_enable_disable (vm, 1 /* turn on session and transports */ );
744 vlib_worker_thread_barrier_release (vm);
745
746 if (ecm->test_client_attached == 0)
747 {
748 if ((error = echo_clients_attach (appns_id, appns_flags, appns_secret)))
749 {
750 vec_free (appns_id);
751 clib_error_report (error);
752 return error;
753 }
754 vec_free (appns_id);
755 }
756 ecm->test_client_attached = 1;
757
758 /* Turn on the builtin client input nodes */
759 for (i = 0; i < thread_main->n_vlib_mains; i++)
760 vlib_node_set_state (vlib_mains[i], echo_clients_node.index,
761 VLIB_NODE_STATE_POLLING);
762
763 if (preallocate_sessions)
Florin Coras48750892018-05-16 09:28:02 -0700764 pool_init_fixed (ecm->sessions, 1.1 * n_clients);
Florin Coras4399c2e2018-01-25 06:34:42 -0800765
766 /* Fire off connect requests */
767 time_before_connects = vlib_time_now (vm);
768 if ((error = echo_clients_connect (vm, n_clients)))
Florin Corasc977e7c2018-10-16 20:30:31 -0700769 goto cleanup;
Florin Coras4399c2e2018-01-25 06:34:42 -0800770
771 /* Park until the sessions come up, or ten seconds elapse... */
772 vlib_process_wait_for_event_or_clock (vm, syn_timeout);
773 event_type = vlib_process_get_events (vm, &event_data);
774 switch (event_type)
775 {
776 case ~0:
777 ec_cli_output ("Timeout with only %d sessions active...",
778 ecm->ready_connections);
779 error = clib_error_return (0, "failed: syn timeout with %d sessions",
780 ecm->ready_connections);
781 goto cleanup;
782
783 case 1:
784 delta = vlib_time_now (vm) - time_before_connects;
785 if (delta != 0.0)
786 ec_cli_output ("%d three-way handshakes in %.2f seconds %.2f/s",
787 n_clients, delta, ((f64) n_clients) / delta);
788
789 ecm->test_start_time = vlib_time_now (ecm->vlib_main);
790 ec_cli_output ("Test started at %.6f", ecm->test_start_time);
791 break;
792
793 default:
794 ec_cli_output ("unexpected event(1): %d", event_type);
795 error = clib_error_return (0, "failed: unexpected event(1): %d",
796 event_type);
797 goto cleanup;
798 }
799
800 /* Now wait for the sessions to finish... */
801 vlib_process_wait_for_event_or_clock (vm, test_timeout);
802 event_type = vlib_process_get_events (vm, &event_data);
803 switch (event_type)
804 {
805 case ~0:
806 ec_cli_output ("Timeout with %d sessions still active...",
807 ecm->ready_connections);
808 error = clib_error_return (0, "failed: timeout with %d sessions",
809 ecm->ready_connections);
810 goto cleanup;
811
812 case 2:
813 ecm->test_end_time = vlib_time_now (vm);
814 ec_cli_output ("Test finished at %.6f", ecm->test_end_time);
815 break;
816
817 default:
818 ec_cli_output ("unexpected event(2): %d", event_type);
819 error = clib_error_return (0, "failed: unexpected event(2): %d",
820 event_type);
821 goto cleanup;
822 }
823
824 delta = ecm->test_end_time - ecm->test_start_time;
825 if (delta != 0.0)
826 {
827 total_bytes = (ecm->no_return ? ecm->tx_total : ecm->rx_total);
828 transfer_type = ecm->no_return ? "half-duplex" : "full-duplex";
829 ec_cli_output ("%lld bytes (%lld mbytes, %lld gbytes) in %.2f seconds",
830 total_bytes, total_bytes / (1ULL << 20),
831 total_bytes / (1ULL << 30), delta);
832 ec_cli_output ("%.2f bytes/second %s", ((f64) total_bytes) / (delta),
833 transfer_type);
834 ec_cli_output ("%.4f gbit/second %s",
835 (((f64) total_bytes * 8.0) / delta / 1e9),
836 transfer_type);
837 }
838 else
839 {
840 ec_cli_output ("zero delta-t?");
841 error = clib_error_return (0, "failed: zero delta-t");
842 goto cleanup;
843 }
844
845 if (ecm->test_bytes && ecm->test_failed)
846 error = clib_error_return (0, "failed: test bytes");
847
848cleanup:
Florin Coraseb97e5f2018-10-15 21:35:42 -0700849 ecm->run_test = ECHO_CLIENTS_EXITING;
Florin Corasef915342018-09-29 10:23:06 -0700850 vlib_process_wait_for_event_or_clock (vm, 10e-3);
Florin Coras4399c2e2018-01-25 06:34:42 -0800851 for (i = 0; i < vec_len (ecm->connection_index_by_thread); i++)
852 {
853 vec_reset_length (ecm->connection_index_by_thread[i]);
854 vec_reset_length (ecm->connections_this_batch_by_thread[i]);
855 }
856
857 pool_free (ecm->sessions);
858
859 /* Detach the application, so we can use different fifo sizes next time */
860 if (ecm->test_client_attached)
861 {
862 if (echo_clients_detach ())
863 {
864 error = clib_error_return (0, "failed: app detach");
865 ec_cli_output ("WARNING: app detach failed...");
866 }
867 }
868 if (error)
869 ec_cli_output ("test failed");
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800870 vec_free (ecm->connect_uri);
Florin Coras4399c2e2018-01-25 06:34:42 -0800871 return error;
872}
873
874/* *INDENT-OFF* */
875VLIB_CLI_COMMAND (echo_clients_command, static) =
876{
877 .path = "test echo clients",
878 .short_help = "test echo clients [nclients %d][[m|g]bytes <bytes>]"
879 "[test-timeout <time>][syn-timeout <time>][no-return][fifo-size <size>]"
880 "[private-segment-count <count>][private-segment-size <bytes>[m|g]]"
881 "[preallocate-fifos][preallocate-sessions][client-batch <batch-size>]"
882 "[uri <tcp://ip/port>][test-bytes][no-output]",
883 .function = echo_clients_command_fn,
884 .is_mp_safe = 1,
885};
886/* *INDENT-ON* */
887
888clib_error_t *
889echo_clients_main_init (vlib_main_t * vm)
890{
891 echo_client_main_t *ecm = &echo_client_main;
892 ecm->is_init = 0;
893 return 0;
894}
895
896VLIB_INIT_FUNCTION (echo_clients_main_init);
897
898/*
899 * fd.io coding-style-patch-verification: ON
900 *
901 * Local Variables:
902 * eval: (c-set-style "gnu")
903 * End:
904 */