Repair vlib API socket server
[vpp.git] / src / vnet / tcp / builtin_client.c
1 /*
2  * builtin_client.c - vpp built-in tcp client/connect code
3  *
4  * Copyright (c) 2017 by Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #include <vnet/vnet.h>
19 #include <vnet/plugin/plugin.h>
20 #include <vnet/tcp/builtin_client.h>
21
22 #include <vlibapi/api.h>
23 #include <vlibmemory/api.h>
24 #include <vpp/app/version.h>
25
26 #define TCP_BUILTIN_CLIENT_DBG (0)
27
28 static void
29 signal_evt_to_cli_i (int *code)
30 {
31   tclient_main_t *tm = &tclient_main;
32   ASSERT (vlib_get_thread_index () == 0);
33   vlib_process_signal_event (tm->vlib_main, tm->cli_node_index, *code, 0);
34 }
35
36 static void
37 signal_evt_to_cli (int code)
38 {
39   if (vlib_get_thread_index () != 0)
40     vl_api_rpc_call_main_thread (signal_evt_to_cli_i, (u8 *) & code,
41                                  sizeof (code));
42   else
43     signal_evt_to_cli_i (&code);
44 }
45
46 static void
47 send_test_chunk (tclient_main_t * tm, session_t * s)
48 {
49   u8 *test_data = tm->connect_test_data;
50   int test_buf_offset;
51   u32 bytes_this_chunk;
52   session_fifo_event_t evt;
53   static int serial_number = 0;
54   svm_fifo_t *txf;
55   int rv;
56
57   ASSERT (vec_len (test_data) > 0);
58
59   test_buf_offset = s->bytes_sent % vec_len (test_data);
60   bytes_this_chunk = vec_len (test_data) - test_buf_offset;
61
62   bytes_this_chunk = bytes_this_chunk < s->bytes_to_send
63     ? bytes_this_chunk : s->bytes_to_send;
64
65   txf = s->server_tx_fifo;
66   rv = svm_fifo_enqueue_nowait (txf, bytes_this_chunk,
67                                 test_data + test_buf_offset);
68
69   /* If we managed to enqueue data... */
70   if (rv > 0)
71     {
72       /* Account for it... */
73       s->bytes_to_send -= rv;
74       s->bytes_sent += rv;
75
76       if (TCP_BUILTIN_CLIENT_DBG)
77         {
78           /* *INDENT-OFF* */
79           ELOG_TYPE_DECLARE (e) =
80             {
81               .format = "tx-enq: xfer %d bytes, sent %u remain %u",
82               .format_args = "i4i4i4",
83             };
84           /* *INDENT-ON* */
85           struct
86           {
87             u32 data[3];
88           } *ed;
89           ed = ELOG_DATA (&vlib_global_main.elog_main, e);
90           ed->data[0] = rv;
91           ed->data[1] = s->bytes_sent;
92           ed->data[2] = s->bytes_to_send;
93         }
94
95       /* Poke the session layer */
96       if (svm_fifo_set_event (txf))
97         {
98           /* Fabricate TX event, send to vpp */
99           evt.fifo = txf;
100           evt.event_type = FIFO_EVENT_APP_TX;
101           evt.event_id = serial_number++;
102
103           if (unix_shared_memory_queue_add
104               (tm->vpp_event_queue[txf->master_thread_index], (u8 *) & evt,
105                0 /* do wait for mutex */ ))
106             clib_warning ("could not enqueue event");
107         }
108     }
109 }
110
111 static void
112 receive_test_chunk (tclient_main_t * tm, session_t * s)
113 {
114   svm_fifo_t *rx_fifo = s->server_rx_fifo;
115   int n_read, test_bytes = 0;
116   u32 my_thread_index = vlib_get_thread_index ();
117
118   /* Allow enqueuing of new event */
119   // svm_fifo_unset_event (rx_fifo);
120
121   if (test_bytes)
122     {
123       n_read = svm_fifo_dequeue_nowait (rx_fifo,
124                                         vec_len (tm->rx_buf[my_thread_index]),
125                                         tm->rx_buf[my_thread_index]);
126     }
127   else
128     {
129       n_read = svm_fifo_max_dequeue (rx_fifo);
130       svm_fifo_dequeue_drop (rx_fifo, n_read);
131     }
132
133   if (n_read > 0)
134     {
135       if (TCP_BUILTIN_CLIENT_DBG)
136         {
137           /* *INDENT-OFF* */
138           ELOG_TYPE_DECLARE (e) =
139             {
140               .format = "rx-deq: %d bytes",
141               .format_args = "i4",
142             };
143           /* *INDENT-ON* */
144           struct
145           {
146             u32 data[1];
147           } *ed;
148           ed = ELOG_DATA (&vlib_global_main.elog_main, e);
149           ed->data[0] = n_read;
150         }
151
152       if (test_bytes)
153         {
154           int i;
155           for (i = 0; i < n_read; i++)
156             {
157               if (tm->rx_buf[my_thread_index][i]
158                   != ((s->bytes_received + i) & 0xff))
159                 {
160                   clib_warning ("read %d error at byte %lld, 0x%x not 0x%x",
161                                 n_read, s->bytes_received + i,
162                                 tm->rx_buf[my_thread_index][i],
163                                 ((s->bytes_received + i) & 0xff));
164                 }
165             }
166         }
167       s->bytes_to_receive -= n_read;
168       s->bytes_received += n_read;
169     }
170 }
171
172 static uword
173 builtin_client_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
174                         vlib_frame_t * frame)
175 {
176   tclient_main_t *tm = &tclient_main;
177   int my_thread_index = vlib_get_thread_index ();
178   session_t *sp;
179   int i;
180   int delete_session;
181   u32 *connection_indices;
182   u32 *connections_this_batch;
183   u32 nconnections_this_batch;
184
185   connection_indices = tm->connection_index_by_thread[my_thread_index];
186   connections_this_batch =
187     tm->connections_this_batch_by_thread[my_thread_index];
188
189   if ((tm->run_test == 0) ||
190       ((vec_len (connection_indices) == 0)
191        && vec_len (connections_this_batch) == 0))
192     return 0;
193
194   /* Grab another pile of connections */
195   if (PREDICT_FALSE (vec_len (connections_this_batch) == 0))
196     {
197       nconnections_this_batch =
198         clib_min (tm->connections_per_batch, vec_len (connection_indices));
199
200       ASSERT (nconnections_this_batch > 0);
201       vec_validate (connections_this_batch, nconnections_this_batch - 1);
202       clib_memcpy (connections_this_batch,
203                    connection_indices + vec_len (connection_indices)
204                    - nconnections_this_batch,
205                    nconnections_this_batch * sizeof (u32));
206       _vec_len (connection_indices) -= nconnections_this_batch;
207     }
208
209   if (PREDICT_FALSE (tm->prev_conns != tm->connections_per_batch
210                      && tm->prev_conns == vec_len (connections_this_batch)))
211     {
212       tm->repeats++;
213       tm->prev_conns = vec_len (connections_this_batch);
214       if (tm->repeats == 500000)
215         {
216           clib_warning ("stuck clients");
217         }
218     }
219   else
220     {
221       tm->prev_conns = vec_len (connections_this_batch);
222       tm->repeats = 0;
223     }
224
225   for (i = 0; i < vec_len (connections_this_batch); i++)
226     {
227       delete_session = 1;
228
229       sp = pool_elt_at_index (tm->sessions, connections_this_batch[i]);
230
231       if (sp->bytes_to_send > 0)
232         {
233           send_test_chunk (tm, sp);
234           delete_session = 0;
235         }
236       if (sp->bytes_to_receive > 0)
237         {
238           receive_test_chunk (tm, sp);
239           delete_session = 0;
240         }
241       if (PREDICT_FALSE (delete_session == 1))
242         {
243           u32 index, thread_index;
244           stream_session_t *s;
245
246           __sync_fetch_and_add (&tm->tx_total, sp->bytes_sent);
247           __sync_fetch_and_add (&tm->rx_total, sp->bytes_received);
248
249           stream_session_parse_handle (sp->vpp_session_handle,
250                                        &index, &thread_index);
251           s = stream_session_get_if_valid (index, thread_index);
252
253           if (s)
254             {
255               vnet_disconnect_args_t _a, *a = &_a;
256               a->handle = stream_session_handle (s);
257               a->app_index = tm->app_index;
258               vnet_disconnect_session (a);
259
260               vec_delete (connections_this_batch, 1, i);
261               i--;
262               __sync_fetch_and_add (&tm->ready_connections, -1);
263             }
264           else
265             clib_warning ("session AWOL?");
266
267           /* Kick the debug CLI process */
268           if (tm->ready_connections == 0)
269             {
270               signal_evt_to_cli (2);
271             }
272         }
273     }
274
275   tm->connection_index_by_thread[my_thread_index] = connection_indices;
276   tm->connections_this_batch_by_thread[my_thread_index] =
277     connections_this_batch;
278   return 0;
279 }
280
281 /* *INDENT-OFF* */
282 VLIB_REGISTER_NODE (builtin_client_node) =
283 {
284   .function = builtin_client_node_fn,
285   .name = "builtin-tcp-client",
286   .type = VLIB_NODE_TYPE_INPUT,
287   .state = VLIB_NODE_STATE_DISABLED,
288 };
289 /* *INDENT-ON* */
290
291 static int
292 create_api_loopback (tclient_main_t * tm)
293 {
294   api_main_t *am = &api_main;
295   vl_shmem_hdr_t *shmem_hdr;
296
297   shmem_hdr = am->shmem_hdr;
298   tm->vl_input_queue = shmem_hdr->vl_input_queue;
299   tm->my_client_index =
300     vl_api_memclnt_create_internal ("tcp_test_client", tm->vl_input_queue);
301   return 0;
302 }
303
304 static int
305 tcp_test_clients_init (vlib_main_t * vm)
306 {
307   tclient_main_t *tm = &tclient_main;
308   vlib_thread_main_t *vtm = vlib_get_thread_main ();
309   u32 num_threads;
310   int i;
311
312   if (create_api_loopback (tm))
313     return -1;
314
315   num_threads = 1 /* main thread */  + vtm->n_threads;
316
317   /* Init test data. Big buffer */
318   vec_validate (tm->connect_test_data, 1024 * 1024 - 1);
319   for (i = 0; i < vec_len (tm->connect_test_data); i++)
320     tm->connect_test_data[i] = i & 0xff;
321
322   vec_validate (tm->rx_buf, num_threads - 1);
323   for (i = 0; i < num_threads; i++)
324     vec_validate (tm->rx_buf[i], vec_len (tm->connect_test_data) - 1);
325
326   tm->is_init = 1;
327
328   vec_validate (tm->connection_index_by_thread, vtm->n_vlib_mains);
329   vec_validate (tm->connections_this_batch_by_thread, vtm->n_vlib_mains);
330   vec_validate (tm->vpp_event_queue, vtm->n_vlib_mains);
331
332   return 0;
333 }
334
335 static int
336 builtin_session_connected_callback (u32 app_index, u32 api_context,
337                                     stream_session_t * s, u8 is_fail)
338 {
339   tclient_main_t *tm = &tclient_main;
340   session_t *session;
341   u32 session_index;
342   u8 thread_index = vlib_get_thread_index ();
343
344   if (is_fail)
345     {
346       clib_warning ("connection %d failed!", api_context);
347       signal_evt_to_cli (-1);
348       return 0;
349     }
350
351   ASSERT (s->thread_index == thread_index);
352
353   if (!tm->vpp_event_queue[thread_index])
354     tm->vpp_event_queue[thread_index] =
355       session_manager_get_vpp_event_queue (thread_index);
356
357   /*
358    * Setup session
359    */
360   clib_spinlock_lock_if_init (&tm->sessions_lock);
361   pool_get (tm->sessions, session);
362   clib_spinlock_unlock_if_init (&tm->sessions_lock);
363
364   memset (session, 0, sizeof (*session));
365   session_index = session - tm->sessions;
366   session->bytes_to_send = tm->bytes_to_send;
367   session->bytes_to_receive = tm->no_return ? 0ULL : tm->bytes_to_send;
368   session->server_rx_fifo = s->server_rx_fifo;
369   session->server_rx_fifo->client_session_index = session_index;
370   session->server_tx_fifo = s->server_tx_fifo;
371   session->server_tx_fifo->client_session_index = session_index;
372   session->vpp_session_handle = stream_session_handle (s);
373
374   vec_add1 (tm->connection_index_by_thread[thread_index], session_index);
375   __sync_fetch_and_add (&tm->ready_connections, 1);
376   if (tm->ready_connections == tm->expected_connections)
377     {
378       tm->run_test = 1;
379       /* Signal the CLI process that the action is starting... */
380       signal_evt_to_cli (1);
381     }
382
383   return 0;
384 }
385
386 static void
387 builtin_session_reset_callback (stream_session_t * s)
388 {
389   if (s->session_state == SESSION_STATE_READY)
390     clib_warning ("Reset active connection %U", format_stream_session, s, 2);
391   stream_session_cleanup (s);
392   return;
393 }
394
395 static int
396 builtin_session_create_callback (stream_session_t * s)
397 {
398   return 0;
399 }
400
401 static void
402 builtin_session_disconnect_callback (stream_session_t * s)
403 {
404   tclient_main_t *tm = &tclient_main;
405   vnet_disconnect_args_t _a, *a = &_a;
406   a->handle = stream_session_handle (s);
407   a->app_index = tm->app_index;
408   vnet_disconnect_session (a);
409   return;
410 }
411
412 static int
413 builtin_server_rx_callback (stream_session_t * s)
414 {
415   return 0;
416 }
417
418 /* *INDENT-OFF* */
419 static session_cb_vft_t builtin_clients = {
420   .session_reset_callback = builtin_session_reset_callback,
421   .session_connected_callback = builtin_session_connected_callback,
422   .session_accept_callback = builtin_session_create_callback,
423   .session_disconnect_callback = builtin_session_disconnect_callback,
424   .builtin_server_rx_callback = builtin_server_rx_callback
425 };
426 /* *INDENT-ON* */
427
428 static int
429 attach_builtin_test_clients_app (void)
430 {
431   tclient_main_t *tm = &tclient_main;
432   vnet_app_attach_args_t _a, *a = &_a;
433   u8 segment_name[128];
434   u32 segment_name_length, prealloc_fifos;
435   u64 options[16];
436
437   segment_name_length = ARRAY_LEN (segment_name);
438
439   memset (a, 0, sizeof (*a));
440   memset (options, 0, sizeof (options));
441
442   a->api_client_index = tm->my_client_index;
443   a->segment_name = segment_name;
444   a->segment_name_length = segment_name_length;
445   a->session_cb_vft = &builtin_clients;
446
447   prealloc_fifos = tm->prealloc_fifos ? tm->expected_connections : 1;
448
449   options[SESSION_OPTIONS_ACCEPT_COOKIE] = 0x12345678;
450   options[SESSION_OPTIONS_SEGMENT_SIZE] = (2ULL << 32);
451   options[SESSION_OPTIONS_RX_FIFO_SIZE] = tm->fifo_size;
452   options[SESSION_OPTIONS_TX_FIFO_SIZE] = tm->fifo_size;
453   options[APP_OPTIONS_PRIVATE_SEGMENT_COUNT] = tm->private_segment_count;
454   options[APP_OPTIONS_PRIVATE_SEGMENT_SIZE] = tm->private_segment_size;
455   options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = prealloc_fifos;
456
457   options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_BUILTIN_APP;
458
459   a->options = options;
460
461   if (vnet_application_attach (a))
462     return -1;
463
464   tm->app_index = a->app_index;
465   return 0;
466 }
467
468 static void *
469 tclient_thread_fn (void *arg)
470 {
471   return 0;
472 }
473
474 /** Start a transmit thread */
475 int
476 start_tx_pthread (tclient_main_t * tm)
477 {
478   if (tm->client_thread_handle == 0)
479     {
480       int rv = pthread_create (&tm->client_thread_handle,
481                                NULL /*attr */ ,
482                                tclient_thread_fn, 0);
483       if (rv)
484         {
485           tm->client_thread_handle = 0;
486           return -1;
487         }
488     }
489   return 0;
490 }
491
492 void
493 clients_connect (vlib_main_t * vm, u8 * uri, u32 n_clients)
494 {
495   tclient_main_t *tm = &tclient_main;
496   vnet_connect_args_t _a, *a = &_a;
497   int i;
498   for (i = 0; i < n_clients; i++)
499     {
500       memset (a, 0, sizeof (*a));
501
502       a->uri = (char *) uri;
503       a->api_context = i;
504       a->app_index = tm->app_index;
505       a->mp = 0;
506       vnet_connect_uri (a);
507
508       /* Crude pacing for call setups  */
509       if ((i % 4) == 0)
510         vlib_process_suspend (vm, 10e-6);
511       ASSERT (i + 1 >= tm->ready_connections);
512       while (i + 1 - tm->ready_connections > 1000)
513         {
514           vlib_process_suspend (vm, 100e-6);
515         }
516     }
517 }
518
519 static clib_error_t *
520 test_tcp_clients_command_fn (vlib_main_t * vm,
521                              unformat_input_t * input,
522                              vlib_cli_command_t * cmd)
523 {
524   tclient_main_t *tm = &tclient_main;
525   vlib_thread_main_t *thread_main = vlib_get_thread_main ();
526   uword *event_data = 0, event_type;
527   u8 *default_connect_uri = (u8 *) "tcp://6.0.1.1/1234", *uri;
528   u64 tmp, total_bytes;
529   f64 test_timeout = 20.0, syn_timeout = 20.0, delta;
530   f64 time_before_connects;
531   u32 n_clients = 1;
532   int preallocate_sessions = 0;
533   char *transfer_type;
534   int i;
535
536   tm->bytes_to_send = 8192;
537   tm->no_return = 0;
538   tm->fifo_size = 64 << 10;
539   tm->connections_per_batch = 1000;
540   tm->private_segment_count = 0;
541   tm->private_segment_size = 0;
542   tm->vlib_main = vm;
543   if (thread_main->n_vlib_mains > 1)
544     clib_spinlock_init (&tm->sessions_lock);
545   vec_free (tm->connect_uri);
546
547   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
548     {
549       if (unformat (input, "nclients %d", &n_clients))
550         ;
551       else if (unformat (input, "mbytes %lld", &tmp))
552         tm->bytes_to_send = tmp << 20;
553       else if (unformat (input, "gbytes %lld", &tmp))
554         tm->bytes_to_send = tmp << 30;
555       else if (unformat (input, "bytes %lld", &tm->bytes_to_send))
556         ;
557       else if (unformat (input, "uri %s", &tm->connect_uri))
558         ;
559       else if (unformat (input, "test-timeout %f", &test_timeout))
560         ;
561       else if (unformat (input, "syn-timeout %f", &syn_timeout))
562         ;
563       else if (unformat (input, "no-return"))
564         tm->no_return = 1;
565       else if (unformat (input, "fifo-size %d", &tm->fifo_size))
566         tm->fifo_size <<= 10;
567       else if (unformat (input, "private-segment-count %d",
568                          &tm->private_segment_count))
569         ;
570       else if (unformat (input, "private-segment-size %U",
571                          unformat_memory_size, &tmp))
572         {
573           if (tmp >= 0x100000000ULL)
574             return clib_error_return
575               (0, "private segment size %lld (%llu) too large", tmp, tmp);
576           tm->private_segment_size = tmp;
577         }
578       else if (unformat (input, "preallocate-fifos"))
579         tm->prealloc_fifos = 1;
580       else if (unformat (input, "preallocate-sessions"))
581         preallocate_sessions = 1;
582       else
583         if (unformat (input, "client-batch %d", &tm->connections_per_batch))
584         ;
585       else
586         return clib_error_return (0, "unknown input `%U'",
587                                   format_unformat_error, input);
588     }
589
590   /* Store cli process node index for signalling */
591   tm->cli_node_index = vlib_get_current_process (vm)->node_runtime.node_index;
592
593   if (tm->is_init == 0)
594     {
595       if (tcp_test_clients_init (vm))
596         return clib_error_return (0, "failed init");
597     }
598
599
600   tm->ready_connections = 0;
601   tm->expected_connections = n_clients;
602   tm->rx_total = 0;
603   tm->tx_total = 0;
604
605   uri = default_connect_uri;
606   if (tm->connect_uri)
607     uri = tm->connect_uri;
608
609 #if TCP_BUILTIN_CLIENT_PTHREAD
610   start_tx_pthread ();
611 #endif
612
613   vlib_worker_thread_barrier_sync (vm);
614   vnet_session_enable_disable (vm, 1 /* turn on TCP, etc. */ );
615   vlib_worker_thread_barrier_release (vm);
616
617   if (tm->test_client_attached == 0)
618     {
619       if (attach_builtin_test_clients_app ())
620         {
621           return clib_error_return (0, "app attach failed");
622         }
623     }
624   tm->test_client_attached = 1;
625
626   /* Turn on the builtin client input nodes */
627   for (i = 0; i < thread_main->n_vlib_mains; i++)
628     vlib_node_set_state (vlib_mains[i], builtin_client_node.index,
629                          VLIB_NODE_STATE_POLLING);
630
631   if (preallocate_sessions)
632     {
633       session_t *sp __attribute__ ((unused));
634       for (i = 0; i < n_clients; i++)
635         pool_get (tm->sessions, sp);
636       for (i = 0; i < n_clients; i++)
637         pool_put_index (tm->sessions, i);
638     }
639
640   /* Fire off connect requests */
641   time_before_connects = vlib_time_now (vm);
642   clients_connect (vm, uri, n_clients);
643
644   /* Park until the sessions come up, or ten seconds elapse... */
645   vlib_process_wait_for_event_or_clock (vm, syn_timeout);
646   event_type = vlib_process_get_events (vm, &event_data);
647   switch (event_type)
648     {
649     case ~0:
650       vlib_cli_output (vm, "Timeout with only %d sessions active...",
651                        tm->ready_connections);
652       goto cleanup;
653
654     case 1:
655       delta = vlib_time_now (vm) - time_before_connects;
656
657       if (delta != 0.0)
658         {
659           vlib_cli_output
660             (vm, "%d three-way handshakes in %.2f seconds, %.2f/sec",
661              n_clients, delta, ((f64) n_clients) / delta);
662         }
663
664       tm->test_start_time = vlib_time_now (tm->vlib_main);
665       vlib_cli_output (vm, "Test started at %.6f", tm->test_start_time);
666       break;
667
668     default:
669       vlib_cli_output (vm, "unexpected event(1): %d", event_type);
670       goto cleanup;
671     }
672
673   /* Now wait for the sessions to finish... */
674   vlib_process_wait_for_event_or_clock (vm, test_timeout);
675   event_type = vlib_process_get_events (vm, &event_data);
676   switch (event_type)
677     {
678     case ~0:
679       vlib_cli_output (vm, "Timeout with %d sessions still active...",
680                        tm->ready_connections);
681       goto cleanup;
682
683     case 2:
684       tm->test_end_time = vlib_time_now (vm);
685       vlib_cli_output (vm, "Test finished at %.6f", tm->test_end_time);
686       break;
687
688     default:
689       vlib_cli_output (vm, "unexpected event(2): %d", event_type);
690       goto cleanup;
691     }
692
693   delta = tm->test_end_time - tm->test_start_time;
694
695   if (delta != 0.0)
696     {
697       total_bytes = (tm->no_return ? tm->tx_total : tm->rx_total);
698       transfer_type = tm->no_return ? "half-duplex" : "full-duplex";
699       vlib_cli_output (vm,
700                        "%lld bytes (%lld mbytes, %lld gbytes) in %.2f seconds",
701                        total_bytes, total_bytes / (1ULL << 20),
702                        total_bytes / (1ULL << 30), delta);
703       vlib_cli_output (vm, "%.2f bytes/second %s",
704                        ((f64) total_bytes) / (delta), transfer_type);
705       vlib_cli_output (vm, "%.4f gbit/second %s",
706                        (((f64) total_bytes * 8.0) / delta / 1e9),
707                        transfer_type);
708     }
709   else
710     vlib_cli_output (vm, "zero delta-t?");
711
712 cleanup:
713   tm->run_test = 0;
714   for (i = 0; i < vec_len (tm->connection_index_by_thread); i++)
715     {
716       vec_reset_length (tm->connection_index_by_thread[i]);
717       vec_reset_length (tm->connections_this_batch_by_thread[i]);
718     }
719
720   pool_free (tm->sessions);
721
722   /* Detach the application, so we can use different fifo sizes next time */
723   if (tm->test_client_attached)
724     {
725       vnet_app_detach_args_t _da, *da = &_da;
726       int rv;
727
728       da->app_index = tm->app_index;
729
730       rv = vnet_application_detach (da);
731       if (rv)
732         vlib_cli_output (vm, "WARNING: app detach failed...");
733       tm->test_client_attached = 0;
734       tm->app_index = ~0;
735     }
736   return 0;
737 }
738
739 /* *INDENT-OFF* */
740 VLIB_CLI_COMMAND (test_clients_command, static) =
741 {
742   .path = "test tcp clients",
743   .short_help = "test tcp clients [nclients %d] [[m|g]bytes <bytes>] "
744       "[test-timeout <time>][syn-timeout <time>][no-return][fifo-size <size>]"
745       "[private-segment-count <count>][private-segment-size <bytes>[m|g]]"
746       "[preallocate-fifos][preallocate-sessions][client-batch <batch-size>]"
747       "[uri <tcp://ip/port>]",
748   .function = test_tcp_clients_command_fn,
749   .is_mp_safe = 1,
750 };
751 /* *INDENT-ON* */
752
753 clib_error_t *
754 tcp_test_clients_main_init (vlib_main_t * vm)
755 {
756   tclient_main_t *tm = &tclient_main;
757   tm->is_init = 0;
758   return 0;
759 }
760
761 VLIB_INIT_FUNCTION (tcp_test_clients_main_init);
762
763 /*
764  * fd.io coding-style-patch-verification: ON
765  *
766  * Local Variables:
767  * eval: (c-set-style "gnu")
768  * End:
769  */