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