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