Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 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/session/application.h> |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 17 | #include <vnet/session/application_interface.h> |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 18 | #include <vnet/session/application_namespace.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 19 | #include <vnet/session/session.h> |
| 20 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 21 | static app_main_t app_main; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 22 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 23 | static app_listener_t * |
| 24 | app_listener_alloc (application_t * app) |
| 25 | { |
| 26 | app_listener_t *app_listener; |
| 27 | pool_get (app->listeners, app_listener); |
| 28 | memset (app_listener, 0, sizeof (*app_listener)); |
| 29 | app_listener->al_index = app_listener - app->listeners; |
| 30 | return app_listener; |
| 31 | } |
| 32 | |
| 33 | static app_listener_t * |
| 34 | app_listener_get (application_t * app, u32 app_listener_index) |
| 35 | { |
| 36 | return pool_elt_at_index (app->listeners, app_listener_index); |
| 37 | } |
| 38 | |
| 39 | static void |
| 40 | app_listener_free (application_t * app, app_listener_t * app_listener) |
| 41 | { |
| 42 | clib_bitmap_free (app_listener->workers); |
| 43 | pool_put (app->listeners, app_listener); |
| 44 | if (CLIB_DEBUG) |
| 45 | memset (app_listener, 0xfa, sizeof (*app_listener)); |
| 46 | } |
| 47 | |
| 48 | static app_listener_t * |
| 49 | app_local_listener_alloc (application_t * app) |
| 50 | { |
| 51 | app_listener_t *app_listener; |
| 52 | pool_get (app->local_listeners, app_listener); |
| 53 | memset (app_listener, 0, sizeof (*app_listener)); |
| 54 | app_listener->al_index = app_listener - app->local_listeners; |
| 55 | return app_listener; |
| 56 | } |
| 57 | |
| 58 | static app_listener_t * |
| 59 | app_local_listener_get (application_t * app, u32 app_listener_index) |
| 60 | { |
| 61 | return pool_elt_at_index (app->local_listeners, app_listener_index); |
| 62 | } |
| 63 | |
| 64 | static void |
| 65 | app_local_listener_free (application_t * app, app_listener_t * app_listener) |
| 66 | { |
| 67 | clib_bitmap_free (app_listener->workers); |
| 68 | pool_put (app->local_listeners, app_listener); |
| 69 | if (CLIB_DEBUG) |
| 70 | memset (app_listener, 0xfa, sizeof (*app_listener)); |
| 71 | } |
| 72 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 73 | static app_worker_map_t * |
| 74 | app_worker_map_alloc (application_t * app) |
| 75 | { |
| 76 | app_worker_map_t *map; |
| 77 | pool_get (app->worker_maps, map); |
| 78 | memset (map, 0, sizeof (*map)); |
| 79 | return map; |
| 80 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 81 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 82 | static u32 |
| 83 | app_worker_map_index (application_t * app, app_worker_map_t * map) |
| 84 | { |
| 85 | return (map - app->worker_maps); |
| 86 | } |
| 87 | |
| 88 | static void |
| 89 | app_worker_map_free (application_t * app, app_worker_map_t * map) |
| 90 | { |
| 91 | pool_put (app->worker_maps, map); |
| 92 | } |
| 93 | |
| 94 | static app_worker_map_t * |
| 95 | app_worker_map_get (application_t * app, u32 map_index) |
| 96 | { |
| 97 | return pool_elt_at_index (app->worker_maps, map_index); |
| 98 | } |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 99 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 100 | static u8 * |
| 101 | app_get_name_from_reg_index (application_t * app) |
| 102 | { |
| 103 | u8 *app_name; |
| 104 | |
| 105 | vl_api_registration_t *regp; |
| 106 | regp = vl_api_client_index_to_registration (app->api_client_index); |
| 107 | if (!regp) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 108 | app_name = format (0, "builtin-%d%c", app->app_index, 0); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 109 | else |
| 110 | app_name = format (0, "%s%c", regp->name, 0); |
| 111 | |
| 112 | return app_name; |
| 113 | } |
| 114 | |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 115 | static u8 * |
| 116 | app_get_name (application_t * app) |
| 117 | { |
| 118 | if (!app->name) |
| 119 | return app_get_name_from_reg_index (app); |
| 120 | return app->name; |
| 121 | } |
| 122 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 123 | u32 |
| 124 | application_session_table (application_t * app, u8 fib_proto) |
| 125 | { |
| 126 | app_namespace_t *app_ns; |
| 127 | app_ns = app_namespace_get (app->ns_index); |
| 128 | if (!application_has_global_scope (app)) |
| 129 | return APP_INVALID_INDEX; |
| 130 | if (fib_proto == FIB_PROTOCOL_IP4) |
| 131 | return session_lookup_get_index_for_fib (fib_proto, |
| 132 | app_ns->ip4_fib_index); |
| 133 | else |
| 134 | return session_lookup_get_index_for_fib (fib_proto, |
| 135 | app_ns->ip6_fib_index); |
| 136 | } |
| 137 | |
| 138 | u32 |
| 139 | application_local_session_table (application_t * app) |
| 140 | { |
| 141 | app_namespace_t *app_ns; |
| 142 | if (!application_has_local_scope (app)) |
| 143 | return APP_INVALID_INDEX; |
| 144 | app_ns = app_namespace_get (app->ns_index); |
| 145 | return app_ns->local_table_index; |
| 146 | } |
| 147 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 148 | static void |
| 149 | application_local_listener_session_endpoint (local_session_t * ll, |
| 150 | session_endpoint_t * sep) |
| 151 | { |
| 152 | sep->transport_proto = |
| 153 | session_type_transport_proto (ll->listener_session_type); |
| 154 | sep->port = ll->port; |
| 155 | sep->is_ip4 = ll->listener_session_type & 1; |
| 156 | } |
| 157 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 158 | int |
| 159 | application_api_queue_is_full (application_t * app) |
| 160 | { |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 161 | svm_queue_t *q; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 162 | |
| 163 | /* builtin servers are always OK */ |
| 164 | if (app->api_client_index == ~0) |
| 165 | return 0; |
| 166 | |
| 167 | q = vl_api_client_index_to_input_queue (app->api_client_index); |
| 168 | if (!q) |
| 169 | return 1; |
| 170 | |
| 171 | if (q->cursize == q->maxsize) |
| 172 | return 1; |
| 173 | return 0; |
| 174 | } |
| 175 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 176 | /** |
| 177 | * Returns app name |
| 178 | * |
| 179 | * Since the name is not stored per app, we generate it on the fly. It is |
| 180 | * the caller's responsibility to free the vector |
| 181 | */ |
| 182 | u8 * |
| 183 | application_name_from_index (u32 app_index) |
| 184 | { |
| 185 | application_t *app = application_get (app_index); |
| 186 | if (!app) |
| 187 | return 0; |
| 188 | return app_get_name_from_reg_index (app); |
| 189 | } |
| 190 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 191 | static void |
| 192 | application_table_add (application_t * app) |
| 193 | { |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 194 | if (app->api_client_index != APP_INVALID_INDEX) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 195 | hash_set (app_main.app_by_api_client_index, app->api_client_index, |
| 196 | app->app_index); |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 197 | else if (app->name) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 198 | hash_set_mem (app_main.app_by_name, app->name, app->app_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | static void |
| 202 | application_table_del (application_t * app) |
| 203 | { |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 204 | if (app->api_client_index != APP_INVALID_INDEX) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 205 | hash_unset (app_main.app_by_api_client_index, app->api_client_index); |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 206 | else if (app->name) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 207 | hash_unset_mem (app_main.app_by_name, app->name); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | application_t * |
| 211 | application_lookup (u32 api_client_index) |
| 212 | { |
| 213 | uword *p; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 214 | p = hash_get (app_main.app_by_api_client_index, api_client_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 215 | if (p) |
| 216 | return application_get (p[0]); |
| 217 | |
| 218 | return 0; |
| 219 | } |
| 220 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 221 | application_t * |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 222 | application_lookup_name (const u8 * name) |
| 223 | { |
| 224 | uword *p; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 225 | p = hash_get_mem (app_main.app_by_name, name); |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 226 | if (p) |
| 227 | return application_get (p[0]); |
| 228 | |
| 229 | return 0; |
| 230 | } |
| 231 | |
| 232 | application_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 233 | application_alloc (void) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 234 | { |
| 235 | application_t *app; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 236 | pool_get (app_main.app_pool, app); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 237 | memset (app, 0, sizeof (*app)); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 238 | app->app_index = app - app_main.app_pool; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 239 | return app; |
| 240 | } |
| 241 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 242 | application_t * |
| 243 | application_get (u32 app_index) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 244 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 245 | if (app_index == APP_INVALID_INDEX) |
| 246 | return 0; |
| 247 | return pool_elt_at_index (app_main.app_pool, app_index); |
| 248 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 249 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 250 | application_t * |
| 251 | application_get_if_valid (u32 app_index) |
| 252 | { |
| 253 | if (pool_is_free_index (app_main.app_pool, app_index)) |
| 254 | return 0; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 255 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 256 | return pool_elt_at_index (app_main.app_pool, app_index); |
| 257 | } |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 258 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 259 | u32 |
| 260 | application_index (application_t * app) |
| 261 | { |
| 262 | return app - app_main.app_pool; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 263 | } |
| 264 | |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 265 | static void |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 266 | application_verify_cb_fns (session_cb_vft_t * cb_fns) |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 267 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 268 | if (cb_fns->session_accept_callback == 0) |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 269 | clib_warning ("No accept callback function provided"); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 270 | if (cb_fns->session_connected_callback == 0) |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 271 | clib_warning ("No session connected callback function provided"); |
| 272 | if (cb_fns->session_disconnect_callback == 0) |
| 273 | clib_warning ("No session disconnect callback function provided"); |
| 274 | if (cb_fns->session_reset_callback == 0) |
| 275 | clib_warning ("No session reset callback function provided"); |
| 276 | } |
| 277 | |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 278 | /** |
| 279 | * Check app config for given segment type |
| 280 | * |
| 281 | * Returns 1 on success and 0 otherwise |
| 282 | */ |
| 283 | static u8 |
| 284 | application_verify_cfg (ssvm_segment_type_t st) |
| 285 | { |
| 286 | u8 is_valid; |
| 287 | if (st == SSVM_SEGMENT_MEMFD) |
| 288 | { |
| 289 | is_valid = (session_manager_get_evt_q_segment () != 0); |
| 290 | if (!is_valid) |
| 291 | clib_warning ("memfd seg: vpp's event qs IN binary api svm region"); |
| 292 | return is_valid; |
| 293 | } |
| 294 | else if (st == SSVM_SEGMENT_SHM) |
| 295 | { |
| 296 | is_valid = (session_manager_get_evt_q_segment () == 0); |
| 297 | if (!is_valid) |
| 298 | clib_warning ("shm seg: vpp's event qs NOT IN binary api svm region"); |
| 299 | return is_valid; |
| 300 | } |
| 301 | else |
| 302 | return 1; |
| 303 | } |
| 304 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 305 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 306 | application_alloc_and_init (app_init_args_t * a) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 307 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 308 | ssvm_segment_type_t seg_type = SSVM_SEGMENT_MEMFD; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 309 | segment_manager_properties_t *props; |
| 310 | vl_api_registration_t *reg; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 311 | application_t *app; |
| 312 | u64 *options; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 313 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 314 | app = application_alloc (); |
| 315 | options = a->options; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 316 | /* |
| 317 | * Make sure we support the requested configuration |
| 318 | */ |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 319 | if (!(options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_IS_BUILTIN)) |
| 320 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 321 | reg = vl_api_client_index_to_registration (a->api_client_index); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 322 | if (!reg) |
| 323 | return VNET_API_ERROR_APP_UNSUPPORTED_CFG; |
| 324 | if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI) |
| 325 | seg_type = SSVM_SEGMENT_SHM; |
| 326 | } |
| 327 | else |
| 328 | { |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 329 | if (options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD) |
| 330 | { |
| 331 | clib_warning ("mq eventfds can only be used if socket transport is " |
| 332 | "used for api"); |
| 333 | return VNET_API_ERROR_APP_UNSUPPORTED_CFG; |
| 334 | } |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 335 | seg_type = SSVM_SEGMENT_PRIVATE; |
| 336 | } |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 337 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 338 | if (!application_verify_cfg (seg_type)) |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 339 | return VNET_API_ERROR_APP_UNSUPPORTED_CFG; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 340 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 341 | /* Check that the obvious things are properly set up */ |
| 342 | application_verify_cb_fns (a->session_cb_vft); |
| 343 | |
| 344 | app->api_client_index = a->api_client_index; |
| 345 | app->flags = options[APP_OPTIONS_FLAGS]; |
| 346 | app->cb_fns = *a->session_cb_vft; |
| 347 | app->ns_index = options[APP_OPTIONS_NAMESPACE]; |
| 348 | app->proxied_transports = options[APP_OPTIONS_PROXY_TRANSPORT]; |
| 349 | app->name = vec_dup (a->name); |
| 350 | |
| 351 | /* If no scope enabled, default to global */ |
| 352 | if (!application_has_global_scope (app) |
| 353 | && !application_has_local_scope (app)) |
| 354 | app->flags |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE; |
| 355 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 356 | props = application_segment_manager_properties (app); |
| 357 | segment_manager_properties_init (props); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 358 | props->segment_size = options[APP_OPTIONS_ADD_SEGMENT_SIZE]; |
| 359 | props->prealloc_fifos = options[APP_OPTIONS_PREALLOC_FIFO_PAIRS]; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 360 | if (options[APP_OPTIONS_ADD_SEGMENT_SIZE]) |
| 361 | { |
| 362 | props->add_segment_size = options[APP_OPTIONS_ADD_SEGMENT_SIZE]; |
| 363 | props->add_segment = 1; |
| 364 | } |
| 365 | if (options[APP_OPTIONS_RX_FIFO_SIZE]) |
| 366 | props->rx_fifo_size = options[APP_OPTIONS_RX_FIFO_SIZE]; |
| 367 | if (options[APP_OPTIONS_TX_FIFO_SIZE]) |
| 368 | props->tx_fifo_size = options[APP_OPTIONS_TX_FIFO_SIZE]; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 369 | if (options[APP_OPTIONS_EVT_QUEUE_SIZE]) |
| 370 | props->evt_q_size = options[APP_OPTIONS_EVT_QUEUE_SIZE]; |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 371 | if (options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD) |
| 372 | props->use_mq_eventfd = 1; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 373 | if (options[APP_OPTIONS_TLS_ENGINE]) |
| 374 | app->tls_engine = options[APP_OPTIONS_TLS_ENGINE]; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 375 | props->segment_type = seg_type; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 376 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 377 | /* Add app to lookup by api_client_index table */ |
| 378 | application_table_add (app); |
| 379 | a->app_index = application_index (app); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 380 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 381 | APP_DBG ("New app name: %v api index: %u index %u", app->name, |
| 382 | app->api_client_index, app->app_index); |
| 383 | |
| 384 | return 0; |
| 385 | } |
| 386 | |
| 387 | void |
| 388 | application_free (application_t * app) |
| 389 | { |
| 390 | app_worker_map_t *wrk_map; |
| 391 | app_worker_t *app_wrk; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 392 | u32 table_index; |
| 393 | local_session_t *ll; |
| 394 | session_endpoint_t sep; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 395 | |
| 396 | /* |
| 397 | * The app event queue allocated in first segment is cleared with |
| 398 | * the segment manager. No need to explicitly free it. |
| 399 | */ |
| 400 | APP_DBG ("Delete app name %v api index: %d index: %d", app->name, |
| 401 | app->api_client_index, app->app_index); |
| 402 | |
| 403 | if (application_is_proxy (app)) |
| 404 | application_remove_proxy (app); |
| 405 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 406 | /* |
| 407 | * Free workers |
| 408 | */ |
| 409 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 410 | /* *INDENT-OFF* */ |
| 411 | pool_flush (wrk_map, app->worker_maps, ({ |
| 412 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 413 | app_worker_free (app_wrk); |
| 414 | })); |
| 415 | /* *INDENT-ON* */ |
| 416 | pool_free (app->worker_maps); |
| 417 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 418 | /* |
| 419 | * Free local listeners. Global table unbinds stop local listeners |
| 420 | * as well, but if we have only local binds, these won't be cleaned up. |
| 421 | * Don't bother with local accepted sessions, we clean them when |
| 422 | * cleaning up the worker. |
| 423 | */ |
| 424 | table_index = application_local_session_table (app); |
| 425 | /* *INDENT-OFF* */ |
| 426 | pool_foreach (ll, app->local_listen_sessions, ({ |
| 427 | application_local_listener_session_endpoint (ll, &sep); |
| 428 | session_lookup_del_session_endpoint (table_index, &sep); |
| 429 | })); |
| 430 | /* *INDENT-ON* */ |
| 431 | pool_free (app->local_listen_sessions); |
| 432 | |
| 433 | /* |
| 434 | * Cleanup remaining state |
| 435 | */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 436 | application_table_del (app); |
| 437 | vec_free (app->name); |
| 438 | vec_free (app->tls_cert); |
| 439 | vec_free (app->tls_key); |
| 440 | pool_put (app_main.app_pool, app); |
| 441 | } |
| 442 | |
| 443 | app_worker_t * |
| 444 | application_get_worker (application_t * app, u32 wrk_map_index) |
| 445 | { |
| 446 | app_worker_map_t *map; |
| 447 | map = app_worker_map_get (app, wrk_map_index); |
| 448 | if (!map) |
| 449 | return 0; |
| 450 | return app_worker_get (map->wrk_index); |
| 451 | } |
| 452 | |
| 453 | app_worker_t * |
| 454 | application_get_default_worker (application_t * app) |
| 455 | { |
| 456 | return application_get_worker (app, 0); |
| 457 | } |
| 458 | |
| 459 | app_worker_t * |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 460 | application_listener_select_worker (stream_session_t * ls, u8 is_local) |
| 461 | { |
| 462 | app_listener_t *app_listener; |
| 463 | application_t *app; |
| 464 | u32 wrk_index; |
| 465 | |
| 466 | app = application_get (ls->app_index); |
| 467 | if (!is_local) |
| 468 | app_listener = app_listener_get (app, ls->listener_db_index); |
| 469 | else |
| 470 | app_listener = app_local_listener_get (app, ls->listener_db_index); |
| 471 | |
| 472 | wrk_index = clib_bitmap_next_set (app_listener->workers, |
| 473 | app_listener->accept_rotor + 1); |
| 474 | if (wrk_index == ~0) |
| 475 | wrk_index = clib_bitmap_first_set (app_listener->workers); |
| 476 | |
| 477 | ASSERT (wrk_index != ~0); |
| 478 | app_listener->accept_rotor = wrk_index; |
| 479 | return application_get_worker (app, wrk_index); |
| 480 | } |
| 481 | |
| 482 | app_worker_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 483 | app_worker_alloc (application_t * app) |
| 484 | { |
| 485 | app_worker_t *app_wrk; |
| 486 | pool_get (app_main.workers, app_wrk); |
| 487 | memset (app_wrk, 0, sizeof (*app_wrk)); |
| 488 | app_wrk->wrk_index = app_wrk - app_main.workers; |
| 489 | app_wrk->app_index = app->app_index; |
| 490 | app_wrk->wrk_map_index = ~0; |
| 491 | app_wrk->connects_seg_manager = APP_INVALID_SEGMENT_MANAGER_INDEX; |
| 492 | app_wrk->first_segment_manager = APP_INVALID_SEGMENT_MANAGER_INDEX; |
| 493 | app_wrk->local_segment_manager = APP_INVALID_SEGMENT_MANAGER_INDEX; |
| 494 | APP_DBG ("New app %v worker %u", app_get_name (app), app_wrk->wrk_index); |
| 495 | return app_wrk; |
| 496 | } |
| 497 | |
| 498 | app_worker_t * |
| 499 | app_worker_get (u32 wrk_index) |
| 500 | { |
| 501 | return pool_elt_at_index (app_main.workers, wrk_index); |
| 502 | } |
| 503 | |
| 504 | app_worker_t * |
| 505 | app_worker_get_if_valid (u32 wrk_index) |
| 506 | { |
| 507 | if (pool_is_free_index (app_main.workers, wrk_index)) |
| 508 | return 0; |
| 509 | return pool_elt_at_index (app_main.workers, wrk_index); |
| 510 | } |
| 511 | |
| 512 | void |
| 513 | app_worker_free (app_worker_t * app_wrk) |
| 514 | { |
| 515 | application_t *app = application_get (app_wrk->app_index); |
| 516 | vnet_unbind_args_t _a, *a = &_a; |
| 517 | u64 handle, *handles = 0; |
| 518 | segment_manager_t *sm; |
| 519 | u32 sm_index; |
| 520 | int i; |
| 521 | |
| 522 | /* |
| 523 | * Listener cleanup |
| 524 | */ |
| 525 | |
| 526 | /* *INDENT-OFF* */ |
| 527 | hash_foreach (handle, sm_index, app_wrk->listeners_table, |
| 528 | ({ |
| 529 | vec_add1 (handles, handle); |
| 530 | sm = segment_manager_get (sm_index); |
| 531 | sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX; |
| 532 | })); |
| 533 | /* *INDENT-ON* */ |
| 534 | |
| 535 | for (i = 0; i < vec_len (handles); i++) |
| 536 | { |
| 537 | a->app_index = app->app_index; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 538 | a->wrk_map_index = app_wrk->wrk_map_index; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 539 | a->handle = handles[i]; |
| 540 | /* seg manager is removed when unbind completes */ |
| 541 | vnet_unbind (a); |
| 542 | } |
| 543 | |
| 544 | /* |
| 545 | * Connects segment manager cleanup |
| 546 | */ |
| 547 | |
| 548 | if (app_wrk->connects_seg_manager != APP_INVALID_SEGMENT_MANAGER_INDEX) |
| 549 | { |
| 550 | sm = segment_manager_get (app_wrk->connects_seg_manager); |
| 551 | sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX; |
| 552 | segment_manager_init_del (sm); |
| 553 | } |
| 554 | |
| 555 | /* If first segment manager is used by a listener */ |
| 556 | if (app_wrk->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX |
| 557 | && app_wrk->first_segment_manager != app_wrk->connects_seg_manager) |
| 558 | { |
| 559 | sm = segment_manager_get (app_wrk->first_segment_manager); |
| 560 | /* .. and has no fifos, e.g. it might be used for redirected sessions, |
| 561 | * remove it */ |
| 562 | if (!segment_manager_has_fifos (sm)) |
| 563 | { |
| 564 | sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX; |
| 565 | segment_manager_del (sm); |
| 566 | } |
| 567 | } |
| 568 | |
| 569 | /* |
| 570 | * Local sessions |
| 571 | */ |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 572 | app_worker_local_sessions_free (app_wrk); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 573 | |
| 574 | pool_put (app_main.workers, app_wrk); |
| 575 | if (CLIB_DEBUG) |
| 576 | memset (app_wrk, 0xfe, sizeof (*app_wrk)); |
| 577 | } |
| 578 | |
| 579 | int |
| 580 | app_worker_alloc_and_init (application_t * app, app_worker_t ** wrk) |
| 581 | { |
| 582 | app_worker_map_t *wrk_map; |
| 583 | app_worker_t *app_wrk; |
| 584 | segment_manager_t *sm; |
| 585 | int rv; |
| 586 | |
| 587 | app_wrk = app_worker_alloc (app); |
| 588 | wrk_map = app_worker_map_alloc (app); |
| 589 | wrk_map->wrk_index = app_wrk->wrk_index; |
| 590 | app_wrk->wrk_map_index = app_worker_map_index (app, wrk_map); |
| 591 | |
| 592 | /* |
| 593 | * Setup first segment manager |
| 594 | */ |
| 595 | sm = segment_manager_new (); |
| 596 | sm->app_wrk_index = app_wrk->wrk_index; |
| 597 | |
| 598 | if ((rv = segment_manager_init (sm, app->sm_properties.segment_size, |
| 599 | app->sm_properties.prealloc_fifos))) |
| 600 | { |
| 601 | app_worker_free (app_wrk); |
| 602 | return rv; |
| 603 | } |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 604 | sm->first_is_protected = 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 605 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 606 | /* |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 607 | * Setup app worker |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 608 | */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 609 | app_wrk->first_segment_manager = segment_manager_index (sm); |
| 610 | app_wrk->listeners_table = hash_create (0, sizeof (u64)); |
| 611 | app_wrk->event_queue = segment_manager_event_queue (sm); |
| 612 | app_wrk->app_is_builtin = application_is_builtin (app); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 613 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 614 | /* |
| 615 | * Segment manager for local sessions |
| 616 | */ |
| 617 | sm = segment_manager_new (); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 618 | sm->app_wrk_index = app_wrk->wrk_index; |
| 619 | app_wrk->local_segment_manager = segment_manager_index (sm); |
| 620 | app_wrk->local_connects = hash_create (0, sizeof (u64)); |
| 621 | |
| 622 | *wrk = app_wrk; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 623 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 624 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 625 | } |
| 626 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 627 | application_t * |
| 628 | app_worker_get_app (u32 wrk_index) |
| 629 | { |
| 630 | app_worker_t *app_wrk; |
| 631 | app_wrk = app_worker_get_if_valid (wrk_index); |
| 632 | if (!app_wrk) |
| 633 | return 0; |
| 634 | return application_get_if_valid (app_wrk->app_index); |
| 635 | } |
| 636 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 637 | static segment_manager_t * |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 638 | app_worker_alloc_segment_manager (app_worker_t * app_wrk) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 639 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 640 | segment_manager_t *sm = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 641 | |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 642 | /* If the first segment manager is not in use, don't allocate a new one */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 643 | if (app_wrk->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX |
| 644 | && app_wrk->first_segment_manager_in_use == 0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 645 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 646 | sm = segment_manager_get (app_wrk->first_segment_manager); |
| 647 | app_wrk->first_segment_manager_in_use = 1; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 648 | return sm; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 649 | } |
| 650 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 651 | sm = segment_manager_new (); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 652 | sm->app_wrk_index = app_wrk->wrk_index; |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 653 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 654 | return sm; |
| 655 | } |
| 656 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 657 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 658 | app_worker_start_listen (app_worker_t * app_wrk, stream_session_t * ls) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 659 | { |
| 660 | segment_manager_t *sm; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 661 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 662 | /* Allocate segment manager. All sessions derived out of a listen session |
| 663 | * have fifos allocated by the same segment manager. */ |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 664 | if (!(sm = app_worker_alloc_segment_manager (app_wrk))) |
| 665 | return -1; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 666 | |
| 667 | /* Add to app's listener table. Useful to find all child listeners |
| 668 | * when app goes down, although, just for unbinding this is not needed */ |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 669 | hash_set (app_wrk->listeners_table, listen_session_get_handle (ls), |
| 670 | segment_manager_index (sm)); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 671 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 672 | if (!ls->server_rx_fifo |
| 673 | && session_transport_service_type (ls) == TRANSPORT_SERVICE_CL) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 674 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 675 | if (session_alloc_fifos (sm, ls)) |
| 676 | return -1; |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 677 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 678 | return 0; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 679 | } |
| 680 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 681 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 682 | app_worker_stop_listen (app_worker_t * app_wrk, session_handle_t handle) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 683 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 684 | segment_manager_t *sm; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 685 | uword *sm_indexp; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 686 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 687 | sm_indexp = hash_get (app_wrk->listeners_table, handle); |
| 688 | if (PREDICT_FALSE (!sm_indexp)) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 689 | { |
| 690 | clib_warning ("listener handle was removed %llu!", handle); |
| 691 | return -1; |
| 692 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 693 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 694 | sm = segment_manager_get (*sm_indexp); |
| 695 | if (app_wrk->first_segment_manager == *sm_indexp) |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 696 | { |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 697 | /* Delete sessions but don't remove segment manager */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 698 | app_wrk->first_segment_manager_in_use = 0; |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 699 | segment_manager_del_sessions (sm); |
| 700 | } |
| 701 | else |
| 702 | { |
| 703 | segment_manager_init_del (sm); |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 704 | } |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 705 | hash_unset (app_wrk->listeners_table, handle); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 706 | |
| 707 | return 0; |
| 708 | } |
| 709 | |
| 710 | /** |
| 711 | * Start listening local transport endpoint for requested transport. |
| 712 | * |
| 713 | * Creates a 'dummy' stream session with state LISTENING to be used in session |
| 714 | * lookups, prior to establishing connection. Requests transport to build |
| 715 | * it's own specific listening connection. |
| 716 | */ |
| 717 | int |
| 718 | application_start_listen (application_t * app, |
| 719 | session_endpoint_extended_t * sep_ext, |
| 720 | session_handle_t * res) |
| 721 | { |
| 722 | app_listener_t *app_listener; |
| 723 | u32 table_index, fib_proto; |
| 724 | session_endpoint_t *sep; |
| 725 | app_worker_t *app_wrk; |
| 726 | stream_session_t *ls; |
| 727 | session_handle_t lh; |
| 728 | session_type_t sst; |
| 729 | |
| 730 | /* |
| 731 | * Check if sep is already listened on |
| 732 | */ |
| 733 | sep = (session_endpoint_t *) sep_ext; |
| 734 | fib_proto = session_endpoint_fib_proto (sep); |
| 735 | table_index = application_session_table (app, fib_proto); |
| 736 | lh = session_lookup_endpoint_listener (table_index, sep, 1); |
| 737 | if (lh != SESSION_INVALID_HANDLE) |
| 738 | { |
| 739 | ls = listen_session_get_from_handle (lh); |
| 740 | if (ls->app_index != app->app_index) |
| 741 | return VNET_API_ERROR_ADDRESS_IN_USE; |
| 742 | |
| 743 | app_wrk = app_worker_get (sep_ext->app_wrk_index); |
| 744 | if (ls->app_wrk_index == app_wrk->wrk_index) |
| 745 | return VNET_API_ERROR_ADDRESS_IN_USE; |
| 746 | |
| 747 | if (app_worker_start_listen (app_wrk, ls)) |
| 748 | return -1; |
| 749 | |
| 750 | app_listener = app_listener_get (app, ls->listener_db_index); |
| 751 | app_listener->workers = clib_bitmap_set (app_listener->workers, |
| 752 | app_wrk->wrk_map_index, 1); |
| 753 | |
| 754 | *res = listen_session_get_handle (ls); |
| 755 | return 0; |
| 756 | } |
| 757 | |
| 758 | /* |
| 759 | * Allocate new listener for application |
| 760 | */ |
| 761 | sst = session_type_from_proto_and_ip (sep_ext->transport_proto, |
| 762 | sep_ext->is_ip4); |
| 763 | ls = listen_session_new (0, sst); |
| 764 | ls->app_index = app->app_index; |
| 765 | |
| 766 | if (session_listen (ls, sep_ext)) |
| 767 | goto err; |
| 768 | |
| 769 | app_listener = app_listener_alloc (app); |
| 770 | ls->listener_db_index = app_listener->al_index; |
| 771 | |
| 772 | /* |
| 773 | * Setup app worker as a listener |
| 774 | */ |
| 775 | app_wrk = app_worker_get (sep_ext->app_wrk_index); |
| 776 | ls->app_wrk_index = app_wrk->wrk_index; |
| 777 | if (app_worker_start_listen (app_wrk, ls)) |
| 778 | goto err; |
| 779 | app_listener->workers = clib_bitmap_set (app_listener->workers, |
| 780 | app_wrk->wrk_map_index, 1); |
| 781 | |
| 782 | *res = listen_session_get_handle (ls); |
| 783 | return 0; |
| 784 | |
| 785 | err: |
| 786 | listen_session_del (ls); |
| 787 | return -1; |
| 788 | } |
| 789 | |
| 790 | /** |
| 791 | * Stop listening on session associated to handle |
| 792 | * |
| 793 | * @param handle listener handle |
| 794 | * @param app_index index of the app owning the handle. |
| 795 | * @param app_wrk_index index of the worker requesting the stop |
| 796 | */ |
| 797 | int |
| 798 | application_stop_listen (u32 app_index, u32 app_wrk_index, |
| 799 | session_handle_t handle) |
| 800 | { |
| 801 | app_listener_t *app_listener; |
| 802 | stream_session_t *listener; |
| 803 | app_worker_t *app_wrk; |
| 804 | application_t *app; |
| 805 | |
| 806 | listener = listen_session_get_from_handle (handle); |
| 807 | app = application_get (app_index); |
| 808 | if (PREDICT_FALSE (!app || app->app_index != listener->app_index)) |
| 809 | { |
| 810 | clib_warning ("app doesn't own handle %llu!", handle); |
| 811 | return -1; |
| 812 | } |
| 813 | |
| 814 | app_listener = app_listener_get (app, listener->listener_db_index); |
| 815 | if (!clib_bitmap_get (app_listener->workers, app_wrk_index)) |
| 816 | { |
| 817 | clib_warning ("worker not listening on handle %lu", handle); |
| 818 | return 0; |
| 819 | } |
| 820 | |
| 821 | app_wrk = application_get_worker (app, app_wrk_index); |
| 822 | app_worker_stop_listen (app_wrk, handle); |
| 823 | clib_bitmap_set_no_check (app_listener->workers, app_wrk_index, 0); |
| 824 | |
| 825 | if (clib_bitmap_is_zero (app_listener->workers)) |
| 826 | { |
| 827 | session_stop_listen (listener); |
| 828 | app_listener_free (app, app_listener); |
| 829 | listen_session_del (listener); |
| 830 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 831 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 832 | return 0; |
| 833 | } |
| 834 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 835 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 836 | app_worker_open_session (app_worker_t * app, session_endpoint_t * sep, |
| 837 | u32 api_context) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 838 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 839 | int rv; |
| 840 | |
| 841 | /* Make sure we have a segment manager for connects */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 842 | app_worker_alloc_connects_segment_manager (app); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 843 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 844 | if ((rv = session_open (app->wrk_index, sep, api_context))) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 845 | return rv; |
| 846 | |
| 847 | return 0; |
| 848 | } |
| 849 | |
| 850 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 851 | app_worker_alloc_connects_segment_manager (app_worker_t * app_wrk) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 852 | { |
| 853 | segment_manager_t *sm; |
| 854 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 855 | if (app_wrk->connects_seg_manager == APP_INVALID_SEGMENT_MANAGER_INDEX) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 856 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 857 | sm = app_worker_alloc_segment_manager (app_wrk); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 858 | if (sm == 0) |
| 859 | return -1; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 860 | app_wrk->connects_seg_manager = segment_manager_index (sm); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 861 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 862 | return 0; |
| 863 | } |
| 864 | |
| 865 | segment_manager_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 866 | app_worker_get_connect_segment_manager (app_worker_t * app) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 867 | { |
| 868 | ASSERT (app->connects_seg_manager != (u32) ~ 0); |
| 869 | return segment_manager_get (app->connects_seg_manager); |
| 870 | } |
| 871 | |
| 872 | segment_manager_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 873 | app_worker_get_listen_segment_manager (app_worker_t * app, |
| 874 | stream_session_t * s) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 875 | { |
| 876 | uword *smp; |
| 877 | smp = hash_get (app->listeners_table, listen_session_get_handle (s)); |
| 878 | ASSERT (smp != 0); |
| 879 | return segment_manager_get (*smp); |
| 880 | } |
| 881 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 882 | clib_error_t * |
| 883 | vnet_app_worker_add_del (vnet_app_worker_add_del_args_t * a) |
| 884 | { |
| 885 | svm_fifo_segment_private_t *fs; |
| 886 | app_worker_map_t *wrk_map; |
| 887 | app_worker_t *app_wrk; |
| 888 | segment_manager_t *sm; |
| 889 | application_t *app; |
| 890 | int rv; |
| 891 | |
| 892 | app = application_get (a->app_index); |
| 893 | if (!app) |
| 894 | return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0, |
| 895 | "App %u does not exist", a->app_index); |
| 896 | |
| 897 | if (a->is_add) |
| 898 | { |
| 899 | if ((rv = app_worker_alloc_and_init (app, &app_wrk))) |
| 900 | return clib_error_return_code (0, rv, 0, "app wrk init: %d", rv); |
| 901 | sm = segment_manager_get (app_wrk->first_segment_manager); |
| 902 | fs = segment_manager_get_segment_w_lock (sm, 0); |
| 903 | a->segment = &fs->ssvm; |
| 904 | segment_manager_segment_reader_unlock (sm); |
| 905 | a->evt_q = app_wrk->event_queue; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 906 | a->wrk_index = app_wrk->wrk_map_index; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 907 | } |
| 908 | else |
| 909 | { |
| 910 | wrk_map = app_worker_map_get (app, a->wrk_index); |
| 911 | if (!wrk_map) |
| 912 | return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0, |
| 913 | "App %u does not have worker %u", |
| 914 | app->app_index, a->wrk_index); |
| 915 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 916 | app_worker_map_free (app, wrk_map); |
| 917 | if (!app_wrk) |
| 918 | return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0, |
| 919 | "No worker %u", a->wrk_index); |
| 920 | app_worker_free (app_wrk); |
| 921 | } |
| 922 | return 0; |
| 923 | } |
| 924 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 925 | segment_manager_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 926 | application_get_local_segment_manager (app_worker_t * app) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 927 | { |
| 928 | return segment_manager_get (app->local_segment_manager); |
| 929 | } |
| 930 | |
| 931 | segment_manager_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 932 | application_get_local_segment_manager_w_session (app_worker_t * app, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 933 | local_session_t * ls) |
| 934 | { |
| 935 | stream_session_t *listener; |
| 936 | if (application_local_session_listener_has_transport (ls)) |
| 937 | { |
Florin Coras | 5c9083d | 2018-04-13 06:39:07 -0700 | [diff] [blame] | 938 | listener = listen_session_get (ls->listener_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 939 | return app_worker_get_listen_segment_manager (app, listener); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 940 | } |
| 941 | return segment_manager_get (app->local_segment_manager); |
| 942 | } |
| 943 | |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 944 | int |
| 945 | application_is_proxy (application_t * app) |
| 946 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 947 | return (app->flags & APP_OPTIONS_FLAGS_IS_PROXY); |
| 948 | } |
| 949 | |
| 950 | int |
| 951 | application_is_builtin (application_t * app) |
| 952 | { |
| 953 | return (app->flags & APP_OPTIONS_FLAGS_IS_BUILTIN); |
| 954 | } |
| 955 | |
| 956 | int |
| 957 | application_is_builtin_proxy (application_t * app) |
| 958 | { |
| 959 | return (application_is_proxy (app) && application_is_builtin (app)); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 960 | } |
| 961 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 962 | u8 |
| 963 | application_has_local_scope (application_t * app) |
| 964 | { |
| 965 | return app->flags & APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE; |
| 966 | } |
| 967 | |
| 968 | u8 |
| 969 | application_has_global_scope (application_t * app) |
| 970 | { |
| 971 | return app->flags & APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE; |
| 972 | } |
| 973 | |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 974 | u8 |
| 975 | application_use_mq_for_ctrl (application_t * app) |
| 976 | { |
| 977 | return app->flags & APP_OPTIONS_FLAGS_USE_MQ_FOR_CTRL_MSGS; |
| 978 | } |
| 979 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 980 | /** |
| 981 | * Send an API message to the external app, to map new segment |
| 982 | */ |
| 983 | int |
| 984 | app_worker_add_segment_notify (u32 app_wrk_index, ssvm_private_t * fs) |
| 985 | { |
| 986 | app_worker_t *app_wrk = app_worker_get (app_wrk_index); |
| 987 | application_t *app = application_get (app_wrk->app_index); |
| 988 | return app->cb_fns.add_segment_callback (app->api_client_index, fs); |
| 989 | } |
| 990 | |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 991 | u32 |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 992 | application_n_listeners (app_worker_t * app) |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 993 | { |
| 994 | return hash_elts (app->listeners_table); |
| 995 | } |
| 996 | |
| 997 | stream_session_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 998 | app_worker_first_listener (app_worker_t * app, u8 fib_proto, |
| 999 | u8 transport_proto) |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 1000 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1001 | stream_session_t *listener; |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 1002 | u64 handle; |
| 1003 | u32 sm_index; |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1004 | u8 sst; |
| 1005 | |
| 1006 | sst = session_type_from_proto_and_ip (transport_proto, |
| 1007 | fib_proto == FIB_PROTOCOL_IP4); |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 1008 | |
| 1009 | /* *INDENT-OFF* */ |
| 1010 | hash_foreach (handle, sm_index, app->listeners_table, ({ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1011 | listener = listen_session_get_from_handle (handle); |
Florin Coras | c3ddea8 | 2017-11-27 03:12:00 -0800 | [diff] [blame] | 1012 | if (listener->session_type == sst |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1013 | && listener->enqueue_epoch != SESSION_PROXY_LISTENER_INDEX) |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1014 | return listener; |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 1015 | })); |
| 1016 | /* *INDENT-ON* */ |
| 1017 | |
| 1018 | return 0; |
| 1019 | } |
| 1020 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1021 | u8 |
| 1022 | app_worker_application_is_builtin (app_worker_t * app_wrk) |
| 1023 | { |
| 1024 | return app_wrk->app_is_builtin; |
| 1025 | } |
| 1026 | |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1027 | stream_session_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1028 | application_proxy_listener (app_worker_t * app, u8 fib_proto, |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1029 | u8 transport_proto) |
| 1030 | { |
| 1031 | stream_session_t *listener; |
| 1032 | u64 handle; |
| 1033 | u32 sm_index; |
| 1034 | u8 sst; |
| 1035 | |
| 1036 | sst = session_type_from_proto_and_ip (transport_proto, |
| 1037 | fib_proto == FIB_PROTOCOL_IP4); |
| 1038 | |
| 1039 | /* *INDENT-OFF* */ |
| 1040 | hash_foreach (handle, sm_index, app->listeners_table, ({ |
| 1041 | listener = listen_session_get_from_handle (handle); |
| 1042 | if (listener->session_type == sst |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1043 | && listener->enqueue_epoch == SESSION_PROXY_LISTENER_INDEX) |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1044 | return listener; |
| 1045 | })); |
| 1046 | /* *INDENT-ON* */ |
| 1047 | |
| 1048 | return 0; |
| 1049 | } |
| 1050 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1051 | static clib_error_t * |
| 1052 | application_start_stop_proxy_fib_proto (application_t * app, u8 fib_proto, |
| 1053 | u8 transport_proto, u8 is_start) |
| 1054 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1055 | app_namespace_t *app_ns = app_namespace_get (app->ns_index); |
| 1056 | u8 is_ip4 = (fib_proto == FIB_PROTOCOL_IP4); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1057 | session_endpoint_extended_t sep = SESSION_ENDPOINT_EXT_NULL; |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1058 | transport_connection_t *tc; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1059 | app_worker_t *app_wrk; |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1060 | stream_session_t *s; |
| 1061 | u64 handle; |
| 1062 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1063 | /* TODO decide if we want proxy to be enabled for all workers */ |
| 1064 | app_wrk = application_get_default_worker (app); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1065 | if (is_start) |
| 1066 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1067 | s = app_worker_first_listener (app_wrk, fib_proto, transport_proto); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1068 | if (!s) |
| 1069 | { |
| 1070 | sep.is_ip4 = is_ip4; |
| 1071 | sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto); |
| 1072 | sep.sw_if_index = app_ns->sw_if_index; |
| 1073 | sep.transport_proto = transport_proto; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1074 | sep.app_wrk_index = app_wrk->wrk_index; /* only default */ |
| 1075 | application_start_listen (app, &sep, &handle); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1076 | s = listen_session_get_from_handle (handle); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1077 | s->enqueue_epoch = SESSION_PROXY_LISTENER_INDEX; |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1078 | } |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1079 | } |
| 1080 | else |
| 1081 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1082 | s = application_proxy_listener (app_wrk, fib_proto, transport_proto); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1083 | ASSERT (s); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1084 | } |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1085 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1086 | tc = listen_session_get_transport (s); |
| 1087 | |
| 1088 | if (!ip_is_zero (&tc->lcl_ip, 1)) |
| 1089 | { |
Florin Coras | dbd4456 | 2017-11-09 19:30:17 -0800 | [diff] [blame] | 1090 | u32 sti; |
| 1091 | sep.is_ip4 = is_ip4; |
| 1092 | sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto); |
| 1093 | sep.transport_proto = transport_proto; |
| 1094 | sep.port = 0; |
| 1095 | sti = session_lookup_get_index_for_fib (fib_proto, sep.fib_index); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1096 | if (is_start) |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1097 | session_lookup_add_session_endpoint (sti, |
| 1098 | (session_endpoint_t *) & sep, |
| 1099 | s->session_index); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1100 | else |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1101 | session_lookup_del_session_endpoint (sti, |
| 1102 | (session_endpoint_t *) & sep); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1103 | } |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1104 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1105 | return 0; |
| 1106 | } |
| 1107 | |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1108 | static void |
| 1109 | application_start_stop_proxy_local_scope (application_t * app, |
| 1110 | u8 transport_proto, u8 is_start) |
| 1111 | { |
| 1112 | session_endpoint_t sep = SESSION_ENDPOINT_NULL; |
| 1113 | app_namespace_t *app_ns; |
| 1114 | app_ns = app_namespace_get (app->ns_index); |
| 1115 | sep.is_ip4 = 1; |
| 1116 | sep.transport_proto = transport_proto; |
| 1117 | sep.port = 0; |
| 1118 | |
| 1119 | if (is_start) |
| 1120 | { |
| 1121 | session_lookup_add_session_endpoint (app_ns->local_table_index, &sep, |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1122 | app->app_index); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1123 | sep.is_ip4 = 0; |
| 1124 | session_lookup_add_session_endpoint (app_ns->local_table_index, &sep, |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1125 | app->app_index); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1126 | } |
| 1127 | else |
| 1128 | { |
| 1129 | session_lookup_del_session_endpoint (app_ns->local_table_index, &sep); |
| 1130 | sep.is_ip4 = 0; |
| 1131 | session_lookup_del_session_endpoint (app_ns->local_table_index, &sep); |
| 1132 | } |
| 1133 | } |
| 1134 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1135 | void |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1136 | application_start_stop_proxy (application_t * app, |
| 1137 | transport_proto_t transport_proto, u8 is_start) |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1138 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1139 | if (application_has_local_scope (app)) |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1140 | application_start_stop_proxy_local_scope (app, transport_proto, is_start); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1141 | |
| 1142 | if (application_has_global_scope (app)) |
| 1143 | { |
| 1144 | application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP4, |
| 1145 | transport_proto, is_start); |
| 1146 | application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP6, |
| 1147 | transport_proto, is_start); |
| 1148 | } |
| 1149 | } |
| 1150 | |
| 1151 | void |
| 1152 | application_setup_proxy (application_t * app) |
| 1153 | { |
| 1154 | u16 transports = app->proxied_transports; |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1155 | transport_proto_t tp; |
| 1156 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1157 | ASSERT (application_is_proxy (app)); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1158 | |
| 1159 | /* *INDENT-OFF* */ |
| 1160 | transport_proto_foreach (tp, ({ |
| 1161 | if (transports & (1 << tp)) |
| 1162 | application_start_stop_proxy (app, tp, 1); |
| 1163 | })); |
| 1164 | /* *INDENT-ON* */ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1165 | } |
| 1166 | |
| 1167 | void |
| 1168 | application_remove_proxy (application_t * app) |
| 1169 | { |
| 1170 | u16 transports = app->proxied_transports; |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1171 | transport_proto_t tp; |
| 1172 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1173 | ASSERT (application_is_proxy (app)); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1174 | |
| 1175 | /* *INDENT-OFF* */ |
| 1176 | transport_proto_foreach (tp, ({ |
| 1177 | if (transports & (1 << tp)) |
| 1178 | application_start_stop_proxy (app, tp, 0); |
| 1179 | })); |
| 1180 | /* *INDENT-ON* */ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1181 | } |
| 1182 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 1183 | segment_manager_properties_t * |
| 1184 | application_segment_manager_properties (application_t * app) |
| 1185 | { |
| 1186 | return &app->sm_properties; |
| 1187 | } |
| 1188 | |
| 1189 | segment_manager_properties_t * |
| 1190 | application_get_segment_manager_properties (u32 app_index) |
| 1191 | { |
| 1192 | application_t *app = application_get (app_index); |
| 1193 | return &app->sm_properties; |
| 1194 | } |
| 1195 | |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1196 | static inline int |
| 1197 | app_enqueue_evt (svm_msg_q_t * mq, svm_msg_q_msg_t * msg, u8 lock) |
| 1198 | { |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1199 | if (PREDICT_FALSE (svm_msg_q_is_full (mq))) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1200 | { |
| 1201 | clib_warning ("evt q full"); |
| 1202 | svm_msg_q_free_msg (mq, msg); |
| 1203 | if (lock) |
| 1204 | svm_msg_q_unlock (mq); |
| 1205 | return -1; |
| 1206 | } |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1207 | |
| 1208 | if (lock) |
| 1209 | { |
| 1210 | svm_msg_q_add_and_unlock (mq, msg); |
| 1211 | return 0; |
| 1212 | } |
| 1213 | |
| 1214 | /* Even when not locking the ring, we must wait for queue mutex */ |
| 1215 | if (svm_msg_q_add (mq, msg, SVM_Q_WAIT)) |
| 1216 | { |
| 1217 | clib_warning ("msg q add returned"); |
| 1218 | return -1; |
| 1219 | } |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1220 | return 0; |
| 1221 | } |
| 1222 | |
| 1223 | static inline int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1224 | app_send_io_evt_rx (app_worker_t * app_wrk, stream_session_t * s, u8 lock) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1225 | { |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1226 | session_event_t *evt; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1227 | svm_msg_q_msg_t msg; |
| 1228 | svm_msg_q_t *mq; |
| 1229 | |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 1230 | if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY |
| 1231 | && s->session_state != SESSION_STATE_LISTENING)) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1232 | { |
| 1233 | /* Session is closed so app will never clean up. Flush rx fifo */ |
Florin Coras | 8409955 | 2018-07-22 12:59:30 -0700 | [diff] [blame] | 1234 | if (s->session_state == SESSION_STATE_CLOSED) |
| 1235 | svm_fifo_dequeue_drop_all (s->server_rx_fifo); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1236 | return 0; |
| 1237 | } |
| 1238 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1239 | if (app_worker_application_is_builtin (app_wrk)) |
| 1240 | { |
| 1241 | application_t *app = application_get (app_wrk->app_index); |
| 1242 | return app->cb_fns.builtin_app_rx_callback (s); |
| 1243 | } |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1244 | |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 1245 | if (svm_fifo_has_event (s->server_rx_fifo) |
| 1246 | || svm_fifo_is_empty (s->server_rx_fifo)) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1247 | return 0; |
| 1248 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1249 | mq = app_wrk->event_queue; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1250 | if (lock) |
| 1251 | svm_msg_q_lock (mq); |
| 1252 | |
| 1253 | if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING))) |
| 1254 | { |
| 1255 | clib_warning ("evt q rings full"); |
| 1256 | if (lock) |
| 1257 | svm_msg_q_unlock (mq); |
| 1258 | return -1; |
| 1259 | } |
| 1260 | |
| 1261 | msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING); |
| 1262 | ASSERT (!svm_msg_q_msg_is_invalid (&msg)); |
| 1263 | |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1264 | evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1265 | evt->fifo = s->server_rx_fifo; |
| 1266 | evt->event_type = FIFO_EVENT_APP_RX; |
| 1267 | |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 1268 | if (app_enqueue_evt (mq, &msg, lock)) |
| 1269 | return -1; |
Florin Coras | d3ca8ff | 2018-07-28 04:53:30 -0700 | [diff] [blame] | 1270 | (void) svm_fifo_set_event (s->server_rx_fifo); |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 1271 | return 0; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1272 | } |
| 1273 | |
| 1274 | static inline int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1275 | app_send_io_evt_tx (app_worker_t * app_wrk, stream_session_t * s, u8 lock) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1276 | { |
| 1277 | svm_msg_q_t *mq; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1278 | session_event_t *evt; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1279 | svm_msg_q_msg_t msg; |
| 1280 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1281 | if (app_worker_application_is_builtin (app_wrk)) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1282 | return 0; |
| 1283 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1284 | mq = app_wrk->event_queue; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1285 | if (lock) |
| 1286 | svm_msg_q_lock (mq); |
| 1287 | |
| 1288 | if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING))) |
| 1289 | { |
| 1290 | clib_warning ("evt q rings full"); |
| 1291 | if (lock) |
| 1292 | svm_msg_q_unlock (mq); |
| 1293 | return -1; |
| 1294 | } |
| 1295 | |
| 1296 | msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING); |
| 1297 | ASSERT (!svm_msg_q_msg_is_invalid (&msg)); |
| 1298 | |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1299 | evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1300 | evt->event_type = FIFO_EVENT_APP_TX; |
| 1301 | evt->fifo = s->server_tx_fifo; |
| 1302 | |
| 1303 | return app_enqueue_evt (mq, &msg, lock); |
| 1304 | } |
| 1305 | |
| 1306 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1307 | typedef int (app_send_evt_handler_fn) (app_worker_t *app, |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1308 | stream_session_t *s, |
| 1309 | u8 lock); |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 1310 | static app_send_evt_handler_fn * const app_send_evt_handler_fns[3] = { |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1311 | app_send_io_evt_rx, |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 1312 | 0, |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1313 | app_send_io_evt_tx, |
| 1314 | }; |
| 1315 | /* *INDENT-ON* */ |
| 1316 | |
| 1317 | /** |
| 1318 | * Send event to application |
| 1319 | * |
| 1320 | * Logic from queue perspective is non-blocking. That is, if there's |
| 1321 | * not enough space to enqueue a message, we return. However, if the lock |
| 1322 | * flag is set, we do wait for queue mutex. |
| 1323 | */ |
| 1324 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1325 | app_worker_send_event (app_worker_t * app, stream_session_t * s, u8 evt_type) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1326 | { |
| 1327 | ASSERT (app && evt_type <= FIFO_EVENT_APP_TX); |
| 1328 | return app_send_evt_handler_fns[evt_type] (app, s, 0 /* lock */ ); |
| 1329 | } |
| 1330 | |
| 1331 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1332 | app_worker_lock_and_send_event (app_worker_t * app, stream_session_t * s, |
| 1333 | u8 evt_type) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1334 | { |
| 1335 | return app_send_evt_handler_fns[evt_type] (app, s, 1 /* lock */ ); |
| 1336 | } |
| 1337 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1338 | local_session_t * |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1339 | application_local_session_alloc (app_worker_t * app_wrk) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1340 | { |
| 1341 | local_session_t *s; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1342 | pool_get (app_wrk->local_sessions, s); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1343 | memset (s, 0, sizeof (*s)); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1344 | s->app_wrk_index = app_wrk->wrk_index; |
| 1345 | s->session_index = s - app_wrk->local_sessions; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1346 | s->session_type = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE, 0); |
| 1347 | return s; |
| 1348 | } |
| 1349 | |
| 1350 | void |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1351 | application_local_session_free (app_worker_t * app, local_session_t * s) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1352 | { |
| 1353 | pool_put (app->local_sessions, s); |
| 1354 | if (CLIB_DEBUG) |
| 1355 | memset (s, 0xfc, sizeof (*s)); |
| 1356 | } |
| 1357 | |
| 1358 | local_session_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1359 | application_get_local_session (app_worker_t * app_wrk, u32 session_index) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1360 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1361 | if (pool_is_free_index (app_wrk->local_sessions, session_index)) |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 1362 | return 0; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1363 | return pool_elt_at_index (app_wrk->local_sessions, session_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1364 | } |
| 1365 | |
| 1366 | local_session_t * |
| 1367 | application_get_local_session_from_handle (session_handle_t handle) |
| 1368 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1369 | app_worker_t *server_wrk; |
| 1370 | u32 session_index, server_wrk_index; |
| 1371 | local_session_parse_handle (handle, &server_wrk_index, &session_index); |
| 1372 | server_wrk = app_worker_get_if_valid (server_wrk_index); |
| 1373 | if (!server_wrk) |
Florin Coras | fcbda89 | 2018-08-23 19:27:03 -0700 | [diff] [blame] | 1374 | return 0; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1375 | return application_get_local_session (server_wrk, session_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1376 | } |
| 1377 | |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 1378 | local_session_t * |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1379 | application_local_listen_session_alloc (application_t * app) |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 1380 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1381 | local_session_t *ll; |
| 1382 | pool_get (app->local_listen_sessions, ll); |
| 1383 | memset (ll, 0, sizeof (*ll)); |
| 1384 | return ll; |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 1385 | } |
| 1386 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1387 | u32 |
| 1388 | application_local_listener_index (application_t * app, local_session_t * ll) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1389 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1390 | return (ll - app->local_listen_sessions); |
| 1391 | } |
| 1392 | |
| 1393 | void |
| 1394 | application_local_listen_session_free (application_t * app, |
| 1395 | local_session_t * ll) |
| 1396 | { |
| 1397 | pool_put (app->local_listen_sessions, ll); |
| 1398 | if (CLIB_DEBUG) |
| 1399 | memset (ll, 0xfb, sizeof (*ll)); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1400 | } |
| 1401 | |
| 1402 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1403 | application_start_local_listen (application_t * app, |
| 1404 | session_endpoint_extended_t * sep_ext, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1405 | session_handle_t * handle) |
| 1406 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1407 | app_listener_t *app_listener; |
| 1408 | session_endpoint_t *sep; |
| 1409 | app_worker_t *app_wrk; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1410 | session_handle_t lh; |
| 1411 | local_session_t *ll; |
| 1412 | u32 table_index; |
| 1413 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1414 | sep = (session_endpoint_t *) sep_ext; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1415 | table_index = application_local_session_table (app); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1416 | app_wrk = app_worker_get (sep_ext->app_wrk_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1417 | |
| 1418 | /* An exact sep match, as opposed to session_lookup_local_listener */ |
| 1419 | lh = session_lookup_endpoint_listener (table_index, sep, 1); |
| 1420 | if (lh != SESSION_INVALID_HANDLE) |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1421 | { |
| 1422 | ll = application_get_local_listener_w_handle (lh); |
| 1423 | if (ll->app_index != app->app_index) |
| 1424 | return VNET_API_ERROR_ADDRESS_IN_USE; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1425 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1426 | if (ll->app_wrk_index == app_wrk->wrk_index) |
| 1427 | return VNET_API_ERROR_ADDRESS_IN_USE; |
| 1428 | |
| 1429 | app_listener = app_local_listener_get (app, ll->listener_db_index); |
| 1430 | app_listener->workers = clib_bitmap_set (app_listener->workers, |
| 1431 | app_wrk->wrk_map_index, 1); |
| 1432 | *handle = application_local_session_handle (ll); |
| 1433 | return 0; |
| 1434 | } |
| 1435 | |
| 1436 | ll = application_local_listen_session_alloc (app); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1437 | ll->session_type = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE, 0); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1438 | ll->app_wrk_index = app_wrk->app_index; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1439 | ll->session_index = application_local_listener_index (app, ll); |
| 1440 | ll->port = sep_ext->port; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1441 | /* Store the original session type for the unbind */ |
| 1442 | ll->listener_session_type = |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1443 | session_type_from_proto_and_ip (sep_ext->transport_proto, |
| 1444 | sep_ext->is_ip4); |
Florin Coras | 5fda7a3 | 2018-02-14 08:04:31 -0800 | [diff] [blame] | 1445 | ll->transport_listener_index = ~0; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1446 | ll->app_index = app->app_index; |
| 1447 | |
| 1448 | app_listener = app_local_listener_alloc (app); |
| 1449 | ll->listener_db_index = app_listener->al_index; |
| 1450 | app_listener->workers = clib_bitmap_set (app_listener->workers, |
| 1451 | app_wrk->wrk_map_index, 1); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1452 | |
| 1453 | *handle = application_local_session_handle (ll); |
| 1454 | session_lookup_add_session_endpoint (table_index, sep, *handle); |
| 1455 | |
| 1456 | return 0; |
| 1457 | } |
| 1458 | |
| 1459 | /** |
| 1460 | * Clean up local session table. If we have a listener session use it to |
| 1461 | * find the port and proto. If not, the handle must be a local table handle |
| 1462 | * so parse it. |
| 1463 | */ |
| 1464 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1465 | application_stop_local_listen (u32 app_index, u32 wrk_map_index, |
| 1466 | session_handle_t lh) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1467 | { |
| 1468 | session_endpoint_t sep = SESSION_ENDPOINT_NULL; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1469 | u32 table_index, ll_index, server_index; |
| 1470 | app_listener_t *app_listener; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1471 | app_worker_t *server_wrk; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1472 | stream_session_t *sl = 0; |
| 1473 | local_session_t *ll, *ls; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1474 | application_t *server; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1475 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1476 | server = application_get (app_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1477 | table_index = application_local_session_table (server); |
| 1478 | |
| 1479 | /* We have both local and global table binds. Figure from global what |
| 1480 | * the sep we should be cleaning up is. |
| 1481 | */ |
| 1482 | if (!session_handle_is_local (lh)) |
| 1483 | { |
| 1484 | sl = listen_session_get_from_handle (lh); |
| 1485 | if (!sl || listen_session_get_local_session_endpoint (sl, &sep)) |
| 1486 | { |
| 1487 | clib_warning ("broken listener"); |
| 1488 | return -1; |
| 1489 | } |
| 1490 | lh = session_lookup_endpoint_listener (table_index, &sep, 0); |
| 1491 | if (lh == SESSION_INVALID_HANDLE) |
| 1492 | return -1; |
| 1493 | } |
| 1494 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1495 | local_session_parse_handle (lh, &server_index, &ll_index); |
| 1496 | if (PREDICT_FALSE (server_index != app_index)) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1497 | { |
| 1498 | clib_warning ("app %u does not own local handle 0x%lx", app_index, lh); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1499 | return -1; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1500 | } |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1501 | |
| 1502 | ll = application_get_local_listen_session (server, ll_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1503 | if (PREDICT_FALSE (!ll)) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1504 | { |
| 1505 | clib_warning ("no local listener"); |
| 1506 | return -1; |
| 1507 | } |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1508 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1509 | app_listener = app_local_listener_get (server, ll->listener_db_index); |
| 1510 | if (!clib_bitmap_get (app_listener->workers, wrk_map_index)) |
| 1511 | { |
| 1512 | clib_warning ("app wrk %u not listening on handle %lu", wrk_map_index, |
| 1513 | lh); |
| 1514 | return -1; |
| 1515 | } |
| 1516 | |
| 1517 | server_wrk = application_get_worker (server, wrk_map_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1518 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1519 | pool_foreach (ls, server_wrk->local_sessions, ({ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1520 | if (ls->listener_index == ll->session_index) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1521 | application_local_session_disconnect (server_wrk->app_index, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1522 | })); |
| 1523 | /* *INDENT-ON* */ |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1524 | |
| 1525 | clib_bitmap_set_no_check (app_listener->workers, wrk_map_index, 0); |
| 1526 | if (clib_bitmap_is_zero (app_listener->workers)) |
| 1527 | { |
| 1528 | app_local_listener_free (server, app_listener); |
| 1529 | application_local_listener_session_endpoint (ll, &sep); |
| 1530 | session_lookup_del_session_endpoint (table_index, &sep); |
| 1531 | application_local_listen_session_free (server, ll); |
| 1532 | } |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1533 | |
| 1534 | return 0; |
| 1535 | } |
| 1536 | |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 1537 | static void |
| 1538 | application_local_session_fix_eventds (svm_msg_q_t * sq, svm_msg_q_t * cq) |
| 1539 | { |
| 1540 | int fd; |
| 1541 | |
| 1542 | /* |
| 1543 | * segment manager initializes only the producer eventds, since vpp is |
| 1544 | * typically the producer. But for local sessions, we also pass to the |
| 1545 | * apps the mqs they listen on for events from peer apps, so they are also |
| 1546 | * consumer fds. |
| 1547 | */ |
| 1548 | fd = svm_msg_q_get_producer_eventfd (sq); |
| 1549 | svm_msg_q_set_consumer_eventfd (sq, fd); |
| 1550 | fd = svm_msg_q_get_producer_eventfd (cq); |
| 1551 | svm_msg_q_set_consumer_eventfd (cq, fd); |
| 1552 | } |
| 1553 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1554 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1555 | application_local_session_connect (app_worker_t * client_wrk, |
| 1556 | app_worker_t * server_wrk, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1557 | local_session_t * ll, u32 opaque) |
| 1558 | { |
| 1559 | u32 seg_size, evt_q_sz, evt_q_elts, margin = 16 << 10; |
| 1560 | segment_manager_properties_t *props, *cprops; |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 1561 | u32 round_rx_fifo_sz, round_tx_fifo_sz; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1562 | int rv, has_transport, seg_index; |
| 1563 | svm_fifo_segment_private_t *seg; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1564 | application_t *server, *client; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1565 | segment_manager_t *sm; |
| 1566 | local_session_t *ls; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1567 | svm_msg_q_t *sq, *cq; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1568 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1569 | ls = application_local_session_alloc (server_wrk); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1570 | server = application_get (server_wrk->app_index); |
| 1571 | client = application_get (client_wrk->app_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1572 | |
| 1573 | props = application_segment_manager_properties (server); |
| 1574 | cprops = application_segment_manager_properties (client); |
| 1575 | evt_q_elts = props->evt_q_size + cprops->evt_q_size; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1576 | evt_q_sz = segment_manager_evt_q_expected_size (evt_q_elts); |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 1577 | round_rx_fifo_sz = 1 << max_log2 (props->rx_fifo_size); |
| 1578 | round_tx_fifo_sz = 1 << max_log2 (props->tx_fifo_size); |
| 1579 | seg_size = round_rx_fifo_sz + round_tx_fifo_sz + evt_q_sz + margin; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1580 | |
| 1581 | has_transport = session_has_transport ((stream_session_t *) ll); |
| 1582 | if (!has_transport) |
| 1583 | { |
| 1584 | /* Local sessions don't have backing transport */ |
| 1585 | ls->port = ll->port; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1586 | sm = application_get_local_segment_manager (server_wrk); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1587 | } |
| 1588 | else |
| 1589 | { |
| 1590 | stream_session_t *sl = (stream_session_t *) ll; |
| 1591 | transport_connection_t *tc; |
| 1592 | tc = listen_session_get_transport (sl); |
| 1593 | ls->port = tc->lcl_port; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1594 | sm = app_worker_get_listen_segment_manager (server_wrk, sl); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1595 | } |
| 1596 | |
| 1597 | seg_index = segment_manager_add_segment (sm, seg_size); |
| 1598 | if (seg_index < 0) |
| 1599 | { |
| 1600 | clib_warning ("failed to add new cut-through segment"); |
| 1601 | return seg_index; |
| 1602 | } |
| 1603 | seg = segment_manager_get_segment_w_lock (sm, seg_index); |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 1604 | sq = segment_manager_alloc_queue (seg, props); |
| 1605 | cq = segment_manager_alloc_queue (seg, cprops); |
| 1606 | |
| 1607 | if (props->use_mq_eventfd) |
| 1608 | application_local_session_fix_eventds (sq, cq); |
| 1609 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1610 | ls->server_evt_q = pointer_to_uword (sq); |
| 1611 | ls->client_evt_q = pointer_to_uword (cq); |
| 1612 | rv = segment_manager_try_alloc_fifos (seg, props->rx_fifo_size, |
| 1613 | props->tx_fifo_size, |
| 1614 | &ls->server_rx_fifo, |
| 1615 | &ls->server_tx_fifo); |
| 1616 | if (rv) |
| 1617 | { |
| 1618 | clib_warning ("failed to add fifos in cut-through segment"); |
| 1619 | segment_manager_segment_reader_unlock (sm); |
| 1620 | goto failed; |
| 1621 | } |
| 1622 | ls->server_rx_fifo->master_session_index = ls->session_index; |
| 1623 | ls->server_tx_fifo->master_session_index = ls->session_index; |
| 1624 | ls->server_rx_fifo->master_thread_index = ~0; |
| 1625 | ls->server_tx_fifo->master_thread_index = ~0; |
| 1626 | ls->svm_segment_index = seg_index; |
| 1627 | ls->listener_index = ll->session_index; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1628 | ls->client_wrk_index = client_wrk->wrk_index; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1629 | ls->client_opaque = opaque; |
| 1630 | ls->listener_session_type = ll->session_type; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1631 | ls->session_state = SESSION_STATE_READY; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1632 | |
| 1633 | if ((rv = server->cb_fns.add_segment_callback (server->api_client_index, |
| 1634 | &seg->ssvm))) |
| 1635 | { |
| 1636 | clib_warning ("failed to notify server of new segment"); |
| 1637 | segment_manager_segment_reader_unlock (sm); |
| 1638 | goto failed; |
| 1639 | } |
| 1640 | segment_manager_segment_reader_unlock (sm); |
| 1641 | if ((rv = server->cb_fns.session_accept_callback ((stream_session_t *) ls))) |
| 1642 | { |
| 1643 | clib_warning ("failed to send accept cut-through notify to server"); |
| 1644 | goto failed; |
| 1645 | } |
| 1646 | if (server->flags & APP_OPTIONS_FLAGS_IS_BUILTIN) |
| 1647 | application_local_session_connect_notify (ls); |
| 1648 | |
| 1649 | return 0; |
| 1650 | |
| 1651 | failed: |
| 1652 | if (!has_transport) |
| 1653 | segment_manager_del_segment (sm, seg); |
| 1654 | return rv; |
| 1655 | } |
| 1656 | |
| 1657 | static uword |
| 1658 | application_client_local_connect_key (local_session_t * ls) |
| 1659 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1660 | return ((uword) ls->app_wrk_index << 32 | (uword) ls->session_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1661 | } |
| 1662 | |
| 1663 | static void |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1664 | application_client_local_connect_key_parse (uword key, u32 * app_wrk_index, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1665 | u32 * session_index) |
| 1666 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1667 | *app_wrk_index = key >> 32; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1668 | *session_index = key & 0xFFFFFFFF; |
| 1669 | } |
| 1670 | |
| 1671 | int |
| 1672 | application_local_session_connect_notify (local_session_t * ls) |
| 1673 | { |
| 1674 | svm_fifo_segment_private_t *seg; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1675 | app_worker_t *client_wrk, *server_wrk; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1676 | segment_manager_t *sm; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1677 | application_t *client; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1678 | int rv, is_fail = 0; |
| 1679 | uword client_key; |
| 1680 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1681 | client_wrk = app_worker_get (ls->client_wrk_index); |
| 1682 | server_wrk = app_worker_get (ls->app_wrk_index); |
| 1683 | client = application_get (client_wrk->app_index); |
| 1684 | |
| 1685 | sm = application_get_local_segment_manager_w_session (server_wrk, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1686 | seg = segment_manager_get_segment_w_lock (sm, ls->svm_segment_index); |
| 1687 | if ((rv = client->cb_fns.add_segment_callback (client->api_client_index, |
| 1688 | &seg->ssvm))) |
| 1689 | { |
| 1690 | clib_warning ("failed to notify client %u of new segment", |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1691 | ls->client_wrk_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1692 | segment_manager_segment_reader_unlock (sm); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1693 | application_local_session_disconnect (ls->client_wrk_index, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1694 | is_fail = 1; |
| 1695 | } |
| 1696 | else |
| 1697 | { |
| 1698 | segment_manager_segment_reader_unlock (sm); |
| 1699 | } |
| 1700 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1701 | client->cb_fns.session_connected_callback (client_wrk->wrk_index, |
| 1702 | ls->client_opaque, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1703 | (stream_session_t *) ls, |
| 1704 | is_fail); |
| 1705 | |
| 1706 | client_key = application_client_local_connect_key (ls); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1707 | hash_set (client_wrk->local_connects, client_key, client_key); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1708 | return 0; |
| 1709 | } |
| 1710 | |
| 1711 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1712 | application_local_session_cleanup (app_worker_t * client_wrk, |
| 1713 | app_worker_t * server_wrk, |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1714 | local_session_t * ls) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1715 | { |
| 1716 | svm_fifo_segment_private_t *seg; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1717 | segment_manager_t *sm; |
| 1718 | uword client_key; |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1719 | u8 has_transport; |
| 1720 | |
| 1721 | has_transport = session_has_transport ((stream_session_t *) ls); |
| 1722 | client_key = application_client_local_connect_key (ls); |
| 1723 | if (!has_transport) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1724 | sm = application_get_local_segment_manager_w_session (server_wrk, ls); |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1725 | else |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1726 | sm = app_worker_get_listen_segment_manager (server_wrk, |
| 1727 | (stream_session_t *) ls); |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1728 | |
| 1729 | seg = segment_manager_get_segment (sm, ls->svm_segment_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1730 | if (client_wrk) |
| 1731 | hash_unset (client_wrk->local_connects, client_key); |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1732 | |
| 1733 | if (!has_transport) |
| 1734 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1735 | application_t *server = application_get (server_wrk->app_index); |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1736 | server->cb_fns.del_segment_callback (server->api_client_index, |
| 1737 | &seg->ssvm); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1738 | if (client_wrk) |
| 1739 | { |
| 1740 | application_t *client = application_get (client_wrk->app_index); |
| 1741 | client->cb_fns.del_segment_callback (client->api_client_index, |
| 1742 | &seg->ssvm); |
| 1743 | } |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1744 | segment_manager_del_segment (sm, seg); |
| 1745 | } |
| 1746 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1747 | application_local_session_free (server_wrk, ls); |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1748 | |
| 1749 | return 0; |
| 1750 | } |
| 1751 | |
| 1752 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1753 | application_local_session_disconnect (u32 app_index, local_session_t * ls) |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1754 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1755 | app_worker_t *client_wrk, *server_wrk; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1756 | u8 is_server = 0, is_client = 0; |
| 1757 | application_t *app; |
| 1758 | |
| 1759 | app = application_get_if_valid (app_index); |
| 1760 | if (!app) |
| 1761 | return 0; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1762 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1763 | client_wrk = app_worker_get_if_valid (ls->client_wrk_index); |
| 1764 | server_wrk = app_worker_get (ls->app_wrk_index); |
| 1765 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1766 | if (server_wrk->app_index == app_index) |
| 1767 | is_server = 1; |
| 1768 | else if (client_wrk && client_wrk->app_index == app_index) |
| 1769 | is_client = 1; |
| 1770 | |
| 1771 | if (!is_server && !is_client) |
| 1772 | { |
| 1773 | clib_warning ("app %u is neither client nor server for session 0x%lx", |
| 1774 | app_index, application_local_session_handle (ls)); |
| 1775 | return VNET_API_ERROR_INVALID_VALUE; |
| 1776 | } |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1777 | |
| 1778 | if (ls->session_state == SESSION_STATE_CLOSED) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1779 | return application_local_session_cleanup (client_wrk, server_wrk, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1780 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1781 | if (app_index == ls->client_wrk_index) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1782 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1783 | mq_send_local_session_disconnected_cb (ls->app_wrk_index, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1784 | } |
| 1785 | else |
| 1786 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1787 | if (!client_wrk) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1788 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1789 | return application_local_session_cleanup (client_wrk, server_wrk, |
| 1790 | ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1791 | } |
| 1792 | else if (ls->session_state < SESSION_STATE_READY) |
| 1793 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1794 | application_t *client = application_get (client_wrk->app_index); |
| 1795 | client->cb_fns.session_connected_callback (client_wrk->wrk_index, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1796 | ls->client_opaque, |
| 1797 | (stream_session_t *) ls, |
| 1798 | 1 /* is_fail */ ); |
| 1799 | ls->session_state = SESSION_STATE_CLOSED; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1800 | return application_local_session_cleanup (client_wrk, server_wrk, |
| 1801 | ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1802 | } |
| 1803 | else |
| 1804 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1805 | mq_send_local_session_disconnected_cb (client_wrk->wrk_index, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1806 | } |
| 1807 | } |
| 1808 | |
| 1809 | ls->session_state = SESSION_STATE_CLOSED; |
| 1810 | |
| 1811 | return 0; |
| 1812 | } |
| 1813 | |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1814 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1815 | application_local_session_disconnect_w_index (u32 app_wrk_index, u32 ls_index) |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1816 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1817 | app_worker_t *app_wrk; |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1818 | local_session_t *ls; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1819 | app_wrk = app_worker_get (app_wrk_index); |
| 1820 | ls = application_get_local_session (app_wrk, ls_index); |
| 1821 | return application_local_session_disconnect (app_wrk_index, ls); |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1822 | } |
| 1823 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1824 | void |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1825 | app_worker_local_sessions_free (app_worker_t * app_wrk) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1826 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1827 | u32 index, server_wrk_index, session_index; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1828 | u64 handle, *handles = 0; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1829 | app_worker_t *server_wrk; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1830 | segment_manager_t *sm; |
| 1831 | local_session_t *ls; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1832 | int i; |
| 1833 | |
| 1834 | /* |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1835 | * Local sessions |
| 1836 | */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1837 | if (app_wrk->local_sessions) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1838 | { |
| 1839 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1840 | pool_foreach (ls, app_wrk->local_sessions, ({ |
| 1841 | application_local_session_disconnect (app_wrk->wrk_index, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1842 | })); |
| 1843 | /* *INDENT-ON* */ |
| 1844 | } |
| 1845 | |
| 1846 | /* |
| 1847 | * Local connects |
| 1848 | */ |
| 1849 | vec_reset_length (handles); |
| 1850 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1851 | hash_foreach (handle, index, app_wrk->local_connects, ({ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1852 | vec_add1 (handles, handle); |
| 1853 | })); |
| 1854 | /* *INDENT-ON* */ |
| 1855 | |
| 1856 | for (i = 0; i < vec_len (handles); i++) |
| 1857 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1858 | application_client_local_connect_key_parse (handles[i], |
| 1859 | &server_wrk_index, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1860 | &session_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1861 | server_wrk = app_worker_get_if_valid (server_wrk_index); |
| 1862 | if (server_wrk) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1863 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1864 | ls = application_get_local_session (server_wrk, session_index); |
| 1865 | application_local_session_disconnect (app_wrk->wrk_index, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1866 | } |
| 1867 | } |
| 1868 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1869 | sm = segment_manager_get (app_wrk->local_segment_manager); |
| 1870 | sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1871 | segment_manager_del (sm); |
| 1872 | } |
| 1873 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1874 | clib_error_t * |
| 1875 | vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a) |
| 1876 | { |
| 1877 | application_t *app; |
| 1878 | app = application_get (a->app_index); |
| 1879 | if (!app) |
| 1880 | return clib_error_return_code (0, VNET_API_ERROR_APPLICATION_NOT_ATTACHED, |
| 1881 | 0, "app %u doesn't exist", a->app_index); |
| 1882 | app->tls_cert = vec_dup (a->cert); |
| 1883 | return 0; |
| 1884 | } |
| 1885 | |
| 1886 | clib_error_t * |
| 1887 | vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a) |
| 1888 | { |
| 1889 | application_t *app; |
| 1890 | app = application_get (a->app_index); |
| 1891 | if (!app) |
| 1892 | return clib_error_return_code (0, VNET_API_ERROR_APPLICATION_NOT_ATTACHED, |
| 1893 | 0, "app %u doesn't exist", a->app_index); |
| 1894 | app->tls_key = vec_dup (a->key); |
| 1895 | return 0; |
| 1896 | } |
| 1897 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1898 | u8 * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1899 | format_app_worker_listener (u8 * s, va_list * args) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1900 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1901 | app_worker_t *app_wrk = va_arg (*args, app_worker_t *); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1902 | u64 handle = va_arg (*args, u64); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1903 | u32 sm_index = va_arg (*args, u32); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1904 | int verbose = va_arg (*args, int); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1905 | stream_session_t *listener; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1906 | application_t *app; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1907 | u8 *app_name, *str; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1908 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1909 | if (!app_wrk) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1910 | { |
| 1911 | if (verbose) |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1912 | s = format (s, "%-40s%-25s%=10s%-15s%-15s%-10s", "Connection", "App", |
| 1913 | "Wrk", "API Client", "ListenerID", "SegManager"); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1914 | else |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1915 | s = format (s, "%-40s%-25s%=10s", "Connection", "App", "Wrk"); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1916 | |
| 1917 | return s; |
| 1918 | } |
| 1919 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1920 | app = application_get (app_wrk->app_index); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1921 | app_name = app_get_name_from_reg_index (app); |
| 1922 | listener = listen_session_get_from_handle (handle); |
| 1923 | str = format (0, "%U", format_stream_session, listener, verbose); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1924 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1925 | if (verbose) |
| 1926 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1927 | s = format (s, "%-40s%-25s%=10u%-15u%-15u%-10u", str, app_name, |
| 1928 | app_wrk->wrk_map_index, app->api_client_index, handle, |
| 1929 | sm_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1930 | } |
| 1931 | else |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1932 | s = format (s, "%-40s%-25s%=10u", str, app_name, app_wrk->wrk_map_index); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1933 | |
| 1934 | vec_free (app_name); |
| 1935 | return s; |
| 1936 | } |
| 1937 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1938 | static void |
| 1939 | application_format_listeners (application_t * app, int verbose) |
| 1940 | { |
| 1941 | vlib_main_t *vm = vlib_get_main (); |
| 1942 | app_worker_map_t *wrk_map; |
| 1943 | app_worker_t *app_wrk; |
| 1944 | u32 sm_index; |
| 1945 | u64 handle; |
| 1946 | |
| 1947 | if (!app) |
| 1948 | { |
| 1949 | vlib_cli_output (vm, "%U", format_app_worker_listener, 0 /* header */ , |
| 1950 | 0, 0, verbose); |
| 1951 | return; |
| 1952 | } |
| 1953 | |
| 1954 | /* *INDENT-OFF* */ |
| 1955 | pool_foreach (wrk_map, app->worker_maps, ({ |
| 1956 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 1957 | if (hash_elts (app_wrk->listeners_table) == 0) |
| 1958 | continue; |
| 1959 | hash_foreach (handle, sm_index, app_wrk->listeners_table, ({ |
| 1960 | vlib_cli_output (vm, "%U", format_app_worker_listener, app_wrk, |
| 1961 | handle, sm_index, verbose); |
| 1962 | })); |
| 1963 | })); |
| 1964 | /* *INDENT-ON* */ |
| 1965 | } |
| 1966 | |
| 1967 | static void |
| 1968 | app_worker_format_connects (app_worker_t * app_wrk, int verbose) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1969 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 1970 | svm_fifo_segment_private_t *fifo_segment; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1971 | vlib_main_t *vm = vlib_get_main (); |
| 1972 | segment_manager_t *sm; |
| 1973 | u8 *app_name, *s = 0; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1974 | application_t *app; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1975 | |
| 1976 | /* Header */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1977 | if (!app_wrk) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1978 | { |
| 1979 | if (verbose) |
| 1980 | vlib_cli_output (vm, "%-40s%-20s%-15s%-10s", "Connection", "App", |
| 1981 | "API Client", "SegManager"); |
| 1982 | else |
| 1983 | vlib_cli_output (vm, "%-40s%-20s", "Connection", "App"); |
| 1984 | return; |
| 1985 | } |
| 1986 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1987 | app = application_get (app_wrk->app_index); |
| 1988 | if (app_wrk->connects_seg_manager == (u32) ~ 0) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1989 | return; |
| 1990 | |
| 1991 | app_name = app_get_name_from_reg_index (app); |
| 1992 | |
| 1993 | /* Across all fifo segments */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1994 | sm = segment_manager_get (app_wrk->connects_seg_manager); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1995 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 1996 | /* *INDENT-OFF* */ |
| 1997 | segment_manager_foreach_segment_w_lock (fifo_segment, sm, ({ |
| 1998 | svm_fifo_t *fifo; |
| 1999 | u8 *str; |
| 2000 | |
| 2001 | fifo = svm_fifo_segment_get_fifo_list (fifo_segment); |
| 2002 | while (fifo) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2003 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2004 | u32 session_index, thread_index; |
| 2005 | stream_session_t *session; |
| 2006 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 2007 | session_index = fifo->master_session_index; |
| 2008 | thread_index = fifo->master_thread_index; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2009 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2010 | session = session_get (session_index, thread_index); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2011 | str = format (0, "%U", format_stream_session, session, verbose); |
| 2012 | |
| 2013 | if (verbose) |
| 2014 | s = format (s, "%-40s%-20s%-15u%-10u", str, app_name, |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2015 | app->api_client_index, app_wrk->connects_seg_manager); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2016 | else |
| 2017 | s = format (s, "%-40s%-20s", str, app_name); |
| 2018 | |
| 2019 | vlib_cli_output (vm, "%v", s); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2020 | vec_reset_length (s); |
| 2021 | vec_free (str); |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 2022 | |
| 2023 | fifo = fifo->next; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2024 | } |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 2025 | vec_free (s); |
| 2026 | })); |
| 2027 | /* *INDENT-ON* */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2028 | |
| 2029 | vec_free (app_name); |
| 2030 | } |
| 2031 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2032 | static void |
| 2033 | application_format_connects (application_t * app, int verbose) |
| 2034 | { |
| 2035 | app_worker_map_t *wrk_map; |
| 2036 | app_worker_t *app_wrk; |
| 2037 | |
| 2038 | if (!app) |
| 2039 | { |
| 2040 | app_worker_format_connects (0, verbose); |
| 2041 | return; |
| 2042 | } |
| 2043 | |
| 2044 | /* *INDENT-OFF* */ |
| 2045 | pool_foreach (wrk_map, app->worker_maps, ({ |
| 2046 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 2047 | app_worker_format_connects (app_wrk, verbose); |
| 2048 | })); |
| 2049 | /* *INDENT-ON* */ |
| 2050 | } |
| 2051 | |
| 2052 | static void |
| 2053 | app_worker_format_local_sessions (app_worker_t * app_wrk, int verbose) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2054 | { |
| 2055 | vlib_main_t *vm = vlib_get_main (); |
| 2056 | local_session_t *ls; |
| 2057 | transport_proto_t tp; |
| 2058 | u8 *conn = 0; |
| 2059 | |
| 2060 | /* Header */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2061 | if (app_wrk == 0) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2062 | { |
| 2063 | vlib_cli_output (vm, "%-40s%-15s%-20s", "Connection", "ServerApp", |
| 2064 | "ClientApp"); |
| 2065 | return; |
| 2066 | } |
| 2067 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2068 | if (!pool_elts (app_wrk->local_sessions) |
| 2069 | && !pool_elts (app_wrk->local_connects)) |
| 2070 | return; |
| 2071 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2072 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2073 | pool_foreach (ls, app_wrk->local_sessions, ({ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2074 | tp = session_type_transport_proto(ls->listener_session_type); |
| 2075 | conn = format (0, "[L][%U] *:%u", format_transport_proto_short, tp, |
| 2076 | ls->port); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2077 | vlib_cli_output (vm, "%-40v%-15u%-20u", conn, ls->app_wrk_index, |
| 2078 | ls->client_wrk_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2079 | vec_reset_length (conn); |
| 2080 | })); |
| 2081 | /* *INDENT-ON* */ |
| 2082 | |
| 2083 | vec_free (conn); |
| 2084 | } |
| 2085 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2086 | static void |
| 2087 | application_format_local_sessions (application_t * app, int verbose) |
| 2088 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 2089 | vlib_main_t *vm = vlib_get_main (); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2090 | app_worker_map_t *wrk_map; |
| 2091 | app_worker_t *app_wrk; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 2092 | transport_proto_t tp; |
| 2093 | local_session_t *ls; |
| 2094 | u8 *conn = 0; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2095 | |
| 2096 | if (!app) |
| 2097 | { |
| 2098 | app_worker_format_local_sessions (0, verbose); |
| 2099 | return; |
| 2100 | } |
| 2101 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 2102 | /* |
| 2103 | * Format local listeners |
| 2104 | */ |
| 2105 | |
| 2106 | /* *INDENT-OFF* */ |
| 2107 | pool_foreach (ls, app->local_listen_sessions, ({ |
| 2108 | tp = session_type_transport_proto (ls->listener_session_type); |
| 2109 | conn = format (0, "[L][%U] *:%u", format_transport_proto_short, tp, |
| 2110 | ls->port); |
| 2111 | vlib_cli_output (vm, "%-40v%-15u%-20s", conn, ls->app_wrk_index, "*"); |
| 2112 | vec_reset_length (conn); |
| 2113 | })); |
| 2114 | /* *INDENT-ON* */ |
| 2115 | |
| 2116 | /* |
| 2117 | * Format local accepted/connected sessions |
| 2118 | */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2119 | /* *INDENT-OFF* */ |
| 2120 | pool_foreach (wrk_map, app->worker_maps, ({ |
| 2121 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 2122 | app_worker_format_local_sessions (app_wrk, verbose); |
| 2123 | })); |
| 2124 | /* *INDENT-ON* */ |
| 2125 | } |
| 2126 | |
| 2127 | static void |
| 2128 | app_worker_format_local_connects (app_worker_t * app, int verbose) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2129 | { |
| 2130 | vlib_main_t *vm = vlib_get_main (); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2131 | u32 app_wrk_index, session_index; |
| 2132 | app_worker_t *server_wrk; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2133 | local_session_t *ls; |
| 2134 | uword client_key; |
| 2135 | u64 value; |
| 2136 | |
| 2137 | /* Header */ |
| 2138 | if (app == 0) |
| 2139 | { |
| 2140 | if (verbose) |
| 2141 | vlib_cli_output (vm, "%-40s%-15s%-20s%-10s", "Connection", "App", |
| 2142 | "Peer App", "SegManager"); |
| 2143 | else |
| 2144 | vlib_cli_output (vm, "%-40s%-15s%-20s", "Connection", "App", |
| 2145 | "Peer App"); |
| 2146 | return; |
| 2147 | } |
| 2148 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2149 | if (!app->local_connects) |
| 2150 | return; |
| 2151 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2152 | /* *INDENT-OFF* */ |
| 2153 | hash_foreach (client_key, value, app->local_connects, ({ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2154 | application_client_local_connect_key_parse (client_key, &app_wrk_index, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2155 | &session_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2156 | server_wrk = app_worker_get (app_wrk_index); |
| 2157 | ls = application_get_local_session (server_wrk, session_index); |
| 2158 | vlib_cli_output (vm, "%-40s%-15s%-20s", "TODO", ls->app_wrk_index, |
| 2159 | ls->client_wrk_index); |
| 2160 | })); |
| 2161 | /* *INDENT-ON* */ |
| 2162 | } |
| 2163 | |
| 2164 | static void |
| 2165 | application_format_local_connects (application_t * app, int verbose) |
| 2166 | { |
| 2167 | app_worker_map_t *wrk_map; |
| 2168 | app_worker_t *app_wrk; |
| 2169 | |
| 2170 | if (!app) |
| 2171 | { |
| 2172 | app_worker_format_local_connects (0, verbose); |
| 2173 | return; |
| 2174 | } |
| 2175 | |
| 2176 | /* *INDENT-OFF* */ |
| 2177 | pool_foreach (wrk_map, app->worker_maps, ({ |
| 2178 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 2179 | app_worker_format_local_connects (app_wrk, verbose); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2180 | })); |
| 2181 | /* *INDENT-ON* */ |
| 2182 | } |
| 2183 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2184 | u8 * |
| 2185 | format_application (u8 * s, va_list * args) |
| 2186 | { |
| 2187 | application_t *app = va_arg (*args, application_t *); |
| 2188 | CLIB_UNUSED (int verbose) = va_arg (*args, int); |
Florin Coras | ad0c77f | 2017-11-09 18:00:15 -0800 | [diff] [blame] | 2189 | segment_manager_properties_t *props; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2190 | const u8 *app_ns_name; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2191 | u8 *app_name; |
| 2192 | |
| 2193 | if (app == 0) |
| 2194 | { |
| 2195 | if (verbose) |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2196 | s = format (s, "%-10s%-20s%-15s%-15s%-15s%-15s%-15s", "Index", "Name", |
Florin Coras | 078371e | 2018-05-11 09:20:12 -0700 | [diff] [blame] | 2197 | "API Client", "Namespace", "Add seg size", "Rx-f size", |
| 2198 | "Tx-f size"); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2199 | else |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 2200 | s = format (s, "%-10s%-20s%-15s%-40s", "Index", "Name", "API Client", |
| 2201 | "Namespace"); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2202 | return s; |
| 2203 | } |
| 2204 | |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 2205 | app_name = app_get_name (app); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2206 | app_ns_name = app_namespace_id_from_index (app->ns_index); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 2207 | props = application_segment_manager_properties (app); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2208 | if (verbose) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2209 | s = format (s, "%-10u%-20s%-15d%-15u%-15U%-15U%-15U", app->app_index, |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 2210 | app_name, app->api_client_index, app->ns_index, |
Florin Coras | 078371e | 2018-05-11 09:20:12 -0700 | [diff] [blame] | 2211 | format_memory_size, props->add_segment_size, |
| 2212 | format_memory_size, props->rx_fifo_size, format_memory_size, |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 2213 | props->tx_fifo_size); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2214 | else |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2215 | s = format (s, "%-10u%-20s%-15d%-40s", app->app_index, app_name, |
Florin Coras | 8f107b3 | 2017-11-21 22:13:03 -0800 | [diff] [blame] | 2216 | app->api_client_index, app_ns_name); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2217 | return s; |
| 2218 | } |
| 2219 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2220 | void |
| 2221 | application_format_all_listeners (vlib_main_t * vm, int do_local, int verbose) |
| 2222 | { |
| 2223 | application_t *app; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2224 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2225 | if (!pool_elts (app_main.app_pool)) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2226 | { |
| 2227 | vlib_cli_output (vm, "No active server bindings"); |
| 2228 | return; |
| 2229 | } |
| 2230 | |
| 2231 | if (do_local) |
| 2232 | { |
| 2233 | application_format_local_sessions (0, verbose); |
| 2234 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2235 | pool_foreach (app, app_main.app_pool, ({ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2236 | application_format_local_sessions (app, verbose); |
| 2237 | })); |
| 2238 | /* *INDENT-ON* */ |
| 2239 | } |
| 2240 | else |
| 2241 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2242 | application_format_listeners (0, verbose); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2243 | |
| 2244 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2245 | pool_foreach (app, app_main.app_pool, ({ |
| 2246 | application_format_listeners (app, verbose); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2247 | })); |
| 2248 | /* *INDENT-ON* */ |
| 2249 | } |
| 2250 | } |
| 2251 | |
| 2252 | void |
| 2253 | application_format_all_clients (vlib_main_t * vm, int do_local, int verbose) |
| 2254 | { |
| 2255 | application_t *app; |
| 2256 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2257 | if (!pool_elts (app_main.app_pool)) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2258 | { |
| 2259 | vlib_cli_output (vm, "No active apps"); |
| 2260 | return; |
| 2261 | } |
| 2262 | |
| 2263 | if (do_local) |
| 2264 | { |
| 2265 | application_format_local_connects (0, verbose); |
| 2266 | |
| 2267 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2268 | pool_foreach (app, app_main.app_pool, ({ |
| 2269 | application_format_local_connects (app, verbose); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2270 | })); |
| 2271 | /* *INDENT-ON* */ |
| 2272 | } |
| 2273 | else |
| 2274 | { |
| 2275 | application_format_connects (0, verbose); |
| 2276 | |
| 2277 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2278 | pool_foreach (app, app_main.app_pool, ({ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2279 | application_format_connects (app, verbose); |
| 2280 | })); |
| 2281 | /* *INDENT-ON* */ |
| 2282 | } |
| 2283 | } |
| 2284 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2285 | static clib_error_t * |
| 2286 | show_app_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 2287 | vlib_cli_command_t * cmd) |
| 2288 | { |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2289 | int do_server = 0, do_client = 0, do_local = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2290 | application_t *app; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2291 | int verbose = 0; |
| 2292 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2293 | session_cli_return_if_not_enabled (); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2294 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2295 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 2296 | { |
| 2297 | if (unformat (input, "server")) |
| 2298 | do_server = 1; |
| 2299 | else if (unformat (input, "client")) |
| 2300 | do_client = 1; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2301 | else if (unformat (input, "local")) |
| 2302 | do_local = 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2303 | else if (unformat (input, "verbose")) |
| 2304 | verbose = 1; |
| 2305 | else |
| 2306 | break; |
| 2307 | } |
| 2308 | |
| 2309 | if (do_server) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2310 | application_format_all_listeners (vm, do_local, verbose); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2311 | |
| 2312 | if (do_client) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2313 | application_format_all_clients (vm, do_local, verbose); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2314 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2315 | /* Print app related info */ |
| 2316 | if (!do_server && !do_client) |
| 2317 | { |
| 2318 | vlib_cli_output (vm, "%U", format_application, 0, verbose); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2319 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2320 | pool_foreach (app, app_main.app_pool, ({ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2321 | vlib_cli_output (vm, "%U", format_application, app, verbose); |
| 2322 | })); |
| 2323 | /* *INDENT-ON* */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2324 | } |
| 2325 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2326 | return 0; |
| 2327 | } |
| 2328 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2329 | /* *INDENT-OFF* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2330 | VLIB_CLI_COMMAND (show_app_command, static) = |
| 2331 | { |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2332 | .path = "show app", |
| 2333 | .short_help = "show app [server|client] [verbose]", |
| 2334 | .function = show_app_command_fn, |
| 2335 | }; |
| 2336 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2337 | |
| 2338 | /* |
| 2339 | * fd.io coding-style-patch-verification: ON |
| 2340 | * |
| 2341 | * Local Variables: |
| 2342 | * eval: (c-set-style "gnu") |
| 2343 | * End: |
| 2344 | */ |