blob: d3c4a75ddf3a6763b32899740ad70497e43c4507 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <stdio.h>
17#include <signal.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050018#include <svm/svm_fifo_segment.h>
19#include <vlibmemory/api.h>
20#include <vpp/api/vpe_msg_enum.h>
Florin Corase04c2992017-03-01 08:17:34 -080021#include <vnet/session/application_interface.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050022
Florin Corase04c2992017-03-01 08:17:34 -080023#define vl_typedefs /* define message structures */
Dave Barach68b0fb02017-02-28 15:15:56 -050024#include <vpp/api/vpe_all_api_h.h>
25#undef vl_typedefs
26
27/* declare message handlers for each api */
28
Florin Corase04c2992017-03-01 08:17:34 -080029#define vl_endianfun /* define message structures */
Dave Barach68b0fb02017-02-28 15:15:56 -050030#include <vpp/api/vpe_all_api_h.h>
31#undef vl_endianfun
32
33/* instantiate all the print functions we know about */
34#define vl_print(handle, ...)
35#define vl_printfun
36#include <vpp/api/vpe_all_api_h.h>
37#undef vl_printfun
38
Dave Barach68b0fb02017-02-28 15:15:56 -050039typedef struct
40{
Florin Corase04c2992017-03-01 08:17:34 -080041 svm_fifo_t *server_rx_fifo;
42 svm_fifo_t *server_tx_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -050043
Florin Corasa5464812017-04-19 13:00:05 -070044 u64 vpp_session_handle;
Florin Corasf03a59a2017-06-09 21:07:32 -070045 u64 bytes_received;
46 f64 start;
Dave Barach68b0fb02017-02-28 15:15:56 -050047} session_t;
48
49typedef enum
50{
51 STATE_START,
Florin Corasa5464812017-04-19 13:00:05 -070052 STATE_ATTACHED,
Dave Barach68b0fb02017-02-28 15:15:56 -050053 STATE_READY,
54 STATE_DISCONNECTING,
55 STATE_FAILED
56} connection_state_t;
57
58typedef struct
59{
60 /* vpe input queue */
61 unix_shared_memory_queue_t *vl_input_queue;
62
63 /* API client handle */
64 u32 my_client_index;
65
66 /* The URI we're playing with */
Florin Corase04c2992017-03-01 08:17:34 -080067 u8 *uri;
Dave Barach68b0fb02017-02-28 15:15:56 -050068
69 /* Session pool */
Florin Corase04c2992017-03-01 08:17:34 -080070 session_t *sessions;
Dave Barach68b0fb02017-02-28 15:15:56 -050071
72 /* Hash table for disconnect processing */
Florin Corase04c2992017-03-01 08:17:34 -080073 uword *session_index_by_vpp_handles;
Dave Barach68b0fb02017-02-28 15:15:56 -050074
75 /* intermediate rx buffer */
Florin Corase04c2992017-03-01 08:17:34 -080076 u8 *rx_buf;
Dave Barach68b0fb02017-02-28 15:15:56 -050077
78 /* URI for slave's connect */
Florin Corase04c2992017-03-01 08:17:34 -080079 u8 *connect_uri;
Dave Barach68b0fb02017-02-28 15:15:56 -050080
81 u32 connected_session_index;
82
83 int i_am_master;
84
85 /* drop all packets */
86 int drop_packets;
87
88 /* Our event queue */
Florin Corase04c2992017-03-01 08:17:34 -080089 unix_shared_memory_queue_t *our_event_queue;
Dave Barach68b0fb02017-02-28 15:15:56 -050090
91 /* $$$ single thread only for the moment */
Florin Corase04c2992017-03-01 08:17:34 -080092 unix_shared_memory_queue_t *vpp_event_queue;
Dave Barach68b0fb02017-02-28 15:15:56 -050093
94 pid_t my_pid;
95
96 /* For deadman timers */
97 clib_time_t clib_time;
98
99 /* State of the connection, shared between msg RX thread and main thread */
100 volatile connection_state_t state;
101
102 /* Signal variables */
103 volatile int time_to_stop;
104 volatile int time_to_print_stats;
105
106 u32 configured_segment_size;
107
108 /* VNET_API_ERROR_FOO -> "Foo" hash table */
Florin Corase04c2992017-03-01 08:17:34 -0800109 uword *error_string_by_error_number;
Dave Barach68b0fb02017-02-28 15:15:56 -0500110
111 u8 *connect_test_data;
Florin Corase04c2992017-03-01 08:17:34 -0800112 pthread_t client_rx_thread_handle;
113 u32 client_bytes_received;
114 u8 test_return_packets;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700115 u64 bytes_to_send;
Florin Corase04c2992017-03-01 08:17:34 -0800116
117 /* convenience */
118 svm_fifo_segment_main_t *segment_main;
Dave Barach68b0fb02017-02-28 15:15:56 -0500119} uri_tcp_test_main_t;
120
121uri_tcp_test_main_t uri_tcp_test_main;
122
123#if CLIB_DEBUG > 0
124#define NITER 10000
125#else
126#define NITER 4000000
127#endif
128
Florin Corasa5464812017-04-19 13:00:05 -0700129static u8 *
130format_api_error (u8 * s, va_list * args)
131{
132 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
133 i32 error = va_arg (*args, u32);
134 uword *p;
135
136 p = hash_get (utm->error_string_by_error_number, -error);
137
138 if (p)
139 s = format (s, "%s", p[0]);
140 else
141 s = format (s, "%d", error);
142 return s;
143}
144
145static void
146init_error_string_table (uri_tcp_test_main_t * utm)
147{
148 utm->error_string_by_error_number = hash_create (0, sizeof (uword));
149
150#define _(n,v,s) hash_set (utm->error_string_by_error_number, -v, s);
151 foreach_vnet_api_error;
152#undef _
153
154 hash_set (utm->error_string_by_error_number, 99, "Misc");
155}
156
Dave Barach68b0fb02017-02-28 15:15:56 -0500157int
158wait_for_state_change (uri_tcp_test_main_t * utm, connection_state_t state)
159{
160#if CLIB_DEBUG > 0
161#define TIMEOUT 600.0
162#else
163#define TIMEOUT 600.0
164#endif
165
166 f64 timeout = clib_time_now (&utm->clib_time) + TIMEOUT;
167
168 while (clib_time_now (&utm->clib_time) < timeout)
169 {
170 if (utm->state == state)
Florin Corase04c2992017-03-01 08:17:34 -0800171 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500172 if (utm->state == STATE_FAILED)
173 return -1;
flyingeagle23a07779f2017-04-26 20:22:04 +0800174 if (utm->time_to_stop == 1)
Florin Corasf03a59a2017-06-09 21:07:32 -0700175 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500176 }
177 clib_warning ("timeout waiting for STATE_READY");
178 return -1;
179}
180
Florin Coras6cf30ad2017-04-04 23:08:23 -0700181void
Florin Corasa5464812017-04-19 13:00:05 -0700182application_send_attach (uri_tcp_test_main_t * utm)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700183{
184 vl_api_application_attach_t *bmp;
Florin Corasf03a59a2017-06-09 21:07:32 -0700185 u32 fifo_size = 4 << 20;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700186 bmp = vl_msg_api_alloc (sizeof (*bmp));
187 memset (bmp, 0, sizeof (*bmp));
188
189 bmp->_vl_msg_id = ntohs (VL_API_APPLICATION_ATTACH);
190 bmp->client_index = utm->my_client_index;
191 bmp->context = ntohl (0xfeedface);
Florin Corasa5464812017-04-19 13:00:05 -0700192 bmp->options[APP_OPTIONS_FLAGS] =
Florin Corascea194d2017-10-02 00:18:51 -0700193 APP_OPTIONS_FLAGS_ACCEPT_REDIRECT | APP_OPTIONS_FLAGS_ADD_SEGMENT;
Dave Barach10d8cc62017-05-30 09:30:07 -0400194 bmp->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = 16;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700195 bmp->options[SESSION_OPTIONS_RX_FIFO_SIZE] = fifo_size;
196 bmp->options[SESSION_OPTIONS_TX_FIFO_SIZE] = fifo_size;
197 bmp->options[SESSION_OPTIONS_ADD_SEGMENT_SIZE] = 128 << 20;
198 bmp->options[SESSION_OPTIONS_SEGMENT_SIZE] = 256 << 20;
199 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
200}
201
Florin Corasa5464812017-04-19 13:00:05 -0700202int
203application_attach (uri_tcp_test_main_t * utm)
204{
205 application_send_attach (utm);
206 if (wait_for_state_change (utm, STATE_ATTACHED))
207 {
208 clib_warning ("timeout waiting for STATE_ATTACHED");
209 return -1;
210 }
211 return 0;
212}
213
Florin Coras6cf30ad2017-04-04 23:08:23 -0700214void
215application_detach (uri_tcp_test_main_t * utm)
216{
217 vl_api_application_detach_t *bmp;
218 bmp = vl_msg_api_alloc (sizeof (*bmp));
219 memset (bmp, 0, sizeof (*bmp));
220
221 bmp->_vl_msg_id = ntohs (VL_API_APPLICATION_DETACH);
222 bmp->client_index = utm->my_client_index;
223 bmp->context = ntohl (0xfeedface);
224 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
225}
226
227static void
228vl_api_application_attach_reply_t_handler (vl_api_application_attach_reply_t *
229 mp)
230{
231 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
232 svm_fifo_segment_create_args_t _a, *a = &_a;
233 int rv;
234
235 if (mp->retval)
236 {
Florin Corasa5464812017-04-19 13:00:05 -0700237 clib_warning ("attach failed: %U", format_api_error,
238 clib_net_to_host_u32 (mp->retval));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700239 utm->state = STATE_FAILED;
240 return;
241 }
242
243 if (mp->segment_name_length == 0)
244 {
245 clib_warning ("segment_name_length zero");
246 return;
247 }
248
249 a->segment_name = (char *) mp->segment_name;
250 a->segment_size = mp->segment_size;
251
252 ASSERT (mp->app_event_queue_address);
253
254 /* Attach to the segment vpp created */
255 rv = svm_fifo_segment_attach (a);
256 if (rv)
257 {
258 clib_warning ("svm_fifo_segment_attach ('%s') failed",
259 mp->segment_name);
260 return;
261 }
262
263 utm->our_event_queue =
Damjan Marion7bee80c2017-04-26 15:32:12 +0200264 uword_to_pointer (mp->app_event_queue_address,
265 unix_shared_memory_queue_t *);
Florin Corasa5464812017-04-19 13:00:05 -0700266 utm->state = STATE_ATTACHED;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700267}
268
269static void
270vl_api_application_detach_reply_t_handler (vl_api_application_detach_reply_t *
271 mp)
272{
273 if (mp->retval)
274 clib_warning ("detach returned with err: %d", mp->retval);
275}
276
Dave Barach68b0fb02017-02-28 15:15:56 -0500277static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500278stop_signal (int signum)
279{
280 uri_tcp_test_main_t *um = &uri_tcp_test_main;
281
282 um->time_to_stop = 1;
283}
284
285static void
286stats_signal (int signum)
287{
288 uri_tcp_test_main_t *um = &uri_tcp_test_main;
289
290 um->time_to_print_stats = 1;
291}
292
293static clib_error_t *
294setup_signal_handlers (void)
295{
296 signal (SIGINT, stats_signal);
297 signal (SIGQUIT, stop_signal);
298 signal (SIGTERM, stop_signal);
299
300 return 0;
301}
302
303void
304vlib_cli_output (struct vlib_main_t *vm, char *fmt, ...)
305{
306 clib_warning ("BUG");
307}
308
309int
310connect_to_vpp (char *name)
311{
312 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
313 api_main_t *am = &api_main;
314
315 if (vl_client_connect_to_vlib ("/vpe-api", name, 32) < 0)
316 return -1;
317
318 utm->vl_input_queue = am->shmem_hdr->vl_input_queue;
319 utm->my_client_index = am->my_client_index;
320
321 return 0;
322}
323
324static void
Florin Corase04c2992017-03-01 08:17:34 -0800325vl_api_map_another_segment_t_handler (vl_api_map_another_segment_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500326{
327 svm_fifo_segment_create_args_t _a, *a = &_a;
328 int rv;
329
Florin Coras3cbc04b2017-10-02 00:18:51 -0700330 memset (a, 0, sizeof (*a));
Dave Barach68b0fb02017-02-28 15:15:56 -0500331 a->segment_name = (char *) mp->segment_name;
332 a->segment_size = mp->segment_size;
333 /* Attach to the segment vpp created */
334 rv = svm_fifo_segment_attach (a);
335 if (rv)
336 {
337 clib_warning ("svm_fifo_segment_attach ('%s') failed",
Florin Corase04c2992017-03-01 08:17:34 -0800338 mp->segment_name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500339 return;
340 }
341 clib_warning ("Mapped new segment '%s' size %d", mp->segment_name,
Florin Corase04c2992017-03-01 08:17:34 -0800342 mp->segment_size);
Dave Barach68b0fb02017-02-28 15:15:56 -0500343}
344
345static void
Florin Corasf03a59a2017-06-09 21:07:32 -0700346session_print_stats (uri_tcp_test_main_t * utm, session_t * session)
347{
348 f64 deltat;
349 u64 bytes;
350
351 deltat = clib_time_now (&utm->clib_time) - session->start;
352 bytes = utm->i_am_master ? session->bytes_received : utm->bytes_to_send;
353 fformat (stdout, "Finished in %.6f\n", deltat);
354 fformat (stdout, "%.4f Gbit/second\n", (bytes * 8.0) / deltat / 1e9);
355}
356
357static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500358vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
359{
360 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Florin Corasf03a59a2017-06-09 21:07:32 -0700361 session_t *session = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800362 vl_api_disconnect_session_reply_t *rmp;
363 uword *p;
Dave Barach68b0fb02017-02-28 15:15:56 -0500364 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500365
Florin Coras6cf30ad2017-04-04 23:08:23 -0700366 p = hash_get (utm->session_index_by_vpp_handles, mp->handle);
Florin Corase04c2992017-03-01 08:17:34 -0800367
368 if (p)
369 {
370 session = pool_elt_at_index (utm->sessions, p[0]);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700371 hash_unset (utm->session_index_by_vpp_handles, mp->handle);
Florin Corase04c2992017-03-01 08:17:34 -0800372 pool_put (utm->sessions, session);
373 }
374 else
375 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700376 clib_warning ("couldn't find session key %llx", mp->handle);
Florin Corase04c2992017-03-01 08:17:34 -0800377 rv = -11;
378 }
379
Florin Corasf03a59a2017-06-09 21:07:32 -0700380// utm->time_to_stop = 1;
Florin Corase04c2992017-03-01 08:17:34 -0800381
382 rmp = vl_msg_api_alloc (sizeof (*rmp));
383 memset (rmp, 0, sizeof (*rmp));
384
385 rmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION_REPLY);
386 rmp->retval = rv;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700387 rmp->handle = mp->handle;
Florin Corase04c2992017-03-01 08:17:34 -0800388 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
Florin Corasf03a59a2017-06-09 21:07:32 -0700389
390 if (session)
391 session_print_stats (utm, session);
Florin Corase04c2992017-03-01 08:17:34 -0800392}
393
394static void
395vl_api_reset_session_t_handler (vl_api_reset_session_t * mp)
396{
397 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Florin Corase04c2992017-03-01 08:17:34 -0800398 vl_api_reset_session_reply_t *rmp;
399 uword *p;
400 int rv = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800401
Florin Coras6cf30ad2017-04-04 23:08:23 -0700402 p = hash_get (utm->session_index_by_vpp_handles, mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500403
404 if (p)
405 {
Florin Corasf6359c82017-06-19 12:26:09 -0400406 clib_warning ("got reset");
407 /* Cleanup later */
Florin Corasd79b41e2017-03-04 05:37:52 -0800408 utm->time_to_stop = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500409 }
410 else
411 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700412 clib_warning ("couldn't find session key %llx", mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500413 rv = -11;
414 }
415
416 rmp = vl_msg_api_alloc (sizeof (*rmp));
417 memset (rmp, 0, sizeof (*rmp));
Florin Corasd79b41e2017-03-04 05:37:52 -0800418 rmp->_vl_msg_id = ntohs (VL_API_RESET_SESSION_REPLY);
Dave Barach68b0fb02017-02-28 15:15:56 -0500419 rmp->retval = rv;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700420 rmp->handle = mp->handle;
Florin Corase04c2992017-03-01 08:17:34 -0800421 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500422}
423
424void
Florin Corase04c2992017-03-01 08:17:34 -0800425client_handle_fifo_event_rx (uri_tcp_test_main_t * utm,
426 session_fifo_event_t * e)
Dave Barach68b0fb02017-02-28 15:15:56 -0500427{
Florin Corase04c2992017-03-01 08:17:34 -0800428 svm_fifo_t *rx_fifo;
429 int n_read, bytes, i;
Dave Barach68b0fb02017-02-28 15:15:56 -0500430
431 rx_fifo = e->fifo;
432
Florin Coras6792ec02017-03-13 03:49:51 -0700433 bytes = svm_fifo_max_dequeue (rx_fifo);
434 /* Allow enqueuing of new event */
435 svm_fifo_unset_event (rx_fifo);
436
437 /* Read the bytes */
Dave Barach68b0fb02017-02-28 15:15:56 -0500438 do
439 {
Florin Corasa5464812017-04-19 13:00:05 -0700440 n_read = svm_fifo_dequeue_nowait (rx_fifo,
Florin Coras6792ec02017-03-13 03:49:51 -0700441 clib_min (vec_len (utm->rx_buf),
442 bytes), utm->rx_buf);
Dave Barach68b0fb02017-02-28 15:15:56 -0500443 if (n_read > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800444 {
445 bytes -= n_read;
Florin Corasf03a59a2017-06-09 21:07:32 -0700446 if (utm->test_return_packets)
Florin Corase04c2992017-03-01 08:17:34 -0800447 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700448 for (i = 0; i < n_read; i++)
Florin Corase04c2992017-03-01 08:17:34 -0800449 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700450 if (utm->rx_buf[i]
451 != ((utm->client_bytes_received + i) & 0xff))
452 {
453 clib_warning ("error at byte %lld, 0x%x not 0x%x",
454 utm->client_bytes_received + i,
455 utm->rx_buf[i],
456 ((utm->client_bytes_received +
457 i) & 0xff));
458 }
Florin Corase04c2992017-03-01 08:17:34 -0800459 }
460 }
461 utm->client_bytes_received += n_read;
462 }
Florin Coras6792ec02017-03-13 03:49:51 -0700463 else
464 {
465 if (n_read == -2)
466 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700467// clib_warning ("weird!");
Florin Coras6792ec02017-03-13 03:49:51 -0700468 break;
469 }
470 }
Florin Corase04c2992017-03-01 08:17:34 -0800471
Dave Barach68b0fb02017-02-28 15:15:56 -0500472 }
Florin Coras6792ec02017-03-13 03:49:51 -0700473 while (bytes > 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500474}
475
476void
Florin Corase04c2992017-03-01 08:17:34 -0800477client_handle_event_queue (uri_tcp_test_main_t * utm)
Dave Barach68b0fb02017-02-28 15:15:56 -0500478{
479 session_fifo_event_t _e, *e = &_e;;
480
Florin Corase04c2992017-03-01 08:17:34 -0800481 unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
482 0 /* nowait */ );
Dave Barach68b0fb02017-02-28 15:15:56 -0500483 switch (e->event_type)
484 {
Florin Corasa5464812017-04-19 13:00:05 -0700485 case FIFO_EVENT_APP_RX:
Florin Corase04c2992017-03-01 08:17:34 -0800486 client_handle_fifo_event_rx (utm, e);
Dave Barach68b0fb02017-02-28 15:15:56 -0500487 break;
488
Florin Corasa5464812017-04-19 13:00:05 -0700489 case FIFO_EVENT_DISCONNECT:
Dave Barach68b0fb02017-02-28 15:15:56 -0500490 return;
491
492 default:
Florin Corase04c2992017-03-01 08:17:34 -0800493 clib_warning ("unknown event type %d", e->event_type);
Dave Barach68b0fb02017-02-28 15:15:56 -0500494 break;
495 }
496}
497
Florin Corase04c2992017-03-01 08:17:34 -0800498static void *
499client_rx_thread_fn (void *arg)
Dave Barach68b0fb02017-02-28 15:15:56 -0500500{
Florin Corase04c2992017-03-01 08:17:34 -0800501 session_fifo_event_t _e, *e = &_e;
502 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Dave Barach68b0fb02017-02-28 15:15:56 -0500503
Florin Corase04c2992017-03-01 08:17:34 -0800504 utm->client_bytes_received = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500505 while (1)
506 {
Florin Corase04c2992017-03-01 08:17:34 -0800507 unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
508 0 /* nowait */ );
Dave Barach68b0fb02017-02-28 15:15:56 -0500509 switch (e->event_type)
Florin Corase04c2992017-03-01 08:17:34 -0800510 {
Florin Corasa5464812017-04-19 13:00:05 -0700511 case FIFO_EVENT_APP_RX:
Florin Corase04c2992017-03-01 08:17:34 -0800512 client_handle_fifo_event_rx (utm, e);
513 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500514
Florin Corasa5464812017-04-19 13:00:05 -0700515 case FIFO_EVENT_DISCONNECT:
Florin Corase04c2992017-03-01 08:17:34 -0800516 return 0;
517 default:
518 clib_warning ("unknown event type %d", e->event_type);
519 break;
520 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500521
Florin Corase04c2992017-03-01 08:17:34 -0800522 if (PREDICT_FALSE (utm->time_to_stop == 1))
523 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500524 }
Florin Corase04c2992017-03-01 08:17:34 -0800525 pthread_exit (0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500526}
527
Dave Barach68b0fb02017-02-28 15:15:56 -0500528
529static void
Dave Wallace33e002b2017-09-06 01:20:02 -0400530vl_api_connect_session_reply_t_handler (vl_api_connect_session_reply_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500531{
532 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Dave Barach68b0fb02017-02-28 15:15:56 -0500533 session_t *session;
534 u32 session_index;
535 svm_fifo_t *rx_fifo, *tx_fifo;
536 int rv;
537
538 if (mp->retval)
539 {
Florin Corasa5464812017-04-19 13:00:05 -0700540 clib_warning ("connection failed with code: %U", format_api_error,
541 clib_net_to_host_u32 (mp->retval));
Dave Barach68b0fb02017-02-28 15:15:56 -0500542 utm->state = STATE_FAILED;
543 return;
544 }
Florin Corasade70e42017-10-14 18:56:41 -0700545 else
546 {
547 clib_warning ("connected with local ip %U port %d", format_ip46_address,
548 mp->lcl_ip, mp->is_ip4,
549 clib_net_to_host_u16 (mp->lcl_port));
550 }
Florin Corase04c2992017-03-01 08:17:34 -0800551
Damjan Marion7bee80c2017-04-26 15:32:12 +0200552 utm->vpp_event_queue =
553 uword_to_pointer (mp->vpp_event_queue_address,
554 unix_shared_memory_queue_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -0500555
556 /*
557 * Setup session
558 */
559
560 pool_get (utm->sessions, session);
561 session_index = session - utm->sessions;
562
Damjan Marion7bee80c2017-04-26 15:32:12 +0200563 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -0500564 rx_fifo->client_session_index = session_index;
Damjan Marion7bee80c2017-04-26 15:32:12 +0200565 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -0500566 tx_fifo->client_session_index = session_index;
567
568 session->server_rx_fifo = rx_fifo;
569 session->server_tx_fifo = tx_fifo;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700570 session->vpp_session_handle = mp->handle;
Florin Corasf03a59a2017-06-09 21:07:32 -0700571 session->start = clib_time_now (&utm->clib_time);
Dave Barach68b0fb02017-02-28 15:15:56 -0500572
573 /* Save handle */
574 utm->connected_session_index = session_index;
Florin Corase04c2992017-03-01 08:17:34 -0800575 utm->state = STATE_READY;
576
577 /* Add it to lookup table */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700578 hash_set (utm->session_index_by_vpp_handles, mp->handle, session_index);
Florin Corase04c2992017-03-01 08:17:34 -0800579
580 /* Start RX thread */
581 rv = pthread_create (&utm->client_rx_thread_handle,
582 NULL /*attr */ , client_rx_thread_fn, 0);
583 if (rv)
584 {
585 clib_warning ("pthread_create returned %d", rv);
586 rv = VNET_API_ERROR_SYSCALL_ERROR_1;
587 }
588}
589
Florin Coras6792ec02017-03-13 03:49:51 -0700590static void
591send_test_chunk (uri_tcp_test_main_t * utm, svm_fifo_t * tx_fifo, int mypid,
592 u32 bytes)
Florin Corase04c2992017-03-01 08:17:34 -0800593{
594 u8 *test_data = utm->connect_test_data;
595 u64 bytes_sent = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700596 int test_buf_offset = 0;
597 u32 bytes_to_snd;
Florin Corasf03a59a2017-06-09 21:07:32 -0700598 u32 queue_max_chunk = 128 << 10, actual_write;
Florin Corase04c2992017-03-01 08:17:34 -0800599 session_fifo_event_t evt;
Florin Coras6792ec02017-03-13 03:49:51 -0700600 int rv;
Florin Corase04c2992017-03-01 08:17:34 -0800601
Florin Coras6792ec02017-03-13 03:49:51 -0700602 bytes_to_snd = (bytes == 0) ? vec_len (test_data) : bytes;
603 if (bytes_to_snd > vec_len (test_data))
604 bytes_to_snd = vec_len (test_data);
Florin Corase04c2992017-03-01 08:17:34 -0800605
Florin Corasf6359c82017-06-19 12:26:09 -0400606 while (bytes_to_snd > 0 && !utm->time_to_stop)
Florin Corase04c2992017-03-01 08:17:34 -0800607 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700608 actual_write = (bytes_to_snd > queue_max_chunk) ?
609 queue_max_chunk : bytes_to_snd;
Florin Corasa5464812017-04-19 13:00:05 -0700610 rv = svm_fifo_enqueue_nowait (tx_fifo, actual_write,
Florin Coras6792ec02017-03-13 03:49:51 -0700611 test_data + test_buf_offset);
612
613 if (rv > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800614 {
Florin Coras6792ec02017-03-13 03:49:51 -0700615 bytes_to_snd -= rv;
616 test_buf_offset += rv;
617 bytes_sent += rv;
Florin Corase04c2992017-03-01 08:17:34 -0800618
Florin Coras6792ec02017-03-13 03:49:51 -0700619 if (svm_fifo_set_event (tx_fifo))
Florin Corase04c2992017-03-01 08:17:34 -0800620 {
Florin Corase04c2992017-03-01 08:17:34 -0800621 /* Fabricate TX event, send to vpp */
622 evt.fifo = tx_fifo;
Florin Corasa5464812017-04-19 13:00:05 -0700623 evt.event_type = FIFO_EVENT_APP_TX;
Florin Corase04c2992017-03-01 08:17:34 -0800624
625 unix_shared_memory_queue_add (utm->vpp_event_queue,
626 (u8 *) & evt,
627 0 /* do wait for mutex */ );
628 }
629 }
630 }
Florin Coras6792ec02017-03-13 03:49:51 -0700631}
632
633void
634client_send_data (uri_tcp_test_main_t * utm)
635{
636 u8 *test_data = utm->connect_test_data;
637 int mypid = getpid ();
638 session_t *session;
639 svm_fifo_t *tx_fifo;
640 u32 n_iterations, leftover;
641 int i;
642
643 session = pool_elt_at_index (utm->sessions, utm->connected_session_index);
644 tx_fifo = session->server_tx_fifo;
645
Florin Coras82b13a82017-04-25 11:58:06 -0700646 ASSERT (vec_len (test_data) > 0);
647
Florin Coras6792ec02017-03-13 03:49:51 -0700648 vec_validate (utm->rx_buf, vec_len (test_data) - 1);
649 n_iterations = utm->bytes_to_send / vec_len (test_data);
650
651 for (i = 0; i < n_iterations; i++)
652 {
653 send_test_chunk (utm, tx_fifo, mypid, 0);
Florin Corasf6359c82017-06-19 12:26:09 -0400654 if (utm->time_to_stop)
655 break;
Florin Coras6792ec02017-03-13 03:49:51 -0700656 }
657
658 leftover = utm->bytes_to_send % vec_len (test_data);
659 if (leftover)
660 send_test_chunk (utm, tx_fifo, mypid, leftover);
Florin Corase04c2992017-03-01 08:17:34 -0800661
Florin Corasf03a59a2017-06-09 21:07:32 -0700662 if (!utm->drop_packets)
Florin Corase04c2992017-03-01 08:17:34 -0800663 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700664 f64 timeout = clib_time_now (&utm->clib_time) + 10;
Florin Corase04c2992017-03-01 08:17:34 -0800665
666 /* Wait for the outstanding packets */
Florin Coras6792ec02017-03-13 03:49:51 -0700667 while (utm->client_bytes_received <
668 vec_len (test_data) * n_iterations + leftover)
Florin Corase04c2992017-03-01 08:17:34 -0800669 {
670 if (clib_time_now (&utm->clib_time) > timeout)
671 {
672 clib_warning ("timed out waiting for the missing packets");
673 break;
674 }
675 }
Florin Corase04c2992017-03-01 08:17:34 -0800676 }
Florin Coras6792ec02017-03-13 03:49:51 -0700677 utm->time_to_stop = 1;
Florin Corase04c2992017-03-01 08:17:34 -0800678}
679
680void
Florin Corasa5464812017-04-19 13:00:05 -0700681client_send_connect (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -0800682{
683 vl_api_connect_uri_t *cmp;
684 cmp = vl_msg_api_alloc (sizeof (*cmp));
685 memset (cmp, 0, sizeof (*cmp));
686
687 cmp->_vl_msg_id = ntohs (VL_API_CONNECT_URI);
688 cmp->client_index = utm->my_client_index;
689 cmp->context = ntohl (0xfeedface);
690 memcpy (cmp->uri, utm->connect_uri, vec_len (utm->connect_uri));
691 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & cmp);
692}
693
Florin Corasa5464812017-04-19 13:00:05 -0700694int
695client_connect (uri_tcp_test_main_t * utm)
696{
697 client_send_connect (utm);
698 if (wait_for_state_change (utm, STATE_READY))
699 {
700 clib_warning ("Connect failed");
701 return -1;
702 }
703 return 0;
704}
705
Florin Corase04c2992017-03-01 08:17:34 -0800706void
Florin Corasa5464812017-04-19 13:00:05 -0700707client_send_disconnect (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -0800708{
709 session_t *connected_session;
710 vl_api_disconnect_session_t *dmp;
711 connected_session = pool_elt_at_index (utm->sessions,
712 utm->connected_session_index);
713 dmp = vl_msg_api_alloc (sizeof (*dmp));
714 memset (dmp, 0, sizeof (*dmp));
715 dmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION);
716 dmp->client_index = utm->my_client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700717 dmp->handle = connected_session->vpp_session_handle;
Florin Corase04c2992017-03-01 08:17:34 -0800718 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & dmp);
719}
720
Florin Corasa5464812017-04-19 13:00:05 -0700721int
722client_disconnect (uri_tcp_test_main_t * utm)
723{
724 client_send_disconnect (utm);
Florin Corasf03a59a2017-06-09 21:07:32 -0700725 clib_warning ("Sent disconnect");
Florin Corasa5464812017-04-19 13:00:05 -0700726 if (wait_for_state_change (utm, STATE_START))
727 {
728 clib_warning ("Disconnect failed");
729 return -1;
730 }
731 return 0;
732}
733
Florin Corase04c2992017-03-01 08:17:34 -0800734static void
735client_test (uri_tcp_test_main_t * utm)
736{
737 int i;
738
Florin Corasa5464812017-04-19 13:00:05 -0700739 if (application_attach (utm))
740 return;
Florin Corase04c2992017-03-01 08:17:34 -0800741
Florin Corasa5464812017-04-19 13:00:05 -0700742 if (client_connect (utm))
Florin Corase04c2992017-03-01 08:17:34 -0800743 {
Florin Corasa5464812017-04-19 13:00:05 -0700744 application_detach (utm);
Florin Corase04c2992017-03-01 08:17:34 -0800745 return;
746 }
747
748 /* Init test data */
Florin Corasf03a59a2017-06-09 21:07:32 -0700749 vec_validate (utm->connect_test_data, 128 * 1024 - 1);
Florin Corase04c2992017-03-01 08:17:34 -0800750 for (i = 0; i < vec_len (utm->connect_test_data); i++)
751 utm->connect_test_data[i] = i & 0xff;
752
753 /* Start send */
754 client_send_data (utm);
755
756 /* Disconnect */
757 client_disconnect (utm);
Florin Coras6792ec02017-03-13 03:49:51 -0700758
Florin Coras6cf30ad2017-04-04 23:08:23 -0700759 application_detach (utm);
Florin Corase04c2992017-03-01 08:17:34 -0800760}
761
762static void
763vl_api_bind_uri_reply_t_handler (vl_api_bind_uri_reply_t * mp)
764{
765 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Florin Corase04c2992017-03-01 08:17:34 -0800766
767 if (mp->retval)
768 {
flyingeagle23a07779f2017-04-26 20:22:04 +0800769 clib_warning ("bind failed: %U", format_api_error,
Florin Corasa5464812017-04-19 13:00:05 -0700770 clib_net_to_host_u32 (mp->retval));
Florin Corase04c2992017-03-01 08:17:34 -0800771 utm->state = STATE_FAILED;
772 return;
773 }
774
Dave Barach68b0fb02017-02-28 15:15:56 -0500775 utm->state = STATE_READY;
776}
777
Dave Barach68b0fb02017-02-28 15:15:56 -0500778static void
Florin Corase04c2992017-03-01 08:17:34 -0800779vl_api_unbind_uri_reply_t_handler (vl_api_unbind_uri_reply_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500780{
781 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
782
783 if (mp->retval != 0)
Florin Corase04c2992017-03-01 08:17:34 -0800784 clib_warning ("returned %d", ntohl (mp->retval));
Dave Barach68b0fb02017-02-28 15:15:56 -0500785
786 utm->state = STATE_START;
787}
788
Florin Coras6cf30ad2017-04-04 23:08:23 -0700789u8 *
790format_ip4_address (u8 * s, va_list * args)
791{
792 u8 *a = va_arg (*args, u8 *);
793 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
794}
795
796u8 *
797format_ip6_address (u8 * s, va_list * args)
798{
799 ip6_address_t *a = va_arg (*args, ip6_address_t *);
800 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
801
802 i_max_n_zero = ARRAY_LEN (a->as_u16);
803 max_n_zeros = 0;
804 i_first_zero = i_max_n_zero;
805 n_zeros = 0;
806 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
807 {
808 u32 is_zero = a->as_u16[i] == 0;
809 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
810 {
811 i_first_zero = i;
812 n_zeros = 0;
813 }
814 n_zeros += is_zero;
815 if ((!is_zero && n_zeros > max_n_zeros)
816 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
817 {
818 i_max_n_zero = i_first_zero;
819 max_n_zeros = n_zeros;
820 i_first_zero = ARRAY_LEN (a->as_u16);
821 n_zeros = 0;
822 }
823 }
824
825 last_double_colon = 0;
826 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
827 {
828 if (i == i_max_n_zero && max_n_zeros > 1)
829 {
830 s = format (s, "::");
831 i += max_n_zeros - 1;
832 last_double_colon = 1;
833 }
834 else
835 {
836 s = format (s, "%s%x",
837 (last_double_colon || i == 0) ? "" : ":",
838 clib_net_to_host_u16 (a->as_u16[i]));
839 last_double_colon = 0;
840 }
841 }
842
843 return s;
844}
845
846/* Format an IP46 address. */
847u8 *
848format_ip46_address (u8 * s, va_list * args)
849{
850 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
851 ip46_type_t type = va_arg (*args, ip46_type_t);
852 int is_ip4 = 1;
853
854 switch (type)
855 {
856 case IP46_TYPE_ANY:
857 is_ip4 = ip46_address_is_ip4 (ip46);
858 break;
859 case IP46_TYPE_IP4:
860 is_ip4 = 1;
861 break;
862 case IP46_TYPE_IP6:
863 is_ip4 = 0;
864 break;
865 }
866
867 return is_ip4 ?
868 format (s, "%U", format_ip4_address, &ip46->ip4) :
869 format (s, "%U", format_ip6_address, &ip46->ip6);
870}
871
Dave Barach68b0fb02017-02-28 15:15:56 -0500872static void
873vl_api_accept_session_t_handler (vl_api_accept_session_t * mp)
874{
875 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
876 vl_api_accept_session_reply_t *rmp;
Florin Corase04c2992017-03-01 08:17:34 -0800877 svm_fifo_t *rx_fifo, *tx_fifo;
878 session_t *session;
Dave Barach68b0fb02017-02-28 15:15:56 -0500879 static f64 start_time;
Dave Barach68b0fb02017-02-28 15:15:56 -0500880 u32 session_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700881 u8 *ip_str;
Dave Barach68b0fb02017-02-28 15:15:56 -0500882
883 if (start_time == 0.0)
Florin Corase04c2992017-03-01 08:17:34 -0800884 start_time = clib_time_now (&utm->clib_time);
Dave Barach68b0fb02017-02-28 15:15:56 -0500885
Florin Coras6cf30ad2017-04-04 23:08:23 -0700886 ip_str = format (0, "%U", format_ip46_address, &mp->ip, mp->is_ip4);
887 clib_warning ("Accepted session from: %s:%d", ip_str,
888 clib_net_to_host_u16 (mp->port));
Damjan Marion7bee80c2017-04-26 15:32:12 +0200889 utm->vpp_event_queue =
890 uword_to_pointer (mp->vpp_event_queue_address,
891 unix_shared_memory_queue_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -0500892
893 /* Allocate local session and set it up */
894 pool_get (utm->sessions, session);
895 session_index = session - utm->sessions;
896
Damjan Marion7bee80c2017-04-26 15:32:12 +0200897 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -0500898 rx_fifo->client_session_index = session_index;
Damjan Marion7bee80c2017-04-26 15:32:12 +0200899 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -0500900 tx_fifo->client_session_index = session_index;
901
902 session->server_rx_fifo = rx_fifo;
903 session->server_tx_fifo = tx_fifo;
904
905 /* Add it to lookup table */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700906 hash_set (utm->session_index_by_vpp_handles, mp->handle, session_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500907
908 utm->state = STATE_READY;
909
910 /* Stats printing */
Florin Corase04c2992017-03-01 08:17:34 -0800911 if (pool_elts (utm->sessions) && (pool_elts (utm->sessions) % 20000) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500912 {
913 f64 now = clib_time_now (&utm->clib_time);
914 fformat (stdout, "%d active sessions in %.2f seconds, %.2f/sec...\n",
Florin Corase04c2992017-03-01 08:17:34 -0800915 pool_elts (utm->sessions), now - start_time,
916 (f64) pool_elts (utm->sessions) / (now - start_time));
Dave Barach68b0fb02017-02-28 15:15:56 -0500917 }
918
Florin Corase04c2992017-03-01 08:17:34 -0800919 /*
920 * Send accept reply to vpp
921 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500922 rmp = vl_msg_api_alloc (sizeof (*rmp));
923 memset (rmp, 0, sizeof (*rmp));
924 rmp->_vl_msg_id = ntohs (VL_API_ACCEPT_SESSION_REPLY);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700925 rmp->handle = mp->handle;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700926 rmp->context = mp->context;
Florin Corase04c2992017-03-01 08:17:34 -0800927 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
Florin Corasf03a59a2017-06-09 21:07:32 -0700928
929 session->bytes_received = 0;
930 session->start = clib_time_now (&utm->clib_time);
Dave Barach68b0fb02017-02-28 15:15:56 -0500931}
932
933void
Florin Corase04c2992017-03-01 08:17:34 -0800934server_handle_fifo_event_rx (uri_tcp_test_main_t * utm,
935 session_fifo_event_t * e)
Dave Barach68b0fb02017-02-28 15:15:56 -0500936{
Florin Corase04c2992017-03-01 08:17:34 -0800937 svm_fifo_t *rx_fifo, *tx_fifo;
938 int n_read;
Florin Corase04c2992017-03-01 08:17:34 -0800939 session_fifo_event_t evt;
940 unix_shared_memory_queue_t *q;
Florin Corasf03a59a2017-06-09 21:07:32 -0700941 session_t *session;
942 int rv;
943 u32 max_dequeue, offset, max_transfer, rx_buf_len;
Florin Corase04c2992017-03-01 08:17:34 -0800944
Florin Corasf03a59a2017-06-09 21:07:32 -0700945 rx_buf_len = vec_len (utm->rx_buf);
Florin Corase04c2992017-03-01 08:17:34 -0800946 rx_fifo = e->fifo;
Florin Corasf03a59a2017-06-09 21:07:32 -0700947 session = &utm->sessions[rx_fifo->client_session_index];
948 tx_fifo = session->server_tx_fifo;
Florin Corase04c2992017-03-01 08:17:34 -0800949
Florin Corasf03a59a2017-06-09 21:07:32 -0700950 max_dequeue = svm_fifo_max_dequeue (rx_fifo);
Florin Coras6792ec02017-03-13 03:49:51 -0700951 /* Allow enqueuing of a new event */
952 svm_fifo_unset_event (rx_fifo);
953
Florin Corasf03a59a2017-06-09 21:07:32 -0700954 if (PREDICT_FALSE (max_dequeue == 0))
955 {
956 return;
957 }
Florin Coras6792ec02017-03-13 03:49:51 -0700958
Florin Corasf03a59a2017-06-09 21:07:32 -0700959 /* Read the max_dequeue */
Florin Corase04c2992017-03-01 08:17:34 -0800960 do
961 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700962 max_transfer = clib_min (rx_buf_len, max_dequeue);
963 n_read = svm_fifo_dequeue_nowait (rx_fifo, max_transfer, utm->rx_buf);
Florin Coras6792ec02017-03-13 03:49:51 -0700964 if (n_read > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800965 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700966 max_dequeue -= n_read;
967 session->bytes_received += n_read;
968 }
969
970 /* Reflect if a non-drop session */
971 if (!utm->drop_packets && n_read > 0)
972 {
973 offset = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800974 do
975 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700976 rv = svm_fifo_enqueue_nowait (tx_fifo, n_read,
977 &utm->rx_buf[offset]);
978 if (rv > 0)
979 {
980 n_read -= rv;
981 offset += rv;
982 }
Florin Corase04c2992017-03-01 08:17:34 -0800983 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700984 while ((rv <= 0 || n_read > 0) && !utm->time_to_stop);
Florin Corase04c2992017-03-01 08:17:34 -0800985
Florin Coras6792ec02017-03-13 03:49:51 -0700986 /* If event wasn't set, add one */
987 if (svm_fifo_set_event (tx_fifo))
988 {
989 /* Fabricate TX event, send to vpp */
990 evt.fifo = tx_fifo;
Florin Corasa5464812017-04-19 13:00:05 -0700991 evt.event_type = FIFO_EVENT_APP_TX;
Florin Coras6792ec02017-03-13 03:49:51 -0700992
993 q = utm->vpp_event_queue;
994 unix_shared_memory_queue_add (q, (u8 *) & evt,
Florin Corasf03a59a2017-06-09 21:07:32 -0700995 1 /* do wait for mutex */ );
Florin Coras6792ec02017-03-13 03:49:51 -0700996 }
Florin Corase04c2992017-03-01 08:17:34 -0800997 }
Florin Corase04c2992017-03-01 08:17:34 -0800998 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700999 while ((n_read < 0 || max_dequeue > 0) && !utm->time_to_stop);
Florin Corase04c2992017-03-01 08:17:34 -08001000}
1001
1002void
1003server_handle_event_queue (uri_tcp_test_main_t * utm)
1004{
Florin Coras3cbc04b2017-10-02 00:18:51 -07001005 session_fifo_event_t _e, *e = &_e;
Florin Corase04c2992017-03-01 08:17:34 -08001006
1007 while (1)
1008 {
1009 unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
1010 0 /* nowait */ );
1011 switch (e->event_type)
1012 {
Florin Corasa5464812017-04-19 13:00:05 -07001013 case FIFO_EVENT_APP_RX:
Florin Corase04c2992017-03-01 08:17:34 -08001014 server_handle_fifo_event_rx (utm, e);
1015 break;
1016
Florin Corasa5464812017-04-19 13:00:05 -07001017 case FIFO_EVENT_DISCONNECT:
Florin Corase04c2992017-03-01 08:17:34 -08001018 return;
1019
1020 default:
1021 clib_warning ("unknown event type %d", e->event_type);
1022 break;
1023 }
1024 if (PREDICT_FALSE (utm->time_to_stop == 1))
1025 break;
1026 if (PREDICT_FALSE (utm->time_to_print_stats == 1))
1027 {
1028 utm->time_to_print_stats = 0;
1029 fformat (stdout, "%d connections\n", pool_elts (utm->sessions));
1030 }
1031 }
1032}
1033
1034void
Florin Corasa5464812017-04-19 13:00:05 -07001035server_send_listen (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -08001036{
1037 vl_api_bind_uri_t *bmp;
Florin Corase04c2992017-03-01 08:17:34 -08001038 bmp = vl_msg_api_alloc (sizeof (*bmp));
1039 memset (bmp, 0, sizeof (*bmp));
1040
1041 bmp->_vl_msg_id = ntohs (VL_API_BIND_URI);
1042 bmp->client_index = utm->my_client_index;
1043 bmp->context = ntohl (0xfeedface);
Florin Corase04c2992017-03-01 08:17:34 -08001044 memcpy (bmp->uri, utm->uri, vec_len (utm->uri));
1045 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
1046}
1047
Florin Corasa5464812017-04-19 13:00:05 -07001048int
1049server_listen (uri_tcp_test_main_t * utm)
1050{
1051 server_send_listen (utm);
1052 if (wait_for_state_change (utm, STATE_READY))
1053 {
1054 clib_warning ("timeout waiting for STATE_READY");
1055 return -1;
1056 }
1057 return 0;
1058}
1059
Florin Corase04c2992017-03-01 08:17:34 -08001060void
Florin Corasa5464812017-04-19 13:00:05 -07001061server_send_unbind (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -08001062{
1063 vl_api_unbind_uri_t *ump;
1064
1065 ump = vl_msg_api_alloc (sizeof (*ump));
1066 memset (ump, 0, sizeof (*ump));
1067
1068 ump->_vl_msg_id = ntohs (VL_API_UNBIND_URI);
1069 ump->client_index = utm->my_client_index;
1070 memcpy (ump->uri, utm->uri, vec_len (utm->uri));
1071 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & ump);
1072}
1073
Florin Corasa5464812017-04-19 13:00:05 -07001074int
1075server_unbind (uri_tcp_test_main_t * utm)
1076{
1077 server_send_unbind (utm);
1078 if (wait_for_state_change (utm, STATE_START))
1079 {
1080 clib_warning ("timeout waiting for STATE_START");
1081 return -1;
1082 }
1083 return 0;
1084}
1085
Florin Corase04c2992017-03-01 08:17:34 -08001086void
1087server_test (uri_tcp_test_main_t * utm)
1088{
Florin Corasa5464812017-04-19 13:00:05 -07001089 if (application_attach (utm))
1090 return;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001091
Dave Barach68b0fb02017-02-28 15:15:56 -05001092 /* Bind to uri */
Florin Corasa5464812017-04-19 13:00:05 -07001093 if (server_listen (utm))
1094 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001095
1096 /* Enter handle event loop */
Florin Corase04c2992017-03-01 08:17:34 -08001097 server_handle_event_queue (utm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001098
1099 /* Cleanup */
Florin Corasa5464812017-04-19 13:00:05 -07001100 server_send_unbind (utm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001101
Florin Coras6cf30ad2017-04-04 23:08:23 -07001102 application_detach (utm);
1103
Dave Barach68b0fb02017-02-28 15:15:56 -05001104 fformat (stdout, "Test complete...\n");
1105}
1106
Florin Corase69f4952017-03-07 10:06:24 -08001107static void
1108vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
1109 mp)
1110{
Florin Coras6792ec02017-03-13 03:49:51 -07001111 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Florin Corasf03a59a2017-06-09 21:07:32 -07001112 session_t *session;
Florin Coras6792ec02017-03-13 03:49:51 -07001113
Florin Corasf03a59a2017-06-09 21:07:32 -07001114 if (mp->retval)
1115 {
1116 clib_warning ("vpp complained about disconnect: %d",
1117 ntohl (mp->retval));
1118 }
1119
Florin Coras6792ec02017-03-13 03:49:51 -07001120 utm->state = STATE_START;
Florin Corasf03a59a2017-06-09 21:07:32 -07001121 session = pool_elt_at_index (utm->sessions, utm->connected_session_index);
1122 if (session)
1123 session_print_stats (utm, session);
Florin Corase69f4952017-03-07 10:06:24 -08001124}
1125
1126#define foreach_uri_msg \
1127_(BIND_URI_REPLY, bind_uri_reply) \
1128_(UNBIND_URI_REPLY, unbind_uri_reply) \
1129_(ACCEPT_SESSION, accept_session) \
Dave Wallace33e002b2017-09-06 01:20:02 -04001130_(CONNECT_SESSION_REPLY, connect_session_reply) \
Florin Corase69f4952017-03-07 10:06:24 -08001131_(DISCONNECT_SESSION, disconnect_session) \
1132_(DISCONNECT_SESSION_REPLY, disconnect_session_reply) \
1133_(RESET_SESSION, reset_session) \
Florin Coras6cf30ad2017-04-04 23:08:23 -07001134_(APPLICATION_ATTACH_REPLY, application_attach_reply) \
1135_(APPLICATION_DETACH_REPLY, application_detach_reply) \
1136_(MAP_ANOTHER_SEGMENT, map_another_segment) \
Dave Barach68b0fb02017-02-28 15:15:56 -05001137
1138void
1139uri_api_hookup (uri_tcp_test_main_t * utm)
1140{
1141#define _(N,n) \
1142 vl_msg_api_set_handlers(VL_API_##N, #n, \
1143 vl_api_##n##_t_handler, \
1144 vl_noop_handler, \
1145 vl_api_##n##_t_endian, \
1146 vl_api_##n##_t_print, \
1147 sizeof(vl_api_##n##_t), 1);
1148 foreach_uri_msg;
1149#undef _
1150}
1151
1152int
1153main (int argc, char **argv)
1154{
1155 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
1156 unformat_input_t _argv, *a = &_argv;
1157 u8 *chroot_prefix;
Florin Corase69f4952017-03-07 10:06:24 -08001158 u8 *heap, *uri = 0;
1159 u8 *bind_uri = (u8 *) "tcp://0.0.0.0/1234";
1160 u8 *connect_uri = (u8 *) "tcp://6.0.1.2/1234";
Florin Coras6cf30ad2017-04-04 23:08:23 -07001161 u64 bytes_to_send = 64 << 10, mbytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001162 u32 tmp;
1163 mheap_t *h;
Florin Corase04c2992017-03-01 08:17:34 -08001164 session_t *session;
Dave Barach68b0fb02017-02-28 15:15:56 -05001165 int i;
Florin Corase04c2992017-03-01 08:17:34 -08001166 int i_am_master = 1, drop_packets = 0, test_return_packets = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001167
1168 clib_mem_init (0, 256 << 20);
1169
1170 heap = clib_mem_get_per_cpu_heap ();
1171 h = mheap_header (heap);
1172
1173 /* make the main heap thread-safe */
1174 h->flags |= MHEAP_FLAG_THREAD_SAFE;
1175
Florin Corasf03a59a2017-06-09 21:07:32 -07001176 vec_validate (utm->rx_buf, 128 << 10);
Dave Barach68b0fb02017-02-28 15:15:56 -05001177
Florin Corase04c2992017-03-01 08:17:34 -08001178 utm->session_index_by_vpp_handles = hash_create (0, sizeof (uword));
Dave Barach68b0fb02017-02-28 15:15:56 -05001179
Florin Corase04c2992017-03-01 08:17:34 -08001180 utm->my_pid = getpid ();
1181 utm->configured_segment_size = 1 << 20;
Dave Barach68b0fb02017-02-28 15:15:56 -05001182
1183 clib_time_init (&utm->clib_time);
1184 init_error_string_table (utm);
Florin Corase04c2992017-03-01 08:17:34 -08001185 svm_fifo_segment_init (0x200000000ULL, 20);
Dave Barach68b0fb02017-02-28 15:15:56 -05001186 unformat_init_command_line (a, argv);
1187
1188 while (unformat_check_input (a) != UNFORMAT_END_OF_INPUT)
1189 {
1190 if (unformat (a, "chroot prefix %s", &chroot_prefix))
Florin Corase04c2992017-03-01 08:17:34 -08001191 {
1192 vl_set_memory_root_path ((char *) chroot_prefix);
1193 }
Florin Corase69f4952017-03-07 10:06:24 -08001194 else if (unformat (a, "uri %s", &uri))
Florin Corase04c2992017-03-01 08:17:34 -08001195 ;
Dave Barach68b0fb02017-02-28 15:15:56 -05001196 else if (unformat (a, "segment-size %dM", &tmp))
Florin Corase04c2992017-03-01 08:17:34 -08001197 utm->configured_segment_size = tmp << 20;
Dave Barach68b0fb02017-02-28 15:15:56 -05001198 else if (unformat (a, "segment-size %dG", &tmp))
Florin Corase04c2992017-03-01 08:17:34 -08001199 utm->configured_segment_size = tmp << 30;
Dave Barach68b0fb02017-02-28 15:15:56 -05001200 else if (unformat (a, "master"))
Florin Corase04c2992017-03-01 08:17:34 -08001201 i_am_master = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001202 else if (unformat (a, "slave"))
Florin Corase04c2992017-03-01 08:17:34 -08001203 i_am_master = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001204 else if (unformat (a, "drop"))
Florin Corase04c2992017-03-01 08:17:34 -08001205 drop_packets = 1;
1206 else if (unformat (a, "test"))
1207 test_return_packets = 1;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001208 else if (unformat (a, "mbytes %lld", &mbytes))
Florin Coras6792ec02017-03-13 03:49:51 -07001209 {
1210 bytes_to_send = mbytes << 20;
1211 }
Florin Coras6cf30ad2017-04-04 23:08:23 -07001212 else if (unformat (a, "gbytes %lld", &mbytes))
1213 {
1214 bytes_to_send = mbytes << 30;
1215 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001216 else
Florin Corase04c2992017-03-01 08:17:34 -08001217 {
1218 fformat (stderr, "%s: usage [master|slave]\n");
1219 exit (1);
1220 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001221 }
1222
Florin Corase69f4952017-03-07 10:06:24 -08001223 if (uri)
1224 {
1225 utm->uri = format (0, "%s%c", uri, 0);
1226 utm->connect_uri = format (0, "%s%c", uri, 0);
1227 }
1228 else
1229 {
1230 utm->uri = format (0, "%s%c", bind_uri, 0);
1231 utm->connect_uri = format (0, "%s%c", connect_uri, 0);
1232 }
1233
Dave Barach68b0fb02017-02-28 15:15:56 -05001234 utm->i_am_master = i_am_master;
1235 utm->segment_main = &svm_fifo_segment_main;
1236 utm->drop_packets = drop_packets;
Florin Corase04c2992017-03-01 08:17:34 -08001237 utm->test_return_packets = test_return_packets;
Florin Coras6792ec02017-03-13 03:49:51 -07001238 utm->bytes_to_send = bytes_to_send;
Florin Corasf03a59a2017-06-09 21:07:32 -07001239 utm->time_to_stop = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001240
Florin Corase04c2992017-03-01 08:17:34 -08001241 setup_signal_handlers ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001242 uri_api_hookup (utm);
1243
Florin Corase04c2992017-03-01 08:17:34 -08001244 if (connect_to_vpp (i_am_master ? "uri_tcp_server" : "uri_tcp_client") < 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001245 {
1246 svm_region_exit ();
1247 fformat (stderr, "Couldn't connect to vpe, exiting...\n");
1248 exit (1);
1249 }
1250
1251 if (i_am_master == 0)
1252 {
Florin Corase04c2992017-03-01 08:17:34 -08001253 client_test (utm);
Florin Corase69f4952017-03-07 10:06:24 -08001254 vl_client_disconnect_from_vlib ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001255 exit (0);
1256 }
1257
1258 /* $$$$ hack preallocation */
1259 for (i = 0; i < 200000; i++)
1260 {
1261 pool_get (utm->sessions, session);
1262 memset (session, 0, sizeof (*session));
1263 }
1264 for (i = 0; i < 200000; i++)
1265 pool_put_index (utm->sessions, i);
1266
Florin Corase04c2992017-03-01 08:17:34 -08001267 server_test (utm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001268
1269 vl_client_disconnect_from_vlib ();
1270 exit (0);
1271}
Florin Corase04c2992017-03-01 08:17:34 -08001272
1273/*
1274 * fd.io coding-style-patch-verification: ON
1275 *
1276 * Local Variables:
1277 * eval: (c-set-style "gnu")
1278 * End:
1279 */