Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 2 | * Copyright (c) 2017-2019 Cisco and/or its affiliates. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 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> |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 19 | #include <vnet/session/application_local.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 20 | #include <vnet/session/session.h> |
| 21 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 22 | static app_main_t app_main; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 23 | |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 24 | #define app_interface_check_thread_and_barrier(_fn, _arg) \ |
| 25 | if (PREDICT_FALSE (!vlib_thread_is_main_w_barrier ())) \ |
| 26 | { \ |
| 27 | vlib_rpc_call_main_thread (_fn, (u8 *) _arg, sizeof(*_arg)); \ |
| 28 | return 0; \ |
| 29 | } |
| 30 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 31 | static app_listener_t * |
| 32 | app_listener_alloc (application_t * app) |
| 33 | { |
| 34 | app_listener_t *app_listener; |
| 35 | pool_get (app->listeners, app_listener); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 36 | clib_memset (app_listener, 0, sizeof (*app_listener)); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 37 | app_listener->al_index = app_listener - app->listeners; |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 38 | app_listener->app_index = app->app_index; |
| 39 | app_listener->session_index = SESSION_INVALID_INDEX; |
| 40 | app_listener->local_index = SESSION_INVALID_INDEX; |
Florin Coras | 87d6633 | 2019-06-11 12:31:31 -0700 | [diff] [blame] | 41 | app_listener->ls_handle = SESSION_INVALID_HANDLE; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 42 | return app_listener; |
| 43 | } |
| 44 | |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 45 | app_listener_t * |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 46 | app_listener_get (application_t * app, u32 app_listener_index) |
| 47 | { |
| 48 | return pool_elt_at_index (app->listeners, app_listener_index); |
| 49 | } |
| 50 | |
| 51 | static void |
| 52 | app_listener_free (application_t * app, app_listener_t * app_listener) |
| 53 | { |
| 54 | clib_bitmap_free (app_listener->workers); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 55 | if (CLIB_DEBUG) |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 56 | clib_memset (app_listener, 0xfa, sizeof (*app_listener)); |
BenoƮt Ganne | d4aeb84 | 2019-07-18 18:38:42 +0200 | [diff] [blame] | 57 | pool_put (app->listeners, app_listener); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 60 | session_handle_t |
| 61 | app_listener_handle (app_listener_t * al) |
| 62 | { |
Florin Coras | 87d6633 | 2019-06-11 12:31:31 -0700 | [diff] [blame] | 63 | return al->ls_handle; |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | app_listener_t * |
| 67 | app_listener_get_w_session (session_t * ls) |
| 68 | { |
| 69 | application_t *app; |
| 70 | |
| 71 | app = application_get_if_valid (ls->app_index); |
| 72 | if (!app) |
| 73 | return 0; |
| 74 | return app_listener_get (app, ls->al_index); |
| 75 | } |
| 76 | |
Florin Coras | 87d6633 | 2019-06-11 12:31:31 -0700 | [diff] [blame] | 77 | session_handle_t |
| 78 | app_listen_session_handle (session_t * ls) |
| 79 | { |
| 80 | app_listener_t *al; |
| 81 | al = app_listener_get_w_session (ls); |
| 82 | if (!al) |
| 83 | return listen_session_get_handle (ls); |
| 84 | return al->ls_handle; |
| 85 | } |
| 86 | |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 87 | app_listener_t * |
| 88 | app_listener_get_w_handle (session_handle_t handle) |
| 89 | { |
Florin Coras | 87d6633 | 2019-06-11 12:31:31 -0700 | [diff] [blame] | 90 | session_t *ls; |
| 91 | ls = session_get_from_handle_if_valid (handle); |
| 92 | if (!ls) |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 93 | return 0; |
Florin Coras | 87d6633 | 2019-06-11 12:31:31 -0700 | [diff] [blame] | 94 | return app_listener_get_w_session (ls); |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | app_listener_t * |
| 98 | app_listener_lookup (application_t * app, session_endpoint_cfg_t * sep_ext) |
| 99 | { |
| 100 | u32 table_index, fib_proto; |
| 101 | session_endpoint_t *sep; |
| 102 | session_handle_t handle; |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 103 | session_t *ls; |
| 104 | |
| 105 | sep = (session_endpoint_t *) sep_ext; |
| 106 | if (application_has_local_scope (app) && session_endpoint_is_local (sep)) |
| 107 | { |
| 108 | table_index = application_local_session_table (app); |
| 109 | handle = session_lookup_endpoint_listener (table_index, sep, 1); |
| 110 | if (handle != SESSION_INVALID_HANDLE) |
| 111 | { |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 112 | ls = listen_session_get_from_handle (handle); |
| 113 | return app_listener_get_w_session (ls); |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 114 | } |
| 115 | } |
| 116 | |
| 117 | fib_proto = session_endpoint_fib_proto (sep); |
Florin Coras | 95cd864 | 2019-12-30 21:53:19 -0800 | [diff] [blame] | 118 | table_index = session_lookup_get_index_for_fib (fib_proto, sep->fib_index); |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 119 | handle = session_lookup_endpoint_listener (table_index, sep, 1); |
| 120 | if (handle != SESSION_INVALID_HANDLE) |
| 121 | { |
| 122 | ls = listen_session_get_from_handle (handle); |
| 123 | return app_listener_get_w_session ((session_t *) ls); |
| 124 | } |
| 125 | |
| 126 | return 0; |
| 127 | } |
| 128 | |
| 129 | int |
| 130 | app_listener_alloc_and_init (application_t * app, |
| 131 | session_endpoint_cfg_t * sep, |
| 132 | app_listener_t ** listener) |
| 133 | { |
| 134 | app_listener_t *app_listener; |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 135 | transport_connection_t *tc; |
Florin Coras | 95cd864 | 2019-12-30 21:53:19 -0800 | [diff] [blame] | 136 | u32 al_index, table_index; |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 137 | session_handle_t lh; |
| 138 | session_type_t st; |
| 139 | session_t *ls = 0; |
| 140 | int rv; |
| 141 | |
| 142 | app_listener = app_listener_alloc (app); |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 143 | al_index = app_listener->al_index; |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 144 | st = session_type_from_proto_and_ip (sep->transport_proto, sep->is_ip4); |
| 145 | |
| 146 | /* |
| 147 | * Add session endpoint to local session table. Only binds to "inaddr_any" |
| 148 | * (i.e., zero address) are added to local scope table. |
| 149 | */ |
| 150 | if (application_has_local_scope (app) |
| 151 | && session_endpoint_is_local ((session_endpoint_t *) sep)) |
| 152 | { |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 153 | session_type_t local_st; |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 154 | |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 155 | local_st = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE, |
| 156 | sep->is_ip4); |
| 157 | ls = listen_session_alloc (0, local_st); |
| 158 | ls->app_index = app->app_index; |
| 159 | ls->app_wrk_index = sep->app_wrk_index; |
| 160 | lh = session_handle (ls); |
| 161 | |
| 162 | if ((rv = session_listen (ls, sep))) |
| 163 | { |
| 164 | ls = session_get_from_handle (lh); |
| 165 | session_free (ls); |
| 166 | return rv; |
| 167 | } |
| 168 | |
| 169 | ls = session_get_from_handle (lh); |
| 170 | app_listener = app_listener_get (app, al_index); |
| 171 | app_listener->local_index = ls->session_index; |
Florin Coras | 87d6633 | 2019-06-11 12:31:31 -0700 | [diff] [blame] | 172 | app_listener->ls_handle = lh; |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 173 | ls->al_index = al_index; |
| 174 | |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 175 | table_index = application_local_session_table (app); |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 176 | session_lookup_add_session_endpoint (table_index, |
| 177 | (session_endpoint_t *) sep, lh); |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | if (application_has_global_scope (app)) |
| 181 | { |
| 182 | /* |
| 183 | * Start listening on local endpoint for requested transport and scope. |
| 184 | * Creates a stream session with state LISTENING to be used in session |
| 185 | * lookups, prior to establishing connection. Requests transport to |
| 186 | * build it's own specific listening connection. |
| 187 | */ |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 188 | ls = listen_session_alloc (0, st); |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 189 | ls->app_index = app->app_index; |
| 190 | ls->app_wrk_index = sep->app_wrk_index; |
| 191 | |
| 192 | /* Listen pool can be reallocated if the transport is |
| 193 | * recursive (tls) */ |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 194 | lh = listen_session_get_handle (ls); |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 195 | |
| 196 | if ((rv = session_listen (ls, sep))) |
| 197 | { |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 198 | ls = listen_session_get_from_handle (lh); |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 199 | session_free (ls); |
| 200 | return rv; |
| 201 | } |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 202 | ls = listen_session_get_from_handle (lh); |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 203 | app_listener = app_listener_get (app, al_index); |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 204 | app_listener->session_index = ls->session_index; |
Florin Coras | 87d6633 | 2019-06-11 12:31:31 -0700 | [diff] [blame] | 205 | app_listener->ls_handle = lh; |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 206 | ls->al_index = al_index; |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 207 | |
| 208 | /* Add to the global lookup table after transport was initialized. |
| 209 | * Lookup table needs to be populated only now because sessions |
| 210 | * with cut-through transport are are added to app local tables that |
| 211 | * are not related to network fibs, i.e., cannot be added as |
| 212 | * connections */ |
| 213 | tc = session_get_transport (ls); |
Nathan Skrzypczak | 2eed1a1 | 2019-07-04 14:26:21 +0200 | [diff] [blame] | 214 | if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP)) |
Florin Coras | 95cd864 | 2019-12-30 21:53:19 -0800 | [diff] [blame] | 215 | { |
| 216 | fib_protocol_t fib_proto; |
| 217 | fib_proto = session_endpoint_fib_proto ((session_endpoint_t *) sep); |
| 218 | table_index = session_lookup_get_index_for_fib (fib_proto, |
| 219 | sep->fib_index); |
| 220 | ASSERT (table_index != SESSION_TABLE_INVALID_INDEX); |
| 221 | session_lookup_add_session_endpoint (table_index, |
| 222 | (session_endpoint_t *) sep, |
| 223 | lh); |
| 224 | } |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 225 | } |
| 226 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 227 | if (!ls) |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 228 | { |
| 229 | app_listener_free (app, app_listener); |
| 230 | return -1; |
| 231 | } |
| 232 | |
| 233 | *listener = app_listener; |
| 234 | return 0; |
| 235 | } |
| 236 | |
| 237 | void |
| 238 | app_listener_cleanup (app_listener_t * al) |
| 239 | { |
| 240 | application_t *app = application_get (al->app_index); |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 241 | session_t *ls; |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 242 | |
| 243 | if (al->session_index != SESSION_INVALID_INDEX) |
| 244 | { |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 245 | ls = session_get (al->session_index, 0); |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 246 | session_stop_listen (ls); |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 247 | listen_session_free (ls); |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 248 | } |
| 249 | if (al->local_index != SESSION_INVALID_INDEX) |
| 250 | { |
| 251 | session_endpoint_t sep = SESSION_ENDPOINT_NULL; |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 252 | u32 table_index; |
| 253 | |
| 254 | table_index = application_local_session_table (app); |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 255 | ls = listen_session_get (al->local_index); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 256 | ct_session_endpoint (ls, &sep); |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 257 | session_lookup_del_session_endpoint (table_index, &sep); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 258 | session_stop_listen (ls); |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 259 | listen_session_free (ls); |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 260 | } |
| 261 | app_listener_free (app, al); |
| 262 | } |
| 263 | |
Florin Coras | 11e2cf5 | 2019-03-06 12:04:24 -0800 | [diff] [blame] | 264 | static app_worker_t * |
| 265 | app_listener_select_worker (application_t * app, app_listener_t * al) |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 266 | { |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 267 | u32 wrk_index; |
| 268 | |
| 269 | app = application_get (al->app_index); |
| 270 | wrk_index = clib_bitmap_next_set (al->workers, al->accept_rotor + 1); |
| 271 | if (wrk_index == ~0) |
| 272 | wrk_index = clib_bitmap_first_set (al->workers); |
| 273 | |
| 274 | ASSERT (wrk_index != ~0); |
| 275 | al->accept_rotor = wrk_index; |
| 276 | return application_get_worker (app, wrk_index); |
| 277 | } |
| 278 | |
| 279 | session_t * |
| 280 | app_listener_get_session (app_listener_t * al) |
| 281 | { |
| 282 | if (al->session_index == SESSION_INVALID_INDEX) |
| 283 | return 0; |
| 284 | |
| 285 | return listen_session_get (al->session_index); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 286 | } |
| 287 | |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 288 | session_t * |
| 289 | app_listener_get_local_session (app_listener_t * al) |
| 290 | { |
| 291 | if (al->local_index == SESSION_INVALID_INDEX) |
| 292 | return 0; |
| 293 | return listen_session_get (al->local_index); |
| 294 | } |
| 295 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 296 | static app_worker_map_t * |
| 297 | app_worker_map_alloc (application_t * app) |
| 298 | { |
| 299 | app_worker_map_t *map; |
| 300 | pool_get (app->worker_maps, map); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 301 | clib_memset (map, 0, sizeof (*map)); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 302 | return map; |
| 303 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 304 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 305 | static u32 |
| 306 | app_worker_map_index (application_t * app, app_worker_map_t * map) |
| 307 | { |
| 308 | return (map - app->worker_maps); |
| 309 | } |
| 310 | |
| 311 | static void |
| 312 | app_worker_map_free (application_t * app, app_worker_map_t * map) |
| 313 | { |
| 314 | pool_put (app->worker_maps, map); |
| 315 | } |
| 316 | |
| 317 | static app_worker_map_t * |
| 318 | app_worker_map_get (application_t * app, u32 map_index) |
| 319 | { |
Florin Coras | 01f3f89 | 2018-12-02 12:45:53 -0800 | [diff] [blame] | 320 | if (pool_is_free_index (app->worker_maps, map_index)) |
| 321 | return 0; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 322 | return pool_elt_at_index (app->worker_maps, map_index); |
| 323 | } |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 324 | |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 325 | static const u8 * |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 326 | app_get_name (application_t * app) |
| 327 | { |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 328 | return app->name; |
| 329 | } |
| 330 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 331 | u32 |
| 332 | application_session_table (application_t * app, u8 fib_proto) |
| 333 | { |
| 334 | app_namespace_t *app_ns; |
| 335 | app_ns = app_namespace_get (app->ns_index); |
| 336 | if (!application_has_global_scope (app)) |
| 337 | return APP_INVALID_INDEX; |
| 338 | if (fib_proto == FIB_PROTOCOL_IP4) |
| 339 | return session_lookup_get_index_for_fib (fib_proto, |
| 340 | app_ns->ip4_fib_index); |
| 341 | else |
| 342 | return session_lookup_get_index_for_fib (fib_proto, |
| 343 | app_ns->ip6_fib_index); |
| 344 | } |
| 345 | |
| 346 | u32 |
| 347 | application_local_session_table (application_t * app) |
| 348 | { |
| 349 | app_namespace_t *app_ns; |
| 350 | if (!application_has_local_scope (app)) |
| 351 | return APP_INVALID_INDEX; |
| 352 | app_ns = app_namespace_get (app->ns_index); |
| 353 | return app_ns->local_table_index; |
| 354 | } |
| 355 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 356 | /** |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 357 | * Returns app name for app-index |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 358 | */ |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 359 | const u8 * |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 360 | application_name_from_index (u32 app_index) |
| 361 | { |
| 362 | application_t *app = application_get (app_index); |
| 363 | if (!app) |
| 364 | return 0; |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 365 | return app_get_name (app); |
| 366 | } |
| 367 | |
| 368 | static void |
| 369 | application_api_table_add (u32 app_index, u32 api_client_index) |
| 370 | { |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 371 | if (api_client_index != APP_INVALID_INDEX) |
| 372 | hash_set (app_main.app_by_api_client_index, api_client_index, app_index); |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | static void |
| 376 | application_api_table_del (u32 api_client_index) |
| 377 | { |
| 378 | hash_unset (app_main.app_by_api_client_index, api_client_index); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 379 | } |
| 380 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 381 | static void |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 382 | application_name_table_add (application_t * app) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 383 | { |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 384 | hash_set_mem (app_main.app_by_name, app->name, app->app_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | static void |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 388 | application_name_table_del (application_t * app) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 389 | { |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 390 | hash_unset_mem (app_main.app_by_name, app->name); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 391 | } |
| 392 | |
| 393 | application_t * |
| 394 | application_lookup (u32 api_client_index) |
| 395 | { |
| 396 | uword *p; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 397 | p = hash_get (app_main.app_by_api_client_index, api_client_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 398 | if (p) |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 399 | return application_get_if_valid (p[0]); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 400 | |
| 401 | return 0; |
| 402 | } |
| 403 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 404 | application_t * |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 405 | application_lookup_name (const u8 * name) |
| 406 | { |
| 407 | uword *p; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 408 | p = hash_get_mem (app_main.app_by_name, name); |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 409 | if (p) |
| 410 | return application_get (p[0]); |
| 411 | |
| 412 | return 0; |
| 413 | } |
| 414 | |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 415 | static application_t * |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 416 | application_alloc (void) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 417 | { |
| 418 | application_t *app; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 419 | pool_get (app_main.app_pool, app); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 420 | clib_memset (app, 0, sizeof (*app)); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 421 | app->app_index = app - app_main.app_pool; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 422 | return app; |
| 423 | } |
| 424 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 425 | application_t * |
| 426 | application_get (u32 app_index) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 427 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 428 | if (app_index == APP_INVALID_INDEX) |
| 429 | return 0; |
| 430 | return pool_elt_at_index (app_main.app_pool, app_index); |
| 431 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 432 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 433 | application_t * |
| 434 | application_get_if_valid (u32 app_index) |
| 435 | { |
| 436 | if (pool_is_free_index (app_main.app_pool, app_index)) |
| 437 | return 0; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 438 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 439 | return pool_elt_at_index (app_main.app_pool, app_index); |
| 440 | } |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 441 | |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 442 | static void |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 443 | application_verify_cb_fns (session_cb_vft_t * cb_fns) |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 444 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 445 | if (cb_fns->session_accept_callback == 0) |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 446 | clib_warning ("No accept callback function provided"); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 447 | if (cb_fns->session_connected_callback == 0) |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 448 | clib_warning ("No session connected callback function provided"); |
| 449 | if (cb_fns->session_disconnect_callback == 0) |
| 450 | clib_warning ("No session disconnect callback function provided"); |
| 451 | if (cb_fns->session_reset_callback == 0) |
| 452 | clib_warning ("No session reset callback function provided"); |
| 453 | } |
| 454 | |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 455 | /** |
| 456 | * Check app config for given segment type |
| 457 | * |
| 458 | * Returns 1 on success and 0 otherwise |
| 459 | */ |
| 460 | static u8 |
| 461 | application_verify_cfg (ssvm_segment_type_t st) |
| 462 | { |
| 463 | u8 is_valid; |
| 464 | if (st == SSVM_SEGMENT_MEMFD) |
| 465 | { |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 466 | is_valid = (session_main_get_evt_q_segment () != 0); |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 467 | if (!is_valid) |
| 468 | clib_warning ("memfd seg: vpp's event qs IN binary api svm region"); |
| 469 | return is_valid; |
| 470 | } |
| 471 | else if (st == SSVM_SEGMENT_SHM) |
| 472 | { |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 473 | is_valid = (session_main_get_evt_q_segment () == 0); |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 474 | if (!is_valid) |
| 475 | clib_warning ("shm seg: vpp's event qs NOT IN binary api svm region"); |
| 476 | return is_valid; |
| 477 | } |
| 478 | else |
| 479 | return 1; |
| 480 | } |
| 481 | |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 482 | static int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 483 | application_alloc_and_init (app_init_args_t * a) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 484 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 485 | ssvm_segment_type_t seg_type = SSVM_SEGMENT_MEMFD; |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 486 | segment_manager_props_t *props; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 487 | vl_api_registration_t *reg; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 488 | application_t *app; |
| 489 | u64 *options; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 490 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 491 | app = application_alloc (); |
| 492 | options = a->options; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 493 | /* |
| 494 | * Make sure we support the requested configuration |
| 495 | */ |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 496 | if (!(options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_IS_BUILTIN)) |
| 497 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 498 | reg = vl_api_client_index_to_registration (a->api_client_index); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 499 | if (!reg) |
| 500 | return VNET_API_ERROR_APP_UNSUPPORTED_CFG; |
| 501 | if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI) |
| 502 | seg_type = SSVM_SEGMENT_SHM; |
| 503 | } |
| 504 | else |
| 505 | { |
| 506 | seg_type = SSVM_SEGMENT_PRIVATE; |
| 507 | } |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 508 | |
Florin Coras | d8402ae | 2019-03-03 16:46:52 -0800 | [diff] [blame] | 509 | if ((options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD) |
| 510 | && seg_type != SSVM_SEGMENT_MEMFD) |
| 511 | { |
| 512 | clib_warning ("mq eventfds can only be used if socket transport is " |
| 513 | "used for binary api"); |
| 514 | return VNET_API_ERROR_APP_UNSUPPORTED_CFG; |
| 515 | } |
| 516 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 517 | if (!application_verify_cfg (seg_type)) |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 518 | return VNET_API_ERROR_APP_UNSUPPORTED_CFG; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 519 | |
Florin Coras | 9845c20 | 2020-04-28 01:54:22 +0000 | [diff] [blame] | 520 | if (options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] |
| 521 | && options[APP_OPTIONS_PREALLOC_FIFO_HDRS]) |
| 522 | return VNET_API_ERROR_APP_UNSUPPORTED_CFG; |
| 523 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 524 | /* Check that the obvious things are properly set up */ |
| 525 | application_verify_cb_fns (a->session_cb_vft); |
| 526 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 527 | app->flags = options[APP_OPTIONS_FLAGS]; |
| 528 | app->cb_fns = *a->session_cb_vft; |
| 529 | app->ns_index = options[APP_OPTIONS_NAMESPACE]; |
| 530 | app->proxied_transports = options[APP_OPTIONS_PROXY_TRANSPORT]; |
| 531 | app->name = vec_dup (a->name); |
| 532 | |
| 533 | /* If no scope enabled, default to global */ |
| 534 | if (!application_has_global_scope (app) |
| 535 | && !application_has_local_scope (app)) |
| 536 | app->flags |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE; |
| 537 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 538 | props = application_segment_manager_properties (app); |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 539 | segment_manager_props_init (props); |
Florin Coras | 404b8a3 | 2019-05-09 12:08:06 -0700 | [diff] [blame] | 540 | props->segment_size = options[APP_OPTIONS_SEGMENT_SIZE]; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 541 | props->prealloc_fifos = options[APP_OPTIONS_PREALLOC_FIFO_PAIRS]; |
Florin Coras | 9845c20 | 2020-04-28 01:54:22 +0000 | [diff] [blame] | 542 | props->prealloc_fifo_hdrs = options[APP_OPTIONS_PREALLOC_FIFO_HDRS]; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 543 | if (options[APP_OPTIONS_ADD_SEGMENT_SIZE]) |
| 544 | { |
| 545 | props->add_segment_size = options[APP_OPTIONS_ADD_SEGMENT_SIZE]; |
| 546 | props->add_segment = 1; |
| 547 | } |
| 548 | if (options[APP_OPTIONS_RX_FIFO_SIZE]) |
| 549 | props->rx_fifo_size = options[APP_OPTIONS_RX_FIFO_SIZE]; |
| 550 | if (options[APP_OPTIONS_TX_FIFO_SIZE]) |
| 551 | props->tx_fifo_size = options[APP_OPTIONS_TX_FIFO_SIZE]; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 552 | if (options[APP_OPTIONS_EVT_QUEUE_SIZE]) |
| 553 | props->evt_q_size = options[APP_OPTIONS_EVT_QUEUE_SIZE]; |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 554 | if (options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD) |
| 555 | props->use_mq_eventfd = 1; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 556 | if (options[APP_OPTIONS_TLS_ENGINE]) |
| 557 | app->tls_engine = options[APP_OPTIONS_TLS_ENGINE]; |
Ryujiro Shibuya | d8f48e2 | 2020-01-22 12:11:42 +0000 | [diff] [blame] | 558 | if (options[APP_OPTIONS_MAX_FIFO_SIZE]) |
| 559 | props->max_fifo_size = options[APP_OPTIONS_MAX_FIFO_SIZE]; |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 560 | if (options[APP_OPTIONS_HIGH_WATERMARK]) |
| 561 | props->high_watermark = options[APP_OPTIONS_HIGH_WATERMARK]; |
| 562 | if (options[APP_OPTIONS_LOW_WATERMARK]) |
| 563 | props->low_watermark = options[APP_OPTIONS_LOW_WATERMARK]; |
Florin Coras | 2de9c0f | 2020-02-02 19:30:39 +0000 | [diff] [blame] | 564 | if (options[APP_OPTIONS_PCT_FIRST_ALLOC]) |
| 565 | props->pct_first_alloc = options[APP_OPTIONS_PCT_FIRST_ALLOC]; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 566 | props->segment_type = seg_type; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 567 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 568 | /* Add app to lookup by api_client_index table */ |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 569 | if (!application_is_builtin (app)) |
| 570 | application_api_table_add (app->app_index, a->api_client_index); |
| 571 | else |
| 572 | application_name_table_add (app); |
| 573 | |
| 574 | a->app_index = app->app_index; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 575 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 576 | APP_DBG ("New app name: %v api index: %u index %u", app->name, |
Nathan Skrzypczak | ba65ca4 | 2019-05-16 16:35:40 +0200 | [diff] [blame] | 577 | a->api_client_index, app->app_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 578 | |
| 579 | return 0; |
| 580 | } |
| 581 | |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 582 | static void |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 583 | application_free (application_t * app) |
| 584 | { |
| 585 | app_worker_map_t *wrk_map; |
| 586 | app_worker_t *app_wrk; |
| 587 | |
| 588 | /* |
| 589 | * The app event queue allocated in first segment is cleared with |
| 590 | * the segment manager. No need to explicitly free it. |
| 591 | */ |
Nathan Skrzypczak | ba65ca4 | 2019-05-16 16:35:40 +0200 | [diff] [blame] | 592 | APP_DBG ("Delete app name %v index: %d", app->name, app->app_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 593 | |
| 594 | if (application_is_proxy (app)) |
| 595 | application_remove_proxy (app); |
| 596 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 597 | /* |
| 598 | * Free workers |
| 599 | */ |
| 600 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 601 | /* *INDENT-OFF* */ |
| 602 | pool_flush (wrk_map, app->worker_maps, ({ |
| 603 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 604 | app_worker_free (app_wrk); |
| 605 | })); |
| 606 | /* *INDENT-ON* */ |
| 607 | pool_free (app->worker_maps); |
| 608 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 609 | /* |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 610 | * Cleanup remaining state |
| 611 | */ |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 612 | if (application_is_builtin (app)) |
| 613 | application_name_table_del (app); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 614 | vec_free (app->name); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 615 | pool_put (app_main.app_pool, app); |
| 616 | } |
| 617 | |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 618 | static void |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 619 | application_detach_process (application_t * app, u32 api_client_index) |
| 620 | { |
| 621 | vnet_app_worker_add_del_args_t _args = { 0 }, *args = &_args; |
| 622 | app_worker_map_t *wrk_map; |
| 623 | u32 *wrks = 0, *wrk_index; |
| 624 | app_worker_t *app_wrk; |
| 625 | |
| 626 | if (api_client_index == ~0) |
| 627 | { |
| 628 | application_free (app); |
| 629 | return; |
| 630 | } |
| 631 | |
| 632 | APP_DBG ("Detaching for app %v index %u api client index %u", app->name, |
Nathan Skrzypczak | ba65ca4 | 2019-05-16 16:35:40 +0200 | [diff] [blame] | 633 | app->app_index, api_client_index); |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 634 | |
| 635 | /* *INDENT-OFF* */ |
| 636 | pool_foreach (wrk_map, app->worker_maps, ({ |
| 637 | app_wrk = app_worker_get (wrk_map->wrk_index); |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 638 | if (app_wrk->api_client_index == api_client_index) |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 639 | vec_add1 (wrks, app_wrk->wrk_index); |
| 640 | })); |
| 641 | /* *INDENT-ON* */ |
| 642 | |
| 643 | if (!vec_len (wrks)) |
| 644 | { |
| 645 | clib_warning ("no workers for app %u api_index %u", app->app_index, |
| 646 | api_client_index); |
| 647 | return; |
| 648 | } |
| 649 | |
| 650 | args->app_index = app->app_index; |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 651 | args->api_client_index = api_client_index; |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 652 | vec_foreach (wrk_index, wrks) |
| 653 | { |
| 654 | app_wrk = app_worker_get (wrk_index[0]); |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 655 | args->wrk_map_index = app_wrk->wrk_map_index; |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 656 | args->is_add = 0; |
| 657 | vnet_app_worker_add_del (args); |
| 658 | } |
| 659 | vec_free (wrks); |
| 660 | } |
| 661 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 662 | app_worker_t * |
| 663 | application_get_worker (application_t * app, u32 wrk_map_index) |
| 664 | { |
| 665 | app_worker_map_t *map; |
| 666 | map = app_worker_map_get (app, wrk_map_index); |
| 667 | if (!map) |
| 668 | return 0; |
| 669 | return app_worker_get (map->wrk_index); |
| 670 | } |
| 671 | |
| 672 | app_worker_t * |
| 673 | application_get_default_worker (application_t * app) |
| 674 | { |
| 675 | return application_get_worker (app, 0); |
| 676 | } |
| 677 | |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 678 | u32 |
| 679 | application_n_workers (application_t * app) |
| 680 | { |
| 681 | return pool_elts (app->worker_maps); |
| 682 | } |
| 683 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 684 | app_worker_t * |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 685 | application_listener_select_worker (session_t * ls) |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 686 | { |
Florin Coras | 11e2cf5 | 2019-03-06 12:04:24 -0800 | [diff] [blame] | 687 | application_t *app; |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 688 | app_listener_t *al; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 689 | |
Florin Coras | 11e2cf5 | 2019-03-06 12:04:24 -0800 | [diff] [blame] | 690 | app = application_get (ls->app_index); |
| 691 | al = app_listener_get (app, ls->al_index); |
| 692 | return app_listener_select_worker (app, al); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 693 | } |
| 694 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 695 | int |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 696 | application_alloc_worker_and_init (application_t * app, app_worker_t ** wrk) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 697 | { |
| 698 | app_worker_map_t *wrk_map; |
| 699 | app_worker_t *app_wrk; |
| 700 | segment_manager_t *sm; |
| 701 | int rv; |
| 702 | |
| 703 | app_wrk = app_worker_alloc (app); |
| 704 | wrk_map = app_worker_map_alloc (app); |
| 705 | wrk_map->wrk_index = app_wrk->wrk_index; |
| 706 | app_wrk->wrk_map_index = app_worker_map_index (app, wrk_map); |
| 707 | |
| 708 | /* |
| 709 | * Setup first segment manager |
| 710 | */ |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 711 | sm = segment_manager_alloc (); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 712 | sm->app_wrk_index = app_wrk->wrk_index; |
| 713 | |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 714 | if ((rv = segment_manager_init (sm))) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 715 | { |
| 716 | app_worker_free (app_wrk); |
| 717 | return rv; |
| 718 | } |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 719 | sm->first_is_protected = 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 720 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 721 | /* |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 722 | * Setup app worker |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 723 | */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 724 | app_wrk->first_segment_manager = segment_manager_index (sm); |
| 725 | app_wrk->listeners_table = hash_create (0, sizeof (u64)); |
| 726 | app_wrk->event_queue = segment_manager_event_queue (sm); |
| 727 | app_wrk->app_is_builtin = application_is_builtin (app); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 728 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 729 | *wrk = app_wrk; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 730 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 731 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 732 | } |
| 733 | |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 734 | int |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 735 | vnet_app_worker_add_del (vnet_app_worker_add_del_args_t * a) |
| 736 | { |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 737 | fifo_segment_t *fs; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 738 | app_worker_map_t *wrk_map; |
| 739 | app_worker_t *app_wrk; |
| 740 | segment_manager_t *sm; |
| 741 | application_t *app; |
| 742 | int rv; |
| 743 | |
| 744 | app = application_get (a->app_index); |
| 745 | if (!app) |
| 746 | return VNET_API_ERROR_INVALID_VALUE; |
| 747 | |
| 748 | if (a->is_add) |
| 749 | { |
| 750 | if ((rv = application_alloc_worker_and_init (app, &app_wrk))) |
| 751 | return rv; |
| 752 | |
| 753 | /* Map worker api index to the app */ |
| 754 | app_wrk->api_client_index = a->api_client_index; |
| 755 | application_api_table_add (app->app_index, a->api_client_index); |
| 756 | |
| 757 | sm = segment_manager_get (app_wrk->first_segment_manager); |
| 758 | fs = segment_manager_get_segment_w_lock (sm, 0); |
| 759 | a->segment = &fs->ssvm; |
| 760 | a->segment_handle = segment_manager_segment_handle (sm, fs); |
| 761 | segment_manager_segment_reader_unlock (sm); |
| 762 | a->evt_q = app_wrk->event_queue; |
| 763 | a->wrk_map_index = app_wrk->wrk_map_index; |
| 764 | } |
| 765 | else |
| 766 | { |
| 767 | wrk_map = app_worker_map_get (app, a->wrk_map_index); |
| 768 | if (!wrk_map) |
| 769 | return VNET_API_ERROR_INVALID_VALUE; |
| 770 | |
| 771 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 772 | if (!app_wrk) |
| 773 | return VNET_API_ERROR_INVALID_VALUE; |
| 774 | |
| 775 | application_api_table_del (app_wrk->api_client_index); |
| 776 | app_worker_free (app_wrk); |
| 777 | app_worker_map_free (app, wrk_map); |
| 778 | if (application_n_workers (app) == 0) |
| 779 | application_free (app); |
| 780 | } |
| 781 | return 0; |
| 782 | } |
| 783 | |
| 784 | static int |
| 785 | app_validate_namespace (u8 * namespace_id, u64 secret, u32 * app_ns_index) |
| 786 | { |
| 787 | app_namespace_t *app_ns; |
| 788 | if (vec_len (namespace_id) == 0) |
| 789 | { |
| 790 | /* Use default namespace */ |
| 791 | *app_ns_index = 0; |
| 792 | return 0; |
| 793 | } |
| 794 | |
| 795 | *app_ns_index = app_namespace_index_from_id (namespace_id); |
| 796 | if (*app_ns_index == APP_NAMESPACE_INVALID_INDEX) |
| 797 | return VNET_API_ERROR_APP_INVALID_NS; |
| 798 | app_ns = app_namespace_get (*app_ns_index); |
| 799 | if (!app_ns) |
| 800 | return VNET_API_ERROR_APP_INVALID_NS; |
| 801 | if (app_ns->ns_secret != secret) |
| 802 | return VNET_API_ERROR_APP_WRONG_NS_SECRET; |
| 803 | return 0; |
| 804 | } |
| 805 | |
| 806 | static u8 * |
| 807 | app_name_from_api_index (u32 api_client_index) |
| 808 | { |
| 809 | vl_api_registration_t *regp; |
| 810 | regp = vl_api_client_index_to_registration (api_client_index); |
| 811 | if (regp) |
Florin Coras | bee9768 | 2019-04-09 16:13:18 -0700 | [diff] [blame] | 812 | return format (0, "%s", regp->name); |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 813 | |
| 814 | clib_warning ("api client index %u does not have an api registration!", |
| 815 | api_client_index); |
Florin Coras | bee9768 | 2019-04-09 16:13:18 -0700 | [diff] [blame] | 816 | return format (0, "unknown"); |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 817 | } |
| 818 | |
| 819 | /** |
| 820 | * Attach application to vpp |
| 821 | * |
| 822 | * Allocates a vpp app, i.e., a structure that keeps back pointers |
| 823 | * to external app and a segment manager for shared memory fifo based |
| 824 | * communication with the external app. |
| 825 | */ |
| 826 | int |
| 827 | vnet_application_attach (vnet_app_attach_args_t * a) |
| 828 | { |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 829 | fifo_segment_t *fs; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 830 | application_t *app = 0; |
| 831 | app_worker_t *app_wrk; |
| 832 | segment_manager_t *sm; |
| 833 | u32 app_ns_index = 0; |
| 834 | u8 *app_name = 0; |
| 835 | u64 secret; |
| 836 | int rv; |
| 837 | |
| 838 | if (a->api_client_index != APP_INVALID_INDEX) |
| 839 | app = application_lookup (a->api_client_index); |
| 840 | else if (a->name) |
| 841 | app = application_lookup_name (a->name); |
| 842 | else |
| 843 | return VNET_API_ERROR_INVALID_VALUE; |
| 844 | |
| 845 | if (app) |
| 846 | return VNET_API_ERROR_APP_ALREADY_ATTACHED; |
| 847 | |
| 848 | if (a->api_client_index != APP_INVALID_INDEX) |
| 849 | { |
| 850 | app_name = app_name_from_api_index (a->api_client_index); |
| 851 | a->name = app_name; |
| 852 | } |
| 853 | |
| 854 | secret = a->options[APP_OPTIONS_NAMESPACE_SECRET]; |
| 855 | if ((rv = app_validate_namespace (a->namespace_id, secret, &app_ns_index))) |
| 856 | return rv; |
| 857 | a->options[APP_OPTIONS_NAMESPACE] = app_ns_index; |
| 858 | |
| 859 | if ((rv = application_alloc_and_init ((app_init_args_t *) a))) |
| 860 | return rv; |
| 861 | |
| 862 | app = application_get (a->app_index); |
| 863 | if ((rv = application_alloc_worker_and_init (app, &app_wrk))) |
| 864 | return rv; |
| 865 | |
| 866 | a->app_evt_q = app_wrk->event_queue; |
| 867 | app_wrk->api_client_index = a->api_client_index; |
| 868 | sm = segment_manager_get (app_wrk->first_segment_manager); |
| 869 | fs = segment_manager_get_segment_w_lock (sm, 0); |
| 870 | |
| 871 | if (application_is_proxy (app)) |
| 872 | application_setup_proxy (app); |
| 873 | |
| 874 | ASSERT (vec_len (fs->ssvm.name) <= 128); |
| 875 | a->segment = &fs->ssvm; |
| 876 | a->segment_handle = segment_manager_segment_handle (sm, fs); |
| 877 | |
| 878 | segment_manager_segment_reader_unlock (sm); |
| 879 | vec_free (app_name); |
| 880 | return 0; |
| 881 | } |
| 882 | |
| 883 | /** |
| 884 | * Detach application from vpp |
| 885 | */ |
| 886 | int |
| 887 | vnet_application_detach (vnet_app_detach_args_t * a) |
| 888 | { |
| 889 | application_t *app; |
| 890 | |
| 891 | app = application_get_if_valid (a->app_index); |
| 892 | if (!app) |
| 893 | { |
| 894 | clib_warning ("app not attached"); |
| 895 | return VNET_API_ERROR_APPLICATION_NOT_ATTACHED; |
| 896 | } |
| 897 | |
| 898 | app_interface_check_thread_and_barrier (vnet_application_detach, a); |
| 899 | application_detach_process (app, a->api_client_index); |
| 900 | return 0; |
| 901 | } |
| 902 | |
| 903 | |
| 904 | static u8 |
| 905 | session_endpoint_in_ns (session_endpoint_t * sep) |
| 906 | { |
| 907 | u8 is_lep = session_endpoint_is_local (sep); |
| 908 | if (!is_lep && sep->sw_if_index != ENDPOINT_INVALID_INDEX |
| 909 | && !ip_interface_has_address (sep->sw_if_index, &sep->ip, sep->is_ip4)) |
| 910 | { |
| 911 | clib_warning ("sw_if_index %u not configured with ip %U", |
| 912 | sep->sw_if_index, format_ip46_address, &sep->ip, |
| 913 | sep->is_ip4); |
| 914 | return 0; |
| 915 | } |
| 916 | return (is_lep || ip_is_local (sep->fib_index, &sep->ip, sep->is_ip4)); |
| 917 | } |
| 918 | |
| 919 | static void |
| 920 | session_endpoint_update_for_app (session_endpoint_cfg_t * sep, |
| 921 | application_t * app, u8 is_connect) |
| 922 | { |
| 923 | app_namespace_t *app_ns; |
| 924 | u32 ns_index, fib_index; |
| 925 | |
| 926 | ns_index = app->ns_index; |
| 927 | |
| 928 | /* App is a transport proto, so fetch the calling app's ns */ |
| 929 | if (app->flags & APP_OPTIONS_FLAGS_IS_TRANSPORT_APP) |
Florin Coras | 8a14061 | 2019-02-18 22:39:39 -0800 | [diff] [blame] | 930 | ns_index = sep->ns_index; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 931 | |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 932 | app_ns = app_namespace_get (ns_index); |
| 933 | if (!app_ns) |
| 934 | return; |
| 935 | |
| 936 | /* Ask transport and network to bind to/connect using local interface |
| 937 | * that "supports" app's namespace. This will fix our local connection |
| 938 | * endpoint. |
| 939 | */ |
| 940 | |
| 941 | /* If in default namespace and user requested a fib index use it */ |
| 942 | if (ns_index == 0 && sep->fib_index != ENDPOINT_INVALID_INDEX) |
| 943 | fib_index = sep->fib_index; |
| 944 | else |
| 945 | fib_index = sep->is_ip4 ? app_ns->ip4_fib_index : app_ns->ip6_fib_index; |
| 946 | sep->peer.fib_index = fib_index; |
| 947 | sep->fib_index = fib_index; |
| 948 | |
| 949 | if (!is_connect) |
| 950 | { |
| 951 | sep->sw_if_index = app_ns->sw_if_index; |
| 952 | } |
| 953 | else |
| 954 | { |
| 955 | if (app_ns->sw_if_index != APP_NAMESPACE_INVALID_INDEX |
| 956 | && sep->peer.sw_if_index != ENDPOINT_INVALID_INDEX |
| 957 | && sep->peer.sw_if_index != app_ns->sw_if_index) |
| 958 | clib_warning ("Local sw_if_index different from app ns sw_if_index"); |
| 959 | |
| 960 | sep->peer.sw_if_index = app_ns->sw_if_index; |
| 961 | } |
| 962 | } |
| 963 | |
| 964 | int |
| 965 | vnet_listen (vnet_listen_args_t * a) |
| 966 | { |
| 967 | app_listener_t *app_listener; |
| 968 | app_worker_t *app_wrk; |
| 969 | application_t *app; |
| 970 | int rv; |
| 971 | |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 972 | ASSERT (vlib_thread_is_main_w_barrier ()); |
| 973 | |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 974 | app = application_get_if_valid (a->app_index); |
| 975 | if (!app) |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 976 | return SESSION_E_NOAPP; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 977 | |
| 978 | app_wrk = application_get_worker (app, a->wrk_map_index); |
| 979 | if (!app_wrk) |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 980 | return SESSION_E_INVALID_APPWRK; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 981 | |
| 982 | a->sep_ext.app_wrk_index = app_wrk->wrk_index; |
| 983 | |
| 984 | session_endpoint_update_for_app (&a->sep_ext, app, 0 /* is_connect */ ); |
| 985 | if (!session_endpoint_in_ns (&a->sep)) |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 986 | return SESSION_E_INVALID_NS; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 987 | |
| 988 | /* |
| 989 | * Check if we already have an app listener |
| 990 | */ |
| 991 | app_listener = app_listener_lookup (app, &a->sep_ext); |
| 992 | if (app_listener) |
| 993 | { |
| 994 | if (app_listener->app_index != app->app_index) |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 995 | return SESSION_E_ALREADY_LISTENING; |
| 996 | if ((rv = app_worker_start_listen (app_wrk, app_listener))) |
| 997 | return rv; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 998 | a->handle = app_listener_handle (app_listener); |
| 999 | return 0; |
| 1000 | } |
| 1001 | |
| 1002 | /* |
| 1003 | * Create new app listener |
| 1004 | */ |
| 1005 | if ((rv = app_listener_alloc_and_init (app, &a->sep_ext, &app_listener))) |
| 1006 | return rv; |
| 1007 | |
| 1008 | if ((rv = app_worker_start_listen (app_wrk, app_listener))) |
| 1009 | { |
| 1010 | app_listener_cleanup (app_listener); |
| 1011 | return rv; |
| 1012 | } |
| 1013 | |
| 1014 | a->handle = app_listener_handle (app_listener); |
| 1015 | return 0; |
| 1016 | } |
| 1017 | |
| 1018 | int |
| 1019 | vnet_connect (vnet_connect_args_t * a) |
| 1020 | { |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1021 | app_worker_t *client_wrk; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1022 | application_t *client; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1023 | |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 1024 | ASSERT (vlib_thread_is_main_w_barrier ()); |
| 1025 | |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1026 | if (session_endpoint_is_zero (&a->sep)) |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 1027 | return SESSION_E_INVALID_RMT_IP; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1028 | |
| 1029 | client = application_get (a->app_index); |
| 1030 | session_endpoint_update_for_app (&a->sep_ext, client, 1 /* is_connect */ ); |
| 1031 | client_wrk = application_get_worker (client, a->wrk_map_index); |
| 1032 | |
| 1033 | /* |
| 1034 | * First check the local scope for locally attached destinations. |
| 1035 | * If we have local scope, we pass *all* connects through it since we may |
| 1036 | * have special policy rules even for non-local destinations, think proxy. |
| 1037 | */ |
| 1038 | if (application_has_local_scope (client)) |
| 1039 | { |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1040 | int rv; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1041 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1042 | a->sep_ext.original_tp = a->sep_ext.transport_proto; |
| 1043 | a->sep_ext.transport_proto = TRANSPORT_PROTO_NONE; |
| 1044 | rv = app_worker_connect_session (client_wrk, &a->sep, a->api_context); |
| 1045 | if (rv <= 0) |
| 1046 | return rv; |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 1047 | a->sep_ext.transport_proto = a->sep_ext.original_tp; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1048 | } |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1049 | /* |
| 1050 | * Not connecting to a local server, propagate to transport |
| 1051 | */ |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 1052 | return app_worker_connect_session (client_wrk, &a->sep, a->api_context); |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1053 | } |
| 1054 | |
| 1055 | int |
| 1056 | vnet_unlisten (vnet_unlisten_args_t * a) |
| 1057 | { |
| 1058 | app_worker_t *app_wrk; |
| 1059 | app_listener_t *al; |
| 1060 | application_t *app; |
| 1061 | |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 1062 | ASSERT (vlib_thread_is_main_w_barrier ()); |
| 1063 | |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1064 | if (!(app = application_get_if_valid (a->app_index))) |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1065 | return SESSION_E_NOAPP; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1066 | |
Florin Coras | 92311f6 | 2019-03-01 19:26:31 -0800 | [diff] [blame] | 1067 | if (!(al = app_listener_get_w_handle (a->handle))) |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1068 | return SESSION_E_NOLISTEN; |
Florin Coras | 92311f6 | 2019-03-01 19:26:31 -0800 | [diff] [blame] | 1069 | |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1070 | if (al->app_index != app->app_index) |
| 1071 | { |
| 1072 | clib_warning ("app doesn't own handle %llu!", a->handle); |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1073 | return SESSION_E_OWNER; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1074 | } |
| 1075 | |
| 1076 | app_wrk = application_get_worker (app, a->wrk_map_index); |
| 1077 | if (!app_wrk) |
| 1078 | { |
| 1079 | clib_warning ("no app %u worker %u", app->app_index, a->wrk_map_index); |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1080 | return SESSION_E_INVALID_APPWRK; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1081 | } |
| 1082 | |
| 1083 | return app_worker_stop_listen (app_wrk, al); |
| 1084 | } |
| 1085 | |
| 1086 | int |
| 1087 | vnet_disconnect_session (vnet_disconnect_args_t * a) |
| 1088 | { |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1089 | app_worker_t *app_wrk; |
| 1090 | session_t *s; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1091 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1092 | s = session_get_from_handle_if_valid (a->handle); |
| 1093 | if (!s) |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1094 | return SESSION_E_NOSESSION; |
| 1095 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1096 | app_wrk = app_worker_get (s->app_wrk_index); |
| 1097 | if (app_wrk->app_index != a->app_index) |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1098 | return SESSION_E_OWNER; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1099 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1100 | /* We're peeking into another's thread pool. Make sure */ |
| 1101 | ASSERT (s->session_index == session_index_from_handle (a->handle)); |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1102 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1103 | session_close (s); |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 1104 | return 0; |
| 1105 | } |
| 1106 | |
| 1107 | int |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 1108 | application_change_listener_owner (session_t * s, app_worker_t * app_wrk) |
| 1109 | { |
| 1110 | app_worker_t *old_wrk = app_worker_get (s->app_wrk_index); |
| 1111 | app_listener_t *app_listener; |
| 1112 | application_t *app; |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1113 | int rv; |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 1114 | |
| 1115 | if (!old_wrk) |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1116 | return SESSION_E_INVALID_APPWRK; |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 1117 | |
| 1118 | hash_unset (old_wrk->listeners_table, listen_session_get_handle (s)); |
| 1119 | if (session_transport_service_type (s) == TRANSPORT_SERVICE_CL |
| 1120 | && s->rx_fifo) |
Florin Coras | 19223e0 | 2019-03-03 14:56:05 -0800 | [diff] [blame] | 1121 | segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo); |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 1122 | |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 1123 | app = application_get (old_wrk->app_index); |
| 1124 | if (!app) |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1125 | return SESSION_E_NOAPP; |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 1126 | |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 1127 | app_listener = app_listener_get (app, s->al_index); |
| 1128 | |
| 1129 | /* Only remove from lb for now */ |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 1130 | app_listener->workers = clib_bitmap_set (app_listener->workers, |
| 1131 | old_wrk->wrk_map_index, 0); |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 1132 | |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1133 | if ((rv = app_worker_start_listen (app_wrk, app_listener))) |
| 1134 | return rv; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1135 | |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 1136 | s->app_wrk_index = app_wrk->wrk_index; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1137 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1138 | return 0; |
| 1139 | } |
| 1140 | |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 1141 | int |
| 1142 | application_is_proxy (application_t * app) |
| 1143 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1144 | return (app->flags & APP_OPTIONS_FLAGS_IS_PROXY); |
| 1145 | } |
| 1146 | |
| 1147 | int |
| 1148 | application_is_builtin (application_t * app) |
| 1149 | { |
| 1150 | return (app->flags & APP_OPTIONS_FLAGS_IS_BUILTIN); |
| 1151 | } |
| 1152 | |
| 1153 | int |
| 1154 | application_is_builtin_proxy (application_t * app) |
| 1155 | { |
| 1156 | return (application_is_proxy (app) && application_is_builtin (app)); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 1157 | } |
| 1158 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1159 | u8 |
| 1160 | application_has_local_scope (application_t * app) |
| 1161 | { |
| 1162 | return app->flags & APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE; |
| 1163 | } |
| 1164 | |
| 1165 | u8 |
| 1166 | application_has_global_scope (application_t * app) |
| 1167 | { |
| 1168 | return app->flags & APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE; |
| 1169 | } |
| 1170 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1171 | static clib_error_t * |
| 1172 | application_start_stop_proxy_fib_proto (application_t * app, u8 fib_proto, |
| 1173 | u8 transport_proto, u8 is_start) |
| 1174 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1175 | app_namespace_t *app_ns = app_namespace_get (app->ns_index); |
| 1176 | u8 is_ip4 = (fib_proto == FIB_PROTOCOL_IP4); |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 1177 | session_endpoint_cfg_t sep = SESSION_ENDPOINT_CFG_NULL; |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1178 | transport_connection_t *tc; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1179 | app_worker_t *app_wrk; |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 1180 | app_listener_t *al; |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1181 | session_t *s; |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 1182 | u32 flags; |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1183 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1184 | /* TODO decide if we want proxy to be enabled for all workers */ |
| 1185 | app_wrk = application_get_default_worker (app); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1186 | if (is_start) |
| 1187 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1188 | s = app_worker_first_listener (app_wrk, fib_proto, transport_proto); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1189 | if (!s) |
| 1190 | { |
| 1191 | sep.is_ip4 = is_ip4; |
| 1192 | sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto); |
| 1193 | sep.sw_if_index = app_ns->sw_if_index; |
| 1194 | sep.transport_proto = transport_proto; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1195 | sep.app_wrk_index = app_wrk->wrk_index; /* only default */ |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 1196 | |
| 1197 | /* force global scope listener */ |
| 1198 | flags = app->flags; |
| 1199 | app->flags &= ~APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE; |
| 1200 | app_listener_alloc_and_init (app, &sep, &al); |
| 1201 | app->flags = flags; |
| 1202 | |
| 1203 | app_worker_start_listen (app_wrk, al); |
| 1204 | s = listen_session_get (al->session_index); |
Florin Coras | d5c604d | 2019-03-18 09:06:35 -0700 | [diff] [blame] | 1205 | s->flags |= SESSION_F_PROXY; |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1206 | } |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1207 | } |
| 1208 | else |
| 1209 | { |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 1210 | s = app_worker_proxy_listener (app_wrk, fib_proto, transport_proto); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1211 | ASSERT (s); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1212 | } |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1213 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1214 | tc = listen_session_get_transport (s); |
| 1215 | |
| 1216 | if (!ip_is_zero (&tc->lcl_ip, 1)) |
| 1217 | { |
Florin Coras | dbd4456 | 2017-11-09 19:30:17 -0800 | [diff] [blame] | 1218 | u32 sti; |
| 1219 | sep.is_ip4 = is_ip4; |
| 1220 | sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto); |
| 1221 | sep.transport_proto = transport_proto; |
| 1222 | sep.port = 0; |
| 1223 | sti = session_lookup_get_index_for_fib (fib_proto, sep.fib_index); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1224 | if (is_start) |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1225 | session_lookup_add_session_endpoint (sti, |
| 1226 | (session_endpoint_t *) & sep, |
| 1227 | s->session_index); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1228 | else |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1229 | session_lookup_del_session_endpoint (sti, |
| 1230 | (session_endpoint_t *) & sep); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1231 | } |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1232 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1233 | return 0; |
| 1234 | } |
| 1235 | |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1236 | static void |
| 1237 | application_start_stop_proxy_local_scope (application_t * app, |
| 1238 | u8 transport_proto, u8 is_start) |
| 1239 | { |
| 1240 | session_endpoint_t sep = SESSION_ENDPOINT_NULL; |
| 1241 | app_namespace_t *app_ns; |
| 1242 | app_ns = app_namespace_get (app->ns_index); |
| 1243 | sep.is_ip4 = 1; |
| 1244 | sep.transport_proto = transport_proto; |
| 1245 | sep.port = 0; |
| 1246 | |
| 1247 | if (is_start) |
| 1248 | { |
| 1249 | session_lookup_add_session_endpoint (app_ns->local_table_index, &sep, |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1250 | app->app_index); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1251 | sep.is_ip4 = 0; |
| 1252 | session_lookup_add_session_endpoint (app_ns->local_table_index, &sep, |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1253 | app->app_index); |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1254 | } |
| 1255 | else |
| 1256 | { |
| 1257 | session_lookup_del_session_endpoint (app_ns->local_table_index, &sep); |
| 1258 | sep.is_ip4 = 0; |
| 1259 | session_lookup_del_session_endpoint (app_ns->local_table_index, &sep); |
| 1260 | } |
| 1261 | } |
| 1262 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1263 | void |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1264 | application_start_stop_proxy (application_t * app, |
| 1265 | transport_proto_t transport_proto, u8 is_start) |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1266 | { |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1267 | if (application_has_local_scope (app)) |
Florin Coras | 19b1f6a | 2017-12-11 03:37:03 -0800 | [diff] [blame] | 1268 | application_start_stop_proxy_local_scope (app, transport_proto, is_start); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1269 | |
| 1270 | if (application_has_global_scope (app)) |
| 1271 | { |
| 1272 | application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP4, |
| 1273 | transport_proto, is_start); |
| 1274 | application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP6, |
| 1275 | transport_proto, is_start); |
| 1276 | } |
| 1277 | } |
| 1278 | |
| 1279 | void |
| 1280 | application_setup_proxy (application_t * app) |
| 1281 | { |
| 1282 | u16 transports = app->proxied_transports; |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1283 | transport_proto_t tp; |
| 1284 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1285 | ASSERT (application_is_proxy (app)); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1286 | |
| 1287 | /* *INDENT-OFF* */ |
| 1288 | transport_proto_foreach (tp, ({ |
| 1289 | if (transports & (1 << tp)) |
| 1290 | application_start_stop_proxy (app, tp, 1); |
| 1291 | })); |
| 1292 | /* *INDENT-ON* */ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1293 | } |
| 1294 | |
| 1295 | void |
| 1296 | application_remove_proxy (application_t * app) |
| 1297 | { |
| 1298 | u16 transports = app->proxied_transports; |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1299 | transport_proto_t tp; |
| 1300 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1301 | ASSERT (application_is_proxy (app)); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1302 | |
| 1303 | /* *INDENT-OFF* */ |
| 1304 | transport_proto_foreach (tp, ({ |
| 1305 | if (transports & (1 << tp)) |
| 1306 | application_start_stop_proxy (app, tp, 0); |
| 1307 | })); |
| 1308 | /* *INDENT-ON* */ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 1309 | } |
| 1310 | |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 1311 | segment_manager_props_t * |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 1312 | application_segment_manager_properties (application_t * app) |
| 1313 | { |
| 1314 | return &app->sm_properties; |
| 1315 | } |
| 1316 | |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 1317 | segment_manager_props_t * |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 1318 | application_get_segment_manager_properties (u32 app_index) |
| 1319 | { |
| 1320 | application_t *app = application_get (app_index); |
| 1321 | return &app->sm_properties; |
| 1322 | } |
| 1323 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1324 | clib_error_t * |
| 1325 | vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a) |
| 1326 | { |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1327 | /* Deprected, will be remove after 20.01 */ |
| 1328 | app_cert_key_pair_t *ckpair; |
| 1329 | ckpair = app_cert_key_pair_get_default (); |
| 1330 | ckpair->cert = vec_dup (a->cert); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1331 | return 0; |
| 1332 | } |
| 1333 | |
| 1334 | clib_error_t * |
| 1335 | vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a) |
| 1336 | { |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1337 | /* Deprected, will be remove after 20.01 */ |
| 1338 | app_cert_key_pair_t *ckpair; |
| 1339 | ckpair = app_cert_key_pair_get_default (); |
| 1340 | ckpair->key = vec_dup (a->key); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1341 | return 0; |
| 1342 | } |
| 1343 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1344 | static void |
| 1345 | application_format_listeners (application_t * app, int verbose) |
| 1346 | { |
| 1347 | vlib_main_t *vm = vlib_get_main (); |
| 1348 | app_worker_map_t *wrk_map; |
| 1349 | app_worker_t *app_wrk; |
| 1350 | u32 sm_index; |
| 1351 | u64 handle; |
| 1352 | |
| 1353 | if (!app) |
| 1354 | { |
| 1355 | vlib_cli_output (vm, "%U", format_app_worker_listener, 0 /* header */ , |
| 1356 | 0, 0, verbose); |
| 1357 | return; |
| 1358 | } |
| 1359 | |
| 1360 | /* *INDENT-OFF* */ |
| 1361 | pool_foreach (wrk_map, app->worker_maps, ({ |
| 1362 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 1363 | if (hash_elts (app_wrk->listeners_table) == 0) |
| 1364 | continue; |
| 1365 | hash_foreach (handle, sm_index, app_wrk->listeners_table, ({ |
| 1366 | vlib_cli_output (vm, "%U", format_app_worker_listener, app_wrk, |
| 1367 | handle, sm_index, verbose); |
| 1368 | })); |
| 1369 | })); |
| 1370 | /* *INDENT-ON* */ |
| 1371 | } |
| 1372 | |
| 1373 | static void |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1374 | application_format_connects (application_t * app, int verbose) |
| 1375 | { |
| 1376 | app_worker_map_t *wrk_map; |
| 1377 | app_worker_t *app_wrk; |
| 1378 | |
| 1379 | if (!app) |
| 1380 | { |
| 1381 | app_worker_format_connects (0, verbose); |
| 1382 | return; |
| 1383 | } |
| 1384 | |
| 1385 | /* *INDENT-OFF* */ |
| 1386 | pool_foreach (wrk_map, app->worker_maps, ({ |
| 1387 | app_wrk = app_worker_get (wrk_map->wrk_index); |
| 1388 | app_worker_format_connects (app_wrk, verbose); |
| 1389 | })); |
| 1390 | /* *INDENT-ON* */ |
| 1391 | } |
| 1392 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1393 | u8 * |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1394 | format_cert_key_pair (u8 * s, va_list * args) |
| 1395 | { |
| 1396 | app_cert_key_pair_t *ckpair = va_arg (*args, app_cert_key_pair_t *); |
| 1397 | int key_len = 0, cert_len = 0; |
| 1398 | cert_len = vec_len (ckpair->cert); |
| 1399 | key_len = vec_len (ckpair->key); |
| 1400 | if (ckpair->cert_key_index == 0) |
| 1401 | s = format (s, "DEFAULT (cert:%d, key:%d)", cert_len, key_len); |
| 1402 | else |
Nathan Skrzypczak | cfdb109 | 2019-12-02 16:44:42 +0100 | [diff] [blame] | 1403 | s = format (s, "%d (cert:%d, key:%d)", ckpair->cert_key_index, |
| 1404 | cert_len, key_len); |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1405 | return s; |
| 1406 | } |
| 1407 | |
| 1408 | u8 * |
Nathan Skrzypczak | de6caf4 | 2019-10-09 14:41:48 +0200 | [diff] [blame] | 1409 | format_crypto_engine (u8 * s, va_list * args) |
| 1410 | { |
| 1411 | u32 engine = va_arg (*args, u32); |
| 1412 | switch (engine) |
| 1413 | { |
| 1414 | case CRYPTO_ENGINE_NONE: |
| 1415 | return format (s, "none"); |
| 1416 | case CRYPTO_ENGINE_MBEDTLS: |
| 1417 | return format (s, "mbedtls"); |
| 1418 | case CRYPTO_ENGINE_OPENSSL: |
| 1419 | return format (s, "openssl"); |
| 1420 | case CRYPTO_ENGINE_PICOTLS: |
| 1421 | return format (s, "picotls"); |
| 1422 | case CRYPTO_ENGINE_VPP: |
| 1423 | return format (s, "vpp"); |
| 1424 | default: |
| 1425 | return format (s, "unknown engine"); |
| 1426 | } |
| 1427 | return s; |
| 1428 | } |
| 1429 | |
| 1430 | uword |
| 1431 | unformat_crypto_engine (unformat_input_t * input, va_list * args) |
| 1432 | { |
| 1433 | u8 *a = va_arg (*args, u8 *); |
| 1434 | if (unformat (input, "mbedtls")) |
| 1435 | *a = CRYPTO_ENGINE_MBEDTLS; |
| 1436 | else if (unformat (input, "openssl")) |
| 1437 | *a = CRYPTO_ENGINE_OPENSSL; |
| 1438 | else if (unformat (input, "picotls")) |
| 1439 | *a = CRYPTO_ENGINE_PICOTLS; |
| 1440 | else if (unformat (input, "vpp")) |
| 1441 | *a = CRYPTO_ENGINE_VPP; |
| 1442 | else |
| 1443 | return 0; |
| 1444 | return 1; |
| 1445 | } |
| 1446 | |
| 1447 | u8 * |
| 1448 | format_crypto_context (u8 * s, va_list * args) |
| 1449 | { |
| 1450 | crypto_context_t *crctx = va_arg (*args, crypto_context_t *); |
Nathan Skrzypczak | cfdb109 | 2019-12-02 16:44:42 +0100 | [diff] [blame] | 1451 | s = format (s, "[0x%x][sub%d,ckpair%x]", crctx->ctx_index, |
| 1452 | crctx->n_subscribers, crctx->ckpair_index); |
Nathan Skrzypczak | de6caf4 | 2019-10-09 14:41:48 +0200 | [diff] [blame] | 1453 | s = format (s, "[%U]", format_crypto_engine, crctx->crypto_engine); |
Nathan Skrzypczak | de6caf4 | 2019-10-09 14:41:48 +0200 | [diff] [blame] | 1454 | return s; |
| 1455 | } |
| 1456 | |
| 1457 | u8 * |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1458 | format_application (u8 * s, va_list * args) |
| 1459 | { |
| 1460 | application_t *app = va_arg (*args, application_t *); |
| 1461 | CLIB_UNUSED (int verbose) = va_arg (*args, int); |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 1462 | segment_manager_props_t *props; |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 1463 | const u8 *app_ns_name, *app_name; |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1464 | app_worker_map_t *wrk_map; |
| 1465 | app_worker_t *app_wrk; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1466 | |
| 1467 | if (app == 0) |
| 1468 | { |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1469 | if (!verbose) |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 1470 | s = format (s, "%-10s%-20s%-40s", "Index", "Name", "Namespace"); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1471 | return s; |
| 1472 | } |
| 1473 | |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 1474 | app_name = app_get_name (app); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1475 | app_ns_name = app_namespace_id_from_index (app->ns_index); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 1476 | props = application_segment_manager_properties (app); |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1477 | if (!verbose) |
| 1478 | { |
jiangxiaoming | dfb30d9 | 2020-08-31 17:38:11 +0800 | [diff] [blame] | 1479 | s = format (s, "%-10u%-20v%-40v", app->app_index, app_name, |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1480 | app_ns_name); |
| 1481 | return s; |
| 1482 | } |
| 1483 | |
Florin Coras | fa7512e | 2019-04-04 22:31:50 -0700 | [diff] [blame] | 1484 | s = format (s, "app-name %v app-index %u ns-index %u seg-size %U\n", |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1485 | app_name, app->app_index, app->ns_index, |
| 1486 | format_memory_size, props->add_segment_size); |
| 1487 | s = format (s, "rx-fifo-size %U tx-fifo-size %U workers:\n", |
| 1488 | format_memory_size, props->rx_fifo_size, |
| 1489 | format_memory_size, props->tx_fifo_size); |
| 1490 | |
| 1491 | /* *INDENT-OFF* */ |
| 1492 | pool_foreach (wrk_map, app->worker_maps, ({ |
| 1493 | app_wrk = app_worker_get (wrk_map->wrk_index); |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 1494 | s = format (s, "%U", format_app_worker, app_wrk); |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1495 | })); |
| 1496 | /* *INDENT-ON* */ |
| 1497 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1498 | return s; |
| 1499 | } |
| 1500 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1501 | void |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1502 | application_format_all_listeners (vlib_main_t * vm, int verbose) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1503 | { |
| 1504 | application_t *app; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1505 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1506 | if (!pool_elts (app_main.app_pool)) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1507 | { |
| 1508 | vlib_cli_output (vm, "No active server bindings"); |
| 1509 | return; |
| 1510 | } |
| 1511 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1512 | application_format_listeners (0, verbose); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1513 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1514 | /* *INDENT-OFF* */ |
| 1515 | pool_foreach (app, app_main.app_pool, ({ |
| 1516 | application_format_listeners (app, verbose); |
| 1517 | })); |
| 1518 | /* *INDENT-ON* */ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1519 | } |
| 1520 | |
| 1521 | void |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1522 | application_format_all_clients (vlib_main_t * vm, int verbose) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1523 | { |
| 1524 | application_t *app; |
| 1525 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1526 | if (!pool_elts (app_main.app_pool)) |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1527 | { |
| 1528 | vlib_cli_output (vm, "No active apps"); |
| 1529 | return; |
| 1530 | } |
| 1531 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1532 | application_format_connects (0, verbose); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1533 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1534 | /* *INDENT-OFF* */ |
| 1535 | pool_foreach (app, app_main.app_pool, ({ |
| 1536 | application_format_connects (app, verbose); |
| 1537 | })); |
| 1538 | /* *INDENT-ON* */ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 1539 | } |
| 1540 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1541 | static clib_error_t * |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1542 | show_certificate_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 1543 | vlib_cli_command_t * cmd) |
| 1544 | { |
| 1545 | app_cert_key_pair_t *ckpair; |
| 1546 | session_cli_return_if_not_enabled (); |
| 1547 | |
| 1548 | /* *INDENT-OFF* */ |
| 1549 | pool_foreach (ckpair, app_main.cert_key_pair_store, ({ |
| 1550 | vlib_cli_output (vm, "%U", format_cert_key_pair, ckpair); |
| 1551 | })); |
| 1552 | /* *INDENT-ON* */ |
| 1553 | return 0; |
| 1554 | } |
| 1555 | |
Nathan Skrzypczak | cfdb109 | 2019-12-02 16:44:42 +0100 | [diff] [blame] | 1556 | static inline void |
| 1557 | appliction_format_app_mq (vlib_main_t * vm, application_t * app) |
| 1558 | { |
| 1559 | app_worker_map_t *map; |
| 1560 | app_worker_t *wrk; |
| 1561 | /* *INDENT-OFF* */ |
| 1562 | pool_foreach (map, app->worker_maps, ({ |
| 1563 | wrk = app_worker_get (map->wrk_index); |
| 1564 | vlib_cli_output (vm, "[A%d][%d]%U", app->app_index, |
| 1565 | map->wrk_index, format_svm_msg_q, |
| 1566 | wrk->event_queue); |
| 1567 | })); |
| 1568 | /* *INDENT-ON* */ |
| 1569 | } |
| 1570 | |
| 1571 | static clib_error_t * |
| 1572 | appliction_format_all_app_mq (vlib_main_t * vm) |
| 1573 | { |
| 1574 | application_t *app; |
| 1575 | int i, n_threads; |
| 1576 | |
| 1577 | n_threads = vec_len (vlib_mains); |
| 1578 | |
| 1579 | for (i = 0; i < n_threads; i++) |
| 1580 | { |
| 1581 | vlib_cli_output (vm, "[Ctrl%d]%U", i, format_svm_msg_q, |
| 1582 | session_main_get_vpp_event_queue (i)); |
| 1583 | } |
| 1584 | |
| 1585 | /* *INDENT-OFF* */ |
| 1586 | pool_foreach (app, app_main.app_pool, ({ |
| 1587 | appliction_format_app_mq (vm, app); |
| 1588 | })); |
| 1589 | /* *INDENT-ON* */ |
| 1590 | return 0; |
| 1591 | } |
| 1592 | |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1593 | static clib_error_t * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1594 | show_app_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 1595 | vlib_cli_command_t * cmd) |
| 1596 | { |
Nathan Skrzypczak | cfdb109 | 2019-12-02 16:44:42 +0100 | [diff] [blame] | 1597 | int do_server = 0, do_client = 0, do_mq = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1598 | application_t *app; |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1599 | u32 app_index = ~0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1600 | int verbose = 0; |
| 1601 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1602 | session_cli_return_if_not_enabled (); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1603 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1604 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 1605 | { |
| 1606 | if (unformat (input, "server")) |
| 1607 | do_server = 1; |
| 1608 | else if (unformat (input, "client")) |
| 1609 | do_client = 1; |
Nathan Skrzypczak | cfdb109 | 2019-12-02 16:44:42 +0100 | [diff] [blame] | 1610 | else if (unformat (input, "mq")) |
| 1611 | do_mq = 1; |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1612 | else if (unformat (input, "%u", &app_index)) |
| 1613 | ; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1614 | else if (unformat (input, "verbose")) |
| 1615 | verbose = 1; |
| 1616 | else |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1617 | return clib_error_return (0, "unknown input `%U'", |
| 1618 | format_unformat_error, input); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1619 | } |
| 1620 | |
Nathan Skrzypczak | cfdb109 | 2019-12-02 16:44:42 +0100 | [diff] [blame] | 1621 | if (do_mq && app_index != ~0) |
| 1622 | { |
| 1623 | app = application_get_if_valid (app_index); |
| 1624 | if (!app) |
| 1625 | return clib_error_return (0, "No app with index %u", app_index); |
| 1626 | |
| 1627 | appliction_format_app_mq (vm, app); |
| 1628 | return 0; |
| 1629 | } |
| 1630 | |
| 1631 | if (do_mq) |
| 1632 | { |
| 1633 | appliction_format_all_app_mq (vm); |
| 1634 | return 0; |
| 1635 | } |
| 1636 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1637 | if (do_server) |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1638 | { |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1639 | application_format_all_listeners (vm, verbose); |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1640 | return 0; |
| 1641 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1642 | |
| 1643 | if (do_client) |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1644 | { |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 1645 | application_format_all_clients (vm, verbose); |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1646 | return 0; |
| 1647 | } |
| 1648 | |
| 1649 | if (app_index != ~0) |
| 1650 | { |
Florin Coras | 47c40e2 | 2018-11-26 17:01:36 -0800 | [diff] [blame] | 1651 | app = application_get_if_valid (app_index); |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1652 | if (!app) |
| 1653 | return clib_error_return (0, "No app with index %u", app_index); |
| 1654 | |
| 1655 | vlib_cli_output (vm, "%U", format_application, app, /* verbose */ 1); |
| 1656 | return 0; |
| 1657 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1658 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1659 | /* Print app related info */ |
| 1660 | if (!do_server && !do_client) |
| 1661 | { |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1662 | vlib_cli_output (vm, "%U", format_application, 0, 0); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1663 | /* *INDENT-OFF* */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1664 | pool_foreach (app, app_main.app_pool, ({ |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 1665 | vlib_cli_output (vm, "%U", format_application, app, 0); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1666 | })); |
| 1667 | /* *INDENT-ON* */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1668 | } |
| 1669 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1670 | return 0; |
| 1671 | } |
| 1672 | |
Nathan Skrzypczak | de6caf4 | 2019-10-09 14:41:48 +0200 | [diff] [blame] | 1673 | /* Certificate store */ |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1674 | |
| 1675 | static app_cert_key_pair_t * |
| 1676 | app_cert_key_pair_alloc () |
| 1677 | { |
| 1678 | app_cert_key_pair_t *ckpair; |
| 1679 | pool_get (app_main.cert_key_pair_store, ckpair); |
| 1680 | clib_memset (ckpair, 0, sizeof (*ckpair)); |
| 1681 | ckpair->cert_key_index = ckpair - app_main.cert_key_pair_store; |
| 1682 | return ckpair; |
| 1683 | } |
| 1684 | |
| 1685 | app_cert_key_pair_t * |
| 1686 | app_cert_key_pair_get_if_valid (u32 index) |
| 1687 | { |
| 1688 | if (pool_is_free_index (app_main.cert_key_pair_store, index)) |
| 1689 | return 0; |
| 1690 | return app_cert_key_pair_get (index); |
| 1691 | } |
| 1692 | |
| 1693 | app_cert_key_pair_t * |
| 1694 | app_cert_key_pair_get (u32 index) |
| 1695 | { |
| 1696 | return pool_elt_at_index (app_main.cert_key_pair_store, index); |
| 1697 | } |
| 1698 | |
| 1699 | app_cert_key_pair_t * |
| 1700 | app_cert_key_pair_get_default () |
| 1701 | { |
| 1702 | /* To maintain legacy bapi */ |
| 1703 | return app_cert_key_pair_get (0); |
| 1704 | } |
| 1705 | |
| 1706 | int |
| 1707 | vnet_app_add_cert_key_pair (vnet_app_add_cert_key_pair_args_t * a) |
| 1708 | { |
| 1709 | app_cert_key_pair_t *ckpair = app_cert_key_pair_alloc (); |
| 1710 | ckpair->cert = vec_dup (a->cert); |
| 1711 | ckpair->key = vec_dup (a->key); |
| 1712 | a->index = ckpair->cert_key_index; |
| 1713 | return 0; |
| 1714 | } |
| 1715 | |
| 1716 | int |
Nathan Skrzypczak | 7fbdb6a | 2019-10-09 16:23:26 +0200 | [diff] [blame] | 1717 | vnet_app_add_cert_key_interest (u32 index, u32 app_index) |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1718 | { |
| 1719 | app_cert_key_pair_t *ckpair; |
| 1720 | if (!(ckpair = app_cert_key_pair_get_if_valid (index))) |
| 1721 | return -1; |
Nathan Skrzypczak | de6caf4 | 2019-10-09 14:41:48 +0200 | [diff] [blame] | 1722 | if (vec_search (ckpair->app_interests, app_index) != ~0) |
| 1723 | vec_add1 (ckpair->app_interests, app_index); |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1724 | return 0; |
| 1725 | } |
| 1726 | |
| 1727 | int |
| 1728 | vnet_app_del_cert_key_pair (u32 index) |
| 1729 | { |
| 1730 | app_cert_key_pair_t *ckpair; |
| 1731 | application_t *app; |
| 1732 | u32 *app_index; |
| 1733 | |
| 1734 | if (!(ckpair = app_cert_key_pair_get_if_valid (index))) |
| 1735 | return (VNET_API_ERROR_INVALID_VALUE); |
| 1736 | |
| 1737 | vec_foreach (app_index, ckpair->app_interests) |
| 1738 | { |
| 1739 | if ((app = application_get_if_valid (*app_index)) |
| 1740 | && app->cb_fns.app_cert_key_pair_delete_callback) |
| 1741 | app->cb_fns.app_cert_key_pair_delete_callback (ckpair); |
| 1742 | } |
| 1743 | |
| 1744 | vec_free (ckpair->cert); |
| 1745 | vec_free (ckpair->key); |
| 1746 | pool_put (app_main.cert_key_pair_store, ckpair); |
| 1747 | return 0; |
| 1748 | } |
| 1749 | |
| 1750 | clib_error_t * |
Nathan Skrzypczak | de6caf4 | 2019-10-09 14:41:48 +0200 | [diff] [blame] | 1751 | application_init (vlib_main_t * vm) |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1752 | { |
| 1753 | /* Add a certificate with index 0 to support legacy apis */ |
| 1754 | (void) app_cert_key_pair_alloc (); |
Florin Coras | 79ba25d | 2019-10-20 19:32:47 -0700 | [diff] [blame] | 1755 | app_main.last_crypto_engine = CRYPTO_ENGINE_LAST; |
jiangxiaoming | b495e9f | 2020-07-13 16:21:33 +0800 | [diff] [blame] | 1756 | app_main.app_by_name = hash_create_vec (0, sizeof (u8), sizeof (uword)); |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1757 | return 0; |
| 1758 | } |
| 1759 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1760 | /* *INDENT-OFF* */ |
Nathan Skrzypczak | de6caf4 | 2019-10-09 14:41:48 +0200 | [diff] [blame] | 1761 | VLIB_INIT_FUNCTION (application_init); |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1762 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1763 | VLIB_CLI_COMMAND (show_app_command, static) = |
| 1764 | { |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1765 | .path = "show app", |
Nathan Skrzypczak | cfdb109 | 2019-12-02 16:44:42 +0100 | [diff] [blame] | 1766 | .short_help = "show app [app_id] [server|client] [mq] [verbose]", |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1767 | .function = show_app_command_fn, |
| 1768 | }; |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1769 | |
| 1770 | VLIB_CLI_COMMAND (show_certificate_command, static) = |
| 1771 | { |
| 1772 | .path = "show app certificate", |
| 1773 | .short_help = "list app certs and keys present in store", |
| 1774 | .function = show_certificate_command_fn, |
| 1775 | }; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1776 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1777 | |
Florin Coras | 79ba25d | 2019-10-20 19:32:47 -0700 | [diff] [blame] | 1778 | crypto_engine_type_t |
| 1779 | app_crypto_engine_type_add (void) |
| 1780 | { |
| 1781 | return (++app_main.last_crypto_engine); |
| 1782 | } |
| 1783 | |
| 1784 | u8 |
| 1785 | app_crypto_engine_n_types (void) |
| 1786 | { |
| 1787 | return (app_main.last_crypto_engine + 1); |
| 1788 | } |
| 1789 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1790 | /* |
| 1791 | * fd.io coding-style-patch-verification: ON |
| 1792 | * |
| 1793 | * Local Variables: |
| 1794 | * eval: (c-set-style "gnu") |
| 1795 | * End: |
| 1796 | */ |