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