blob: 7a0d2ea1744642947ac9246d4639cd64cf114340 [file] [log] [blame]
Florin Coras6792ec02017-03-13 03:49:51 -07001/*
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>
Florin Coras6792ec02017-03-13 03:49:51 -070024#include <vpp/app/version.h>
25
Florin Corasf03a59a2017-06-09 21:07:32 -070026#define TCP_BUILTIN_CLIENT_DBG (0)
Florin Coras3e350af2017-03-30 02:54:28 -070027
Florin Coras6792ec02017-03-13 03:49:51 -070028static void
Florin Coras68810622017-07-24 17:40:28 -070029signal_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
36static void
37signal_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
46static void
Florin Coras6792ec02017-03-13 03:49:51 -070047send_test_chunk (tclient_main_t * tm, session_t * s)
48{
49 u8 *test_data = tm->connect_test_data;
Dave Barach45ce3fb2017-03-28 12:31:33 -040050 int test_buf_offset;
Florin Coras6792ec02017-03-13 03:49:51 -070051 u32 bytes_this_chunk;
52 session_fifo_event_t evt;
53 static int serial_number = 0;
Florin Coras68810622017-07-24 17:40:28 -070054 svm_fifo_t *txf;
Florin Coras6792ec02017-03-13 03:49:51 -070055 int rv;
Florin Coras82b13a82017-04-25 11:58:06 -070056
57 ASSERT (vec_len (test_data) > 0);
58
Florin Coras3e350af2017-03-30 02:54:28 -070059 test_buf_offset = s->bytes_sent % vec_len (test_data);
60 bytes_this_chunk = vec_len (test_data) - test_buf_offset;
Florin Coras6792ec02017-03-13 03:49:51 -070061
Florin Coras3e350af2017-03-30 02:54:28 -070062 bytes_this_chunk = bytes_this_chunk < s->bytes_to_send
63 ? bytes_this_chunk : s->bytes_to_send;
64
Florin Coras68810622017-07-24 17:40:28 -070065 txf = s->server_tx_fifo;
66 rv = svm_fifo_enqueue_nowait (txf, bytes_this_chunk,
Florin Coras3e350af2017-03-30 02:54:28 -070067 test_data + test_buf_offset);
68
69 /* If we managed to enqueue data... */
70 if (rv > 0)
Florin Coras6792ec02017-03-13 03:49:51 -070071 {
Dave Barach0194f1a2017-05-15 10:11:39 -040072 /* Account for it... */
73 s->bytes_to_send -= rv;
74 s->bytes_sent += rv;
75
Florin Coras3e350af2017-03-30 02:54:28 -070076 if (TCP_BUILTIN_CLIENT_DBG)
Florin Coras6792ec02017-03-13 03:49:51 -070077 {
Florin Coras3e350af2017-03-30 02:54:28 -070078 /* *INDENT-OFF* */
79 ELOG_TYPE_DECLARE (e) =
80 {
Dave Barach0194f1a2017-05-15 10:11:39 -040081 .format = "tx-enq: xfer %d bytes, sent %u remain %u",
82 .format_args = "i4i4i4",
Florin Coras3e350af2017-03-30 02:54:28 -070083 };
84 /* *INDENT-ON* */
85 struct
86 {
Dave Barach0194f1a2017-05-15 10:11:39 -040087 u32 data[3];
Florin Coras3e350af2017-03-30 02:54:28 -070088 } *ed;
89 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
90 ed->data[0] = rv;
Dave Barach0194f1a2017-05-15 10:11:39 -040091 ed->data[1] = s->bytes_sent;
92 ed->data[2] = s->bytes_to_send;
Florin Coras3e350af2017-03-30 02:54:28 -070093 }
Florin Coras6792ec02017-03-13 03:49:51 -070094
Florin Corasf03a59a2017-06-09 21:07:32 -070095 /* Poke the session layer */
Florin Coras68810622017-07-24 17:40:28 -070096 if (svm_fifo_set_event (txf))
Florin Coras3e350af2017-03-30 02:54:28 -070097 {
98 /* Fabricate TX event, send to vpp */
Florin Coras68810622017-07-24 17:40:28 -070099 evt.fifo = txf;
Florin Corasa5464812017-04-19 13:00:05 -0700100 evt.event_type = FIFO_EVENT_APP_TX;
Florin Coras3e350af2017-03-30 02:54:28 -0700101 evt.event_id = serial_number++;
102
Florin Coras68810622017-07-24 17:40:28 -0700103 if (unix_shared_memory_queue_add
104 (tm->vpp_event_queue[txf->master_thread_index], (u8 *) & evt,
105 0 /* do wait for mutex */ ))
Florin Corasf03a59a2017-06-09 21:07:32 -0700106 clib_warning ("could not enqueue event");
Florin Coras6792ec02017-03-13 03:49:51 -0700107 }
108 }
109}
110
111static void
112receive_test_chunk (tclient_main_t * tm, session_t * s)
113{
114 svm_fifo_t *rx_fifo = s->server_rx_fifo;
Florin Coras3e350af2017-03-30 02:54:28 -0700115 int n_read, test_bytes = 0;
Florin Coras68810622017-07-24 17:40:28 -0700116 u32 my_thread_index = vlib_get_thread_index ();
Florin Coras6792ec02017-03-13 03:49:51 -0700117
Florin Coras6792ec02017-03-13 03:49:51 -0700118 /* Allow enqueuing of new event */
Florin Coras3e350af2017-03-30 02:54:28 -0700119 // svm_fifo_unset_event (rx_fifo);
Florin Coras6792ec02017-03-13 03:49:51 -0700120
Florin Coras93992a92017-05-24 18:03:56 -0700121 if (test_bytes)
122 {
Florin Coras68810622017-07-24 17:40:28 -0700123 n_read = svm_fifo_dequeue_nowait (rx_fifo,
124 vec_len (tm->rx_buf[my_thread_index]),
125 tm->rx_buf[my_thread_index]);
Florin Coras93992a92017-05-24 18:03:56 -0700126 }
127 else
128 {
129 n_read = svm_fifo_max_dequeue (rx_fifo);
130 svm_fifo_dequeue_drop (rx_fifo, n_read);
131 }
132
Florin Coras3e350af2017-03-30 02:54:28 -0700133 if (n_read > 0)
Florin Coras6792ec02017-03-13 03:49:51 -0700134 {
Florin Coras3e350af2017-03-30 02:54:28 -0700135 if (TCP_BUILTIN_CLIENT_DBG)
Florin Coras6792ec02017-03-13 03:49:51 -0700136 {
Florin Coras3e350af2017-03-30 02:54:28 -0700137 /* *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;
Florin Coras6792ec02017-03-13 03:49:51 -0700155 for (i = 0; i < n_read; i++)
156 {
Florin Coras68810622017-07-24 17:40:28 -0700157 if (tm->rx_buf[my_thread_index][i]
158 != ((s->bytes_received + i) & 0xff))
Florin Coras6792ec02017-03-13 03:49:51 -0700159 {
160 clib_warning ("read %d error at byte %lld, 0x%x not 0x%x",
Florin Coras68810622017-07-24 17:40:28 -0700161 n_read, s->bytes_received + i,
162 tm->rx_buf[my_thread_index][i],
Florin Coras6792ec02017-03-13 03:49:51 -0700163 ((s->bytes_received + i) & 0xff));
164 }
165 }
Florin Coras6792ec02017-03-13 03:49:51 -0700166 }
Florin Coras3e350af2017-03-30 02:54:28 -0700167 s->bytes_to_receive -= n_read;
168 s->bytes_received += n_read;
Florin Coras6792ec02017-03-13 03:49:51 -0700169 }
Florin Coras6792ec02017-03-13 03:49:51 -0700170}
171
Dave Barach10d8cc62017-05-30 09:30:07 -0400172static uword
173builtin_client_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
174 vlib_frame_t * frame)
Florin Coras6792ec02017-03-13 03:49:51 -0700175{
176 tclient_main_t *tm = &tclient_main;
Dave Barach10d8cc62017-05-30 09:30:07 -0400177 int my_thread_index = vlib_get_thread_index ();
Florin Coras6792ec02017-03-13 03:49:51 -0700178 session_t *sp;
Florin Coras6792ec02017-03-13 03:49:51 -0700179 int i;
Dave Barach10d8cc62017-05-30 09:30:07 -0400180 int delete_session;
181 u32 *connection_indices;
Dave Barach2c25a622017-06-26 11:35:07 -0400182 u32 *connections_this_batch;
183 u32 nconnections_this_batch;
Dave Barach0194f1a2017-05-15 10:11:39 -0400184
Dave Barach10d8cc62017-05-30 09:30:07 -0400185 connection_indices = tm->connection_index_by_thread[my_thread_index];
Dave Barach2c25a622017-06-26 11:35:07 -0400186 connections_this_batch =
187 tm->connections_this_batch_by_thread[my_thread_index];
Florin Coras6792ec02017-03-13 03:49:51 -0700188
Dave Barach2c25a622017-06-26 11:35:07 -0400189 if ((tm->run_test == 0) ||
190 ((vec_len (connection_indices) == 0)
191 && vec_len (connections_this_batch) == 0))
Dave Barach10d8cc62017-05-30 09:30:07 -0400192 return 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700193
Dave Barach2c25a622017-06-26 11:35:07 -0400194 /* 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++)
Florin Coras6792ec02017-03-13 03:49:51 -0700226 {
Dave Barach10d8cc62017-05-30 09:30:07 -0400227 delete_session = 1;
228
Dave Barach2c25a622017-06-26 11:35:07 -0400229 sp = pool_elt_at_index (tm->sessions, connections_this_batch[i]);
Dave Barach10d8cc62017-05-30 09:30:07 -0400230
Dave Barach2c25a622017-06-26 11:35:07 -0400231 if (sp->bytes_to_send > 0)
Florin Coras6792ec02017-03-13 03:49:51 -0700232 {
Dave Barach10d8cc62017-05-30 09:30:07 -0400233 send_test_chunk (tm, sp);
234 delete_session = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700235 }
Dave Barach2c25a622017-06-26 11:35:07 -0400236 if (sp->bytes_to_receive > 0)
Florin Coras6792ec02017-03-13 03:49:51 -0700237 {
Dave Barach10d8cc62017-05-30 09:30:07 -0400238 receive_test_chunk (tm, sp);
239 delete_session = 0;
240 }
241 if (PREDICT_FALSE (delete_session == 1))
242 {
Dave Barach2c25a622017-06-26 11:35:07 -0400243 u32 index, thread_index;
244 stream_session_t *s;
245
246 __sync_fetch_and_add (&tm->tx_total, sp->bytes_sent);
Dave Barach10d8cc62017-05-30 09:30:07 -0400247 __sync_fetch_and_add (&tm->rx_total, sp->bytes_received);
Florin Corasf03a59a2017-06-09 21:07:32 -0700248
Florin Corascea194d2017-10-02 00:18:51 -0700249 session_parse_handle (sp->vpp_session_handle,
250 &index, &thread_index);
Dave Barach2c25a622017-06-26 11:35:07 -0400251 s = stream_session_get_if_valid (index, thread_index);
252
253 if (s)
Florin Coras93992a92017-05-24 18:03:56 -0700254 {
Florin Coras68810622017-07-24 17:40:28 -0700255 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
Dave Barach2c25a622017-06-26 11:35:07 -0400260 vec_delete (connections_this_batch, 1, i);
261 i--;
Florin Coras93992a92017-05-24 18:03:56 -0700262 __sync_fetch_and_add (&tm->ready_connections, -1);
263 }
264 else
Dave Barach2c25a622017-06-26 11:35:07 -0400265 clib_warning ("session AWOL?");
Dave Barach10d8cc62017-05-30 09:30:07 -0400266
267 /* Kick the debug CLI process */
268 if (tm->ready_connections == 0)
Florin Coras6792ec02017-03-13 03:49:51 -0700269 {
Florin Coras68810622017-07-24 17:40:28 -0700270 signal_evt_to_cli (2);
Florin Coras6792ec02017-03-13 03:49:51 -0700271 }
Florin Coras6792ec02017-03-13 03:49:51 -0700272 }
Florin Coras6792ec02017-03-13 03:49:51 -0700273 }
Dave Barach2c25a622017-06-26 11:35:07 -0400274
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;
Florin Coras6792ec02017-03-13 03:49:51 -0700278 return 0;
279}
280
Dave Barach10d8cc62017-05-30 09:30:07 -0400281/* *INDENT-OFF* */
282VLIB_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
Florin Coras6cf30ad2017-04-04 23:08:23 -0700291static int
Florin Coras6792ec02017-03-13 03:49:51 -0700292create_api_loopback (tclient_main_t * tm)
293{
Florin Coras6792ec02017-03-13 03:49:51 -0700294 api_main_t *am = &api_main;
295 vl_shmem_hdr_t *shmem_hdr;
Florin Coras6792ec02017-03-13 03:49:51 -0700296
297 shmem_hdr = am->shmem_hdr;
298 tm->vl_input_queue = shmem_hdr->vl_input_queue;
Dave Barach52851e62017-08-07 09:35:25 -0400299 tm->my_client_index =
300 vl_api_memclnt_create_internal ("tcp_test_client", tm->vl_input_queue);
Florin Coras6792ec02017-03-13 03:49:51 -0700301 return 0;
302}
303
Florin Coras6cf30ad2017-04-04 23:08:23 -0700304static int
305tcp_test_clients_init (vlib_main_t * vm)
306{
307 tclient_main_t *tm = &tclient_main;
Florin Coras68810622017-07-24 17:40:28 -0700308 vlib_thread_main_t *vtm = vlib_get_thread_main ();
309 u32 num_threads;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700310 int i;
311
Florin Coras6cf30ad2017-04-04 23:08:23 -0700312 if (create_api_loopback (tm))
313 return -1;
314
Florin Coras68810622017-07-24 17:40:28 -0700315 num_threads = 1 /* main thread */ + vtm->n_threads;
316
Florin Corasf03a59a2017-06-09 21:07:32 -0700317 /* Init test data. Big buffer */
318 vec_validate (tm->connect_test_data, 1024 * 1024 - 1);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700319 for (i = 0; i < vec_len (tm->connect_test_data); i++)
320 tm->connect_test_data[i] = i & 0xff;
321
Florin Coras68810622017-07-24 17:40:28 -0700322 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);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700325
326 tm->is_init = 1;
Dave Barach10d8cc62017-05-30 09:30:07 -0400327
Florin Coras68810622017-07-24 17:40:28 -0700328 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
Dave Barach10d8cc62017-05-30 09:30:07 -0400332 return 0;
333}
334
335static int
336builtin_session_connected_callback (u32 app_index, u32 api_context,
337 stream_session_t * s, u8 is_fail)
338{
Florin Corasf03a59a2017-06-09 21:07:32 -0700339 tclient_main_t *tm = &tclient_main;
340 session_t *session;
341 u32 session_index;
Florin Coras68810622017-07-24 17:40:28 -0700342 u8 thread_index = vlib_get_thread_index ();
343
Florin Corasf03a59a2017-06-09 21:07:32 -0700344 if (is_fail)
Dave Barach10d8cc62017-05-30 09:30:07 -0400345 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700346 clib_warning ("connection %d failed!", api_context);
Florin Coras68810622017-07-24 17:40:28 -0700347 signal_evt_to_cli (-1);
348 return 0;
Dave Barach10d8cc62017-05-30 09:30:07 -0400349 }
350
Dave Barachac0c96b2017-08-02 09:19:32 -0400351 ASSERT (s->thread_index == thread_index);
352
Florin Coras68810622017-07-24 17:40:28 -0700353 if (!tm->vpp_event_queue[thread_index])
354 tm->vpp_event_queue[thread_index] =
355 session_manager_get_vpp_event_queue (thread_index);
Florin Corasf03a59a2017-06-09 21:07:32 -0700356
357 /*
358 * Setup session
359 */
Florin Coras68810622017-07-24 17:40:28 -0700360 clib_spinlock_lock_if_init (&tm->sessions_lock);
Florin Corasf03a59a2017-06-09 21:07:32 -0700361 pool_get (tm->sessions, session);
Florin Coras68810622017-07-24 17:40:28 -0700362 clib_spinlock_unlock_if_init (&tm->sessions_lock);
363
Florin Corasf03a59a2017-06-09 21:07:32 -0700364 memset (session, 0, sizeof (*session));
365 session_index = session - tm->sessions;
Dave Barach2c25a622017-06-26 11:35:07 -0400366 session->bytes_to_send = tm->bytes_to_send;
367 session->bytes_to_receive = tm->no_return ? 0ULL : tm->bytes_to_send;
Florin Corasf03a59a2017-06-09 21:07:32 -0700368 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
Florin Coras68810622017-07-24 17:40:28 -0700374 vec_add1 (tm->connection_index_by_thread[thread_index], session_index);
Florin Corasf03a59a2017-06-09 21:07:32 -0700375 __sync_fetch_and_add (&tm->ready_connections, 1);
376 if (tm->ready_connections == tm->expected_connections)
377 {
378 tm->run_test = 1;
Florin Corasf03a59a2017-06-09 21:07:32 -0700379 /* Signal the CLI process that the action is starting... */
Florin Coras68810622017-07-24 17:40:28 -0700380 signal_evt_to_cli (1);
Florin Corasf03a59a2017-06-09 21:07:32 -0700381 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700382
383 return 0;
384}
385
386static void
387builtin_session_reset_callback (stream_session_t * s)
388{
Florin Coras3eb50622017-07-13 01:24:57 -0400389 if (s->session_state == SESSION_STATE_READY)
390 clib_warning ("Reset active connection %U", format_stream_session, s, 2);
Florin Coras6534b7a2017-07-18 05:38:03 -0400391 stream_session_cleanup (s);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700392 return;
393}
394
395static int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700396builtin_session_create_callback (stream_session_t * s)
397{
398 return 0;
399}
400
401static void
402builtin_session_disconnect_callback (stream_session_t * s)
403{
Florin Coras6534b7a2017-07-18 05:38:03 -0400404 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);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700409 return;
410}
411
412static int
413builtin_server_rx_callback (stream_session_t * s)
414{
415 return 0;
416}
417
418/* *INDENT-OFF* */
Florin Corasf03a59a2017-06-09 21:07:32 -0700419static 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};
Florin Coras6cf30ad2017-04-04 23:08:23 -0700426/* *INDENT-ON* */
427
Florin Corascea194d2017-10-02 00:18:51 -0700428static clib_error_t *
429attach_builtin_test_clients_app (u8 * appns_id, u64 appns_flags,
430 u64 appns_secret)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700431{
Dave Barach0194f1a2017-05-15 10:11:39 -0400432 tclient_main_t *tm = &tclient_main;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700433 vnet_app_attach_args_t _a, *a = &_a;
434 u8 segment_name[128];
Florin Corasf03a59a2017-06-09 21:07:32 -0700435 u32 segment_name_length, prealloc_fifos;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700436 u64 options[16];
Florin Corascea194d2017-10-02 00:18:51 -0700437 clib_error_t *error = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700438
439 segment_name_length = ARRAY_LEN (segment_name);
440
441 memset (a, 0, sizeof (*a));
442 memset (options, 0, sizeof (options));
443
Dave Barach0194f1a2017-05-15 10:11:39 -0400444 a->api_client_index = tm->my_client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700445 a->segment_name = segment_name;
446 a->segment_name_length = segment_name_length;
447 a->session_cb_vft = &builtin_clients;
448
Florin Corasf03a59a2017-06-09 21:07:32 -0700449 prealloc_fifos = tm->prealloc_fifos ? tm->expected_connections : 1;
450
Florin Coras6cf30ad2017-04-04 23:08:23 -0700451 options[SESSION_OPTIONS_ACCEPT_COOKIE] = 0x12345678;
Florin Corasf03a59a2017-06-09 21:07:32 -0700452 options[SESSION_OPTIONS_SEGMENT_SIZE] = (2ULL << 32);
453 options[SESSION_OPTIONS_RX_FIFO_SIZE] = tm->fifo_size;
Florin Coras6534b7a2017-07-18 05:38:03 -0400454 options[SESSION_OPTIONS_TX_FIFO_SIZE] = tm->fifo_size;
Dave Barach2c25a622017-06-26 11:35:07 -0400455 options[APP_OPTIONS_PRIVATE_SEGMENT_COUNT] = tm->private_segment_count;
456 options[APP_OPTIONS_PRIVATE_SEGMENT_SIZE] = tm->private_segment_size;
Florin Corasf03a59a2017-06-09 21:07:32 -0700457 options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = prealloc_fifos;
458
Florin Corasa5464812017-04-19 13:00:05 -0700459 options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_BUILTIN_APP;
Florin Corascea194d2017-10-02 00:18:51 -0700460 if (appns_id)
461 {
462 options[APP_OPTIONS_FLAGS] |= appns_flags;
463 options[APP_OPTIONS_NAMESPACE_SECRET] = appns_secret;
464 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700465 a->options = options;
Florin Corascea194d2017-10-02 00:18:51 -0700466 a->namespace_id = appns_id;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700467
Florin Corascea194d2017-10-02 00:18:51 -0700468 if ((error = vnet_application_attach (a)))
469 return error;
Florin Corasf03a59a2017-06-09 21:07:32 -0700470
471 tm->app_index = a->app_index;
472 return 0;
473}
474
475static void *
476tclient_thread_fn (void *arg)
477{
478 return 0;
479}
480
481/** Start a transmit thread */
482int
483start_tx_pthread (tclient_main_t * tm)
484{
485 if (tm->client_thread_handle == 0)
486 {
487 int rv = pthread_create (&tm->client_thread_handle,
488 NULL /*attr */ ,
489 tclient_thread_fn, 0);
490 if (rv)
491 {
492 tm->client_thread_handle = 0;
493 return -1;
494 }
495 }
496 return 0;
497}
498
Florin Corascea194d2017-10-02 00:18:51 -0700499clib_error_t *
Florin Corasf03a59a2017-06-09 21:07:32 -0700500clients_connect (vlib_main_t * vm, u8 * uri, u32 n_clients)
501{
502 tclient_main_t *tm = &tclient_main;
503 vnet_connect_args_t _a, *a = &_a;
Florin Corascea194d2017-10-02 00:18:51 -0700504 clib_error_t *error = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700505 int i;
506 for (i = 0; i < n_clients; i++)
507 {
508 memset (a, 0, sizeof (*a));
509
510 a->uri = (char *) uri;
511 a->api_context = i;
512 a->app_index = tm->app_index;
513 a->mp = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700514
515 if ((error = vnet_connect_uri (a)))
516 return error;
517
Florin Corasf03a59a2017-06-09 21:07:32 -0700518
Florin Coras66b11312017-07-31 17:18:03 -0700519 /* Crude pacing for call setups */
520 if ((i % 4) == 0)
521 vlib_process_suspend (vm, 10e-6);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400522 ASSERT (i + 1 >= tm->ready_connections);
Florin Coras9d063042017-09-14 03:08:00 -0400523 while (i + 1 - tm->ready_connections > 1000)
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400524 {
525 vlib_process_suspend (vm, 100e-6);
526 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700527 }
Florin Corascea194d2017-10-02 00:18:51 -0700528 return 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700529}
Florin Coras6792ec02017-03-13 03:49:51 -0700530
531static clib_error_t *
532test_tcp_clients_command_fn (vlib_main_t * vm,
533 unformat_input_t * input,
534 vlib_cli_command_t * cmd)
535{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700536 tclient_main_t *tm = &tclient_main;
Dave Barach10d8cc62017-05-30 09:30:07 -0400537 vlib_thread_main_t *thread_main = vlib_get_thread_main ();
Florin Corasf03a59a2017-06-09 21:07:32 -0700538 uword *event_data = 0, event_type;
Florin Corascea194d2017-10-02 00:18:51 -0700539 u8 *default_connect_uri = (u8 *) "tcp://6.0.1.1/1234", *uri, *appns_id;
540 u64 tmp, total_bytes, appns_flags = 0, appns_secret = 0;
Florin Coras66b11312017-07-31 17:18:03 -0700541 f64 test_timeout = 20.0, syn_timeout = 20.0, delta;
542 f64 time_before_connects;
Florin Coras6792ec02017-03-13 03:49:51 -0700543 u32 n_clients = 1;
Florin Coras66b11312017-07-31 17:18:03 -0700544 int preallocate_sessions = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700545 char *transfer_type;
Florin Corascea194d2017-10-02 00:18:51 -0700546 clib_error_t *error = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700547 int i;
Florin Coras6792ec02017-03-13 03:49:51 -0700548
549 tm->bytes_to_send = 8192;
Florin Corasf03a59a2017-06-09 21:07:32 -0700550 tm->no_return = 0;
551 tm->fifo_size = 64 << 10;
Dave Barach2c25a622017-06-26 11:35:07 -0400552 tm->connections_per_batch = 1000;
553 tm->private_segment_count = 0;
554 tm->private_segment_size = 0;
Florin Coras68810622017-07-24 17:40:28 -0700555 tm->vlib_main = vm;
556 if (thread_main->n_vlib_mains > 1)
557 clib_spinlock_init (&tm->sessions_lock);
Florin Coras6792ec02017-03-13 03:49:51 -0700558 vec_free (tm->connect_uri);
559
560 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
561 {
562 if (unformat (input, "nclients %d", &n_clients))
563 ;
Dave Barach0194f1a2017-05-15 10:11:39 -0400564 else if (unformat (input, "mbytes %lld", &tmp))
565 tm->bytes_to_send = tmp << 20;
566 else if (unformat (input, "gbytes %lld", &tmp))
567 tm->bytes_to_send = tmp << 30;
Florin Coras3e350af2017-03-30 02:54:28 -0700568 else if (unformat (input, "bytes %lld", &tm->bytes_to_send))
Florin Coras6792ec02017-03-13 03:49:51 -0700569 ;
570 else if (unformat (input, "uri %s", &tm->connect_uri))
571 ;
Florin Coras66b11312017-07-31 17:18:03 -0700572 else if (unformat (input, "test-timeout %f", &test_timeout))
573 ;
574 else if (unformat (input, "syn-timeout %f", &syn_timeout))
Dave Barach10d8cc62017-05-30 09:30:07 -0400575 ;
Florin Corasf03a59a2017-06-09 21:07:32 -0700576 else if (unformat (input, "no-return"))
577 tm->no_return = 1;
578 else if (unformat (input, "fifo-size %d", &tm->fifo_size))
579 tm->fifo_size <<= 10;
Dave Barach2c25a622017-06-26 11:35:07 -0400580 else if (unformat (input, "private-segment-count %d",
581 &tm->private_segment_count))
582 ;
Dave Barach91f3e742017-09-01 19:12:11 -0400583 else if (unformat (input, "private-segment-size %U",
584 unformat_memory_size, &tmp))
585 {
586 if (tmp >= 0x100000000ULL)
587 return clib_error_return
588 (0, "private segment size %lld (%llu) too large", tmp, tmp);
589 tm->private_segment_size = tmp;
590 }
Dave Barach2c25a622017-06-26 11:35:07 -0400591 else if (unformat (input, "preallocate-fifos"))
592 tm->prealloc_fifos = 1;
Florin Coras66b11312017-07-31 17:18:03 -0700593 else if (unformat (input, "preallocate-sessions"))
594 preallocate_sessions = 1;
Dave Barach2c25a622017-06-26 11:35:07 -0400595 else
596 if (unformat (input, "client-batch %d", &tm->connections_per_batch))
597 ;
Florin Corascea194d2017-10-02 00:18:51 -0700598 else if (unformat (input, "appns %_%v%_", &appns_id))
599 ;
600 else if (unformat (input, "all-scope"))
601 appns_flags |= (APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE
602 | APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE);
603 else if (unformat (input, "local-scope"))
604 appns_flags = APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
605 else if (unformat (input, "global-scope"))
606 appns_flags = APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
607 else if (unformat (input, "secret %lu", &appns_secret))
608 ;
Florin Coras6792ec02017-03-13 03:49:51 -0700609 else
610 return clib_error_return (0, "unknown input `%U'",
611 format_unformat_error, input);
612 }
613
Florin Corasf03a59a2017-06-09 21:07:32 -0700614 /* Store cli process node index for signalling */
615 tm->cli_node_index = vlib_get_current_process (vm)->node_runtime.node_index;
616
Florin Coras6cf30ad2017-04-04 23:08:23 -0700617 if (tm->is_init == 0)
618 {
619 if (tcp_test_clients_init (vm))
620 return clib_error_return (0, "failed init");
621 }
622
Florin Coras66b11312017-07-31 17:18:03 -0700623
Florin Coras6792ec02017-03-13 03:49:51 -0700624 tm->ready_connections = 0;
625 tm->expected_connections = n_clients;
Dave Barach10d8cc62017-05-30 09:30:07 -0400626 tm->rx_total = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700627 tm->tx_total = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700628
Florin Corasf03a59a2017-06-09 21:07:32 -0700629 uri = default_connect_uri;
Florin Coras6792ec02017-03-13 03:49:51 -0700630 if (tm->connect_uri)
631 uri = tm->connect_uri;
632
Florin Coras3e350af2017-03-30 02:54:28 -0700633#if TCP_BUILTIN_CLIENT_PTHREAD
Florin Corasf03a59a2017-06-09 21:07:32 -0700634 start_tx_pthread ();
635#endif
636
Florin Coras68810622017-07-24 17:40:28 -0700637 vlib_worker_thread_barrier_sync (vm);
Florin Corasf03a59a2017-06-09 21:07:32 -0700638 vnet_session_enable_disable (vm, 1 /* turn on TCP, etc. */ );
Florin Coras68810622017-07-24 17:40:28 -0700639 vlib_worker_thread_barrier_release (vm);
Florin Corasf03a59a2017-06-09 21:07:32 -0700640
641 if (tm->test_client_attached == 0)
Florin Coras6792ec02017-03-13 03:49:51 -0700642 {
Florin Corascea194d2017-10-02 00:18:51 -0700643 if ((error = attach_builtin_test_clients_app (appns_id, appns_flags,
644 appns_secret)))
Florin Coras6792ec02017-03-13 03:49:51 -0700645 {
Florin Corascea194d2017-10-02 00:18:51 -0700646 vec_free (appns_id);
647 clib_error_report (error);
648 return error;
Florin Coras6792ec02017-03-13 03:49:51 -0700649 }
Florin Corascea194d2017-10-02 00:18:51 -0700650 vec_free (appns_id);
Florin Coras6792ec02017-03-13 03:49:51 -0700651 }
Dave Barach10d8cc62017-05-30 09:30:07 -0400652 tm->test_client_attached = 1;
Florin Coras6792ec02017-03-13 03:49:51 -0700653
Dave Barach10d8cc62017-05-30 09:30:07 -0400654 /* Turn on the builtin client input nodes */
655 for (i = 0; i < thread_main->n_vlib_mains; i++)
656 vlib_node_set_state (vlib_mains[i], builtin_client_node.index,
657 VLIB_NODE_STATE_POLLING);
658
Florin Coras66b11312017-07-31 17:18:03 -0700659 if (preallocate_sessions)
660 {
661 session_t *sp __attribute__ ((unused));
662 for (i = 0; i < n_clients; i++)
663 pool_get (tm->sessions, sp);
664 for (i = 0; i < n_clients; i++)
665 pool_put_index (tm->sessions, i);
666 }
667
Dave Barach10d8cc62017-05-30 09:30:07 -0400668 /* Fire off connect requests */
Florin Coras66b11312017-07-31 17:18:03 -0700669 time_before_connects = vlib_time_now (vm);
Florin Corascea194d2017-10-02 00:18:51 -0700670 if ((error = clients_connect (vm, uri, n_clients)))
671 return error;
Florin Coras6792ec02017-03-13 03:49:51 -0700672
Dave Barach10d8cc62017-05-30 09:30:07 -0400673 /* Park until the sessions come up, or ten seconds elapse... */
Florin Coras66b11312017-07-31 17:18:03 -0700674 vlib_process_wait_for_event_or_clock (vm, syn_timeout);
Dave Barach10d8cc62017-05-30 09:30:07 -0400675 event_type = vlib_process_get_events (vm, &event_data);
Dave Barach10d8cc62017-05-30 09:30:07 -0400676 switch (event_type)
677 {
678 case ~0:
679 vlib_cli_output (vm, "Timeout with only %d sessions active...",
680 tm->ready_connections);
681 goto cleanup;
682
683 case 1:
Florin Coras66b11312017-07-31 17:18:03 -0700684 delta = vlib_time_now (vm) - time_before_connects;
685
686 if (delta != 0.0)
687 {
688 vlib_cli_output
689 (vm, "%d three-way handshakes in %.2f seconds, %.2f/sec",
690 n_clients, delta, ((f64) n_clients) / delta);
691 }
692
Florin Coras68810622017-07-24 17:40:28 -0700693 tm->test_start_time = vlib_time_now (tm->vlib_main);
Dave Barach10d8cc62017-05-30 09:30:07 -0400694 vlib_cli_output (vm, "Test started at %.6f", tm->test_start_time);
695 break;
696
697 default:
698 vlib_cli_output (vm, "unexpected event(1): %d", event_type);
699 goto cleanup;
700 }
701
702 /* Now wait for the sessions to finish... */
Florin Coras66b11312017-07-31 17:18:03 -0700703 vlib_process_wait_for_event_or_clock (vm, test_timeout);
Dave Barach10d8cc62017-05-30 09:30:07 -0400704 event_type = vlib_process_get_events (vm, &event_data);
Dave Barach10d8cc62017-05-30 09:30:07 -0400705 switch (event_type)
706 {
707 case ~0:
708 vlib_cli_output (vm, "Timeout with %d sessions still active...",
709 tm->ready_connections);
710 goto cleanup;
711
712 case 2:
Florin Coras68810622017-07-24 17:40:28 -0700713 tm->test_end_time = vlib_time_now (vm);
Dave Barach10d8cc62017-05-30 09:30:07 -0400714 vlib_cli_output (vm, "Test finished at %.6f", tm->test_end_time);
715 break;
716
717 default:
718 vlib_cli_output (vm, "unexpected event(2): %d", event_type);
719 goto cleanup;
720 }
721
722 delta = tm->test_end_time - tm->test_start_time;
723
724 if (delta != 0.0)
725 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700726 total_bytes = (tm->no_return ? tm->tx_total : tm->rx_total);
727 transfer_type = tm->no_return ? "half-duplex" : "full-duplex";
Dave Barach10d8cc62017-05-30 09:30:07 -0400728 vlib_cli_output (vm,
729 "%lld bytes (%lld mbytes, %lld gbytes) in %.2f seconds",
Florin Corasf03a59a2017-06-09 21:07:32 -0700730 total_bytes, total_bytes / (1ULL << 20),
731 total_bytes / (1ULL << 30), delta);
732 vlib_cli_output (vm, "%.2f bytes/second %s",
733 ((f64) total_bytes) / (delta), transfer_type);
734 vlib_cli_output (vm, "%.4f gbit/second %s",
735 (((f64) total_bytes * 8.0) / delta / 1e9),
736 transfer_type);
Dave Barach10d8cc62017-05-30 09:30:07 -0400737 }
738 else
739 vlib_cli_output (vm, "zero delta-t?");
740
741cleanup:
Dave Barach2c25a622017-06-26 11:35:07 -0400742 tm->run_test = 0;
Dave Barach10d8cc62017-05-30 09:30:07 -0400743 for (i = 0; i < vec_len (tm->connection_index_by_thread); i++)
Dave Barach2c25a622017-06-26 11:35:07 -0400744 {
745 vec_reset_length (tm->connection_index_by_thread[i]);
746 vec_reset_length (tm->connections_this_batch_by_thread[i]);
747 }
Florin Coras68810622017-07-24 17:40:28 -0700748
Dave Barach2c25a622017-06-26 11:35:07 -0400749 pool_free (tm->sessions);
Florin Coras6792ec02017-03-13 03:49:51 -0700750
Dave Barach818eb542017-08-02 13:56:13 -0400751 /* Detach the application, so we can use different fifo sizes next time */
752 if (tm->test_client_attached)
753 {
754 vnet_app_detach_args_t _da, *da = &_da;
755 int rv;
756
757 da->app_index = tm->app_index;
758
759 rv = vnet_application_detach (da);
760 if (rv)
761 vlib_cli_output (vm, "WARNING: app detach failed...");
762 tm->test_client_attached = 0;
763 tm->app_index = ~0;
764 }
Florin Coras6792ec02017-03-13 03:49:51 -0700765 return 0;
766}
767
Florin Coras3e350af2017-03-30 02:54:28 -0700768/* *INDENT-OFF* */
Florin Coras6792ec02017-03-13 03:49:51 -0700769VLIB_CLI_COMMAND (test_clients_command, static) =
770{
771 .path = "test tcp clients",
Florin Coras2245c0f2017-08-14 08:45:15 -0700772 .short_help = "test tcp clients [nclients %d] [[m|g]bytes <bytes>] "
773 "[test-timeout <time>][syn-timeout <time>][no-return][fifo-size <size>]"
774 "[private-segment-count <count>][private-segment-size <bytes>[m|g]]"
775 "[preallocate-fifos][preallocate-sessions][client-batch <batch-size>]"
776 "[uri <tcp://ip/port>]",
Florin Coras6792ec02017-03-13 03:49:51 -0700777 .function = test_tcp_clients_command_fn,
Florin Coras68810622017-07-24 17:40:28 -0700778 .is_mp_safe = 1,
Florin Coras6792ec02017-03-13 03:49:51 -0700779};
780/* *INDENT-ON* */
781
Florin Coras6cf30ad2017-04-04 23:08:23 -0700782clib_error_t *
783tcp_test_clients_main_init (vlib_main_t * vm)
784{
785 tclient_main_t *tm = &tclient_main;
786 tm->is_init = 0;
787 return 0;
788}
789
790VLIB_INIT_FUNCTION (tcp_test_clients_main_init);
791
Florin Coras6792ec02017-03-13 03:49:51 -0700792/*
793 * fd.io coding-style-patch-verification: ON
794 *
795 * Local Variables:
796 * eval: (c-set-style "gnu")
797 * End:
798 */