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); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame^] | 28 | clib_memset (app_listener, 0, sizeof (*app_listener)); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 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) |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame^] | 45 | clib_memset (app_listener, 0xfa, sizeof (*app_listener)); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 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); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame^] | 53 | clib_memset (app_listener, 0, sizeof (*app_listener)); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 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) |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame^] | 70 | clib_memset (app_listener, 0xfa, sizeof (*app_listener)); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 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); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame^] | 78 | clib_memset (map, 0, sizeof (*map)); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 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); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame^] | 237 | clib_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); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame^] | 487 | clib_memset (app_wrk, 0, sizeof (*app_wrk)); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 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); |
Florin Coras | 400ded3 | 2018-10-03 01:00:57 -0700 | [diff] [blame] | 560 | sm->first_is_protected = 0; |
| 561 | sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 562 | /* .. and has no fifos, e.g. it might be used for redirected sessions, |
| 563 | * remove it */ |
| 564 | if (!segment_manager_has_fifos (sm)) |
Florin Coras | 400ded3 | 2018-10-03 01:00:57 -0700 | [diff] [blame] | 565 | segment_manager_del (sm); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 566 | } |
| 567 | |
| 568 | /* |
| 569 | * Local sessions |
| 570 | */ |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 571 | app_worker_local_sessions_free (app_wrk); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 572 | |
| 573 | pool_put (app_main.workers, app_wrk); |
| 574 | if (CLIB_DEBUG) |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame^] | 575 | clib_memset (app_wrk, 0xfe, sizeof (*app_wrk)); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 576 | } |
| 577 | |
| 578 | int |
| 579 | app_worker_alloc_and_init (application_t * app, app_worker_t ** wrk) |
| 580 | { |
| 581 | app_worker_map_t *wrk_map; |
| 582 | app_worker_t *app_wrk; |
| 583 | segment_manager_t *sm; |
| 584 | int rv; |
| 585 | |
| 586 | app_wrk = app_worker_alloc (app); |
| 587 | wrk_map = app_worker_map_alloc (app); |
| 588 | wrk_map->wrk_index = app_wrk->wrk_index; |
| 589 | app_wrk->wrk_map_index = app_worker_map_index (app, wrk_map); |
| 590 | |
| 591 | /* |
| 592 | * Setup first segment manager |
| 593 | */ |
| 594 | sm = segment_manager_new (); |
| 595 | sm->app_wrk_index = app_wrk->wrk_index; |
| 596 | |
| 597 | if ((rv = segment_manager_init (sm, app->sm_properties.segment_size, |
| 598 | app->sm_properties.prealloc_fifos))) |
| 599 | { |
| 600 | app_worker_free (app_wrk); |
| 601 | return rv; |
| 602 | } |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 603 | sm->first_is_protected = 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 604 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 605 | /* |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 606 | * Setup app worker |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 607 | */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 608 | app_wrk->first_segment_manager = segment_manager_index (sm); |
| 609 | app_wrk->listeners_table = hash_create (0, sizeof (u64)); |
| 610 | app_wrk->event_queue = segment_manager_event_queue (sm); |
| 611 | app_wrk->app_is_builtin = application_is_builtin (app); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 612 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 613 | /* |
| 614 | * Segment manager for local sessions |
| 615 | */ |
| 616 | sm = segment_manager_new (); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 617 | sm->app_wrk_index = app_wrk->wrk_index; |
| 618 | app_wrk->local_segment_manager = segment_manager_index (sm); |
| 619 | app_wrk->local_connects = hash_create (0, sizeof (u64)); |
| 620 | |
| 621 | *wrk = app_wrk; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 622 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 623 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 624 | } |
| 625 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 626 | application_t * |
| 627 | app_worker_get_app (u32 wrk_index) |
| 628 | { |
| 629 | app_worker_t *app_wrk; |
| 630 | app_wrk = app_worker_get_if_valid (wrk_index); |
| 631 | if (!app_wrk) |
| 632 | return 0; |
| 633 | return application_get_if_valid (app_wrk->app_index); |
| 634 | } |
| 635 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 636 | static segment_manager_t * |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 637 | app_worker_alloc_segment_manager (app_worker_t * app_wrk) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 638 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 639 | segment_manager_t *sm = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 640 | |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 641 | /* 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] | 642 | if (app_wrk->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX |
| 643 | && app_wrk->first_segment_manager_in_use == 0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 644 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 645 | sm = segment_manager_get (app_wrk->first_segment_manager); |
| 646 | app_wrk->first_segment_manager_in_use = 1; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 647 | return sm; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 648 | } |
| 649 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 650 | sm = segment_manager_new (); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 651 | sm->app_wrk_index = app_wrk->wrk_index; |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 652 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 653 | return sm; |
| 654 | } |
| 655 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 656 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 657 | 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] | 658 | { |
| 659 | segment_manager_t *sm; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 660 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 661 | /* Allocate segment manager. All sessions derived out of a listen session |
| 662 | * have fifos allocated by the same segment manager. */ |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 663 | if (!(sm = app_worker_alloc_segment_manager (app_wrk))) |
| 664 | return -1; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 665 | |
| 666 | /* Add to app's listener table. Useful to find all child listeners |
| 667 | * when app goes down, although, just for unbinding this is not needed */ |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 668 | hash_set (app_wrk->listeners_table, listen_session_get_handle (ls), |
| 669 | segment_manager_index (sm)); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 670 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 671 | if (!ls->server_rx_fifo |
| 672 | && session_transport_service_type (ls) == TRANSPORT_SERVICE_CL) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 673 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 674 | if (session_alloc_fifos (sm, ls)) |
| 675 | return -1; |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 676 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 677 | return 0; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 678 | } |
| 679 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 680 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 681 | 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] | 682 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 683 | segment_manager_t *sm; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 684 | uword *sm_indexp; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 685 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 686 | sm_indexp = hash_get (app_wrk->listeners_table, handle); |
| 687 | if (PREDICT_FALSE (!sm_indexp)) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 688 | { |
| 689 | clib_warning ("listener handle was removed %llu!", handle); |
| 690 | return -1; |
| 691 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 692 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 693 | sm = segment_manager_get (*sm_indexp); |
| 694 | if (app_wrk->first_segment_manager == *sm_indexp) |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 695 | { |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 696 | /* Delete sessions but don't remove segment manager */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 697 | app_wrk->first_segment_manager_in_use = 0; |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 698 | segment_manager_del_sessions (sm); |
| 699 | } |
| 700 | else |
| 701 | { |
| 702 | segment_manager_init_del (sm); |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 703 | } |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 704 | hash_unset (app_wrk->listeners_table, handle); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 705 | |
| 706 | return 0; |
| 707 | } |
| 708 | |
| 709 | /** |
| 710 | * Start listening local transport endpoint for requested transport. |
| 711 | * |
| 712 | * Creates a 'dummy' stream session with state LISTENING to be used in session |
| 713 | * lookups, prior to establishing connection. Requests transport to build |
| 714 | * it's own specific listening connection. |
| 715 | */ |
| 716 | int |
| 717 | application_start_listen (application_t * app, |
| 718 | session_endpoint_extended_t * sep_ext, |
| 719 | session_handle_t * res) |
| 720 | { |
| 721 | app_listener_t *app_listener; |
| 722 | u32 table_index, fib_proto; |
| 723 | session_endpoint_t *sep; |
| 724 | app_worker_t *app_wrk; |
| 725 | stream_session_t *ls; |
| 726 | session_handle_t lh; |
| 727 | session_type_t sst; |
| 728 | |
| 729 | /* |
| 730 | * Check if sep is already listened on |
| 731 | */ |
| 732 | sep = (session_endpoint_t *) sep_ext; |
| 733 | fib_proto = session_endpoint_fib_proto (sep); |
| 734 | table_index = application_session_table (app, fib_proto); |
| 735 | lh = session_lookup_endpoint_listener (table_index, sep, 1); |
| 736 | if (lh != SESSION_INVALID_HANDLE) |
| 737 | { |
| 738 | ls = listen_session_get_from_handle (lh); |
| 739 | if (ls->app_index != app->app_index) |
| 740 | return VNET_API_ERROR_ADDRESS_IN_USE; |
| 741 | |
| 742 | app_wrk = app_worker_get (sep_ext->app_wrk_index); |
| 743 | if (ls->app_wrk_index == app_wrk->wrk_index) |
| 744 | return VNET_API_ERROR_ADDRESS_IN_USE; |
| 745 | |
| 746 | if (app_worker_start_listen (app_wrk, ls)) |
| 747 | return -1; |
| 748 | |
| 749 | app_listener = app_listener_get (app, ls->listener_db_index); |
| 750 | app_listener->workers = clib_bitmap_set (app_listener->workers, |
| 751 | app_wrk->wrk_map_index, 1); |
| 752 | |
| 753 | *res = listen_session_get_handle (ls); |
| 754 | return 0; |
| 755 | } |
| 756 | |
| 757 | /* |
| 758 | * Allocate new listener for application |
| 759 | */ |
| 760 | sst = session_type_from_proto_and_ip (sep_ext->transport_proto, |
| 761 | sep_ext->is_ip4); |
| 762 | ls = listen_session_new (0, sst); |
| 763 | ls->app_index = app->app_index; |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 764 | lh = listen_session_get_handle (ls); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 765 | if (session_listen (ls, sep_ext)) |
| 766 | goto err; |
| 767 | |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 768 | |
| 769 | ls = listen_session_get_from_handle (lh); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 770 | app_listener = app_listener_alloc (app); |
| 771 | ls->listener_db_index = app_listener->al_index; |
| 772 | |
| 773 | /* |
| 774 | * Setup app worker as a listener |
| 775 | */ |
| 776 | app_wrk = app_worker_get (sep_ext->app_wrk_index); |
| 777 | ls->app_wrk_index = app_wrk->wrk_index; |
| 778 | if (app_worker_start_listen (app_wrk, ls)) |
| 779 | goto err; |
| 780 | app_listener->workers = clib_bitmap_set (app_listener->workers, |
| 781 | app_wrk->wrk_map_index, 1); |
| 782 | |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 783 | *res = lh; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 784 | return 0; |
| 785 | |
| 786 | err: |
| 787 | listen_session_del (ls); |
| 788 | return -1; |
| 789 | } |
| 790 | |
| 791 | /** |
| 792 | * Stop listening on session associated to handle |
| 793 | * |
| 794 | * @param handle listener handle |
| 795 | * @param app_index index of the app owning the handle. |
| 796 | * @param app_wrk_index index of the worker requesting the stop |
| 797 | */ |
| 798 | int |
| 799 | application_stop_listen (u32 app_index, u32 app_wrk_index, |
| 800 | session_handle_t handle) |
| 801 | { |
| 802 | app_listener_t *app_listener; |
| 803 | stream_session_t *listener; |
| 804 | app_worker_t *app_wrk; |
| 805 | application_t *app; |
| 806 | |
| 807 | listener = listen_session_get_from_handle (handle); |
| 808 | app = application_get (app_index); |
| 809 | if (PREDICT_FALSE (!app || app->app_index != listener->app_index)) |
| 810 | { |
| 811 | clib_warning ("app doesn't own handle %llu!", handle); |
| 812 | return -1; |
| 813 | } |
| 814 | |
| 815 | app_listener = app_listener_get (app, listener->listener_db_index); |
| 816 | if (!clib_bitmap_get (app_listener->workers, app_wrk_index)) |
| 817 | { |
| 818 | clib_warning ("worker not listening on handle %lu", handle); |
| 819 | return 0; |
| 820 | } |
| 821 | |
| 822 | app_wrk = application_get_worker (app, app_wrk_index); |
| 823 | app_worker_stop_listen (app_wrk, handle); |
| 824 | clib_bitmap_set_no_check (app_listener->workers, app_wrk_index, 0); |
| 825 | |
| 826 | if (clib_bitmap_is_zero (app_listener->workers)) |
| 827 | { |
| 828 | session_stop_listen (listener); |
| 829 | app_listener_free (app, app_listener); |
| 830 | listen_session_del (listener); |
| 831 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 832 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 833 | return 0; |
| 834 | } |
| 835 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 836 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 837 | app_worker_open_session (app_worker_t * app, session_endpoint_t * sep, |
| 838 | u32 api_context) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 839 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 840 | int rv; |
| 841 | |
| 842 | /* Make sure we have a segment manager for connects */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 843 | app_worker_alloc_connects_segment_manager (app); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 844 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 845 | if ((rv = session_open (app->wrk_index, sep, api_context))) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 846 | return rv; |
| 847 | |
| 848 | return 0; |
| 849 | } |
| 850 | |
| 851 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 852 | app_worker_alloc_connects_segment_manager (app_worker_t * app_wrk) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 853 | { |
| 854 | segment_manager_t *sm; |
| 855 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 856 | if (app_wrk->connects_seg_manager == APP_INVALID_SEGMENT_MANAGER_INDEX) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 857 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 858 | sm = app_worker_alloc_segment_manager (app_wrk); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 859 | if (sm == 0) |
| 860 | return -1; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 861 | app_wrk->connects_seg_manager = segment_manager_index (sm); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 862 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 863 | return 0; |
| 864 | } |
| 865 | |
| 866 | segment_manager_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 867 | app_worker_get_connect_segment_manager (app_worker_t * app) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 868 | { |
| 869 | ASSERT (app->connects_seg_manager != (u32) ~ 0); |
| 870 | return segment_manager_get (app->connects_seg_manager); |
| 871 | } |
| 872 | |
| 873 | segment_manager_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 874 | app_worker_get_listen_segment_manager (app_worker_t * app, |
Florin Coras | a44d6b1 | 2018-10-03 14:29:10 -0700 | [diff] [blame] | 875 | stream_session_t * listener) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 876 | { |
| 877 | uword *smp; |
Florin Coras | a44d6b1 | 2018-10-03 14:29:10 -0700 | [diff] [blame] | 878 | smp = hash_get (app->listeners_table, listen_session_get_handle (listener)); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 879 | ASSERT (smp != 0); |
| 880 | return segment_manager_get (*smp); |
| 881 | } |
| 882 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 883 | clib_error_t * |
| 884 | vnet_app_worker_add_del (vnet_app_worker_add_del_args_t * a) |
| 885 | { |
| 886 | svm_fifo_segment_private_t *fs; |
| 887 | app_worker_map_t *wrk_map; |
| 888 | app_worker_t *app_wrk; |
| 889 | segment_manager_t *sm; |
| 890 | application_t *app; |
| 891 | int rv; |
| 892 | |
| 893 | app = application_get (a->app_index); |
| 894 | if (!app) |
| 895 | return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0, |
| 896 | "App %u does not exist", a->app_index); |
| 897 | |
| 898 | if (a->is_add) |
| 899 | { |
| 900 | if ((rv = app_worker_alloc_and_init (app, &app_wrk))) |
| 901 | return clib_error_return_code (0, rv, 0, "app wrk init: %d", rv); |
| 902 | sm = segment_manager_get (app_wrk->first_segment_manager); |
| 903 | fs = segment_manager_get_segment_w_lock (sm, 0); |
| 904 | a->segment = &fs->ssvm; |
| 905 | segment_manager_segment_reader_unlock (sm); |
| 906 | a->evt_q = app_wrk->event_queue; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 907 | a->wrk_index = app_wrk->wrk_map_index; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 908 | } |
| 909 | else |
| 910 | { |
| 911 | wrk_map = app_worker_map_get (app, a->wrk_index); |
| 912 | if (!wrk_map) |
| 913 | return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0, |
| 914 | "App %u does not have worker %u", |
| 915 | app->app_index, a->wrk_index); |
| 916 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 917 | app_worker_map_free (app, wrk_map); |
| 918 | if (!app_wrk) |
| 919 | return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0, |
| 920 | "No worker %u", a->wrk_index); |
| 921 | app_worker_free (app_wrk); |
| 922 | } |
| 923 | return 0; |
| 924 | } |
| 925 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 926 | segment_manager_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 927 | application_get_local_segment_manager (app_worker_t * app) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 928 | { |
| 929 | return segment_manager_get (app->local_segment_manager); |
| 930 | } |
| 931 | |
| 932 | segment_manager_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 933 | application_get_local_segment_manager_w_session (app_worker_t * app, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 934 | local_session_t * ls) |
| 935 | { |
| 936 | stream_session_t *listener; |
| 937 | if (application_local_session_listener_has_transport (ls)) |
| 938 | { |
Florin Coras | 5c9083d | 2018-04-13 06:39:07 -0700 | [diff] [blame] | 939 | listener = listen_session_get (ls->listener_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 940 | return app_worker_get_listen_segment_manager (app, listener); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 941 | } |
| 942 | return segment_manager_get (app->local_segment_manager); |
| 943 | } |
| 944 | |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 945 | int |
| 946 | application_is_proxy (application_t * app) |
| 947 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 948 | return (app->flags & APP_OPTIONS_FLAGS_IS_PROXY); |
| 949 | } |
| 950 | |
| 951 | int |
| 952 | application_is_builtin (application_t * app) |
| 953 | { |
| 954 | return (app->flags & APP_OPTIONS_FLAGS_IS_BUILTIN); |
| 955 | } |
| 956 | |
| 957 | int |
| 958 | application_is_builtin_proxy (application_t * app) |
| 959 | { |
| 960 | return (application_is_proxy (app) && application_is_builtin (app)); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 961 | } |
| 962 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 963 | u8 |
| 964 | application_has_local_scope (application_t * app) |
| 965 | { |
| 966 | return app->flags & APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE; |
| 967 | } |
| 968 | |
| 969 | u8 |
| 970 | application_has_global_scope (application_t * app) |
| 971 | { |
| 972 | return app->flags & APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE; |
| 973 | } |
| 974 | |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 975 | u8 |
| 976 | application_use_mq_for_ctrl (application_t * app) |
| 977 | { |
| 978 | return app->flags & APP_OPTIONS_FLAGS_USE_MQ_FOR_CTRL_MSGS; |
| 979 | } |
| 980 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 981 | /** |
| 982 | * Send an API message to the external app, to map new segment |
| 983 | */ |
| 984 | int |
| 985 | app_worker_add_segment_notify (u32 app_wrk_index, ssvm_private_t * fs) |
| 986 | { |
| 987 | app_worker_t *app_wrk = app_worker_get (app_wrk_index); |
| 988 | application_t *app = application_get (app_wrk->app_index); |
| 989 | return app->cb_fns.add_segment_callback (app->api_client_index, fs); |
| 990 | } |
| 991 | |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 992 | u32 |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 993 | application_n_listeners (app_worker_t * app) |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 994 | { |
| 995 | return hash_elts (app->listeners_table); |
| 996 | } |
| 997 | |
| 998 | stream_session_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 999 | app_worker_first_listener (app_worker_t * app, u8 fib_proto, |
| 1000 | u8 transport_proto) |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 1001 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1002 | stream_session_t *listener; |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 1003 | u64 handle; |
| 1004 | u32 sm_index; |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1005 | u8 sst; |
| 1006 | |
| 1007 | sst = session_type_from_proto_and_ip (transport_proto, |
| 1008 | fib_proto == FIB_PROTOCOL_IP4); |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 1009 | |
| 1010 | /* *INDENT-OFF* */ |
| 1011 | hash_foreach (handle, sm_index, app->listeners_table, ({ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1012 | listener = listen_session_get_from_handle (handle); |
Florin Coras | c3ddea8 | 2017-11-27 03:12:00 -0800 | [diff] [blame] | 1013 | if (listener->session_type == sst |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1014 | && listener->enqueue_epoch != SESSION_PROXY_LISTENER_INDEX) |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1015 | return listener; |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 1016 | })); |
| 1017 | /* *INDENT-ON* */ |
| 1018 | |
| 1019 | return 0; |
| 1020 | } |
| 1021 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1022 | u8 |
| 1023 | app_worker_application_is_builtin (app_worker_t * app_wrk) |
| 1024 | { |
| 1025 | return app_wrk->app_is_builtin; |
| 1026 | } |
| 1027 | |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1028 | stream_session_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1029 | application_proxy_listener (app_worker_t * app, u8 fib_proto, |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1030 | u8 transport_proto) |
| 1031 | { |
| 1032 | stream_session_t *listener; |
| 1033 | u64 handle; |
| 1034 | u32 sm_index; |
| 1035 | u8 sst; |
| 1036 | |
| 1037 | sst = session_type_from_proto_and_ip (transport_proto, |
| 1038 | fib_proto == FIB_PROTOCOL_IP4); |
| 1039 | |
| 1040 | /* *INDENT-OFF* */ |
| 1041 | hash_foreach (handle, sm_index, app->listeners_table, ({ |
| 1042 | listener = listen_session_get_from_handle (handle); |
| 1043 | if (listener->session_type == sst |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1044 | && listener->enqueue_epoch == SESSION_PROXY_LISTENER_INDEX) |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1045 | return listener; |
| 1046 | })); |
| 1047 | /* *INDENT-ON* */ |
| 1048 | |
| 1049 | return 0; |
| 1050 | } |
| 1051 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1052 | static clib_error_t * |
| 1053 | application_start_stop_proxy_fib_proto (application_t * app, u8 fib_proto, |
| 1054 | u8 transport_proto, u8 is_start) |
| 1055 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1056 | app_namespace_t *app_ns = app_namespace_get (app->ns_index); |
| 1057 | u8 is_ip4 = (fib_proto == FIB_PROTOCOL_IP4); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1058 | session_endpoint_extended_t sep = SESSION_ENDPOINT_EXT_NULL; |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1059 | transport_connection_t *tc; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1060 | app_worker_t *app_wrk; |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1061 | stream_session_t *s; |
| 1062 | u64 handle; |
| 1063 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1064 | /* TODO decide if we want proxy to be enabled for all workers */ |
| 1065 | app_wrk = application_get_default_worker (app); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1066 | if (is_start) |
| 1067 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1068 | s = app_worker_first_listener (app_wrk, fib_proto, transport_proto); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1069 | if (!s) |
| 1070 | { |
| 1071 | sep.is_ip4 = is_ip4; |
| 1072 | sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto); |
| 1073 | sep.sw_if_index = app_ns->sw_if_index; |
| 1074 | sep.transport_proto = transport_proto; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1075 | sep.app_wrk_index = app_wrk->wrk_index; /* only default */ |
| 1076 | application_start_listen (app, &sep, &handle); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1077 | s = listen_session_get_from_handle (handle); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1078 | s->enqueue_epoch = SESSION_PROXY_LISTENER_INDEX; |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1079 | } |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1080 | } |
| 1081 | else |
| 1082 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1083 | s = application_proxy_listener (app_wrk, fib_proto, transport_proto); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1084 | ASSERT (s); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1085 | } |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1086 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1087 | tc = listen_session_get_transport (s); |
| 1088 | |
| 1089 | if (!ip_is_zero (&tc->lcl_ip, 1)) |
| 1090 | { |
Florin Coras | dbd4456 | 2017-11-09 19:30:17 -0800 | [diff] [blame] | 1091 | u32 sti; |
| 1092 | sep.is_ip4 = is_ip4; |
| 1093 | sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto); |
| 1094 | sep.transport_proto = transport_proto; |
| 1095 | sep.port = 0; |
| 1096 | sti = session_lookup_get_index_for_fib (fib_proto, sep.fib_index); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1097 | if (is_start) |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1098 | session_lookup_add_session_endpoint (sti, |
| 1099 | (session_endpoint_t *) & sep, |
| 1100 | s->session_index); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1101 | else |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1102 | session_lookup_del_session_endpoint (sti, |
| 1103 | (session_endpoint_t *) & sep); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1104 | } |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1105 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1106 | return 0; |
| 1107 | } |
| 1108 | |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1109 | static void |
| 1110 | application_start_stop_proxy_local_scope (application_t * app, |
| 1111 | u8 transport_proto, u8 is_start) |
| 1112 | { |
| 1113 | session_endpoint_t sep = SESSION_ENDPOINT_NULL; |
| 1114 | app_namespace_t *app_ns; |
| 1115 | app_ns = app_namespace_get (app->ns_index); |
| 1116 | sep.is_ip4 = 1; |
| 1117 | sep.transport_proto = transport_proto; |
| 1118 | sep.port = 0; |
| 1119 | |
| 1120 | if (is_start) |
| 1121 | { |
| 1122 | session_lookup_add_session_endpoint (app_ns->local_table_index, &sep, |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1123 | app->app_index); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1124 | sep.is_ip4 = 0; |
| 1125 | session_lookup_add_session_endpoint (app_ns->local_table_index, &sep, |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1126 | app->app_index); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1127 | } |
| 1128 | else |
| 1129 | { |
| 1130 | session_lookup_del_session_endpoint (app_ns->local_table_index, &sep); |
| 1131 | sep.is_ip4 = 0; |
| 1132 | session_lookup_del_session_endpoint (app_ns->local_table_index, &sep); |
| 1133 | } |
| 1134 | } |
| 1135 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1136 | void |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1137 | application_start_stop_proxy (application_t * app, |
| 1138 | transport_proto_t transport_proto, u8 is_start) |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1139 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1140 | if (application_has_local_scope (app)) |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1141 | application_start_stop_proxy_local_scope (app, transport_proto, is_start); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1142 | |
| 1143 | if (application_has_global_scope (app)) |
| 1144 | { |
| 1145 | application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP4, |
| 1146 | transport_proto, is_start); |
| 1147 | application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP6, |
| 1148 | transport_proto, is_start); |
| 1149 | } |
| 1150 | } |
| 1151 | |
| 1152 | void |
| 1153 | application_setup_proxy (application_t * app) |
| 1154 | { |
| 1155 | u16 transports = app->proxied_transports; |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1156 | transport_proto_t tp; |
| 1157 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1158 | ASSERT (application_is_proxy (app)); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1159 | |
| 1160 | /* *INDENT-OFF* */ |
| 1161 | transport_proto_foreach (tp, ({ |
| 1162 | if (transports & (1 << tp)) |
| 1163 | application_start_stop_proxy (app, tp, 1); |
| 1164 | })); |
| 1165 | /* *INDENT-ON* */ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1166 | } |
| 1167 | |
| 1168 | void |
| 1169 | application_remove_proxy (application_t * app) |
| 1170 | { |
| 1171 | u16 transports = app->proxied_transports; |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1172 | transport_proto_t tp; |
| 1173 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1174 | ASSERT (application_is_proxy (app)); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1175 | |
| 1176 | /* *INDENT-OFF* */ |
| 1177 | transport_proto_foreach (tp, ({ |
| 1178 | if (transports & (1 << tp)) |
| 1179 | application_start_stop_proxy (app, tp, 0); |
| 1180 | })); |
| 1181 | /* *INDENT-ON* */ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1182 | } |
| 1183 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 1184 | segment_manager_properties_t * |
| 1185 | application_segment_manager_properties (application_t * app) |
| 1186 | { |
| 1187 | return &app->sm_properties; |
| 1188 | } |
| 1189 | |
| 1190 | segment_manager_properties_t * |
| 1191 | application_get_segment_manager_properties (u32 app_index) |
| 1192 | { |
| 1193 | application_t *app = application_get (app_index); |
| 1194 | return &app->sm_properties; |
| 1195 | } |
| 1196 | |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1197 | static inline int |
| 1198 | app_enqueue_evt (svm_msg_q_t * mq, svm_msg_q_msg_t * msg, u8 lock) |
| 1199 | { |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1200 | if (PREDICT_FALSE (svm_msg_q_is_full (mq))) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1201 | { |
| 1202 | clib_warning ("evt q full"); |
| 1203 | svm_msg_q_free_msg (mq, msg); |
| 1204 | if (lock) |
| 1205 | svm_msg_q_unlock (mq); |
| 1206 | return -1; |
| 1207 | } |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1208 | |
| 1209 | if (lock) |
| 1210 | { |
| 1211 | svm_msg_q_add_and_unlock (mq, msg); |
| 1212 | return 0; |
| 1213 | } |
| 1214 | |
| 1215 | /* Even when not locking the ring, we must wait for queue mutex */ |
| 1216 | if (svm_msg_q_add (mq, msg, SVM_Q_WAIT)) |
| 1217 | { |
| 1218 | clib_warning ("msg q add returned"); |
| 1219 | return -1; |
| 1220 | } |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1221 | return 0; |
| 1222 | } |
| 1223 | |
| 1224 | static inline int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1225 | 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] | 1226 | { |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1227 | session_event_t *evt; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1228 | svm_msg_q_msg_t msg; |
| 1229 | svm_msg_q_t *mq; |
| 1230 | |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 1231 | if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY |
| 1232 | && s->session_state != SESSION_STATE_LISTENING)) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1233 | { |
| 1234 | /* Session is closed so app will never clean up. Flush rx fifo */ |
Florin Coras | 8409955 | 2018-07-22 12:59:30 -0700 | [diff] [blame] | 1235 | if (s->session_state == SESSION_STATE_CLOSED) |
| 1236 | svm_fifo_dequeue_drop_all (s->server_rx_fifo); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1237 | return 0; |
| 1238 | } |
| 1239 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1240 | if (app_worker_application_is_builtin (app_wrk)) |
| 1241 | { |
| 1242 | application_t *app = application_get (app_wrk->app_index); |
| 1243 | return app->cb_fns.builtin_app_rx_callback (s); |
| 1244 | } |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1245 | |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 1246 | if (svm_fifo_has_event (s->server_rx_fifo) |
| 1247 | || svm_fifo_is_empty (s->server_rx_fifo)) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1248 | return 0; |
| 1249 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1250 | mq = app_wrk->event_queue; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1251 | if (lock) |
| 1252 | svm_msg_q_lock (mq); |
| 1253 | |
| 1254 | if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING))) |
| 1255 | { |
| 1256 | clib_warning ("evt q rings full"); |
| 1257 | if (lock) |
| 1258 | svm_msg_q_unlock (mq); |
| 1259 | return -1; |
| 1260 | } |
| 1261 | |
| 1262 | msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING); |
| 1263 | ASSERT (!svm_msg_q_msg_is_invalid (&msg)); |
| 1264 | |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1265 | evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1266 | evt->fifo = s->server_rx_fifo; |
| 1267 | evt->event_type = FIFO_EVENT_APP_RX; |
| 1268 | |
Florin Coras | 41c9e04 | 2018-09-11 00:10:41 -0700 | [diff] [blame] | 1269 | (void) svm_fifo_set_event (s->server_rx_fifo); |
| 1270 | |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 1271 | if (app_enqueue_evt (mq, &msg, lock)) |
| 1272 | return -1; |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 1273 | return 0; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1274 | } |
| 1275 | |
| 1276 | static inline int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1277 | 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] | 1278 | { |
| 1279 | svm_msg_q_t *mq; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1280 | session_event_t *evt; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1281 | svm_msg_q_msg_t msg; |
| 1282 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1283 | if (app_worker_application_is_builtin (app_wrk)) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1284 | return 0; |
| 1285 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1286 | mq = app_wrk->event_queue; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1287 | if (lock) |
| 1288 | svm_msg_q_lock (mq); |
| 1289 | |
| 1290 | if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING))) |
| 1291 | { |
| 1292 | clib_warning ("evt q rings full"); |
| 1293 | if (lock) |
| 1294 | svm_msg_q_unlock (mq); |
| 1295 | return -1; |
| 1296 | } |
| 1297 | |
| 1298 | msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING); |
| 1299 | ASSERT (!svm_msg_q_msg_is_invalid (&msg)); |
| 1300 | |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1301 | evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1302 | evt->event_type = FIFO_EVENT_APP_TX; |
| 1303 | evt->fifo = s->server_tx_fifo; |
| 1304 | |
| 1305 | return app_enqueue_evt (mq, &msg, lock); |
| 1306 | } |
| 1307 | |
| 1308 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1309 | typedef int (app_send_evt_handler_fn) (app_worker_t *app, |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1310 | stream_session_t *s, |
| 1311 | u8 lock); |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 1312 | 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] | 1313 | app_send_io_evt_rx, |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 1314 | 0, |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1315 | app_send_io_evt_tx, |
| 1316 | }; |
| 1317 | /* *INDENT-ON* */ |
| 1318 | |
| 1319 | /** |
| 1320 | * Send event to application |
| 1321 | * |
Florin Coras | 2179513 | 2018-09-09 09:40:51 -0700 | [diff] [blame] | 1322 | * Logic from queue perspective is non-blocking. If there's |
| 1323 | * not enough space to enqueue a message, we return. |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1324 | */ |
| 1325 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1326 | 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] | 1327 | { |
| 1328 | ASSERT (app && evt_type <= FIFO_EVENT_APP_TX); |
| 1329 | return app_send_evt_handler_fns[evt_type] (app, s, 0 /* lock */ ); |
| 1330 | } |
| 1331 | |
Florin Coras | 2179513 | 2018-09-09 09:40:51 -0700 | [diff] [blame] | 1332 | /** |
| 1333 | * Send event to application |
| 1334 | * |
| 1335 | * Logic from queue perspective is blocking. However, if queue is full, |
| 1336 | * we return. |
| 1337 | */ |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1338 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1339 | app_worker_lock_and_send_event (app_worker_t * app, stream_session_t * s, |
| 1340 | u8 evt_type) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1341 | { |
| 1342 | return app_send_evt_handler_fns[evt_type] (app, s, 1 /* lock */ ); |
| 1343 | } |
| 1344 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1345 | local_session_t * |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1346 | application_local_session_alloc (app_worker_t * app_wrk) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1347 | { |
| 1348 | local_session_t *s; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1349 | pool_get (app_wrk->local_sessions, s); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame^] | 1350 | clib_memset (s, 0, sizeof (*s)); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1351 | s->app_wrk_index = app_wrk->wrk_index; |
| 1352 | s->session_index = s - app_wrk->local_sessions; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1353 | s->session_type = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE, 0); |
| 1354 | return s; |
| 1355 | } |
| 1356 | |
| 1357 | void |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1358 | application_local_session_free (app_worker_t * app, local_session_t * s) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1359 | { |
| 1360 | pool_put (app->local_sessions, s); |
| 1361 | if (CLIB_DEBUG) |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame^] | 1362 | clib_memset (s, 0xfc, sizeof (*s)); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1363 | } |
| 1364 | |
| 1365 | local_session_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1366 | application_get_local_session (app_worker_t * app_wrk, u32 session_index) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1367 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1368 | if (pool_is_free_index (app_wrk->local_sessions, session_index)) |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 1369 | return 0; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1370 | return pool_elt_at_index (app_wrk->local_sessions, session_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1371 | } |
| 1372 | |
| 1373 | local_session_t * |
| 1374 | application_get_local_session_from_handle (session_handle_t handle) |
| 1375 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1376 | app_worker_t *server_wrk; |
| 1377 | u32 session_index, server_wrk_index; |
| 1378 | local_session_parse_handle (handle, &server_wrk_index, &session_index); |
| 1379 | server_wrk = app_worker_get_if_valid (server_wrk_index); |
| 1380 | if (!server_wrk) |
Florin Coras | fcbda89 | 2018-08-23 19:27:03 -0700 | [diff] [blame] | 1381 | return 0; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1382 | return application_get_local_session (server_wrk, session_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1383 | } |
| 1384 | |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 1385 | local_session_t * |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1386 | application_local_listen_session_alloc (application_t * app) |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 1387 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1388 | local_session_t *ll; |
| 1389 | pool_get (app->local_listen_sessions, ll); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame^] | 1390 | clib_memset (ll, 0, sizeof (*ll)); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1391 | return ll; |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 1392 | } |
| 1393 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1394 | u32 |
| 1395 | application_local_listener_index (application_t * app, local_session_t * ll) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1396 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1397 | return (ll - app->local_listen_sessions); |
| 1398 | } |
| 1399 | |
| 1400 | void |
| 1401 | application_local_listen_session_free (application_t * app, |
| 1402 | local_session_t * ll) |
| 1403 | { |
| 1404 | pool_put (app->local_listen_sessions, ll); |
| 1405 | if (CLIB_DEBUG) |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame^] | 1406 | clib_memset (ll, 0xfb, sizeof (*ll)); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1407 | } |
| 1408 | |
| 1409 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1410 | application_start_local_listen (application_t * app, |
| 1411 | session_endpoint_extended_t * sep_ext, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1412 | session_handle_t * handle) |
| 1413 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1414 | app_listener_t *app_listener; |
| 1415 | session_endpoint_t *sep; |
| 1416 | app_worker_t *app_wrk; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1417 | session_handle_t lh; |
| 1418 | local_session_t *ll; |
| 1419 | u32 table_index; |
| 1420 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1421 | sep = (session_endpoint_t *) sep_ext; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1422 | table_index = application_local_session_table (app); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1423 | app_wrk = app_worker_get (sep_ext->app_wrk_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1424 | |
| 1425 | /* An exact sep match, as opposed to session_lookup_local_listener */ |
| 1426 | lh = session_lookup_endpoint_listener (table_index, sep, 1); |
| 1427 | if (lh != SESSION_INVALID_HANDLE) |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1428 | { |
| 1429 | ll = application_get_local_listener_w_handle (lh); |
| 1430 | if (ll->app_index != app->app_index) |
| 1431 | return VNET_API_ERROR_ADDRESS_IN_USE; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1432 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1433 | if (ll->app_wrk_index == app_wrk->wrk_index) |
| 1434 | return VNET_API_ERROR_ADDRESS_IN_USE; |
| 1435 | |
| 1436 | app_listener = app_local_listener_get (app, ll->listener_db_index); |
| 1437 | app_listener->workers = clib_bitmap_set (app_listener->workers, |
| 1438 | app_wrk->wrk_map_index, 1); |
| 1439 | *handle = application_local_session_handle (ll); |
| 1440 | return 0; |
| 1441 | } |
| 1442 | |
| 1443 | ll = application_local_listen_session_alloc (app); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1444 | 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] | 1445 | ll->app_wrk_index = app_wrk->app_index; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1446 | ll->session_index = application_local_listener_index (app, ll); |
| 1447 | ll->port = sep_ext->port; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1448 | /* Store the original session type for the unbind */ |
| 1449 | ll->listener_session_type = |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1450 | session_type_from_proto_and_ip (sep_ext->transport_proto, |
| 1451 | sep_ext->is_ip4); |
Florin Coras | 5fda7a3 | 2018-02-14 08:04:31 -0800 | [diff] [blame] | 1452 | ll->transport_listener_index = ~0; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1453 | ll->app_index = app->app_index; |
| 1454 | |
| 1455 | app_listener = app_local_listener_alloc (app); |
| 1456 | ll->listener_db_index = app_listener->al_index; |
| 1457 | app_listener->workers = clib_bitmap_set (app_listener->workers, |
| 1458 | app_wrk->wrk_map_index, 1); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1459 | |
| 1460 | *handle = application_local_session_handle (ll); |
| 1461 | session_lookup_add_session_endpoint (table_index, sep, *handle); |
| 1462 | |
| 1463 | return 0; |
| 1464 | } |
| 1465 | |
| 1466 | /** |
| 1467 | * Clean up local session table. If we have a listener session use it to |
| 1468 | * find the port and proto. If not, the handle must be a local table handle |
| 1469 | * so parse it. |
| 1470 | */ |
| 1471 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1472 | application_stop_local_listen (u32 app_index, u32 wrk_map_index, |
| 1473 | session_handle_t lh) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1474 | { |
| 1475 | session_endpoint_t sep = SESSION_ENDPOINT_NULL; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1476 | u32 table_index, ll_index, server_index; |
| 1477 | app_listener_t *app_listener; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1478 | app_worker_t *server_wrk; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1479 | stream_session_t *sl = 0; |
| 1480 | local_session_t *ll, *ls; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1481 | application_t *server; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1482 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1483 | server = application_get (app_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1484 | table_index = application_local_session_table (server); |
| 1485 | |
| 1486 | /* We have both local and global table binds. Figure from global what |
| 1487 | * the sep we should be cleaning up is. |
| 1488 | */ |
| 1489 | if (!session_handle_is_local (lh)) |
| 1490 | { |
| 1491 | sl = listen_session_get_from_handle (lh); |
| 1492 | if (!sl || listen_session_get_local_session_endpoint (sl, &sep)) |
| 1493 | { |
| 1494 | clib_warning ("broken listener"); |
| 1495 | return -1; |
| 1496 | } |
| 1497 | lh = session_lookup_endpoint_listener (table_index, &sep, 0); |
| 1498 | if (lh == SESSION_INVALID_HANDLE) |
| 1499 | return -1; |
| 1500 | } |
| 1501 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1502 | local_session_parse_handle (lh, &server_index, &ll_index); |
| 1503 | if (PREDICT_FALSE (server_index != app_index)) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1504 | { |
| 1505 | 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] | 1506 | return -1; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1507 | } |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1508 | |
| 1509 | ll = application_get_local_listen_session (server, ll_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1510 | if (PREDICT_FALSE (!ll)) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1511 | { |
| 1512 | clib_warning ("no local listener"); |
| 1513 | return -1; |
| 1514 | } |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1515 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1516 | app_listener = app_local_listener_get (server, ll->listener_db_index); |
| 1517 | if (!clib_bitmap_get (app_listener->workers, wrk_map_index)) |
| 1518 | { |
| 1519 | clib_warning ("app wrk %u not listening on handle %lu", wrk_map_index, |
| 1520 | lh); |
| 1521 | return -1; |
| 1522 | } |
| 1523 | |
| 1524 | server_wrk = application_get_worker (server, wrk_map_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1525 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1526 | pool_foreach (ls, server_wrk->local_sessions, ({ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1527 | if (ls->listener_index == ll->session_index) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1528 | application_local_session_disconnect (server_wrk->app_index, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1529 | })); |
| 1530 | /* *INDENT-ON* */ |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1531 | |
| 1532 | clib_bitmap_set_no_check (app_listener->workers, wrk_map_index, 0); |
| 1533 | if (clib_bitmap_is_zero (app_listener->workers)) |
| 1534 | { |
| 1535 | app_local_listener_free (server, app_listener); |
| 1536 | application_local_listener_session_endpoint (ll, &sep); |
| 1537 | session_lookup_del_session_endpoint (table_index, &sep); |
| 1538 | application_local_listen_session_free (server, ll); |
| 1539 | } |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1540 | |
| 1541 | return 0; |
| 1542 | } |
| 1543 | |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 1544 | static void |
| 1545 | application_local_session_fix_eventds (svm_msg_q_t * sq, svm_msg_q_t * cq) |
| 1546 | { |
| 1547 | int fd; |
| 1548 | |
| 1549 | /* |
| 1550 | * segment manager initializes only the producer eventds, since vpp is |
| 1551 | * typically the producer. But for local sessions, we also pass to the |
| 1552 | * apps the mqs they listen on for events from peer apps, so they are also |
| 1553 | * consumer fds. |
| 1554 | */ |
| 1555 | fd = svm_msg_q_get_producer_eventfd (sq); |
| 1556 | svm_msg_q_set_consumer_eventfd (sq, fd); |
| 1557 | fd = svm_msg_q_get_producer_eventfd (cq); |
| 1558 | svm_msg_q_set_consumer_eventfd (cq, fd); |
| 1559 | } |
| 1560 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1561 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1562 | application_local_session_connect (app_worker_t * client_wrk, |
| 1563 | app_worker_t * server_wrk, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1564 | local_session_t * ll, u32 opaque) |
| 1565 | { |
| 1566 | u32 seg_size, evt_q_sz, evt_q_elts, margin = 16 << 10; |
| 1567 | segment_manager_properties_t *props, *cprops; |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 1568 | u32 round_rx_fifo_sz, round_tx_fifo_sz; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1569 | int rv, has_transport, seg_index; |
| 1570 | svm_fifo_segment_private_t *seg; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1571 | application_t *server, *client; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1572 | segment_manager_t *sm; |
| 1573 | local_session_t *ls; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1574 | svm_msg_q_t *sq, *cq; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1575 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1576 | ls = application_local_session_alloc (server_wrk); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1577 | server = application_get (server_wrk->app_index); |
| 1578 | client = application_get (client_wrk->app_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1579 | |
| 1580 | props = application_segment_manager_properties (server); |
| 1581 | cprops = application_segment_manager_properties (client); |
| 1582 | evt_q_elts = props->evt_q_size + cprops->evt_q_size; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1583 | evt_q_sz = segment_manager_evt_q_expected_size (evt_q_elts); |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 1584 | round_rx_fifo_sz = 1 << max_log2 (props->rx_fifo_size); |
| 1585 | round_tx_fifo_sz = 1 << max_log2 (props->tx_fifo_size); |
| 1586 | 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] | 1587 | |
| 1588 | has_transport = session_has_transport ((stream_session_t *) ll); |
| 1589 | if (!has_transport) |
| 1590 | { |
| 1591 | /* Local sessions don't have backing transport */ |
| 1592 | ls->port = ll->port; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1593 | sm = application_get_local_segment_manager (server_wrk); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1594 | } |
| 1595 | else |
| 1596 | { |
| 1597 | stream_session_t *sl = (stream_session_t *) ll; |
| 1598 | transport_connection_t *tc; |
| 1599 | tc = listen_session_get_transport (sl); |
| 1600 | ls->port = tc->lcl_port; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1601 | sm = app_worker_get_listen_segment_manager (server_wrk, sl); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1602 | } |
| 1603 | |
| 1604 | seg_index = segment_manager_add_segment (sm, seg_size); |
| 1605 | if (seg_index < 0) |
| 1606 | { |
| 1607 | clib_warning ("failed to add new cut-through segment"); |
| 1608 | return seg_index; |
| 1609 | } |
| 1610 | seg = segment_manager_get_segment_w_lock (sm, seg_index); |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 1611 | sq = segment_manager_alloc_queue (seg, props); |
| 1612 | cq = segment_manager_alloc_queue (seg, cprops); |
| 1613 | |
| 1614 | if (props->use_mq_eventfd) |
| 1615 | application_local_session_fix_eventds (sq, cq); |
| 1616 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1617 | ls->server_evt_q = pointer_to_uword (sq); |
| 1618 | ls->client_evt_q = pointer_to_uword (cq); |
| 1619 | rv = segment_manager_try_alloc_fifos (seg, props->rx_fifo_size, |
| 1620 | props->tx_fifo_size, |
| 1621 | &ls->server_rx_fifo, |
| 1622 | &ls->server_tx_fifo); |
| 1623 | if (rv) |
| 1624 | { |
| 1625 | clib_warning ("failed to add fifos in cut-through segment"); |
| 1626 | segment_manager_segment_reader_unlock (sm); |
| 1627 | goto failed; |
| 1628 | } |
Florin Coras | 326b81e | 2018-10-04 19:03:05 -0700 | [diff] [blame] | 1629 | ls->server_rx_fifo->ct_session_index = ls->session_index; |
| 1630 | ls->server_tx_fifo->ct_session_index = ls->session_index; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1631 | ls->svm_segment_index = seg_index; |
| 1632 | ls->listener_index = ll->session_index; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1633 | ls->client_wrk_index = client_wrk->wrk_index; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1634 | ls->client_opaque = opaque; |
| 1635 | ls->listener_session_type = ll->session_type; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1636 | ls->session_state = SESSION_STATE_READY; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1637 | |
| 1638 | if ((rv = server->cb_fns.add_segment_callback (server->api_client_index, |
| 1639 | &seg->ssvm))) |
| 1640 | { |
| 1641 | clib_warning ("failed to notify server of new segment"); |
| 1642 | segment_manager_segment_reader_unlock (sm); |
| 1643 | goto failed; |
| 1644 | } |
| 1645 | segment_manager_segment_reader_unlock (sm); |
| 1646 | if ((rv = server->cb_fns.session_accept_callback ((stream_session_t *) ls))) |
| 1647 | { |
| 1648 | clib_warning ("failed to send accept cut-through notify to server"); |
| 1649 | goto failed; |
| 1650 | } |
| 1651 | if (server->flags & APP_OPTIONS_FLAGS_IS_BUILTIN) |
| 1652 | application_local_session_connect_notify (ls); |
| 1653 | |
| 1654 | return 0; |
| 1655 | |
| 1656 | failed: |
| 1657 | if (!has_transport) |
| 1658 | segment_manager_del_segment (sm, seg); |
| 1659 | return rv; |
| 1660 | } |
| 1661 | |
| 1662 | static uword |
| 1663 | application_client_local_connect_key (local_session_t * ls) |
| 1664 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1665 | return ((uword) ls->app_wrk_index << 32 | (uword) ls->session_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1666 | } |
| 1667 | |
| 1668 | static void |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1669 | application_client_local_connect_key_parse (uword key, u32 * app_wrk_index, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1670 | u32 * session_index) |
| 1671 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1672 | *app_wrk_index = key >> 32; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1673 | *session_index = key & 0xFFFFFFFF; |
| 1674 | } |
| 1675 | |
| 1676 | int |
| 1677 | application_local_session_connect_notify (local_session_t * ls) |
| 1678 | { |
| 1679 | svm_fifo_segment_private_t *seg; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1680 | app_worker_t *client_wrk, *server_wrk; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1681 | segment_manager_t *sm; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1682 | application_t *client; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1683 | int rv, is_fail = 0; |
| 1684 | uword client_key; |
| 1685 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1686 | client_wrk = app_worker_get (ls->client_wrk_index); |
| 1687 | server_wrk = app_worker_get (ls->app_wrk_index); |
| 1688 | client = application_get (client_wrk->app_index); |
| 1689 | |
| 1690 | sm = application_get_local_segment_manager_w_session (server_wrk, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1691 | seg = segment_manager_get_segment_w_lock (sm, ls->svm_segment_index); |
| 1692 | if ((rv = client->cb_fns.add_segment_callback (client->api_client_index, |
| 1693 | &seg->ssvm))) |
| 1694 | { |
| 1695 | clib_warning ("failed to notify client %u of new segment", |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1696 | ls->client_wrk_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1697 | segment_manager_segment_reader_unlock (sm); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1698 | application_local_session_disconnect (ls->client_wrk_index, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1699 | is_fail = 1; |
| 1700 | } |
| 1701 | else |
| 1702 | { |
| 1703 | segment_manager_segment_reader_unlock (sm); |
| 1704 | } |
| 1705 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1706 | client->cb_fns.session_connected_callback (client_wrk->wrk_index, |
| 1707 | ls->client_opaque, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1708 | (stream_session_t *) ls, |
| 1709 | is_fail); |
| 1710 | |
| 1711 | client_key = application_client_local_connect_key (ls); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1712 | hash_set (client_wrk->local_connects, client_key, client_key); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1713 | return 0; |
| 1714 | } |
| 1715 | |
| 1716 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1717 | application_local_session_cleanup (app_worker_t * client_wrk, |
| 1718 | app_worker_t * server_wrk, |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1719 | local_session_t * ls) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1720 | { |
| 1721 | svm_fifo_segment_private_t *seg; |
Florin Coras | a44d6b1 | 2018-10-03 14:29:10 -0700 | [diff] [blame] | 1722 | stream_session_t *listener; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1723 | segment_manager_t *sm; |
| 1724 | uword client_key; |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1725 | u8 has_transport; |
| 1726 | |
Florin Coras | a44d6b1 | 2018-10-03 14:29:10 -0700 | [diff] [blame] | 1727 | /* Retrieve listener transport type as it is the one that decides where |
| 1728 | * the fifos are allocated */ |
| 1729 | has_transport = application_local_session_listener_has_transport (ls); |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1730 | if (!has_transport) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1731 | sm = application_get_local_segment_manager_w_session (server_wrk, ls); |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1732 | else |
Florin Coras | a44d6b1 | 2018-10-03 14:29:10 -0700 | [diff] [blame] | 1733 | { |
| 1734 | listener = listen_session_get (ls->listener_index); |
| 1735 | sm = app_worker_get_listen_segment_manager (server_wrk, listener); |
| 1736 | } |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1737 | |
| 1738 | seg = segment_manager_get_segment (sm, ls->svm_segment_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1739 | if (client_wrk) |
Florin Coras | a44d6b1 | 2018-10-03 14:29:10 -0700 | [diff] [blame] | 1740 | { |
| 1741 | client_key = application_client_local_connect_key (ls); |
| 1742 | hash_unset (client_wrk->local_connects, client_key); |
| 1743 | } |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1744 | |
| 1745 | if (!has_transport) |
| 1746 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1747 | application_t *server = application_get (server_wrk->app_index); |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1748 | server->cb_fns.del_segment_callback (server->api_client_index, |
| 1749 | &seg->ssvm); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1750 | if (client_wrk) |
| 1751 | { |
| 1752 | application_t *client = application_get (client_wrk->app_index); |
| 1753 | client->cb_fns.del_segment_callback (client->api_client_index, |
| 1754 | &seg->ssvm); |
| 1755 | } |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1756 | segment_manager_del_segment (sm, seg); |
| 1757 | } |
| 1758 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1759 | application_local_session_free (server_wrk, ls); |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1760 | |
| 1761 | return 0; |
| 1762 | } |
| 1763 | |
| 1764 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1765 | application_local_session_disconnect (u32 app_index, local_session_t * ls) |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1766 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1767 | app_worker_t *client_wrk, *server_wrk; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1768 | u8 is_server = 0, is_client = 0; |
| 1769 | application_t *app; |
| 1770 | |
| 1771 | app = application_get_if_valid (app_index); |
| 1772 | if (!app) |
| 1773 | return 0; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1774 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1775 | client_wrk = app_worker_get_if_valid (ls->client_wrk_index); |
| 1776 | server_wrk = app_worker_get (ls->app_wrk_index); |
| 1777 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1778 | if (server_wrk->app_index == app_index) |
| 1779 | is_server = 1; |
| 1780 | else if (client_wrk && client_wrk->app_index == app_index) |
| 1781 | is_client = 1; |
| 1782 | |
| 1783 | if (!is_server && !is_client) |
| 1784 | { |
| 1785 | clib_warning ("app %u is neither client nor server for session 0x%lx", |
| 1786 | app_index, application_local_session_handle (ls)); |
| 1787 | return VNET_API_ERROR_INVALID_VALUE; |
| 1788 | } |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1789 | |
| 1790 | if (ls->session_state == SESSION_STATE_CLOSED) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1791 | return application_local_session_cleanup (client_wrk, server_wrk, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1792 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1793 | if (app_index == ls->client_wrk_index) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1794 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1795 | mq_send_local_session_disconnected_cb (ls->app_wrk_index, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1796 | } |
| 1797 | else |
| 1798 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1799 | if (!client_wrk) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1800 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1801 | return application_local_session_cleanup (client_wrk, server_wrk, |
| 1802 | ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1803 | } |
| 1804 | else if (ls->session_state < SESSION_STATE_READY) |
| 1805 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1806 | application_t *client = application_get (client_wrk->app_index); |
| 1807 | client->cb_fns.session_connected_callback (client_wrk->wrk_index, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1808 | ls->client_opaque, |
| 1809 | (stream_session_t *) ls, |
| 1810 | 1 /* is_fail */ ); |
| 1811 | ls->session_state = SESSION_STATE_CLOSED; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1812 | return application_local_session_cleanup (client_wrk, server_wrk, |
| 1813 | ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1814 | } |
| 1815 | else |
| 1816 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1817 | mq_send_local_session_disconnected_cb (client_wrk->wrk_index, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1818 | } |
| 1819 | } |
| 1820 | |
| 1821 | ls->session_state = SESSION_STATE_CLOSED; |
| 1822 | |
| 1823 | return 0; |
| 1824 | } |
| 1825 | |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1826 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1827 | 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] | 1828 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1829 | app_worker_t *app_wrk; |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1830 | local_session_t *ls; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1831 | app_wrk = app_worker_get (app_wrk_index); |
| 1832 | ls = application_get_local_session (app_wrk, ls_index); |
| 1833 | return application_local_session_disconnect (app_wrk_index, ls); |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 1834 | } |
| 1835 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1836 | void |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1837 | app_worker_local_sessions_free (app_worker_t * app_wrk) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1838 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1839 | u32 index, server_wrk_index, session_index; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1840 | u64 handle, *handles = 0; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1841 | app_worker_t *server_wrk; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1842 | segment_manager_t *sm; |
| 1843 | local_session_t *ls; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1844 | int i; |
| 1845 | |
| 1846 | /* |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1847 | * Local sessions |
| 1848 | */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1849 | if (app_wrk->local_sessions) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1850 | { |
| 1851 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1852 | pool_foreach (ls, app_wrk->local_sessions, ({ |
| 1853 | application_local_session_disconnect (app_wrk->wrk_index, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1854 | })); |
| 1855 | /* *INDENT-ON* */ |
| 1856 | } |
| 1857 | |
| 1858 | /* |
| 1859 | * Local connects |
| 1860 | */ |
| 1861 | vec_reset_length (handles); |
| 1862 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1863 | hash_foreach (handle, index, app_wrk->local_connects, ({ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1864 | vec_add1 (handles, handle); |
| 1865 | })); |
| 1866 | /* *INDENT-ON* */ |
| 1867 | |
| 1868 | for (i = 0; i < vec_len (handles); i++) |
| 1869 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1870 | application_client_local_connect_key_parse (handles[i], |
| 1871 | &server_wrk_index, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1872 | &session_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1873 | server_wrk = app_worker_get_if_valid (server_wrk_index); |
| 1874 | if (server_wrk) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1875 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1876 | ls = application_get_local_session (server_wrk, session_index); |
| 1877 | application_local_session_disconnect (app_wrk->wrk_index, ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1878 | } |
| 1879 | } |
| 1880 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1881 | sm = segment_manager_get (app_wrk->local_segment_manager); |
| 1882 | sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1883 | segment_manager_del (sm); |
| 1884 | } |
| 1885 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1886 | clib_error_t * |
| 1887 | vnet_app_add_tls_cert (vnet_app_add_tls_cert_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_cert = vec_dup (a->cert); |
| 1895 | return 0; |
| 1896 | } |
| 1897 | |
| 1898 | clib_error_t * |
| 1899 | vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a) |
| 1900 | { |
| 1901 | application_t *app; |
| 1902 | app = application_get (a->app_index); |
| 1903 | if (!app) |
| 1904 | return clib_error_return_code (0, VNET_API_ERROR_APPLICATION_NOT_ATTACHED, |
| 1905 | 0, "app %u doesn't exist", a->app_index); |
| 1906 | app->tls_key = vec_dup (a->key); |
| 1907 | return 0; |
| 1908 | } |
| 1909 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1910 | u8 * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1911 | format_app_worker_listener (u8 * s, va_list * args) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1912 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1913 | app_worker_t *app_wrk = va_arg (*args, app_worker_t *); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1914 | u64 handle = va_arg (*args, u64); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1915 | u32 sm_index = va_arg (*args, u32); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1916 | int verbose = va_arg (*args, int); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1917 | stream_session_t *listener; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1918 | application_t *app; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1919 | u8 *app_name, *str; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1920 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1921 | if (!app_wrk) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1922 | { |
| 1923 | if (verbose) |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1924 | s = format (s, "%-40s%-25s%=10s%-15s%-15s%-10s", "Connection", "App", |
| 1925 | "Wrk", "API Client", "ListenerID", "SegManager"); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1926 | else |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1927 | s = format (s, "%-40s%-25s%=10s", "Connection", "App", "Wrk"); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1928 | |
| 1929 | return s; |
| 1930 | } |
| 1931 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1932 | app = application_get (app_wrk->app_index); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1933 | app_name = app_get_name_from_reg_index (app); |
| 1934 | listener = listen_session_get_from_handle (handle); |
| 1935 | str = format (0, "%U", format_stream_session, listener, verbose); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1936 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1937 | if (verbose) |
| 1938 | { |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 1939 | char buf[32]; |
| 1940 | sprintf (buf, "%u(%u)", app_wrk->wrk_map_index, app_wrk->wrk_index); |
| 1941 | s = format (s, "%-40s%-25s%=10s%-15u%-15u%-10u", str, app_name, |
| 1942 | buf, app->api_client_index, handle, sm_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1943 | } |
| 1944 | else |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1945 | 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] | 1946 | |
| 1947 | vec_free (app_name); |
| 1948 | return s; |
| 1949 | } |
| 1950 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1951 | static void |
| 1952 | application_format_listeners (application_t * app, int verbose) |
| 1953 | { |
| 1954 | vlib_main_t *vm = vlib_get_main (); |
| 1955 | app_worker_map_t *wrk_map; |
| 1956 | app_worker_t *app_wrk; |
| 1957 | u32 sm_index; |
| 1958 | u64 handle; |
| 1959 | |
| 1960 | if (!app) |
| 1961 | { |
| 1962 | vlib_cli_output (vm, "%U", format_app_worker_listener, 0 /* header */ , |
| 1963 | 0, 0, verbose); |
| 1964 | return; |
| 1965 | } |
| 1966 | |
| 1967 | /* *INDENT-OFF* */ |
| 1968 | pool_foreach (wrk_map, app->worker_maps, ({ |
| 1969 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 1970 | if (hash_elts (app_wrk->listeners_table) == 0) |
| 1971 | continue; |
| 1972 | hash_foreach (handle, sm_index, app_wrk->listeners_table, ({ |
| 1973 | vlib_cli_output (vm, "%U", format_app_worker_listener, app_wrk, |
| 1974 | handle, sm_index, verbose); |
| 1975 | })); |
| 1976 | })); |
| 1977 | /* *INDENT-ON* */ |
| 1978 | } |
| 1979 | |
| 1980 | static void |
| 1981 | app_worker_format_connects (app_worker_t * app_wrk, int verbose) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1982 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 1983 | svm_fifo_segment_private_t *fifo_segment; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1984 | vlib_main_t *vm = vlib_get_main (); |
| 1985 | segment_manager_t *sm; |
| 1986 | u8 *app_name, *s = 0; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1987 | application_t *app; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1988 | |
| 1989 | /* Header */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1990 | if (!app_wrk) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1991 | { |
| 1992 | if (verbose) |
| 1993 | vlib_cli_output (vm, "%-40s%-20s%-15s%-10s", "Connection", "App", |
| 1994 | "API Client", "SegManager"); |
| 1995 | else |
| 1996 | vlib_cli_output (vm, "%-40s%-20s", "Connection", "App"); |
| 1997 | return; |
| 1998 | } |
| 1999 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2000 | app = application_get (app_wrk->app_index); |
| 2001 | if (app_wrk->connects_seg_manager == (u32) ~ 0) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2002 | return; |
| 2003 | |
| 2004 | app_name = app_get_name_from_reg_index (app); |
| 2005 | |
| 2006 | /* Across all fifo segments */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2007 | sm = segment_manager_get (app_wrk->connects_seg_manager); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2008 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 2009 | /* *INDENT-OFF* */ |
| 2010 | segment_manager_foreach_segment_w_lock (fifo_segment, sm, ({ |
| 2011 | svm_fifo_t *fifo; |
| 2012 | u8 *str; |
| 2013 | |
| 2014 | fifo = svm_fifo_segment_get_fifo_list (fifo_segment); |
| 2015 | while (fifo) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2016 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2017 | u32 session_index, thread_index; |
| 2018 | stream_session_t *session; |
| 2019 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 2020 | session_index = fifo->master_session_index; |
| 2021 | thread_index = fifo->master_thread_index; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2022 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2023 | session = session_get (session_index, thread_index); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2024 | str = format (0, "%U", format_stream_session, session, verbose); |
| 2025 | |
| 2026 | if (verbose) |
| 2027 | s = format (s, "%-40s%-20s%-15u%-10u", str, app_name, |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2028 | app->api_client_index, app_wrk->connects_seg_manager); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2029 | else |
| 2030 | s = format (s, "%-40s%-20s", str, app_name); |
| 2031 | |
| 2032 | vlib_cli_output (vm, "%v", s); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2033 | vec_reset_length (s); |
| 2034 | vec_free (str); |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 2035 | |
| 2036 | fifo = fifo->next; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2037 | } |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 2038 | vec_free (s); |
| 2039 | })); |
| 2040 | /* *INDENT-ON* */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2041 | |
| 2042 | vec_free (app_name); |
| 2043 | } |
| 2044 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2045 | static void |
| 2046 | application_format_connects (application_t * app, int verbose) |
| 2047 | { |
| 2048 | app_worker_map_t *wrk_map; |
| 2049 | app_worker_t *app_wrk; |
| 2050 | |
| 2051 | if (!app) |
| 2052 | { |
| 2053 | app_worker_format_connects (0, verbose); |
| 2054 | return; |
| 2055 | } |
| 2056 | |
| 2057 | /* *INDENT-OFF* */ |
| 2058 | pool_foreach (wrk_map, app->worker_maps, ({ |
| 2059 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 2060 | app_worker_format_connects (app_wrk, verbose); |
| 2061 | })); |
| 2062 | /* *INDENT-ON* */ |
| 2063 | } |
| 2064 | |
| 2065 | static void |
| 2066 | app_worker_format_local_sessions (app_worker_t * app_wrk, int verbose) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2067 | { |
| 2068 | vlib_main_t *vm = vlib_get_main (); |
| 2069 | local_session_t *ls; |
| 2070 | transport_proto_t tp; |
| 2071 | u8 *conn = 0; |
| 2072 | |
| 2073 | /* Header */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2074 | if (app_wrk == 0) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2075 | { |
| 2076 | vlib_cli_output (vm, "%-40s%-15s%-20s", "Connection", "ServerApp", |
| 2077 | "ClientApp"); |
| 2078 | return; |
| 2079 | } |
| 2080 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2081 | if (!pool_elts (app_wrk->local_sessions) |
| 2082 | && !pool_elts (app_wrk->local_connects)) |
| 2083 | return; |
| 2084 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2085 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2086 | pool_foreach (ls, app_wrk->local_sessions, ({ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2087 | tp = session_type_transport_proto(ls->listener_session_type); |
| 2088 | conn = format (0, "[L][%U] *:%u", format_transport_proto_short, tp, |
| 2089 | ls->port); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2090 | vlib_cli_output (vm, "%-40v%-15u%-20u", conn, ls->app_wrk_index, |
| 2091 | ls->client_wrk_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2092 | vec_reset_length (conn); |
| 2093 | })); |
| 2094 | /* *INDENT-ON* */ |
| 2095 | |
| 2096 | vec_free (conn); |
| 2097 | } |
| 2098 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2099 | static void |
| 2100 | application_format_local_sessions (application_t * app, int verbose) |
| 2101 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 2102 | vlib_main_t *vm = vlib_get_main (); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2103 | app_worker_map_t *wrk_map; |
| 2104 | app_worker_t *app_wrk; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 2105 | transport_proto_t tp; |
| 2106 | local_session_t *ls; |
| 2107 | u8 *conn = 0; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2108 | |
| 2109 | if (!app) |
| 2110 | { |
| 2111 | app_worker_format_local_sessions (0, verbose); |
| 2112 | return; |
| 2113 | } |
| 2114 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 2115 | /* |
| 2116 | * Format local listeners |
| 2117 | */ |
| 2118 | |
| 2119 | /* *INDENT-OFF* */ |
| 2120 | pool_foreach (ls, app->local_listen_sessions, ({ |
| 2121 | tp = session_type_transport_proto (ls->listener_session_type); |
| 2122 | conn = format (0, "[L][%U] *:%u", format_transport_proto_short, tp, |
| 2123 | ls->port); |
| 2124 | vlib_cli_output (vm, "%-40v%-15u%-20s", conn, ls->app_wrk_index, "*"); |
| 2125 | vec_reset_length (conn); |
| 2126 | })); |
| 2127 | /* *INDENT-ON* */ |
| 2128 | |
| 2129 | /* |
| 2130 | * Format local accepted/connected sessions |
| 2131 | */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2132 | /* *INDENT-OFF* */ |
| 2133 | pool_foreach (wrk_map, app->worker_maps, ({ |
| 2134 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 2135 | app_worker_format_local_sessions (app_wrk, verbose); |
| 2136 | })); |
| 2137 | /* *INDENT-ON* */ |
| 2138 | } |
| 2139 | |
| 2140 | static void |
| 2141 | app_worker_format_local_connects (app_worker_t * app, int verbose) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2142 | { |
| 2143 | vlib_main_t *vm = vlib_get_main (); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2144 | u32 app_wrk_index, session_index; |
| 2145 | app_worker_t *server_wrk; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2146 | local_session_t *ls; |
| 2147 | uword client_key; |
| 2148 | u64 value; |
| 2149 | |
| 2150 | /* Header */ |
| 2151 | if (app == 0) |
| 2152 | { |
| 2153 | if (verbose) |
| 2154 | vlib_cli_output (vm, "%-40s%-15s%-20s%-10s", "Connection", "App", |
| 2155 | "Peer App", "SegManager"); |
| 2156 | else |
| 2157 | vlib_cli_output (vm, "%-40s%-15s%-20s", "Connection", "App", |
| 2158 | "Peer App"); |
| 2159 | return; |
| 2160 | } |
| 2161 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2162 | if (!app->local_connects) |
| 2163 | return; |
| 2164 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2165 | /* *INDENT-OFF* */ |
| 2166 | hash_foreach (client_key, value, app->local_connects, ({ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2167 | application_client_local_connect_key_parse (client_key, &app_wrk_index, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2168 | &session_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2169 | server_wrk = app_worker_get (app_wrk_index); |
| 2170 | ls = application_get_local_session (server_wrk, session_index); |
| 2171 | vlib_cli_output (vm, "%-40s%-15s%-20s", "TODO", ls->app_wrk_index, |
| 2172 | ls->client_wrk_index); |
| 2173 | })); |
| 2174 | /* *INDENT-ON* */ |
| 2175 | } |
| 2176 | |
| 2177 | static void |
| 2178 | application_format_local_connects (application_t * app, int verbose) |
| 2179 | { |
| 2180 | app_worker_map_t *wrk_map; |
| 2181 | app_worker_t *app_wrk; |
| 2182 | |
| 2183 | if (!app) |
| 2184 | { |
| 2185 | app_worker_format_local_connects (0, verbose); |
| 2186 | return; |
| 2187 | } |
| 2188 | |
| 2189 | /* *INDENT-OFF* */ |
| 2190 | pool_foreach (wrk_map, app->worker_maps, ({ |
| 2191 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 2192 | app_worker_format_local_connects (app_wrk, verbose); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2193 | })); |
| 2194 | /* *INDENT-ON* */ |
| 2195 | } |
| 2196 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2197 | u8 * |
| 2198 | format_application (u8 * s, va_list * args) |
| 2199 | { |
| 2200 | application_t *app = va_arg (*args, application_t *); |
| 2201 | CLIB_UNUSED (int verbose) = va_arg (*args, int); |
Florin Coras | ad0c77f | 2017-11-09 18:00:15 -0800 | [diff] [blame] | 2202 | segment_manager_properties_t *props; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2203 | const u8 *app_ns_name; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2204 | u8 *app_name; |
| 2205 | |
| 2206 | if (app == 0) |
| 2207 | { |
| 2208 | if (verbose) |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2209 | s = format (s, "%-10s%-20s%-15s%-15s%-15s%-15s%-15s", "Index", "Name", |
Florin Coras | 078371e | 2018-05-11 09:20:12 -0700 | [diff] [blame] | 2210 | "API Client", "Namespace", "Add seg size", "Rx-f size", |
| 2211 | "Tx-f size"); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2212 | else |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 2213 | s = format (s, "%-10s%-20s%-15s%-40s", "Index", "Name", "API Client", |
| 2214 | "Namespace"); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2215 | return s; |
| 2216 | } |
| 2217 | |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 2218 | app_name = app_get_name (app); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2219 | app_ns_name = app_namespace_id_from_index (app->ns_index); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 2220 | props = application_segment_manager_properties (app); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2221 | if (verbose) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2222 | 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] | 2223 | app_name, app->api_client_index, app->ns_index, |
Florin Coras | 078371e | 2018-05-11 09:20:12 -0700 | [diff] [blame] | 2224 | format_memory_size, props->add_segment_size, |
| 2225 | format_memory_size, props->rx_fifo_size, format_memory_size, |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 2226 | props->tx_fifo_size); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2227 | else |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2228 | s = format (s, "%-10u%-20s%-15d%-40s", app->app_index, app_name, |
Florin Coras | 8f107b3 | 2017-11-21 22:13:03 -0800 | [diff] [blame] | 2229 | app->api_client_index, app_ns_name); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2230 | return s; |
| 2231 | } |
| 2232 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2233 | void |
| 2234 | application_format_all_listeners (vlib_main_t * vm, int do_local, int verbose) |
| 2235 | { |
| 2236 | application_t *app; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2237 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2238 | if (!pool_elts (app_main.app_pool)) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2239 | { |
| 2240 | vlib_cli_output (vm, "No active server bindings"); |
| 2241 | return; |
| 2242 | } |
| 2243 | |
| 2244 | if (do_local) |
| 2245 | { |
| 2246 | application_format_local_sessions (0, verbose); |
| 2247 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2248 | pool_foreach (app, app_main.app_pool, ({ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2249 | application_format_local_sessions (app, verbose); |
| 2250 | })); |
| 2251 | /* *INDENT-ON* */ |
| 2252 | } |
| 2253 | else |
| 2254 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2255 | application_format_listeners (0, verbose); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2256 | |
| 2257 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2258 | pool_foreach (app, app_main.app_pool, ({ |
| 2259 | application_format_listeners (app, verbose); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2260 | })); |
| 2261 | /* *INDENT-ON* */ |
| 2262 | } |
| 2263 | } |
| 2264 | |
| 2265 | void |
| 2266 | application_format_all_clients (vlib_main_t * vm, int do_local, int verbose) |
| 2267 | { |
| 2268 | application_t *app; |
| 2269 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2270 | if (!pool_elts (app_main.app_pool)) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2271 | { |
| 2272 | vlib_cli_output (vm, "No active apps"); |
| 2273 | return; |
| 2274 | } |
| 2275 | |
| 2276 | if (do_local) |
| 2277 | { |
| 2278 | application_format_local_connects (0, verbose); |
| 2279 | |
| 2280 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2281 | pool_foreach (app, app_main.app_pool, ({ |
| 2282 | application_format_local_connects (app, verbose); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2283 | })); |
| 2284 | /* *INDENT-ON* */ |
| 2285 | } |
| 2286 | else |
| 2287 | { |
| 2288 | application_format_connects (0, verbose); |
| 2289 | |
| 2290 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2291 | pool_foreach (app, app_main.app_pool, ({ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2292 | application_format_connects (app, verbose); |
| 2293 | })); |
| 2294 | /* *INDENT-ON* */ |
| 2295 | } |
| 2296 | } |
| 2297 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2298 | static clib_error_t * |
| 2299 | show_app_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 2300 | vlib_cli_command_t * cmd) |
| 2301 | { |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2302 | int do_server = 0, do_client = 0, do_local = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2303 | application_t *app; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2304 | int verbose = 0; |
| 2305 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2306 | session_cli_return_if_not_enabled (); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2307 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2308 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 2309 | { |
| 2310 | if (unformat (input, "server")) |
| 2311 | do_server = 1; |
| 2312 | else if (unformat (input, "client")) |
| 2313 | do_client = 1; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2314 | else if (unformat (input, "local")) |
| 2315 | do_local = 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2316 | else if (unformat (input, "verbose")) |
| 2317 | verbose = 1; |
| 2318 | else |
| 2319 | break; |
| 2320 | } |
| 2321 | |
| 2322 | if (do_server) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2323 | application_format_all_listeners (vm, do_local, verbose); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2324 | |
| 2325 | if (do_client) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 2326 | application_format_all_clients (vm, do_local, verbose); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2327 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2328 | /* Print app related info */ |
| 2329 | if (!do_server && !do_client) |
| 2330 | { |
| 2331 | vlib_cli_output (vm, "%U", format_application, 0, verbose); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2332 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 2333 | pool_foreach (app, app_main.app_pool, ({ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2334 | vlib_cli_output (vm, "%U", format_application, app, verbose); |
| 2335 | })); |
| 2336 | /* *INDENT-ON* */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2337 | } |
| 2338 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2339 | return 0; |
| 2340 | } |
| 2341 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2342 | /* *INDENT-OFF* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2343 | VLIB_CLI_COMMAND (show_app_command, static) = |
| 2344 | { |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2345 | .path = "show app", |
| 2346 | .short_help = "show app [server|client] [verbose]", |
| 2347 | .function = show_app_command_fn, |
| 2348 | }; |
| 2349 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2350 | |
| 2351 | /* |
| 2352 | * fd.io coding-style-patch-verification: ON |
| 2353 | * |
| 2354 | * Local Variables: |
| 2355 | * eval: (c-set-style "gnu") |
| 2356 | * End: |
| 2357 | */ |