blob: 7f88c7a5ff0eb5c4b4eea93c5e0b61b7605d83dc [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * 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 Coras6cf30ad2017-04-04 23:08:23 -070017#include <vnet/session/application_interface.h>
Florin Corascea194d2017-10-02 00:18:51 -070018#include <vnet/session/application_namespace.h>
Florin Corasba7d8f52019-02-22 13:11:38 -080019#include <vnet/session/application_local.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050020#include <vnet/session/session.h>
21
Florin Coras15531972018-08-12 23:50:53 -070022static app_main_t app_main;
Dave Barach68b0fb02017-02-28 15:15:56 -050023
Florin Corasc1a42652019-02-08 18:27:29 -080024#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 Corasab2f6db2018-08-31 14:31:41 -070031static app_listener_t *
32app_listener_alloc (application_t * app)
33{
34 app_listener_t *app_listener;
35 pool_get (app->listeners, app_listener);
Dave Barachb7b92992018-10-17 10:38:51 -040036 clib_memset (app_listener, 0, sizeof (*app_listener));
Florin Corasab2f6db2018-08-31 14:31:41 -070037 app_listener->al_index = app_listener - app->listeners;
Florin Corasc9940fc2019-02-05 20:55:11 -080038 app_listener->app_index = app->app_index;
39 app_listener->session_index = SESSION_INVALID_INDEX;
40 app_listener->local_index = SESSION_INVALID_INDEX;
Florin Coras87d66332019-06-11 12:31:31 -070041 app_listener->ls_handle = SESSION_INVALID_HANDLE;
Florin Corasab2f6db2018-08-31 14:31:41 -070042 return app_listener;
43}
44
Florin Corasc9940fc2019-02-05 20:55:11 -080045app_listener_t *
Florin Corasab2f6db2018-08-31 14:31:41 -070046app_listener_get (application_t * app, u32 app_listener_index)
47{
48 return pool_elt_at_index (app->listeners, app_listener_index);
49}
50
51static void
52app_listener_free (application_t * app, app_listener_t * app_listener)
53{
54 clib_bitmap_free (app_listener->workers);
Florin Corasab2f6db2018-08-31 14:31:41 -070055 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -040056 clib_memset (app_listener, 0xfa, sizeof (*app_listener));
BenoƮt Ganned4aeb842019-07-18 18:38:42 +020057 pool_put (app->listeners, app_listener);
Florin Corasab2f6db2018-08-31 14:31:41 -070058}
59
Florin Corasc9940fc2019-02-05 20:55:11 -080060session_handle_t
61app_listener_handle (app_listener_t * al)
62{
Florin Coras87d66332019-06-11 12:31:31 -070063 return al->ls_handle;
Florin Corasc9940fc2019-02-05 20:55:11 -080064}
65
66app_listener_t *
67app_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 Coras87d66332019-06-11 12:31:31 -070077session_handle_t
78app_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 Corasc9940fc2019-02-05 20:55:11 -080087app_listener_t *
88app_listener_get_w_handle (session_handle_t handle)
89{
Florin Coras87d66332019-06-11 12:31:31 -070090 session_t *ls;
91 ls = session_get_from_handle_if_valid (handle);
92 if (!ls)
Florin Corasc9940fc2019-02-05 20:55:11 -080093 return 0;
Florin Coras87d66332019-06-11 12:31:31 -070094 return app_listener_get_w_session (ls);
Florin Corasc9940fc2019-02-05 20:55:11 -080095}
96
97app_listener_t *
98app_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 Corasc9940fc2019-02-05 20:55:11 -0800103 session_t *ls;
liuyacan694046c2021-04-30 08:57:37 +0000104 void *iface_ip;
105 ip46_address_t original_ip;
Florin Corasc9940fc2019-02-05 20:55:11 -0800106
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 Corasd4295e62019-02-22 13:11:38 -0800114 ls = listen_session_get_from_handle (handle);
115 return app_listener_get_w_session (ls);
Florin Corasc9940fc2019-02-05 20:55:11 -0800116 }
117 }
118
119 fib_proto = session_endpoint_fib_proto (sep);
Florin Coras95cd8642019-12-30 21:53:19 -0800120 table_index = session_lookup_get_index_for_fib (fib_proto, sep->fib_index);
Florin Corasc9940fc2019-02-05 20:55:11 -0800121 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
liuyacan694046c2021-04-30 08:57:37 +0000128 /*
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 Corasc9940fc2019-02-05 20:55:11 -0800152 return 0;
153}
154
155int
156app_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 Corasd4295e62019-02-22 13:11:38 -0800161 transport_connection_t *tc;
Florin Coras95cd8642019-12-30 21:53:19 -0800162 u32 al_index, table_index;
Florin Corasc9940fc2019-02-05 20:55:11 -0800163 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 Corasa27a46e2019-02-18 13:02:28 -0800169 al_index = app_listener->al_index;
Florin Corasc9940fc2019-02-05 20:55:11 -0800170 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 Corasd4295e62019-02-22 13:11:38 -0800179 session_type_t local_st;
Florin Corasc9940fc2019-02-05 20:55:11 -0800180
Florin Corasd4295e62019-02-22 13:11:38 -0800181 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 Coras87d66332019-06-11 12:31:31 -0700198 app_listener->ls_handle = lh;
Florin Corasd4295e62019-02-22 13:11:38 -0800199 ls->al_index = al_index;
200
Florin Corasc9940fc2019-02-05 20:55:11 -0800201 table_index = application_local_session_table (app);
Florin Corasc9940fc2019-02-05 20:55:11 -0800202 session_lookup_add_session_endpoint (table_index,
203 (session_endpoint_t *) sep, lh);
Florin Corasc9940fc2019-02-05 20:55:11 -0800204 }
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 Corasba7d8f52019-02-22 13:11:38 -0800214 ls = listen_session_alloc (0, st);
Florin Corasc9940fc2019-02-05 20:55:11 -0800215 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 Corasd4295e62019-02-22 13:11:38 -0800220 lh = listen_session_get_handle (ls);
Florin Corasc9940fc2019-02-05 20:55:11 -0800221
222 if ((rv = session_listen (ls, sep)))
223 {
Florin Corasd4295e62019-02-22 13:11:38 -0800224 ls = listen_session_get_from_handle (lh);
Florin Corasc9940fc2019-02-05 20:55:11 -0800225 session_free (ls);
226 return rv;
227 }
Florin Corasd4295e62019-02-22 13:11:38 -0800228 ls = listen_session_get_from_handle (lh);
Florin Corasa27a46e2019-02-18 13:02:28 -0800229 app_listener = app_listener_get (app, al_index);
Florin Corasc9940fc2019-02-05 20:55:11 -0800230 app_listener->session_index = ls->session_index;
Florin Coras87d66332019-06-11 12:31:31 -0700231 app_listener->ls_handle = lh;
Florin Corasa27a46e2019-02-18 13:02:28 -0800232 ls->al_index = al_index;
Florin Corasd4295e62019-02-22 13:11:38 -0800233
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 Skrzypczak2eed1a12019-07-04 14:26:21 +0200240 if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
Florin Coras95cd8642019-12-30 21:53:19 -0800241 {
242 fib_protocol_t fib_proto;
243 fib_proto = session_endpoint_fib_proto ((session_endpoint_t *) sep);
Florin Corasa4d09562021-07-08 08:25:09 -0700244 /* 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 Coras95cd8642019-12-30 21:53:19 -0800247 session_lookup_add_session_endpoint (table_index,
248 (session_endpoint_t *) sep,
249 lh);
250 }
Florin Corasc9940fc2019-02-05 20:55:11 -0800251 }
252
Florin Coras2b81e3c2019-02-27 07:55:46 -0800253 if (!ls)
Florin Corasc9940fc2019-02-05 20:55:11 -0800254 {
255 app_listener_free (app, app_listener);
256 return -1;
257 }
258
259 *listener = app_listener;
260 return 0;
261}
262
263void
264app_listener_cleanup (app_listener_t * al)
265{
266 application_t *app = application_get (al->app_index);
Florin Corasd4295e62019-02-22 13:11:38 -0800267 session_t *ls;
Florin Corasc9940fc2019-02-05 20:55:11 -0800268
269 if (al->session_index != SESSION_INVALID_INDEX)
270 {
Florin Corasd4295e62019-02-22 13:11:38 -0800271 ls = session_get (al->session_index, 0);
Florin Corasc9940fc2019-02-05 20:55:11 -0800272 session_stop_listen (ls);
Florin Corasba7d8f52019-02-22 13:11:38 -0800273 listen_session_free (ls);
Florin Corasc9940fc2019-02-05 20:55:11 -0800274 }
275 if (al->local_index != SESSION_INVALID_INDEX)
276 {
277 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
Florin Corasc9940fc2019-02-05 20:55:11 -0800278 u32 table_index;
279
280 table_index = application_local_session_table (app);
Florin Corasd4295e62019-02-22 13:11:38 -0800281 ls = listen_session_get (al->local_index);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800282 ct_session_endpoint (ls, &sep);
Florin Corasc9940fc2019-02-05 20:55:11 -0800283 session_lookup_del_session_endpoint (table_index, &sep);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800284 session_stop_listen (ls);
Florin Corasd4295e62019-02-22 13:11:38 -0800285 listen_session_free (ls);
Florin Corasc9940fc2019-02-05 20:55:11 -0800286 }
287 app_listener_free (app, al);
288}
289
Florin Coras11e2cf52019-03-06 12:04:24 -0800290static app_worker_t *
291app_listener_select_worker (application_t * app, app_listener_t * al)
Florin Corasc9940fc2019-02-05 20:55:11 -0800292{
Florin Corasc9940fc2019-02-05 20:55:11 -0800293 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
305session_t *
306app_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 Corasab2f6db2018-08-31 14:31:41 -0700312}
313
Florin Corasd4295e62019-02-22 13:11:38 -0800314session_t *
315app_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 Coras15531972018-08-12 23:50:53 -0700322static app_worker_map_t *
323app_worker_map_alloc (application_t * app)
324{
325 app_worker_map_t *map;
326 pool_get (app->worker_maps, map);
Dave Barachb7b92992018-10-17 10:38:51 -0400327 clib_memset (map, 0, sizeof (*map));
Florin Coras15531972018-08-12 23:50:53 -0700328 return map;
329}
Dave Barach68b0fb02017-02-28 15:15:56 -0500330
Florin Coras15531972018-08-12 23:50:53 -0700331static u32
332app_worker_map_index (application_t * app, app_worker_map_t * map)
333{
334 return (map - app->worker_maps);
335}
336
337static void
338app_worker_map_free (application_t * app, app_worker_map_t * map)
339{
340 pool_put (app->worker_maps, map);
341}
342
343static app_worker_map_t *
344app_worker_map_get (application_t * app, u32 map_index)
345{
Florin Coras01f3f892018-12-02 12:45:53 -0800346 if (pool_is_free_index (app->worker_maps, map_index))
347 return 0;
Florin Coras15531972018-08-12 23:50:53 -0700348 return pool_elt_at_index (app->worker_maps, map_index);
349}
Florin Coras0bee9ce2018-03-22 21:24:31 -0700350
Florin Coras053a0e42018-11-13 15:52:38 -0800351static const u8 *
Florin Coras0bee9ce2018-03-22 21:24:31 -0700352app_get_name (application_t * app)
353{
Florin Coras0bee9ce2018-03-22 21:24:31 -0700354 return app->name;
355}
356
Florin Corascea194d2017-10-02 00:18:51 -0700357u32
358application_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
372u32
373application_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 Corascea194d2017-10-02 00:18:51 -0700382/**
Florin Coras053a0e42018-11-13 15:52:38 -0800383 * Returns app name for app-index
Florin Corascea194d2017-10-02 00:18:51 -0700384 */
Florin Coras053a0e42018-11-13 15:52:38 -0800385const u8 *
Florin Corascea194d2017-10-02 00:18:51 -0700386application_name_from_index (u32 app_index)
387{
388 application_t *app = application_get (app_index);
389 if (!app)
390 return 0;
Florin Coras053a0e42018-11-13 15:52:38 -0800391 return app_get_name (app);
392}
393
394static void
395application_api_table_add (u32 app_index, u32 api_client_index)
396{
Florin Corasc1f5a432018-11-20 11:31:26 -0800397 if (api_client_index != APP_INVALID_INDEX)
398 hash_set (app_main.app_by_api_client_index, api_client_index, app_index);
Florin Coras053a0e42018-11-13 15:52:38 -0800399}
400
401static void
402application_api_table_del (u32 api_client_index)
403{
404 hash_unset (app_main.app_by_api_client_index, api_client_index);
Florin Corascea194d2017-10-02 00:18:51 -0700405}
406
Dave Barach68b0fb02017-02-28 15:15:56 -0500407static void
Florin Corasc1f5a432018-11-20 11:31:26 -0800408application_name_table_add (application_t * app)
Dave Barach68b0fb02017-02-28 15:15:56 -0500409{
Florin Corasc1f5a432018-11-20 11:31:26 -0800410 hash_set_mem (app_main.app_by_name, app->name, app->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500411}
412
413static void
Florin Corasc1f5a432018-11-20 11:31:26 -0800414application_name_table_del (application_t * app)
Dave Barach68b0fb02017-02-28 15:15:56 -0500415{
Florin Corasc1f5a432018-11-20 11:31:26 -0800416 hash_unset_mem (app_main.app_by_name, app->name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500417}
418
419application_t *
420application_lookup (u32 api_client_index)
421{
422 uword *p;
Florin Coras15531972018-08-12 23:50:53 -0700423 p = hash_get (app_main.app_by_api_client_index, api_client_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500424 if (p)
Florin Coras053a0e42018-11-13 15:52:38 -0800425 return application_get_if_valid (p[0]);
Dave Barach68b0fb02017-02-28 15:15:56 -0500426
427 return 0;
428}
429
Florin Coras6cf30ad2017-04-04 23:08:23 -0700430application_t *
Florin Coras0bee9ce2018-03-22 21:24:31 -0700431application_lookup_name (const u8 * name)
432{
433 uword *p;
Florin Coras15531972018-08-12 23:50:53 -0700434 p = hash_get_mem (app_main.app_by_name, name);
Florin Coras0bee9ce2018-03-22 21:24:31 -0700435 if (p)
436 return application_get (p[0]);
437
438 return 0;
439}
440
Florin Coras41d5f542021-01-15 13:49:33 -0800441void
442appsl_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
464void
465appsl_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
482vlib_node_registration_t appsl_rx_mqs_input_node;
483
484VLIB_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 Coras7da88292021-03-18 15:04:34 -0700526 if (n_msgs && wrk->state == SESSION_WRK_INTERRUPT)
527 vlib_node_set_interrupt_pending (vm, session_queue_node.index);
528
Florin Coras41d5f542021-01-15 13:49:33 -0800529 return n_msgs;
530}
531
532VLIB_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
538static clib_error_t *
539app_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
566static clib_error_t *
567app_rx_mq_fd_write_ready (clib_file_t *cf)
568{
569 clib_warning ("should not be called");
570 return 0;
571}
572
573static void
574app_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
597static void
598app_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 Coras87d81ae2021-03-31 21:05:24 -0700606 session_wrk_handle_mq (session_main_get_worker (thread_index), mqe->mq);
607
Florin Coras41d5f542021-01-15 13:49:33 -0800608 if (mqe->flags & APP_RX_MQ_F_PENDING)
Florin Coras87d81ae2021-03-31 21:05:24 -0700609 appsl_pending_rx_mqs_del (aw, mqe);
Florin Coras41d5f542021-01-15 13:49:33 -0800610
611 clib_file_del_by_index (&file_main, mqe->file_index);
612}
613
614svm_msg_q_t *
615application_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
623static int
624app_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 Corasa54b62d2021-04-21 09:05:56 -0700644 eqs->ssvm.ssvm_size = svm_msg_q_size_to_alloc (cfg) * n_mqs + (1 << 20);
Xiaoming Jiang3d3dc292021-10-13 03:11:40 +0000645 eqs->ssvm.name = format (0, "%v-rx-mqs-seg%c", app->name, 0);
Florin Coras41d5f542021-01-15 13:49:33 -0800646
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
676u8
677application_use_private_rx_mqs (void)
678{
679 return session_main.use_private_rx_mqs;
680}
681
682fifo_segment_t *
683application_get_rx_mqs_segment (application_t *app)
684{
685 if (application_use_private_rx_mqs ())
686 return &app->rx_mqs_segment;
Florin Coras8afe1b82021-11-17 23:38:54 -0800687 return session_main_get_wrk_mqs_segment ();
Florin Coras41d5f542021-01-15 13:49:33 -0800688}
689
690void
691application_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 Corasc1a42652019-02-08 18:27:29 -0800699static application_t *
Florin Coras15531972018-08-12 23:50:53 -0700700application_alloc (void)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700701{
702 application_t *app;
Florin Coras15531972018-08-12 23:50:53 -0700703 pool_get (app_main.app_pool, app);
Dave Barachb7b92992018-10-17 10:38:51 -0400704 clib_memset (app, 0, sizeof (*app));
Florin Coras15531972018-08-12 23:50:53 -0700705 app->app_index = app - app_main.app_pool;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700706 return app;
707}
708
Florin Coras15531972018-08-12 23:50:53 -0700709application_t *
710application_get (u32 app_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500711{
Florin Coras15531972018-08-12 23:50:53 -0700712 if (app_index == APP_INVALID_INDEX)
713 return 0;
714 return pool_elt_at_index (app_main.app_pool, app_index);
715}
Dave Barach68b0fb02017-02-28 15:15:56 -0500716
Florin Coras15531972018-08-12 23:50:53 -0700717application_t *
718application_get_if_valid (u32 app_index)
719{
720 if (pool_is_free_index (app_main.app_pool, app_index))
721 return 0;
Florin Corasa5464812017-04-19 13:00:05 -0700722
Florin Coras15531972018-08-12 23:50:53 -0700723 return pool_elt_at_index (app_main.app_pool, app_index);
724}
Florin Coras7999e832017-10-31 01:51:04 -0700725
Florin Corasd79b41e2017-03-04 05:37:52 -0800726static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700727application_verify_cb_fns (session_cb_vft_t * cb_fns)
Florin Corasd79b41e2017-03-04 05:37:52 -0800728{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700729 if (cb_fns->session_accept_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800730 clib_warning ("No accept callback function provided");
Florin Coras6cf30ad2017-04-04 23:08:23 -0700731 if (cb_fns->session_connected_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800732 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 Corasb384b542018-01-15 01:08:33 -0800739/**
740 * Check app config for given segment type
741 *
742 * Returns 1 on success and 0 otherwise
743 */
744static u8
745application_verify_cfg (ssvm_segment_type_t st)
746{
747 u8 is_valid;
748 if (st == SSVM_SEGMENT_MEMFD)
749 {
Florin Coras8afe1b82021-11-17 23:38:54 -0800750 is_valid = (session_main_get_wrk_mqs_segment () != 0);
Florin Corasb384b542018-01-15 01:08:33 -0800751 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 Coras8afe1b82021-11-17 23:38:54 -0800757 is_valid = (session_main_get_wrk_mqs_segment () == 0);
Florin Corasb384b542018-01-15 01:08:33 -0800758 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 Corasc1a42652019-02-08 18:27:29 -0800766static int
Florin Coras15531972018-08-12 23:50:53 -0700767application_alloc_and_init (app_init_args_t * a)
Dave Barach68b0fb02017-02-28 15:15:56 -0500768{
Florin Corasa332c462018-01-31 06:52:17 -0800769 ssvm_segment_type_t seg_type = SSVM_SEGMENT_MEMFD;
Florin Coras88001c62019-04-24 14:44:46 -0700770 segment_manager_props_t *props;
Florin Coras15531972018-08-12 23:50:53 -0700771 application_t *app;
Florin Corasbbc8fae2021-07-19 15:23:51 -0700772 u64 *opts;
Dave Barach68b0fb02017-02-28 15:15:56 -0500773
Florin Coras15531972018-08-12 23:50:53 -0700774 app = application_alloc ();
Florin Corasbbc8fae2021-07-19 15:23:51 -0700775 opts = a->options;
Florin Corasb384b542018-01-15 01:08:33 -0800776 /*
777 * Make sure we support the requested configuration
778 */
Florin Corasbbc8fae2021-07-19 15:23:51 -0700779 if ((opts[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_IS_BUILTIN) &&
780 !(opts[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_MEMFD_FOR_BUILTIN))
Florin Coras6c10ab22020-11-08 16:50:39 -0800781 seg_type = SSVM_SEGMENT_PRIVATE;
Florin Corasb384b542018-01-15 01:08:33 -0800782
Florin Corasbbc8fae2021-07-19 15:23:51 -0700783 if ((opts[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD) &&
784 seg_type != SSVM_SEGMENT_MEMFD)
Florin Corasd8402ae2019-03-03 16:46:52 -0800785 {
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 Corasa332c462018-01-31 06:52:17 -0800791 if (!application_verify_cfg (seg_type))
Florin Corasb384b542018-01-15 01:08:33 -0800792 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
Dave Barach68b0fb02017-02-28 15:15:56 -0500793
Florin Corasbbc8fae2021-07-19 15:23:51 -0700794 if (opts[APP_OPTIONS_PREALLOC_FIFO_PAIRS] &&
795 opts[APP_OPTIONS_PREALLOC_FIFO_HDRS])
Florin Coras9845c202020-04-28 01:54:22 +0000796 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
797
Florin Coras15531972018-08-12 23:50:53 -0700798 /* Check that the obvious things are properly set up */
799 application_verify_cb_fns (a->session_cb_vft);
800
Florin Corasbbc8fae2021-07-19 15:23:51 -0700801 app->flags = opts[APP_OPTIONS_FLAGS];
Florin Coras15531972018-08-12 23:50:53 -0700802 app->cb_fns = *a->session_cb_vft;
Florin Corasbbc8fae2021-07-19 15:23:51 -0700803 app->ns_index = opts[APP_OPTIONS_NAMESPACE];
804 app->proxied_transports = opts[APP_OPTIONS_PROXY_TRANSPORT];
Florin Coras15531972018-08-12 23:50:53 -0700805 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 Corasa332c462018-01-31 06:52:17 -0800812 props = application_segment_manager_properties (app);
Florin Coras88001c62019-04-24 14:44:46 -0700813 segment_manager_props_init (props);
Florin Corasbbc8fae2021-07-19 15:23:51 -0700814 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 Corasb384b542018-01-15 01:08:33 -0800818 {
Florin Corasbbc8fae2021-07-19 15:23:51 -0700819 props->add_segment_size = opts[APP_OPTIONS_ADD_SEGMENT_SIZE];
Florin Corasb384b542018-01-15 01:08:33 -0800820 props->add_segment = 1;
821 }
Florin Corasbbc8fae2021-07-19 15:23:51 -0700822 if (opts[APP_OPTIONS_RX_FIFO_SIZE])
823 props->rx_fifo_size = opts[APP_OPTIONS_RX_FIFO_SIZE];
824 if (opts[APP_OPTIONS_TX_FIFO_SIZE])
825 props->tx_fifo_size = opts[APP_OPTIONS_TX_FIFO_SIZE];
826 if (opts[APP_OPTIONS_EVT_QUEUE_SIZE])
827 props->evt_q_size = opts[APP_OPTIONS_EVT_QUEUE_SIZE];
828 if (opts[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
Florin Coras99368312018-08-02 10:45:44 -0700829 props->use_mq_eventfd = 1;
Florin Corasbbc8fae2021-07-19 15:23:51 -0700830 if (opts[APP_OPTIONS_TLS_ENGINE])
831 app->tls_engine = opts[APP_OPTIONS_TLS_ENGINE];
832 if (opts[APP_OPTIONS_MAX_FIFO_SIZE])
833 props->max_fifo_size = opts[APP_OPTIONS_MAX_FIFO_SIZE];
834 if (opts[APP_OPTIONS_HIGH_WATERMARK])
835 props->high_watermark = opts[APP_OPTIONS_HIGH_WATERMARK];
836 if (opts[APP_OPTIONS_LOW_WATERMARK])
837 props->low_watermark = opts[APP_OPTIONS_LOW_WATERMARK];
838 if (opts[APP_OPTIONS_PCT_FIRST_ALLOC])
839 props->pct_first_alloc = opts[APP_OPTIONS_PCT_FIRST_ALLOC];
Florin Corasa332c462018-01-31 06:52:17 -0800840 props->segment_type = seg_type;
Dave Barach68b0fb02017-02-28 15:15:56 -0500841
Florin Coras15531972018-08-12 23:50:53 -0700842 /* Add app to lookup by api_client_index table */
Florin Corasc1f5a432018-11-20 11:31:26 -0800843 if (!application_is_builtin (app))
844 application_api_table_add (app->app_index, a->api_client_index);
845 else
846 application_name_table_add (app);
847
848 a->app_index = app->app_index;
Florin Corasa332c462018-01-31 06:52:17 -0800849
Florin Coras15531972018-08-12 23:50:53 -0700850 APP_DBG ("New app name: %v api index: %u index %u", app->name,
Nathan Skrzypczakba65ca42019-05-16 16:35:40 +0200851 a->api_client_index, app->app_index);
Florin Coras15531972018-08-12 23:50:53 -0700852
853 return 0;
854}
855
Florin Corasc1a42652019-02-08 18:27:29 -0800856static void
Florin Coras15531972018-08-12 23:50:53 -0700857application_free (application_t * app)
858{
859 app_worker_map_t *wrk_map;
860 app_worker_t *app_wrk;
861
862 /*
863 * The app event queue allocated in first segment is cleared with
864 * the segment manager. No need to explicitly free it.
865 */
Nathan Skrzypczakba65ca42019-05-16 16:35:40 +0200866 APP_DBG ("Delete app name %v index: %d", app->name, app->app_index);
Florin Coras15531972018-08-12 23:50:53 -0700867
868 if (application_is_proxy (app))
869 application_remove_proxy (app);
870
Florin Corasab2f6db2018-08-31 14:31:41 -0700871 /*
872 * Free workers
873 */
874
Florin Coras15531972018-08-12 23:50:53 -0700875 /* *INDENT-OFF* */
876 pool_flush (wrk_map, app->worker_maps, ({
877 app_wrk = app_worker_get (wrk_map->wrk_index);
878 app_worker_free (app_wrk);
879 }));
880 /* *INDENT-ON* */
881 pool_free (app->worker_maps);
882
Florin Corasab2f6db2018-08-31 14:31:41 -0700883 /*
Florin Coras41d5f542021-01-15 13:49:33 -0800884 * Free rx mqs if allocated
885 */
886 if (app->rx_mqs)
887 {
888 int i;
889 for (i = 0; i < vec_len (app->rx_mqs); i++)
890 app_rx_mqs_epoll_del (app, &app->rx_mqs[i]);
891
892 fifo_segment_cleanup (&app->rx_mqs_segment);
893 ssvm_delete (&app->rx_mqs_segment.ssvm);
894 vec_free (app->rx_mqs);
895 }
896
897 /*
Florin Corasab2f6db2018-08-31 14:31:41 -0700898 * Cleanup remaining state
899 */
Florin Corasc1f5a432018-11-20 11:31:26 -0800900 if (application_is_builtin (app))
901 application_name_table_del (app);
Florin Coras15531972018-08-12 23:50:53 -0700902 vec_free (app->name);
Florin Coras15531972018-08-12 23:50:53 -0700903 pool_put (app_main.app_pool, app);
904}
905
Florin Corasc1a42652019-02-08 18:27:29 -0800906static void
Florin Coras053a0e42018-11-13 15:52:38 -0800907application_detach_process (application_t * app, u32 api_client_index)
908{
909 vnet_app_worker_add_del_args_t _args = { 0 }, *args = &_args;
910 app_worker_map_t *wrk_map;
911 u32 *wrks = 0, *wrk_index;
912 app_worker_t *app_wrk;
913
914 if (api_client_index == ~0)
915 {
916 application_free (app);
917 return;
918 }
919
920 APP_DBG ("Detaching for app %v index %u api client index %u", app->name,
Nathan Skrzypczakba65ca42019-05-16 16:35:40 +0200921 app->app_index, api_client_index);
Florin Coras053a0e42018-11-13 15:52:38 -0800922
923 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100924 pool_foreach (wrk_map, app->worker_maps) {
Florin Coras053a0e42018-11-13 15:52:38 -0800925 app_wrk = app_worker_get (wrk_map->wrk_index);
Florin Corasc1f5a432018-11-20 11:31:26 -0800926 if (app_wrk->api_client_index == api_client_index)
Florin Coras053a0e42018-11-13 15:52:38 -0800927 vec_add1 (wrks, app_wrk->wrk_index);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100928 }
Florin Coras053a0e42018-11-13 15:52:38 -0800929 /* *INDENT-ON* */
930
931 if (!vec_len (wrks))
932 {
933 clib_warning ("no workers for app %u api_index %u", app->app_index,
934 api_client_index);
935 return;
936 }
937
938 args->app_index = app->app_index;
Florin Corasc1f5a432018-11-20 11:31:26 -0800939 args->api_client_index = api_client_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800940 vec_foreach (wrk_index, wrks)
941 {
942 app_wrk = app_worker_get (wrk_index[0]);
Florin Coras349f8ca2018-11-20 16:52:49 -0800943 args->wrk_map_index = app_wrk->wrk_map_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800944 args->is_add = 0;
945 vnet_app_worker_add_del (args);
946 }
947 vec_free (wrks);
948}
949
Nathan Skrzypczakb3ea73e2021-08-05 10:22:52 +0200950void
951application_namespace_cleanup (app_namespace_t *app_ns)
952{
953 u32 *app_indices = 0, *app_index;
954 application_t *app;
955 u32 ns_index;
956
957 ns_index = app_namespace_index (app_ns);
958 pool_foreach (app, app_main.app_pool)
959 if (app->ns_index == ns_index)
960 vec_add1 (app_indices, app->ns_index);
961
962 vec_foreach (app_index, app_indices)
963 {
964 app = application_get (*app_index);
965
966 if (application_is_proxy (app))
967 application_remove_proxy (app);
968 app->flags &= ~APP_OPTIONS_FLAGS_IS_PROXY;
969
970 application_free (app);
971 }
972 vec_free (app_indices);
973}
974
Florin Coras15531972018-08-12 23:50:53 -0700975app_worker_t *
976application_get_worker (application_t * app, u32 wrk_map_index)
977{
978 app_worker_map_t *map;
979 map = app_worker_map_get (app, wrk_map_index);
980 if (!map)
981 return 0;
982 return app_worker_get (map->wrk_index);
983}
984
985app_worker_t *
986application_get_default_worker (application_t * app)
987{
988 return application_get_worker (app, 0);
989}
990
Florin Coras053a0e42018-11-13 15:52:38 -0800991u32
992application_n_workers (application_t * app)
993{
994 return pool_elts (app->worker_maps);
995}
996
Florin Coras15531972018-08-12 23:50:53 -0700997app_worker_t *
Florin Corasc9940fc2019-02-05 20:55:11 -0800998application_listener_select_worker (session_t * ls)
Florin Corasab2f6db2018-08-31 14:31:41 -0700999{
Florin Coras11e2cf52019-03-06 12:04:24 -08001000 application_t *app;
Florin Corasc9940fc2019-02-05 20:55:11 -08001001 app_listener_t *al;
Florin Corasab2f6db2018-08-31 14:31:41 -07001002
Florin Coras11e2cf52019-03-06 12:04:24 -08001003 app = application_get (ls->app_index);
1004 al = app_listener_get (app, ls->al_index);
1005 return app_listener_select_worker (app, al);
Florin Corasab2f6db2018-08-31 14:31:41 -07001006}
1007
Florin Coras15531972018-08-12 23:50:53 -07001008int
Florin Coras623eb562019-02-03 19:28:34 -08001009application_alloc_worker_and_init (application_t * app, app_worker_t ** wrk)
Florin Coras15531972018-08-12 23:50:53 -07001010{
1011 app_worker_map_t *wrk_map;
1012 app_worker_t *app_wrk;
1013 segment_manager_t *sm;
1014 int rv;
1015
1016 app_wrk = app_worker_alloc (app);
1017 wrk_map = app_worker_map_alloc (app);
1018 wrk_map->wrk_index = app_wrk->wrk_index;
1019 app_wrk->wrk_map_index = app_worker_map_index (app, wrk_map);
1020
1021 /*
1022 * Setup first segment manager
1023 */
Florin Coras88001c62019-04-24 14:44:46 -07001024 sm = segment_manager_alloc ();
Florin Coras15531972018-08-12 23:50:53 -07001025 sm->app_wrk_index = app_wrk->wrk_index;
1026
Florin Corasa107f402020-09-29 19:18:46 -07001027 if ((rv = segment_manager_init_first (sm)))
Florin Coras15531972018-08-12 23:50:53 -07001028 {
1029 app_worker_free (app_wrk);
1030 return rv;
1031 }
Florin Corasc87c91d2017-08-16 19:55:49 -07001032 sm->first_is_protected = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001033
Florin Corascea194d2017-10-02 00:18:51 -07001034 /*
Florin Coras15531972018-08-12 23:50:53 -07001035 * Setup app worker
Florin Corascea194d2017-10-02 00:18:51 -07001036 */
Florin Coras94a6df02021-05-06 15:32:14 -07001037 app_wrk->connects_seg_manager = segment_manager_index (sm);
Florin Coras15531972018-08-12 23:50:53 -07001038 app_wrk->listeners_table = hash_create (0, sizeof (u64));
1039 app_wrk->event_queue = segment_manager_event_queue (sm);
1040 app_wrk->app_is_builtin = application_is_builtin (app);
Dave Barach68b0fb02017-02-28 15:15:56 -05001041
Florin Coras15531972018-08-12 23:50:53 -07001042 *wrk = app_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08001043
Florin Coras6cf30ad2017-04-04 23:08:23 -07001044 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001045}
1046
Florin Coras623eb562019-02-03 19:28:34 -08001047int
Florin Corasc1a42652019-02-08 18:27:29 -08001048vnet_app_worker_add_del (vnet_app_worker_add_del_args_t * a)
1049{
Florin Coras88001c62019-04-24 14:44:46 -07001050 fifo_segment_t *fs;
Florin Corasc1a42652019-02-08 18:27:29 -08001051 app_worker_map_t *wrk_map;
1052 app_worker_t *app_wrk;
1053 segment_manager_t *sm;
1054 application_t *app;
1055 int rv;
1056
1057 app = application_get (a->app_index);
1058 if (!app)
1059 return VNET_API_ERROR_INVALID_VALUE;
1060
1061 if (a->is_add)
1062 {
1063 if ((rv = application_alloc_worker_and_init (app, &app_wrk)))
1064 return rv;
1065
1066 /* Map worker api index to the app */
1067 app_wrk->api_client_index = a->api_client_index;
1068 application_api_table_add (app->app_index, a->api_client_index);
1069
Florin Coras94a6df02021-05-06 15:32:14 -07001070 sm = segment_manager_get (app_wrk->connects_seg_manager);
Florin Corasc1a42652019-02-08 18:27:29 -08001071 fs = segment_manager_get_segment_w_lock (sm, 0);
1072 a->segment = &fs->ssvm;
1073 a->segment_handle = segment_manager_segment_handle (sm, fs);
1074 segment_manager_segment_reader_unlock (sm);
1075 a->evt_q = app_wrk->event_queue;
1076 a->wrk_map_index = app_wrk->wrk_map_index;
1077 }
1078 else
1079 {
1080 wrk_map = app_worker_map_get (app, a->wrk_map_index);
1081 if (!wrk_map)
1082 return VNET_API_ERROR_INVALID_VALUE;
1083
1084 app_wrk = app_worker_get (wrk_map->wrk_index);
1085 if (!app_wrk)
1086 return VNET_API_ERROR_INVALID_VALUE;
1087
1088 application_api_table_del (app_wrk->api_client_index);
Florin Coras98078ab2021-08-12 18:12:09 -07001089 if (appns_sapi_enabled ())
1090 sapi_socket_close_w_handle (app_wrk->api_client_index);
Florin Corasc1a42652019-02-08 18:27:29 -08001091 app_worker_free (app_wrk);
1092 app_worker_map_free (app, wrk_map);
1093 if (application_n_workers (app) == 0)
1094 application_free (app);
1095 }
1096 return 0;
1097}
1098
1099static int
1100app_validate_namespace (u8 * namespace_id, u64 secret, u32 * app_ns_index)
1101{
1102 app_namespace_t *app_ns;
1103 if (vec_len (namespace_id) == 0)
1104 {
1105 /* Use default namespace */
1106 *app_ns_index = 0;
1107 return 0;
1108 }
1109
1110 *app_ns_index = app_namespace_index_from_id (namespace_id);
1111 if (*app_ns_index == APP_NAMESPACE_INVALID_INDEX)
1112 return VNET_API_ERROR_APP_INVALID_NS;
1113 app_ns = app_namespace_get (*app_ns_index);
1114 if (!app_ns)
1115 return VNET_API_ERROR_APP_INVALID_NS;
1116 if (app_ns->ns_secret != secret)
1117 return VNET_API_ERROR_APP_WRONG_NS_SECRET;
1118 return 0;
1119}
1120
1121static u8 *
1122app_name_from_api_index (u32 api_client_index)
1123{
1124 vl_api_registration_t *regp;
1125 regp = vl_api_client_index_to_registration (api_client_index);
1126 if (regp)
Florin Corasbee97682019-04-09 16:13:18 -07001127 return format (0, "%s", regp->name);
Florin Corasc1a42652019-02-08 18:27:29 -08001128
1129 clib_warning ("api client index %u does not have an api registration!",
1130 api_client_index);
Florin Corasbee97682019-04-09 16:13:18 -07001131 return format (0, "unknown");
Florin Corasc1a42652019-02-08 18:27:29 -08001132}
1133
1134/**
1135 * Attach application to vpp
1136 *
1137 * Allocates a vpp app, i.e., a structure that keeps back pointers
1138 * to external app and a segment manager for shared memory fifo based
1139 * communication with the external app.
1140 */
1141int
1142vnet_application_attach (vnet_app_attach_args_t * a)
1143{
Florin Coras88001c62019-04-24 14:44:46 -07001144 fifo_segment_t *fs;
Florin Corasc1a42652019-02-08 18:27:29 -08001145 application_t *app = 0;
1146 app_worker_t *app_wrk;
1147 segment_manager_t *sm;
1148 u32 app_ns_index = 0;
1149 u8 *app_name = 0;
1150 u64 secret;
1151 int rv;
1152
1153 if (a->api_client_index != APP_INVALID_INDEX)
1154 app = application_lookup (a->api_client_index);
1155 else if (a->name)
1156 app = application_lookup_name (a->name);
1157 else
1158 return VNET_API_ERROR_INVALID_VALUE;
1159
1160 if (app)
1161 return VNET_API_ERROR_APP_ALREADY_ATTACHED;
1162
Florin Coras61ae0562020-09-02 19:10:28 -07001163 /* Socket api sets the name and validates namespace prior to attach */
1164 if (!a->use_sock_api)
Florin Corasc1a42652019-02-08 18:27:29 -08001165 {
Florin Coras61ae0562020-09-02 19:10:28 -07001166 if (a->api_client_index != APP_INVALID_INDEX)
1167 {
1168 app_name = app_name_from_api_index (a->api_client_index);
1169 a->name = app_name;
1170 }
Florin Corasc1a42652019-02-08 18:27:29 -08001171
Florin Coras61ae0562020-09-02 19:10:28 -07001172 secret = a->options[APP_OPTIONS_NAMESPACE_SECRET];
Florin Coras6c10ab22020-11-08 16:50:39 -08001173 if ((rv = app_validate_namespace (a->namespace_id, secret,
1174 &app_ns_index)))
Florin Coras61ae0562020-09-02 19:10:28 -07001175 return rv;
1176 a->options[APP_OPTIONS_NAMESPACE] = app_ns_index;
1177 }
Florin Corasc1a42652019-02-08 18:27:29 -08001178
1179 if ((rv = application_alloc_and_init ((app_init_args_t *) a)))
1180 return rv;
1181
1182 app = application_get (a->app_index);
1183 if ((rv = application_alloc_worker_and_init (app, &app_wrk)))
1184 return rv;
1185
1186 a->app_evt_q = app_wrk->event_queue;
1187 app_wrk->api_client_index = a->api_client_index;
Florin Coras94a6df02021-05-06 15:32:14 -07001188 sm = segment_manager_get (app_wrk->connects_seg_manager);
Florin Corasc1a42652019-02-08 18:27:29 -08001189 fs = segment_manager_get_segment_w_lock (sm, 0);
1190
1191 if (application_is_proxy (app))
fanyfb8b6fe42020-09-17 22:10:41 +08001192 {
1193 application_setup_proxy (app);
Florin Coras2a7c0b62020-09-28 23:40:28 -07001194 /* The segment manager pool is reallocated because a new listener
1195 * is added. Re-grab segment manager to avoid dangling reference */
Florin Coras94a6df02021-05-06 15:32:14 -07001196 sm = segment_manager_get (app_wrk->connects_seg_manager);
fanyfb8b6fe42020-09-17 22:10:41 +08001197 }
Florin Corasc1a42652019-02-08 18:27:29 -08001198
1199 ASSERT (vec_len (fs->ssvm.name) <= 128);
1200 a->segment = &fs->ssvm;
1201 a->segment_handle = segment_manager_segment_handle (sm, fs);
1202
1203 segment_manager_segment_reader_unlock (sm);
Florin Coras41d5f542021-01-15 13:49:33 -08001204
1205 if (!application_is_builtin (app) && application_use_private_rx_mqs ())
1206 rv = app_rx_mqs_alloc (app);
1207
Florin Corasc1a42652019-02-08 18:27:29 -08001208 vec_free (app_name);
Florin Coras41d5f542021-01-15 13:49:33 -08001209 return rv;
Florin Corasc1a42652019-02-08 18:27:29 -08001210}
1211
1212/**
1213 * Detach application from vpp
1214 */
1215int
1216vnet_application_detach (vnet_app_detach_args_t * a)
1217{
1218 application_t *app;
1219
1220 app = application_get_if_valid (a->app_index);
1221 if (!app)
1222 {
1223 clib_warning ("app not attached");
1224 return VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1225 }
1226
1227 app_interface_check_thread_and_barrier (vnet_application_detach, a);
1228 application_detach_process (app, a->api_client_index);
1229 return 0;
1230}
1231
Florin Corasc1a42652019-02-08 18:27:29 -08001232static u8
Florin Coras8c2bdf82022-04-15 12:37:48 -07001233session_endpoint_in_ns (session_endpoint_cfg_t *sep)
Florin Corasc1a42652019-02-08 18:27:29 -08001234{
Florin Coras8c2bdf82022-04-15 12:37:48 -07001235 u8 is_lep;
1236
1237 if (sep->flags & SESSION_ENDPT_CFG_F_PROXY_LISTEN)
1238 return 1;
1239
1240 is_lep = session_endpoint_is_local ((session_endpoint_t *) sep);
Florin Corasc1a42652019-02-08 18:27:29 -08001241 if (!is_lep && sep->sw_if_index != ENDPOINT_INVALID_INDEX
1242 && !ip_interface_has_address (sep->sw_if_index, &sep->ip, sep->is_ip4))
1243 {
1244 clib_warning ("sw_if_index %u not configured with ip %U",
1245 sep->sw_if_index, format_ip46_address, &sep->ip,
1246 sep->is_ip4);
1247 return 0;
1248 }
Florin Coras8c2bdf82022-04-15 12:37:48 -07001249
Florin Corasc1a42652019-02-08 18:27:29 -08001250 return (is_lep || ip_is_local (sep->fib_index, &sep->ip, sep->is_ip4));
1251}
1252
1253static void
1254session_endpoint_update_for_app (session_endpoint_cfg_t * sep,
1255 application_t * app, u8 is_connect)
1256{
1257 app_namespace_t *app_ns;
1258 u32 ns_index, fib_index;
1259
1260 ns_index = app->ns_index;
1261
1262 /* App is a transport proto, so fetch the calling app's ns */
1263 if (app->flags & APP_OPTIONS_FLAGS_IS_TRANSPORT_APP)
Florin Coras8a140612019-02-18 22:39:39 -08001264 ns_index = sep->ns_index;
Florin Corasc1a42652019-02-08 18:27:29 -08001265
Florin Corasc1a42652019-02-08 18:27:29 -08001266 app_ns = app_namespace_get (ns_index);
1267 if (!app_ns)
1268 return;
1269
1270 /* Ask transport and network to bind to/connect using local interface
1271 * that "supports" app's namespace. This will fix our local connection
1272 * endpoint.
1273 */
1274
1275 /* If in default namespace and user requested a fib index use it */
1276 if (ns_index == 0 && sep->fib_index != ENDPOINT_INVALID_INDEX)
1277 fib_index = sep->fib_index;
1278 else
1279 fib_index = sep->is_ip4 ? app_ns->ip4_fib_index : app_ns->ip6_fib_index;
1280 sep->peer.fib_index = fib_index;
1281 sep->fib_index = fib_index;
1282
1283 if (!is_connect)
1284 {
1285 sep->sw_if_index = app_ns->sw_if_index;
1286 }
1287 else
1288 {
1289 if (app_ns->sw_if_index != APP_NAMESPACE_INVALID_INDEX
1290 && sep->peer.sw_if_index != ENDPOINT_INVALID_INDEX
1291 && sep->peer.sw_if_index != app_ns->sw_if_index)
1292 clib_warning ("Local sw_if_index different from app ns sw_if_index");
1293
1294 sep->peer.sw_if_index = app_ns->sw_if_index;
1295 }
1296}
1297
1298int
1299vnet_listen (vnet_listen_args_t * a)
1300{
1301 app_listener_t *app_listener;
1302 app_worker_t *app_wrk;
1303 application_t *app;
1304 int rv;
1305
Florin Coras458089b2019-08-21 16:20:44 -07001306 ASSERT (vlib_thread_is_main_w_barrier ());
1307
Florin Corasc1a42652019-02-08 18:27:29 -08001308 app = application_get_if_valid (a->app_index);
1309 if (!app)
Florin Corasa8c3b862020-04-07 22:31:06 +00001310 return SESSION_E_NOAPP;
Florin Corasc1a42652019-02-08 18:27:29 -08001311
1312 app_wrk = application_get_worker (app, a->wrk_map_index);
1313 if (!app_wrk)
Florin Corasa8c3b862020-04-07 22:31:06 +00001314 return SESSION_E_INVALID_APPWRK;
Florin Corasc1a42652019-02-08 18:27:29 -08001315
1316 a->sep_ext.app_wrk_index = app_wrk->wrk_index;
1317
1318 session_endpoint_update_for_app (&a->sep_ext, app, 0 /* is_connect */ );
Florin Coras8c2bdf82022-04-15 12:37:48 -07001319 if (!session_endpoint_in_ns (&a->sep_ext))
Florin Corasa8c3b862020-04-07 22:31:06 +00001320 return SESSION_E_INVALID_NS;
Florin Corasc1a42652019-02-08 18:27:29 -08001321
1322 /*
1323 * Check if we already have an app listener
1324 */
1325 app_listener = app_listener_lookup (app, &a->sep_ext);
1326 if (app_listener)
1327 {
1328 if (app_listener->app_index != app->app_index)
Florin Corasa8c3b862020-04-07 22:31:06 +00001329 return SESSION_E_ALREADY_LISTENING;
1330 if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1331 return rv;
Florin Corasc1a42652019-02-08 18:27:29 -08001332 a->handle = app_listener_handle (app_listener);
1333 return 0;
1334 }
1335
1336 /*
1337 * Create new app listener
1338 */
1339 if ((rv = app_listener_alloc_and_init (app, &a->sep_ext, &app_listener)))
1340 return rv;
1341
1342 if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1343 {
1344 app_listener_cleanup (app_listener);
1345 return rv;
1346 }
1347
1348 a->handle = app_listener_handle (app_listener);
1349 return 0;
1350}
1351
1352int
1353vnet_connect (vnet_connect_args_t * a)
1354{
Florin Coras2b81e3c2019-02-27 07:55:46 -08001355 app_worker_t *client_wrk;
Florin Corasc1a42652019-02-08 18:27:29 -08001356 application_t *client;
Florin Corasc1a42652019-02-08 18:27:29 -08001357
Florin Coras458089b2019-08-21 16:20:44 -07001358 ASSERT (vlib_thread_is_main_w_barrier ());
1359
Florin Corasc1a42652019-02-08 18:27:29 -08001360 if (session_endpoint_is_zero (&a->sep))
Florin Coras00e01d32019-10-21 16:07:46 -07001361 return SESSION_E_INVALID_RMT_IP;
Florin Corasc1a42652019-02-08 18:27:29 -08001362
1363 client = application_get (a->app_index);
1364 session_endpoint_update_for_app (&a->sep_ext, client, 1 /* is_connect */ );
1365 client_wrk = application_get_worker (client, a->wrk_map_index);
1366
Florin Coras89a9f612021-05-11 11:55:07 -07001367 a->sep_ext.opaque = a->api_context;
1368
Florin Corasc1a42652019-02-08 18:27:29 -08001369 /*
1370 * First check the local scope for locally attached destinations.
1371 * If we have local scope, we pass *all* connects through it since we may
1372 * have special policy rules even for non-local destinations, think proxy.
1373 */
1374 if (application_has_local_scope (client))
1375 {
Florin Coras2b81e3c2019-02-27 07:55:46 -08001376 int rv;
Florin Corasc1a42652019-02-08 18:27:29 -08001377
Florin Coras2b81e3c2019-02-27 07:55:46 -08001378 a->sep_ext.original_tp = a->sep_ext.transport_proto;
1379 a->sep_ext.transport_proto = TRANSPORT_PROTO_NONE;
Florin Coras89a9f612021-05-11 11:55:07 -07001380 rv = app_worker_connect_session (client_wrk, &a->sep_ext, &a->sh);
Florin Coras00e01d32019-10-21 16:07:46 -07001381 a->sep_ext.transport_proto = a->sep_ext.original_tp;
Florin Coras374df7a2021-05-13 11:37:43 -07001382 if (!rv || rv != SESSION_E_LOCAL_CONNECT)
1383 return rv;
Florin Corasc1a42652019-02-08 18:27:29 -08001384 }
Florin Corasc1a42652019-02-08 18:27:29 -08001385 /*
1386 * Not connecting to a local server, propagate to transport
1387 */
Florin Coras89a9f612021-05-11 11:55:07 -07001388 return app_worker_connect_session (client_wrk, &a->sep_ext, &a->sh);
Florin Corasc1a42652019-02-08 18:27:29 -08001389}
1390
1391int
1392vnet_unlisten (vnet_unlisten_args_t * a)
1393{
1394 app_worker_t *app_wrk;
1395 app_listener_t *al;
1396 application_t *app;
1397
Florin Coras458089b2019-08-21 16:20:44 -07001398 ASSERT (vlib_thread_is_main_w_barrier ());
1399
Florin Corasc1a42652019-02-08 18:27:29 -08001400 if (!(app = application_get_if_valid (a->app_index)))
Florin Corasa8c3b862020-04-07 22:31:06 +00001401 return SESSION_E_NOAPP;
Florin Corasc1a42652019-02-08 18:27:29 -08001402
Florin Coras92311f62019-03-01 19:26:31 -08001403 if (!(al = app_listener_get_w_handle (a->handle)))
Florin Corasa8c3b862020-04-07 22:31:06 +00001404 return SESSION_E_NOLISTEN;
Florin Coras92311f62019-03-01 19:26:31 -08001405
Florin Corasc1a42652019-02-08 18:27:29 -08001406 if (al->app_index != app->app_index)
1407 {
1408 clib_warning ("app doesn't own handle %llu!", a->handle);
Florin Corasa8c3b862020-04-07 22:31:06 +00001409 return SESSION_E_OWNER;
Florin Corasc1a42652019-02-08 18:27:29 -08001410 }
1411
1412 app_wrk = application_get_worker (app, a->wrk_map_index);
1413 if (!app_wrk)
1414 {
1415 clib_warning ("no app %u worker %u", app->app_index, a->wrk_map_index);
Florin Corasa8c3b862020-04-07 22:31:06 +00001416 return SESSION_E_INVALID_APPWRK;
Florin Corasc1a42652019-02-08 18:27:29 -08001417 }
1418
1419 return app_worker_stop_listen (app_wrk, al);
1420}
1421
1422int
liuyacan534468e2021-05-09 03:50:40 +00001423vnet_shutdown_session (vnet_shutdown_args_t *a)
1424{
1425 app_worker_t *app_wrk;
1426 session_t *s;
1427
1428 s = session_get_from_handle_if_valid (a->handle);
1429 if (!s)
1430 return SESSION_E_NOSESSION;
1431
1432 app_wrk = app_worker_get (s->app_wrk_index);
1433 if (app_wrk->app_index != a->app_index)
1434 return SESSION_E_OWNER;
1435
1436 /* We're peeking into another's thread pool. Make sure */
1437 ASSERT (s->session_index == session_index_from_handle (a->handle));
1438
1439 session_half_close (s);
1440 return 0;
1441}
1442
1443int
Florin Corasc1a42652019-02-08 18:27:29 -08001444vnet_disconnect_session (vnet_disconnect_args_t * a)
1445{
Florin Coras2b81e3c2019-02-27 07:55:46 -08001446 app_worker_t *app_wrk;
1447 session_t *s;
Florin Corasc1a42652019-02-08 18:27:29 -08001448
Florin Coras2b81e3c2019-02-27 07:55:46 -08001449 s = session_get_from_handle_if_valid (a->handle);
1450 if (!s)
Florin Corasa8c3b862020-04-07 22:31:06 +00001451 return SESSION_E_NOSESSION;
1452
Florin Coras2b81e3c2019-02-27 07:55:46 -08001453 app_wrk = app_worker_get (s->app_wrk_index);
1454 if (app_wrk->app_index != a->app_index)
Florin Corasa8c3b862020-04-07 22:31:06 +00001455 return SESSION_E_OWNER;
Florin Corasc1a42652019-02-08 18:27:29 -08001456
Florin Coras2b81e3c2019-02-27 07:55:46 -08001457 /* We're peeking into another's thread pool. Make sure */
1458 ASSERT (s->session_index == session_index_from_handle (a->handle));
Florin Corasc1a42652019-02-08 18:27:29 -08001459
Florin Coras2b81e3c2019-02-27 07:55:46 -08001460 session_close (s);
Florin Corasc1a42652019-02-08 18:27:29 -08001461 return 0;
1462}
1463
1464int
Florin Coras623eb562019-02-03 19:28:34 -08001465application_change_listener_owner (session_t * s, app_worker_t * app_wrk)
1466{
1467 app_worker_t *old_wrk = app_worker_get (s->app_wrk_index);
1468 app_listener_t *app_listener;
1469 application_t *app;
Florin Corasa8c3b862020-04-07 22:31:06 +00001470 int rv;
Florin Coras623eb562019-02-03 19:28:34 -08001471
1472 if (!old_wrk)
Florin Corasa8c3b862020-04-07 22:31:06 +00001473 return SESSION_E_INVALID_APPWRK;
Florin Coras623eb562019-02-03 19:28:34 -08001474
1475 hash_unset (old_wrk->listeners_table, listen_session_get_handle (s));
1476 if (session_transport_service_type (s) == TRANSPORT_SERVICE_CL
1477 && s->rx_fifo)
Florin Coras19223e02019-03-03 14:56:05 -08001478 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
Florin Coras623eb562019-02-03 19:28:34 -08001479
Florin Coras623eb562019-02-03 19:28:34 -08001480 app = application_get (old_wrk->app_index);
1481 if (!app)
Florin Corasa8c3b862020-04-07 22:31:06 +00001482 return SESSION_E_NOAPP;
Florin Coras623eb562019-02-03 19:28:34 -08001483
Florin Corasc9940fc2019-02-05 20:55:11 -08001484 app_listener = app_listener_get (app, s->al_index);
1485
1486 /* Only remove from lb for now */
Florin Coras623eb562019-02-03 19:28:34 -08001487 app_listener->workers = clib_bitmap_set (app_listener->workers,
1488 old_wrk->wrk_map_index, 0);
Florin Coras623eb562019-02-03 19:28:34 -08001489
Florin Corasa8c3b862020-04-07 22:31:06 +00001490 if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1491 return rv;
Florin Corasab2f6db2018-08-31 14:31:41 -07001492
Florin Corasc9940fc2019-02-05 20:55:11 -08001493 s->app_wrk_index = app_wrk->wrk_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001494
Dave Barach68b0fb02017-02-28 15:15:56 -05001495 return 0;
1496}
1497
Dave Barach52851e62017-08-07 09:35:25 -04001498int
1499application_is_proxy (application_t * app)
1500{
Florin Coras7999e832017-10-31 01:51:04 -07001501 return (app->flags & APP_OPTIONS_FLAGS_IS_PROXY);
1502}
1503
1504int
1505application_is_builtin (application_t * app)
1506{
1507 return (app->flags & APP_OPTIONS_FLAGS_IS_BUILTIN);
1508}
1509
1510int
1511application_is_builtin_proxy (application_t * app)
1512{
1513 return (application_is_proxy (app) && application_is_builtin (app));
Dave Barach52851e62017-08-07 09:35:25 -04001514}
1515
Florin Corascea194d2017-10-02 00:18:51 -07001516u8
1517application_has_local_scope (application_t * app)
1518{
1519 return app->flags & APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
1520}
1521
1522u8
1523application_has_global_scope (application_t * app)
1524{
1525 return app->flags & APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
1526}
1527
Florin Coras7999e832017-10-31 01:51:04 -07001528static clib_error_t *
1529application_start_stop_proxy_fib_proto (application_t * app, u8 fib_proto,
1530 u8 transport_proto, u8 is_start)
1531{
Florin Coras7999e832017-10-31 01:51:04 -07001532 app_namespace_t *app_ns = app_namespace_get (app->ns_index);
1533 u8 is_ip4 = (fib_proto == FIB_PROTOCOL_IP4);
Florin Coras5665ced2018-10-25 18:03:45 -07001534 session_endpoint_cfg_t sep = SESSION_ENDPOINT_CFG_NULL;
Florin Coras7999e832017-10-31 01:51:04 -07001535 transport_connection_t *tc;
Florin Coras15531972018-08-12 23:50:53 -07001536 app_worker_t *app_wrk;
Florin Corasc9940fc2019-02-05 20:55:11 -08001537 app_listener_t *al;
Florin Coras288eaab2019-02-03 15:26:14 -08001538 session_t *s;
Florin Corasc9940fc2019-02-05 20:55:11 -08001539 u32 flags;
Florin Coras7999e832017-10-31 01:51:04 -07001540
Florin Coras15531972018-08-12 23:50:53 -07001541 /* TODO decide if we want proxy to be enabled for all workers */
1542 app_wrk = application_get_default_worker (app);
Florin Coras7999e832017-10-31 01:51:04 -07001543 if (is_start)
1544 {
Florin Coras15531972018-08-12 23:50:53 -07001545 s = app_worker_first_listener (app_wrk, fib_proto, transport_proto);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001546 if (!s)
1547 {
1548 sep.is_ip4 = is_ip4;
1549 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1550 sep.sw_if_index = app_ns->sw_if_index;
1551 sep.transport_proto = transport_proto;
Florin Corasab2f6db2018-08-31 14:31:41 -07001552 sep.app_wrk_index = app_wrk->wrk_index; /* only default */
Florin Corasc9940fc2019-02-05 20:55:11 -08001553
1554 /* force global scope listener */
1555 flags = app->flags;
1556 app->flags &= ~APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
1557 app_listener_alloc_and_init (app, &sep, &al);
1558 app->flags = flags;
1559
1560 app_worker_start_listen (app_wrk, al);
1561 s = listen_session_get (al->session_index);
Florin Corasd5c604d2019-03-18 09:06:35 -07001562 s->flags |= SESSION_F_PROXY;
Florin Coras19b1f6a2017-12-11 03:37:03 -08001563 }
Florin Coras7999e832017-10-31 01:51:04 -07001564 }
1565 else
1566 {
Florin Coras623eb562019-02-03 19:28:34 -08001567 s = app_worker_proxy_listener (app_wrk, fib_proto, transport_proto);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001568 ASSERT (s);
Florin Coras7999e832017-10-31 01:51:04 -07001569 }
Florin Coras19b1f6a2017-12-11 03:37:03 -08001570
Florin Coras7999e832017-10-31 01:51:04 -07001571 tc = listen_session_get_transport (s);
1572
1573 if (!ip_is_zero (&tc->lcl_ip, 1))
1574 {
Florin Corasdbd44562017-11-09 19:30:17 -08001575 u32 sti;
1576 sep.is_ip4 = is_ip4;
1577 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1578 sep.transport_proto = transport_proto;
1579 sep.port = 0;
1580 sti = session_lookup_get_index_for_fib (fib_proto, sep.fib_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001581 if (is_start)
Florin Corasab2f6db2018-08-31 14:31:41 -07001582 session_lookup_add_session_endpoint (sti,
1583 (session_endpoint_t *) & sep,
1584 s->session_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001585 else
Florin Corasab2f6db2018-08-31 14:31:41 -07001586 session_lookup_del_session_endpoint (sti,
1587 (session_endpoint_t *) & sep);
Florin Coras7999e832017-10-31 01:51:04 -07001588 }
Florin Coras19b1f6a2017-12-11 03:37:03 -08001589
Florin Coras7999e832017-10-31 01:51:04 -07001590 return 0;
1591}
1592
Florin Coras19b1f6a2017-12-11 03:37:03 -08001593static void
1594application_start_stop_proxy_local_scope (application_t * app,
1595 u8 transport_proto, u8 is_start)
1596{
1597 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
1598 app_namespace_t *app_ns;
1599 app_ns = app_namespace_get (app->ns_index);
1600 sep.is_ip4 = 1;
1601 sep.transport_proto = transport_proto;
1602 sep.port = 0;
1603
1604 if (is_start)
1605 {
1606 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
Florin Coras15531972018-08-12 23:50:53 -07001607 app->app_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001608 sep.is_ip4 = 0;
1609 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
Florin Coras15531972018-08-12 23:50:53 -07001610 app->app_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001611 }
1612 else
1613 {
1614 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1615 sep.is_ip4 = 0;
1616 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1617 }
1618}
1619
Florin Coras7999e832017-10-31 01:51:04 -07001620void
Florin Coras561af9b2017-12-09 10:19:43 -08001621application_start_stop_proxy (application_t * app,
1622 transport_proto_t transport_proto, u8 is_start)
Florin Coras7999e832017-10-31 01:51:04 -07001623{
Florin Coras7999e832017-10-31 01:51:04 -07001624 if (application_has_local_scope (app))
Florin Coras19b1f6a2017-12-11 03:37:03 -08001625 application_start_stop_proxy_local_scope (app, transport_proto, is_start);
Florin Coras7999e832017-10-31 01:51:04 -07001626
1627 if (application_has_global_scope (app))
1628 {
1629 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP4,
1630 transport_proto, is_start);
1631 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP6,
1632 transport_proto, is_start);
1633 }
1634}
1635
1636void
1637application_setup_proxy (application_t * app)
1638{
1639 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -08001640 transport_proto_t tp;
1641
Florin Coras7999e832017-10-31 01:51:04 -07001642 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -08001643
Nathan Skrzypczakb3ea73e2021-08-05 10:22:52 +02001644 transport_proto_foreach (tp, transports)
1645 application_start_stop_proxy (app, tp, 1);
Florin Coras7999e832017-10-31 01:51:04 -07001646}
1647
1648void
1649application_remove_proxy (application_t * app)
1650{
1651 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -08001652 transport_proto_t tp;
1653
Florin Coras7999e832017-10-31 01:51:04 -07001654 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -08001655
Nathan Skrzypczakb3ea73e2021-08-05 10:22:52 +02001656 transport_proto_foreach (tp, transports)
1657 application_start_stop_proxy (app, tp, 0);
Florin Coras7999e832017-10-31 01:51:04 -07001658}
1659
Florin Coras88001c62019-04-24 14:44:46 -07001660segment_manager_props_t *
Florin Corasa332c462018-01-31 06:52:17 -08001661application_segment_manager_properties (application_t * app)
1662{
1663 return &app->sm_properties;
1664}
1665
Florin Coras88001c62019-04-24 14:44:46 -07001666segment_manager_props_t *
Florin Corasa332c462018-01-31 06:52:17 -08001667application_get_segment_manager_properties (u32 app_index)
1668{
1669 application_t *app = application_get (app_index);
1670 return &app->sm_properties;
1671}
1672
Florin Coras15531972018-08-12 23:50:53 -07001673static void
1674application_format_listeners (application_t * app, int verbose)
1675{
1676 vlib_main_t *vm = vlib_get_main ();
1677 app_worker_map_t *wrk_map;
1678 app_worker_t *app_wrk;
1679 u32 sm_index;
1680 u64 handle;
1681
1682 if (!app)
1683 {
1684 vlib_cli_output (vm, "%U", format_app_worker_listener, 0 /* header */ ,
1685 0, 0, verbose);
1686 return;
1687 }
1688
1689 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001690 pool_foreach (wrk_map, app->worker_maps) {
Florin Coras15531972018-08-12 23:50:53 -07001691 app_wrk = app_worker_get (wrk_map->wrk_index);
1692 if (hash_elts (app_wrk->listeners_table) == 0)
1693 continue;
1694 hash_foreach (handle, sm_index, app_wrk->listeners_table, ({
1695 vlib_cli_output (vm, "%U", format_app_worker_listener, app_wrk,
1696 handle, sm_index, verbose);
1697 }));
Damjan Marionb2c31b62020-12-13 21:47:40 +01001698 }
Florin Coras15531972018-08-12 23:50:53 -07001699 /* *INDENT-ON* */
1700}
1701
1702static void
Florin Coras15531972018-08-12 23:50:53 -07001703application_format_connects (application_t * app, int verbose)
1704{
1705 app_worker_map_t *wrk_map;
1706 app_worker_t *app_wrk;
1707
1708 if (!app)
1709 {
1710 app_worker_format_connects (0, verbose);
1711 return;
1712 }
1713
1714 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001715 pool_foreach (wrk_map, app->worker_maps) {
Florin Coras15531972018-08-12 23:50:53 -07001716 app_wrk = app_worker_get (wrk_map->wrk_index);
1717 app_worker_format_connects (app_wrk, verbose);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001718 }
Florin Coras15531972018-08-12 23:50:53 -07001719 /* *INDENT-ON* */
1720}
1721
Florin Coras6cf30ad2017-04-04 23:08:23 -07001722u8 *
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001723format_cert_key_pair (u8 * s, va_list * args)
1724{
1725 app_cert_key_pair_t *ckpair = va_arg (*args, app_cert_key_pair_t *);
1726 int key_len = 0, cert_len = 0;
1727 cert_len = vec_len (ckpair->cert);
1728 key_len = vec_len (ckpair->key);
1729 if (ckpair->cert_key_index == 0)
1730 s = format (s, "DEFAULT (cert:%d, key:%d)", cert_len, key_len);
1731 else
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001732 s = format (s, "%d (cert:%d, key:%d)", ckpair->cert_key_index,
1733 cert_len, key_len);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001734 return s;
1735}
1736
1737u8 *
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02001738format_crypto_engine (u8 * s, va_list * args)
1739{
1740 u32 engine = va_arg (*args, u32);
1741 switch (engine)
1742 {
1743 case CRYPTO_ENGINE_NONE:
1744 return format (s, "none");
1745 case CRYPTO_ENGINE_MBEDTLS:
1746 return format (s, "mbedtls");
1747 case CRYPTO_ENGINE_OPENSSL:
1748 return format (s, "openssl");
1749 case CRYPTO_ENGINE_PICOTLS:
1750 return format (s, "picotls");
1751 case CRYPTO_ENGINE_VPP:
1752 return format (s, "vpp");
1753 default:
1754 return format (s, "unknown engine");
1755 }
1756 return s;
1757}
1758
1759uword
1760unformat_crypto_engine (unformat_input_t * input, va_list * args)
1761{
1762 u8 *a = va_arg (*args, u8 *);
1763 if (unformat (input, "mbedtls"))
1764 *a = CRYPTO_ENGINE_MBEDTLS;
1765 else if (unformat (input, "openssl"))
1766 *a = CRYPTO_ENGINE_OPENSSL;
1767 else if (unformat (input, "picotls"))
1768 *a = CRYPTO_ENGINE_PICOTLS;
1769 else if (unformat (input, "vpp"))
1770 *a = CRYPTO_ENGINE_VPP;
1771 else
1772 return 0;
1773 return 1;
1774}
1775
1776u8 *
1777format_crypto_context (u8 * s, va_list * args)
1778{
1779 crypto_context_t *crctx = va_arg (*args, crypto_context_t *);
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001780 s = format (s, "[0x%x][sub%d,ckpair%x]", crctx->ctx_index,
1781 crctx->n_subscribers, crctx->ckpair_index);
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02001782 s = format (s, "[%U]", format_crypto_engine, crctx->crypto_engine);
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02001783 return s;
1784}
1785
1786u8 *
Florin Coras6cf30ad2017-04-04 23:08:23 -07001787format_application (u8 * s, va_list * args)
1788{
1789 application_t *app = va_arg (*args, application_t *);
1790 CLIB_UNUSED (int verbose) = va_arg (*args, int);
Florin Coras88001c62019-04-24 14:44:46 -07001791 segment_manager_props_t *props;
Florin Coras053a0e42018-11-13 15:52:38 -08001792 const u8 *app_ns_name, *app_name;
Florin Coras349f8ca2018-11-20 16:52:49 -08001793 app_worker_map_t *wrk_map;
1794 app_worker_t *app_wrk;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001795
1796 if (app == 0)
1797 {
Florin Coras349f8ca2018-11-20 16:52:49 -08001798 if (!verbose)
Florin Corasc1f5a432018-11-20 11:31:26 -08001799 s = format (s, "%-10s%-20s%-40s", "Index", "Name", "Namespace");
Florin Coras6cf30ad2017-04-04 23:08:23 -07001800 return s;
1801 }
1802
Florin Coras0bee9ce2018-03-22 21:24:31 -07001803 app_name = app_get_name (app);
Florin Corascea194d2017-10-02 00:18:51 -07001804 app_ns_name = app_namespace_id_from_index (app->ns_index);
Florin Corasa332c462018-01-31 06:52:17 -08001805 props = application_segment_manager_properties (app);
Florin Coras349f8ca2018-11-20 16:52:49 -08001806 if (!verbose)
1807 {
jiangxiaomingdfb30d92020-08-31 17:38:11 +08001808 s = format (s, "%-10u%-20v%-40v", app->app_index, app_name,
Florin Coras349f8ca2018-11-20 16:52:49 -08001809 app_ns_name);
1810 return s;
1811 }
1812
Florin Corasfa7512e2019-04-04 22:31:50 -07001813 s = format (s, "app-name %v app-index %u ns-index %u seg-size %U\n",
Florin Coras349f8ca2018-11-20 16:52:49 -08001814 app_name, app->app_index, app->ns_index,
1815 format_memory_size, props->add_segment_size);
1816 s = format (s, "rx-fifo-size %U tx-fifo-size %U workers:\n",
1817 format_memory_size, props->rx_fifo_size,
1818 format_memory_size, props->tx_fifo_size);
1819
1820 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001821 pool_foreach (wrk_map, app->worker_maps) {
Florin Coras349f8ca2018-11-20 16:52:49 -08001822 app_wrk = app_worker_get (wrk_map->wrk_index);
Florin Coras623eb562019-02-03 19:28:34 -08001823 s = format (s, "%U", format_app_worker, app_wrk);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001824 }
Florin Coras349f8ca2018-11-20 16:52:49 -08001825 /* *INDENT-ON* */
1826
Dave Barach68b0fb02017-02-28 15:15:56 -05001827 return s;
1828}
1829
Florin Corasf8f516a2018-02-08 15:10:09 -08001830void
Florin Coras2b81e3c2019-02-27 07:55:46 -08001831application_format_all_listeners (vlib_main_t * vm, int verbose)
Florin Corasf8f516a2018-02-08 15:10:09 -08001832{
1833 application_t *app;
Florin Corasf8f516a2018-02-08 15:10:09 -08001834
Florin Coras15531972018-08-12 23:50:53 -07001835 if (!pool_elts (app_main.app_pool))
Florin Corasf8f516a2018-02-08 15:10:09 -08001836 {
1837 vlib_cli_output (vm, "No active server bindings");
1838 return;
1839 }
1840
Florin Coras2b81e3c2019-02-27 07:55:46 -08001841 application_format_listeners (0, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08001842
Florin Coras2b81e3c2019-02-27 07:55:46 -08001843 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001844 pool_foreach (app, app_main.app_pool) {
Florin Coras2b81e3c2019-02-27 07:55:46 -08001845 application_format_listeners (app, verbose);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001846 }
Florin Coras2b81e3c2019-02-27 07:55:46 -08001847 /* *INDENT-ON* */
Florin Corasf8f516a2018-02-08 15:10:09 -08001848}
1849
1850void
Florin Coras2b81e3c2019-02-27 07:55:46 -08001851application_format_all_clients (vlib_main_t * vm, int verbose)
Florin Corasf8f516a2018-02-08 15:10:09 -08001852{
1853 application_t *app;
1854
Florin Coras15531972018-08-12 23:50:53 -07001855 if (!pool_elts (app_main.app_pool))
Florin Corasf8f516a2018-02-08 15:10:09 -08001856 {
1857 vlib_cli_output (vm, "No active apps");
1858 return;
1859 }
1860
Florin Coras2b81e3c2019-02-27 07:55:46 -08001861 application_format_connects (0, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08001862
Florin Coras2b81e3c2019-02-27 07:55:46 -08001863 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001864 pool_foreach (app, app_main.app_pool) {
Florin Coras2b81e3c2019-02-27 07:55:46 -08001865 application_format_connects (app, verbose);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001866 }
Florin Coras2b81e3c2019-02-27 07:55:46 -08001867 /* *INDENT-ON* */
Florin Corasf8f516a2018-02-08 15:10:09 -08001868}
1869
Dave Barach68b0fb02017-02-28 15:15:56 -05001870static clib_error_t *
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001871show_certificate_command_fn (vlib_main_t * vm, unformat_input_t * input,
1872 vlib_cli_command_t * cmd)
1873{
1874 app_cert_key_pair_t *ckpair;
1875 session_cli_return_if_not_enabled ();
1876
1877 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001878 pool_foreach (ckpair, app_main.cert_key_pair_store) {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001879 vlib_cli_output (vm, "%U", format_cert_key_pair, ckpair);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001880 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001881 /* *INDENT-ON* */
1882 return 0;
1883}
1884
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001885static inline void
1886appliction_format_app_mq (vlib_main_t * vm, application_t * app)
1887{
1888 app_worker_map_t *map;
1889 app_worker_t *wrk;
Florin Coras41d5f542021-01-15 13:49:33 -08001890 int i;
1891
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001892 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001893 pool_foreach (map, app->worker_maps) {
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001894 wrk = app_worker_get (map->wrk_index);
1895 vlib_cli_output (vm, "[A%d][%d]%U", app->app_index,
1896 map->wrk_index, format_svm_msg_q,
1897 wrk->event_queue);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001898 }
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001899 /* *INDENT-ON* */
Florin Coras41d5f542021-01-15 13:49:33 -08001900
1901 for (i = 0; i < vec_len (app->rx_mqs); i++)
1902 vlib_cli_output (vm, "[A%d][R%d]%U", app->app_index, i, format_svm_msg_q,
1903 app->rx_mqs[i].mq);
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001904}
1905
1906static clib_error_t *
1907appliction_format_all_app_mq (vlib_main_t * vm)
1908{
1909 application_t *app;
1910 int i, n_threads;
1911
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001912 n_threads = vlib_get_n_threads ();
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001913
1914 for (i = 0; i < n_threads; i++)
1915 {
1916 vlib_cli_output (vm, "[Ctrl%d]%U", i, format_svm_msg_q,
1917 session_main_get_vpp_event_queue (i));
1918 }
1919
1920 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001921 pool_foreach (app, app_main.app_pool) {
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001922 appliction_format_app_mq (vm, app);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001923 }
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001924 /* *INDENT-ON* */
1925 return 0;
1926}
1927
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001928static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05001929show_app_command_fn (vlib_main_t * vm, unformat_input_t * input,
1930 vlib_cli_command_t * cmd)
1931{
Florin Coras7e7b0302022-01-22 13:27:21 -08001932 int do_server = 0, do_client = 0, do_mq = 0, do_transports = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001933 application_t *app;
Florin Coras349f8ca2018-11-20 16:52:49 -08001934 u32 app_index = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001935 int verbose = 0;
Florin Coras7e7b0302022-01-22 13:27:21 -08001936 u8 is_ta;
Dave Barach68b0fb02017-02-28 15:15:56 -05001937
Florin Corascea194d2017-10-02 00:18:51 -07001938 session_cli_return_if_not_enabled ();
Florin Corase04c2992017-03-01 08:17:34 -08001939
Dave Barach68b0fb02017-02-28 15:15:56 -05001940 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1941 {
1942 if (unformat (input, "server"))
1943 do_server = 1;
1944 else if (unformat (input, "client"))
1945 do_client = 1;
Florin Coras7e7b0302022-01-22 13:27:21 -08001946 else if (unformat (input, "transports"))
1947 do_transports = 1;
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001948 else if (unformat (input, "mq"))
1949 do_mq = 1;
Florin Coras349f8ca2018-11-20 16:52:49 -08001950 else if (unformat (input, "%u", &app_index))
1951 ;
Dave Barach68b0fb02017-02-28 15:15:56 -05001952 else if (unformat (input, "verbose"))
1953 verbose = 1;
1954 else
Florin Coras349f8ca2018-11-20 16:52:49 -08001955 return clib_error_return (0, "unknown input `%U'",
1956 format_unformat_error, input);
Dave Barach68b0fb02017-02-28 15:15:56 -05001957 }
1958
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001959 if (do_mq && app_index != ~0)
1960 {
1961 app = application_get_if_valid (app_index);
1962 if (!app)
1963 return clib_error_return (0, "No app with index %u", app_index);
1964
1965 appliction_format_app_mq (vm, app);
1966 return 0;
1967 }
1968
1969 if (do_mq)
1970 {
1971 appliction_format_all_app_mq (vm);
1972 return 0;
1973 }
1974
Dave Barach68b0fb02017-02-28 15:15:56 -05001975 if (do_server)
Florin Coras349f8ca2018-11-20 16:52:49 -08001976 {
Florin Coras2b81e3c2019-02-27 07:55:46 -08001977 application_format_all_listeners (vm, verbose);
Florin Coras349f8ca2018-11-20 16:52:49 -08001978 return 0;
1979 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001980
1981 if (do_client)
Florin Coras349f8ca2018-11-20 16:52:49 -08001982 {
Florin Coras2b81e3c2019-02-27 07:55:46 -08001983 application_format_all_clients (vm, verbose);
Florin Coras349f8ca2018-11-20 16:52:49 -08001984 return 0;
1985 }
1986
1987 if (app_index != ~0)
1988 {
Florin Coras47c40e22018-11-26 17:01:36 -08001989 app = application_get_if_valid (app_index);
Florin Coras349f8ca2018-11-20 16:52:49 -08001990 if (!app)
1991 return clib_error_return (0, "No app with index %u", app_index);
1992
1993 vlib_cli_output (vm, "%U", format_application, app, /* verbose */ 1);
1994 return 0;
1995 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001996
Florin Coras6cf30ad2017-04-04 23:08:23 -07001997 /* Print app related info */
1998 if (!do_server && !do_client)
1999 {
Florin Coras349f8ca2018-11-20 16:52:49 -08002000 vlib_cli_output (vm, "%U", format_application, 0, 0);
Damjan Marionb2c31b62020-12-13 21:47:40 +01002001 pool_foreach (app, app_main.app_pool) {
Florin Coras7e7b0302022-01-22 13:27:21 -08002002 is_ta = app->flags & APP_OPTIONS_FLAGS_IS_TRANSPORT_APP;
2003 if ((!do_transports && !is_ta) || (do_transports && is_ta))
2004 vlib_cli_output (vm, "%U", format_application, app, 0);
Damjan Marionb2c31b62020-12-13 21:47:40 +01002005 }
Florin Coras6cf30ad2017-04-04 23:08:23 -07002006 }
2007
Dave Barach68b0fb02017-02-28 15:15:56 -05002008 return 0;
2009}
2010
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02002011/* Certificate store */
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002012
2013static app_cert_key_pair_t *
2014app_cert_key_pair_alloc ()
2015{
2016 app_cert_key_pair_t *ckpair;
2017 pool_get (app_main.cert_key_pair_store, ckpair);
2018 clib_memset (ckpair, 0, sizeof (*ckpair));
2019 ckpair->cert_key_index = ckpair - app_main.cert_key_pair_store;
2020 return ckpair;
2021}
2022
2023app_cert_key_pair_t *
2024app_cert_key_pair_get_if_valid (u32 index)
2025{
2026 if (pool_is_free_index (app_main.cert_key_pair_store, index))
2027 return 0;
2028 return app_cert_key_pair_get (index);
2029}
2030
2031app_cert_key_pair_t *
2032app_cert_key_pair_get (u32 index)
2033{
2034 return pool_elt_at_index (app_main.cert_key_pair_store, index);
2035}
2036
2037app_cert_key_pair_t *
2038app_cert_key_pair_get_default ()
2039{
2040 /* To maintain legacy bapi */
2041 return app_cert_key_pair_get (0);
2042}
2043
2044int
2045vnet_app_add_cert_key_pair (vnet_app_add_cert_key_pair_args_t * a)
2046{
2047 app_cert_key_pair_t *ckpair = app_cert_key_pair_alloc ();
Florin Corasa5a9efd2021-01-05 17:03:29 -08002048 vec_validate (ckpair->cert, a->cert_len - 1);
2049 clib_memcpy_fast (ckpair->cert, a->cert, a->cert_len);
2050 vec_validate (ckpair->key, a->key_len - 1);
2051 clib_memcpy_fast (ckpair->key, a->key, a->key_len);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002052 a->index = ckpair->cert_key_index;
2053 return 0;
2054}
2055
2056int
Nathan Skrzypczak7fbdb6a2019-10-09 16:23:26 +02002057vnet_app_add_cert_key_interest (u32 index, u32 app_index)
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002058{
2059 app_cert_key_pair_t *ckpair;
2060 if (!(ckpair = app_cert_key_pair_get_if_valid (index)))
2061 return -1;
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02002062 if (vec_search (ckpair->app_interests, app_index) != ~0)
2063 vec_add1 (ckpair->app_interests, app_index);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002064 return 0;
2065}
2066
2067int
2068vnet_app_del_cert_key_pair (u32 index)
2069{
2070 app_cert_key_pair_t *ckpair;
2071 application_t *app;
2072 u32 *app_index;
2073
2074 if (!(ckpair = app_cert_key_pair_get_if_valid (index)))
2075 return (VNET_API_ERROR_INVALID_VALUE);
2076
2077 vec_foreach (app_index, ckpair->app_interests)
2078 {
2079 if ((app = application_get_if_valid (*app_index))
2080 && app->cb_fns.app_cert_key_pair_delete_callback)
2081 app->cb_fns.app_cert_key_pair_delete_callback (ckpair);
2082 }
2083
2084 vec_free (ckpair->cert);
2085 vec_free (ckpair->key);
2086 pool_put (app_main.cert_key_pair_store, ckpair);
2087 return 0;
2088}
2089
2090clib_error_t *
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02002091application_init (vlib_main_t * vm)
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002092{
Florin Coras41d5f542021-01-15 13:49:33 -08002093 app_main_t *am = &app_main;
2094 u32 n_workers;
2095
2096 n_workers = vlib_num_workers ();
2097
Florin Corasa5a9efd2021-01-05 17:03:29 -08002098 /* Index 0 was originally used by legacy apis, maintain as invalid */
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002099 (void) app_cert_key_pair_alloc ();
Florin Coras41d5f542021-01-15 13:49:33 -08002100 am->last_crypto_engine = CRYPTO_ENGINE_LAST;
2101 am->app_by_name = hash_create_vec (0, sizeof (u8), sizeof (uword));
2102
2103 vec_validate (am->wrk, n_workers);
2104
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002105 return 0;
2106}
2107
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02002108VLIB_INIT_FUNCTION (application_init);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002109
Florin Coras7e7b0302022-01-22 13:27:21 -08002110VLIB_CLI_COMMAND (show_app_command, static) = {
Florin Corase04c2992017-03-01 08:17:34 -08002111 .path = "show app",
Florin Coras7e7b0302022-01-22 13:27:21 -08002112 .short_help = "show app [index] [server|client] [mq] [verbose] "
2113 "[transports]",
Florin Corase04c2992017-03-01 08:17:34 -08002114 .function = show_app_command_fn,
2115};
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002116
Florin Coras7e7b0302022-01-22 13:27:21 -08002117VLIB_CLI_COMMAND (show_certificate_command, static) = {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002118 .path = "show app certificate",
2119 .short_help = "list app certs and keys present in store",
2120 .function = show_certificate_command_fn,
2121};
Dave Barach68b0fb02017-02-28 15:15:56 -05002122
Florin Coras79ba25d2019-10-20 19:32:47 -07002123crypto_engine_type_t
2124app_crypto_engine_type_add (void)
2125{
2126 return (++app_main.last_crypto_engine);
2127}
2128
2129u8
2130app_crypto_engine_n_types (void)
2131{
2132 return (app_main.last_crypto_engine + 1);
2133}
2134
Dave Barach68b0fb02017-02-28 15:15:56 -05002135/*
2136 * fd.io coding-style-patch-verification: ON
2137 *
2138 * Local Variables:
2139 * eval: (c-set-style "gnu")
2140 * End:
2141 */