blob: 44e6ffce8428b4920ae149b008924c551ca268b2 [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,
Florin Corasf6c43132019-03-01 12:41:21 -080066 SESSION_IO_EVT_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;
Dave Barach178cf492018-11-13 16:34:13 -050089 clib_memcpy_fast (&hdr.rmt_ip, &at->rmt_ip,
90 sizeof (ip46_address_t));
Florin Coras8e43d042018-05-04 15:46:57 -070091 hdr.is_ip4 = at->is_ip4;
92 hdr.rmt_port = at->rmt_port;
Dave Barach178cf492018-11-13 16:34:13 -050093 clib_memcpy_fast (&hdr.lcl_ip, &at->lcl_ip,
94 sizeof (ip46_address_t));
Florin Coras8e43d042018-05-04 15:46:57 -070095 hdr.lcl_port = at->lcl_port;
96 svm_fifo_enqueue_nowait (f, sizeof (hdr), (u8 *) & hdr);
97 svm_fifo_enqueue_nocopy (f, rv);
Florin Coras3c2fed52018-07-04 04:15:05 -070098 session_send_io_evt_to_thread_custom (f, s->thread_index,
Florin Corasf6c43132019-03-01 12:41:21 -080099 SESSION_IO_EVT_TX);
Florin Coras8e43d042018-05-04 15:46:57 -0700100 }
101 else
102 rv = app_send_dgram (&s->data, test_data + test_buf_offset,
103 bytes_this_chunk, 0);
104 }
Florin Coras4399c2e2018-01-25 06:34:42 -0800105
106 /* If we managed to enqueue data... */
107 if (rv > 0)
108 {
109 /* Account for it... */
110 s->bytes_to_send -= rv;
111 s->bytes_sent += rv;
112
113 if (ECHO_CLIENT_DBG)
114 {
115 /* *INDENT-OFF* */
116 ELOG_TYPE_DECLARE (e) =
117 {
118 .format = "tx-enq: xfer %d bytes, sent %u remain %u",
119 .format_args = "i4i4i4",
120 };
121 /* *INDENT-ON* */
122 struct
123 {
124 u32 data[3];
125 } *ed;
126 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
127 ed->data[0] = rv;
128 ed->data[1] = s->bytes_sent;
129 ed->data[2] = s->bytes_to_send;
130 }
Florin Coras4399c2e2018-01-25 06:34:42 -0800131 }
132}
133
134static void
Florin Coras48750892018-05-16 09:28:02 -0700135receive_data_chunk (echo_client_main_t * ecm, eclient_session_t * s)
Florin Coras4399c2e2018-01-25 06:34:42 -0800136{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700137 svm_fifo_t *rx_fifo = s->data.rx_fifo;
138 u32 thread_index = vlib_get_thread_index ();
Florin Coras4399c2e2018-01-25 06:34:42 -0800139 int n_read, i;
140
141 if (ecm->test_bytes)
142 {
Florin Coras7fb0fe12018-04-09 09:24:52 -0700143 if (!ecm->is_dgram)
144 n_read = app_recv_stream (&s->data, ecm->rx_buf[thread_index],
145 vec_len (ecm->rx_buf[thread_index]));
146 else
147 n_read = app_recv_dgram (&s->data, ecm->rx_buf[thread_index],
148 vec_len (ecm->rx_buf[thread_index]));
Florin Coras4399c2e2018-01-25 06:34:42 -0800149 }
150 else
151 {
152 n_read = svm_fifo_max_dequeue (rx_fifo);
153 svm_fifo_dequeue_drop (rx_fifo, n_read);
154 }
155
156 if (n_read > 0)
157 {
158 if (ECHO_CLIENT_DBG)
159 {
160 /* *INDENT-OFF* */
161 ELOG_TYPE_DECLARE (e) =
162 {
163 .format = "rx-deq: %d bytes",
164 .format_args = "i4",
165 };
166 /* *INDENT-ON* */
167 struct
168 {
169 u32 data[1];
170 } *ed;
171 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
172 ed->data[0] = n_read;
173 }
174
175 if (ecm->test_bytes)
176 {
177 for (i = 0; i < n_read; i++)
178 {
Florin Coras7fb0fe12018-04-09 09:24:52 -0700179 if (ecm->rx_buf[thread_index][i]
Florin Coras4399c2e2018-01-25 06:34:42 -0800180 != ((s->bytes_received + i) & 0xff))
181 {
182 clib_warning ("read %d error at byte %lld, 0x%x not 0x%x",
183 n_read, s->bytes_received + i,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700184 ecm->rx_buf[thread_index][i],
Florin Coras4399c2e2018-01-25 06:34:42 -0800185 ((s->bytes_received + i) & 0xff));
186 ecm->test_failed = 1;
187 }
188 }
189 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700190 ASSERT (n_read <= s->bytes_to_receive);
Florin Coras4399c2e2018-01-25 06:34:42 -0800191 s->bytes_to_receive -= n_read;
192 s->bytes_received += n_read;
193 }
194}
195
196static uword
197echo_client_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
198 vlib_frame_t * frame)
199{
200 echo_client_main_t *ecm = &echo_client_main;
201 int my_thread_index = vlib_get_thread_index ();
Florin Coras48750892018-05-16 09:28:02 -0700202 eclient_session_t *sp;
Florin Coras4399c2e2018-01-25 06:34:42 -0800203 int i;
204 int delete_session;
205 u32 *connection_indices;
206 u32 *connections_this_batch;
207 u32 nconnections_this_batch;
208
209 connection_indices = ecm->connection_index_by_thread[my_thread_index];
210 connections_this_batch =
211 ecm->connections_this_batch_by_thread[my_thread_index];
212
Florin Coraseb97e5f2018-10-15 21:35:42 -0700213 if ((ecm->run_test != ECHO_CLIENTS_RUNNING) ||
Florin Coras4399c2e2018-01-25 06:34:42 -0800214 ((vec_len (connection_indices) == 0)
215 && vec_len (connections_this_batch) == 0))
216 return 0;
217
218 /* Grab another pile of connections */
219 if (PREDICT_FALSE (vec_len (connections_this_batch) == 0))
220 {
221 nconnections_this_batch =
222 clib_min (ecm->connections_per_batch, vec_len (connection_indices));
223
224 ASSERT (nconnections_this_batch > 0);
225 vec_validate (connections_this_batch, nconnections_this_batch - 1);
Dave Barach178cf492018-11-13 16:34:13 -0500226 clib_memcpy_fast (connections_this_batch,
227 connection_indices + vec_len (connection_indices)
228 - nconnections_this_batch,
229 nconnections_this_batch * sizeof (u32));
Florin Coras4399c2e2018-01-25 06:34:42 -0800230 _vec_len (connection_indices) -= nconnections_this_batch;
231 }
232
233 if (PREDICT_FALSE (ecm->prev_conns != ecm->connections_per_batch
234 && ecm->prev_conns == vec_len (connections_this_batch)))
235 {
236 ecm->repeats++;
237 ecm->prev_conns = vec_len (connections_this_batch);
238 if (ecm->repeats == 500000)
239 {
240 clib_warning ("stuck clients");
241 }
242 }
243 else
244 {
245 ecm->prev_conns = vec_len (connections_this_batch);
246 ecm->repeats = 0;
247 }
248
249 for (i = 0; i < vec_len (connections_this_batch); i++)
250 {
251 delete_session = 1;
252
253 sp = pool_elt_at_index (ecm->sessions, connections_this_batch[i]);
254
255 if (sp->bytes_to_send > 0)
256 {
257 send_data_chunk (ecm, sp);
258 delete_session = 0;
259 }
260 if (sp->bytes_to_receive > 0)
261 {
Florin Coras4399c2e2018-01-25 06:34:42 -0800262 delete_session = 0;
263 }
264 if (PREDICT_FALSE (delete_session == 1))
265 {
Florin Coras288eaab2019-02-03 15:26:14 -0800266 session_t *s;
Florin Coras4399c2e2018-01-25 06:34:42 -0800267
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000268 clib_atomic_fetch_add (&ecm->tx_total, sp->bytes_sent);
269 clib_atomic_fetch_add (&ecm->rx_total, sp->bytes_received);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700270 s = session_get_from_handle_if_valid (sp->vpp_session_handle);
Florin Coras4399c2e2018-01-25 06:34:42 -0800271
272 if (s)
273 {
274 vnet_disconnect_args_t _a, *a = &_a;
275 a->handle = session_handle (s);
276 a->app_index = ecm->app_index;
277 vnet_disconnect_session (a);
278
279 vec_delete (connections_this_batch, 1, i);
280 i--;
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000281 clib_atomic_fetch_add (&ecm->ready_connections, -1);
Florin Coras4399c2e2018-01-25 06:34:42 -0800282 }
283 else
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800284 {
285 clib_warning ("session AWOL?");
286 vec_delete (connections_this_batch, 1, i);
287 }
Florin Coras4399c2e2018-01-25 06:34:42 -0800288
289 /* Kick the debug CLI process */
290 if (ecm->ready_connections == 0)
291 {
292 signal_evt_to_cli (2);
293 }
294 }
295 }
296
297 ecm->connection_index_by_thread[my_thread_index] = connection_indices;
298 ecm->connections_this_batch_by_thread[my_thread_index] =
299 connections_this_batch;
300 return 0;
301}
302
303/* *INDENT-OFF* */
304VLIB_REGISTER_NODE (echo_clients_node) =
305{
306 .function = echo_client_node_fn,
307 .name = "echo-clients",
308 .type = VLIB_NODE_TYPE_INPUT,
309 .state = VLIB_NODE_STATE_DISABLED,
310};
311/* *INDENT-ON* */
312
313static int
314create_api_loopback (echo_client_main_t * ecm)
315{
316 api_main_t *am = &api_main;
317 vl_shmem_hdr_t *shmem_hdr;
318
319 shmem_hdr = am->shmem_hdr;
320 ecm->vl_input_queue = shmem_hdr->vl_input_queue;
321 ecm->my_client_index = vl_api_memclnt_create_internal ("echo_client",
322 ecm->vl_input_queue);
323 return 0;
324}
325
326static int
327echo_clients_init (vlib_main_t * vm)
328{
329 echo_client_main_t *ecm = &echo_client_main;
330 vlib_thread_main_t *vtm = vlib_get_thread_main ();
331 u32 num_threads;
332 int i;
333
334 if (create_api_loopback (ecm))
335 return -1;
336
337 num_threads = 1 /* main thread */ + vtm->n_threads;
338
Florin Coras7fb0fe12018-04-09 09:24:52 -0700339 /* Init test data. Big buffer */
340 vec_validate (ecm->connect_test_data, 4 * 1024 * 1024 - 1);
Florin Coras4399c2e2018-01-25 06:34:42 -0800341 for (i = 0; i < vec_len (ecm->connect_test_data); i++)
342 ecm->connect_test_data[i] = i & 0xff;
343
344 vec_validate (ecm->rx_buf, num_threads - 1);
345 for (i = 0; i < num_threads; i++)
346 vec_validate (ecm->rx_buf[i], vec_len (ecm->connect_test_data) - 1);
347
348 ecm->is_init = 1;
349
350 vec_validate (ecm->connection_index_by_thread, vtm->n_vlib_mains);
351 vec_validate (ecm->connections_this_batch_by_thread, vtm->n_vlib_mains);
352 vec_validate (ecm->vpp_event_queue, vtm->n_vlib_mains);
353
354 return 0;
355}
356
357static int
358echo_clients_session_connected_callback (u32 app_index, u32 api_context,
Florin Coras288eaab2019-02-03 15:26:14 -0800359 session_t * s, u8 is_fail)
Florin Coras4399c2e2018-01-25 06:34:42 -0800360{
361 echo_client_main_t *ecm = &echo_client_main;
Florin Coras48750892018-05-16 09:28:02 -0700362 eclient_session_t *session;
Florin Coras4399c2e2018-01-25 06:34:42 -0800363 u32 session_index;
Florin Coras52207f12018-07-12 14:48:06 -0700364 u8 thread_index;
Florin Coras4399c2e2018-01-25 06:34:42 -0800365
Florin Coraseb97e5f2018-10-15 21:35:42 -0700366 if (PREDICT_FALSE (ecm->run_test != ECHO_CLIENTS_STARTING))
367 return -1;
368
Florin Coras4399c2e2018-01-25 06:34:42 -0800369 if (is_fail)
370 {
371 clib_warning ("connection %d failed!", api_context);
Florin Corasc01d5782018-10-17 14:53:11 -0700372 ecm->run_test = ECHO_CLIENTS_EXITING;
Florin Coras4399c2e2018-01-25 06:34:42 -0800373 signal_evt_to_cli (-1);
374 return 0;
375 }
376
Florin Coras52207f12018-07-12 14:48:06 -0700377 thread_index = s->thread_index;
Florin Coras40903ac2018-06-10 14:41:23 -0700378 ASSERT (thread_index == vlib_get_thread_index ()
379 || session_transport_service_type (s) == TRANSPORT_SERVICE_CL);
Florin Coras4399c2e2018-01-25 06:34:42 -0800380
381 if (!ecm->vpp_event_queue[thread_index])
382 ecm->vpp_event_queue[thread_index] =
383 session_manager_get_vpp_event_queue (thread_index);
384
385 /*
386 * Setup session
387 */
388 clib_spinlock_lock_if_init (&ecm->sessions_lock);
389 pool_get (ecm->sessions, session);
390 clib_spinlock_unlock_if_init (&ecm->sessions_lock);
391
Dave Barachb7b92992018-10-17 10:38:51 -0400392 clib_memset (session, 0, sizeof (*session));
Florin Coras4399c2e2018-01-25 06:34:42 -0800393 session_index = session - ecm->sessions;
394 session->bytes_to_send = ecm->bytes_to_send;
395 session->bytes_to_receive = ecm->no_return ? 0ULL : ecm->bytes_to_send;
Florin Coras288eaab2019-02-03 15:26:14 -0800396 session->data.rx_fifo = s->rx_fifo;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700397 session->data.rx_fifo->client_session_index = session_index;
Florin Coras288eaab2019-02-03 15:26:14 -0800398 session->data.tx_fifo = s->tx_fifo;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700399 session->data.tx_fifo->client_session_index = session_index;
400 session->data.vpp_evt_q = ecm->vpp_event_queue[thread_index];
Florin Coras4399c2e2018-01-25 06:34:42 -0800401 session->vpp_session_handle = session_handle (s);
402
Florin Coras7fb0fe12018-04-09 09:24:52 -0700403 if (ecm->is_dgram)
404 {
405 transport_connection_t *tc;
406 tc = session_get_transport (s);
Dave Barach178cf492018-11-13 16:34:13 -0500407 clib_memcpy_fast (&session->data.transport, tc,
408 sizeof (session->data.transport));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700409 session->data.is_dgram = 1;
410 }
411
Florin Coras4399c2e2018-01-25 06:34:42 -0800412 vec_add1 (ecm->connection_index_by_thread[thread_index], session_index);
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000413 clib_atomic_fetch_add (&ecm->ready_connections, 1);
Florin Coras4399c2e2018-01-25 06:34:42 -0800414 if (ecm->ready_connections == ecm->expected_connections)
415 {
Florin Coraseb97e5f2018-10-15 21:35:42 -0700416 ecm->run_test = ECHO_CLIENTS_RUNNING;
Florin Coras4399c2e2018-01-25 06:34:42 -0800417 /* Signal the CLI process that the action is starting... */
418 signal_evt_to_cli (1);
419 }
420
421 return 0;
422}
423
424static void
Florin Coras288eaab2019-02-03 15:26:14 -0800425echo_clients_session_reset_callback (session_t * s)
Florin Coras4399c2e2018-01-25 06:34:42 -0800426{
Florin Coras4af830c2018-12-04 09:21:36 -0800427 echo_client_main_t *ecm = &echo_client_main;
428 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
429
Florin Coras4399c2e2018-01-25 06:34:42 -0800430 if (s->session_state == SESSION_STATE_READY)
431 clib_warning ("Reset active connection %U", format_stream_session, s, 2);
Florin Coras4af830c2018-12-04 09:21:36 -0800432
433 a->handle = session_handle (s);
434 a->app_index = ecm->app_index;
435 vnet_disconnect_session (a);
Florin Coras4399c2e2018-01-25 06:34:42 -0800436 return;
437}
438
439static int
Florin Coras288eaab2019-02-03 15:26:14 -0800440echo_clients_session_create_callback (session_t * s)
Florin Coras4399c2e2018-01-25 06:34:42 -0800441{
442 return 0;
443}
444
445static void
Florin Coras288eaab2019-02-03 15:26:14 -0800446echo_clients_session_disconnect_callback (session_t * s)
Florin Coras4399c2e2018-01-25 06:34:42 -0800447{
448 echo_client_main_t *ecm = &echo_client_main;
Florin Coras4af830c2018-12-04 09:21:36 -0800449 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras4399c2e2018-01-25 06:34:42 -0800450 a->handle = session_handle (s);
451 a->app_index = ecm->app_index;
452 vnet_disconnect_session (a);
453 return;
454}
455
Florin Corasc01d5782018-10-17 14:53:11 -0700456void
Florin Coras288eaab2019-02-03 15:26:14 -0800457echo_clients_session_disconnect (session_t * s)
Florin Corasc01d5782018-10-17 14:53:11 -0700458{
459 echo_client_main_t *ecm = &echo_client_main;
Florin Coras4af830c2018-12-04 09:21:36 -0800460 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Corasc01d5782018-10-17 14:53:11 -0700461 a->handle = session_handle (s);
462 a->app_index = ecm->app_index;
463 vnet_disconnect_session (a);
464}
465
Florin Coras4399c2e2018-01-25 06:34:42 -0800466static int
Florin Coras288eaab2019-02-03 15:26:14 -0800467echo_clients_rx_callback (session_t * s)
Florin Coras4399c2e2018-01-25 06:34:42 -0800468{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700469 echo_client_main_t *ecm = &echo_client_main;
Florin Coras48750892018-05-16 09:28:02 -0700470 eclient_session_t *sp;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700471
Florin Coraseb97e5f2018-10-15 21:35:42 -0700472 if (PREDICT_FALSE (ecm->run_test != ECHO_CLIENTS_RUNNING))
473 {
474 echo_clients_session_disconnect (s);
475 return -1;
476 }
477
Florin Coras288eaab2019-02-03 15:26:14 -0800478 sp = pool_elt_at_index (ecm->sessions, s->rx_fifo->client_session_index);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700479 receive_data_chunk (ecm, sp);
480
Florin Coras288eaab2019-02-03 15:26:14 -0800481 if (svm_fifo_max_dequeue (s->rx_fifo))
Florin Coras7fb0fe12018-04-09 09:24:52 -0700482 {
Florin Coras288eaab2019-02-03 15:26:14 -0800483 if (svm_fifo_set_event (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800484 session_send_io_evt_to_thread (s->rx_fifo, SESSION_IO_EVT_BUILTIN_RX);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700485 }
Florin Coras4399c2e2018-01-25 06:34:42 -0800486 return 0;
487}
488
Florin Corasa332c462018-01-31 06:52:17 -0800489int
Florin Corasfa76a762018-11-29 12:40:10 -0800490echo_client_add_segment_callback (u32 client_index, u64 segment_handle)
Florin Corasa332c462018-01-31 06:52:17 -0800491{
492 /* New heaps may be added */
493 return 0;
494}
495
Florin Coras4399c2e2018-01-25 06:34:42 -0800496/* *INDENT-OFF* */
497static session_cb_vft_t echo_clients = {
498 .session_reset_callback = echo_clients_session_reset_callback,
499 .session_connected_callback = echo_clients_session_connected_callback,
500 .session_accept_callback = echo_clients_session_create_callback,
501 .session_disconnect_callback = echo_clients_session_disconnect_callback,
Florin Coras371ca502018-02-21 12:07:41 -0800502 .builtin_app_rx_callback = echo_clients_rx_callback,
Florin Corasa332c462018-01-31 06:52:17 -0800503 .add_segment_callback = echo_client_add_segment_callback
Florin Coras4399c2e2018-01-25 06:34:42 -0800504};
505/* *INDENT-ON* */
506
507static clib_error_t *
508echo_clients_attach (u8 * appns_id, u64 appns_flags, u64 appns_secret)
509{
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800510 u32 prealloc_fifos, segment_size = 256 << 20;
Florin Coras4399c2e2018-01-25 06:34:42 -0800511 echo_client_main_t *ecm = &echo_client_main;
512 vnet_app_attach_args_t _a, *a = &_a;
513 u64 options[16];
Florin Corasc1a42652019-02-08 18:27:29 -0800514 int rv;
Florin Coras4399c2e2018-01-25 06:34:42 -0800515
Dave Barachb7b92992018-10-17 10:38:51 -0400516 clib_memset (a, 0, sizeof (*a));
517 clib_memset (options, 0, sizeof (options));
Florin Coras4399c2e2018-01-25 06:34:42 -0800518
519 a->api_client_index = ecm->my_client_index;
520 a->session_cb_vft = &echo_clients;
521
522 prealloc_fifos = ecm->prealloc_fifos ? ecm->expected_connections : 1;
523
524 if (ecm->private_segment_size)
525 segment_size = ecm->private_segment_size;
526
527 options[APP_OPTIONS_ACCEPT_COOKIE] = 0x12345678;
528 options[APP_OPTIONS_SEGMENT_SIZE] = segment_size;
Florin Corasa332c462018-01-31 06:52:17 -0800529 options[APP_OPTIONS_ADD_SEGMENT_SIZE] = segment_size;
Florin Coras4399c2e2018-01-25 06:34:42 -0800530 options[APP_OPTIONS_RX_FIFO_SIZE] = ecm->fifo_size;
531 options[APP_OPTIONS_TX_FIFO_SIZE] = ecm->fifo_size;
532 options[APP_OPTIONS_PRIVATE_SEGMENT_COUNT] = ecm->private_segment_count;
533 options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = prealloc_fifos;
Florin Coras4399c2e2018-01-25 06:34:42 -0800534 options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN;
Florin Coras58d36f02018-03-09 13:05:53 -0800535 options[APP_OPTIONS_TLS_ENGINE] = ecm->tls_engine;
Florin Coras4399c2e2018-01-25 06:34:42 -0800536 if (appns_id)
537 {
538 options[APP_OPTIONS_FLAGS] |= appns_flags;
539 options[APP_OPTIONS_NAMESPACE_SECRET] = appns_secret;
540 }
541 a->options = options;
542 a->namespace_id = appns_id;
543
Florin Corasc1a42652019-02-08 18:27:29 -0800544 if ((rv = vnet_application_attach (a)))
545 return clib_error_return (0, "attach returned %d", rv);
Florin Coras4399c2e2018-01-25 06:34:42 -0800546
547 ecm->app_index = a->app_index;
548 return 0;
549}
550
551static int
552echo_clients_detach ()
553{
554 echo_client_main_t *ecm = &echo_client_main;
555 vnet_app_detach_args_t _da, *da = &_da;
556 int rv;
557
558 da->app_index = ecm->app_index;
Florin Coras4af830c2018-12-04 09:21:36 -0800559 da->api_client_index = ~0;
Florin Coras4399c2e2018-01-25 06:34:42 -0800560 rv = vnet_application_detach (da);
561 ecm->test_client_attached = 0;
562 ecm->app_index = ~0;
563 return rv;
564}
565
566static void *
567echo_client_thread_fn (void *arg)
568{
569 return 0;
570}
571
572/** Start a transmit thread */
573int
574echo_clients_start_tx_pthread (echo_client_main_t * ecm)
575{
576 if (ecm->client_thread_handle == 0)
577 {
578 int rv = pthread_create (&ecm->client_thread_handle,
579 NULL /*attr */ ,
580 echo_client_thread_fn, 0);
581 if (rv)
582 {
583 ecm->client_thread_handle = 0;
584 return -1;
585 }
586 }
587 return 0;
588}
589
590clib_error_t *
591echo_clients_connect (vlib_main_t * vm, u32 n_clients)
592{
593 echo_client_main_t *ecm = &echo_client_main;
594 vnet_connect_args_t _a, *a = &_a;
Florin Corasc1a42652019-02-08 18:27:29 -0800595 int i, rv;
Florin Coras8f89dd02018-03-05 16:53:07 -0800596
Dave Barachb7b92992018-10-17 10:38:51 -0400597 clib_memset (a, 0, sizeof (*a));
Florin Coras4399c2e2018-01-25 06:34:42 -0800598 for (i = 0; i < n_clients; i++)
599 {
Florin Coras4399c2e2018-01-25 06:34:42 -0800600 a->uri = (char *) ecm->connect_uri;
601 a->api_context = i;
602 a->app_index = ecm->app_index;
Florin Coras4399c2e2018-01-25 06:34:42 -0800603
Florin Corasc1a42652019-02-08 18:27:29 -0800604 if ((rv = vnet_connect_uri (a)))
605 return clib_error_return (0, "connect returned: %d", rv);
Florin Coras4399c2e2018-01-25 06:34:42 -0800606
607 /* Crude pacing for call setups */
Florin Coras222e1f412019-02-16 20:47:32 -0800608 if ((i % 16) == 0)
609 vlib_process_suspend (vm, 100e-6);
Florin Coras4399c2e2018-01-25 06:34:42 -0800610 ASSERT (i + 1 >= ecm->ready_connections);
Florin Coras222e1f412019-02-16 20:47:32 -0800611 while (i + 1 - ecm->ready_connections > 128)
612 vlib_process_suspend (vm, 1e-3);
Florin Coras4399c2e2018-01-25 06:34:42 -0800613 }
614 return 0;
615}
616
617#define ec_cli_output(_fmt, _args...) \
Florin Coras7fb0fe12018-04-09 09:24:52 -0700618 if (!ecm->no_output) \
Florin Coras4399c2e2018-01-25 06:34:42 -0800619 vlib_cli_output(vm, _fmt, ##_args)
620
621static clib_error_t *
622echo_clients_command_fn (vlib_main_t * vm,
623 unformat_input_t * input, vlib_cli_command_t * cmd)
624{
625 echo_client_main_t *ecm = &echo_client_main;
626 vlib_thread_main_t *thread_main = vlib_get_thread_main ();
Florin Coras4399c2e2018-01-25 06:34:42 -0800627 u64 tmp, total_bytes, appns_flags = 0, appns_secret = 0;
628 f64 test_timeout = 20.0, syn_timeout = 20.0, delta;
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800629 char *default_uri = "tcp://6.0.1.1/1234";
630 uword *event_data = 0, event_type;
Florin Coras4399c2e2018-01-25 06:34:42 -0800631 f64 time_before_connects;
632 u32 n_clients = 1;
633 int preallocate_sessions = 0;
634 char *transfer_type;
635 clib_error_t *error = 0;
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800636 u8 *appns_id = 0;
Florin Coras4399c2e2018-01-25 06:34:42 -0800637 int i;
638
639 ecm->bytes_to_send = 8192;
640 ecm->no_return = 0;
641 ecm->fifo_size = 64 << 10;
642 ecm->connections_per_batch = 1000;
643 ecm->private_segment_count = 0;
644 ecm->private_segment_size = 0;
645 ecm->no_output = 0;
646 ecm->test_bytes = 0;
647 ecm->test_failed = 0;
648 ecm->vlib_main = vm;
Florin Coras58d36f02018-03-09 13:05:53 -0800649 ecm->tls_engine = TLS_ENGINE_OPENSSL;
Florin Coras8e43d042018-05-04 15:46:57 -0700650 ecm->no_copy = 0;
Florin Coraseb97e5f2018-10-15 21:35:42 -0700651 ecm->run_test = ECHO_CLIENTS_STARTING;
Florin Coras58d36f02018-03-09 13:05:53 -0800652
Florin Coras4399c2e2018-01-25 06:34:42 -0800653 if (thread_main->n_vlib_mains > 1)
654 clib_spinlock_init (&ecm->sessions_lock);
655 vec_free (ecm->connect_uri);
656
657 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
658 {
659 if (unformat (input, "uri %s", &ecm->connect_uri))
660 ;
661 else if (unformat (input, "nclients %d", &n_clients))
662 ;
663 else if (unformat (input, "mbytes %lld", &tmp))
664 ecm->bytes_to_send = tmp << 20;
665 else if (unformat (input, "gbytes %lld", &tmp))
666 ecm->bytes_to_send = tmp << 30;
667 else if (unformat (input, "bytes %lld", &ecm->bytes_to_send))
668 ;
669 else if (unformat (input, "test-timeout %f", &test_timeout))
670 ;
671 else if (unformat (input, "syn-timeout %f", &syn_timeout))
672 ;
673 else if (unformat (input, "no-return"))
674 ecm->no_return = 1;
675 else if (unformat (input, "fifo-size %d", &ecm->fifo_size))
676 ecm->fifo_size <<= 10;
677 else if (unformat (input, "private-segment-count %d",
678 &ecm->private_segment_count))
679 ;
680 else if (unformat (input, "private-segment-size %U",
681 unformat_memory_size, &tmp))
682 {
683 if (tmp >= 0x100000000ULL)
684 return clib_error_return
685 (0, "private segment size %lld (%llu) too large", tmp, tmp);
686 ecm->private_segment_size = tmp;
687 }
688 else if (unformat (input, "preallocate-fifos"))
689 ecm->prealloc_fifos = 1;
690 else if (unformat (input, "preallocate-sessions"))
691 preallocate_sessions = 1;
692 else
693 if (unformat (input, "client-batch %d", &ecm->connections_per_batch))
694 ;
695 else if (unformat (input, "appns %_%v%_", &appns_id))
696 ;
697 else if (unformat (input, "all-scope"))
698 appns_flags |= (APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE
699 | APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE);
700 else if (unformat (input, "local-scope"))
701 appns_flags = APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
702 else if (unformat (input, "global-scope"))
703 appns_flags = APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
704 else if (unformat (input, "secret %lu", &appns_secret))
705 ;
706 else if (unformat (input, "no-output"))
707 ecm->no_output = 1;
708 else if (unformat (input, "test-bytes"))
709 ecm->test_bytes = 1;
Florin Coras58d36f02018-03-09 13:05:53 -0800710 else if (unformat (input, "tls-engine %d", &ecm->tls_engine))
711 ;
Florin Coras4399c2e2018-01-25 06:34:42 -0800712 else
Florin Corasa332c462018-01-31 06:52:17 -0800713 return clib_error_return (0, "failed: unknown input `%U'",
Florin Coras4399c2e2018-01-25 06:34:42 -0800714 format_unformat_error, input);
715 }
716
717 /* Store cli process node index for signalling */
718 ecm->cli_node_index =
719 vlib_get_current_process (vm)->node_runtime.node_index;
720
721 if (ecm->is_init == 0)
722 {
723 if (echo_clients_init (vm))
724 return clib_error_return (0, "failed init");
725 }
726
727
728 ecm->ready_connections = 0;
729 ecm->expected_connections = n_clients;
730 ecm->rx_total = 0;
731 ecm->tx_total = 0;
732
733 if (!ecm->connect_uri)
734 {
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800735 clib_warning ("No uri provided. Using default: %s", default_uri);
736 ecm->connect_uri = format (0, "%s%c", default_uri, 0);
Florin Coras4399c2e2018-01-25 06:34:42 -0800737 }
738
Florin Coras7fb0fe12018-04-09 09:24:52 -0700739 if (ecm->connect_uri[0] == 'u' && ecm->connect_uri[3] != 'c')
740 ecm->is_dgram = 1;
741
Florin Coras4399c2e2018-01-25 06:34:42 -0800742#if ECHO_CLIENT_PTHREAD
743 echo_clients_start_tx_pthread ();
744#endif
745
746 vlib_worker_thread_barrier_sync (vm);
747 vnet_session_enable_disable (vm, 1 /* turn on session and transports */ );
748 vlib_worker_thread_barrier_release (vm);
749
750 if (ecm->test_client_attached == 0)
751 {
752 if ((error = echo_clients_attach (appns_id, appns_flags, appns_secret)))
753 {
754 vec_free (appns_id);
755 clib_error_report (error);
756 return error;
757 }
758 vec_free (appns_id);
759 }
760 ecm->test_client_attached = 1;
761
762 /* Turn on the builtin client input nodes */
763 for (i = 0; i < thread_main->n_vlib_mains; i++)
764 vlib_node_set_state (vlib_mains[i], echo_clients_node.index,
765 VLIB_NODE_STATE_POLLING);
766
767 if (preallocate_sessions)
Florin Coras48750892018-05-16 09:28:02 -0700768 pool_init_fixed (ecm->sessions, 1.1 * n_clients);
Florin Coras4399c2e2018-01-25 06:34:42 -0800769
770 /* Fire off connect requests */
771 time_before_connects = vlib_time_now (vm);
772 if ((error = echo_clients_connect (vm, n_clients)))
Florin Corasc977e7c2018-10-16 20:30:31 -0700773 goto cleanup;
Florin Coras4399c2e2018-01-25 06:34:42 -0800774
775 /* Park until the sessions come up, or ten seconds elapse... */
776 vlib_process_wait_for_event_or_clock (vm, syn_timeout);
777 event_type = vlib_process_get_events (vm, &event_data);
778 switch (event_type)
779 {
780 case ~0:
781 ec_cli_output ("Timeout with only %d sessions active...",
782 ecm->ready_connections);
783 error = clib_error_return (0, "failed: syn timeout with %d sessions",
784 ecm->ready_connections);
785 goto cleanup;
786
787 case 1:
788 delta = vlib_time_now (vm) - time_before_connects;
789 if (delta != 0.0)
790 ec_cli_output ("%d three-way handshakes in %.2f seconds %.2f/s",
791 n_clients, delta, ((f64) n_clients) / delta);
792
793 ecm->test_start_time = vlib_time_now (ecm->vlib_main);
794 ec_cli_output ("Test started at %.6f", ecm->test_start_time);
795 break;
796
797 default:
798 ec_cli_output ("unexpected event(1): %d", event_type);
799 error = clib_error_return (0, "failed: unexpected event(1): %d",
800 event_type);
801 goto cleanup;
802 }
803
804 /* Now wait for the sessions to finish... */
805 vlib_process_wait_for_event_or_clock (vm, test_timeout);
806 event_type = vlib_process_get_events (vm, &event_data);
807 switch (event_type)
808 {
809 case ~0:
810 ec_cli_output ("Timeout with %d sessions still active...",
811 ecm->ready_connections);
812 error = clib_error_return (0, "failed: timeout with %d sessions",
813 ecm->ready_connections);
814 goto cleanup;
815
816 case 2:
817 ecm->test_end_time = vlib_time_now (vm);
818 ec_cli_output ("Test finished at %.6f", ecm->test_end_time);
819 break;
820
821 default:
822 ec_cli_output ("unexpected event(2): %d", event_type);
823 error = clib_error_return (0, "failed: unexpected event(2): %d",
824 event_type);
825 goto cleanup;
826 }
827
828 delta = ecm->test_end_time - ecm->test_start_time;
829 if (delta != 0.0)
830 {
831 total_bytes = (ecm->no_return ? ecm->tx_total : ecm->rx_total);
832 transfer_type = ecm->no_return ? "half-duplex" : "full-duplex";
833 ec_cli_output ("%lld bytes (%lld mbytes, %lld gbytes) in %.2f seconds",
834 total_bytes, total_bytes / (1ULL << 20),
835 total_bytes / (1ULL << 30), delta);
836 ec_cli_output ("%.2f bytes/second %s", ((f64) total_bytes) / (delta),
837 transfer_type);
838 ec_cli_output ("%.4f gbit/second %s",
839 (((f64) total_bytes * 8.0) / delta / 1e9),
840 transfer_type);
841 }
842 else
843 {
844 ec_cli_output ("zero delta-t?");
845 error = clib_error_return (0, "failed: zero delta-t");
846 goto cleanup;
847 }
848
849 if (ecm->test_bytes && ecm->test_failed)
850 error = clib_error_return (0, "failed: test bytes");
851
852cleanup:
Florin Coraseb97e5f2018-10-15 21:35:42 -0700853 ecm->run_test = ECHO_CLIENTS_EXITING;
Florin Corasef915342018-09-29 10:23:06 -0700854 vlib_process_wait_for_event_or_clock (vm, 10e-3);
Florin Coras4399c2e2018-01-25 06:34:42 -0800855 for (i = 0; i < vec_len (ecm->connection_index_by_thread); i++)
856 {
857 vec_reset_length (ecm->connection_index_by_thread[i]);
858 vec_reset_length (ecm->connections_this_batch_by_thread[i]);
859 }
860
861 pool_free (ecm->sessions);
862
863 /* Detach the application, so we can use different fifo sizes next time */
864 if (ecm->test_client_attached)
865 {
866 if (echo_clients_detach ())
867 {
868 error = clib_error_return (0, "failed: app detach");
869 ec_cli_output ("WARNING: app detach failed...");
870 }
871 }
872 if (error)
873 ec_cli_output ("test failed");
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800874 vec_free (ecm->connect_uri);
Florin Coras4399c2e2018-01-25 06:34:42 -0800875 return error;
876}
877
878/* *INDENT-OFF* */
879VLIB_CLI_COMMAND (echo_clients_command, static) =
880{
881 .path = "test echo clients",
882 .short_help = "test echo clients [nclients %d][[m|g]bytes <bytes>]"
883 "[test-timeout <time>][syn-timeout <time>][no-return][fifo-size <size>]"
884 "[private-segment-count <count>][private-segment-size <bytes>[m|g]]"
885 "[preallocate-fifos][preallocate-sessions][client-batch <batch-size>]"
886 "[uri <tcp://ip/port>][test-bytes][no-output]",
887 .function = echo_clients_command_fn,
888 .is_mp_safe = 1,
889};
890/* *INDENT-ON* */
891
892clib_error_t *
893echo_clients_main_init (vlib_main_t * vm)
894{
895 echo_client_main_t *ecm = &echo_client_main;
896 ecm->is_init = 0;
897 return 0;
898}
899
900VLIB_INIT_FUNCTION (echo_clients_main_init);
901
902/*
903 * fd.io coding-style-patch-verification: ON
904 *
905 * Local Variables:
906 * eval: (c-set-style "gnu")
907 * End:
908 */