session: add support for application namespacing
[vpp.git] / src / uri / uri_tcp_test.c
1 /*
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>
18 #include <svm/svm_fifo_segment.h>
19 #include <vlibmemory/api.h>
20 #include <vpp/api/vpe_msg_enum.h>
21 #include <vnet/session/application_interface.h>
22
23 #define vl_typedefs             /* define message structures */
24 #include <vpp/api/vpe_all_api_h.h>
25 #undef vl_typedefs
26
27 /* declare message handlers for each api */
28
29 #define vl_endianfun            /* define message structures */
30 #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 typedef struct
40 {
41   svm_fifo_t *server_rx_fifo;
42   svm_fifo_t *server_tx_fifo;
43
44   u64 vpp_session_handle;
45   u64 bytes_received;
46   f64 start;
47 } session_t;
48
49 typedef enum
50 {
51   STATE_START,
52   STATE_ATTACHED,
53   STATE_READY,
54   STATE_DISCONNECTING,
55   STATE_FAILED
56 } connection_state_t;
57
58 typedef struct
59 {
60   /* vpe input queue */
61   unix_shared_memory_queue_t *vl_input_queue;
62
63   /* API client handle */
64   u32 my_client_index;
65
66   /* The URI we're playing with */
67   u8 *uri;
68
69   /* Session pool */
70   session_t *sessions;
71
72   /* Hash table for disconnect processing */
73   uword *session_index_by_vpp_handles;
74
75   /* intermediate rx buffer */
76   u8 *rx_buf;
77
78   /* URI for slave's connect */
79   u8 *connect_uri;
80
81   u32 connected_session_index;
82
83   int i_am_master;
84
85   /* drop all packets */
86   int drop_packets;
87
88   /* Our event queue */
89   unix_shared_memory_queue_t *our_event_queue;
90
91   /* $$$ single thread only for the moment */
92   unix_shared_memory_queue_t *vpp_event_queue;
93
94   pid_t my_pid;
95
96   /* For deadman timers */
97   clib_time_t clib_time;
98
99   /* State of the connection, shared between msg RX thread and main thread */
100   volatile connection_state_t state;
101
102   /* Signal variables */
103   volatile int time_to_stop;
104   volatile int time_to_print_stats;
105
106   u32 configured_segment_size;
107
108   /* VNET_API_ERROR_FOO -> "Foo" hash table */
109   uword *error_string_by_error_number;
110
111   u8 *connect_test_data;
112   pthread_t client_rx_thread_handle;
113   u32 client_bytes_received;
114   u8 test_return_packets;
115   u64 bytes_to_send;
116
117   /* convenience */
118   svm_fifo_segment_main_t *segment_main;
119 } uri_tcp_test_main_t;
120
121 uri_tcp_test_main_t uri_tcp_test_main;
122
123 #if CLIB_DEBUG > 0
124 #define NITER 10000
125 #else
126 #define NITER 4000000
127 #endif
128
129 static u8 *
130 format_api_error (u8 * s, va_list * args)
131 {
132   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
133   i32 error = va_arg (*args, u32);
134   uword *p;
135
136   p = hash_get (utm->error_string_by_error_number, -error);
137
138   if (p)
139     s = format (s, "%s", p[0]);
140   else
141     s = format (s, "%d", error);
142   return s;
143 }
144
145 static void
146 init_error_string_table (uri_tcp_test_main_t * utm)
147 {
148   utm->error_string_by_error_number = hash_create (0, sizeof (uword));
149
150 #define _(n,v,s) hash_set (utm->error_string_by_error_number, -v, s);
151   foreach_vnet_api_error;
152 #undef _
153
154   hash_set (utm->error_string_by_error_number, 99, "Misc");
155 }
156
157 int
158 wait_for_state_change (uri_tcp_test_main_t * utm, connection_state_t state)
159 {
160 #if CLIB_DEBUG > 0
161 #define TIMEOUT 600.0
162 #else
163 #define TIMEOUT 600.0
164 #endif
165
166   f64 timeout = clib_time_now (&utm->clib_time) + TIMEOUT;
167
168   while (clib_time_now (&utm->clib_time) < timeout)
169     {
170       if (utm->state == state)
171         return 0;
172       if (utm->state == STATE_FAILED)
173         return -1;
174       if (utm->time_to_stop == 1)
175         return 0;
176     }
177   clib_warning ("timeout waiting for STATE_READY");
178   return -1;
179 }
180
181 void
182 application_send_attach (uri_tcp_test_main_t * utm)
183 {
184   vl_api_application_attach_t *bmp;
185   u32 fifo_size = 4 << 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);
192   bmp->options[APP_OPTIONS_FLAGS] =
193     APP_OPTIONS_FLAGS_ACCEPT_REDIRECT | APP_OPTIONS_FLAGS_ADD_SEGMENT;
194   bmp->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = 16;
195   bmp->options[SESSION_OPTIONS_RX_FIFO_SIZE] = fifo_size;
196   bmp->options[SESSION_OPTIONS_TX_FIFO_SIZE] = fifo_size;
197   bmp->options[SESSION_OPTIONS_ADD_SEGMENT_SIZE] = 128 << 20;
198   bmp->options[SESSION_OPTIONS_SEGMENT_SIZE] = 256 << 20;
199   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
200 }
201
202 int
203 application_attach (uri_tcp_test_main_t * utm)
204 {
205   application_send_attach (utm);
206   if (wait_for_state_change (utm, STATE_ATTACHED))
207     {
208       clib_warning ("timeout waiting for STATE_ATTACHED");
209       return -1;
210     }
211   return 0;
212 }
213
214 void
215 application_detach (uri_tcp_test_main_t * utm)
216 {
217   vl_api_application_detach_t *bmp;
218   bmp = vl_msg_api_alloc (sizeof (*bmp));
219   memset (bmp, 0, sizeof (*bmp));
220
221   bmp->_vl_msg_id = ntohs (VL_API_APPLICATION_DETACH);
222   bmp->client_index = utm->my_client_index;
223   bmp->context = ntohl (0xfeedface);
224   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
225 }
226
227 static void
228 vl_api_application_attach_reply_t_handler (vl_api_application_attach_reply_t *
229                                            mp)
230 {
231   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
232   svm_fifo_segment_create_args_t _a, *a = &_a;
233   int rv;
234
235   if (mp->retval)
236     {
237       clib_warning ("attach failed: %U", format_api_error,
238                     clib_net_to_host_u32 (mp->retval));
239       utm->state = STATE_FAILED;
240       return;
241     }
242
243   if (mp->segment_name_length == 0)
244     {
245       clib_warning ("segment_name_length zero");
246       return;
247     }
248
249   a->segment_name = (char *) mp->segment_name;
250   a->segment_size = mp->segment_size;
251
252   ASSERT (mp->app_event_queue_address);
253
254   /* Attach to the segment vpp created */
255   rv = svm_fifo_segment_attach (a);
256   if (rv)
257     {
258       clib_warning ("svm_fifo_segment_attach ('%s') failed",
259                     mp->segment_name);
260       return;
261     }
262
263   utm->our_event_queue =
264     uword_to_pointer (mp->app_event_queue_address,
265                       unix_shared_memory_queue_t *);
266   utm->state = STATE_ATTACHED;
267 }
268
269 static void
270 vl_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
277 static void
278 stop_signal (int signum)
279 {
280   uri_tcp_test_main_t *um = &uri_tcp_test_main;
281
282   um->time_to_stop = 1;
283 }
284
285 static void
286 stats_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
293 static clib_error_t *
294 setup_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
303 void
304 vlib_cli_output (struct vlib_main_t *vm, char *fmt, ...)
305 {
306   clib_warning ("BUG");
307 }
308
309 int
310 connect_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
324 static void
325 vl_api_map_another_segment_t_handler (vl_api_map_another_segment_t * mp)
326 {
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",
337                     mp->segment_name);
338       return;
339     }
340   clib_warning ("Mapped new segment '%s' size %d", mp->segment_name,
341                 mp->segment_size);
342 }
343
344 static void
345 session_print_stats (uri_tcp_test_main_t * utm, session_t * session)
346 {
347   f64 deltat;
348   u64 bytes;
349
350   deltat = clib_time_now (&utm->clib_time) - session->start;
351   bytes = utm->i_am_master ? session->bytes_received : utm->bytes_to_send;
352   fformat (stdout, "Finished in %.6f\n", deltat);
353   fformat (stdout, "%.4f Gbit/second\n", (bytes * 8.0) / deltat / 1e9);
354 }
355
356 static void
357 vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
358 {
359   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
360   session_t *session = 0;
361   vl_api_disconnect_session_reply_t *rmp;
362   uword *p;
363   int rv = 0;
364
365   p = hash_get (utm->session_index_by_vpp_handles, mp->handle);
366
367   if (p)
368     {
369       session = pool_elt_at_index (utm->sessions, p[0]);
370       hash_unset (utm->session_index_by_vpp_handles, mp->handle);
371       pool_put (utm->sessions, session);
372     }
373   else
374     {
375       clib_warning ("couldn't find session key %llx", mp->handle);
376       rv = -11;
377     }
378
379 //  utm->time_to_stop = 1;
380
381   rmp = vl_msg_api_alloc (sizeof (*rmp));
382   memset (rmp, 0, sizeof (*rmp));
383
384   rmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION_REPLY);
385   rmp->retval = rv;
386   rmp->handle = mp->handle;
387   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
388
389   if (session)
390     session_print_stats (utm, session);
391 }
392
393 static void
394 vl_api_reset_session_t_handler (vl_api_reset_session_t * mp)
395 {
396   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
397   vl_api_reset_session_reply_t *rmp;
398   uword *p;
399   int rv = 0;
400
401   p = hash_get (utm->session_index_by_vpp_handles, mp->handle);
402
403   if (p)
404     {
405       clib_warning ("got reset");
406       /* Cleanup later */
407       utm->time_to_stop = 1;
408     }
409   else
410     {
411       clib_warning ("couldn't find session key %llx", mp->handle);
412       rv = -11;
413     }
414
415   rmp = vl_msg_api_alloc (sizeof (*rmp));
416   memset (rmp, 0, sizeof (*rmp));
417   rmp->_vl_msg_id = ntohs (VL_API_RESET_SESSION_REPLY);
418   rmp->retval = rv;
419   rmp->handle = mp->handle;
420   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
421 }
422
423 void
424 client_handle_fifo_event_rx (uri_tcp_test_main_t * utm,
425                              session_fifo_event_t * e)
426 {
427   svm_fifo_t *rx_fifo;
428   int n_read, bytes, i;
429
430   rx_fifo = e->fifo;
431
432   bytes = svm_fifo_max_dequeue (rx_fifo);
433   /* Allow enqueuing of new event */
434   svm_fifo_unset_event (rx_fifo);
435
436   /* Read the bytes */
437   do
438     {
439       n_read = svm_fifo_dequeue_nowait (rx_fifo,
440                                         clib_min (vec_len (utm->rx_buf),
441                                                   bytes), utm->rx_buf);
442       if (n_read > 0)
443         {
444           bytes -= n_read;
445           if (utm->test_return_packets)
446             {
447               for (i = 0; i < n_read; i++)
448                 {
449                   if (utm->rx_buf[i]
450                       != ((utm->client_bytes_received + i) & 0xff))
451                     {
452                       clib_warning ("error at byte %lld, 0x%x not 0x%x",
453                                     utm->client_bytes_received + i,
454                                     utm->rx_buf[i],
455                                     ((utm->client_bytes_received +
456                                       i) & 0xff));
457                     }
458                 }
459             }
460           utm->client_bytes_received += n_read;
461         }
462       else
463         {
464           if (n_read == -2)
465             {
466 //            clib_warning ("weird!");
467               break;
468             }
469         }
470
471     }
472   while (bytes > 0);
473 }
474
475 void
476 client_handle_event_queue (uri_tcp_test_main_t * utm)
477 {
478   session_fifo_event_t _e, *e = &_e;;
479
480   unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
481                                 0 /* nowait */ );
482   switch (e->event_type)
483     {
484     case FIFO_EVENT_APP_RX:
485       client_handle_fifo_event_rx (utm, e);
486       break;
487
488     case FIFO_EVENT_DISCONNECT:
489       return;
490
491     default:
492       clib_warning ("unknown event type %d", e->event_type);
493       break;
494     }
495 }
496
497 static void *
498 client_rx_thread_fn (void *arg)
499 {
500   session_fifo_event_t _e, *e = &_e;
501   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
502
503   utm->client_bytes_received = 0;
504   while (1)
505     {
506       unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
507                                     0 /* nowait */ );
508       switch (e->event_type)
509         {
510         case FIFO_EVENT_APP_RX:
511           client_handle_fifo_event_rx (utm, e);
512           break;
513
514         case FIFO_EVENT_DISCONNECT:
515           return 0;
516         default:
517           clib_warning ("unknown event type %d", e->event_type);
518           break;
519         }
520
521       if (PREDICT_FALSE (utm->time_to_stop == 1))
522         break;
523     }
524   pthread_exit (0);
525 }
526
527
528 static void
529 vl_api_connect_session_reply_t_handler (vl_api_connect_session_reply_t * mp)
530 {
531   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
532   session_t *session;
533   u32 session_index;
534   svm_fifo_t *rx_fifo, *tx_fifo;
535   int rv;
536
537   if (mp->retval)
538     {
539       clib_warning ("connection failed with code: %U", format_api_error,
540                     clib_net_to_host_u32 (mp->retval));
541       utm->state = STATE_FAILED;
542       return;
543     }
544
545   utm->vpp_event_queue =
546     uword_to_pointer (mp->vpp_event_queue_address,
547                       unix_shared_memory_queue_t *);
548
549   /*
550    * Setup session
551    */
552
553   pool_get (utm->sessions, session);
554   session_index = session - utm->sessions;
555
556   rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
557   rx_fifo->client_session_index = session_index;
558   tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
559   tx_fifo->client_session_index = session_index;
560
561   session->server_rx_fifo = rx_fifo;
562   session->server_tx_fifo = tx_fifo;
563   session->vpp_session_handle = mp->handle;
564   session->start = clib_time_now (&utm->clib_time);
565
566   /* Save handle */
567   utm->connected_session_index = session_index;
568   utm->state = STATE_READY;
569
570   /* Add it to lookup table */
571   hash_set (utm->session_index_by_vpp_handles, mp->handle, session_index);
572
573   /* Start RX thread */
574   rv = pthread_create (&utm->client_rx_thread_handle,
575                        NULL /*attr */ , client_rx_thread_fn, 0);
576   if (rv)
577     {
578       clib_warning ("pthread_create returned %d", rv);
579       rv = VNET_API_ERROR_SYSCALL_ERROR_1;
580     }
581 }
582
583 static void
584 send_test_chunk (uri_tcp_test_main_t * utm, svm_fifo_t * tx_fifo, int mypid,
585                  u32 bytes)
586 {
587   u8 *test_data = utm->connect_test_data;
588   u64 bytes_sent = 0;
589   int test_buf_offset = 0;
590   u32 bytes_to_snd;
591   u32 queue_max_chunk = 128 << 10, actual_write;
592   session_fifo_event_t evt;
593   static int serial_number = 0;
594   int rv;
595
596   bytes_to_snd = (bytes == 0) ? vec_len (test_data) : bytes;
597   if (bytes_to_snd > vec_len (test_data))
598     bytes_to_snd = vec_len (test_data);
599
600   while (bytes_to_snd > 0 && !utm->time_to_stop)
601     {
602       actual_write = (bytes_to_snd > queue_max_chunk) ?
603         queue_max_chunk : bytes_to_snd;
604       rv = svm_fifo_enqueue_nowait (tx_fifo, actual_write,
605                                     test_data + test_buf_offset);
606
607       if (rv > 0)
608         {
609           bytes_to_snd -= rv;
610           test_buf_offset += rv;
611           bytes_sent += rv;
612
613           if (svm_fifo_set_event (tx_fifo))
614             {
615               /* Fabricate TX event, send to vpp */
616               evt.fifo = tx_fifo;
617               evt.event_type = FIFO_EVENT_APP_TX;
618               evt.event_id = serial_number++;
619
620               unix_shared_memory_queue_add (utm->vpp_event_queue,
621                                             (u8 *) & evt,
622                                             0 /* do wait for mutex */ );
623             }
624         }
625     }
626 }
627
628 void
629 client_send_data (uri_tcp_test_main_t * utm)
630 {
631   u8 *test_data = utm->connect_test_data;
632   int mypid = getpid ();
633   session_t *session;
634   svm_fifo_t *tx_fifo;
635   u32 n_iterations, leftover;
636   int i;
637
638   session = pool_elt_at_index (utm->sessions, utm->connected_session_index);
639   tx_fifo = session->server_tx_fifo;
640
641   ASSERT (vec_len (test_data) > 0);
642
643   vec_validate (utm->rx_buf, vec_len (test_data) - 1);
644   n_iterations = utm->bytes_to_send / vec_len (test_data);
645
646   for (i = 0; i < n_iterations; i++)
647     {
648       send_test_chunk (utm, tx_fifo, mypid, 0);
649       if (utm->time_to_stop)
650         break;
651     }
652
653   leftover = utm->bytes_to_send % vec_len (test_data);
654   if (leftover)
655     send_test_chunk (utm, tx_fifo, mypid, leftover);
656
657   if (!utm->drop_packets)
658     {
659       f64 timeout = clib_time_now (&utm->clib_time) + 10;
660
661       /* Wait for the outstanding packets */
662       while (utm->client_bytes_received <
663              vec_len (test_data) * n_iterations + leftover)
664         {
665           if (clib_time_now (&utm->clib_time) > timeout)
666             {
667               clib_warning ("timed out waiting for the missing packets");
668               break;
669             }
670         }
671     }
672   utm->time_to_stop = 1;
673 }
674
675 void
676 client_send_connect (uri_tcp_test_main_t * utm)
677 {
678   vl_api_connect_uri_t *cmp;
679   cmp = vl_msg_api_alloc (sizeof (*cmp));
680   memset (cmp, 0, sizeof (*cmp));
681
682   cmp->_vl_msg_id = ntohs (VL_API_CONNECT_URI);
683   cmp->client_index = utm->my_client_index;
684   cmp->context = ntohl (0xfeedface);
685   memcpy (cmp->uri, utm->connect_uri, vec_len (utm->connect_uri));
686   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & cmp);
687 }
688
689 int
690 client_connect (uri_tcp_test_main_t * utm)
691 {
692   client_send_connect (utm);
693   if (wait_for_state_change (utm, STATE_READY))
694     {
695       clib_warning ("Connect failed");
696       return -1;
697     }
698   return 0;
699 }
700
701 void
702 client_send_disconnect (uri_tcp_test_main_t * utm)
703 {
704   session_t *connected_session;
705   vl_api_disconnect_session_t *dmp;
706   connected_session = pool_elt_at_index (utm->sessions,
707                                          utm->connected_session_index);
708   dmp = vl_msg_api_alloc (sizeof (*dmp));
709   memset (dmp, 0, sizeof (*dmp));
710   dmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION);
711   dmp->client_index = utm->my_client_index;
712   dmp->handle = connected_session->vpp_session_handle;
713   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & dmp);
714 }
715
716 int
717 client_disconnect (uri_tcp_test_main_t * utm)
718 {
719   client_send_disconnect (utm);
720   clib_warning ("Sent disconnect");
721   if (wait_for_state_change (utm, STATE_START))
722     {
723       clib_warning ("Disconnect failed");
724       return -1;
725     }
726   return 0;
727 }
728
729 static void
730 client_test (uri_tcp_test_main_t * utm)
731 {
732   int i;
733
734   if (application_attach (utm))
735     return;
736
737   if (client_connect (utm))
738     {
739       application_detach (utm);
740       return;
741     }
742
743   /* Init test data */
744   vec_validate (utm->connect_test_data, 128 * 1024 - 1);
745   for (i = 0; i < vec_len (utm->connect_test_data); i++)
746     utm->connect_test_data[i] = i & 0xff;
747
748   /* Start send */
749   client_send_data (utm);
750
751   /* Disconnect */
752   client_disconnect (utm);
753
754   application_detach (utm);
755 }
756
757 static void
758 vl_api_bind_uri_reply_t_handler (vl_api_bind_uri_reply_t * mp)
759 {
760   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
761
762   if (mp->retval)
763     {
764       clib_warning ("bind failed: %U", format_api_error,
765                     clib_net_to_host_u32 (mp->retval));
766       utm->state = STATE_FAILED;
767       return;
768     }
769
770   utm->state = STATE_READY;
771 }
772
773 static void
774 vl_api_unbind_uri_reply_t_handler (vl_api_unbind_uri_reply_t * mp)
775 {
776   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
777
778   if (mp->retval != 0)
779     clib_warning ("returned %d", ntohl (mp->retval));
780
781   utm->state = STATE_START;
782 }
783
784 u8 *
785 format_ip4_address (u8 * s, va_list * args)
786 {
787   u8 *a = va_arg (*args, u8 *);
788   return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
789 }
790
791 u8 *
792 format_ip6_address (u8 * s, va_list * args)
793 {
794   ip6_address_t *a = va_arg (*args, ip6_address_t *);
795   u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
796
797   i_max_n_zero = ARRAY_LEN (a->as_u16);
798   max_n_zeros = 0;
799   i_first_zero = i_max_n_zero;
800   n_zeros = 0;
801   for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
802     {
803       u32 is_zero = a->as_u16[i] == 0;
804       if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
805         {
806           i_first_zero = i;
807           n_zeros = 0;
808         }
809       n_zeros += is_zero;
810       if ((!is_zero && n_zeros > max_n_zeros)
811           || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
812         {
813           i_max_n_zero = i_first_zero;
814           max_n_zeros = n_zeros;
815           i_first_zero = ARRAY_LEN (a->as_u16);
816           n_zeros = 0;
817         }
818     }
819
820   last_double_colon = 0;
821   for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
822     {
823       if (i == i_max_n_zero && max_n_zeros > 1)
824         {
825           s = format (s, "::");
826           i += max_n_zeros - 1;
827           last_double_colon = 1;
828         }
829       else
830         {
831           s = format (s, "%s%x",
832                       (last_double_colon || i == 0) ? "" : ":",
833                       clib_net_to_host_u16 (a->as_u16[i]));
834           last_double_colon = 0;
835         }
836     }
837
838   return s;
839 }
840
841 /* Format an IP46 address. */
842 u8 *
843 format_ip46_address (u8 * s, va_list * args)
844 {
845   ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
846   ip46_type_t type = va_arg (*args, ip46_type_t);
847   int is_ip4 = 1;
848
849   switch (type)
850     {
851     case IP46_TYPE_ANY:
852       is_ip4 = ip46_address_is_ip4 (ip46);
853       break;
854     case IP46_TYPE_IP4:
855       is_ip4 = 1;
856       break;
857     case IP46_TYPE_IP6:
858       is_ip4 = 0;
859       break;
860     }
861
862   return is_ip4 ?
863     format (s, "%U", format_ip4_address, &ip46->ip4) :
864     format (s, "%U", format_ip6_address, &ip46->ip6);
865 }
866
867 static void
868 vl_api_accept_session_t_handler (vl_api_accept_session_t * mp)
869 {
870   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
871   vl_api_accept_session_reply_t *rmp;
872   svm_fifo_t *rx_fifo, *tx_fifo;
873   session_t *session;
874   static f64 start_time;
875   u32 session_index;
876   u8 *ip_str;
877
878   if (start_time == 0.0)
879     start_time = clib_time_now (&utm->clib_time);
880
881   ip_str = format (0, "%U", format_ip46_address, &mp->ip, mp->is_ip4);
882   clib_warning ("Accepted session from: %s:%d", ip_str,
883                 clib_net_to_host_u16 (mp->port));
884   utm->vpp_event_queue =
885     uword_to_pointer (mp->vpp_event_queue_address,
886                       unix_shared_memory_queue_t *);
887
888   /* Allocate local session and set it up */
889   pool_get (utm->sessions, session);
890   session_index = session - utm->sessions;
891
892   rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
893   rx_fifo->client_session_index = session_index;
894   tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
895   tx_fifo->client_session_index = session_index;
896
897   session->server_rx_fifo = rx_fifo;
898   session->server_tx_fifo = tx_fifo;
899
900   /* Add it to lookup table */
901   hash_set (utm->session_index_by_vpp_handles, mp->handle, session_index);
902
903   utm->state = STATE_READY;
904
905   /* Stats printing */
906   if (pool_elts (utm->sessions) && (pool_elts (utm->sessions) % 20000) == 0)
907     {
908       f64 now = clib_time_now (&utm->clib_time);
909       fformat (stdout, "%d active sessions in %.2f seconds, %.2f/sec...\n",
910                pool_elts (utm->sessions), now - start_time,
911                (f64) pool_elts (utm->sessions) / (now - start_time));
912     }
913
914   /*
915    * Send accept reply to vpp
916    */
917   rmp = vl_msg_api_alloc (sizeof (*rmp));
918   memset (rmp, 0, sizeof (*rmp));
919   rmp->_vl_msg_id = ntohs (VL_API_ACCEPT_SESSION_REPLY);
920   rmp->handle = mp->handle;
921   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
922
923   session->bytes_received = 0;
924   session->start = clib_time_now (&utm->clib_time);
925 }
926
927 void
928 server_handle_fifo_event_rx (uri_tcp_test_main_t * utm,
929                              session_fifo_event_t * e)
930 {
931   svm_fifo_t *rx_fifo, *tx_fifo;
932   int n_read;
933   session_fifo_event_t evt;
934   unix_shared_memory_queue_t *q;
935   session_t *session;
936   int rv;
937   u32 max_dequeue, offset, max_transfer, rx_buf_len;
938
939   rx_buf_len = vec_len (utm->rx_buf);
940   rx_fifo = e->fifo;
941   session = &utm->sessions[rx_fifo->client_session_index];
942   tx_fifo = session->server_tx_fifo;
943
944   max_dequeue = svm_fifo_max_dequeue (rx_fifo);
945   /* Allow enqueuing of a new event */
946   svm_fifo_unset_event (rx_fifo);
947
948   if (PREDICT_FALSE (max_dequeue == 0))
949     {
950       return;
951     }
952
953   /* Read the max_dequeue */
954   do
955     {
956       max_transfer = clib_min (rx_buf_len, max_dequeue);
957       n_read = svm_fifo_dequeue_nowait (rx_fifo, max_transfer, utm->rx_buf);
958       if (n_read > 0)
959         {
960           max_dequeue -= n_read;
961           session->bytes_received += n_read;
962         }
963
964       /* Reflect if a non-drop session */
965       if (!utm->drop_packets && n_read > 0)
966         {
967           offset = 0;
968           do
969             {
970               rv = svm_fifo_enqueue_nowait (tx_fifo, n_read,
971                                             &utm->rx_buf[offset]);
972               if (rv > 0)
973                 {
974                   n_read -= rv;
975                   offset += rv;
976                 }
977             }
978           while ((rv <= 0 || n_read > 0) && !utm->time_to_stop);
979
980           /* If event wasn't set, add one */
981           if (svm_fifo_set_event (tx_fifo))
982             {
983               /* Fabricate TX event, send to vpp */
984               evt.fifo = tx_fifo;
985               evt.event_type = FIFO_EVENT_APP_TX;
986               evt.event_id = e->event_id;
987
988               q = utm->vpp_event_queue;
989               unix_shared_memory_queue_add (q, (u8 *) & evt,
990                                             1 /* do wait for mutex */ );
991             }
992         }
993     }
994   while ((n_read < 0 || max_dequeue > 0) && !utm->time_to_stop);
995 }
996
997 void
998 server_handle_event_queue (uri_tcp_test_main_t * utm)
999 {
1000   session_fifo_event_t _e, *e = &_e;;
1001
1002   while (1)
1003     {
1004       unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
1005                                     0 /* nowait */ );
1006       switch (e->event_type)
1007         {
1008         case FIFO_EVENT_APP_RX:
1009           server_handle_fifo_event_rx (utm, e);
1010           break;
1011
1012         case FIFO_EVENT_DISCONNECT:
1013           return;
1014
1015         default:
1016           clib_warning ("unknown event type %d", e->event_type);
1017           break;
1018         }
1019       if (PREDICT_FALSE (utm->time_to_stop == 1))
1020         break;
1021       if (PREDICT_FALSE (utm->time_to_print_stats == 1))
1022         {
1023           utm->time_to_print_stats = 0;
1024           fformat (stdout, "%d connections\n", pool_elts (utm->sessions));
1025         }
1026     }
1027 }
1028
1029 void
1030 server_send_listen (uri_tcp_test_main_t * utm)
1031 {
1032   vl_api_bind_uri_t *bmp;
1033   bmp = vl_msg_api_alloc (sizeof (*bmp));
1034   memset (bmp, 0, sizeof (*bmp));
1035
1036   bmp->_vl_msg_id = ntohs (VL_API_BIND_URI);
1037   bmp->client_index = utm->my_client_index;
1038   bmp->context = ntohl (0xfeedface);
1039   memcpy (bmp->uri, utm->uri, vec_len (utm->uri));
1040   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
1041 }
1042
1043 int
1044 server_listen (uri_tcp_test_main_t * utm)
1045 {
1046   server_send_listen (utm);
1047   if (wait_for_state_change (utm, STATE_READY))
1048     {
1049       clib_warning ("timeout waiting for STATE_READY");
1050       return -1;
1051     }
1052   return 0;
1053 }
1054
1055 void
1056 server_send_unbind (uri_tcp_test_main_t * utm)
1057 {
1058   vl_api_unbind_uri_t *ump;
1059
1060   ump = vl_msg_api_alloc (sizeof (*ump));
1061   memset (ump, 0, sizeof (*ump));
1062
1063   ump->_vl_msg_id = ntohs (VL_API_UNBIND_URI);
1064   ump->client_index = utm->my_client_index;
1065   memcpy (ump->uri, utm->uri, vec_len (utm->uri));
1066   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & ump);
1067 }
1068
1069 int
1070 server_unbind (uri_tcp_test_main_t * utm)
1071 {
1072   server_send_unbind (utm);
1073   if (wait_for_state_change (utm, STATE_START))
1074     {
1075       clib_warning ("timeout waiting for STATE_START");
1076       return -1;
1077     }
1078   return 0;
1079 }
1080
1081 void
1082 server_test (uri_tcp_test_main_t * utm)
1083 {
1084   if (application_attach (utm))
1085     return;
1086
1087   /* Bind to uri */
1088   if (server_listen (utm))
1089     return;
1090
1091   /* Enter handle event loop */
1092   server_handle_event_queue (utm);
1093
1094   /* Cleanup */
1095   server_send_unbind (utm);
1096
1097   application_detach (utm);
1098
1099   fformat (stdout, "Test complete...\n");
1100 }
1101
1102 static void
1103 vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
1104                                            mp)
1105 {
1106   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
1107   session_t *session;
1108
1109   if (mp->retval)
1110     {
1111       clib_warning ("vpp complained about disconnect: %d",
1112                     ntohl (mp->retval));
1113     }
1114
1115   utm->state = STATE_START;
1116   session = pool_elt_at_index (utm->sessions, utm->connected_session_index);
1117   if (session)
1118     session_print_stats (utm, session);
1119 }
1120
1121 #define foreach_uri_msg                                 \
1122 _(BIND_URI_REPLY, bind_uri_reply)                       \
1123 _(UNBIND_URI_REPLY, unbind_uri_reply)                   \
1124 _(ACCEPT_SESSION, accept_session)                       \
1125 _(CONNECT_SESSION_REPLY, connect_session_reply)         \
1126 _(DISCONNECT_SESSION, disconnect_session)               \
1127 _(DISCONNECT_SESSION_REPLY, disconnect_session_reply)   \
1128 _(RESET_SESSION, reset_session)                         \
1129 _(APPLICATION_ATTACH_REPLY, application_attach_reply)   \
1130 _(APPLICATION_DETACH_REPLY, application_detach_reply)   \
1131 _(MAP_ANOTHER_SEGMENT, map_another_segment)             \
1132
1133 void
1134 uri_api_hookup (uri_tcp_test_main_t * utm)
1135 {
1136 #define _(N,n)                                                  \
1137     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
1138                            vl_api_##n##_t_handler,              \
1139                            vl_noop_handler,                     \
1140                            vl_api_##n##_t_endian,               \
1141                            vl_api_##n##_t_print,                \
1142                            sizeof(vl_api_##n##_t), 1);
1143   foreach_uri_msg;
1144 #undef _
1145 }
1146
1147 int
1148 main (int argc, char **argv)
1149 {
1150   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
1151   unformat_input_t _argv, *a = &_argv;
1152   u8 *chroot_prefix;
1153   u8 *heap, *uri = 0;
1154   u8 *bind_uri = (u8 *) "tcp://0.0.0.0/1234";
1155   u8 *connect_uri = (u8 *) "tcp://6.0.1.2/1234";
1156   u64 bytes_to_send = 64 << 10, mbytes;
1157   u32 tmp;
1158   mheap_t *h;
1159   session_t *session;
1160   int i;
1161   int i_am_master = 1, drop_packets = 0, test_return_packets = 0;
1162
1163   clib_mem_init (0, 256 << 20);
1164
1165   heap = clib_mem_get_per_cpu_heap ();
1166   h = mheap_header (heap);
1167
1168   /* make the main heap thread-safe */
1169   h->flags |= MHEAP_FLAG_THREAD_SAFE;
1170
1171   vec_validate (utm->rx_buf, 128 << 10);
1172
1173   utm->session_index_by_vpp_handles = hash_create (0, sizeof (uword));
1174
1175   utm->my_pid = getpid ();
1176   utm->configured_segment_size = 1 << 20;
1177
1178   clib_time_init (&utm->clib_time);
1179   init_error_string_table (utm);
1180   svm_fifo_segment_init (0x200000000ULL, 20);
1181   unformat_init_command_line (a, argv);
1182
1183   while (unformat_check_input (a) != UNFORMAT_END_OF_INPUT)
1184     {
1185       if (unformat (a, "chroot prefix %s", &chroot_prefix))
1186         {
1187           vl_set_memory_root_path ((char *) chroot_prefix);
1188         }
1189       else if (unformat (a, "uri %s", &uri))
1190         ;
1191       else if (unformat (a, "segment-size %dM", &tmp))
1192         utm->configured_segment_size = tmp << 20;
1193       else if (unformat (a, "segment-size %dG", &tmp))
1194         utm->configured_segment_size = tmp << 30;
1195       else if (unformat (a, "master"))
1196         i_am_master = 1;
1197       else if (unformat (a, "slave"))
1198         i_am_master = 0;
1199       else if (unformat (a, "drop"))
1200         drop_packets = 1;
1201       else if (unformat (a, "test"))
1202         test_return_packets = 1;
1203       else if (unformat (a, "mbytes %lld", &mbytes))
1204         {
1205           bytes_to_send = mbytes << 20;
1206         }
1207       else if (unformat (a, "gbytes %lld", &mbytes))
1208         {
1209           bytes_to_send = mbytes << 30;
1210         }
1211       else
1212         {
1213           fformat (stderr, "%s: usage [master|slave]\n");
1214           exit (1);
1215         }
1216     }
1217
1218   if (uri)
1219     {
1220       utm->uri = format (0, "%s%c", uri, 0);
1221       utm->connect_uri = format (0, "%s%c", uri, 0);
1222     }
1223   else
1224     {
1225       utm->uri = format (0, "%s%c", bind_uri, 0);
1226       utm->connect_uri = format (0, "%s%c", connect_uri, 0);
1227     }
1228
1229   utm->i_am_master = i_am_master;
1230   utm->segment_main = &svm_fifo_segment_main;
1231   utm->drop_packets = drop_packets;
1232   utm->test_return_packets = test_return_packets;
1233   utm->bytes_to_send = bytes_to_send;
1234   utm->time_to_stop = 0;
1235
1236   setup_signal_handlers ();
1237   uri_api_hookup (utm);
1238
1239   if (connect_to_vpp (i_am_master ? "uri_tcp_server" : "uri_tcp_client") < 0)
1240     {
1241       svm_region_exit ();
1242       fformat (stderr, "Couldn't connect to vpe, exiting...\n");
1243       exit (1);
1244     }
1245
1246   if (i_am_master == 0)
1247     {
1248       client_test (utm);
1249       vl_client_disconnect_from_vlib ();
1250       exit (0);
1251     }
1252
1253   /* $$$$ hack preallocation */
1254   for (i = 0; i < 200000; i++)
1255     {
1256       pool_get (utm->sessions, session);
1257       memset (session, 0, sizeof (*session));
1258     }
1259   for (i = 0; i < 200000; i++)
1260     pool_put_index (utm->sessions, i);
1261
1262   server_test (utm);
1263
1264   vl_client_disconnect_from_vlib ();
1265   exit (0);
1266 }
1267
1268 /*
1269  * fd.io coding-style-patch-verification: ON
1270  *
1271  * Local Variables:
1272  * eval: (c-set-style "gnu")
1273  * End:
1274  */