Session layer improvements
[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 /* Satisfy external references when not linking with -lvlib */
40 vlib_main_t vlib_global_main;
41 vlib_main_t **vlib_mains;
42
43 typedef struct
44 {
45   svm_fifo_t *server_rx_fifo;
46   svm_fifo_t *server_tx_fifo;
47
48   u64 vpp_session_handle;
49 } session_t;
50
51 typedef enum
52 {
53   STATE_START,
54   STATE_ATTACHED,
55   STATE_READY,
56   STATE_DISCONNECTING,
57   STATE_FAILED
58 } connection_state_t;
59
60 typedef 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 */
69   u8 *uri;
70
71   /* Session pool */
72   session_t *sessions;
73
74   /* Hash table for disconnect processing */
75   uword *session_index_by_vpp_handles;
76
77   /* intermediate rx buffer */
78   u8 *rx_buf;
79
80   /* URI for slave's connect */
81   u8 *connect_uri;
82
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 */
91   unix_shared_memory_queue_t *our_event_queue;
92
93   /* $$$ single thread only for the moment */
94   unix_shared_memory_queue_t *vpp_event_queue;
95
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 */
111   uword *error_string_by_error_number;
112
113   u8 *connect_test_data;
114   pthread_t client_rx_thread_handle;
115   u32 client_bytes_received;
116   u8 test_return_packets;
117   u64 bytes_to_send;
118
119   /* convenience */
120   svm_fifo_segment_main_t *segment_main;
121 } uri_tcp_test_main_t;
122
123 uri_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
131 static u8 *
132 format_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
147 static void
148 init_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
159 int
160 wait_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)
173         return 0;
174       if (utm->state == STATE_FAILED)
175         return -1;
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 = 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);
192   bmp->options[APP_OPTIONS_FLAGS] =
193     APP_OPTIONS_FLAGS_USE_FIFO | APP_OPTIONS_FLAGS_ADD_SEGMENT;
194   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
201 int
202 application_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
213 void
214 application_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
226 static void
227 vl_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     {
236       clib_warning ("attach failed: %U", format_api_error,
237                     clib_net_to_host_u32 (mp->retval));
238       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;
264   utm->state = STATE_ATTACHED;
265 }
266
267 static void
268 vl_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
275 static void
276 stop_signal (int signum)
277 {
278   uri_tcp_test_main_t *um = &uri_tcp_test_main;
279
280   um->time_to_stop = 1;
281 }
282
283 static void
284 stats_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
291 static clib_error_t *
292 setup_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
301 void
302 vlib_cli_output (struct vlib_main_t *vm, char *fmt, ...)
303 {
304   clib_warning ("BUG");
305 }
306
307 int
308 connect_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
322 static void
323 vl_api_map_another_segment_t_handler (vl_api_map_another_segment_t * mp)
324 {
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",
335                     mp->segment_name);
336       return;
337     }
338   clib_warning ("Mapped new segment '%s' size %d", mp->segment_name,
339                 mp->segment_size);
340 }
341
342 static void
343 vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
344 {
345   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
346   session_t *session;
347   vl_api_disconnect_session_reply_t *rmp;
348   uword *p;
349   int rv = 0;
350
351   p = hash_get (utm->session_index_by_vpp_handles, mp->handle);
352
353   if (p)
354     {
355       session = pool_elt_at_index (utm->sessions, p[0]);
356       hash_unset (utm->session_index_by_vpp_handles, mp->handle);
357       pool_put (utm->sessions, session);
358     }
359   else
360     {
361       clib_warning ("couldn't find session key %llx", mp->handle);
362       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;
372   rmp->handle = mp->handle;
373   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
374 }
375
376 static void
377 vl_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;
384
385   p = hash_get (utm->session_index_by_vpp_handles, mp->handle);
386
387   if (p)
388     {
389       session = pool_elt_at_index (utm->sessions, p[0]);
390       hash_unset (utm->session_index_by_vpp_handles, mp->handle);
391       pool_put (utm->sessions, session);
392       utm->time_to_stop = 1;
393     }
394   else
395     {
396       clib_warning ("couldn't find session key %llx", mp->handle);
397       rv = -11;
398     }
399
400   rmp = vl_msg_api_alloc (sizeof (*rmp));
401   memset (rmp, 0, sizeof (*rmp));
402   rmp->_vl_msg_id = ntohs (VL_API_RESET_SESSION_REPLY);
403   rmp->retval = rv;
404   rmp->handle = mp->handle;
405   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
406 }
407
408 void
409 client_handle_fifo_event_rx (uri_tcp_test_main_t * utm,
410                              session_fifo_event_t * e)
411 {
412   svm_fifo_t *rx_fifo;
413   int n_read, bytes, i;
414
415   rx_fifo = e->fifo;
416
417   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 */
422   do
423     {
424       n_read = svm_fifo_dequeue_nowait (rx_fifo,
425                                         clib_min (vec_len (utm->rx_buf),
426                                                   bytes), utm->rx_buf);
427       if (n_read > 0)
428         {
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         }
442       else
443         {
444           if (n_read == -2)
445             {
446 //            clib_warning ("weird!");
447               break;
448             }
449         }
450
451     }
452   while (bytes > 0);
453 }
454
455 void
456 client_handle_event_queue (uri_tcp_test_main_t * utm)
457 {
458   session_fifo_event_t _e, *e = &_e;;
459
460   unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
461                                 0 /* nowait */ );
462   switch (e->event_type)
463     {
464     case FIFO_EVENT_APP_RX:
465       client_handle_fifo_event_rx (utm, e);
466       break;
467
468     case FIFO_EVENT_DISCONNECT:
469       return;
470
471     default:
472       clib_warning ("unknown event type %d", e->event_type);
473       break;
474     }
475 }
476
477 static void *
478 client_rx_thread_fn (void *arg)
479 {
480   session_fifo_event_t _e, *e = &_e;
481   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
482
483   utm->client_bytes_received = 0;
484   while (1)
485     {
486       unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
487                                     0 /* nowait */ );
488       switch (e->event_type)
489         {
490         case FIFO_EVENT_APP_RX:
491           client_handle_fifo_event_rx (utm, e);
492           break;
493
494         case FIFO_EVENT_DISCONNECT:
495           return 0;
496         default:
497           clib_warning ("unknown event type %d", e->event_type);
498           break;
499         }
500
501       if (PREDICT_FALSE (utm->time_to_stop == 1))
502         break;
503     }
504   pthread_exit (0);
505 }
506
507
508 static void
509 vl_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;
512   session_t *session;
513   u32 session_index;
514   svm_fifo_t *rx_fifo, *tx_fifo;
515   int rv;
516
517   if (mp->retval)
518     {
519       clib_warning ("connection failed with code: %U", format_api_error,
520                     clib_net_to_host_u32 (mp->retval));
521       utm->state = STATE_FAILED;
522       return;
523     }
524
525   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
535   rx_fifo = (svm_fifo_t *) mp->server_rx_fifo;
536   rx_fifo->client_session_index = session_index;
537   tx_fifo = (svm_fifo_t *) mp->server_tx_fifo;
538   tx_fifo->client_session_index = session_index;
539
540   session->server_rx_fifo = rx_fifo;
541   session->server_tx_fifo = tx_fifo;
542   session->vpp_session_handle = mp->handle;
543
544   /* Save handle */
545   utm->connected_session_index = session_index;
546   utm->state = STATE_READY;
547
548   /* Add it to lookup table */
549   hash_set (utm->session_index_by_vpp_handles, mp->handle, session_index);
550
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
561 static void
562 send_test_chunk (uri_tcp_test_main_t * utm, svm_fifo_t * tx_fifo, int mypid,
563                  u32 bytes)
564 {
565   u8 *test_data = utm->connect_test_data;
566   u64 bytes_sent = 0;
567   int test_buf_offset = 0;
568   u32 bytes_to_snd;
569   u32 queue_max_chunk = 64 << 10, actual_write;
570   session_fifo_event_t evt;
571   static int serial_number = 0;
572   int rv;
573
574   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);
577
578   while (bytes_to_snd > 0)
579     {
580       actual_write =
581         bytes_to_snd > queue_max_chunk ? queue_max_chunk : bytes_to_snd;
582       rv = svm_fifo_enqueue_nowait (tx_fifo, actual_write,
583                                     test_data + test_buf_offset);
584
585       if (rv > 0)
586         {
587           bytes_to_snd -= rv;
588           test_buf_offset += rv;
589           bytes_sent += rv;
590
591           if (svm_fifo_set_event (tx_fifo))
592             {
593               /* Fabricate TX event, send to vpp */
594               evt.fifo = tx_fifo;
595               evt.event_type = FIFO_EVENT_APP_TX;
596               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     }
604 }
605
606 void
607 client_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
619   vec_validate (utm->rx_buf, vec_len (test_data) - 1);
620   n_iterations = utm->bytes_to_send / vec_len (test_data);
621
622   for (i = 0; i < n_iterations; i++)
623     {
624       send_test_chunk (utm, tx_fifo, mypid, 0);
625     }
626
627   leftover = utm->bytes_to_send % vec_len (test_data);
628   if (leftover)
629     send_test_chunk (utm, tx_fifo, mypid, leftover);
630
631   if (utm->test_return_packets)
632     {
633       f64 timeout = clib_time_now (&utm->clib_time) + 2;
634
635       /* Wait for the outstanding packets */
636       while (utm->client_bytes_received <
637              vec_len (test_data) * n_iterations + leftover)
638         {
639           if (clib_time_now (&utm->clib_time) > timeout)
640             {
641               clib_warning ("timed out waiting for the missing packets");
642               break;
643             }
644         }
645     }
646   utm->time_to_stop = 1;
647 }
648
649 void
650 client_send_connect (uri_tcp_test_main_t * utm)
651 {
652   vl_api_connect_uri_t *cmp;
653   cmp = vl_msg_api_alloc (sizeof (*cmp));
654   memset (cmp, 0, sizeof (*cmp));
655
656   cmp->_vl_msg_id = ntohs (VL_API_CONNECT_URI);
657   cmp->client_index = utm->my_client_index;
658   cmp->context = ntohl (0xfeedface);
659   memcpy (cmp->uri, utm->connect_uri, vec_len (utm->connect_uri));
660   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & cmp);
661 }
662
663 int
664 client_connect (uri_tcp_test_main_t * utm)
665 {
666   client_send_connect (utm);
667   if (wait_for_state_change (utm, STATE_READY))
668     {
669       clib_warning ("Connect failed");
670       return -1;
671     }
672   return 0;
673 }
674
675 void
676 client_send_disconnect (uri_tcp_test_main_t * utm)
677 {
678   session_t *connected_session;
679   vl_api_disconnect_session_t *dmp;
680   connected_session = pool_elt_at_index (utm->sessions,
681                                          utm->connected_session_index);
682   dmp = vl_msg_api_alloc (sizeof (*dmp));
683   memset (dmp, 0, sizeof (*dmp));
684   dmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION);
685   dmp->client_index = utm->my_client_index;
686   dmp->handle = connected_session->vpp_session_handle;
687   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & dmp);
688 }
689
690 int
691 client_disconnect (uri_tcp_test_main_t * utm)
692 {
693   client_send_disconnect (utm);
694   if (wait_for_state_change (utm, STATE_START))
695     {
696       clib_warning ("Disconnect failed");
697       return -1;
698     }
699   return 0;
700 }
701
702 static void
703 client_test (uri_tcp_test_main_t * utm)
704 {
705   int i;
706
707   if (application_attach (utm))
708     return;
709
710   if (client_connect (utm))
711     {
712       application_detach (utm);
713       return;
714     }
715
716   /* Init test data */
717   vec_validate (utm->connect_test_data, 64 * 1024 - 1);
718   for (i = 0; i < vec_len (utm->connect_test_data); i++)
719     utm->connect_test_data[i] = i & 0xff;
720
721   /* Start send */
722   client_send_data (utm);
723
724   /* Disconnect */
725   client_disconnect (utm);
726
727   application_detach (utm);
728 }
729
730 static void
731 vl_api_bind_uri_reply_t_handler (vl_api_bind_uri_reply_t * mp)
732 {
733   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
734
735   if (mp->retval)
736     {
737       clib_warning ("bind failed: %s", format_api_error,
738                     clib_net_to_host_u32 (mp->retval));
739       utm->state = STATE_FAILED;
740       return;
741     }
742
743   utm->state = STATE_READY;
744 }
745
746 static void
747 vl_api_unbind_uri_reply_t_handler (vl_api_unbind_uri_reply_t * mp)
748 {
749   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
750
751   if (mp->retval != 0)
752     clib_warning ("returned %d", ntohl (mp->retval));
753
754   utm->state = STATE_START;
755 }
756
757 u8 *
758 format_ip4_address (u8 * s, va_list * args)
759 {
760   u8 *a = va_arg (*args, u8 *);
761   return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
762 }
763
764 u8 *
765 format_ip6_address (u8 * s, va_list * args)
766 {
767   ip6_address_t *a = va_arg (*args, ip6_address_t *);
768   u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
769
770   i_max_n_zero = ARRAY_LEN (a->as_u16);
771   max_n_zeros = 0;
772   i_first_zero = i_max_n_zero;
773   n_zeros = 0;
774   for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
775     {
776       u32 is_zero = a->as_u16[i] == 0;
777       if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
778         {
779           i_first_zero = i;
780           n_zeros = 0;
781         }
782       n_zeros += is_zero;
783       if ((!is_zero && n_zeros > max_n_zeros)
784           || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
785         {
786           i_max_n_zero = i_first_zero;
787           max_n_zeros = n_zeros;
788           i_first_zero = ARRAY_LEN (a->as_u16);
789           n_zeros = 0;
790         }
791     }
792
793   last_double_colon = 0;
794   for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
795     {
796       if (i == i_max_n_zero && max_n_zeros > 1)
797         {
798           s = format (s, "::");
799           i += max_n_zeros - 1;
800           last_double_colon = 1;
801         }
802       else
803         {
804           s = format (s, "%s%x",
805                       (last_double_colon || i == 0) ? "" : ":",
806                       clib_net_to_host_u16 (a->as_u16[i]));
807           last_double_colon = 0;
808         }
809     }
810
811   return s;
812 }
813
814 /* Format an IP46 address. */
815 u8 *
816 format_ip46_address (u8 * s, va_list * args)
817 {
818   ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
819   ip46_type_t type = va_arg (*args, ip46_type_t);
820   int is_ip4 = 1;
821
822   switch (type)
823     {
824     case IP46_TYPE_ANY:
825       is_ip4 = ip46_address_is_ip4 (ip46);
826       break;
827     case IP46_TYPE_IP4:
828       is_ip4 = 1;
829       break;
830     case IP46_TYPE_IP6:
831       is_ip4 = 0;
832       break;
833     }
834
835   return is_ip4 ?
836     format (s, "%U", format_ip4_address, &ip46->ip4) :
837     format (s, "%U", format_ip6_address, &ip46->ip6);
838 }
839
840 static void
841 vl_api_accept_session_t_handler (vl_api_accept_session_t * mp)
842 {
843   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
844   vl_api_accept_session_reply_t *rmp;
845   svm_fifo_t *rx_fifo, *tx_fifo;
846   session_t *session;
847   static f64 start_time;
848   u32 session_index;
849   u8 *ip_str;
850
851   if (start_time == 0.0)
852     start_time = clib_time_now (&utm->clib_time);
853
854   ip_str = format (0, "%U", format_ip46_address, &mp->ip, mp->is_ip4);
855   clib_warning ("Accepted session from: %s:%d", ip_str,
856                 clib_net_to_host_u16 (mp->port));
857   utm->vpp_event_queue = (unix_shared_memory_queue_t *)
858     mp->vpp_event_queue_address;
859
860   /* Allocate local session and set it up */
861   pool_get (utm->sessions, session);
862   session_index = session - utm->sessions;
863
864   rx_fifo = (svm_fifo_t *) mp->server_rx_fifo;
865   rx_fifo->client_session_index = session_index;
866   tx_fifo = (svm_fifo_t *) mp->server_tx_fifo;
867   tx_fifo->client_session_index = session_index;
868
869   session->server_rx_fifo = rx_fifo;
870   session->server_tx_fifo = tx_fifo;
871
872   /* Add it to lookup table */
873   hash_set (utm->session_index_by_vpp_handles, mp->handle, session_index);
874
875   utm->state = STATE_READY;
876
877   /* Stats printing */
878   if (pool_elts (utm->sessions) && (pool_elts (utm->sessions) % 20000) == 0)
879     {
880       f64 now = clib_time_now (&utm->clib_time);
881       fformat (stdout, "%d active sessions in %.2f seconds, %.2f/sec...\n",
882                pool_elts (utm->sessions), now - start_time,
883                (f64) pool_elts (utm->sessions) / (now - start_time));
884     }
885
886   /*
887    * Send accept reply to vpp
888    */
889   rmp = vl_msg_api_alloc (sizeof (*rmp));
890   memset (rmp, 0, sizeof (*rmp));
891   rmp->_vl_msg_id = ntohs (VL_API_ACCEPT_SESSION_REPLY);
892   rmp->handle = mp->handle;
893   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & rmp);
894 }
895
896 void
897 server_handle_fifo_event_rx (uri_tcp_test_main_t * utm,
898                              session_fifo_event_t * e)
899 {
900   svm_fifo_t *rx_fifo, *tx_fifo;
901   int n_read;
902   session_fifo_event_t evt;
903   unix_shared_memory_queue_t *q;
904   int rv, bytes;
905
906   rx_fifo = e->fifo;
907   tx_fifo = utm->sessions[rx_fifo->client_session_index].server_tx_fifo;
908
909   bytes = svm_fifo_max_dequeue (rx_fifo);
910   /* Allow enqueuing of a new event */
911   svm_fifo_unset_event (rx_fifo);
912
913   if (bytes == 0)
914     return;
915
916   /* Read the bytes */
917   do
918     {
919       n_read = svm_fifo_dequeue_nowait (rx_fifo, vec_len (utm->rx_buf),
920                                         utm->rx_buf);
921       if (n_read > 0)
922         bytes -= n_read;
923
924       if (utm->drop_packets)
925         continue;
926
927       /* Reflect if a non-drop session */
928       if (n_read > 0)
929         {
930           do
931             {
932               rv = svm_fifo_enqueue_nowait (tx_fifo, n_read, utm->rx_buf);
933             }
934           while (rv <= 0 && !utm->time_to_stop);
935
936           /* If event wasn't set, add one */
937           if (svm_fifo_set_event (tx_fifo))
938             {
939               /* Fabricate TX event, send to vpp */
940               evt.fifo = tx_fifo;
941               evt.event_type = FIFO_EVENT_APP_TX;
942               evt.event_id = e->event_id;
943
944               q = utm->vpp_event_queue;
945               unix_shared_memory_queue_add (q, (u8 *) & evt,
946                                             0 /* do wait for mutex */ );
947             }
948         }
949     }
950   while ((n_read < 0 || bytes > 0) && !utm->time_to_stop);
951 }
952
953 void
954 server_handle_event_queue (uri_tcp_test_main_t * utm)
955 {
956   session_fifo_event_t _e, *e = &_e;;
957
958   while (1)
959     {
960       unix_shared_memory_queue_sub (utm->our_event_queue, (u8 *) e,
961                                     0 /* nowait */ );
962       switch (e->event_type)
963         {
964         case FIFO_EVENT_APP_RX:
965           server_handle_fifo_event_rx (utm, e);
966           break;
967
968         case FIFO_EVENT_DISCONNECT:
969           return;
970
971         default:
972           clib_warning ("unknown event type %d", e->event_type);
973           break;
974         }
975       if (PREDICT_FALSE (utm->time_to_stop == 1))
976         break;
977       if (PREDICT_FALSE (utm->time_to_print_stats == 1))
978         {
979           utm->time_to_print_stats = 0;
980           fformat (stdout, "%d connections\n", pool_elts (utm->sessions));
981         }
982     }
983 }
984
985 void
986 server_send_listen (uri_tcp_test_main_t * utm)
987 {
988   vl_api_bind_uri_t *bmp;
989   bmp = vl_msg_api_alloc (sizeof (*bmp));
990   memset (bmp, 0, sizeof (*bmp));
991
992   bmp->_vl_msg_id = ntohs (VL_API_BIND_URI);
993   bmp->client_index = utm->my_client_index;
994   bmp->context = ntohl (0xfeedface);
995   memcpy (bmp->uri, utm->uri, vec_len (utm->uri));
996   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp);
997 }
998
999 int
1000 server_listen (uri_tcp_test_main_t * utm)
1001 {
1002   server_send_listen (utm);
1003   if (wait_for_state_change (utm, STATE_READY))
1004     {
1005       clib_warning ("timeout waiting for STATE_READY");
1006       return -1;
1007     }
1008   return 0;
1009 }
1010
1011 void
1012 server_send_unbind (uri_tcp_test_main_t * utm)
1013 {
1014   vl_api_unbind_uri_t *ump;
1015
1016   ump = vl_msg_api_alloc (sizeof (*ump));
1017   memset (ump, 0, sizeof (*ump));
1018
1019   ump->_vl_msg_id = ntohs (VL_API_UNBIND_URI);
1020   ump->client_index = utm->my_client_index;
1021   memcpy (ump->uri, utm->uri, vec_len (utm->uri));
1022   vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & ump);
1023 }
1024
1025 int
1026 server_unbind (uri_tcp_test_main_t * utm)
1027 {
1028   server_send_unbind (utm);
1029   if (wait_for_state_change (utm, STATE_START))
1030     {
1031       clib_warning ("timeout waiting for STATE_START");
1032       return -1;
1033     }
1034   return 0;
1035 }
1036
1037 void
1038 server_test (uri_tcp_test_main_t * utm)
1039 {
1040   if (application_attach (utm))
1041     return;
1042
1043   /* Bind to uri */
1044   if (server_listen (utm))
1045     return;
1046
1047   /* Enter handle event loop */
1048   server_handle_event_queue (utm);
1049
1050   /* Cleanup */
1051   server_send_unbind (utm);
1052
1053   application_detach (utm);
1054
1055   fformat (stdout, "Test complete...\n");
1056 }
1057
1058 static void
1059 vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
1060                                            mp)
1061 {
1062   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
1063
1064   clib_warning ("retval %d", ntohl (mp->retval));
1065   utm->state = STATE_START;
1066 }
1067
1068 #define foreach_uri_msg                                 \
1069 _(BIND_URI_REPLY, bind_uri_reply)                       \
1070 _(UNBIND_URI_REPLY, unbind_uri_reply)                   \
1071 _(ACCEPT_SESSION, accept_session)                       \
1072 _(CONNECT_URI_REPLY, connect_uri_reply)                 \
1073 _(DISCONNECT_SESSION, disconnect_session)               \
1074 _(DISCONNECT_SESSION_REPLY, disconnect_session_reply)   \
1075 _(RESET_SESSION, reset_session)                         \
1076 _(APPLICATION_ATTACH_REPLY, application_attach_reply)   \
1077 _(APPLICATION_DETACH_REPLY, application_detach_reply)   \
1078 _(MAP_ANOTHER_SEGMENT, map_another_segment)             \
1079
1080 void
1081 uri_api_hookup (uri_tcp_test_main_t * utm)
1082 {
1083 #define _(N,n)                                                  \
1084     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
1085                            vl_api_##n##_t_handler,              \
1086                            vl_noop_handler,                     \
1087                            vl_api_##n##_t_endian,               \
1088                            vl_api_##n##_t_print,                \
1089                            sizeof(vl_api_##n##_t), 1);
1090   foreach_uri_msg;
1091 #undef _
1092 }
1093
1094 int
1095 main (int argc, char **argv)
1096 {
1097   uri_tcp_test_main_t *utm = &uri_tcp_test_main;
1098   unformat_input_t _argv, *a = &_argv;
1099   u8 *chroot_prefix;
1100   u8 *heap, *uri = 0;
1101   u8 *bind_uri = (u8 *) "tcp://0.0.0.0/1234";
1102   u8 *connect_uri = (u8 *) "tcp://6.0.1.2/1234";
1103   u64 bytes_to_send = 64 << 10, mbytes;
1104   u32 tmp;
1105   mheap_t *h;
1106   session_t *session;
1107   int i;
1108   int i_am_master = 1, drop_packets = 0, test_return_packets = 0;
1109
1110   clib_mem_init (0, 256 << 20);
1111
1112   heap = clib_mem_get_per_cpu_heap ();
1113   h = mheap_header (heap);
1114
1115   /* make the main heap thread-safe */
1116   h->flags |= MHEAP_FLAG_THREAD_SAFE;
1117
1118   vec_validate (utm->rx_buf, 65536);
1119
1120   utm->session_index_by_vpp_handles = hash_create (0, sizeof (uword));
1121
1122   utm->my_pid = getpid ();
1123   utm->configured_segment_size = 1 << 20;
1124
1125   clib_time_init (&utm->clib_time);
1126   init_error_string_table (utm);
1127   svm_fifo_segment_init (0x200000000ULL, 20);
1128   unformat_init_command_line (a, argv);
1129
1130   while (unformat_check_input (a) != UNFORMAT_END_OF_INPUT)
1131     {
1132       if (unformat (a, "chroot prefix %s", &chroot_prefix))
1133         {
1134           vl_set_memory_root_path ((char *) chroot_prefix);
1135         }
1136       else if (unformat (a, "uri %s", &uri))
1137         ;
1138       else if (unformat (a, "segment-size %dM", &tmp))
1139         utm->configured_segment_size = tmp << 20;
1140       else if (unformat (a, "segment-size %dG", &tmp))
1141         utm->configured_segment_size = tmp << 30;
1142       else if (unformat (a, "master"))
1143         i_am_master = 1;
1144       else if (unformat (a, "slave"))
1145         i_am_master = 0;
1146       else if (unformat (a, "drop"))
1147         drop_packets = 1;
1148       else if (unformat (a, "test"))
1149         test_return_packets = 1;
1150       else if (unformat (a, "mbytes %lld", &mbytes))
1151         {
1152           bytes_to_send = mbytes << 20;
1153         }
1154       else if (unformat (a, "gbytes %lld", &mbytes))
1155         {
1156           bytes_to_send = mbytes << 30;
1157         }
1158       else
1159         {
1160           fformat (stderr, "%s: usage [master|slave]\n");
1161           exit (1);
1162         }
1163     }
1164
1165   if (uri)
1166     {
1167       utm->uri = format (0, "%s%c", uri, 0);
1168       utm->connect_uri = format (0, "%s%c", uri, 0);
1169     }
1170   else
1171     {
1172       utm->uri = format (0, "%s%c", bind_uri, 0);
1173       utm->connect_uri = format (0, "%s%c", connect_uri, 0);
1174     }
1175
1176   utm->i_am_master = i_am_master;
1177   utm->segment_main = &svm_fifo_segment_main;
1178   utm->drop_packets = drop_packets;
1179   utm->test_return_packets = test_return_packets;
1180   utm->bytes_to_send = bytes_to_send;
1181
1182   setup_signal_handlers ();
1183   uri_api_hookup (utm);
1184
1185   if (connect_to_vpp (i_am_master ? "uri_tcp_server" : "uri_tcp_client") < 0)
1186     {
1187       svm_region_exit ();
1188       fformat (stderr, "Couldn't connect to vpe, exiting...\n");
1189       exit (1);
1190     }
1191
1192   if (i_am_master == 0)
1193     {
1194       client_test (utm);
1195       vl_client_disconnect_from_vlib ();
1196       exit (0);
1197     }
1198
1199   /* $$$$ hack preallocation */
1200   for (i = 0; i < 200000; i++)
1201     {
1202       pool_get (utm->sessions, session);
1203       memset (session, 0, sizeof (*session));
1204     }
1205   for (i = 0; i < 200000; i++)
1206     pool_put_index (utm->sessions, i);
1207
1208   server_test (utm);
1209
1210   vl_client_disconnect_from_vlib ();
1211   exit (0);
1212 }
1213
1214 /*
1215  * fd.io coding-style-patch-verification: ON
1216  *
1217  * Local Variables:
1218  * eval: (c-set-style "gnu")
1219  * End:
1220  */