blob: 0b4aae3700f3e57e71ae9e00ba98bc2c6e966a96 [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;
176 }
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;
185 u32 fifo_size = 3 << 20;
186 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] =
193 APP_OPTIONS_FLAGS_USE_FIFO | APP_OPTIONS_FLAGS_ADD_SEGMENT;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700194 bmp->options[SESSION_OPTIONS_RX_FIFO_SIZE] = fifo_size;
195 bmp->options[SESSION_OPTIONS_TX_FIFO_SIZE] = fifo_size;
196 bmp->options[SESSION_OPTIONS_ADD_SEGMENT_SIZE] = 128 << 20;
197 bmp->options[SESSION_OPTIONS_SEGMENT_SIZE] = 256 << 20;
198 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
199}
200
Florin Corasa5464812017-04-19 13:00:05 -0700201int
202application_attach (uri_tcp_test_main_t * utm)
203{
204 application_send_attach (utm);
205 if (wait_for_state_change (utm, STATE_ATTACHED))
206 {
207 clib_warning ("timeout waiting for STATE_ATTACHED");
208 return -1;
209 }
210 return 0;
211}
212
Florin Coras6cf30ad2017-04-04 23:08:23 -0700213void
214application_detach (uri_tcp_test_main_t * utm)
215{
216 vl_api_application_detach_t *bmp;
217 bmp = vl_msg_api_alloc (sizeof (*bmp));
218 memset (bmp, 0, sizeof (*bmp));
219
220 bmp->_vl_msg_id = ntohs (VL_API_APPLICATION_DETACH);
221 bmp->client_index = utm->my_client_index;
222 bmp->context = ntohl (0xfeedface);
223 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
224}
225
226static void
227vl_api_application_attach_reply_t_handler (vl_api_application_attach_reply_t *
228 mp)
229{
230 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
231 svm_fifo_segment_create_args_t _a, *a = &_a;
232 int rv;
233
234 if (mp->retval)
235 {
Florin Corasa5464812017-04-19 13:00:05 -0700236 clib_warning ("attach failed: %U", format_api_error,
237 clib_net_to_host_u32 (mp->retval));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700238 utm->state = STATE_FAILED;
239 return;
240 }
241
242 if (mp->segment_name_length == 0)
243 {
244 clib_warning ("segment_name_length zero");
245 return;
246 }
247
248 a->segment_name = (char *) mp->segment_name;
249 a->segment_size = mp->segment_size;
250
251 ASSERT (mp->app_event_queue_address);
252
253 /* Attach to the segment vpp created */
254 rv = svm_fifo_segment_attach (a);
255 if (rv)
256 {
257 clib_warning ("svm_fifo_segment_attach ('%s') failed",
258 mp->segment_name);
259 return;
260 }
261
262 utm->our_event_queue =
263 (unix_shared_memory_queue_t *) mp->app_event_queue_address;
Florin Corasa5464812017-04-19 13:00:05 -0700264 utm->state = STATE_ATTACHED;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700265}
266
267static void
268vl_api_application_detach_reply_t_handler (vl_api_application_detach_reply_t *
269 mp)
270{
271 if (mp->retval)
272 clib_warning ("detach returned with err: %d", mp->retval);
273}
274
Dave Barach68b0fb02017-02-28 15:15:56 -0500275static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500276stop_signal (int signum)
277{
278 uri_tcp_test_main_t *um = &uri_tcp_test_main;
279
280 um->time_to_stop = 1;
281}
282
283static void
284stats_signal (int signum)
285{
286 uri_tcp_test_main_t *um = &uri_tcp_test_main;
287
288 um->time_to_print_stats = 1;
289}
290
291static clib_error_t *
292setup_signal_handlers (void)
293{
294 signal (SIGINT, stats_signal);
295 signal (SIGQUIT, stop_signal);
296 signal (SIGTERM, stop_signal);
297
298 return 0;
299}
300
301void
302vlib_cli_output (struct vlib_main_t *vm, char *fmt, ...)
303{
304 clib_warning ("BUG");
305}
306
307int
308connect_to_vpp (char *name)
309{
310 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
311 api_main_t *am = &api_main;
312
313 if (vl_client_connect_to_vlib ("/vpe-api", name, 32) < 0)
314 return -1;
315
316 utm->vl_input_queue = am->shmem_hdr->vl_input_queue;
317 utm->my_client_index = am->my_client_index;
318
319 return 0;
320}
321
322static void
Florin Corase04c2992017-03-01 08:17:34 -0800323vl_api_map_another_segment_t_handler (vl_api_map_another_segment_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500324{
325 svm_fifo_segment_create_args_t _a, *a = &_a;
326 int rv;
327
328 a->segment_name = (char *) mp->segment_name;
329 a->segment_size = mp->segment_size;
330 /* Attach to the segment vpp created */
331 rv = svm_fifo_segment_attach (a);
332 if (rv)
333 {
334 clib_warning ("svm_fifo_segment_attach ('%s') failed",
Florin Corase04c2992017-03-01 08:17:34 -0800335 mp->segment_name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500336 return;
337 }
338 clib_warning ("Mapped new segment '%s' size %d", mp->segment_name,
Florin Corase04c2992017-03-01 08:17:34 -0800339 mp->segment_size);
Dave Barach68b0fb02017-02-28 15:15:56 -0500340}
341
342static void
343vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
344{
345 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Florin Corase04c2992017-03-01 08:17:34 -0800346 session_t *session;
347 vl_api_disconnect_session_reply_t *rmp;
348 uword *p;
Dave Barach68b0fb02017-02-28 15:15:56 -0500349 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500350
Florin Coras6cf30ad2017-04-04 23:08:23 -0700351 p = hash_get (utm->session_index_by_vpp_handles, mp->handle);
Florin Corase04c2992017-03-01 08:17:34 -0800352
353 if (p)
354 {
355 session = pool_elt_at_index (utm->sessions, p[0]);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700356 hash_unset (utm->session_index_by_vpp_handles, mp->handle);
Florin Corase04c2992017-03-01 08:17:34 -0800357 pool_put (utm->sessions, session);
358 }
359 else
360 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700361 clib_warning ("couldn't find session key %llx", mp->handle);
Florin Corase04c2992017-03-01 08:17:34 -0800362 rv = -11;
363 }
364
365 utm->time_to_stop = 1;
366
367 rmp = vl_msg_api_alloc (sizeof (*rmp));
368 memset (rmp, 0, sizeof (*rmp));
369
370 rmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION_REPLY);
371 rmp->retval = rv;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700372 rmp->handle = mp->handle;
Florin Corase04c2992017-03-01 08:17:34 -0800373 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
374}
375
376static void
377vl_api_reset_session_t_handler (vl_api_reset_session_t * mp)
378{
379 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
380 session_t *session;
381 vl_api_reset_session_reply_t *rmp;
382 uword *p;
383 int rv = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800384
Florin Coras6cf30ad2017-04-04 23:08:23 -0700385 p = hash_get (utm->session_index_by_vpp_handles, mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500386
387 if (p)
388 {
389 session = pool_elt_at_index (utm->sessions, p[0]);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700390 hash_unset (utm->session_index_by_vpp_handles, mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500391 pool_put (utm->sessions, session);
Florin Corasd79b41e2017-03-04 05:37:52 -0800392 utm->time_to_stop = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500393 }
394 else
395 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700396 clib_warning ("couldn't find session key %llx", mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500397 rv = -11;
398 }
399
400 rmp = vl_msg_api_alloc (sizeof (*rmp));
401 memset (rmp, 0, sizeof (*rmp));
Florin Corasd79b41e2017-03-04 05:37:52 -0800402 rmp->_vl_msg_id = ntohs (VL_API_RESET_SESSION_REPLY);
Dave Barach68b0fb02017-02-28 15:15:56 -0500403 rmp->retval = rv;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700404 rmp->handle = mp->handle;
Florin Corase04c2992017-03-01 08:17:34 -0800405 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500406}
407
408void
Florin Corase04c2992017-03-01 08:17:34 -0800409client_handle_fifo_event_rx (uri_tcp_test_main_t * utm,
410 session_fifo_event_t * e)
Dave Barach68b0fb02017-02-28 15:15:56 -0500411{
Florin Corase04c2992017-03-01 08:17:34 -0800412 svm_fifo_t *rx_fifo;
413 int n_read, bytes, i;
Dave Barach68b0fb02017-02-28 15:15:56 -0500414
415 rx_fifo = e->fifo;
416
Florin Coras6792ec02017-03-13 03:49:51 -0700417 bytes = svm_fifo_max_dequeue (rx_fifo);
418 /* Allow enqueuing of new event */
419 svm_fifo_unset_event (rx_fifo);
420
421 /* Read the bytes */
Dave Barach68b0fb02017-02-28 15:15:56 -0500422 do
423 {
Florin Corasa5464812017-04-19 13:00:05 -0700424 n_read = svm_fifo_dequeue_nowait (rx_fifo,
Florin Coras6792ec02017-03-13 03:49:51 -0700425 clib_min (vec_len (utm->rx_buf),
426 bytes), utm->rx_buf);
Dave Barach68b0fb02017-02-28 15:15:56 -0500427 if (n_read > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800428 {
429 bytes -= n_read;
430 for (i = 0; i < n_read; i++)
431 {
432 if (utm->rx_buf[i] != ((utm->client_bytes_received + i) & 0xff))
433 {
434 clib_warning ("error at byte %lld, 0x%x not 0x%x",
435 utm->client_bytes_received + i,
436 utm->rx_buf[i],
437 ((utm->client_bytes_received + i) & 0xff));
438 }
439 }
440 utm->client_bytes_received += n_read;
441 }
Florin Coras6792ec02017-03-13 03:49:51 -0700442 else
443 {
444 if (n_read == -2)
445 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700446// clib_warning ("weird!");
Florin Coras6792ec02017-03-13 03:49:51 -0700447 break;
448 }
449 }
Florin Corase04c2992017-03-01 08:17:34 -0800450
Dave Barach68b0fb02017-02-28 15:15:56 -0500451 }
Florin Coras6792ec02017-03-13 03:49:51 -0700452 while (bytes > 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500453}
454
455void
Florin Corase04c2992017-03-01 08:17:34 -0800456client_handle_event_queue (uri_tcp_test_main_t * utm)
Dave Barach68b0fb02017-02-28 15:15:56 -0500457{
458 session_fifo_event_t _e, *e = &_e;;
459
Florin Corase04c2992017-03-01 08:17:34 -0800460 unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
461 0 /* nowait */ );
Dave Barach68b0fb02017-02-28 15:15:56 -0500462 switch (e->event_type)
463 {
Florin Corasa5464812017-04-19 13:00:05 -0700464 case FIFO_EVENT_APP_RX:
Florin Corase04c2992017-03-01 08:17:34 -0800465 client_handle_fifo_event_rx (utm, e);
Dave Barach68b0fb02017-02-28 15:15:56 -0500466 break;
467
Florin Corasa5464812017-04-19 13:00:05 -0700468 case FIFO_EVENT_DISCONNECT:
Dave Barach68b0fb02017-02-28 15:15:56 -0500469 return;
470
471 default:
Florin Corase04c2992017-03-01 08:17:34 -0800472 clib_warning ("unknown event type %d", e->event_type);
Dave Barach68b0fb02017-02-28 15:15:56 -0500473 break;
474 }
475}
476
Florin Corase04c2992017-03-01 08:17:34 -0800477static void *
478client_rx_thread_fn (void *arg)
Dave Barach68b0fb02017-02-28 15:15:56 -0500479{
Florin Corase04c2992017-03-01 08:17:34 -0800480 session_fifo_event_t _e, *e = &_e;
481 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Dave Barach68b0fb02017-02-28 15:15:56 -0500482
Florin Corase04c2992017-03-01 08:17:34 -0800483 utm->client_bytes_received = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500484 while (1)
485 {
Florin Corase04c2992017-03-01 08:17:34 -0800486 unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
487 0 /* nowait */ );
Dave Barach68b0fb02017-02-28 15:15:56 -0500488 switch (e->event_type)
Florin Corase04c2992017-03-01 08:17:34 -0800489 {
Florin Corasa5464812017-04-19 13:00:05 -0700490 case FIFO_EVENT_APP_RX:
Florin Corase04c2992017-03-01 08:17:34 -0800491 client_handle_fifo_event_rx (utm, e);
492 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500493
Florin Corasa5464812017-04-19 13:00:05 -0700494 case FIFO_EVENT_DISCONNECT:
Florin Corase04c2992017-03-01 08:17:34 -0800495 return 0;
496 default:
497 clib_warning ("unknown event type %d", e->event_type);
498 break;
499 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500500
Florin Corase04c2992017-03-01 08:17:34 -0800501 if (PREDICT_FALSE (utm->time_to_stop == 1))
502 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500503 }
Florin Corase04c2992017-03-01 08:17:34 -0800504 pthread_exit (0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500505}
506
Dave Barach68b0fb02017-02-28 15:15:56 -0500507
508static void
509vl_api_connect_uri_reply_t_handler (vl_api_connect_uri_reply_t * mp)
510{
511 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Dave Barach68b0fb02017-02-28 15:15:56 -0500512 session_t *session;
513 u32 session_index;
514 svm_fifo_t *rx_fifo, *tx_fifo;
515 int rv;
516
517 if (mp->retval)
518 {
Florin Corasa5464812017-04-19 13:00:05 -0700519 clib_warning ("connection failed with code: %U", format_api_error,
520 clib_net_to_host_u32 (mp->retval));
Dave Barach68b0fb02017-02-28 15:15:56 -0500521 utm->state = STATE_FAILED;
522 return;
523 }
Florin Corase04c2992017-03-01 08:17:34 -0800524
Dave Barach68b0fb02017-02-28 15:15:56 -0500525 utm->vpp_event_queue = (unix_shared_memory_queue_t *)
526 mp->vpp_event_queue_address;
527
528 /*
529 * Setup session
530 */
531
532 pool_get (utm->sessions, session);
533 session_index = session - utm->sessions;
534
Florin Corase04c2992017-03-01 08:17:34 -0800535 rx_fifo = (svm_fifo_t *) mp->server_rx_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500536 rx_fifo->client_session_index = session_index;
Florin Corase04c2992017-03-01 08:17:34 -0800537 tx_fifo = (svm_fifo_t *) mp->server_tx_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500538 tx_fifo->client_session_index = session_index;
539
540 session->server_rx_fifo = rx_fifo;
541 session->server_tx_fifo = tx_fifo;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700542 session->vpp_session_handle = mp->handle;
Dave Barach68b0fb02017-02-28 15:15:56 -0500543
544 /* Save handle */
545 utm->connected_session_index = session_index;
Florin Corase04c2992017-03-01 08:17:34 -0800546 utm->state = STATE_READY;
547
548 /* Add it to lookup table */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700549 hash_set (utm->session_index_by_vpp_handles, mp->handle, session_index);
Florin Corase04c2992017-03-01 08:17:34 -0800550
551 /* Start RX thread */
552 rv = pthread_create (&utm->client_rx_thread_handle,
553 NULL /*attr */ , client_rx_thread_fn, 0);
554 if (rv)
555 {
556 clib_warning ("pthread_create returned %d", rv);
557 rv = VNET_API_ERROR_SYSCALL_ERROR_1;
558 }
559}
560
Florin Coras6792ec02017-03-13 03:49:51 -0700561static void
562send_test_chunk (uri_tcp_test_main_t * utm, svm_fifo_t * tx_fifo, int mypid,
563 u32 bytes)
Florin Corase04c2992017-03-01 08:17:34 -0800564{
565 u8 *test_data = utm->connect_test_data;
566 u64 bytes_sent = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700567 int test_buf_offset = 0;
568 u32 bytes_to_snd;
569 u32 queue_max_chunk = 64 << 10, actual_write;
Florin Corase04c2992017-03-01 08:17:34 -0800570 session_fifo_event_t evt;
571 static int serial_number = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700572 int rv;
Florin Corase04c2992017-03-01 08:17:34 -0800573
Florin Coras6792ec02017-03-13 03:49:51 -0700574 bytes_to_snd = (bytes == 0) ? vec_len (test_data) : bytes;
575 if (bytes_to_snd > vec_len (test_data))
576 bytes_to_snd = vec_len (test_data);
Florin Corase04c2992017-03-01 08:17:34 -0800577
Florin Coras6792ec02017-03-13 03:49:51 -0700578 while (bytes_to_snd > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800579 {
Florin Coras6792ec02017-03-13 03:49:51 -0700580 actual_write =
581 bytes_to_snd > queue_max_chunk ? queue_max_chunk : bytes_to_snd;
Florin Corasa5464812017-04-19 13:00:05 -0700582 rv = svm_fifo_enqueue_nowait (tx_fifo, actual_write,
Florin Coras6792ec02017-03-13 03:49:51 -0700583 test_data + test_buf_offset);
584
585 if (rv > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800586 {
Florin Coras6792ec02017-03-13 03:49:51 -0700587 bytes_to_snd -= rv;
588 test_buf_offset += rv;
589 bytes_sent += rv;
Florin Corase04c2992017-03-01 08:17:34 -0800590
Florin Coras6792ec02017-03-13 03:49:51 -0700591 if (svm_fifo_set_event (tx_fifo))
Florin Corase04c2992017-03-01 08:17:34 -0800592 {
Florin Corase04c2992017-03-01 08:17:34 -0800593 /* Fabricate TX event, send to vpp */
594 evt.fifo = tx_fifo;
Florin Corasa5464812017-04-19 13:00:05 -0700595 evt.event_type = FIFO_EVENT_APP_TX;
Florin Corase04c2992017-03-01 08:17:34 -0800596 evt.event_id = serial_number++;
597
598 unix_shared_memory_queue_add (utm->vpp_event_queue,
599 (u8 *) & evt,
600 0 /* do wait for mutex */ );
601 }
602 }
603 }
Florin Coras6792ec02017-03-13 03:49:51 -0700604}
605
606void
607client_send_data (uri_tcp_test_main_t * utm)
608{
609 u8 *test_data = utm->connect_test_data;
610 int mypid = getpid ();
611 session_t *session;
612 svm_fifo_t *tx_fifo;
613 u32 n_iterations, leftover;
614 int i;
615
616 session = pool_elt_at_index (utm->sessions, utm->connected_session_index);
617 tx_fifo = session->server_tx_fifo;
618
Florin Coras82b13a82017-04-25 11:58:06 -0700619 ASSERT (vec_len (test_data) > 0);
620
Florin Coras6792ec02017-03-13 03:49:51 -0700621 vec_validate (utm->rx_buf, vec_len (test_data) - 1);
622 n_iterations = utm->bytes_to_send / vec_len (test_data);
623
624 for (i = 0; i < n_iterations; i++)
625 {
626 send_test_chunk (utm, tx_fifo, mypid, 0);
627 }
628
629 leftover = utm->bytes_to_send % vec_len (test_data);
630 if (leftover)
631 send_test_chunk (utm, tx_fifo, mypid, leftover);
Florin Corase04c2992017-03-01 08:17:34 -0800632
633 if (utm->test_return_packets)
634 {
635 f64 timeout = clib_time_now (&utm->clib_time) + 2;
636
637 /* Wait for the outstanding packets */
Florin Coras6792ec02017-03-13 03:49:51 -0700638 while (utm->client_bytes_received <
639 vec_len (test_data) * n_iterations + leftover)
Florin Corase04c2992017-03-01 08:17:34 -0800640 {
641 if (clib_time_now (&utm->clib_time) > timeout)
642 {
643 clib_warning ("timed out waiting for the missing packets");
644 break;
645 }
646 }
Florin Corase04c2992017-03-01 08:17:34 -0800647 }
Florin Coras6792ec02017-03-13 03:49:51 -0700648 utm->time_to_stop = 1;
Florin Corase04c2992017-03-01 08:17:34 -0800649}
650
651void
Florin Corasa5464812017-04-19 13:00:05 -0700652client_send_connect (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -0800653{
654 vl_api_connect_uri_t *cmp;
655 cmp = vl_msg_api_alloc (sizeof (*cmp));
656 memset (cmp, 0, sizeof (*cmp));
657
658 cmp->_vl_msg_id = ntohs (VL_API_CONNECT_URI);
659 cmp->client_index = utm->my_client_index;
660 cmp->context = ntohl (0xfeedface);
661 memcpy (cmp->uri, utm->connect_uri, vec_len (utm->connect_uri));
662 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & cmp);
663}
664
Florin Corasa5464812017-04-19 13:00:05 -0700665int
666client_connect (uri_tcp_test_main_t * utm)
667{
668 client_send_connect (utm);
669 if (wait_for_state_change (utm, STATE_READY))
670 {
671 clib_warning ("Connect failed");
672 return -1;
673 }
674 return 0;
675}
676
Florin Corase04c2992017-03-01 08:17:34 -0800677void
Florin Corasa5464812017-04-19 13:00:05 -0700678client_send_disconnect (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -0800679{
680 session_t *connected_session;
681 vl_api_disconnect_session_t *dmp;
682 connected_session = pool_elt_at_index (utm->sessions,
683 utm->connected_session_index);
684 dmp = vl_msg_api_alloc (sizeof (*dmp));
685 memset (dmp, 0, sizeof (*dmp));
686 dmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION);
687 dmp->client_index = utm->my_client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700688 dmp->handle = connected_session->vpp_session_handle;
Florin Corase04c2992017-03-01 08:17:34 -0800689 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & dmp);
690}
691
Florin Corasa5464812017-04-19 13:00:05 -0700692int
693client_disconnect (uri_tcp_test_main_t * utm)
694{
695 client_send_disconnect (utm);
696 if (wait_for_state_change (utm, STATE_START))
697 {
698 clib_warning ("Disconnect failed");
699 return -1;
700 }
701 return 0;
702}
703
Florin Corase04c2992017-03-01 08:17:34 -0800704static void
705client_test (uri_tcp_test_main_t * utm)
706{
707 int i;
708
Florin Corasa5464812017-04-19 13:00:05 -0700709 if (application_attach (utm))
710 return;
Florin Corase04c2992017-03-01 08:17:34 -0800711
Florin Corasa5464812017-04-19 13:00:05 -0700712 if (client_connect (utm))
Florin Corase04c2992017-03-01 08:17:34 -0800713 {
Florin Corasa5464812017-04-19 13:00:05 -0700714 application_detach (utm);
Florin Corase04c2992017-03-01 08:17:34 -0800715 return;
716 }
717
718 /* Init test data */
719 vec_validate (utm->connect_test_data, 64 * 1024 - 1);
720 for (i = 0; i < vec_len (utm->connect_test_data); i++)
721 utm->connect_test_data[i] = i & 0xff;
722
723 /* Start send */
724 client_send_data (utm);
725
726 /* Disconnect */
727 client_disconnect (utm);
Florin Coras6792ec02017-03-13 03:49:51 -0700728
Florin Coras6cf30ad2017-04-04 23:08:23 -0700729 application_detach (utm);
Florin Corase04c2992017-03-01 08:17:34 -0800730}
731
732static void
733vl_api_bind_uri_reply_t_handler (vl_api_bind_uri_reply_t * mp)
734{
735 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Florin Corase04c2992017-03-01 08:17:34 -0800736
737 if (mp->retval)
738 {
Florin Corasa5464812017-04-19 13:00:05 -0700739 clib_warning ("bind failed: %s", format_api_error,
740 clib_net_to_host_u32 (mp->retval));
Florin Corase04c2992017-03-01 08:17:34 -0800741 utm->state = STATE_FAILED;
742 return;
743 }
744
Dave Barach68b0fb02017-02-28 15:15:56 -0500745 utm->state = STATE_READY;
746}
747
Dave Barach68b0fb02017-02-28 15:15:56 -0500748static void
Florin Corase04c2992017-03-01 08:17:34 -0800749vl_api_unbind_uri_reply_t_handler (vl_api_unbind_uri_reply_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500750{
751 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
752
753 if (mp->retval != 0)
Florin Corase04c2992017-03-01 08:17:34 -0800754 clib_warning ("returned %d", ntohl (mp->retval));
Dave Barach68b0fb02017-02-28 15:15:56 -0500755
756 utm->state = STATE_START;
757}
758
Florin Coras6cf30ad2017-04-04 23:08:23 -0700759u8 *
760format_ip4_address (u8 * s, va_list * args)
761{
762 u8 *a = va_arg (*args, u8 *);
763 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
764}
765
766u8 *
767format_ip6_address (u8 * s, va_list * args)
768{
769 ip6_address_t *a = va_arg (*args, ip6_address_t *);
770 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
771
772 i_max_n_zero = ARRAY_LEN (a->as_u16);
773 max_n_zeros = 0;
774 i_first_zero = i_max_n_zero;
775 n_zeros = 0;
776 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
777 {
778 u32 is_zero = a->as_u16[i] == 0;
779 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
780 {
781 i_first_zero = i;
782 n_zeros = 0;
783 }
784 n_zeros += is_zero;
785 if ((!is_zero && n_zeros > max_n_zeros)
786 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
787 {
788 i_max_n_zero = i_first_zero;
789 max_n_zeros = n_zeros;
790 i_first_zero = ARRAY_LEN (a->as_u16);
791 n_zeros = 0;
792 }
793 }
794
795 last_double_colon = 0;
796 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
797 {
798 if (i == i_max_n_zero && max_n_zeros > 1)
799 {
800 s = format (s, "::");
801 i += max_n_zeros - 1;
802 last_double_colon = 1;
803 }
804 else
805 {
806 s = format (s, "%s%x",
807 (last_double_colon || i == 0) ? "" : ":",
808 clib_net_to_host_u16 (a->as_u16[i]));
809 last_double_colon = 0;
810 }
811 }
812
813 return s;
814}
815
816/* Format an IP46 address. */
817u8 *
818format_ip46_address (u8 * s, va_list * args)
819{
820 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
821 ip46_type_t type = va_arg (*args, ip46_type_t);
822 int is_ip4 = 1;
823
824 switch (type)
825 {
826 case IP46_TYPE_ANY:
827 is_ip4 = ip46_address_is_ip4 (ip46);
828 break;
829 case IP46_TYPE_IP4:
830 is_ip4 = 1;
831 break;
832 case IP46_TYPE_IP6:
833 is_ip4 = 0;
834 break;
835 }
836
837 return is_ip4 ?
838 format (s, "%U", format_ip4_address, &ip46->ip4) :
839 format (s, "%U", format_ip6_address, &ip46->ip6);
840}
841
Dave Barach68b0fb02017-02-28 15:15:56 -0500842static void
843vl_api_accept_session_t_handler (vl_api_accept_session_t * mp)
844{
845 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
846 vl_api_accept_session_reply_t *rmp;
Florin Corase04c2992017-03-01 08:17:34 -0800847 svm_fifo_t *rx_fifo, *tx_fifo;
848 session_t *session;
Dave Barach68b0fb02017-02-28 15:15:56 -0500849 static f64 start_time;
Dave Barach68b0fb02017-02-28 15:15:56 -0500850 u32 session_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700851 u8 *ip_str;
Dave Barach68b0fb02017-02-28 15:15:56 -0500852
853 if (start_time == 0.0)
Florin Corase04c2992017-03-01 08:17:34 -0800854 start_time = clib_time_now (&utm->clib_time);
Dave Barach68b0fb02017-02-28 15:15:56 -0500855
Florin Coras6cf30ad2017-04-04 23:08:23 -0700856 ip_str = format (0, "%U", format_ip46_address, &mp->ip, mp->is_ip4);
857 clib_warning ("Accepted session from: %s:%d", ip_str,
858 clib_net_to_host_u16 (mp->port));
Dave Barach68b0fb02017-02-28 15:15:56 -0500859 utm->vpp_event_queue = (unix_shared_memory_queue_t *)
860 mp->vpp_event_queue_address;
861
862 /* Allocate local session and set it up */
863 pool_get (utm->sessions, session);
864 session_index = session - utm->sessions;
865
Florin Corase04c2992017-03-01 08:17:34 -0800866 rx_fifo = (svm_fifo_t *) mp->server_rx_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500867 rx_fifo->client_session_index = session_index;
Florin Corase04c2992017-03-01 08:17:34 -0800868 tx_fifo = (svm_fifo_t *) mp->server_tx_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500869 tx_fifo->client_session_index = session_index;
870
871 session->server_rx_fifo = rx_fifo;
872 session->server_tx_fifo = tx_fifo;
873
874 /* Add it to lookup table */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700875 hash_set (utm->session_index_by_vpp_handles, mp->handle, session_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500876
877 utm->state = STATE_READY;
878
879 /* Stats printing */
Florin Corase04c2992017-03-01 08:17:34 -0800880 if (pool_elts (utm->sessions) && (pool_elts (utm->sessions) % 20000) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500881 {
882 f64 now = clib_time_now (&utm->clib_time);
883 fformat (stdout, "%d active sessions in %.2f seconds, %.2f/sec...\n",
Florin Corase04c2992017-03-01 08:17:34 -0800884 pool_elts (utm->sessions), now - start_time,
885 (f64) pool_elts (utm->sessions) / (now - start_time));
Dave Barach68b0fb02017-02-28 15:15:56 -0500886 }
887
Florin Corase04c2992017-03-01 08:17:34 -0800888 /*
889 * Send accept reply to vpp
890 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500891 rmp = vl_msg_api_alloc (sizeof (*rmp));
892 memset (rmp, 0, sizeof (*rmp));
893 rmp->_vl_msg_id = ntohs (VL_API_ACCEPT_SESSION_REPLY);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700894 rmp->handle = mp->handle;
Florin Corase04c2992017-03-01 08:17:34 -0800895 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500896}
897
898void
Florin Corase04c2992017-03-01 08:17:34 -0800899server_handle_fifo_event_rx (uri_tcp_test_main_t * utm,
900 session_fifo_event_t * e)
Dave Barach68b0fb02017-02-28 15:15:56 -0500901{
Florin Corase04c2992017-03-01 08:17:34 -0800902 svm_fifo_t *rx_fifo, *tx_fifo;
903 int n_read;
Florin Corase04c2992017-03-01 08:17:34 -0800904 session_fifo_event_t evt;
905 unix_shared_memory_queue_t *q;
906 int rv, bytes;
907
908 rx_fifo = e->fifo;
909 tx_fifo = utm->sessions[rx_fifo->client_session_index].server_tx_fifo;
910
Florin Coras6792ec02017-03-13 03:49:51 -0700911 bytes = svm_fifo_max_dequeue (rx_fifo);
912 /* Allow enqueuing of a new event */
913 svm_fifo_unset_event (rx_fifo);
914
915 if (bytes == 0)
916 return;
917
918 /* Read the bytes */
Florin Corase04c2992017-03-01 08:17:34 -0800919 do
920 {
Florin Corasa5464812017-04-19 13:00:05 -0700921 n_read = svm_fifo_dequeue_nowait (rx_fifo, vec_len (utm->rx_buf),
Florin Corase04c2992017-03-01 08:17:34 -0800922 utm->rx_buf);
Florin Coras6792ec02017-03-13 03:49:51 -0700923 if (n_read > 0)
924 bytes -= n_read;
925
926 if (utm->drop_packets)
927 continue;
Florin Corase04c2992017-03-01 08:17:34 -0800928
929 /* Reflect if a non-drop session */
Florin Coras6792ec02017-03-13 03:49:51 -0700930 if (n_read > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800931 {
932 do
933 {
Florin Corasa5464812017-04-19 13:00:05 -0700934 rv = svm_fifo_enqueue_nowait (tx_fifo, n_read, utm->rx_buf);
Florin Corase04c2992017-03-01 08:17:34 -0800935 }
Florin Coras6792ec02017-03-13 03:49:51 -0700936 while (rv <= 0 && !utm->time_to_stop);
Florin Corase04c2992017-03-01 08:17:34 -0800937
Florin Coras6792ec02017-03-13 03:49:51 -0700938 /* If event wasn't set, add one */
939 if (svm_fifo_set_event (tx_fifo))
940 {
941 /* Fabricate TX event, send to vpp */
942 evt.fifo = tx_fifo;
Florin Corasa5464812017-04-19 13:00:05 -0700943 evt.event_type = FIFO_EVENT_APP_TX;
Florin Coras6792ec02017-03-13 03:49:51 -0700944 evt.event_id = e->event_id;
945
946 q = utm->vpp_event_queue;
947 unix_shared_memory_queue_add (q, (u8 *) & evt,
948 0 /* do wait for mutex */ );
949 }
Florin Corase04c2992017-03-01 08:17:34 -0800950 }
Florin Corase04c2992017-03-01 08:17:34 -0800951 }
Florin Corasd79b41e2017-03-04 05:37:52 -0800952 while ((n_read < 0 || bytes > 0) && !utm->time_to_stop);
Florin Corase04c2992017-03-01 08:17:34 -0800953}
954
955void
956server_handle_event_queue (uri_tcp_test_main_t * utm)
957{
958 session_fifo_event_t _e, *e = &_e;;
959
960 while (1)
961 {
962 unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
963 0 /* nowait */ );
964 switch (e->event_type)
965 {
Florin Corasa5464812017-04-19 13:00:05 -0700966 case FIFO_EVENT_APP_RX:
Florin Corase04c2992017-03-01 08:17:34 -0800967 server_handle_fifo_event_rx (utm, e);
968 break;
969
Florin Corasa5464812017-04-19 13:00:05 -0700970 case FIFO_EVENT_DISCONNECT:
Florin Corase04c2992017-03-01 08:17:34 -0800971 return;
972
973 default:
974 clib_warning ("unknown event type %d", e->event_type);
975 break;
976 }
977 if (PREDICT_FALSE (utm->time_to_stop == 1))
978 break;
979 if (PREDICT_FALSE (utm->time_to_print_stats == 1))
980 {
981 utm->time_to_print_stats = 0;
982 fformat (stdout, "%d connections\n", pool_elts (utm->sessions));
983 }
984 }
985}
986
987void
Florin Corasa5464812017-04-19 13:00:05 -0700988server_send_listen (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -0800989{
990 vl_api_bind_uri_t *bmp;
Florin Corase04c2992017-03-01 08:17:34 -0800991 bmp = vl_msg_api_alloc (sizeof (*bmp));
992 memset (bmp, 0, sizeof (*bmp));
993
994 bmp->_vl_msg_id = ntohs (VL_API_BIND_URI);
995 bmp->client_index = utm->my_client_index;
996 bmp->context = ntohl (0xfeedface);
Florin Corase04c2992017-03-01 08:17:34 -0800997 memcpy (bmp->uri, utm->uri, vec_len (utm->uri));
998 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
999}
1000
Florin Corasa5464812017-04-19 13:00:05 -07001001int
1002server_listen (uri_tcp_test_main_t * utm)
1003{
1004 server_send_listen (utm);
1005 if (wait_for_state_change (utm, STATE_READY))
1006 {
1007 clib_warning ("timeout waiting for STATE_READY");
1008 return -1;
1009 }
1010 return 0;
1011}
1012
Florin Corase04c2992017-03-01 08:17:34 -08001013void
Florin Corasa5464812017-04-19 13:00:05 -07001014server_send_unbind (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -08001015{
1016 vl_api_unbind_uri_t *ump;
1017
1018 ump = vl_msg_api_alloc (sizeof (*ump));
1019 memset (ump, 0, sizeof (*ump));
1020
1021 ump->_vl_msg_id = ntohs (VL_API_UNBIND_URI);
1022 ump->client_index = utm->my_client_index;
1023 memcpy (ump->uri, utm->uri, vec_len (utm->uri));
1024 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & ump);
1025}
1026
Florin Corasa5464812017-04-19 13:00:05 -07001027int
1028server_unbind (uri_tcp_test_main_t * utm)
1029{
1030 server_send_unbind (utm);
1031 if (wait_for_state_change (utm, STATE_START))
1032 {
1033 clib_warning ("timeout waiting for STATE_START");
1034 return -1;
1035 }
1036 return 0;
1037}
1038
Florin Corase04c2992017-03-01 08:17:34 -08001039void
1040server_test (uri_tcp_test_main_t * utm)
1041{
Florin Corasa5464812017-04-19 13:00:05 -07001042 if (application_attach (utm))
1043 return;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001044
Dave Barach68b0fb02017-02-28 15:15:56 -05001045 /* Bind to uri */
Florin Corasa5464812017-04-19 13:00:05 -07001046 if (server_listen (utm))
1047 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001048
1049 /* Enter handle event loop */
Florin Corase04c2992017-03-01 08:17:34 -08001050 server_handle_event_queue (utm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001051
1052 /* Cleanup */
Florin Corasa5464812017-04-19 13:00:05 -07001053 server_send_unbind (utm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001054
Florin Coras6cf30ad2017-04-04 23:08:23 -07001055 application_detach (utm);
1056
Dave Barach68b0fb02017-02-28 15:15:56 -05001057 fformat (stdout, "Test complete...\n");
1058}
1059
Florin Corase69f4952017-03-07 10:06:24 -08001060static void
1061vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
1062 mp)
1063{
Florin Coras6792ec02017-03-13 03:49:51 -07001064 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
1065
Florin Corase69f4952017-03-07 10:06:24 -08001066 clib_warning ("retval %d", ntohl (mp->retval));
Florin Coras6792ec02017-03-13 03:49:51 -07001067 utm->state = STATE_START;
Florin Corase69f4952017-03-07 10:06:24 -08001068}
1069
1070#define foreach_uri_msg \
1071_(BIND_URI_REPLY, bind_uri_reply) \
1072_(UNBIND_URI_REPLY, unbind_uri_reply) \
1073_(ACCEPT_SESSION, accept_session) \
1074_(CONNECT_URI_REPLY, connect_uri_reply) \
1075_(DISCONNECT_SESSION, disconnect_session) \
1076_(DISCONNECT_SESSION_REPLY, disconnect_session_reply) \
1077_(RESET_SESSION, reset_session) \
Florin Coras6cf30ad2017-04-04 23:08:23 -07001078_(APPLICATION_ATTACH_REPLY, application_attach_reply) \
1079_(APPLICATION_DETACH_REPLY, application_detach_reply) \
1080_(MAP_ANOTHER_SEGMENT, map_another_segment) \
Dave Barach68b0fb02017-02-28 15:15:56 -05001081
1082void
1083uri_api_hookup (uri_tcp_test_main_t * utm)
1084{
1085#define _(N,n) \
1086 vl_msg_api_set_handlers(VL_API_##N, #n, \
1087 vl_api_##n##_t_handler, \
1088 vl_noop_handler, \
1089 vl_api_##n##_t_endian, \
1090 vl_api_##n##_t_print, \
1091 sizeof(vl_api_##n##_t), 1);
1092 foreach_uri_msg;
1093#undef _
1094}
1095
1096int
1097main (int argc, char **argv)
1098{
1099 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
1100 unformat_input_t _argv, *a = &_argv;
1101 u8 *chroot_prefix;
Florin Corase69f4952017-03-07 10:06:24 -08001102 u8 *heap, *uri = 0;
1103 u8 *bind_uri = (u8 *) "tcp://0.0.0.0/1234";
1104 u8 *connect_uri = (u8 *) "tcp://6.0.1.2/1234";
Florin Coras6cf30ad2017-04-04 23:08:23 -07001105 u64 bytes_to_send = 64 << 10, mbytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001106 u32 tmp;
1107 mheap_t *h;
Florin Corase04c2992017-03-01 08:17:34 -08001108 session_t *session;
Dave Barach68b0fb02017-02-28 15:15:56 -05001109 int i;
Florin Corase04c2992017-03-01 08:17:34 -08001110 int i_am_master = 1, drop_packets = 0, test_return_packets = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001111
1112 clib_mem_init (0, 256 << 20);
1113
1114 heap = clib_mem_get_per_cpu_heap ();
1115 h = mheap_header (heap);
1116
1117 /* make the main heap thread-safe */
1118 h->flags |= MHEAP_FLAG_THREAD_SAFE;
1119
1120 vec_validate (utm->rx_buf, 65536);
1121
Florin Corase04c2992017-03-01 08:17:34 -08001122 utm->session_index_by_vpp_handles = hash_create (0, sizeof (uword));
Dave Barach68b0fb02017-02-28 15:15:56 -05001123
Florin Corase04c2992017-03-01 08:17:34 -08001124 utm->my_pid = getpid ();
1125 utm->configured_segment_size = 1 << 20;
Dave Barach68b0fb02017-02-28 15:15:56 -05001126
1127 clib_time_init (&utm->clib_time);
1128 init_error_string_table (utm);
Florin Corase04c2992017-03-01 08:17:34 -08001129 svm_fifo_segment_init (0x200000000ULL, 20);
Dave Barach68b0fb02017-02-28 15:15:56 -05001130 unformat_init_command_line (a, argv);
1131
1132 while (unformat_check_input (a) != UNFORMAT_END_OF_INPUT)
1133 {
1134 if (unformat (a, "chroot prefix %s", &chroot_prefix))
Florin Corase04c2992017-03-01 08:17:34 -08001135 {
1136 vl_set_memory_root_path ((char *) chroot_prefix);
1137 }
Florin Corase69f4952017-03-07 10:06:24 -08001138 else if (unformat (a, "uri %s", &uri))
Florin Corase04c2992017-03-01 08:17:34 -08001139 ;
Dave Barach68b0fb02017-02-28 15:15:56 -05001140 else if (unformat (a, "segment-size %dM", &tmp))
Florin Corase04c2992017-03-01 08:17:34 -08001141 utm->configured_segment_size = tmp << 20;
Dave Barach68b0fb02017-02-28 15:15:56 -05001142 else if (unformat (a, "segment-size %dG", &tmp))
Florin Corase04c2992017-03-01 08:17:34 -08001143 utm->configured_segment_size = tmp << 30;
Dave Barach68b0fb02017-02-28 15:15:56 -05001144 else if (unformat (a, "master"))
Florin Corase04c2992017-03-01 08:17:34 -08001145 i_am_master = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001146 else if (unformat (a, "slave"))
Florin Corase04c2992017-03-01 08:17:34 -08001147 i_am_master = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001148 else if (unformat (a, "drop"))
Florin Corase04c2992017-03-01 08:17:34 -08001149 drop_packets = 1;
1150 else if (unformat (a, "test"))
1151 test_return_packets = 1;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001152 else if (unformat (a, "mbytes %lld", &mbytes))
Florin Coras6792ec02017-03-13 03:49:51 -07001153 {
1154 bytes_to_send = mbytes << 20;
1155 }
Florin Coras6cf30ad2017-04-04 23:08:23 -07001156 else if (unformat (a, "gbytes %lld", &mbytes))
1157 {
1158 bytes_to_send = mbytes << 30;
1159 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001160 else
Florin Corase04c2992017-03-01 08:17:34 -08001161 {
1162 fformat (stderr, "%s: usage [master|slave]\n");
1163 exit (1);
1164 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001165 }
1166
Florin Corase69f4952017-03-07 10:06:24 -08001167 if (uri)
1168 {
1169 utm->uri = format (0, "%s%c", uri, 0);
1170 utm->connect_uri = format (0, "%s%c", uri, 0);
1171 }
1172 else
1173 {
1174 utm->uri = format (0, "%s%c", bind_uri, 0);
1175 utm->connect_uri = format (0, "%s%c", connect_uri, 0);
1176 }
1177
Dave Barach68b0fb02017-02-28 15:15:56 -05001178 utm->i_am_master = i_am_master;
1179 utm->segment_main = &svm_fifo_segment_main;
1180 utm->drop_packets = drop_packets;
Florin Corase04c2992017-03-01 08:17:34 -08001181 utm->test_return_packets = test_return_packets;
Florin Coras6792ec02017-03-13 03:49:51 -07001182 utm->bytes_to_send = bytes_to_send;
Dave Barach68b0fb02017-02-28 15:15:56 -05001183
Florin Corase04c2992017-03-01 08:17:34 -08001184 setup_signal_handlers ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001185 uri_api_hookup (utm);
1186
Florin Corase04c2992017-03-01 08:17:34 -08001187 if (connect_to_vpp (i_am_master ? "uri_tcp_server" : "uri_tcp_client") < 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001188 {
1189 svm_region_exit ();
1190 fformat (stderr, "Couldn't connect to vpe, exiting...\n");
1191 exit (1);
1192 }
1193
1194 if (i_am_master == 0)
1195 {
Florin Corase04c2992017-03-01 08:17:34 -08001196 client_test (utm);
Florin Corase69f4952017-03-07 10:06:24 -08001197 vl_client_disconnect_from_vlib ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001198 exit (0);
1199 }
1200
1201 /* $$$$ hack preallocation */
1202 for (i = 0; i < 200000; i++)
1203 {
1204 pool_get (utm->sessions, session);
1205 memset (session, 0, sizeof (*session));
1206 }
1207 for (i = 0; i < 200000; i++)
1208 pool_put_index (utm->sessions, i);
1209
Florin Corase04c2992017-03-01 08:17:34 -08001210 server_test (utm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001211
1212 vl_client_disconnect_from_vlib ();
1213 exit (0);
1214}
Florin Corase04c2992017-03-01 08:17:34 -08001215
1216/*
1217 * fd.io coding-style-patch-verification: ON
1218 *
1219 * Local Variables:
1220 * eval: (c-set-style "gnu")
1221 * End:
1222 */