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