blob: 22f246e5925a70f6a2da04e295033765a47c92a8 [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
39/* Satisfy external references when not linking with -lvlib */
40vlib_main_t vlib_global_main;
41vlib_main_t **vlib_mains;
42
43typedef struct
44{
Florin Corase04c2992017-03-01 08:17:34 -080045 svm_fifo_t *server_rx_fifo;
46 svm_fifo_t *server_tx_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -050047
Florin Corasa5464812017-04-19 13:00:05 -070048 u64 vpp_session_handle;
Dave Barach68b0fb02017-02-28 15:15:56 -050049} session_t;
50
51typedef enum
52{
53 STATE_START,
Florin Corasa5464812017-04-19 13:00:05 -070054 STATE_ATTACHED,
Dave Barach68b0fb02017-02-28 15:15:56 -050055 STATE_READY,
56 STATE_DISCONNECTING,
57 STATE_FAILED
58} connection_state_t;
59
60typedef struct
61{
62 /* vpe input queue */
63 unix_shared_memory_queue_t *vl_input_queue;
64
65 /* API client handle */
66 u32 my_client_index;
67
68 /* The URI we're playing with */
Florin Corase04c2992017-03-01 08:17:34 -080069 u8 *uri;
Dave Barach68b0fb02017-02-28 15:15:56 -050070
71 /* Session pool */
Florin Corase04c2992017-03-01 08:17:34 -080072 session_t *sessions;
Dave Barach68b0fb02017-02-28 15:15:56 -050073
74 /* Hash table for disconnect processing */
Florin Corase04c2992017-03-01 08:17:34 -080075 uword *session_index_by_vpp_handles;
Dave Barach68b0fb02017-02-28 15:15:56 -050076
77 /* intermediate rx buffer */
Florin Corase04c2992017-03-01 08:17:34 -080078 u8 *rx_buf;
Dave Barach68b0fb02017-02-28 15:15:56 -050079
80 /* URI for slave's connect */
Florin Corase04c2992017-03-01 08:17:34 -080081 u8 *connect_uri;
Dave Barach68b0fb02017-02-28 15:15:56 -050082
83 u32 connected_session_index;
84
85 int i_am_master;
86
87 /* drop all packets */
88 int drop_packets;
89
90 /* Our event queue */
Florin Corase04c2992017-03-01 08:17:34 -080091 unix_shared_memory_queue_t *our_event_queue;
Dave Barach68b0fb02017-02-28 15:15:56 -050092
93 /* $$$ single thread only for the moment */
Florin Corase04c2992017-03-01 08:17:34 -080094 unix_shared_memory_queue_t *vpp_event_queue;
Dave Barach68b0fb02017-02-28 15:15:56 -050095
96 pid_t my_pid;
97
98 /* For deadman timers */
99 clib_time_t clib_time;
100
101 /* State of the connection, shared between msg RX thread and main thread */
102 volatile connection_state_t state;
103
104 /* Signal variables */
105 volatile int time_to_stop;
106 volatile int time_to_print_stats;
107
108 u32 configured_segment_size;
109
110 /* VNET_API_ERROR_FOO -> "Foo" hash table */
Florin Corase04c2992017-03-01 08:17:34 -0800111 uword *error_string_by_error_number;
Dave Barach68b0fb02017-02-28 15:15:56 -0500112
113 u8 *connect_test_data;
Florin Corase04c2992017-03-01 08:17:34 -0800114 pthread_t client_rx_thread_handle;
115 u32 client_bytes_received;
116 u8 test_return_packets;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700117 u64 bytes_to_send;
Florin Corase04c2992017-03-01 08:17:34 -0800118
119 /* convenience */
120 svm_fifo_segment_main_t *segment_main;
Dave Barach68b0fb02017-02-28 15:15:56 -0500121} uri_tcp_test_main_t;
122
123uri_tcp_test_main_t uri_tcp_test_main;
124
125#if CLIB_DEBUG > 0
126#define NITER 10000
127#else
128#define NITER 4000000
129#endif
130
Florin Corasa5464812017-04-19 13:00:05 -0700131static u8 *
132format_api_error (u8 * s, va_list * args)
133{
134 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
135 i32 error = va_arg (*args, u32);
136 uword *p;
137
138 p = hash_get (utm->error_string_by_error_number, -error);
139
140 if (p)
141 s = format (s, "%s", p[0]);
142 else
143 s = format (s, "%d", error);
144 return s;
145}
146
147static void
148init_error_string_table (uri_tcp_test_main_t * utm)
149{
150 utm->error_string_by_error_number = hash_create (0, sizeof (uword));
151
152#define _(n,v,s) hash_set (utm->error_string_by_error_number, -v, s);
153 foreach_vnet_api_error;
154#undef _
155
156 hash_set (utm->error_string_by_error_number, 99, "Misc");
157}
158
Dave Barach68b0fb02017-02-28 15:15:56 -0500159int
160wait_for_state_change (uri_tcp_test_main_t * utm, connection_state_t state)
161{
162#if CLIB_DEBUG > 0
163#define TIMEOUT 600.0
164#else
165#define TIMEOUT 600.0
166#endif
167
168 f64 timeout = clib_time_now (&utm->clib_time) + TIMEOUT;
169
170 while (clib_time_now (&utm->clib_time) < timeout)
171 {
172 if (utm->state == state)
Florin Corase04c2992017-03-01 08:17:34 -0800173 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500174 if (utm->state == STATE_FAILED)
175 return -1;
flyingeagle23a07779f2017-04-26 20:22:04 +0800176 if (utm->time_to_stop == 1)
177 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500178 }
179 clib_warning ("timeout waiting for STATE_READY");
180 return -1;
181}
182
Florin Coras6cf30ad2017-04-04 23:08:23 -0700183void
Florin Corasa5464812017-04-19 13:00:05 -0700184application_send_attach (uri_tcp_test_main_t * utm)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700185{
186 vl_api_application_attach_t *bmp;
187 u32 fifo_size = 3 << 20;
188 bmp = vl_msg_api_alloc (sizeof (*bmp));
189 memset (bmp, 0, sizeof (*bmp));
190
191 bmp->_vl_msg_id = ntohs (VL_API_APPLICATION_ATTACH);
192 bmp->client_index = utm->my_client_index;
193 bmp->context = ntohl (0xfeedface);
Florin Corasa5464812017-04-19 13:00:05 -0700194 bmp->options[APP_OPTIONS_FLAGS] =
195 APP_OPTIONS_FLAGS_USE_FIFO | APP_OPTIONS_FLAGS_ADD_SEGMENT;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700196 bmp->options[SESSION_OPTIONS_RX_FIFO_SIZE] = fifo_size;
197 bmp->options[SESSION_OPTIONS_TX_FIFO_SIZE] = fifo_size;
198 bmp->options[SESSION_OPTIONS_ADD_SEGMENT_SIZE] = 128 << 20;
199 bmp->options[SESSION_OPTIONS_SEGMENT_SIZE] = 256 << 20;
200 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
201}
202
Florin Corasa5464812017-04-19 13:00:05 -0700203int
204application_attach (uri_tcp_test_main_t * utm)
205{
206 application_send_attach (utm);
207 if (wait_for_state_change (utm, STATE_ATTACHED))
208 {
209 clib_warning ("timeout waiting for STATE_ATTACHED");
210 return -1;
211 }
212 return 0;
213}
214
Florin Coras6cf30ad2017-04-04 23:08:23 -0700215void
216application_detach (uri_tcp_test_main_t * utm)
217{
218 vl_api_application_detach_t *bmp;
219 bmp = vl_msg_api_alloc (sizeof (*bmp));
220 memset (bmp, 0, sizeof (*bmp));
221
222 bmp->_vl_msg_id = ntohs (VL_API_APPLICATION_DETACH);
223 bmp->client_index = utm->my_client_index;
224 bmp->context = ntohl (0xfeedface);
225 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
226}
227
228static void
229vl_api_application_attach_reply_t_handler (vl_api_application_attach_reply_t *
230 mp)
231{
232 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
233 svm_fifo_segment_create_args_t _a, *a = &_a;
234 int rv;
235
236 if (mp->retval)
237 {
Florin Corasa5464812017-04-19 13:00:05 -0700238 clib_warning ("attach failed: %U", format_api_error,
239 clib_net_to_host_u32 (mp->retval));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700240 utm->state = STATE_FAILED;
241 return;
242 }
243
244 if (mp->segment_name_length == 0)
245 {
246 clib_warning ("segment_name_length zero");
247 return;
248 }
249
250 a->segment_name = (char *) mp->segment_name;
251 a->segment_size = mp->segment_size;
252
253 ASSERT (mp->app_event_queue_address);
254
255 /* Attach to the segment vpp created */
256 rv = svm_fifo_segment_attach (a);
257 if (rv)
258 {
259 clib_warning ("svm_fifo_segment_attach ('%s') failed",
260 mp->segment_name);
261 return;
262 }
263
264 utm->our_event_queue =
Damjan Marion7bee80c2017-04-26 15:32:12 +0200265 uword_to_pointer (mp->app_event_queue_address,
266 unix_shared_memory_queue_t *);
Florin Corasa5464812017-04-19 13:00:05 -0700267 utm->state = STATE_ATTACHED;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700268}
269
270static void
271vl_api_application_detach_reply_t_handler (vl_api_application_detach_reply_t *
272 mp)
273{
274 if (mp->retval)
275 clib_warning ("detach returned with err: %d", mp->retval);
276}
277
Dave Barach68b0fb02017-02-28 15:15:56 -0500278static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500279stop_signal (int signum)
280{
281 uri_tcp_test_main_t *um = &uri_tcp_test_main;
282
283 um->time_to_stop = 1;
284}
285
286static void
287stats_signal (int signum)
288{
289 uri_tcp_test_main_t *um = &uri_tcp_test_main;
290
291 um->time_to_print_stats = 1;
292}
293
294static clib_error_t *
295setup_signal_handlers (void)
296{
297 signal (SIGINT, stats_signal);
298 signal (SIGQUIT, stop_signal);
299 signal (SIGTERM, stop_signal);
300
301 return 0;
302}
303
304void
305vlib_cli_output (struct vlib_main_t *vm, char *fmt, ...)
306{
307 clib_warning ("BUG");
308}
309
310int
311connect_to_vpp (char *name)
312{
313 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
314 api_main_t *am = &api_main;
315
316 if (vl_client_connect_to_vlib ("/vpe-api", name, 32) < 0)
317 return -1;
318
319 utm->vl_input_queue = am->shmem_hdr->vl_input_queue;
320 utm->my_client_index = am->my_client_index;
321
322 return 0;
323}
324
325static void
Florin Corase04c2992017-03-01 08:17:34 -0800326vl_api_map_another_segment_t_handler (vl_api_map_another_segment_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500327{
328 svm_fifo_segment_create_args_t _a, *a = &_a;
329 int rv;
330
331 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
346vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
347{
348 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Florin Corase04c2992017-03-01 08:17:34 -0800349 session_t *session;
350 vl_api_disconnect_session_reply_t *rmp;
351 uword *p;
Dave Barach68b0fb02017-02-28 15:15:56 -0500352 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500353
Florin Coras6cf30ad2017-04-04 23:08:23 -0700354 p = hash_get (utm->session_index_by_vpp_handles, mp->handle);
Florin Corase04c2992017-03-01 08:17:34 -0800355
356 if (p)
357 {
358 session = pool_elt_at_index (utm->sessions, p[0]);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700359 hash_unset (utm->session_index_by_vpp_handles, mp->handle);
Florin Corase04c2992017-03-01 08:17:34 -0800360 pool_put (utm->sessions, session);
361 }
362 else
363 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700364 clib_warning ("couldn't find session key %llx", mp->handle);
Florin Corase04c2992017-03-01 08:17:34 -0800365 rv = -11;
366 }
367
368 utm->time_to_stop = 1;
369
370 rmp = vl_msg_api_alloc (sizeof (*rmp));
371 memset (rmp, 0, sizeof (*rmp));
372
373 rmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION_REPLY);
374 rmp->retval = rv;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700375 rmp->handle = mp->handle;
Florin Corase04c2992017-03-01 08:17:34 -0800376 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
377}
378
379static void
380vl_api_reset_session_t_handler (vl_api_reset_session_t * mp)
381{
382 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
383 session_t *session;
384 vl_api_reset_session_reply_t *rmp;
385 uword *p;
386 int rv = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800387
Florin Coras6cf30ad2017-04-04 23:08:23 -0700388 p = hash_get (utm->session_index_by_vpp_handles, mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500389
390 if (p)
391 {
392 session = pool_elt_at_index (utm->sessions, p[0]);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700393 hash_unset (utm->session_index_by_vpp_handles, mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500394 pool_put (utm->sessions, session);
Florin Corasd79b41e2017-03-04 05:37:52 -0800395 utm->time_to_stop = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500396 }
397 else
398 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700399 clib_warning ("couldn't find session key %llx", mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500400 rv = -11;
401 }
402
403 rmp = vl_msg_api_alloc (sizeof (*rmp));
404 memset (rmp, 0, sizeof (*rmp));
Florin Corasd79b41e2017-03-04 05:37:52 -0800405 rmp->_vl_msg_id = ntohs (VL_API_RESET_SESSION_REPLY);
Dave Barach68b0fb02017-02-28 15:15:56 -0500406 rmp->retval = rv;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700407 rmp->handle = mp->handle;
Florin Corase04c2992017-03-01 08:17:34 -0800408 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500409}
410
411void
Florin Corase04c2992017-03-01 08:17:34 -0800412client_handle_fifo_event_rx (uri_tcp_test_main_t * utm,
413 session_fifo_event_t * e)
Dave Barach68b0fb02017-02-28 15:15:56 -0500414{
Florin Corase04c2992017-03-01 08:17:34 -0800415 svm_fifo_t *rx_fifo;
416 int n_read, bytes, i;
Dave Barach68b0fb02017-02-28 15:15:56 -0500417
418 rx_fifo = e->fifo;
419
Florin Coras6792ec02017-03-13 03:49:51 -0700420 bytes = svm_fifo_max_dequeue (rx_fifo);
421 /* Allow enqueuing of new event */
422 svm_fifo_unset_event (rx_fifo);
423
424 /* Read the bytes */
Dave Barach68b0fb02017-02-28 15:15:56 -0500425 do
426 {
Florin Corasa5464812017-04-19 13:00:05 -0700427 n_read = svm_fifo_dequeue_nowait (rx_fifo,
Florin Coras6792ec02017-03-13 03:49:51 -0700428 clib_min (vec_len (utm->rx_buf),
429 bytes), utm->rx_buf);
Dave Barach68b0fb02017-02-28 15:15:56 -0500430 if (n_read > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800431 {
432 bytes -= n_read;
433 for (i = 0; i < n_read; i++)
434 {
435 if (utm->rx_buf[i] != ((utm->client_bytes_received + i) & 0xff))
436 {
437 clib_warning ("error at byte %lld, 0x%x not 0x%x",
438 utm->client_bytes_received + i,
439 utm->rx_buf[i],
440 ((utm->client_bytes_received + i) & 0xff));
441 }
442 }
443 utm->client_bytes_received += n_read;
444 }
Florin Coras6792ec02017-03-13 03:49:51 -0700445 else
446 {
447 if (n_read == -2)
448 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700449// clib_warning ("weird!");
Florin Coras6792ec02017-03-13 03:49:51 -0700450 break;
451 }
452 }
Florin Corase04c2992017-03-01 08:17:34 -0800453
Dave Barach68b0fb02017-02-28 15:15:56 -0500454 }
Florin Coras6792ec02017-03-13 03:49:51 -0700455 while (bytes > 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500456}
457
458void
Florin Corase04c2992017-03-01 08:17:34 -0800459client_handle_event_queue (uri_tcp_test_main_t * utm)
Dave Barach68b0fb02017-02-28 15:15:56 -0500460{
461 session_fifo_event_t _e, *e = &_e;;
462
Florin Corase04c2992017-03-01 08:17:34 -0800463 unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
464 0 /* nowait */ );
Dave Barach68b0fb02017-02-28 15:15:56 -0500465 switch (e->event_type)
466 {
Florin Corasa5464812017-04-19 13:00:05 -0700467 case FIFO_EVENT_APP_RX:
Florin Corase04c2992017-03-01 08:17:34 -0800468 client_handle_fifo_event_rx (utm, e);
Dave Barach68b0fb02017-02-28 15:15:56 -0500469 break;
470
Florin Corasa5464812017-04-19 13:00:05 -0700471 case FIFO_EVENT_DISCONNECT:
Dave Barach68b0fb02017-02-28 15:15:56 -0500472 return;
473
474 default:
Florin Corase04c2992017-03-01 08:17:34 -0800475 clib_warning ("unknown event type %d", e->event_type);
Dave Barach68b0fb02017-02-28 15:15:56 -0500476 break;
477 }
478}
479
Florin Corase04c2992017-03-01 08:17:34 -0800480static void *
481client_rx_thread_fn (void *arg)
Dave Barach68b0fb02017-02-28 15:15:56 -0500482{
Florin Corase04c2992017-03-01 08:17:34 -0800483 session_fifo_event_t _e, *e = &_e;
484 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Dave Barach68b0fb02017-02-28 15:15:56 -0500485
Florin Corase04c2992017-03-01 08:17:34 -0800486 utm->client_bytes_received = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500487 while (1)
488 {
Florin Corase04c2992017-03-01 08:17:34 -0800489 unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
490 0 /* nowait */ );
Dave Barach68b0fb02017-02-28 15:15:56 -0500491 switch (e->event_type)
Florin Corase04c2992017-03-01 08:17:34 -0800492 {
Florin Corasa5464812017-04-19 13:00:05 -0700493 case FIFO_EVENT_APP_RX:
Florin Corase04c2992017-03-01 08:17:34 -0800494 client_handle_fifo_event_rx (utm, e);
495 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500496
Florin Corasa5464812017-04-19 13:00:05 -0700497 case FIFO_EVENT_DISCONNECT:
Florin Corase04c2992017-03-01 08:17:34 -0800498 return 0;
499 default:
500 clib_warning ("unknown event type %d", e->event_type);
501 break;
502 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500503
Florin Corase04c2992017-03-01 08:17:34 -0800504 if (PREDICT_FALSE (utm->time_to_stop == 1))
505 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500506 }
Florin Corase04c2992017-03-01 08:17:34 -0800507 pthread_exit (0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500508}
509
Dave Barach68b0fb02017-02-28 15:15:56 -0500510
511static void
512vl_api_connect_uri_reply_t_handler (vl_api_connect_uri_reply_t * mp)
513{
514 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Dave Barach68b0fb02017-02-28 15:15:56 -0500515 session_t *session;
516 u32 session_index;
517 svm_fifo_t *rx_fifo, *tx_fifo;
518 int rv;
519
520 if (mp->retval)
521 {
Florin Corasa5464812017-04-19 13:00:05 -0700522 clib_warning ("connection failed with code: %U", format_api_error,
523 clib_net_to_host_u32 (mp->retval));
Dave Barach68b0fb02017-02-28 15:15:56 -0500524 utm->state = STATE_FAILED;
525 return;
526 }
Florin Corase04c2992017-03-01 08:17:34 -0800527
Damjan Marion7bee80c2017-04-26 15:32:12 +0200528 utm->vpp_event_queue =
529 uword_to_pointer (mp->vpp_event_queue_address,
530 unix_shared_memory_queue_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -0500531
532 /*
533 * Setup session
534 */
535
536 pool_get (utm->sessions, session);
537 session_index = session - utm->sessions;
538
Damjan Marion7bee80c2017-04-26 15:32:12 +0200539 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -0500540 rx_fifo->client_session_index = session_index;
Damjan Marion7bee80c2017-04-26 15:32:12 +0200541 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -0500542 tx_fifo->client_session_index = session_index;
543
544 session->server_rx_fifo = rx_fifo;
545 session->server_tx_fifo = tx_fifo;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700546 session->vpp_session_handle = mp->handle;
Dave Barach68b0fb02017-02-28 15:15:56 -0500547
548 /* Save handle */
549 utm->connected_session_index = session_index;
Florin Corase04c2992017-03-01 08:17:34 -0800550 utm->state = STATE_READY;
551
552 /* Add it to lookup table */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700553 hash_set (utm->session_index_by_vpp_handles, mp->handle, session_index);
Florin Corase04c2992017-03-01 08:17:34 -0800554
555 /* Start RX thread */
556 rv = pthread_create (&utm->client_rx_thread_handle,
557 NULL /*attr */ , client_rx_thread_fn, 0);
558 if (rv)
559 {
560 clib_warning ("pthread_create returned %d", rv);
561 rv = VNET_API_ERROR_SYSCALL_ERROR_1;
562 }
563}
564
Florin Coras6792ec02017-03-13 03:49:51 -0700565static void
566send_test_chunk (uri_tcp_test_main_t * utm, svm_fifo_t * tx_fifo, int mypid,
567 u32 bytes)
Florin Corase04c2992017-03-01 08:17:34 -0800568{
569 u8 *test_data = utm->connect_test_data;
570 u64 bytes_sent = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700571 int test_buf_offset = 0;
572 u32 bytes_to_snd;
573 u32 queue_max_chunk = 64 << 10, actual_write;
Florin Corase04c2992017-03-01 08:17:34 -0800574 session_fifo_event_t evt;
575 static int serial_number = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700576 int rv;
Florin Corase04c2992017-03-01 08:17:34 -0800577
Florin Coras6792ec02017-03-13 03:49:51 -0700578 bytes_to_snd = (bytes == 0) ? vec_len (test_data) : bytes;
579 if (bytes_to_snd > vec_len (test_data))
580 bytes_to_snd = vec_len (test_data);
Florin Corase04c2992017-03-01 08:17:34 -0800581
Florin Coras6792ec02017-03-13 03:49:51 -0700582 while (bytes_to_snd > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800583 {
Florin Coras6792ec02017-03-13 03:49:51 -0700584 actual_write =
585 bytes_to_snd > queue_max_chunk ? queue_max_chunk : bytes_to_snd;
Florin Corasa5464812017-04-19 13:00:05 -0700586 rv = svm_fifo_enqueue_nowait (tx_fifo, actual_write,
Florin Coras6792ec02017-03-13 03:49:51 -0700587 test_data + test_buf_offset);
588
589 if (rv > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800590 {
Florin Coras6792ec02017-03-13 03:49:51 -0700591 bytes_to_snd -= rv;
592 test_buf_offset += rv;
593 bytes_sent += rv;
Florin Corase04c2992017-03-01 08:17:34 -0800594
Florin Coras6792ec02017-03-13 03:49:51 -0700595 if (svm_fifo_set_event (tx_fifo))
Florin Corase04c2992017-03-01 08:17:34 -0800596 {
Florin Corase04c2992017-03-01 08:17:34 -0800597 /* Fabricate TX event, send to vpp */
598 evt.fifo = tx_fifo;
Florin Corasa5464812017-04-19 13:00:05 -0700599 evt.event_type = FIFO_EVENT_APP_TX;
Florin Corase04c2992017-03-01 08:17:34 -0800600 evt.event_id = serial_number++;
601
602 unix_shared_memory_queue_add (utm->vpp_event_queue,
603 (u8 *) & evt,
604 0 /* do wait for mutex */ );
605 }
606 }
607 }
Florin Coras6792ec02017-03-13 03:49:51 -0700608}
609
610void
611client_send_data (uri_tcp_test_main_t * utm)
612{
613 u8 *test_data = utm->connect_test_data;
614 int mypid = getpid ();
615 session_t *session;
616 svm_fifo_t *tx_fifo;
617 u32 n_iterations, leftover;
618 int i;
619
620 session = pool_elt_at_index (utm->sessions, utm->connected_session_index);
621 tx_fifo = session->server_tx_fifo;
622
Florin Coras82b13a82017-04-25 11:58:06 -0700623 ASSERT (vec_len (test_data) > 0);
624
Florin Coras6792ec02017-03-13 03:49:51 -0700625 vec_validate (utm->rx_buf, vec_len (test_data) - 1);
626 n_iterations = utm->bytes_to_send / vec_len (test_data);
627
628 for (i = 0; i < n_iterations; i++)
629 {
630 send_test_chunk (utm, tx_fifo, mypid, 0);
631 }
632
633 leftover = utm->bytes_to_send % vec_len (test_data);
634 if (leftover)
635 send_test_chunk (utm, tx_fifo, mypid, leftover);
Florin Corase04c2992017-03-01 08:17:34 -0800636
637 if (utm->test_return_packets)
638 {
639 f64 timeout = clib_time_now (&utm->clib_time) + 2;
640
641 /* Wait for the outstanding packets */
Florin Coras6792ec02017-03-13 03:49:51 -0700642 while (utm->client_bytes_received <
643 vec_len (test_data) * n_iterations + leftover)
Florin Corase04c2992017-03-01 08:17:34 -0800644 {
645 if (clib_time_now (&utm->clib_time) > timeout)
646 {
647 clib_warning ("timed out waiting for the missing packets");
648 break;
649 }
650 }
Florin Corase04c2992017-03-01 08:17:34 -0800651 }
Florin Coras6792ec02017-03-13 03:49:51 -0700652 utm->time_to_stop = 1;
Florin Corase04c2992017-03-01 08:17:34 -0800653}
654
655void
Florin Corasa5464812017-04-19 13:00:05 -0700656client_send_connect (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -0800657{
658 vl_api_connect_uri_t *cmp;
659 cmp = vl_msg_api_alloc (sizeof (*cmp));
660 memset (cmp, 0, sizeof (*cmp));
661
662 cmp->_vl_msg_id = ntohs (VL_API_CONNECT_URI);
663 cmp->client_index = utm->my_client_index;
664 cmp->context = ntohl (0xfeedface);
665 memcpy (cmp->uri, utm->connect_uri, vec_len (utm->connect_uri));
666 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & cmp);
667}
668
Florin Corasa5464812017-04-19 13:00:05 -0700669int
670client_connect (uri_tcp_test_main_t * utm)
671{
672 client_send_connect (utm);
673 if (wait_for_state_change (utm, STATE_READY))
674 {
675 clib_warning ("Connect failed");
676 return -1;
677 }
678 return 0;
679}
680
Florin Corase04c2992017-03-01 08:17:34 -0800681void
Florin Corasa5464812017-04-19 13:00:05 -0700682client_send_disconnect (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -0800683{
684 session_t *connected_session;
685 vl_api_disconnect_session_t *dmp;
686 connected_session = pool_elt_at_index (utm->sessions,
687 utm->connected_session_index);
688 dmp = vl_msg_api_alloc (sizeof (*dmp));
689 memset (dmp, 0, sizeof (*dmp));
690 dmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION);
691 dmp->client_index = utm->my_client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700692 dmp->handle = connected_session->vpp_session_handle;
Florin Corase04c2992017-03-01 08:17:34 -0800693 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & dmp);
694}
695
Florin Corasa5464812017-04-19 13:00:05 -0700696int
697client_disconnect (uri_tcp_test_main_t * utm)
698{
699 client_send_disconnect (utm);
700 if (wait_for_state_change (utm, STATE_START))
701 {
702 clib_warning ("Disconnect failed");
703 return -1;
704 }
705 return 0;
706}
707
Florin Corase04c2992017-03-01 08:17:34 -0800708static void
709client_test (uri_tcp_test_main_t * utm)
710{
711 int i;
712
Florin Corasa5464812017-04-19 13:00:05 -0700713 if (application_attach (utm))
714 return;
Florin Corase04c2992017-03-01 08:17:34 -0800715
Florin Corasa5464812017-04-19 13:00:05 -0700716 if (client_connect (utm))
Florin Corase04c2992017-03-01 08:17:34 -0800717 {
Florin Corasa5464812017-04-19 13:00:05 -0700718 application_detach (utm);
Florin Corase04c2992017-03-01 08:17:34 -0800719 return;
720 }
721
722 /* Init test data */
723 vec_validate (utm->connect_test_data, 64 * 1024 - 1);
724 for (i = 0; i < vec_len (utm->connect_test_data); i++)
725 utm->connect_test_data[i] = i & 0xff;
726
727 /* Start send */
728 client_send_data (utm);
729
730 /* Disconnect */
731 client_disconnect (utm);
Florin Coras6792ec02017-03-13 03:49:51 -0700732
Florin Coras6cf30ad2017-04-04 23:08:23 -0700733 application_detach (utm);
Florin Corase04c2992017-03-01 08:17:34 -0800734}
735
736static void
737vl_api_bind_uri_reply_t_handler (vl_api_bind_uri_reply_t * mp)
738{
739 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Florin Corase04c2992017-03-01 08:17:34 -0800740
741 if (mp->retval)
742 {
flyingeagle23a07779f2017-04-26 20:22:04 +0800743 clib_warning ("bind failed: %U", format_api_error,
Florin Corasa5464812017-04-19 13:00:05 -0700744 clib_net_to_host_u32 (mp->retval));
Florin Corase04c2992017-03-01 08:17:34 -0800745 utm->state = STATE_FAILED;
746 return;
747 }
748
Dave Barach68b0fb02017-02-28 15:15:56 -0500749 utm->state = STATE_READY;
750}
751
Dave Barach68b0fb02017-02-28 15:15:56 -0500752static void
Florin Corase04c2992017-03-01 08:17:34 -0800753vl_api_unbind_uri_reply_t_handler (vl_api_unbind_uri_reply_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500754{
755 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
756
757 if (mp->retval != 0)
Florin Corase04c2992017-03-01 08:17:34 -0800758 clib_warning ("returned %d", ntohl (mp->retval));
Dave Barach68b0fb02017-02-28 15:15:56 -0500759
760 utm->state = STATE_START;
761}
762
Florin Coras6cf30ad2017-04-04 23:08:23 -0700763u8 *
764format_ip4_address (u8 * s, va_list * args)
765{
766 u8 *a = va_arg (*args, u8 *);
767 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
768}
769
770u8 *
771format_ip6_address (u8 * s, va_list * args)
772{
773 ip6_address_t *a = va_arg (*args, ip6_address_t *);
774 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
775
776 i_max_n_zero = ARRAY_LEN (a->as_u16);
777 max_n_zeros = 0;
778 i_first_zero = i_max_n_zero;
779 n_zeros = 0;
780 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
781 {
782 u32 is_zero = a->as_u16[i] == 0;
783 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
784 {
785 i_first_zero = i;
786 n_zeros = 0;
787 }
788 n_zeros += is_zero;
789 if ((!is_zero && n_zeros > max_n_zeros)
790 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
791 {
792 i_max_n_zero = i_first_zero;
793 max_n_zeros = n_zeros;
794 i_first_zero = ARRAY_LEN (a->as_u16);
795 n_zeros = 0;
796 }
797 }
798
799 last_double_colon = 0;
800 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
801 {
802 if (i == i_max_n_zero && max_n_zeros > 1)
803 {
804 s = format (s, "::");
805 i += max_n_zeros - 1;
806 last_double_colon = 1;
807 }
808 else
809 {
810 s = format (s, "%s%x",
811 (last_double_colon || i == 0) ? "" : ":",
812 clib_net_to_host_u16 (a->as_u16[i]));
813 last_double_colon = 0;
814 }
815 }
816
817 return s;
818}
819
820/* Format an IP46 address. */
821u8 *
822format_ip46_address (u8 * s, va_list * args)
823{
824 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
825 ip46_type_t type = va_arg (*args, ip46_type_t);
826 int is_ip4 = 1;
827
828 switch (type)
829 {
830 case IP46_TYPE_ANY:
831 is_ip4 = ip46_address_is_ip4 (ip46);
832 break;
833 case IP46_TYPE_IP4:
834 is_ip4 = 1;
835 break;
836 case IP46_TYPE_IP6:
837 is_ip4 = 0;
838 break;
839 }
840
841 return is_ip4 ?
842 format (s, "%U", format_ip4_address, &ip46->ip4) :
843 format (s, "%U", format_ip6_address, &ip46->ip6);
844}
845
Dave Barach68b0fb02017-02-28 15:15:56 -0500846static void
847vl_api_accept_session_t_handler (vl_api_accept_session_t * mp)
848{
849 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
850 vl_api_accept_session_reply_t *rmp;
Florin Corase04c2992017-03-01 08:17:34 -0800851 svm_fifo_t *rx_fifo, *tx_fifo;
852 session_t *session;
Dave Barach68b0fb02017-02-28 15:15:56 -0500853 static f64 start_time;
Dave Barach68b0fb02017-02-28 15:15:56 -0500854 u32 session_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700855 u8 *ip_str;
Dave Barach68b0fb02017-02-28 15:15:56 -0500856
857 if (start_time == 0.0)
Florin Corase04c2992017-03-01 08:17:34 -0800858 start_time = clib_time_now (&utm->clib_time);
Dave Barach68b0fb02017-02-28 15:15:56 -0500859
Florin Coras6cf30ad2017-04-04 23:08:23 -0700860 ip_str = format (0, "%U", format_ip46_address, &mp->ip, mp->is_ip4);
861 clib_warning ("Accepted session from: %s:%d", ip_str,
862 clib_net_to_host_u16 (mp->port));
Damjan Marion7bee80c2017-04-26 15:32:12 +0200863 utm->vpp_event_queue =
864 uword_to_pointer (mp->vpp_event_queue_address,
865 unix_shared_memory_queue_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -0500866
867 /* Allocate local session and set it up */
868 pool_get (utm->sessions, session);
869 session_index = session - utm->sessions;
870
Damjan Marion7bee80c2017-04-26 15:32:12 +0200871 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -0500872 rx_fifo->client_session_index = session_index;
Damjan Marion7bee80c2017-04-26 15:32:12 +0200873 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -0500874 tx_fifo->client_session_index = session_index;
875
876 session->server_rx_fifo = rx_fifo;
877 session->server_tx_fifo = tx_fifo;
878
879 /* Add it to lookup table */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700880 hash_set (utm->session_index_by_vpp_handles, mp->handle, session_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500881
882 utm->state = STATE_READY;
883
884 /* Stats printing */
Florin Corase04c2992017-03-01 08:17:34 -0800885 if (pool_elts (utm->sessions) && (pool_elts (utm->sessions) % 20000) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500886 {
887 f64 now = clib_time_now (&utm->clib_time);
888 fformat (stdout, "%d active sessions in %.2f seconds, %.2f/sec...\n",
Florin Corase04c2992017-03-01 08:17:34 -0800889 pool_elts (utm->sessions), now - start_time,
890 (f64) pool_elts (utm->sessions) / (now - start_time));
Dave Barach68b0fb02017-02-28 15:15:56 -0500891 }
892
Florin Corase04c2992017-03-01 08:17:34 -0800893 /*
894 * Send accept reply to vpp
895 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500896 rmp = vl_msg_api_alloc (sizeof (*rmp));
897 memset (rmp, 0, sizeof (*rmp));
898 rmp->_vl_msg_id = ntohs (VL_API_ACCEPT_SESSION_REPLY);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700899 rmp->handle = mp->handle;
Florin Corase04c2992017-03-01 08:17:34 -0800900 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500901}
902
903void
Florin Corase04c2992017-03-01 08:17:34 -0800904server_handle_fifo_event_rx (uri_tcp_test_main_t * utm,
905 session_fifo_event_t * e)
Dave Barach68b0fb02017-02-28 15:15:56 -0500906{
Florin Corase04c2992017-03-01 08:17:34 -0800907 svm_fifo_t *rx_fifo, *tx_fifo;
908 int n_read;
Florin Corase04c2992017-03-01 08:17:34 -0800909 session_fifo_event_t evt;
910 unix_shared_memory_queue_t *q;
911 int rv, bytes;
912
913 rx_fifo = e->fifo;
914 tx_fifo = utm->sessions[rx_fifo->client_session_index].server_tx_fifo;
915
Florin Coras6792ec02017-03-13 03:49:51 -0700916 bytes = svm_fifo_max_dequeue (rx_fifo);
917 /* Allow enqueuing of a new event */
918 svm_fifo_unset_event (rx_fifo);
919
920 if (bytes == 0)
921 return;
922
923 /* Read the bytes */
Florin Corase04c2992017-03-01 08:17:34 -0800924 do
925 {
Florin Corasa5464812017-04-19 13:00:05 -0700926 n_read = svm_fifo_dequeue_nowait (rx_fifo, vec_len (utm->rx_buf),
Florin Corase04c2992017-03-01 08:17:34 -0800927 utm->rx_buf);
Florin Coras6792ec02017-03-13 03:49:51 -0700928 if (n_read > 0)
929 bytes -= n_read;
930
931 if (utm->drop_packets)
932 continue;
Florin Corase04c2992017-03-01 08:17:34 -0800933
934 /* Reflect if a non-drop session */
Florin Coras6792ec02017-03-13 03:49:51 -0700935 if (n_read > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800936 {
937 do
938 {
Florin Corasa5464812017-04-19 13:00:05 -0700939 rv = svm_fifo_enqueue_nowait (tx_fifo, n_read, utm->rx_buf);
Florin Corase04c2992017-03-01 08:17:34 -0800940 }
Florin Coras6792ec02017-03-13 03:49:51 -0700941 while (rv <= 0 && !utm->time_to_stop);
Florin Corase04c2992017-03-01 08:17:34 -0800942
Florin Coras6792ec02017-03-13 03:49:51 -0700943 /* If event wasn't set, add one */
944 if (svm_fifo_set_event (tx_fifo))
945 {
946 /* Fabricate TX event, send to vpp */
947 evt.fifo = tx_fifo;
Florin Corasa5464812017-04-19 13:00:05 -0700948 evt.event_type = FIFO_EVENT_APP_TX;
Florin Coras6792ec02017-03-13 03:49:51 -0700949 evt.event_id = e->event_id;
950
951 q = utm->vpp_event_queue;
952 unix_shared_memory_queue_add (q, (u8 *) & evt,
953 0 /* do wait for mutex */ );
954 }
Florin Corase04c2992017-03-01 08:17:34 -0800955 }
Florin Corase04c2992017-03-01 08:17:34 -0800956 }
Florin Corasd79b41e2017-03-04 05:37:52 -0800957 while ((n_read < 0 || bytes > 0) && !utm->time_to_stop);
Florin Corase04c2992017-03-01 08:17:34 -0800958}
959
960void
961server_handle_event_queue (uri_tcp_test_main_t * utm)
962{
963 session_fifo_event_t _e, *e = &_e;;
964
965 while (1)
966 {
967 unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
968 0 /* nowait */ );
969 switch (e->event_type)
970 {
Florin Corasa5464812017-04-19 13:00:05 -0700971 case FIFO_EVENT_APP_RX:
Florin Corase04c2992017-03-01 08:17:34 -0800972 server_handle_fifo_event_rx (utm, e);
973 break;
974
Florin Corasa5464812017-04-19 13:00:05 -0700975 case FIFO_EVENT_DISCONNECT:
Florin Corase04c2992017-03-01 08:17:34 -0800976 return;
977
978 default:
979 clib_warning ("unknown event type %d", e->event_type);
980 break;
981 }
982 if (PREDICT_FALSE (utm->time_to_stop == 1))
983 break;
984 if (PREDICT_FALSE (utm->time_to_print_stats == 1))
985 {
986 utm->time_to_print_stats = 0;
987 fformat (stdout, "%d connections\n", pool_elts (utm->sessions));
988 }
989 }
990}
991
992void
Florin Corasa5464812017-04-19 13:00:05 -0700993server_send_listen (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -0800994{
995 vl_api_bind_uri_t *bmp;
Florin Corase04c2992017-03-01 08:17:34 -0800996 bmp = vl_msg_api_alloc (sizeof (*bmp));
997 memset (bmp, 0, sizeof (*bmp));
998
999 bmp->_vl_msg_id = ntohs (VL_API_BIND_URI);
1000 bmp->client_index = utm->my_client_index;
1001 bmp->context = ntohl (0xfeedface);
Florin Corase04c2992017-03-01 08:17:34 -08001002 memcpy (bmp->uri, utm->uri, vec_len (utm->uri));
1003 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
1004}
1005
Florin Corasa5464812017-04-19 13:00:05 -07001006int
1007server_listen (uri_tcp_test_main_t * utm)
1008{
1009 server_send_listen (utm);
1010 if (wait_for_state_change (utm, STATE_READY))
1011 {
1012 clib_warning ("timeout waiting for STATE_READY");
1013 return -1;
1014 }
1015 return 0;
1016}
1017
Florin Corase04c2992017-03-01 08:17:34 -08001018void
Florin Corasa5464812017-04-19 13:00:05 -07001019server_send_unbind (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -08001020{
1021 vl_api_unbind_uri_t *ump;
1022
1023 ump = vl_msg_api_alloc (sizeof (*ump));
1024 memset (ump, 0, sizeof (*ump));
1025
1026 ump->_vl_msg_id = ntohs (VL_API_UNBIND_URI);
1027 ump->client_index = utm->my_client_index;
1028 memcpy (ump->uri, utm->uri, vec_len (utm->uri));
1029 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & ump);
1030}
1031
Florin Corasa5464812017-04-19 13:00:05 -07001032int
1033server_unbind (uri_tcp_test_main_t * utm)
1034{
1035 server_send_unbind (utm);
1036 if (wait_for_state_change (utm, STATE_START))
1037 {
1038 clib_warning ("timeout waiting for STATE_START");
1039 return -1;
1040 }
1041 return 0;
1042}
1043
Florin Corase04c2992017-03-01 08:17:34 -08001044void
1045server_test (uri_tcp_test_main_t * utm)
1046{
Florin Corasa5464812017-04-19 13:00:05 -07001047 if (application_attach (utm))
1048 return;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001049
Dave Barach68b0fb02017-02-28 15:15:56 -05001050 /* Bind to uri */
Florin Corasa5464812017-04-19 13:00:05 -07001051 if (server_listen (utm))
1052 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001053
1054 /* Enter handle event loop */
Florin Corase04c2992017-03-01 08:17:34 -08001055 server_handle_event_queue (utm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001056
1057 /* Cleanup */
Florin Corasa5464812017-04-19 13:00:05 -07001058 server_send_unbind (utm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001059
Florin Coras6cf30ad2017-04-04 23:08:23 -07001060 application_detach (utm);
1061
Dave Barach68b0fb02017-02-28 15:15:56 -05001062 fformat (stdout, "Test complete...\n");
1063}
1064
Florin Corase69f4952017-03-07 10:06:24 -08001065static void
1066vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
1067 mp)
1068{
Florin Coras6792ec02017-03-13 03:49:51 -07001069 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
1070
Florin Corase69f4952017-03-07 10:06:24 -08001071 clib_warning ("retval %d", ntohl (mp->retval));
Florin Coras6792ec02017-03-13 03:49:51 -07001072 utm->state = STATE_START;
Florin Corase69f4952017-03-07 10:06:24 -08001073}
1074
1075#define foreach_uri_msg \
1076_(BIND_URI_REPLY, bind_uri_reply) \
1077_(UNBIND_URI_REPLY, unbind_uri_reply) \
1078_(ACCEPT_SESSION, accept_session) \
1079_(CONNECT_URI_REPLY, connect_uri_reply) \
1080_(DISCONNECT_SESSION, disconnect_session) \
1081_(DISCONNECT_SESSION_REPLY, disconnect_session_reply) \
1082_(RESET_SESSION, reset_session) \
Florin Coras6cf30ad2017-04-04 23:08:23 -07001083_(APPLICATION_ATTACH_REPLY, application_attach_reply) \
1084_(APPLICATION_DETACH_REPLY, application_detach_reply) \
1085_(MAP_ANOTHER_SEGMENT, map_another_segment) \
Dave Barach68b0fb02017-02-28 15:15:56 -05001086
1087void
1088uri_api_hookup (uri_tcp_test_main_t * utm)
1089{
1090#define _(N,n) \
1091 vl_msg_api_set_handlers(VL_API_##N, #n, \
1092 vl_api_##n##_t_handler, \
1093 vl_noop_handler, \
1094 vl_api_##n##_t_endian, \
1095 vl_api_##n##_t_print, \
1096 sizeof(vl_api_##n##_t), 1);
1097 foreach_uri_msg;
1098#undef _
1099}
1100
1101int
1102main (int argc, char **argv)
1103{
1104 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
1105 unformat_input_t _argv, *a = &_argv;
1106 u8 *chroot_prefix;
Florin Corase69f4952017-03-07 10:06:24 -08001107 u8 *heap, *uri = 0;
1108 u8 *bind_uri = (u8 *) "tcp://0.0.0.0/1234";
1109 u8 *connect_uri = (u8 *) "tcp://6.0.1.2/1234";
Florin Coras6cf30ad2017-04-04 23:08:23 -07001110 u64 bytes_to_send = 64 << 10, mbytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001111 u32 tmp;
1112 mheap_t *h;
Florin Corase04c2992017-03-01 08:17:34 -08001113 session_t *session;
Dave Barach68b0fb02017-02-28 15:15:56 -05001114 int i;
Florin Corase04c2992017-03-01 08:17:34 -08001115 int i_am_master = 1, drop_packets = 0, test_return_packets = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001116
1117 clib_mem_init (0, 256 << 20);
1118
1119 heap = clib_mem_get_per_cpu_heap ();
1120 h = mheap_header (heap);
1121
1122 /* make the main heap thread-safe */
1123 h->flags |= MHEAP_FLAG_THREAD_SAFE;
1124
1125 vec_validate (utm->rx_buf, 65536);
1126
Florin Corase04c2992017-03-01 08:17:34 -08001127 utm->session_index_by_vpp_handles = hash_create (0, sizeof (uword));
Dave Barach68b0fb02017-02-28 15:15:56 -05001128
Florin Corase04c2992017-03-01 08:17:34 -08001129 utm->my_pid = getpid ();
1130 utm->configured_segment_size = 1 << 20;
Dave Barach68b0fb02017-02-28 15:15:56 -05001131
1132 clib_time_init (&utm->clib_time);
1133 init_error_string_table (utm);
Florin Corase04c2992017-03-01 08:17:34 -08001134 svm_fifo_segment_init (0x200000000ULL, 20);
Dave Barach68b0fb02017-02-28 15:15:56 -05001135 unformat_init_command_line (a, argv);
1136
1137 while (unformat_check_input (a) != UNFORMAT_END_OF_INPUT)
1138 {
1139 if (unformat (a, "chroot prefix %s", &chroot_prefix))
Florin Corase04c2992017-03-01 08:17:34 -08001140 {
1141 vl_set_memory_root_path ((char *) chroot_prefix);
1142 }
Florin Corase69f4952017-03-07 10:06:24 -08001143 else if (unformat (a, "uri %s", &uri))
Florin Corase04c2992017-03-01 08:17:34 -08001144 ;
Dave Barach68b0fb02017-02-28 15:15:56 -05001145 else if (unformat (a, "segment-size %dM", &tmp))
Florin Corase04c2992017-03-01 08:17:34 -08001146 utm->configured_segment_size = tmp << 20;
Dave Barach68b0fb02017-02-28 15:15:56 -05001147 else if (unformat (a, "segment-size %dG", &tmp))
Florin Corase04c2992017-03-01 08:17:34 -08001148 utm->configured_segment_size = tmp << 30;
Dave Barach68b0fb02017-02-28 15:15:56 -05001149 else if (unformat (a, "master"))
Florin Corase04c2992017-03-01 08:17:34 -08001150 i_am_master = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001151 else if (unformat (a, "slave"))
Florin Corase04c2992017-03-01 08:17:34 -08001152 i_am_master = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001153 else if (unformat (a, "drop"))
Florin Corase04c2992017-03-01 08:17:34 -08001154 drop_packets = 1;
1155 else if (unformat (a, "test"))
1156 test_return_packets = 1;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001157 else if (unformat (a, "mbytes %lld", &mbytes))
Florin Coras6792ec02017-03-13 03:49:51 -07001158 {
1159 bytes_to_send = mbytes << 20;
1160 }
Florin Coras6cf30ad2017-04-04 23:08:23 -07001161 else if (unformat (a, "gbytes %lld", &mbytes))
1162 {
1163 bytes_to_send = mbytes << 30;
1164 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001165 else
Florin Corase04c2992017-03-01 08:17:34 -08001166 {
1167 fformat (stderr, "%s: usage [master|slave]\n");
1168 exit (1);
1169 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001170 }
1171
Florin Corase69f4952017-03-07 10:06:24 -08001172 if (uri)
1173 {
1174 utm->uri = format (0, "%s%c", uri, 0);
1175 utm->connect_uri = format (0, "%s%c", uri, 0);
1176 }
1177 else
1178 {
1179 utm->uri = format (0, "%s%c", bind_uri, 0);
1180 utm->connect_uri = format (0, "%s%c", connect_uri, 0);
1181 }
1182
Dave Barach68b0fb02017-02-28 15:15:56 -05001183 utm->i_am_master = i_am_master;
1184 utm->segment_main = &svm_fifo_segment_main;
1185 utm->drop_packets = drop_packets;
Florin Corase04c2992017-03-01 08:17:34 -08001186 utm->test_return_packets = test_return_packets;
Florin Coras6792ec02017-03-13 03:49:51 -07001187 utm->bytes_to_send = bytes_to_send;
Dave Barach68b0fb02017-02-28 15:15:56 -05001188
Florin Corase04c2992017-03-01 08:17:34 -08001189 setup_signal_handlers ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001190 uri_api_hookup (utm);
1191
Florin Corase04c2992017-03-01 08:17:34 -08001192 if (connect_to_vpp (i_am_master ? "uri_tcp_server" : "uri_tcp_client") < 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001193 {
1194 svm_region_exit ();
1195 fformat (stderr, "Couldn't connect to vpe, exiting...\n");
1196 exit (1);
1197 }
1198
1199 if (i_am_master == 0)
1200 {
Florin Corase04c2992017-03-01 08:17:34 -08001201 client_test (utm);
Florin Corase69f4952017-03-07 10:06:24 -08001202 vl_client_disconnect_from_vlib ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001203 exit (0);
1204 }
1205
1206 /* $$$$ hack preallocation */
1207 for (i = 0; i < 200000; i++)
1208 {
1209 pool_get (utm->sessions, session);
1210 memset (session, 0, sizeof (*session));
1211 }
1212 for (i = 0; i < 200000; i++)
1213 pool_put_index (utm->sessions, i);
1214
Florin Corase04c2992017-03-01 08:17:34 -08001215 server_test (utm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001216
1217 vl_client_disconnect_from_vlib ();
1218 exit (0);
1219}
Florin Corase04c2992017-03-01 08:17:34 -08001220
1221/*
1222 * fd.io coding-style-patch-verification: ON
1223 *
1224 * Local Variables:
1225 * eval: (c-set-style "gnu")
1226 * End:
1227 */