Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015-2017 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 <vnet/vnet.h> |
| 17 | #include <vlibmemory/api.h> |
| 18 | #include <vnet/session/application.h> |
| 19 | #include <vnet/session/application_interface.h> |
| 20 | #include <vnet/tcp/builtin_proxy.h> |
| 21 | |
| 22 | builtin_proxy_main_t builtin_proxy_main; |
| 23 | |
| 24 | static void |
| 25 | delete_proxy_session (stream_session_t * s, int is_active_open) |
| 26 | { |
| 27 | builtin_proxy_main_t *bpm = &builtin_proxy_main; |
| 28 | proxy_session_t *ps = 0; |
| 29 | vnet_disconnect_args_t _a, *a = &_a; |
| 30 | stream_session_t *active_open_session = 0; |
| 31 | stream_session_t *server_session = 0; |
| 32 | uword *p; |
| 33 | u64 handle; |
| 34 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 35 | handle = session_handle (s); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 36 | |
| 37 | clib_spinlock_lock_if_init (&bpm->sessions_lock); |
| 38 | if (is_active_open) |
| 39 | { |
| 40 | active_open_session = s; |
| 41 | |
| 42 | p = hash_get (bpm->proxy_session_by_active_open_handle, handle); |
| 43 | if (p == 0) |
| 44 | { |
| 45 | clib_warning ("proxy session for %s handle %lld (%llx) AWOL", |
| 46 | is_active_open ? "active open" : "server", |
| 47 | handle, handle); |
| 48 | } |
| 49 | else |
| 50 | { |
| 51 | ps = pool_elt_at_index (bpm->sessions, p[0]); |
| 52 | if (ps->vpp_server_handle != ~0) |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 53 | server_session = session_get_from_handle (ps->vpp_server_handle); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 54 | else |
| 55 | server_session = 0; |
| 56 | } |
| 57 | } |
| 58 | else |
| 59 | { |
| 60 | server_session = s; |
| 61 | |
| 62 | p = hash_get (bpm->proxy_session_by_server_handle, handle); |
| 63 | if (p == 0) |
| 64 | { |
| 65 | clib_warning ("proxy session for %s handle %lld (%llx) AWOL", |
| 66 | is_active_open ? "active open" : "server", |
| 67 | handle, handle); |
| 68 | } |
| 69 | else |
| 70 | { |
| 71 | ps = pool_elt_at_index (bpm->sessions, p[0]); |
| 72 | if (ps->vpp_server_handle != ~0) |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 73 | active_open_session = session_get_from_handle |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 74 | (ps->vpp_server_handle); |
| 75 | else |
| 76 | active_open_session = 0; |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | if (ps) |
| 81 | { |
| 82 | if (CLIB_DEBUG > 0) |
| 83 | memset (ps, 0xFE, sizeof (*ps)); |
| 84 | pool_put (bpm->sessions, ps); |
| 85 | } |
| 86 | |
| 87 | clib_spinlock_unlock_if_init (&bpm->sessions_lock); |
| 88 | |
| 89 | if (active_open_session) |
| 90 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 91 | a->handle = session_handle (active_open_session); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 92 | a->app_index = bpm->active_open_app_index; |
| 93 | hash_unset (bpm->proxy_session_by_active_open_handle, |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 94 | session_handle (active_open_session)); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 95 | vnet_disconnect_session (a); |
| 96 | } |
| 97 | |
| 98 | if (server_session) |
| 99 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 100 | a->handle = session_handle (server_session); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 101 | a->app_index = bpm->server_app_index; |
| 102 | hash_unset (bpm->proxy_session_by_server_handle, |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 103 | session_handle (server_session)); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 104 | vnet_disconnect_session (a); |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | static int |
| 109 | server_accept_callback (stream_session_t * s) |
| 110 | { |
| 111 | builtin_proxy_main_t *bpm = &builtin_proxy_main; |
| 112 | |
| 113 | s->session_state = SESSION_STATE_READY; |
| 114 | |
| 115 | clib_spinlock_lock_if_init (&bpm->sessions_lock); |
| 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | |
| 120 | static void |
| 121 | server_disconnect_callback (stream_session_t * s) |
| 122 | { |
| 123 | delete_proxy_session (s, 0 /* is_active_open */ ); |
| 124 | } |
| 125 | |
| 126 | static void |
| 127 | server_reset_callback (stream_session_t * s) |
| 128 | { |
| 129 | clib_warning ("Reset session %U", format_stream_session, s, 2); |
| 130 | delete_proxy_session (s, 0 /* is_active_open */ ); |
| 131 | } |
| 132 | |
| 133 | static int |
| 134 | server_connected_callback (u32 app_index, u32 api_context, |
| 135 | stream_session_t * s, u8 is_fail) |
| 136 | { |
| 137 | clib_warning ("called..."); |
| 138 | return -1; |
| 139 | } |
| 140 | |
| 141 | static int |
| 142 | server_add_segment_callback (u32 client_index, |
| 143 | const u8 * seg_name, u32 seg_size) |
| 144 | { |
| 145 | clib_warning ("called..."); |
| 146 | return -1; |
| 147 | } |
| 148 | |
| 149 | static int |
| 150 | server_redirect_connect_callback (u32 client_index, void *mp) |
| 151 | { |
| 152 | clib_warning ("called..."); |
| 153 | return -1; |
| 154 | } |
| 155 | |
| 156 | static int |
| 157 | server_rx_callback (stream_session_t * s) |
| 158 | { |
| 159 | u32 max_dequeue; |
| 160 | int actual_transfer __attribute__ ((unused)); |
| 161 | svm_fifo_t *tx_fifo, *rx_fifo; |
| 162 | builtin_proxy_main_t *bpm = &builtin_proxy_main; |
| 163 | u32 thread_index = vlib_get_thread_index (); |
| 164 | vnet_connect_args_t _a, *a = &_a; |
| 165 | proxy_session_t *ps; |
| 166 | int proxy_index; |
| 167 | uword *p; |
| 168 | svm_fifo_t *active_open_tx_fifo; |
| 169 | session_fifo_event_t evt; |
| 170 | |
| 171 | ASSERT (s->thread_index == thread_index); |
| 172 | |
| 173 | clib_spinlock_lock_if_init (&bpm->sessions_lock); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 174 | p = hash_get (bpm->proxy_session_by_server_handle, session_handle (s)); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 175 | |
| 176 | if (PREDICT_TRUE (p != 0)) |
| 177 | { |
| 178 | clib_spinlock_unlock_if_init (&bpm->sessions_lock); |
| 179 | active_open_tx_fifo = s->server_rx_fifo; |
| 180 | |
| 181 | /* |
| 182 | * Send event for active open tx fifo |
| 183 | */ |
| 184 | if (svm_fifo_set_event (active_open_tx_fifo)) |
| 185 | { |
| 186 | evt.fifo = active_open_tx_fifo; |
| 187 | evt.event_type = FIFO_EVENT_APP_TX; |
| 188 | if (unix_shared_memory_queue_add |
| 189 | (bpm->active_open_event_queue[thread_index], (u8 *) & evt, |
| 190 | 0 /* do wait for mutex */ )) |
| 191 | clib_warning ("failed to enqueue tx evt"); |
| 192 | } |
| 193 | } |
| 194 | else |
| 195 | { |
| 196 | rx_fifo = s->server_rx_fifo; |
| 197 | tx_fifo = s->server_tx_fifo; |
| 198 | |
| 199 | ASSERT (rx_fifo->master_thread_index == thread_index); |
| 200 | ASSERT (tx_fifo->master_thread_index == thread_index); |
| 201 | |
| 202 | max_dequeue = svm_fifo_max_dequeue (s->server_rx_fifo); |
| 203 | |
| 204 | if (PREDICT_FALSE (max_dequeue == 0)) |
| 205 | return 0; |
| 206 | |
| 207 | actual_transfer = svm_fifo_peek (rx_fifo, 0 /* relative_offset */ , |
| 208 | max_dequeue, |
| 209 | bpm->rx_buf[thread_index]); |
| 210 | |
| 211 | /* $$$ your message in this space: parse url, etc. */ |
| 212 | |
| 213 | memset (a, 0, sizeof (*a)); |
| 214 | |
| 215 | clib_spinlock_lock_if_init (&bpm->sessions_lock); |
| 216 | pool_get (bpm->sessions, ps); |
| 217 | memset (ps, 0, sizeof (*ps)); |
| 218 | ps->server_rx_fifo = rx_fifo; |
| 219 | ps->server_tx_fifo = tx_fifo; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 220 | ps->vpp_server_handle = session_handle (s); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 221 | |
| 222 | proxy_index = ps - bpm->sessions; |
| 223 | |
| 224 | hash_set (bpm->proxy_session_by_server_handle, ps->vpp_server_handle, |
| 225 | proxy_index); |
| 226 | |
| 227 | clib_spinlock_unlock_if_init (&bpm->sessions_lock); |
| 228 | |
| 229 | a->uri = "tcp://6.0.2.2/23"; |
| 230 | a->api_context = proxy_index; |
| 231 | a->app_index = bpm->active_open_app_index; |
| 232 | a->mp = 0; |
| 233 | vnet_connect_uri (a); |
| 234 | } |
| 235 | |
| 236 | return 0; |
| 237 | } |
| 238 | |
| 239 | static session_cb_vft_t builtin_session_cb_vft = { |
| 240 | .session_accept_callback = server_accept_callback, |
| 241 | .session_disconnect_callback = server_disconnect_callback, |
| 242 | .session_connected_callback = server_connected_callback, |
| 243 | .add_segment_callback = server_add_segment_callback, |
| 244 | .redirect_connect_callback = server_redirect_connect_callback, |
| 245 | .builtin_server_rx_callback = server_rx_callback, |
| 246 | .session_reset_callback = server_reset_callback |
| 247 | }; |
| 248 | |
| 249 | static int |
| 250 | active_open_connected_callback (u32 app_index, u32 opaque, |
| 251 | stream_session_t * s, u8 is_fail) |
| 252 | { |
| 253 | builtin_proxy_main_t *bpm = &builtin_proxy_main; |
| 254 | proxy_session_t *ps; |
| 255 | u8 thread_index = vlib_get_thread_index (); |
| 256 | session_fifo_event_t evt; |
| 257 | |
| 258 | if (is_fail) |
| 259 | { |
| 260 | clib_warning ("connection %d failed!", opaque); |
| 261 | return 0; |
| 262 | } |
| 263 | |
| 264 | /* |
| 265 | * Setup proxy session handle. |
| 266 | */ |
| 267 | clib_spinlock_lock_if_init (&bpm->sessions_lock); |
| 268 | |
| 269 | ps = pool_elt_at_index (bpm->sessions, opaque); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 270 | ps->vpp_active_open_handle = session_handle (s); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 271 | |
| 272 | s->server_tx_fifo = ps->server_rx_fifo; |
| 273 | s->server_rx_fifo = ps->server_tx_fifo; |
| 274 | |
| 275 | /* |
| 276 | * Reset the active-open tx-fifo master indices so the active-open session |
| 277 | * will receive data, etc. |
| 278 | */ |
| 279 | s->server_tx_fifo->master_session_index = s->session_index; |
| 280 | s->server_tx_fifo->master_thread_index = s->thread_index; |
| 281 | |
| 282 | /* |
| 283 | * Account for the active-open session's use of the fifos |
| 284 | * so they won't disappear until the last session which uses |
| 285 | * them disappears |
| 286 | */ |
| 287 | s->server_tx_fifo->refcnt++; |
| 288 | s->server_rx_fifo->refcnt++; |
| 289 | |
| 290 | hash_set (bpm->proxy_session_by_active_open_handle, |
| 291 | ps->vpp_active_open_handle, opaque); |
| 292 | |
| 293 | clib_spinlock_unlock_if_init (&bpm->sessions_lock); |
| 294 | |
| 295 | /* |
| 296 | * Send event for active open tx fifo |
| 297 | */ |
| 298 | if (svm_fifo_set_event (s->server_tx_fifo)) |
| 299 | { |
| 300 | evt.fifo = s->server_tx_fifo; |
| 301 | evt.event_type = FIFO_EVENT_APP_TX; |
| 302 | if (unix_shared_memory_queue_add |
| 303 | (bpm->active_open_event_queue[thread_index], (u8 *) & evt, |
| 304 | 0 /* do wait for mutex */ )) |
| 305 | clib_warning ("failed to enqueue tx evt"); |
| 306 | } |
| 307 | |
| 308 | return 0; |
| 309 | } |
| 310 | |
| 311 | static void |
| 312 | active_open_reset_callback (stream_session_t * s) |
| 313 | { |
| 314 | delete_proxy_session (s, 1 /* is_active_open */ ); |
| 315 | } |
| 316 | |
| 317 | static int |
| 318 | active_open_create_callback (stream_session_t * s) |
| 319 | { |
| 320 | return 0; |
| 321 | } |
| 322 | |
| 323 | static void |
| 324 | active_open_disconnect_callback (stream_session_t * s) |
| 325 | { |
| 326 | delete_proxy_session (s, 1 /* is_active_open */ ); |
| 327 | } |
| 328 | |
| 329 | static int |
| 330 | active_open_rx_callback (stream_session_t * s) |
| 331 | { |
| 332 | builtin_proxy_main_t *bpm = &builtin_proxy_main; |
| 333 | session_fifo_event_t evt; |
| 334 | svm_fifo_t *server_rx_fifo; |
| 335 | u32 thread_index = vlib_get_thread_index (); |
| 336 | |
| 337 | server_rx_fifo = s->server_rx_fifo; |
| 338 | |
| 339 | /* |
| 340 | * Send event for server tx fifo |
| 341 | */ |
| 342 | if (svm_fifo_set_event (server_rx_fifo)) |
| 343 | { |
| 344 | evt.fifo = server_rx_fifo; |
| 345 | evt.event_type = FIFO_EVENT_APP_TX; |
| 346 | if (unix_shared_memory_queue_add |
| 347 | (bpm->server_event_queue[thread_index], (u8 *) & evt, |
| 348 | 0 /* do wait for mutex */ )) |
| 349 | clib_warning ("failed to enqueue server rx evt"); |
| 350 | } |
| 351 | |
| 352 | return 0; |
| 353 | } |
| 354 | |
| 355 | /* *INDENT-OFF* */ |
| 356 | static session_cb_vft_t builtin_clients = { |
| 357 | .session_reset_callback = active_open_reset_callback, |
| 358 | .session_connected_callback = active_open_connected_callback, |
| 359 | .session_accept_callback = active_open_create_callback, |
| 360 | .session_disconnect_callback = active_open_disconnect_callback, |
| 361 | .builtin_server_rx_callback = active_open_rx_callback |
| 362 | }; |
| 363 | /* *INDENT-ON* */ |
| 364 | |
| 365 | |
| 366 | static void |
| 367 | create_api_loopbacks (vlib_main_t * vm) |
| 368 | { |
| 369 | builtin_proxy_main_t *bpm = &builtin_proxy_main; |
| 370 | api_main_t *am = &api_main; |
| 371 | vl_shmem_hdr_t *shmem_hdr; |
| 372 | |
| 373 | shmem_hdr = am->shmem_hdr; |
| 374 | bpm->vl_input_queue = shmem_hdr->vl_input_queue; |
| 375 | bpm->server_client_index = |
| 376 | vl_api_memclnt_create_internal ("proxy_server", bpm->vl_input_queue); |
| 377 | bpm->active_open_client_index = |
| 378 | vl_api_memclnt_create_internal ("proxy_active_open", bpm->vl_input_queue); |
| 379 | } |
| 380 | |
| 381 | static int |
| 382 | server_attach () |
| 383 | { |
| 384 | builtin_proxy_main_t *bpm = &builtin_proxy_main; |
| 385 | u8 segment_name[128]; |
| 386 | u64 options[SESSION_OPTIONS_N_OPTIONS]; |
| 387 | vnet_app_attach_args_t _a, *a = &_a; |
| 388 | |
| 389 | memset (a, 0, sizeof (*a)); |
| 390 | memset (options, 0, sizeof (options)); |
| 391 | |
| 392 | a->api_client_index = bpm->server_client_index; |
| 393 | a->session_cb_vft = &builtin_session_cb_vft; |
| 394 | a->options = options; |
| 395 | a->options[SESSION_OPTIONS_SEGMENT_SIZE] = 512 << 20; |
| 396 | a->options[SESSION_OPTIONS_RX_FIFO_SIZE] = bpm->fifo_size; |
| 397 | a->options[SESSION_OPTIONS_TX_FIFO_SIZE] = bpm->fifo_size; |
| 398 | a->options[APP_OPTIONS_PRIVATE_SEGMENT_COUNT] = bpm->private_segment_count; |
| 399 | a->options[APP_OPTIONS_PRIVATE_SEGMENT_SIZE] = bpm->private_segment_size; |
| 400 | a->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = |
| 401 | bpm->prealloc_fifos ? bpm->prealloc_fifos : 1; |
| 402 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame^] | 403 | a->options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN; |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 404 | |
| 405 | a->segment_name = segment_name; |
| 406 | a->segment_name_length = ARRAY_LEN (segment_name); |
| 407 | |
| 408 | if (vnet_application_attach (a)) |
| 409 | { |
| 410 | clib_warning ("failed to attach server"); |
| 411 | return -1; |
| 412 | } |
| 413 | bpm->server_app_index = a->app_index; |
| 414 | |
| 415 | return 0; |
| 416 | } |
| 417 | |
| 418 | static int |
| 419 | active_open_attach (void) |
| 420 | { |
| 421 | builtin_proxy_main_t *bpm = &builtin_proxy_main; |
| 422 | vnet_app_attach_args_t _a, *a = &_a; |
| 423 | u8 segment_name[128]; |
| 424 | u32 segment_name_length; |
| 425 | u64 options[16]; |
| 426 | |
| 427 | segment_name_length = ARRAY_LEN (segment_name); |
| 428 | |
| 429 | memset (a, 0, sizeof (*a)); |
| 430 | memset (options, 0, sizeof (options)); |
| 431 | |
| 432 | a->api_client_index = bpm->active_open_client_index; |
| 433 | a->segment_name = segment_name; |
| 434 | a->segment_name_length = segment_name_length; |
| 435 | a->session_cb_vft = &builtin_clients; |
| 436 | |
| 437 | options[SESSION_OPTIONS_ACCEPT_COOKIE] = 0x12345678; |
| 438 | options[SESSION_OPTIONS_SEGMENT_SIZE] = 512 << 20; |
| 439 | options[SESSION_OPTIONS_RX_FIFO_SIZE] = bpm->fifo_size; |
| 440 | options[SESSION_OPTIONS_TX_FIFO_SIZE] = bpm->fifo_size; |
| 441 | options[APP_OPTIONS_PRIVATE_SEGMENT_COUNT] = bpm->private_segment_count; |
| 442 | options[APP_OPTIONS_PRIVATE_SEGMENT_SIZE] = bpm->private_segment_size; |
| 443 | options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = |
| 444 | bpm->prealloc_fifos ? bpm->prealloc_fifos : 1; |
| 445 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame^] | 446 | options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 447 | | APP_OPTIONS_FLAGS_IS_PROXY; |
| 448 | |
| 449 | a->options = options; |
| 450 | |
| 451 | if (vnet_application_attach (a)) |
| 452 | return -1; |
| 453 | |
| 454 | bpm->active_open_app_index = a->app_index; |
| 455 | |
| 456 | return 0; |
| 457 | } |
| 458 | |
| 459 | static int |
| 460 | server_listen () |
| 461 | { |
| 462 | builtin_proxy_main_t *bpm = &builtin_proxy_main; |
| 463 | vnet_bind_args_t _a, *a = &_a; |
| 464 | memset (a, 0, sizeof (*a)); |
| 465 | a->app_index = bpm->server_app_index; |
| 466 | a->uri = "tcp://0.0.0.0/23"; |
| 467 | return vnet_bind_uri (a); |
| 468 | } |
| 469 | |
| 470 | static int |
| 471 | server_create (vlib_main_t * vm) |
| 472 | { |
| 473 | builtin_proxy_main_t *bpm = &builtin_proxy_main; |
| 474 | vlib_thread_main_t *vtm = vlib_get_thread_main (); |
| 475 | u32 num_threads; |
| 476 | int i; |
| 477 | |
| 478 | if (bpm->server_client_index == (u32) ~ 0) |
| 479 | create_api_loopbacks (vm); |
| 480 | |
| 481 | num_threads = 1 /* main thread */ + vtm->n_threads; |
| 482 | vec_validate (builtin_proxy_main.server_event_queue, num_threads - 1); |
| 483 | vec_validate (builtin_proxy_main.active_open_event_queue, num_threads - 1); |
| 484 | vec_validate (bpm->rx_buf, num_threads - 1); |
| 485 | |
| 486 | for (i = 0; i < num_threads; i++) |
| 487 | vec_validate (bpm->rx_buf[i], bpm->rcv_buffer_size); |
| 488 | |
| 489 | if (server_attach ()) |
| 490 | { |
| 491 | clib_warning ("failed to attach server app"); |
| 492 | return -1; |
| 493 | } |
| 494 | if (server_listen ()) |
| 495 | { |
| 496 | clib_warning ("failed to start listening"); |
| 497 | return -1; |
| 498 | } |
| 499 | if (active_open_attach ()) |
| 500 | { |
| 501 | clib_warning ("failed to attach active open app"); |
| 502 | return -1; |
| 503 | } |
| 504 | |
| 505 | for (i = 0; i < num_threads; i++) |
| 506 | { |
| 507 | bpm->active_open_event_queue[i] = |
| 508 | session_manager_get_vpp_event_queue (i); |
| 509 | |
| 510 | ASSERT (bpm->active_open_event_queue[i]); |
| 511 | |
| 512 | bpm->server_event_queue[i] = session_manager_get_vpp_event_queue (i); |
| 513 | } |
| 514 | |
| 515 | return 0; |
| 516 | } |
| 517 | |
| 518 | static clib_error_t * |
| 519 | proxy_server_create_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 520 | vlib_cli_command_t * cmd) |
| 521 | { |
| 522 | builtin_proxy_main_t *bpm = &builtin_proxy_main; |
| 523 | int rv; |
Dave Barach | 91f3e74 | 2017-09-01 19:12:11 -0400 | [diff] [blame] | 524 | u64 tmp; |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 525 | |
| 526 | bpm->fifo_size = 64 << 10; |
| 527 | bpm->rcv_buffer_size = 1024; |
| 528 | bpm->prealloc_fifos = 0; |
| 529 | bpm->private_segment_count = 0; |
| 530 | bpm->private_segment_size = 0; |
| 531 | |
| 532 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 533 | { |
| 534 | if (unformat (input, "fifo-size %d", &bpm->fifo_size)) |
| 535 | bpm->fifo_size <<= 10; |
| 536 | else if (unformat (input, "rcv-buf-size %d", &bpm->rcv_buffer_size)) |
| 537 | ; |
| 538 | else if (unformat (input, "prealloc-fifos %d", &bpm->prealloc_fifos)) |
| 539 | ; |
| 540 | else if (unformat (input, "private-segment-count %d", |
| 541 | &bpm->private_segment_count)) |
| 542 | ; |
Dave Barach | 91f3e74 | 2017-09-01 19:12:11 -0400 | [diff] [blame] | 543 | else if (unformat (input, "private-segment-size %U", |
| 544 | unformat_memory_size, &tmp)) |
| 545 | { |
| 546 | if (tmp >= 0x100000000ULL) |
| 547 | return clib_error_return |
| 548 | (0, "private segment size %lld (%llu) too large", tmp, tmp); |
| 549 | bpm->private_segment_size = tmp; |
| 550 | } |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 551 | else |
| 552 | return clib_error_return (0, "unknown input `%U'", |
| 553 | format_unformat_error, input); |
| 554 | } |
| 555 | |
| 556 | vnet_session_enable_disable (vm, 1 /* turn on TCP, etc. */ ); |
| 557 | |
| 558 | rv = server_create (vm); |
| 559 | switch (rv) |
| 560 | { |
| 561 | case 0: |
| 562 | break; |
| 563 | default: |
| 564 | return clib_error_return (0, "server_create returned %d", rv); |
| 565 | } |
| 566 | |
| 567 | return 0; |
| 568 | } |
| 569 | |
| 570 | /* *INDENT-OFF* */ |
| 571 | VLIB_CLI_COMMAND (server_create_command, static) = |
| 572 | { |
| 573 | .path = "test proxy server", |
| 574 | .short_help = "test proxy server", |
| 575 | .function = proxy_server_create_command_fn, |
| 576 | }; |
| 577 | /* *INDENT-ON* */ |
| 578 | |
| 579 | clib_error_t * |
| 580 | builtin_tcp_proxy_main_init (vlib_main_t * vm) |
| 581 | { |
| 582 | builtin_proxy_main_t *bpm = &builtin_proxy_main; |
| 583 | bpm->server_client_index = ~0; |
| 584 | bpm->active_open_client_index = ~0; |
| 585 | bpm->proxy_session_by_active_open_handle = hash_create (0, sizeof (uword)); |
| 586 | bpm->proxy_session_by_server_handle = hash_create (0, sizeof (uword)); |
| 587 | |
| 588 | return 0; |
| 589 | } |
| 590 | |
| 591 | VLIB_INIT_FUNCTION (builtin_tcp_proxy_main_init); |
| 592 | |
| 593 | /* |
| 594 | * fd.io coding-style-patch-verification: ON |
| 595 | * |
| 596 | * Local Variables: |
| 597 | * eval: (c-set-style "gnu") |
| 598 | * End: |
| 599 | */ |