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