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