blob: b15fd6ced657f26318420d870cc3b884c3f87b1b [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 =
265 (unix_shared_memory_queue_t *) mp->app_event_queue_address;
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
330 a->segment_name = (char *) mp->segment_name;
331 a->segment_size = mp->segment_size;
332 /* Attach to the segment vpp created */
333 rv = svm_fifo_segment_attach (a);
334 if (rv)
335 {
336 clib_warning ("svm_fifo_segment_attach ('%s') failed",
Florin Corase04c2992017-03-01 08:17:34 -0800337 mp->segment_name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500338 return;
339 }
340 clib_warning ("Mapped new segment '%s' size %d", mp->segment_name,
Florin Corase04c2992017-03-01 08:17:34 -0800341 mp->segment_size);
Dave Barach68b0fb02017-02-28 15:15:56 -0500342}
343
344static void
345vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
346{
347 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Florin Corase04c2992017-03-01 08:17:34 -0800348 session_t *session;
349 vl_api_disconnect_session_reply_t *rmp;
350 uword *p;
Dave Barach68b0fb02017-02-28 15:15:56 -0500351 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500352
Florin Coras6cf30ad2017-04-04 23:08:23 -0700353 p = hash_get (utm->session_index_by_vpp_handles, mp->handle);
Florin Corase04c2992017-03-01 08:17:34 -0800354
355 if (p)
356 {
357 session = pool_elt_at_index (utm->sessions, p[0]);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700358 hash_unset (utm->session_index_by_vpp_handles, mp->handle);
Florin Corase04c2992017-03-01 08:17:34 -0800359 pool_put (utm->sessions, session);
360 }
361 else
362 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700363 clib_warning ("couldn't find session key %llx", mp->handle);
Florin Corase04c2992017-03-01 08:17:34 -0800364 rv = -11;
365 }
366
367 utm->time_to_stop = 1;
368
369 rmp = vl_msg_api_alloc (sizeof (*rmp));
370 memset (rmp, 0, sizeof (*rmp));
371
372 rmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION_REPLY);
373 rmp->retval = rv;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700374 rmp->handle = mp->handle;
Florin Corase04c2992017-03-01 08:17:34 -0800375 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
376}
377
378static void
379vl_api_reset_session_t_handler (vl_api_reset_session_t * mp)
380{
381 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
382 session_t *session;
383 vl_api_reset_session_reply_t *rmp;
384 uword *p;
385 int rv = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800386
Florin Coras6cf30ad2017-04-04 23:08:23 -0700387 p = hash_get (utm->session_index_by_vpp_handles, mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500388
389 if (p)
390 {
391 session = pool_elt_at_index (utm->sessions, p[0]);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700392 hash_unset (utm->session_index_by_vpp_handles, mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500393 pool_put (utm->sessions, session);
Florin Corasd79b41e2017-03-04 05:37:52 -0800394 utm->time_to_stop = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500395 }
396 else
397 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700398 clib_warning ("couldn't find session key %llx", mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500399 rv = -11;
400 }
401
402 rmp = vl_msg_api_alloc (sizeof (*rmp));
403 memset (rmp, 0, sizeof (*rmp));
Florin Corasd79b41e2017-03-04 05:37:52 -0800404 rmp->_vl_msg_id = ntohs (VL_API_RESET_SESSION_REPLY);
Dave Barach68b0fb02017-02-28 15:15:56 -0500405 rmp->retval = rv;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700406 rmp->handle = mp->handle;
Florin Corase04c2992017-03-01 08:17:34 -0800407 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500408}
409
410void
Florin Corase04c2992017-03-01 08:17:34 -0800411client_handle_fifo_event_rx (uri_tcp_test_main_t * utm,
412 session_fifo_event_t * e)
Dave Barach68b0fb02017-02-28 15:15:56 -0500413{
Florin Corase04c2992017-03-01 08:17:34 -0800414 svm_fifo_t *rx_fifo;
415 int n_read, bytes, i;
Dave Barach68b0fb02017-02-28 15:15:56 -0500416
417 rx_fifo = e->fifo;
418
Florin Coras6792ec02017-03-13 03:49:51 -0700419 bytes = svm_fifo_max_dequeue (rx_fifo);
420 /* Allow enqueuing of new event */
421 svm_fifo_unset_event (rx_fifo);
422
423 /* Read the bytes */
Dave Barach68b0fb02017-02-28 15:15:56 -0500424 do
425 {
Florin Corasa5464812017-04-19 13:00:05 -0700426 n_read = svm_fifo_dequeue_nowait (rx_fifo,
Florin Coras6792ec02017-03-13 03:49:51 -0700427 clib_min (vec_len (utm->rx_buf),
428 bytes), utm->rx_buf);
Dave Barach68b0fb02017-02-28 15:15:56 -0500429 if (n_read > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800430 {
431 bytes -= n_read;
432 for (i = 0; i < n_read; i++)
433 {
434 if (utm->rx_buf[i] != ((utm->client_bytes_received + i) & 0xff))
435 {
436 clib_warning ("error at byte %lld, 0x%x not 0x%x",
437 utm->client_bytes_received + i,
438 utm->rx_buf[i],
439 ((utm->client_bytes_received + i) & 0xff));
440 }
441 }
442 utm->client_bytes_received += n_read;
443 }
Florin Coras6792ec02017-03-13 03:49:51 -0700444 else
445 {
446 if (n_read == -2)
447 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700448// clib_warning ("weird!");
Florin Coras6792ec02017-03-13 03:49:51 -0700449 break;
450 }
451 }
Florin Corase04c2992017-03-01 08:17:34 -0800452
Dave Barach68b0fb02017-02-28 15:15:56 -0500453 }
Florin Coras6792ec02017-03-13 03:49:51 -0700454 while (bytes > 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500455}
456
457void
Florin Corase04c2992017-03-01 08:17:34 -0800458client_handle_event_queue (uri_tcp_test_main_t * utm)
Dave Barach68b0fb02017-02-28 15:15:56 -0500459{
460 session_fifo_event_t _e, *e = &_e;;
461
Florin Corase04c2992017-03-01 08:17:34 -0800462 unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
463 0 /* nowait */ );
Dave Barach68b0fb02017-02-28 15:15:56 -0500464 switch (e->event_type)
465 {
Florin Corasa5464812017-04-19 13:00:05 -0700466 case FIFO_EVENT_APP_RX:
Florin Corase04c2992017-03-01 08:17:34 -0800467 client_handle_fifo_event_rx (utm, e);
Dave Barach68b0fb02017-02-28 15:15:56 -0500468 break;
469
Florin Corasa5464812017-04-19 13:00:05 -0700470 case FIFO_EVENT_DISCONNECT:
Dave Barach68b0fb02017-02-28 15:15:56 -0500471 return;
472
473 default:
Florin Corase04c2992017-03-01 08:17:34 -0800474 clib_warning ("unknown event type %d", e->event_type);
Dave Barach68b0fb02017-02-28 15:15:56 -0500475 break;
476 }
477}
478
Florin Corase04c2992017-03-01 08:17:34 -0800479static void *
480client_rx_thread_fn (void *arg)
Dave Barach68b0fb02017-02-28 15:15:56 -0500481{
Florin Corase04c2992017-03-01 08:17:34 -0800482 session_fifo_event_t _e, *e = &_e;
483 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Dave Barach68b0fb02017-02-28 15:15:56 -0500484
Florin Corase04c2992017-03-01 08:17:34 -0800485 utm->client_bytes_received = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500486 while (1)
487 {
Florin Corase04c2992017-03-01 08:17:34 -0800488 unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
489 0 /* nowait */ );
Dave Barach68b0fb02017-02-28 15:15:56 -0500490 switch (e->event_type)
Florin Corase04c2992017-03-01 08:17:34 -0800491 {
Florin Corasa5464812017-04-19 13:00:05 -0700492 case FIFO_EVENT_APP_RX:
Florin Corase04c2992017-03-01 08:17:34 -0800493 client_handle_fifo_event_rx (utm, e);
494 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500495
Florin Corasa5464812017-04-19 13:00:05 -0700496 case FIFO_EVENT_DISCONNECT:
Florin Corase04c2992017-03-01 08:17:34 -0800497 return 0;
498 default:
499 clib_warning ("unknown event type %d", e->event_type);
500 break;
501 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500502
Florin Corase04c2992017-03-01 08:17:34 -0800503 if (PREDICT_FALSE (utm->time_to_stop == 1))
504 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500505 }
Florin Corase04c2992017-03-01 08:17:34 -0800506 pthread_exit (0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500507}
508
Dave Barach68b0fb02017-02-28 15:15:56 -0500509
510static void
511vl_api_connect_uri_reply_t_handler (vl_api_connect_uri_reply_t * mp)
512{
513 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Dave Barach68b0fb02017-02-28 15:15:56 -0500514 session_t *session;
515 u32 session_index;
516 svm_fifo_t *rx_fifo, *tx_fifo;
517 int rv;
518
519 if (mp->retval)
520 {
Florin Corasa5464812017-04-19 13:00:05 -0700521 clib_warning ("connection failed with code: %U", format_api_error,
522 clib_net_to_host_u32 (mp->retval));
Dave Barach68b0fb02017-02-28 15:15:56 -0500523 utm->state = STATE_FAILED;
524 return;
525 }
Florin Corase04c2992017-03-01 08:17:34 -0800526
Dave Barach68b0fb02017-02-28 15:15:56 -0500527 utm->vpp_event_queue = (unix_shared_memory_queue_t *)
528 mp->vpp_event_queue_address;
529
530 /*
531 * Setup session
532 */
533
534 pool_get (utm->sessions, session);
535 session_index = session - utm->sessions;
536
Florin Corase04c2992017-03-01 08:17:34 -0800537 rx_fifo = (svm_fifo_t *) mp->server_rx_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500538 rx_fifo->client_session_index = session_index;
Florin Corase04c2992017-03-01 08:17:34 -0800539 tx_fifo = (svm_fifo_t *) mp->server_tx_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500540 tx_fifo->client_session_index = session_index;
541
542 session->server_rx_fifo = rx_fifo;
543 session->server_tx_fifo = tx_fifo;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700544 session->vpp_session_handle = mp->handle;
Dave Barach68b0fb02017-02-28 15:15:56 -0500545
546 /* Save handle */
547 utm->connected_session_index = session_index;
Florin Corase04c2992017-03-01 08:17:34 -0800548 utm->state = STATE_READY;
549
550 /* Add it to lookup table */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700551 hash_set (utm->session_index_by_vpp_handles, mp->handle, session_index);
Florin Corase04c2992017-03-01 08:17:34 -0800552
553 /* Start RX thread */
554 rv = pthread_create (&utm->client_rx_thread_handle,
555 NULL /*attr */ , client_rx_thread_fn, 0);
556 if (rv)
557 {
558 clib_warning ("pthread_create returned %d", rv);
559 rv = VNET_API_ERROR_SYSCALL_ERROR_1;
560 }
561}
562
Florin Coras6792ec02017-03-13 03:49:51 -0700563static void
564send_test_chunk (uri_tcp_test_main_t * utm, svm_fifo_t * tx_fifo, int mypid,
565 u32 bytes)
Florin Corase04c2992017-03-01 08:17:34 -0800566{
567 u8 *test_data = utm->connect_test_data;
568 u64 bytes_sent = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700569 int test_buf_offset = 0;
570 u32 bytes_to_snd;
571 u32 queue_max_chunk = 64 << 10, actual_write;
Florin Corase04c2992017-03-01 08:17:34 -0800572 session_fifo_event_t evt;
573 static int serial_number = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700574 int rv;
Florin Corase04c2992017-03-01 08:17:34 -0800575
Florin Coras6792ec02017-03-13 03:49:51 -0700576 bytes_to_snd = (bytes == 0) ? vec_len (test_data) : bytes;
577 if (bytes_to_snd > vec_len (test_data))
578 bytes_to_snd = vec_len (test_data);
Florin Corase04c2992017-03-01 08:17:34 -0800579
Florin Coras6792ec02017-03-13 03:49:51 -0700580 while (bytes_to_snd > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800581 {
Florin Coras6792ec02017-03-13 03:49:51 -0700582 actual_write =
583 bytes_to_snd > queue_max_chunk ? queue_max_chunk : bytes_to_snd;
Florin Corasa5464812017-04-19 13:00:05 -0700584 rv = svm_fifo_enqueue_nowait (tx_fifo, actual_write,
Florin Coras6792ec02017-03-13 03:49:51 -0700585 test_data + test_buf_offset);
586
587 if (rv > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800588 {
Florin Coras6792ec02017-03-13 03:49:51 -0700589 bytes_to_snd -= rv;
590 test_buf_offset += rv;
591 bytes_sent += rv;
Florin Corase04c2992017-03-01 08:17:34 -0800592
Florin Coras6792ec02017-03-13 03:49:51 -0700593 if (svm_fifo_set_event (tx_fifo))
Florin Corase04c2992017-03-01 08:17:34 -0800594 {
Florin Corase04c2992017-03-01 08:17:34 -0800595 /* Fabricate TX event, send to vpp */
596 evt.fifo = tx_fifo;
Florin Corasa5464812017-04-19 13:00:05 -0700597 evt.event_type = FIFO_EVENT_APP_TX;
Florin Corase04c2992017-03-01 08:17:34 -0800598 evt.event_id = serial_number++;
599
600 unix_shared_memory_queue_add (utm->vpp_event_queue,
601 (u8 *) & evt,
602 0 /* do wait for mutex */ );
603 }
604 }
605 }
Florin Coras6792ec02017-03-13 03:49:51 -0700606}
607
608void
609client_send_data (uri_tcp_test_main_t * utm)
610{
611 u8 *test_data = utm->connect_test_data;
612 int mypid = getpid ();
613 session_t *session;
614 svm_fifo_t *tx_fifo;
615 u32 n_iterations, leftover;
616 int i;
617
618 session = pool_elt_at_index (utm->sessions, utm->connected_session_index);
619 tx_fifo = session->server_tx_fifo;
620
Florin Coras82b13a82017-04-25 11:58:06 -0700621 ASSERT (vec_len (test_data) > 0);
622
Florin Coras6792ec02017-03-13 03:49:51 -0700623 vec_validate (utm->rx_buf, vec_len (test_data) - 1);
624 n_iterations = utm->bytes_to_send / vec_len (test_data);
625
626 for (i = 0; i < n_iterations; i++)
627 {
628 send_test_chunk (utm, tx_fifo, mypid, 0);
629 }
630
631 leftover = utm->bytes_to_send % vec_len (test_data);
632 if (leftover)
633 send_test_chunk (utm, tx_fifo, mypid, leftover);
Florin Corase04c2992017-03-01 08:17:34 -0800634
635 if (utm->test_return_packets)
636 {
637 f64 timeout = clib_time_now (&utm->clib_time) + 2;
638
639 /* Wait for the outstanding packets */
Florin Coras6792ec02017-03-13 03:49:51 -0700640 while (utm->client_bytes_received <
641 vec_len (test_data) * n_iterations + leftover)
Florin Corase04c2992017-03-01 08:17:34 -0800642 {
643 if (clib_time_now (&utm->clib_time) > timeout)
644 {
645 clib_warning ("timed out waiting for the missing packets");
646 break;
647 }
648 }
Florin Corase04c2992017-03-01 08:17:34 -0800649 }
Florin Coras6792ec02017-03-13 03:49:51 -0700650 utm->time_to_stop = 1;
Florin Corase04c2992017-03-01 08:17:34 -0800651}
652
653void
Florin Corasa5464812017-04-19 13:00:05 -0700654client_send_connect (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -0800655{
656 vl_api_connect_uri_t *cmp;
657 cmp = vl_msg_api_alloc (sizeof (*cmp));
658 memset (cmp, 0, sizeof (*cmp));
659
660 cmp->_vl_msg_id = ntohs (VL_API_CONNECT_URI);
661 cmp->client_index = utm->my_client_index;
662 cmp->context = ntohl (0xfeedface);
663 memcpy (cmp->uri, utm->connect_uri, vec_len (utm->connect_uri));
664 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & cmp);
665}
666
Florin Corasa5464812017-04-19 13:00:05 -0700667int
668client_connect (uri_tcp_test_main_t * utm)
669{
670 client_send_connect (utm);
671 if (wait_for_state_change (utm, STATE_READY))
672 {
673 clib_warning ("Connect failed");
674 return -1;
675 }
676 return 0;
677}
678
Florin Corase04c2992017-03-01 08:17:34 -0800679void
Florin Corasa5464812017-04-19 13:00:05 -0700680client_send_disconnect (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -0800681{
682 session_t *connected_session;
683 vl_api_disconnect_session_t *dmp;
684 connected_session = pool_elt_at_index (utm->sessions,
685 utm->connected_session_index);
686 dmp = vl_msg_api_alloc (sizeof (*dmp));
687 memset (dmp, 0, sizeof (*dmp));
688 dmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION);
689 dmp->client_index = utm->my_client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700690 dmp->handle = connected_session->vpp_session_handle;
Florin Corase04c2992017-03-01 08:17:34 -0800691 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & dmp);
692}
693
Florin Corasa5464812017-04-19 13:00:05 -0700694int
695client_disconnect (uri_tcp_test_main_t * utm)
696{
697 client_send_disconnect (utm);
698 if (wait_for_state_change (utm, STATE_START))
699 {
700 clib_warning ("Disconnect failed");
701 return -1;
702 }
703 return 0;
704}
705
Florin Corase04c2992017-03-01 08:17:34 -0800706static void
707client_test (uri_tcp_test_main_t * utm)
708{
709 int i;
710
Florin Corasa5464812017-04-19 13:00:05 -0700711 if (application_attach (utm))
712 return;
Florin Corase04c2992017-03-01 08:17:34 -0800713
Florin Corasa5464812017-04-19 13:00:05 -0700714 if (client_connect (utm))
Florin Corase04c2992017-03-01 08:17:34 -0800715 {
Florin Corasa5464812017-04-19 13:00:05 -0700716 application_detach (utm);
Florin Corase04c2992017-03-01 08:17:34 -0800717 return;
718 }
719
720 /* Init test data */
721 vec_validate (utm->connect_test_data, 64 * 1024 - 1);
722 for (i = 0; i < vec_len (utm->connect_test_data); i++)
723 utm->connect_test_data[i] = i & 0xff;
724
725 /* Start send */
726 client_send_data (utm);
727
728 /* Disconnect */
729 client_disconnect (utm);
Florin Coras6792ec02017-03-13 03:49:51 -0700730
Florin Coras6cf30ad2017-04-04 23:08:23 -0700731 application_detach (utm);
Florin Corase04c2992017-03-01 08:17:34 -0800732}
733
734static void
735vl_api_bind_uri_reply_t_handler (vl_api_bind_uri_reply_t * mp)
736{
737 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
Florin Corase04c2992017-03-01 08:17:34 -0800738
739 if (mp->retval)
740 {
flyingeagle23a07779f2017-04-26 20:22:04 +0800741 clib_warning ("bind failed: %U", format_api_error,
Florin Corasa5464812017-04-19 13:00:05 -0700742 clib_net_to_host_u32 (mp->retval));
Florin Corase04c2992017-03-01 08:17:34 -0800743 utm->state = STATE_FAILED;
744 return;
745 }
746
Dave Barach68b0fb02017-02-28 15:15:56 -0500747 utm->state = STATE_READY;
748}
749
Dave Barach68b0fb02017-02-28 15:15:56 -0500750static void
Florin Corase04c2992017-03-01 08:17:34 -0800751vl_api_unbind_uri_reply_t_handler (vl_api_unbind_uri_reply_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500752{
753 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
754
755 if (mp->retval != 0)
Florin Corase04c2992017-03-01 08:17:34 -0800756 clib_warning ("returned %d", ntohl (mp->retval));
Dave Barach68b0fb02017-02-28 15:15:56 -0500757
758 utm->state = STATE_START;
759}
760
Florin Coras6cf30ad2017-04-04 23:08:23 -0700761u8 *
762format_ip4_address (u8 * s, va_list * args)
763{
764 u8 *a = va_arg (*args, u8 *);
765 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
766}
767
768u8 *
769format_ip6_address (u8 * s, va_list * args)
770{
771 ip6_address_t *a = va_arg (*args, ip6_address_t *);
772 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
773
774 i_max_n_zero = ARRAY_LEN (a->as_u16);
775 max_n_zeros = 0;
776 i_first_zero = i_max_n_zero;
777 n_zeros = 0;
778 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
779 {
780 u32 is_zero = a->as_u16[i] == 0;
781 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
782 {
783 i_first_zero = i;
784 n_zeros = 0;
785 }
786 n_zeros += is_zero;
787 if ((!is_zero && n_zeros > max_n_zeros)
788 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
789 {
790 i_max_n_zero = i_first_zero;
791 max_n_zeros = n_zeros;
792 i_first_zero = ARRAY_LEN (a->as_u16);
793 n_zeros = 0;
794 }
795 }
796
797 last_double_colon = 0;
798 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
799 {
800 if (i == i_max_n_zero && max_n_zeros > 1)
801 {
802 s = format (s, "::");
803 i += max_n_zeros - 1;
804 last_double_colon = 1;
805 }
806 else
807 {
808 s = format (s, "%s%x",
809 (last_double_colon || i == 0) ? "" : ":",
810 clib_net_to_host_u16 (a->as_u16[i]));
811 last_double_colon = 0;
812 }
813 }
814
815 return s;
816}
817
818/* Format an IP46 address. */
819u8 *
820format_ip46_address (u8 * s, va_list * args)
821{
822 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
823 ip46_type_t type = va_arg (*args, ip46_type_t);
824 int is_ip4 = 1;
825
826 switch (type)
827 {
828 case IP46_TYPE_ANY:
829 is_ip4 = ip46_address_is_ip4 (ip46);
830 break;
831 case IP46_TYPE_IP4:
832 is_ip4 = 1;
833 break;
834 case IP46_TYPE_IP6:
835 is_ip4 = 0;
836 break;
837 }
838
839 return is_ip4 ?
840 format (s, "%U", format_ip4_address, &ip46->ip4) :
841 format (s, "%U", format_ip6_address, &ip46->ip6);
842}
843
Dave Barach68b0fb02017-02-28 15:15:56 -0500844static void
845vl_api_accept_session_t_handler (vl_api_accept_session_t * mp)
846{
847 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
848 vl_api_accept_session_reply_t *rmp;
Florin Corase04c2992017-03-01 08:17:34 -0800849 svm_fifo_t *rx_fifo, *tx_fifo;
850 session_t *session;
Dave Barach68b0fb02017-02-28 15:15:56 -0500851 static f64 start_time;
Dave Barach68b0fb02017-02-28 15:15:56 -0500852 u32 session_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700853 u8 *ip_str;
Dave Barach68b0fb02017-02-28 15:15:56 -0500854
855 if (start_time == 0.0)
Florin Corase04c2992017-03-01 08:17:34 -0800856 start_time = clib_time_now (&utm->clib_time);
Dave Barach68b0fb02017-02-28 15:15:56 -0500857
Florin Coras6cf30ad2017-04-04 23:08:23 -0700858 ip_str = format (0, "%U", format_ip46_address, &mp->ip, mp->is_ip4);
859 clib_warning ("Accepted session from: %s:%d", ip_str,
860 clib_net_to_host_u16 (mp->port));
Dave Barach68b0fb02017-02-28 15:15:56 -0500861 utm->vpp_event_queue = (unix_shared_memory_queue_t *)
862 mp->vpp_event_queue_address;
863
864 /* Allocate local session and set it up */
865 pool_get (utm->sessions, session);
866 session_index = session - utm->sessions;
867
Florin Corase04c2992017-03-01 08:17:34 -0800868 rx_fifo = (svm_fifo_t *) mp->server_rx_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500869 rx_fifo->client_session_index = session_index;
Florin Corase04c2992017-03-01 08:17:34 -0800870 tx_fifo = (svm_fifo_t *) mp->server_tx_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500871 tx_fifo->client_session_index = session_index;
872
873 session->server_rx_fifo = rx_fifo;
874 session->server_tx_fifo = tx_fifo;
875
876 /* Add it to lookup table */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700877 hash_set (utm->session_index_by_vpp_handles, mp->handle, session_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500878
879 utm->state = STATE_READY;
880
881 /* Stats printing */
Florin Corase04c2992017-03-01 08:17:34 -0800882 if (pool_elts (utm->sessions) && (pool_elts (utm->sessions) % 20000) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500883 {
884 f64 now = clib_time_now (&utm->clib_time);
885 fformat (stdout, "%d active sessions in %.2f seconds, %.2f/sec...\n",
Florin Corase04c2992017-03-01 08:17:34 -0800886 pool_elts (utm->sessions), now - start_time,
887 (f64) pool_elts (utm->sessions) / (now - start_time));
Dave Barach68b0fb02017-02-28 15:15:56 -0500888 }
889
Florin Corase04c2992017-03-01 08:17:34 -0800890 /*
891 * Send accept reply to vpp
892 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500893 rmp = vl_msg_api_alloc (sizeof (*rmp));
894 memset (rmp, 0, sizeof (*rmp));
895 rmp->_vl_msg_id = ntohs (VL_API_ACCEPT_SESSION_REPLY);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700896 rmp->handle = mp->handle;
Florin Corase04c2992017-03-01 08:17:34 -0800897 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500898}
899
900void
Florin Corase04c2992017-03-01 08:17:34 -0800901server_handle_fifo_event_rx (uri_tcp_test_main_t * utm,
902 session_fifo_event_t * e)
Dave Barach68b0fb02017-02-28 15:15:56 -0500903{
Florin Corase04c2992017-03-01 08:17:34 -0800904 svm_fifo_t *rx_fifo, *tx_fifo;
905 int n_read;
Florin Corase04c2992017-03-01 08:17:34 -0800906 session_fifo_event_t evt;
907 unix_shared_memory_queue_t *q;
908 int rv, bytes;
909
910 rx_fifo = e->fifo;
911 tx_fifo = utm->sessions[rx_fifo->client_session_index].server_tx_fifo;
912
Florin Coras6792ec02017-03-13 03:49:51 -0700913 bytes = svm_fifo_max_dequeue (rx_fifo);
914 /* Allow enqueuing of a new event */
915 svm_fifo_unset_event (rx_fifo);
916
917 if (bytes == 0)
918 return;
919
920 /* Read the bytes */
Florin Corase04c2992017-03-01 08:17:34 -0800921 do
922 {
Florin Corasa5464812017-04-19 13:00:05 -0700923 n_read = svm_fifo_dequeue_nowait (rx_fifo, vec_len (utm->rx_buf),
Florin Corase04c2992017-03-01 08:17:34 -0800924 utm->rx_buf);
Florin Coras6792ec02017-03-13 03:49:51 -0700925 if (n_read > 0)
926 bytes -= n_read;
927
928 if (utm->drop_packets)
929 continue;
Florin Corase04c2992017-03-01 08:17:34 -0800930
931 /* Reflect if a non-drop session */
Florin Coras6792ec02017-03-13 03:49:51 -0700932 if (n_read > 0)
Florin Corase04c2992017-03-01 08:17:34 -0800933 {
934 do
935 {
Florin Corasa5464812017-04-19 13:00:05 -0700936 rv = svm_fifo_enqueue_nowait (tx_fifo, n_read, utm->rx_buf);
Florin Corase04c2992017-03-01 08:17:34 -0800937 }
Florin Coras6792ec02017-03-13 03:49:51 -0700938 while (rv <= 0 && !utm->time_to_stop);
Florin Corase04c2992017-03-01 08:17:34 -0800939
Florin Coras6792ec02017-03-13 03:49:51 -0700940 /* If event wasn't set, add one */
941 if (svm_fifo_set_event (tx_fifo))
942 {
943 /* Fabricate TX event, send to vpp */
944 evt.fifo = tx_fifo;
Florin Corasa5464812017-04-19 13:00:05 -0700945 evt.event_type = FIFO_EVENT_APP_TX;
Florin Coras6792ec02017-03-13 03:49:51 -0700946 evt.event_id = e->event_id;
947
948 q = utm->vpp_event_queue;
949 unix_shared_memory_queue_add (q, (u8 *) & evt,
950 0 /* do wait for mutex */ );
951 }
Florin Corase04c2992017-03-01 08:17:34 -0800952 }
Florin Corase04c2992017-03-01 08:17:34 -0800953 }
Florin Corasd79b41e2017-03-04 05:37:52 -0800954 while ((n_read < 0 || bytes > 0) && !utm->time_to_stop);
Florin Corase04c2992017-03-01 08:17:34 -0800955}
956
957void
958server_handle_event_queue (uri_tcp_test_main_t * utm)
959{
960 session_fifo_event_t _e, *e = &_e;;
961
962 while (1)
963 {
964 unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
965 0 /* nowait */ );
966 switch (e->event_type)
967 {
Florin Corasa5464812017-04-19 13:00:05 -0700968 case FIFO_EVENT_APP_RX:
Florin Corase04c2992017-03-01 08:17:34 -0800969 server_handle_fifo_event_rx (utm, e);
970 break;
971
Florin Corasa5464812017-04-19 13:00:05 -0700972 case FIFO_EVENT_DISCONNECT:
Florin Corase04c2992017-03-01 08:17:34 -0800973 return;
974
975 default:
976 clib_warning ("unknown event type %d", e->event_type);
977 break;
978 }
979 if (PREDICT_FALSE (utm->time_to_stop == 1))
980 break;
981 if (PREDICT_FALSE (utm->time_to_print_stats == 1))
982 {
983 utm->time_to_print_stats = 0;
984 fformat (stdout, "%d connections\n", pool_elts (utm->sessions));
985 }
986 }
987}
988
989void
Florin Corasa5464812017-04-19 13:00:05 -0700990server_send_listen (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -0800991{
992 vl_api_bind_uri_t *bmp;
Florin Corase04c2992017-03-01 08:17:34 -0800993 bmp = vl_msg_api_alloc (sizeof (*bmp));
994 memset (bmp, 0, sizeof (*bmp));
995
996 bmp->_vl_msg_id = ntohs (VL_API_BIND_URI);
997 bmp->client_index = utm->my_client_index;
998 bmp->context = ntohl (0xfeedface);
Florin Corase04c2992017-03-01 08:17:34 -0800999 memcpy (bmp->uri, utm->uri, vec_len (utm->uri));
1000 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
1001}
1002
Florin Corasa5464812017-04-19 13:00:05 -07001003int
1004server_listen (uri_tcp_test_main_t * utm)
1005{
1006 server_send_listen (utm);
1007 if (wait_for_state_change (utm, STATE_READY))
1008 {
1009 clib_warning ("timeout waiting for STATE_READY");
1010 return -1;
1011 }
1012 return 0;
1013}
1014
Florin Corase04c2992017-03-01 08:17:34 -08001015void
Florin Corasa5464812017-04-19 13:00:05 -07001016server_send_unbind (uri_tcp_test_main_t * utm)
Florin Corase04c2992017-03-01 08:17:34 -08001017{
1018 vl_api_unbind_uri_t *ump;
1019
1020 ump = vl_msg_api_alloc (sizeof (*ump));
1021 memset (ump, 0, sizeof (*ump));
1022
1023 ump->_vl_msg_id = ntohs (VL_API_UNBIND_URI);
1024 ump->client_index = utm->my_client_index;
1025 memcpy (ump->uri, utm->uri, vec_len (utm->uri));
1026 vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & ump);
1027}
1028
Florin Corasa5464812017-04-19 13:00:05 -07001029int
1030server_unbind (uri_tcp_test_main_t * utm)
1031{
1032 server_send_unbind (utm);
1033 if (wait_for_state_change (utm, STATE_START))
1034 {
1035 clib_warning ("timeout waiting for STATE_START");
1036 return -1;
1037 }
1038 return 0;
1039}
1040
Florin Corase04c2992017-03-01 08:17:34 -08001041void
1042server_test (uri_tcp_test_main_t * utm)
1043{
Florin Corasa5464812017-04-19 13:00:05 -07001044 if (application_attach (utm))
1045 return;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001046
Dave Barach68b0fb02017-02-28 15:15:56 -05001047 /* Bind to uri */
Florin Corasa5464812017-04-19 13:00:05 -07001048 if (server_listen (utm))
1049 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001050
1051 /* Enter handle event loop */
Florin Corase04c2992017-03-01 08:17:34 -08001052 server_handle_event_queue (utm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001053
1054 /* Cleanup */
Florin Corasa5464812017-04-19 13:00:05 -07001055 server_send_unbind (utm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001056
Florin Coras6cf30ad2017-04-04 23:08:23 -07001057 application_detach (utm);
1058
Dave Barach68b0fb02017-02-28 15:15:56 -05001059 fformat (stdout, "Test complete...\n");
1060}
1061
Florin Corase69f4952017-03-07 10:06:24 -08001062static void
1063vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
1064 mp)
1065{
Florin Coras6792ec02017-03-13 03:49:51 -07001066 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
1067
Florin Corase69f4952017-03-07 10:06:24 -08001068 clib_warning ("retval %d", ntohl (mp->retval));
Florin Coras6792ec02017-03-13 03:49:51 -07001069 utm->state = STATE_START;
Florin Corase69f4952017-03-07 10:06:24 -08001070}
1071
1072#define foreach_uri_msg \
1073_(BIND_URI_REPLY, bind_uri_reply) \
1074_(UNBIND_URI_REPLY, unbind_uri_reply) \
1075_(ACCEPT_SESSION, accept_session) \
1076_(CONNECT_URI_REPLY, connect_uri_reply) \
1077_(DISCONNECT_SESSION, disconnect_session) \
1078_(DISCONNECT_SESSION_REPLY, disconnect_session_reply) \
1079_(RESET_SESSION, reset_session) \
Florin Coras6cf30ad2017-04-04 23:08:23 -07001080_(APPLICATION_ATTACH_REPLY, application_attach_reply) \
1081_(APPLICATION_DETACH_REPLY, application_detach_reply) \
1082_(MAP_ANOTHER_SEGMENT, map_another_segment) \
Dave Barach68b0fb02017-02-28 15:15:56 -05001083
1084void
1085uri_api_hookup (uri_tcp_test_main_t * utm)
1086{
1087#define _(N,n) \
1088 vl_msg_api_set_handlers(VL_API_##N, #n, \
1089 vl_api_##n##_t_handler, \
1090 vl_noop_handler, \
1091 vl_api_##n##_t_endian, \
1092 vl_api_##n##_t_print, \
1093 sizeof(vl_api_##n##_t), 1);
1094 foreach_uri_msg;
1095#undef _
1096}
1097
1098int
1099main (int argc, char **argv)
1100{
1101 uri_tcp_test_main_t *utm = &uri_tcp_test_main;
1102 unformat_input_t _argv, *a = &_argv;
1103 u8 *chroot_prefix;
Florin Corase69f4952017-03-07 10:06:24 -08001104 u8 *heap, *uri = 0;
1105 u8 *bind_uri = (u8 *) "tcp://0.0.0.0/1234";
1106 u8 *connect_uri = (u8 *) "tcp://6.0.1.2/1234";
Florin Coras6cf30ad2017-04-04 23:08:23 -07001107 u64 bytes_to_send = 64 << 10, mbytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001108 u32 tmp;
1109 mheap_t *h;
Florin Corase04c2992017-03-01 08:17:34 -08001110 session_t *session;
Dave Barach68b0fb02017-02-28 15:15:56 -05001111 int i;
Florin Corase04c2992017-03-01 08:17:34 -08001112 int i_am_master = 1, drop_packets = 0, test_return_packets = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001113
1114 clib_mem_init (0, 256 << 20);
1115
1116 heap = clib_mem_get_per_cpu_heap ();
1117 h = mheap_header (heap);
1118
1119 /* make the main heap thread-safe */
1120 h->flags |= MHEAP_FLAG_THREAD_SAFE;
1121
1122 vec_validate (utm->rx_buf, 65536);
1123
Florin Corase04c2992017-03-01 08:17:34 -08001124 utm->session_index_by_vpp_handles = hash_create (0, sizeof (uword));
Dave Barach68b0fb02017-02-28 15:15:56 -05001125
Florin Corase04c2992017-03-01 08:17:34 -08001126 utm->my_pid = getpid ();
1127 utm->configured_segment_size = 1 << 20;
Dave Barach68b0fb02017-02-28 15:15:56 -05001128
1129 clib_time_init (&utm->clib_time);
1130 init_error_string_table (utm);
Florin Corase04c2992017-03-01 08:17:34 -08001131 svm_fifo_segment_init (0x200000000ULL, 20);
Dave Barach68b0fb02017-02-28 15:15:56 -05001132 unformat_init_command_line (a, argv);
1133
1134 while (unformat_check_input (a) != UNFORMAT_END_OF_INPUT)
1135 {
1136 if (unformat (a, "chroot prefix %s", &chroot_prefix))
Florin Corase04c2992017-03-01 08:17:34 -08001137 {
1138 vl_set_memory_root_path ((char *) chroot_prefix);
1139 }
Florin Corase69f4952017-03-07 10:06:24 -08001140 else if (unformat (a, "uri %s", &uri))
Florin Corase04c2992017-03-01 08:17:34 -08001141 ;
Dave Barach68b0fb02017-02-28 15:15:56 -05001142 else if (unformat (a, "segment-size %dM", &tmp))
Florin Corase04c2992017-03-01 08:17:34 -08001143 utm->configured_segment_size = tmp << 20;
Dave Barach68b0fb02017-02-28 15:15:56 -05001144 else if (unformat (a, "segment-size %dG", &tmp))
Florin Corase04c2992017-03-01 08:17:34 -08001145 utm->configured_segment_size = tmp << 30;
Dave Barach68b0fb02017-02-28 15:15:56 -05001146 else if (unformat (a, "master"))
Florin Corase04c2992017-03-01 08:17:34 -08001147 i_am_master = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001148 else if (unformat (a, "slave"))
Florin Corase04c2992017-03-01 08:17:34 -08001149 i_am_master = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001150 else if (unformat (a, "drop"))
Florin Corase04c2992017-03-01 08:17:34 -08001151 drop_packets = 1;
1152 else if (unformat (a, "test"))
1153 test_return_packets = 1;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001154 else if (unformat (a, "mbytes %lld", &mbytes))
Florin Coras6792ec02017-03-13 03:49:51 -07001155 {
1156 bytes_to_send = mbytes << 20;
1157 }
Florin Coras6cf30ad2017-04-04 23:08:23 -07001158 else if (unformat (a, "gbytes %lld", &mbytes))
1159 {
1160 bytes_to_send = mbytes << 30;
1161 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001162 else
Florin Corase04c2992017-03-01 08:17:34 -08001163 {
1164 fformat (stderr, "%s: usage [master|slave]\n");
1165 exit (1);
1166 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001167 }
1168
Florin Corase69f4952017-03-07 10:06:24 -08001169 if (uri)
1170 {
1171 utm->uri = format (0, "%s%c", uri, 0);
1172 utm->connect_uri = format (0, "%s%c", uri, 0);
1173 }
1174 else
1175 {
1176 utm->uri = format (0, "%s%c", bind_uri, 0);
1177 utm->connect_uri = format (0, "%s%c", connect_uri, 0);
1178 }
1179
Dave Barach68b0fb02017-02-28 15:15:56 -05001180 utm->i_am_master = i_am_master;
1181 utm->segment_main = &svm_fifo_segment_main;
1182 utm->drop_packets = drop_packets;
Florin Corase04c2992017-03-01 08:17:34 -08001183 utm->test_return_packets = test_return_packets;
Florin Coras6792ec02017-03-13 03:49:51 -07001184 utm->bytes_to_send = bytes_to_send;
Dave Barach68b0fb02017-02-28 15:15:56 -05001185
Florin Corase04c2992017-03-01 08:17:34 -08001186 setup_signal_handlers ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001187 uri_api_hookup (utm);
1188
Florin Corase04c2992017-03-01 08:17:34 -08001189 if (connect_to_vpp (i_am_master ? "uri_tcp_server" : "uri_tcp_client") < 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001190 {
1191 svm_region_exit ();
1192 fformat (stderr, "Couldn't connect to vpe, exiting...\n");
1193 exit (1);
1194 }
1195
1196 if (i_am_master == 0)
1197 {
Florin Corase04c2992017-03-01 08:17:34 -08001198 client_test (utm);
Florin Corase69f4952017-03-07 10:06:24 -08001199 vl_client_disconnect_from_vlib ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001200 exit (0);
1201 }
1202
1203 /* $$$$ hack preallocation */
1204 for (i = 0; i < 200000; i++)
1205 {
1206 pool_get (utm->sessions, session);
1207 memset (session, 0, sizeof (*session));
1208 }
1209 for (i = 0; i < 200000; i++)
1210 pool_put_index (utm->sessions, i);
1211
Florin Corase04c2992017-03-01 08:17:34 -08001212 server_test (utm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001213
1214 vl_client_disconnect_from_vlib ();
1215 exit (0);
1216}
Florin Corase04c2992017-03-01 08:17:34 -08001217
1218/*
1219 * fd.io coding-style-patch-verification: ON
1220 *
1221 * Local Variables:
1222 * eval: (c-set-style "gnu")
1223 * End:
1224 */