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 | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 21 | /** |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 22 | * Pool from which we allocate all applications |
| 23 | */ |
| 24 | static application_t *app_pool; |
| 25 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 26 | /** |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 27 | * Hash table of apps by api client index |
| 28 | */ |
| 29 | static uword *app_by_api_client_index; |
| 30 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 31 | /** |
| 32 | * Default application event queue size |
| 33 | */ |
| 34 | static u32 default_app_evt_queue_size = 128; |
| 35 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 36 | static u8 * |
| 37 | app_get_name_from_reg_index (application_t * app) |
| 38 | { |
| 39 | u8 *app_name; |
| 40 | |
| 41 | vl_api_registration_t *regp; |
| 42 | regp = vl_api_client_index_to_registration (app->api_client_index); |
| 43 | if (!regp) |
| 44 | app_name = format (0, "builtin-%d%c", app->index, 0); |
| 45 | else |
| 46 | app_name = format (0, "%s%c", regp->name, 0); |
| 47 | |
| 48 | return app_name; |
| 49 | } |
| 50 | |
| 51 | u32 |
| 52 | application_session_table (application_t * app, u8 fib_proto) |
| 53 | { |
| 54 | app_namespace_t *app_ns; |
| 55 | app_ns = app_namespace_get (app->ns_index); |
| 56 | if (!application_has_global_scope (app)) |
| 57 | return APP_INVALID_INDEX; |
| 58 | if (fib_proto == FIB_PROTOCOL_IP4) |
| 59 | return session_lookup_get_index_for_fib (fib_proto, |
| 60 | app_ns->ip4_fib_index); |
| 61 | else |
| 62 | return session_lookup_get_index_for_fib (fib_proto, |
| 63 | app_ns->ip6_fib_index); |
| 64 | } |
| 65 | |
| 66 | u32 |
| 67 | application_local_session_table (application_t * app) |
| 68 | { |
| 69 | app_namespace_t *app_ns; |
| 70 | if (!application_has_local_scope (app)) |
| 71 | return APP_INVALID_INDEX; |
| 72 | app_ns = app_namespace_get (app->ns_index); |
| 73 | return app_ns->local_table_index; |
| 74 | } |
| 75 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 76 | int |
| 77 | application_api_queue_is_full (application_t * app) |
| 78 | { |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 79 | svm_queue_t *q; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 80 | |
| 81 | /* builtin servers are always OK */ |
| 82 | if (app->api_client_index == ~0) |
| 83 | return 0; |
| 84 | |
| 85 | q = vl_api_client_index_to_input_queue (app->api_client_index); |
| 86 | if (!q) |
| 87 | return 1; |
| 88 | |
| 89 | if (q->cursize == q->maxsize) |
| 90 | return 1; |
| 91 | return 0; |
| 92 | } |
| 93 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 94 | /** |
| 95 | * Returns app name |
| 96 | * |
| 97 | * Since the name is not stored per app, we generate it on the fly. It is |
| 98 | * the caller's responsibility to free the vector |
| 99 | */ |
| 100 | u8 * |
| 101 | application_name_from_index (u32 app_index) |
| 102 | { |
| 103 | application_t *app = application_get (app_index); |
| 104 | if (!app) |
| 105 | return 0; |
| 106 | return app_get_name_from_reg_index (app); |
| 107 | } |
| 108 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 109 | static void |
| 110 | application_table_add (application_t * app) |
| 111 | { |
| 112 | hash_set (app_by_api_client_index, app->api_client_index, app->index); |
| 113 | } |
| 114 | |
| 115 | static void |
| 116 | application_table_del (application_t * app) |
| 117 | { |
| 118 | hash_unset (app_by_api_client_index, app->api_client_index); |
| 119 | } |
| 120 | |
| 121 | application_t * |
| 122 | application_lookup (u32 api_client_index) |
| 123 | { |
| 124 | uword *p; |
| 125 | p = hash_get (app_by_api_client_index, api_client_index); |
| 126 | if (p) |
| 127 | return application_get (p[0]); |
| 128 | |
| 129 | return 0; |
| 130 | } |
| 131 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 132 | application_t * |
| 133 | application_new () |
| 134 | { |
| 135 | application_t *app; |
| 136 | pool_get (app_pool, app); |
| 137 | memset (app, 0, sizeof (*app)); |
| 138 | app->index = application_get_index (app); |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 139 | app->connects_seg_manager = APP_INVALID_SEGMENT_MANAGER_INDEX; |
| 140 | app->first_segment_manager = APP_INVALID_SEGMENT_MANAGER_INDEX; |
Dave Wallace | 7b749fe | 2017-07-05 14:30:46 -0400 | [diff] [blame] | 141 | if (CLIB_DEBUG > 1) |
| 142 | clib_warning ("[%d] New app (%d)", getpid (), app->index); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 143 | return app; |
| 144 | } |
| 145 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 146 | void |
| 147 | application_del (application_t * app) |
| 148 | { |
Florin Coras | ad0c77f | 2017-11-09 18:00:15 -0800 | [diff] [blame] | 149 | vnet_unbind_args_t _a, *a = &_a; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 150 | segment_manager_t *sm; |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 151 | u64 handle, *handles = 0; |
| 152 | u32 index; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 153 | int i; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 154 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 155 | /* |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 156 | * The app event queue allocated in first segment is cleared with |
| 157 | * the segment manager. No need to explicitly free it. |
| 158 | */ |
Dave Wallace | 7b749fe | 2017-07-05 14:30:46 -0400 | [diff] [blame] | 159 | if (CLIB_DEBUG > 1) |
| 160 | clib_warning ("[%d] Delete app (%d)", getpid (), app->index); |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 161 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 162 | if (application_is_proxy (app)) |
| 163 | application_remove_proxy (app); |
| 164 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 165 | /* |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 166 | * Listener cleanup |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 167 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 168 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 169 | /* *INDENT-OFF* */ |
| 170 | hash_foreach (handle, index, app->listeners_table, |
| 171 | ({ |
| 172 | vec_add1 (handles, handle); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 173 | sm = segment_manager_get (index); |
| 174 | sm->app_index = SEGMENT_MANAGER_INVALID_APP_INDEX; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 175 | })); |
| 176 | /* *INDENT-ON* */ |
| 177 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 178 | for (i = 0; i < vec_len (handles); i++) |
| 179 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 180 | a->app_index = app->index; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 181 | a->handle = handles[i]; |
| 182 | /* seg manager is removed when unbind completes */ |
| 183 | vnet_unbind (a); |
| 184 | } |
| 185 | |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 186 | /* |
| 187 | * Connects segment manager cleanup |
| 188 | */ |
| 189 | |
| 190 | if (app->connects_seg_manager != APP_INVALID_SEGMENT_MANAGER_INDEX) |
| 191 | { |
| 192 | sm = segment_manager_get (app->connects_seg_manager); |
| 193 | sm->app_index = SEGMENT_MANAGER_INVALID_APP_INDEX; |
| 194 | segment_manager_init_del (sm); |
| 195 | } |
| 196 | |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 197 | /* If first segment manager is used by a listener */ |
| 198 | if (app->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX |
| 199 | && app->first_segment_manager != app->connects_seg_manager) |
Dave Wallace | 7b749fe | 2017-07-05 14:30:46 -0400 | [diff] [blame] | 200 | { |
| 201 | sm = segment_manager_get (app->first_segment_manager); |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 202 | /* .. and has no fifos, e.g. it might be used for redirected sessions, |
| 203 | * remove it */ |
| 204 | if (!segment_manager_has_fifos (sm)) |
| 205 | { |
| 206 | sm->app_index = SEGMENT_MANAGER_INVALID_APP_INDEX; |
| 207 | segment_manager_del (sm); |
| 208 | } |
Dave Wallace | 7b749fe | 2017-07-05 14:30:46 -0400 | [diff] [blame] | 209 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 210 | application_table_del (app); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 211 | pool_put (app_pool, app); |
| 212 | } |
| 213 | |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 214 | static void |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 215 | application_verify_cb_fns (session_cb_vft_t * cb_fns) |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 216 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 217 | if (cb_fns->session_accept_callback == 0) |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 218 | clib_warning ("No accept callback function provided"); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 219 | if (cb_fns->session_connected_callback == 0) |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 220 | clib_warning ("No session connected callback function provided"); |
| 221 | if (cb_fns->session_disconnect_callback == 0) |
| 222 | clib_warning ("No session disconnect callback function provided"); |
| 223 | if (cb_fns->session_reset_callback == 0) |
| 224 | clib_warning ("No session reset callback function provided"); |
| 225 | } |
| 226 | |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 227 | /** |
| 228 | * Check app config for given segment type |
| 229 | * |
| 230 | * Returns 1 on success and 0 otherwise |
| 231 | */ |
| 232 | static u8 |
| 233 | application_verify_cfg (ssvm_segment_type_t st) |
| 234 | { |
| 235 | u8 is_valid; |
| 236 | if (st == SSVM_SEGMENT_MEMFD) |
| 237 | { |
| 238 | is_valid = (session_manager_get_evt_q_segment () != 0); |
| 239 | if (!is_valid) |
| 240 | clib_warning ("memfd seg: vpp's event qs IN binary api svm region"); |
| 241 | return is_valid; |
| 242 | } |
| 243 | else if (st == SSVM_SEGMENT_SHM) |
| 244 | { |
| 245 | is_valid = (session_manager_get_evt_q_segment () == 0); |
| 246 | if (!is_valid) |
| 247 | clib_warning ("shm seg: vpp's event qs NOT IN binary api svm region"); |
| 248 | return is_valid; |
| 249 | } |
| 250 | else |
| 251 | return 1; |
| 252 | } |
| 253 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 254 | int |
| 255 | application_init (application_t * app, u32 api_client_index, u64 * options, |
| 256 | session_cb_vft_t * cb_fns) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 257 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 258 | u32 app_evt_queue_size, first_seg_size, prealloc_fifo_pairs; |
| 259 | ssvm_segment_type_t seg_type = SSVM_SEGMENT_MEMFD; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 260 | segment_manager_properties_t *props; |
| 261 | vl_api_registration_t *reg; |
| 262 | segment_manager_t *sm; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 263 | int rv; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 264 | |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 265 | /* |
| 266 | * Make sure we support the requested configuration |
| 267 | */ |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 268 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 269 | if (!(options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_IS_BUILTIN)) |
| 270 | { |
| 271 | reg = vl_api_client_index_to_registration (api_client_index); |
| 272 | if (!reg) |
| 273 | return VNET_API_ERROR_APP_UNSUPPORTED_CFG; |
| 274 | if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI) |
| 275 | seg_type = SSVM_SEGMENT_SHM; |
| 276 | } |
| 277 | else |
| 278 | { |
| 279 | seg_type = SSVM_SEGMENT_PRIVATE; |
| 280 | } |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 281 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 282 | if (!application_verify_cfg (seg_type)) |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 283 | return VNET_API_ERROR_APP_UNSUPPORTED_CFG; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 284 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 285 | /* |
| 286 | * Setup segment manager |
| 287 | */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 288 | sm = segment_manager_new (); |
| 289 | sm->app_index = app->index; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 290 | props = application_segment_manager_properties (app); |
| 291 | segment_manager_properties_init (props); |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 292 | if (options[APP_OPTIONS_ADD_SEGMENT_SIZE]) |
| 293 | { |
| 294 | props->add_segment_size = options[APP_OPTIONS_ADD_SEGMENT_SIZE]; |
| 295 | props->add_segment = 1; |
| 296 | } |
| 297 | if (options[APP_OPTIONS_RX_FIFO_SIZE]) |
| 298 | props->rx_fifo_size = options[APP_OPTIONS_RX_FIFO_SIZE]; |
| 299 | if (options[APP_OPTIONS_TX_FIFO_SIZE]) |
| 300 | props->tx_fifo_size = options[APP_OPTIONS_TX_FIFO_SIZE]; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 301 | props->segment_type = seg_type; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 302 | |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 303 | app_evt_queue_size = options[APP_OPTIONS_EVT_QUEUE_SIZE] > 0 ? |
| 304 | options[APP_OPTIONS_EVT_QUEUE_SIZE] : default_app_evt_queue_size; |
Florin Coras | ff6e769 | 2017-12-11 04:59:01 -0800 | [diff] [blame] | 305 | first_seg_size = options[APP_OPTIONS_SEGMENT_SIZE]; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 306 | prealloc_fifo_pairs = options[APP_OPTIONS_PREALLOC_FIFO_PAIRS]; |
| 307 | |
| 308 | if ((rv = segment_manager_init (sm, first_seg_size, app_evt_queue_size, |
| 309 | prealloc_fifo_pairs))) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 310 | return rv; |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 311 | sm->first_is_protected = 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 312 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 313 | /* |
| 314 | * Setup application |
| 315 | */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 316 | app->first_segment_manager = segment_manager_index (sm); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 317 | app->api_client_index = api_client_index; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 318 | app->flags = options[APP_OPTIONS_FLAGS]; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 319 | app->cb_fns = *cb_fns; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 320 | app->ns_index = options[APP_OPTIONS_NAMESPACE]; |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 321 | app->listeners_table = hash_create (0, sizeof (u64)); |
| 322 | app->proxied_transports = options[APP_OPTIONS_PROXY_TRANSPORT]; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 323 | app->event_queue = segment_manager_event_queue (sm); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 324 | |
| 325 | /* If no scope enabled, default to global */ |
| 326 | if (!application_has_global_scope (app) |
| 327 | && !application_has_local_scope (app)) |
| 328 | app->flags |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 329 | |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 330 | /* Check that the obvious things are properly set up */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 331 | application_verify_cb_fns (cb_fns); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 332 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 333 | /* Add app to lookup by api_client_index table */ |
| 334 | application_table_add (app); |
| 335 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 336 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | application_t * |
| 340 | application_get (u32 index) |
| 341 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 342 | if (index == APP_INVALID_INDEX) |
| 343 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 344 | return pool_elt_at_index (app_pool, index); |
| 345 | } |
| 346 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 347 | application_t * |
| 348 | application_get_if_valid (u32 index) |
| 349 | { |
| 350 | if (pool_is_free_index (app_pool, index)) |
| 351 | return 0; |
| 352 | |
| 353 | return pool_elt_at_index (app_pool, index); |
| 354 | } |
| 355 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 356 | u32 |
| 357 | application_get_index (application_t * app) |
| 358 | { |
| 359 | return app - app_pool; |
| 360 | } |
| 361 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 362 | static segment_manager_t * |
| 363 | application_alloc_segment_manager (application_t * app) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 364 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 365 | segment_manager_t *sm = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 366 | |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 367 | /* If the first segment manager is not in use, don't allocate a new one */ |
| 368 | if (app->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 369 | && app->first_segment_manager_in_use == 0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 370 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 371 | sm = segment_manager_get (app->first_segment_manager); |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 372 | app->first_segment_manager_in_use = 1; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 373 | return sm; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 374 | } |
| 375 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 376 | sm = segment_manager_new (); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 377 | sm->app_index = app->index; |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 378 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 379 | return sm; |
| 380 | } |
| 381 | |
| 382 | /** |
| 383 | * Start listening local transport endpoint for requested transport. |
| 384 | * |
| 385 | * Creates a 'dummy' stream session with state LISTENING to be used in session |
| 386 | * lookups, prior to establishing connection. Requests transport to build |
| 387 | * it's own specific listening connection. |
| 388 | */ |
| 389 | int |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 390 | application_start_listen (application_t * srv, session_endpoint_t * sep, |
| 391 | u64 * res) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 392 | { |
| 393 | segment_manager_t *sm; |
| 394 | stream_session_t *s; |
| 395 | u64 handle; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 396 | session_type_t sst; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 397 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 398 | sst = session_type_from_proto_and_ip (sep->transport_proto, sep->is_ip4); |
| 399 | s = listen_session_new (sst); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 400 | s->app_index = srv->index; |
| 401 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 402 | if (stream_session_listen (s, sep)) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 403 | goto err; |
| 404 | |
| 405 | /* Allocate segment manager. All sessions derived out of a listen session |
| 406 | * have fifos allocated by the same segment manager. */ |
| 407 | sm = application_alloc_segment_manager (srv); |
| 408 | if (sm == 0) |
| 409 | goto err; |
| 410 | |
| 411 | /* Add to app's listener table. Useful to find all child listeners |
| 412 | * when app goes down, although, just for unbinding this is not needed */ |
| 413 | handle = listen_session_get_handle (s); |
| 414 | hash_set (srv->listeners_table, handle, segment_manager_index (sm)); |
| 415 | |
| 416 | *res = handle; |
| 417 | return 0; |
| 418 | |
| 419 | err: |
| 420 | listen_session_del (s); |
| 421 | return -1; |
| 422 | } |
| 423 | |
| 424 | /** |
| 425 | * Stop listening on session associated to handle |
| 426 | */ |
| 427 | int |
| 428 | application_stop_listen (application_t * srv, u64 handle) |
| 429 | { |
| 430 | stream_session_t *listener; |
| 431 | uword *indexp; |
| 432 | segment_manager_t *sm; |
| 433 | |
| 434 | if (srv && hash_get (srv->listeners_table, handle) == 0) |
| 435 | { |
| 436 | clib_warning ("app doesn't own handle %llu!", handle); |
| 437 | return -1; |
| 438 | } |
| 439 | |
| 440 | listener = listen_session_get_from_handle (handle); |
| 441 | stream_session_stop_listen (listener); |
| 442 | |
| 443 | indexp = hash_get (srv->listeners_table, handle); |
| 444 | ASSERT (indexp); |
| 445 | |
| 446 | sm = segment_manager_get (*indexp); |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 447 | if (srv->first_segment_manager == *indexp) |
| 448 | { |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 449 | /* Delete sessions but don't remove segment manager */ |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 450 | srv->first_segment_manager_in_use = 0; |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 451 | segment_manager_del_sessions (sm); |
| 452 | } |
| 453 | else |
| 454 | { |
| 455 | segment_manager_init_del (sm); |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 456 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 457 | hash_unset (srv->listeners_table, handle); |
| 458 | listen_session_del (listener); |
| 459 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 460 | return 0; |
| 461 | } |
| 462 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 463 | int |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 464 | application_open_session (application_t * app, session_endpoint_t * sep, |
| 465 | u32 api_context) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 466 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 467 | segment_manager_t *sm; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 468 | int rv; |
| 469 | |
| 470 | /* Make sure we have a segment manager for connects */ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 471 | if (app->connects_seg_manager == APP_INVALID_SEGMENT_MANAGER_INDEX) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 472 | { |
| 473 | sm = application_alloc_segment_manager (app); |
| 474 | if (sm == 0) |
| 475 | return -1; |
| 476 | app->connects_seg_manager = segment_manager_index (sm); |
| 477 | } |
| 478 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 479 | if ((rv = session_open (app->index, sep, api_context))) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 480 | return rv; |
| 481 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 482 | return 0; |
| 483 | } |
| 484 | |
| 485 | segment_manager_t * |
| 486 | application_get_connect_segment_manager (application_t * app) |
| 487 | { |
| 488 | ASSERT (app->connects_seg_manager != (u32) ~ 0); |
| 489 | return segment_manager_get (app->connects_seg_manager); |
| 490 | } |
| 491 | |
| 492 | segment_manager_t * |
| 493 | application_get_listen_segment_manager (application_t * app, |
| 494 | stream_session_t * s) |
| 495 | { |
| 496 | uword *smp; |
| 497 | smp = hash_get (app->listeners_table, listen_session_get_handle (s)); |
| 498 | ASSERT (smp != 0); |
| 499 | return segment_manager_get (*smp); |
| 500 | } |
| 501 | |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 502 | int |
| 503 | application_is_proxy (application_t * app) |
| 504 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 505 | return (app->flags & APP_OPTIONS_FLAGS_IS_PROXY); |
| 506 | } |
| 507 | |
| 508 | int |
| 509 | application_is_builtin (application_t * app) |
| 510 | { |
| 511 | return (app->flags & APP_OPTIONS_FLAGS_IS_BUILTIN); |
| 512 | } |
| 513 | |
| 514 | int |
| 515 | application_is_builtin_proxy (application_t * app) |
| 516 | { |
| 517 | return (application_is_proxy (app) && application_is_builtin (app)); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 518 | } |
| 519 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 520 | /** |
| 521 | * Send an API message to the external app, to map new segment |
| 522 | */ |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 523 | int |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 524 | application_add_segment_notify (u32 app_index, ssvm_private_t * fs) |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 525 | { |
| 526 | application_t *app = application_get (app_index); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 527 | return app->cb_fns.add_segment_callback (app->api_client_index, fs); |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 528 | } |
| 529 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 530 | u8 |
| 531 | application_has_local_scope (application_t * app) |
| 532 | { |
| 533 | return app->flags & APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE; |
| 534 | } |
| 535 | |
| 536 | u8 |
| 537 | application_has_global_scope (application_t * app) |
| 538 | { |
| 539 | return app->flags & APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE; |
| 540 | } |
| 541 | |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 542 | u32 |
| 543 | application_n_listeners (application_t * app) |
| 544 | { |
| 545 | return hash_elts (app->listeners_table); |
| 546 | } |
| 547 | |
| 548 | stream_session_t * |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 549 | application_first_listener (application_t * app, u8 fib_proto, |
| 550 | u8 transport_proto) |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 551 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 552 | stream_session_t *listener; |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 553 | u64 handle; |
| 554 | u32 sm_index; |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 555 | u8 sst; |
| 556 | |
| 557 | sst = session_type_from_proto_and_ip (transport_proto, |
| 558 | fib_proto == FIB_PROTOCOL_IP4); |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 559 | |
| 560 | /* *INDENT-OFF* */ |
| 561 | hash_foreach (handle, sm_index, app->listeners_table, ({ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 562 | listener = listen_session_get_from_handle (handle); |
Florin Coras | c3ddea8 | 2017-11-27 03:12:00 -0800 | [diff] [blame] | 563 | if (listener->session_type == sst |
| 564 | && listener->listener_index != SESSION_PROXY_LISTENER_INDEX) |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 565 | return listener; |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 566 | })); |
| 567 | /* *INDENT-ON* */ |
| 568 | |
| 569 | return 0; |
| 570 | } |
| 571 | |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 572 | stream_session_t * |
| 573 | application_proxy_listener (application_t * app, u8 fib_proto, |
| 574 | u8 transport_proto) |
| 575 | { |
| 576 | stream_session_t *listener; |
| 577 | u64 handle; |
| 578 | u32 sm_index; |
| 579 | u8 sst; |
| 580 | |
| 581 | sst = session_type_from_proto_and_ip (transport_proto, |
| 582 | fib_proto == FIB_PROTOCOL_IP4); |
| 583 | |
| 584 | /* *INDENT-OFF* */ |
| 585 | hash_foreach (handle, sm_index, app->listeners_table, ({ |
| 586 | listener = listen_session_get_from_handle (handle); |
| 587 | if (listener->session_type == sst |
| 588 | && listener->listener_index == SESSION_PROXY_LISTENER_INDEX) |
| 589 | return listener; |
| 590 | })); |
| 591 | /* *INDENT-ON* */ |
| 592 | |
| 593 | return 0; |
| 594 | } |
| 595 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 596 | static clib_error_t * |
| 597 | application_start_stop_proxy_fib_proto (application_t * app, u8 fib_proto, |
| 598 | u8 transport_proto, u8 is_start) |
| 599 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 600 | app_namespace_t *app_ns = app_namespace_get (app->ns_index); |
| 601 | u8 is_ip4 = (fib_proto == FIB_PROTOCOL_IP4); |
| 602 | session_endpoint_t sep = SESSION_ENDPOINT_NULL; |
| 603 | transport_connection_t *tc; |
| 604 | stream_session_t *s; |
| 605 | u64 handle; |
| 606 | |
| 607 | if (is_start) |
| 608 | { |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 609 | s = application_first_listener (app, fib_proto, transport_proto); |
| 610 | if (!s) |
| 611 | { |
| 612 | sep.is_ip4 = is_ip4; |
| 613 | sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto); |
| 614 | sep.sw_if_index = app_ns->sw_if_index; |
| 615 | sep.transport_proto = transport_proto; |
| 616 | application_start_listen (app, &sep, &handle); |
| 617 | s = listen_session_get_from_handle (handle); |
| 618 | s->listener_index = SESSION_PROXY_LISTENER_INDEX; |
| 619 | } |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 620 | } |
| 621 | else |
| 622 | { |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 623 | s = application_proxy_listener (app, fib_proto, transport_proto); |
| 624 | ASSERT (s); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 625 | } |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 626 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 627 | tc = listen_session_get_transport (s); |
| 628 | |
| 629 | if (!ip_is_zero (&tc->lcl_ip, 1)) |
| 630 | { |
Florin Coras | dbd4456 | 2017-11-09 19:30:17 -0800 | [diff] [blame] | 631 | u32 sti; |
| 632 | sep.is_ip4 = is_ip4; |
| 633 | sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto); |
| 634 | sep.transport_proto = transport_proto; |
| 635 | sep.port = 0; |
| 636 | sti = session_lookup_get_index_for_fib (fib_proto, sep.fib_index); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 637 | if (is_start) |
| 638 | session_lookup_add_session_endpoint (sti, &sep, s->session_index); |
| 639 | else |
| 640 | session_lookup_del_session_endpoint (sti, &sep); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 641 | } |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 642 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 643 | return 0; |
| 644 | } |
| 645 | |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 646 | static void |
| 647 | application_start_stop_proxy_local_scope (application_t * app, |
| 648 | u8 transport_proto, u8 is_start) |
| 649 | { |
| 650 | session_endpoint_t sep = SESSION_ENDPOINT_NULL; |
| 651 | app_namespace_t *app_ns; |
| 652 | app_ns = app_namespace_get (app->ns_index); |
| 653 | sep.is_ip4 = 1; |
| 654 | sep.transport_proto = transport_proto; |
| 655 | sep.port = 0; |
| 656 | |
| 657 | if (is_start) |
| 658 | { |
| 659 | session_lookup_add_session_endpoint (app_ns->local_table_index, &sep, |
| 660 | app->index); |
| 661 | sep.is_ip4 = 0; |
| 662 | session_lookup_add_session_endpoint (app_ns->local_table_index, &sep, |
| 663 | app->index); |
| 664 | } |
| 665 | else |
| 666 | { |
| 667 | session_lookup_del_session_endpoint (app_ns->local_table_index, &sep); |
| 668 | sep.is_ip4 = 0; |
| 669 | session_lookup_del_session_endpoint (app_ns->local_table_index, &sep); |
| 670 | } |
| 671 | } |
| 672 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 673 | void |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 674 | application_start_stop_proxy (application_t * app, |
| 675 | transport_proto_t transport_proto, u8 is_start) |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 676 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 677 | if (application_has_local_scope (app)) |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 678 | application_start_stop_proxy_local_scope (app, transport_proto, is_start); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 679 | |
| 680 | if (application_has_global_scope (app)) |
| 681 | { |
| 682 | application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP4, |
| 683 | transport_proto, is_start); |
| 684 | application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP6, |
| 685 | transport_proto, is_start); |
| 686 | } |
| 687 | } |
| 688 | |
| 689 | void |
| 690 | application_setup_proxy (application_t * app) |
| 691 | { |
| 692 | u16 transports = app->proxied_transports; |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 693 | transport_proto_t tp; |
| 694 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 695 | ASSERT (application_is_proxy (app)); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 696 | |
| 697 | /* *INDENT-OFF* */ |
| 698 | transport_proto_foreach (tp, ({ |
| 699 | if (transports & (1 << tp)) |
| 700 | application_start_stop_proxy (app, tp, 1); |
| 701 | })); |
| 702 | /* *INDENT-ON* */ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | void |
| 706 | application_remove_proxy (application_t * app) |
| 707 | { |
| 708 | u16 transports = app->proxied_transports; |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 709 | transport_proto_t tp; |
| 710 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 711 | ASSERT (application_is_proxy (app)); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 712 | |
| 713 | /* *INDENT-OFF* */ |
| 714 | transport_proto_foreach (tp, ({ |
| 715 | if (transports & (1 << tp)) |
| 716 | application_start_stop_proxy (app, tp, 0); |
| 717 | })); |
| 718 | /* *INDENT-ON* */ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 719 | } |
| 720 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 721 | segment_manager_properties_t * |
| 722 | application_segment_manager_properties (application_t * app) |
| 723 | { |
| 724 | return &app->sm_properties; |
| 725 | } |
| 726 | |
| 727 | segment_manager_properties_t * |
| 728 | application_get_segment_manager_properties (u32 app_index) |
| 729 | { |
| 730 | application_t *app = application_get (app_index); |
| 731 | return &app->sm_properties; |
| 732 | } |
| 733 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 734 | u8 * |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 735 | format_application_listener (u8 * s, va_list * args) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 736 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 737 | application_t *app = va_arg (*args, application_t *); |
| 738 | u64 handle = va_arg (*args, u64); |
| 739 | u32 index = va_arg (*args, u32); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 740 | int verbose = va_arg (*args, int); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 741 | stream_session_t *listener; |
| 742 | u8 *app_name, *str; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 743 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 744 | if (app == 0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 745 | { |
| 746 | if (verbose) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 747 | s = format (s, "%-40s%-20s%-15s%-15s%-10s", "Connection", "App", |
| 748 | "API Client", "ListenerID", "SegManager"); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 749 | else |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 750 | s = format (s, "%-40s%-20s", "Connection", "App"); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 751 | |
| 752 | return s; |
| 753 | } |
| 754 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 755 | app_name = app_get_name_from_reg_index (app); |
| 756 | listener = listen_session_get_from_handle (handle); |
| 757 | str = format (0, "%U", format_stream_session, listener, verbose); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 758 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 759 | if (verbose) |
| 760 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 761 | s = format (s, "%-40s%-20s%-15u%-15u%-10u", str, app_name, |
| 762 | app->api_client_index, handle, index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 763 | } |
| 764 | else |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 765 | s = format (s, "%-40s%-20s", str, app_name); |
| 766 | |
| 767 | vec_free (app_name); |
| 768 | return s; |
| 769 | } |
| 770 | |
| 771 | void |
| 772 | application_format_connects (application_t * app, int verbose) |
| 773 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 774 | svm_fifo_segment_private_t *fifo_segment; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 775 | vlib_main_t *vm = vlib_get_main (); |
| 776 | segment_manager_t *sm; |
| 777 | u8 *app_name, *s = 0; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 778 | |
| 779 | /* Header */ |
| 780 | if (app == 0) |
| 781 | { |
| 782 | if (verbose) |
| 783 | vlib_cli_output (vm, "%-40s%-20s%-15s%-10s", "Connection", "App", |
| 784 | "API Client", "SegManager"); |
| 785 | else |
| 786 | vlib_cli_output (vm, "%-40s%-20s", "Connection", "App"); |
| 787 | return; |
| 788 | } |
| 789 | |
| 790 | /* make sure */ |
| 791 | if (app->connects_seg_manager == (u32) ~ 0) |
| 792 | return; |
| 793 | |
| 794 | app_name = app_get_name_from_reg_index (app); |
| 795 | |
| 796 | /* Across all fifo segments */ |
| 797 | sm = segment_manager_get (app->connects_seg_manager); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 798 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 799 | /* *INDENT-OFF* */ |
| 800 | segment_manager_foreach_segment_w_lock (fifo_segment, sm, ({ |
| 801 | svm_fifo_t *fifo; |
| 802 | u8 *str; |
| 803 | |
| 804 | fifo = svm_fifo_segment_get_fifo_list (fifo_segment); |
| 805 | while (fifo) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 806 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 807 | u32 session_index, thread_index; |
| 808 | stream_session_t *session; |
| 809 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 810 | session_index = fifo->master_session_index; |
| 811 | thread_index = fifo->master_thread_index; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 812 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 813 | session = session_get (session_index, thread_index); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 814 | str = format (0, "%U", format_stream_session, session, verbose); |
| 815 | |
| 816 | if (verbose) |
| 817 | s = format (s, "%-40s%-20s%-15u%-10u", str, app_name, |
| 818 | app->api_client_index, app->connects_seg_manager); |
| 819 | else |
| 820 | s = format (s, "%-40s%-20s", str, app_name); |
| 821 | |
| 822 | vlib_cli_output (vm, "%v", s); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 823 | vec_reset_length (s); |
| 824 | vec_free (str); |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 825 | |
| 826 | fifo = fifo->next; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 827 | } |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 828 | vec_free (s); |
| 829 | })); |
| 830 | /* *INDENT-ON* */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 831 | |
| 832 | vec_free (app_name); |
| 833 | } |
| 834 | |
| 835 | u8 * |
| 836 | format_application (u8 * s, va_list * args) |
| 837 | { |
| 838 | application_t *app = va_arg (*args, application_t *); |
| 839 | CLIB_UNUSED (int verbose) = va_arg (*args, int); |
Florin Coras | ad0c77f | 2017-11-09 18:00:15 -0800 | [diff] [blame] | 840 | segment_manager_properties_t *props; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 841 | const u8 *app_ns_name; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 842 | u8 *app_name; |
| 843 | |
| 844 | if (app == 0) |
| 845 | { |
| 846 | if (verbose) |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 847 | s = format (s, "%-10s%-20s%-15s%-15s%-15s%-15s%-15s", "Index", "Name", |
Florin Coras | 8f107b3 | 2017-11-21 22:13:03 -0800 | [diff] [blame] | 848 | "API Client", "Namespace", "Add seg size", "Rx fifo size", |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 849 | "Tx fifo size"); |
| 850 | else |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 851 | s = |
Florin Coras | 8f107b3 | 2017-11-21 22:13:03 -0800 | [diff] [blame] | 852 | format (s, "%-10s%-20s%-15s%-40s", "Index", "Name", "API Client", |
| 853 | "Namespace"); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 854 | return s; |
| 855 | } |
| 856 | |
| 857 | app_name = app_get_name_from_reg_index (app); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 858 | app_ns_name = app_namespace_id_from_index (app->ns_index); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 859 | props = application_segment_manager_properties (app); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 860 | if (verbose) |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 861 | s = |
Florin Coras | 8f107b3 | 2017-11-21 22:13:03 -0800 | [diff] [blame] | 862 | format (s, "%-10d%-20s%-15d%-15d%-15d%-15d%-15d", app->index, app_name, |
| 863 | app->api_client_index, app->ns_index, |
Florin Coras | ad0c77f | 2017-11-09 18:00:15 -0800 | [diff] [blame] | 864 | props->add_segment_size, |
| 865 | props->rx_fifo_size, props->tx_fifo_size); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 866 | else |
Florin Coras | 8f107b3 | 2017-11-21 22:13:03 -0800 | [diff] [blame] | 867 | s = format (s, "%-10d%-20s%-15d%-40s", app->index, app_name, |
| 868 | app->api_client_index, app_ns_name); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 869 | return s; |
| 870 | } |
| 871 | |
| 872 | static clib_error_t * |
| 873 | show_app_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 874 | vlib_cli_command_t * cmd) |
| 875 | { |
| 876 | application_t *app; |
| 877 | int do_server = 0; |
| 878 | int do_client = 0; |
| 879 | int verbose = 0; |
| 880 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 881 | session_cli_return_if_not_enabled (); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 882 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 883 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 884 | { |
| 885 | if (unformat (input, "server")) |
| 886 | do_server = 1; |
| 887 | else if (unformat (input, "client")) |
| 888 | do_client = 1; |
| 889 | else if (unformat (input, "verbose")) |
| 890 | verbose = 1; |
| 891 | else |
| 892 | break; |
| 893 | } |
| 894 | |
| 895 | if (do_server) |
| 896 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 897 | u64 handle; |
| 898 | u32 index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 899 | if (pool_elts (app_pool)) |
| 900 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 901 | vlib_cli_output (vm, "%U", format_application_listener, |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 902 | 0 /* header */ , 0, 0, verbose); |
| 903 | |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 904 | /* *INDENT-OFF* */ |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 905 | pool_foreach (app, app_pool, ({ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 906 | /* App's listener sessions */ |
| 907 | if (hash_elts (app->listeners_table) == 0) |
| 908 | continue; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 909 | hash_foreach (handle, index, app->listeners_table, ({ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 910 | vlib_cli_output (vm, "%U", format_application_listener, app, |
| 911 | handle, index, verbose); |
| 912 | })); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 913 | })); |
| 914 | /* *INDENT-ON* */ |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 915 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 916 | } |
| 917 | else |
| 918 | vlib_cli_output (vm, "No active server bindings"); |
| 919 | } |
| 920 | |
| 921 | if (do_client) |
| 922 | { |
| 923 | if (pool_elts (app_pool)) |
| 924 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 925 | application_format_connects (0, verbose); |
| 926 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 927 | /* *INDENT-OFF* */ |
| 928 | pool_foreach (app, app_pool, |
| 929 | ({ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 930 | if (app->connects_seg_manager == (u32)~0) |
| 931 | continue; |
| 932 | application_format_connects (app, verbose); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 933 | })); |
| 934 | /* *INDENT-ON* */ |
| 935 | } |
| 936 | else |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 937 | vlib_cli_output (vm, "No active client bindings"); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 938 | } |
| 939 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 940 | /* Print app related info */ |
| 941 | if (!do_server && !do_client) |
| 942 | { |
| 943 | vlib_cli_output (vm, "%U", format_application, 0, verbose); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 944 | /* *INDENT-OFF* */ |
| 945 | pool_foreach (app, app_pool, ({ |
| 946 | vlib_cli_output (vm, "%U", format_application, app, verbose); |
| 947 | })); |
| 948 | /* *INDENT-ON* */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 949 | } |
| 950 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 951 | return 0; |
| 952 | } |
| 953 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 954 | /* *INDENT-OFF* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 955 | VLIB_CLI_COMMAND (show_app_command, static) = |
| 956 | { |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 957 | .path = "show app", |
| 958 | .short_help = "show app [server|client] [verbose]", |
| 959 | .function = show_app_command_fn, |
| 960 | }; |
| 961 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 962 | |
| 963 | /* |
| 964 | * fd.io coding-style-patch-verification: ON |
| 965 | * |
| 966 | * Local Variables: |
| 967 | * eval: (c-set-style "gnu") |
| 968 | * End: |
| 969 | */ |