blob: 2c69138931d9452a98800e5aca7b91e5d7e400fa [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{
Florin Coras97fef282023-12-21 19:41:12 -080034 app_main_t *am = &app_main;
Florin Corasab2f6db2018-08-31 14:31:41 -070035 app_listener_t *app_listener;
Florin Coras97fef282023-12-21 19:41:12 -080036
37 pool_get (am->listeners, app_listener);
Dave Barachb7b92992018-10-17 10:38:51 -040038 clib_memset (app_listener, 0, sizeof (*app_listener));
Florin Coras97fef282023-12-21 19:41:12 -080039 app_listener->al_index = app_listener - am->listeners;
Florin Corasc9940fc2019-02-05 20:55:11 -080040 app_listener->app_index = app->app_index;
41 app_listener->session_index = SESSION_INVALID_INDEX;
42 app_listener->local_index = SESSION_INVALID_INDEX;
Florin Coras87d66332019-06-11 12:31:31 -070043 app_listener->ls_handle = SESSION_INVALID_HANDLE;
Florin Corasab2f6db2018-08-31 14:31:41 -070044 return app_listener;
45}
46
Florin Corasc9940fc2019-02-05 20:55:11 -080047app_listener_t *
Florin Coras97fef282023-12-21 19:41:12 -080048app_listener_get (u32 app_listener_index)
Florin Corasab2f6db2018-08-31 14:31:41 -070049{
Florin Coras97fef282023-12-21 19:41:12 -080050 app_main_t *am = &app_main;
51
52 return pool_elt_at_index (am->listeners, app_listener_index);
Florin Corasab2f6db2018-08-31 14:31:41 -070053}
54
55static void
56app_listener_free (application_t * app, app_listener_t * app_listener)
57{
Florin Coras97fef282023-12-21 19:41:12 -080058 app_main_t *am = &app_main;
59
Florin Corasab2f6db2018-08-31 14:31:41 -070060 clib_bitmap_free (app_listener->workers);
Florin Coras7428eaa2023-12-11 16:04:57 -080061 vec_free (app_listener->cl_listeners);
Florin Corasab2f6db2018-08-31 14:31:41 -070062 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -040063 clib_memset (app_listener, 0xfa, sizeof (*app_listener));
Florin Coras97fef282023-12-21 19:41:12 -080064 pool_put (am->listeners, app_listener);
Florin Corasab2f6db2018-08-31 14:31:41 -070065}
66
Florin Corasc9940fc2019-02-05 20:55:11 -080067session_handle_t
68app_listener_handle (app_listener_t * al)
69{
Florin Coras87d66332019-06-11 12:31:31 -070070 return al->ls_handle;
Florin Corasc9940fc2019-02-05 20:55:11 -080071}
72
Florin Coras87d66332019-06-11 12:31:31 -070073session_handle_t
74app_listen_session_handle (session_t * ls)
75{
76 app_listener_t *al;
Florin Coras97fef282023-12-21 19:41:12 -080077 /* TODO(fcoras): quic session handles */
78 if (ls->al_index == SESSION_INVALID_INDEX)
Florin Coras87d66332019-06-11 12:31:31 -070079 return listen_session_get_handle (ls);
Florin Coras97fef282023-12-21 19:41:12 -080080 al = app_listener_get (ls->al_index);
Florin Coras87d66332019-06-11 12:31:31 -070081 return al->ls_handle;
82}
83
Florin Corasc9940fc2019-02-05 20:55:11 -080084app_listener_t *
85app_listener_get_w_handle (session_handle_t handle)
86{
Florin Coras87d66332019-06-11 12:31:31 -070087 session_t *ls;
88 ls = session_get_from_handle_if_valid (handle);
89 if (!ls)
Florin Corasc9940fc2019-02-05 20:55:11 -080090 return 0;
Florin Coras97fef282023-12-21 19:41:12 -080091 return app_listener_get (ls->al_index);
Florin Corasc9940fc2019-02-05 20:55:11 -080092}
93
94app_listener_t *
95app_listener_lookup (application_t * app, session_endpoint_cfg_t * sep_ext)
96{
97 u32 table_index, fib_proto;
98 session_endpoint_t *sep;
99 session_handle_t handle;
Florin Corasc9940fc2019-02-05 20:55:11 -0800100 session_t *ls;
liuyacan694046c2021-04-30 08:57:37 +0000101 void *iface_ip;
102 ip46_address_t original_ip;
Florin Corasc9940fc2019-02-05 20:55:11 -0800103
104 sep = (session_endpoint_t *) sep_ext;
105 if (application_has_local_scope (app) && session_endpoint_is_local (sep))
106 {
107 table_index = application_local_session_table (app);
108 handle = session_lookup_endpoint_listener (table_index, sep, 1);
109 if (handle != SESSION_INVALID_HANDLE)
110 {
Florin Corasd4295e62019-02-22 13:11:38 -0800111 ls = listen_session_get_from_handle (handle);
Florin Coras97fef282023-12-21 19:41:12 -0800112 return app_listener_get (ls->al_index);
Florin Corasc9940fc2019-02-05 20:55:11 -0800113 }
114 }
115
116 fib_proto = session_endpoint_fib_proto (sep);
Florin Coras95cd8642019-12-30 21:53:19 -0800117 table_index = session_lookup_get_index_for_fib (fib_proto, sep->fib_index);
Florin Corasc9940fc2019-02-05 20:55:11 -0800118 handle = session_lookup_endpoint_listener (table_index, sep, 1);
119 if (handle != SESSION_INVALID_HANDLE)
120 {
121 ls = listen_session_get_from_handle (handle);
Florin Coras97fef282023-12-21 19:41:12 -0800122 return app_listener_get (ls->al_index);
Florin Corasc9940fc2019-02-05 20:55:11 -0800123 }
124
liuyacan694046c2021-04-30 08:57:37 +0000125 /*
126 * When binds to "inaddr_any", we add zero address in the local lookup table
127 * and interface address in the global lookup table. If local scope disable,
128 * the latter is the only clue to find the listener.
129 */
130 if (!application_has_local_scope (app) &&
131 ip_is_zero (&sep_ext->ip, sep_ext->is_ip4) &&
132 sep_ext->sw_if_index != ENDPOINT_INVALID_INDEX)
133 {
134 if ((iface_ip = ip_interface_get_first_ip (sep_ext->sw_if_index,
135 sep_ext->is_ip4)))
136 {
137 ip_copy (&original_ip, &sep_ext->ip, sep_ext->is_ip4);
138 ip_set (&sep_ext->ip, iface_ip, sep_ext->is_ip4);
139 handle = session_lookup_endpoint_listener (table_index, sep, 1);
140 ip_copy (&sep_ext->ip, &original_ip, sep_ext->is_ip4);
141 if (handle != SESSION_INVALID_HANDLE)
142 {
143 ls = listen_session_get_from_handle (handle);
Florin Coras97fef282023-12-21 19:41:12 -0800144 return app_listener_get (ls->al_index);
liuyacan694046c2021-04-30 08:57:37 +0000145 }
146 }
147 }
148
Florin Corasc9940fc2019-02-05 20:55:11 -0800149 return 0;
150}
151
152int
153app_listener_alloc_and_init (application_t * app,
154 session_endpoint_cfg_t * sep,
155 app_listener_t ** listener)
156{
157 app_listener_t *app_listener;
Florin Corasd4295e62019-02-22 13:11:38 -0800158 transport_connection_t *tc;
Florin Coras95cd8642019-12-30 21:53:19 -0800159 u32 al_index, table_index;
Florin Corasc9940fc2019-02-05 20:55:11 -0800160 session_handle_t lh;
161 session_type_t st;
162 session_t *ls = 0;
163 int rv;
164
165 app_listener = app_listener_alloc (app);
Florin Corasa27a46e2019-02-18 13:02:28 -0800166 al_index = app_listener->al_index;
Florin Corasc9940fc2019-02-05 20:55:11 -0800167 st = session_type_from_proto_and_ip (sep->transport_proto, sep->is_ip4);
168
169 /*
170 * Add session endpoint to local session table. Only binds to "inaddr_any"
171 * (i.e., zero address) are added to local scope table.
172 */
173 if (application_has_local_scope (app)
174 && session_endpoint_is_local ((session_endpoint_t *) sep))
175 {
Florin Corasd4295e62019-02-22 13:11:38 -0800176 session_type_t local_st;
Florin Corasc9940fc2019-02-05 20:55:11 -0800177
Florin Corasd4295e62019-02-22 13:11:38 -0800178 local_st = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE,
179 sep->is_ip4);
180 ls = listen_session_alloc (0, local_st);
Florin Corasd4295e62019-02-22 13:11:38 -0800181 ls->app_wrk_index = sep->app_wrk_index;
182 lh = session_handle (ls);
183
184 if ((rv = session_listen (ls, sep)))
185 {
186 ls = session_get_from_handle (lh);
187 session_free (ls);
Xiaoming Jiang1f704252023-04-19 08:41:29 +0000188 app_listener_free (app, app_listener);
Florin Corasd4295e62019-02-22 13:11:38 -0800189 return rv;
190 }
191
192 ls = session_get_from_handle (lh);
Florin Coras97fef282023-12-21 19:41:12 -0800193 app_listener = app_listener_get (al_index);
Florin Corasd4295e62019-02-22 13:11:38 -0800194 app_listener->local_index = ls->session_index;
Florin Coras87d66332019-06-11 12:31:31 -0700195 app_listener->ls_handle = lh;
Florin Corasd4295e62019-02-22 13:11:38 -0800196 ls->al_index = al_index;
197
Florin Corasc9940fc2019-02-05 20:55:11 -0800198 table_index = application_local_session_table (app);
Florin Corasc9940fc2019-02-05 20:55:11 -0800199 session_lookup_add_session_endpoint (table_index,
200 (session_endpoint_t *) sep, lh);
Florin Corasc9940fc2019-02-05 20:55:11 -0800201 }
202
203 if (application_has_global_scope (app))
204 {
205 /*
206 * Start listening on local endpoint for requested transport and scope.
207 * Creates a stream session with state LISTENING to be used in session
208 * lookups, prior to establishing connection. Requests transport to
209 * build it's own specific listening connection.
210 */
Florin Corasba7d8f52019-02-22 13:11:38 -0800211 ls = listen_session_alloc (0, st);
Florin Corasc9940fc2019-02-05 20:55:11 -0800212 ls->app_wrk_index = sep->app_wrk_index;
213
214 /* Listen pool can be reallocated if the transport is
215 * recursive (tls) */
Florin Corasd4295e62019-02-22 13:11:38 -0800216 lh = listen_session_get_handle (ls);
Florin Corasc9940fc2019-02-05 20:55:11 -0800217
218 if ((rv = session_listen (ls, sep)))
219 {
Florin Corasd4295e62019-02-22 13:11:38 -0800220 ls = listen_session_get_from_handle (lh);
Florin Corasc9940fc2019-02-05 20:55:11 -0800221 session_free (ls);
Xiaoming Jiang1f704252023-04-19 08:41:29 +0000222 app_listener_free (app, app_listener);
Florin Corasc9940fc2019-02-05 20:55:11 -0800223 return rv;
224 }
Florin Corasd4295e62019-02-22 13:11:38 -0800225 ls = listen_session_get_from_handle (lh);
Florin Coras97fef282023-12-21 19:41:12 -0800226 app_listener = app_listener_get (al_index);
Florin Corasc9940fc2019-02-05 20:55:11 -0800227 app_listener->session_index = ls->session_index;
Florin Coras87d66332019-06-11 12:31:31 -0700228 app_listener->ls_handle = lh;
Florin Corasa27a46e2019-02-18 13:02:28 -0800229 ls->al_index = al_index;
Florin Corasd4295e62019-02-22 13:11:38 -0800230
231 /* Add to the global lookup table after transport was initialized.
232 * Lookup table needs to be populated only now because sessions
233 * with cut-through transport are are added to app local tables that
234 * are not related to network fibs, i.e., cannot be added as
235 * connections */
236 tc = session_get_transport (ls);
Nathan Skrzypczak2eed1a12019-07-04 14:26:21 +0200237 if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
Florin Coras95cd8642019-12-30 21:53:19 -0800238 {
239 fib_protocol_t fib_proto;
240 fib_proto = session_endpoint_fib_proto ((session_endpoint_t *) sep);
Florin Corasa4d09562021-07-08 08:25:09 -0700241 /* Assume namespace vetted previously so make sure table exists */
242 table_index = session_lookup_get_or_alloc_index_for_fib (
243 fib_proto, sep->fib_index);
Florin Coras95cd8642019-12-30 21:53:19 -0800244 session_lookup_add_session_endpoint (table_index,
245 (session_endpoint_t *) sep,
246 lh);
247 }
Florin Corasc9940fc2019-02-05 20:55:11 -0800248 }
249
Florin Coras2b81e3c2019-02-27 07:55:46 -0800250 if (!ls)
Florin Corasc9940fc2019-02-05 20:55:11 -0800251 {
252 app_listener_free (app, app_listener);
253 return -1;
254 }
255
256 *listener = app_listener;
257 return 0;
258}
259
260void
261app_listener_cleanup (app_listener_t * al)
262{
263 application_t *app = application_get (al->app_index);
Florin Corasd4295e62019-02-22 13:11:38 -0800264 session_t *ls;
Florin Corasc9940fc2019-02-05 20:55:11 -0800265
266 if (al->session_index != SESSION_INVALID_INDEX)
267 {
Florin Corasd4295e62019-02-22 13:11:38 -0800268 ls = session_get (al->session_index, 0);
Florin Corasc9940fc2019-02-05 20:55:11 -0800269 session_stop_listen (ls);
Florin Corasba7d8f52019-02-22 13:11:38 -0800270 listen_session_free (ls);
Florin Corasc9940fc2019-02-05 20:55:11 -0800271 }
272 if (al->local_index != SESSION_INVALID_INDEX)
273 {
274 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
Florin Corasc9940fc2019-02-05 20:55:11 -0800275 u32 table_index;
276
277 table_index = application_local_session_table (app);
Florin Corasd4295e62019-02-22 13:11:38 -0800278 ls = listen_session_get (al->local_index);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800279 ct_session_endpoint (ls, &sep);
Florin Corasc9940fc2019-02-05 20:55:11 -0800280 session_lookup_del_session_endpoint (table_index, &sep);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800281 session_stop_listen (ls);
Florin Corasd4295e62019-02-22 13:11:38 -0800282 listen_session_free (ls);
Florin Corasc9940fc2019-02-05 20:55:11 -0800283 }
284 app_listener_free (app, al);
285}
286
Florin Coras11e2cf52019-03-06 12:04:24 -0800287static app_worker_t *
Florin Coras97fef282023-12-21 19:41:12 -0800288app_listener_select_worker (app_listener_t *al)
Florin Corasc9940fc2019-02-05 20:55:11 -0800289{
Florin Coras97fef282023-12-21 19:41:12 -0800290 application_t *app;
Florin Corasc9940fc2019-02-05 20:55:11 -0800291 u32 wrk_index;
292
293 app = application_get (al->app_index);
294 wrk_index = clib_bitmap_next_set (al->workers, al->accept_rotor + 1);
295 if (wrk_index == ~0)
296 wrk_index = clib_bitmap_first_set (al->workers);
297
298 ASSERT (wrk_index != ~0);
299 al->accept_rotor = wrk_index;
300 return application_get_worker (app, wrk_index);
301}
302
303session_t *
304app_listener_get_session (app_listener_t * al)
305{
306 if (al->session_index == SESSION_INVALID_INDEX)
307 return 0;
308
309 return listen_session_get (al->session_index);
Florin Corasab2f6db2018-08-31 14:31:41 -0700310}
311
Florin Corasd4295e62019-02-22 13:11:38 -0800312session_t *
313app_listener_get_local_session (app_listener_t * al)
314{
315 if (al->local_index == SESSION_INVALID_INDEX)
316 return 0;
317 return listen_session_get (al->local_index);
318}
319
Florin Coras7428eaa2023-12-11 16:04:57 -0800320session_t *
321app_listener_get_wrk_cl_session (app_listener_t *al, u32 wrk_map_index)
322{
323 u32 si = vec_elt (al->cl_listeners, wrk_map_index);
324 return session_get (si, 0 /* listener thread */);
325}
326
Florin Coras15531972018-08-12 23:50:53 -0700327static app_worker_map_t *
328app_worker_map_alloc (application_t * app)
329{
330 app_worker_map_t *map;
331 pool_get (app->worker_maps, map);
Dave Barachb7b92992018-10-17 10:38:51 -0400332 clib_memset (map, 0, sizeof (*map));
Florin Coras15531972018-08-12 23:50:53 -0700333 return map;
334}
Dave Barach68b0fb02017-02-28 15:15:56 -0500335
Florin Coras15531972018-08-12 23:50:53 -0700336static u32
337app_worker_map_index (application_t * app, app_worker_map_t * map)
338{
339 return (map - app->worker_maps);
340}
341
342static void
343app_worker_map_free (application_t * app, app_worker_map_t * map)
344{
345 pool_put (app->worker_maps, map);
346}
347
348static app_worker_map_t *
349app_worker_map_get (application_t * app, u32 map_index)
350{
Florin Coras01f3f892018-12-02 12:45:53 -0800351 if (pool_is_free_index (app->worker_maps, map_index))
352 return 0;
Florin Coras15531972018-08-12 23:50:53 -0700353 return pool_elt_at_index (app->worker_maps, map_index);
354}
Florin Coras0bee9ce2018-03-22 21:24:31 -0700355
Florin Coras053a0e42018-11-13 15:52:38 -0800356static const u8 *
Florin Coras0bee9ce2018-03-22 21:24:31 -0700357app_get_name (application_t * app)
358{
Florin Coras0bee9ce2018-03-22 21:24:31 -0700359 return app->name;
360}
361
Florin Corascea194d2017-10-02 00:18:51 -0700362u32
363application_session_table (application_t * app, u8 fib_proto)
364{
365 app_namespace_t *app_ns;
366 app_ns = app_namespace_get (app->ns_index);
367 if (!application_has_global_scope (app))
368 return APP_INVALID_INDEX;
369 if (fib_proto == FIB_PROTOCOL_IP4)
370 return session_lookup_get_index_for_fib (fib_proto,
371 app_ns->ip4_fib_index);
372 else
373 return session_lookup_get_index_for_fib (fib_proto,
374 app_ns->ip6_fib_index);
375}
376
377u32
378application_local_session_table (application_t * app)
379{
380 app_namespace_t *app_ns;
381 if (!application_has_local_scope (app))
382 return APP_INVALID_INDEX;
383 app_ns = app_namespace_get (app->ns_index);
384 return app_ns->local_table_index;
385}
386
Florin Corascea194d2017-10-02 00:18:51 -0700387/**
Florin Coras053a0e42018-11-13 15:52:38 -0800388 * Returns app name for app-index
Florin Corascea194d2017-10-02 00:18:51 -0700389 */
Florin Coras053a0e42018-11-13 15:52:38 -0800390const u8 *
Florin Corascea194d2017-10-02 00:18:51 -0700391application_name_from_index (u32 app_index)
392{
393 application_t *app = application_get (app_index);
394 if (!app)
395 return 0;
Florin Coras053a0e42018-11-13 15:52:38 -0800396 return app_get_name (app);
397}
398
399static void
400application_api_table_add (u32 app_index, u32 api_client_index)
401{
Florin Corasc1f5a432018-11-20 11:31:26 -0800402 if (api_client_index != APP_INVALID_INDEX)
403 hash_set (app_main.app_by_api_client_index, api_client_index, app_index);
Florin Coras053a0e42018-11-13 15:52:38 -0800404}
405
406static void
407application_api_table_del (u32 api_client_index)
408{
409 hash_unset (app_main.app_by_api_client_index, api_client_index);
Florin Corascea194d2017-10-02 00:18:51 -0700410}
411
Dave Barach68b0fb02017-02-28 15:15:56 -0500412static void
Florin Corasc1f5a432018-11-20 11:31:26 -0800413application_name_table_add (application_t * app)
Dave Barach68b0fb02017-02-28 15:15:56 -0500414{
Florin Corasc1f5a432018-11-20 11:31:26 -0800415 hash_set_mem (app_main.app_by_name, app->name, app->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500416}
417
418static void
Florin Corasc1f5a432018-11-20 11:31:26 -0800419application_name_table_del (application_t * app)
Dave Barach68b0fb02017-02-28 15:15:56 -0500420{
Florin Corasc1f5a432018-11-20 11:31:26 -0800421 hash_unset_mem (app_main.app_by_name, app->name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500422}
423
424application_t *
425application_lookup (u32 api_client_index)
426{
427 uword *p;
Florin Coras15531972018-08-12 23:50:53 -0700428 p = hash_get (app_main.app_by_api_client_index, api_client_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500429 if (p)
Florin Coras053a0e42018-11-13 15:52:38 -0800430 return application_get_if_valid (p[0]);
Dave Barach68b0fb02017-02-28 15:15:56 -0500431
432 return 0;
433}
434
Florin Coras6cf30ad2017-04-04 23:08:23 -0700435application_t *
Florin Coras0bee9ce2018-03-22 21:24:31 -0700436application_lookup_name (const u8 * name)
437{
438 uword *p;
Florin Coras15531972018-08-12 23:50:53 -0700439 p = hash_get_mem (app_main.app_by_name, name);
Florin Coras0bee9ce2018-03-22 21:24:31 -0700440 if (p)
441 return application_get (p[0]);
442
443 return 0;
444}
445
Florin Coras41d5f542021-01-15 13:49:33 -0800446void
447appsl_pending_rx_mqs_add_tail (appsl_wrk_t *aw, app_rx_mq_elt_t *elt)
448{
449 app_rx_mq_elt_t *head;
450
451 if (!aw->pending_rx_mqs)
452 {
453 elt->next = elt->prev = elt;
454 aw->pending_rx_mqs = elt;
455 return;
456 }
457
458 head = aw->pending_rx_mqs;
459
460 ASSERT (head != elt);
461
462 elt->prev = head->prev;
463 elt->next = head;
464
465 head->prev->next = elt;
466 head->prev = elt;
467}
468
469void
470appsl_pending_rx_mqs_del (appsl_wrk_t *aw, app_rx_mq_elt_t *elt)
471{
472 if (elt->next == elt)
473 {
474 elt->next = elt->prev = 0;
475 aw->pending_rx_mqs = 0;
476 return;
477 }
478
479 if (elt == aw->pending_rx_mqs)
480 aw->pending_rx_mqs = elt->next;
481
482 elt->next->prev = elt->prev;
483 elt->prev->next = elt->next;
484 elt->next = elt->prev = 0;
485}
486
487vlib_node_registration_t appsl_rx_mqs_input_node;
488
489VLIB_NODE_FN (appsl_rx_mqs_input_node)
490(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
491{
492 u32 thread_index = vm->thread_index, n_msgs = 0;
493 app_rx_mq_elt_t *elt, *next;
494 app_main_t *am = &app_main;
495 session_worker_t *wrk;
496 int __clib_unused rv;
497 appsl_wrk_t *aw;
498 u64 buf;
499
500 aw = &am->wrk[thread_index];
501 elt = aw->pending_rx_mqs;
502 if (!elt)
503 return 0;
504
505 wrk = session_main_get_worker (thread_index);
506
507 do
508 {
509 if (!(elt->flags & APP_RX_MQ_F_POSTPONED))
510 rv = read (svm_msg_q_get_eventfd (elt->mq), &buf, sizeof (buf));
511 n_msgs += session_wrk_handle_mq (wrk, elt->mq);
512
513 next = elt->next;
514 appsl_pending_rx_mqs_del (aw, elt);
515 if (!svm_msg_q_is_empty (elt->mq))
516 {
517 elt->flags |= APP_RX_MQ_F_POSTPONED;
518 appsl_pending_rx_mqs_add_tail (aw, elt);
519 }
520 else
521 {
522 elt->flags = 0;
523 }
524 elt = next;
525 }
526 while (aw->pending_rx_mqs && elt != aw->pending_rx_mqs);
527
528 if (aw->pending_rx_mqs)
529 vlib_node_set_interrupt_pending (vm, appsl_rx_mqs_input_node.index);
530
Florin Coras7da88292021-03-18 15:04:34 -0700531 if (n_msgs && wrk->state == SESSION_WRK_INTERRUPT)
532 vlib_node_set_interrupt_pending (vm, session_queue_node.index);
533
Florin Coras41d5f542021-01-15 13:49:33 -0800534 return n_msgs;
535}
536
537VLIB_REGISTER_NODE (appsl_rx_mqs_input_node) = {
538 .name = "appsl-rx-mqs-input",
539 .type = VLIB_NODE_TYPE_INPUT,
540 .state = VLIB_NODE_STATE_DISABLED,
541};
542
543static clib_error_t *
544app_rx_mq_fd_read_ready (clib_file_t *cf)
545{
546 app_rx_mq_handle_t *handle = (app_rx_mq_handle_t *) &cf->private_data;
547 vlib_main_t *vm = vlib_get_main ();
548 app_main_t *am = &app_main;
549 app_rx_mq_elt_t *mqe;
550 application_t *app;
551 appsl_wrk_t *aw;
552
553 ASSERT (vlib_get_thread_index () == handle->thread_index);
554 app = application_get_if_valid (handle->app_index);
555 if (!app)
556 return 0;
557
558 mqe = &app->rx_mqs[handle->thread_index];
559 if ((mqe->flags & APP_RX_MQ_F_PENDING) || svm_msg_q_is_empty (mqe->mq))
560 return 0;
561
562 aw = &am->wrk[handle->thread_index];
563 appsl_pending_rx_mqs_add_tail (aw, mqe);
564 mqe->flags |= APP_RX_MQ_F_PENDING;
565
566 vlib_node_set_interrupt_pending (vm, appsl_rx_mqs_input_node.index);
567
568 return 0;
569}
570
571static clib_error_t *
572app_rx_mq_fd_write_ready (clib_file_t *cf)
573{
574 clib_warning ("should not be called");
575 return 0;
576}
577
578static void
579app_rx_mqs_epoll_add (application_t *app, app_rx_mq_elt_t *mqe)
580{
581 clib_file_t template = { 0 };
582 app_rx_mq_handle_t handle;
583 u32 thread_index;
584 int fd;
585
586 thread_index = mqe - app->rx_mqs;
587 fd = svm_msg_q_get_eventfd (mqe->mq);
588
589 handle.app_index = app->app_index;
590 handle.thread_index = thread_index;
591
592 template.read_function = app_rx_mq_fd_read_ready;
593 template.write_function = app_rx_mq_fd_write_ready;
594 template.file_descriptor = fd;
595 template.private_data = handle.as_u64;
596 template.polling_thread_index = thread_index;
597 template.description =
598 format (0, "app-%u-rx-mq-%u", app->app_index, thread_index);
599 mqe->file_index = clib_file_add (&file_main, &template);
600}
601
602static void
603app_rx_mqs_epoll_del (application_t *app, app_rx_mq_elt_t *mqe)
604{
605 u32 thread_index = mqe - app->rx_mqs;
606 app_main_t *am = &app_main;
607 appsl_wrk_t *aw;
608
609 aw = &am->wrk[thread_index];
610
Florin Coras87d81ae2021-03-31 21:05:24 -0700611 session_wrk_handle_mq (session_main_get_worker (thread_index), mqe->mq);
612
Florin Coras41d5f542021-01-15 13:49:33 -0800613 if (mqe->flags & APP_RX_MQ_F_PENDING)
Florin Coras87d81ae2021-03-31 21:05:24 -0700614 appsl_pending_rx_mqs_del (aw, mqe);
Florin Coras41d5f542021-01-15 13:49:33 -0800615
616 clib_file_del_by_index (&file_main, mqe->file_index);
617}
618
619svm_msg_q_t *
620application_rx_mq_get (application_t *app, u32 mq_index)
621{
622 if (!app->rx_mqs)
623 return 0;
624
625 return app->rx_mqs[mq_index].mq;
626}
627
628static int
629app_rx_mqs_alloc (application_t *app)
630{
631 u32 evt_q_length, evt_size = sizeof (session_event_t);
632 fifo_segment_t *eqs = &app->rx_mqs_segment;
633 u32 n_mqs = vlib_num_workers () + 1;
634 segment_manager_props_t *props;
635 int i;
636
637 props = application_segment_manager_properties (app);
638 evt_q_length = clib_max (props->evt_q_size, 128);
639
640 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
641 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
642 { evt_q_length, evt_size, 0 }, { evt_q_length >> 1, 256, 0 }
643 };
644 cfg->consumer_pid = 0;
645 cfg->n_rings = 2;
646 cfg->q_nitems = evt_q_length;
647 cfg->ring_cfgs = rc;
648
Florin Corasa54b62d2021-04-21 09:05:56 -0700649 eqs->ssvm.ssvm_size = svm_msg_q_size_to_alloc (cfg) * n_mqs + (1 << 20);
Xiaoming Jiang3d3dc292021-10-13 03:11:40 +0000650 eqs->ssvm.name = format (0, "%v-rx-mqs-seg%c", app->name, 0);
Florin Coras41d5f542021-01-15 13:49:33 -0800651
652 if (ssvm_server_init (&eqs->ssvm, SSVM_SEGMENT_MEMFD))
653 {
654 clib_warning ("failed to initialize queue segment");
655 return SESSION_E_SEG_CREATE;
656 }
657
658 fifo_segment_init (eqs);
659
660 /* Fifo segment filled only with mqs */
661 eqs->h->n_mqs = n_mqs;
662 vec_validate (app->rx_mqs, n_mqs - 1);
663
664 for (i = 0; i < n_mqs; i++)
665 {
666 app->rx_mqs[i].mq = fifo_segment_msg_q_alloc (eqs, i, cfg);
667 if (svm_msg_q_alloc_eventfd (app->rx_mqs[i].mq))
668 {
669 clib_warning ("eventfd returned");
670 fifo_segment_cleanup (eqs);
671 ssvm_delete (&eqs->ssvm);
672 return SESSION_E_EVENTFD_ALLOC;
673 }
674 app_rx_mqs_epoll_add (app, &app->rx_mqs[i]);
675 app->rx_mqs[i].app_index = app->app_index;
676 }
677
678 return 0;
679}
680
681u8
682application_use_private_rx_mqs (void)
683{
684 return session_main.use_private_rx_mqs;
685}
686
687fifo_segment_t *
688application_get_rx_mqs_segment (application_t *app)
689{
690 if (application_use_private_rx_mqs ())
691 return &app->rx_mqs_segment;
Florin Coras8afe1b82021-11-17 23:38:54 -0800692 return session_main_get_wrk_mqs_segment ();
Florin Coras41d5f542021-01-15 13:49:33 -0800693}
694
695void
696application_enable_rx_mqs_nodes (u8 is_en)
697{
698 u8 state = is_en ? VLIB_NODE_STATE_INTERRUPT : VLIB_NODE_STATE_DISABLED;
699
700 foreach_vlib_main ()
701 vlib_node_set_state (this_vlib_main, appsl_rx_mqs_input_node.index, state);
702}
703
Florin Corasc1a42652019-02-08 18:27:29 -0800704static application_t *
Florin Coras15531972018-08-12 23:50:53 -0700705application_alloc (void)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700706{
707 application_t *app;
Florin Coras15531972018-08-12 23:50:53 -0700708 pool_get (app_main.app_pool, app);
Dave Barachb7b92992018-10-17 10:38:51 -0400709 clib_memset (app, 0, sizeof (*app));
Florin Coras15531972018-08-12 23:50:53 -0700710 app->app_index = app - app_main.app_pool;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700711 return app;
712}
713
Florin Coras15531972018-08-12 23:50:53 -0700714application_t *
715application_get (u32 app_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500716{
Florin Coras15531972018-08-12 23:50:53 -0700717 if (app_index == APP_INVALID_INDEX)
718 return 0;
719 return pool_elt_at_index (app_main.app_pool, app_index);
720}
Dave Barach68b0fb02017-02-28 15:15:56 -0500721
Florin Coras15531972018-08-12 23:50:53 -0700722application_t *
723application_get_if_valid (u32 app_index)
724{
725 if (pool_is_free_index (app_main.app_pool, app_index))
726 return 0;
Florin Corasa5464812017-04-19 13:00:05 -0700727
Florin Coras15531972018-08-12 23:50:53 -0700728 return pool_elt_at_index (app_main.app_pool, app_index);
729}
Florin Coras7999e832017-10-31 01:51:04 -0700730
Florin Coras0242d302022-12-22 15:03:44 -0800731static int
732_null_app_tx_callback (session_t *s)
733{
734 return 0;
735}
736
Florin Corasd79b41e2017-03-04 05:37:52 -0800737static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700738application_verify_cb_fns (session_cb_vft_t * cb_fns)
Florin Corasd79b41e2017-03-04 05:37:52 -0800739{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700740 if (cb_fns->session_accept_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800741 clib_warning ("No accept callback function provided");
Florin Coras6cf30ad2017-04-04 23:08:23 -0700742 if (cb_fns->session_connected_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800743 clib_warning ("No session connected callback function provided");
744 if (cb_fns->session_disconnect_callback == 0)
745 clib_warning ("No session disconnect callback function provided");
746 if (cb_fns->session_reset_callback == 0)
747 clib_warning ("No session reset callback function provided");
Florin Coras0242d302022-12-22 15:03:44 -0800748 if (!cb_fns->builtin_app_tx_callback)
749 cb_fns->builtin_app_tx_callback = _null_app_tx_callback;
Florin Corasd79b41e2017-03-04 05:37:52 -0800750}
751
Florin Corasb384b542018-01-15 01:08:33 -0800752/**
753 * Check app config for given segment type
754 *
755 * Returns 1 on success and 0 otherwise
756 */
757static u8
758application_verify_cfg (ssvm_segment_type_t st)
759{
760 u8 is_valid;
761 if (st == SSVM_SEGMENT_MEMFD)
762 {
Florin Coras8afe1b82021-11-17 23:38:54 -0800763 is_valid = (session_main_get_wrk_mqs_segment () != 0);
Florin Corasb384b542018-01-15 01:08:33 -0800764 if (!is_valid)
765 clib_warning ("memfd seg: vpp's event qs IN binary api svm region");
766 return is_valid;
767 }
768 else if (st == SSVM_SEGMENT_SHM)
769 {
Florin Coras8afe1b82021-11-17 23:38:54 -0800770 is_valid = (session_main_get_wrk_mqs_segment () == 0);
Florin Corasb384b542018-01-15 01:08:33 -0800771 if (!is_valid)
772 clib_warning ("shm seg: vpp's event qs NOT IN binary api svm region");
773 return is_valid;
774 }
775 else
776 return 1;
777}
778
Filip Tehlar0028e6f2023-06-28 10:47:32 +0200779static session_error_t
780application_alloc_and_init (app_init_args_t *a)
Dave Barach68b0fb02017-02-28 15:15:56 -0500781{
Florin Corasa332c462018-01-31 06:52:17 -0800782 ssvm_segment_type_t seg_type = SSVM_SEGMENT_MEMFD;
Florin Coras88001c62019-04-24 14:44:46 -0700783 segment_manager_props_t *props;
Florin Coras15531972018-08-12 23:50:53 -0700784 application_t *app;
Florin Corasbbc8fae2021-07-19 15:23:51 -0700785 u64 *opts;
Dave Barach68b0fb02017-02-28 15:15:56 -0500786
Florin Coras15531972018-08-12 23:50:53 -0700787 app = application_alloc ();
Florin Corasbbc8fae2021-07-19 15:23:51 -0700788 opts = a->options;
Florin Corasb384b542018-01-15 01:08:33 -0800789 /*
790 * Make sure we support the requested configuration
791 */
Florin Corasbbc8fae2021-07-19 15:23:51 -0700792 if ((opts[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_IS_BUILTIN) &&
793 !(opts[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_MEMFD_FOR_BUILTIN))
Florin Coras6c10ab22020-11-08 16:50:39 -0800794 seg_type = SSVM_SEGMENT_PRIVATE;
Florin Corasb384b542018-01-15 01:08:33 -0800795
Florin Corasbbc8fae2021-07-19 15:23:51 -0700796 if ((opts[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD) &&
797 seg_type != SSVM_SEGMENT_MEMFD)
Florin Corasd8402ae2019-03-03 16:46:52 -0800798 {
799 clib_warning ("mq eventfds can only be used if socket transport is "
800 "used for binary api");
Filip Tehlar0028e6f2023-06-28 10:47:32 +0200801 return SESSION_E_NOSUPPORT;
Florin Corasd8402ae2019-03-03 16:46:52 -0800802 }
803
Florin Corasa332c462018-01-31 06:52:17 -0800804 if (!application_verify_cfg (seg_type))
Filip Tehlar0028e6f2023-06-28 10:47:32 +0200805 return SESSION_E_NOSUPPORT;
Dave Barach68b0fb02017-02-28 15:15:56 -0500806
Florin Corasbbc8fae2021-07-19 15:23:51 -0700807 if (opts[APP_OPTIONS_PREALLOC_FIFO_PAIRS] &&
808 opts[APP_OPTIONS_PREALLOC_FIFO_HDRS])
Filip Tehlar0028e6f2023-06-28 10:47:32 +0200809 return SESSION_E_NOSUPPORT;
Florin Coras9845c202020-04-28 01:54:22 +0000810
Florin Coras15531972018-08-12 23:50:53 -0700811 /* Check that the obvious things are properly set up */
812 application_verify_cb_fns (a->session_cb_vft);
813
Florin Corasbbc8fae2021-07-19 15:23:51 -0700814 app->flags = opts[APP_OPTIONS_FLAGS];
Florin Coras15531972018-08-12 23:50:53 -0700815 app->cb_fns = *a->session_cb_vft;
Florin Corasbbc8fae2021-07-19 15:23:51 -0700816 app->ns_index = opts[APP_OPTIONS_NAMESPACE];
817 app->proxied_transports = opts[APP_OPTIONS_PROXY_TRANSPORT];
Florin Coras15531972018-08-12 23:50:53 -0700818 app->name = vec_dup (a->name);
819
820 /* If no scope enabled, default to global */
821 if (!application_has_global_scope (app)
822 && !application_has_local_scope (app))
823 app->flags |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
824
Florin Corasa332c462018-01-31 06:52:17 -0800825 props = application_segment_manager_properties (app);
Florin Coras88001c62019-04-24 14:44:46 -0700826 segment_manager_props_init (props);
Florin Corasbbc8fae2021-07-19 15:23:51 -0700827 props->segment_size = opts[APP_OPTIONS_SEGMENT_SIZE];
828 props->prealloc_fifos = opts[APP_OPTIONS_PREALLOC_FIFO_PAIRS];
829 props->prealloc_fifo_hdrs = opts[APP_OPTIONS_PREALLOC_FIFO_HDRS];
830 if (opts[APP_OPTIONS_ADD_SEGMENT_SIZE])
Florin Corasb384b542018-01-15 01:08:33 -0800831 {
Florin Corasbbc8fae2021-07-19 15:23:51 -0700832 props->add_segment_size = opts[APP_OPTIONS_ADD_SEGMENT_SIZE];
Florin Corasb384b542018-01-15 01:08:33 -0800833 props->add_segment = 1;
834 }
Junfeng Wangc795b882022-08-12 16:24:46 +0800835 if (opts[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_USE_HUGE_PAGE)
836 props->huge_page = 1;
Florin Corasbbc8fae2021-07-19 15:23:51 -0700837 if (opts[APP_OPTIONS_RX_FIFO_SIZE])
838 props->rx_fifo_size = opts[APP_OPTIONS_RX_FIFO_SIZE];
839 if (opts[APP_OPTIONS_TX_FIFO_SIZE])
840 props->tx_fifo_size = opts[APP_OPTIONS_TX_FIFO_SIZE];
841 if (opts[APP_OPTIONS_EVT_QUEUE_SIZE])
842 props->evt_q_size = opts[APP_OPTIONS_EVT_QUEUE_SIZE];
843 if (opts[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
Florin Coras99368312018-08-02 10:45:44 -0700844 props->use_mq_eventfd = 1;
Florin Corasbbc8fae2021-07-19 15:23:51 -0700845 if (opts[APP_OPTIONS_TLS_ENGINE])
846 app->tls_engine = opts[APP_OPTIONS_TLS_ENGINE];
847 if (opts[APP_OPTIONS_MAX_FIFO_SIZE])
848 props->max_fifo_size = opts[APP_OPTIONS_MAX_FIFO_SIZE];
849 if (opts[APP_OPTIONS_HIGH_WATERMARK])
850 props->high_watermark = opts[APP_OPTIONS_HIGH_WATERMARK];
851 if (opts[APP_OPTIONS_LOW_WATERMARK])
852 props->low_watermark = opts[APP_OPTIONS_LOW_WATERMARK];
853 if (opts[APP_OPTIONS_PCT_FIRST_ALLOC])
854 props->pct_first_alloc = opts[APP_OPTIONS_PCT_FIRST_ALLOC];
Florin Corasa332c462018-01-31 06:52:17 -0800855 props->segment_type = seg_type;
Dave Barach68b0fb02017-02-28 15:15:56 -0500856
Florin Coras15531972018-08-12 23:50:53 -0700857 /* Add app to lookup by api_client_index table */
Florin Corasc1f5a432018-11-20 11:31:26 -0800858 if (!application_is_builtin (app))
859 application_api_table_add (app->app_index, a->api_client_index);
860 else
861 application_name_table_add (app);
862
863 a->app_index = app->app_index;
Florin Corasa332c462018-01-31 06:52:17 -0800864
Florin Coras15531972018-08-12 23:50:53 -0700865 APP_DBG ("New app name: %v api index: %u index %u", app->name,
Nathan Skrzypczakba65ca42019-05-16 16:35:40 +0200866 a->api_client_index, app->app_index);
Florin Coras15531972018-08-12 23:50:53 -0700867
868 return 0;
869}
870
Florin Corasc1a42652019-02-08 18:27:29 -0800871static void
Florin Coras15531972018-08-12 23:50:53 -0700872application_free (application_t * app)
873{
874 app_worker_map_t *wrk_map;
875 app_worker_t *app_wrk;
876
877 /*
878 * The app event queue allocated in first segment is cleared with
879 * the segment manager. No need to explicitly free it.
880 */
Nathan Skrzypczakba65ca42019-05-16 16:35:40 +0200881 APP_DBG ("Delete app name %v index: %d", app->name, app->app_index);
Florin Coras15531972018-08-12 23:50:53 -0700882
883 if (application_is_proxy (app))
884 application_remove_proxy (app);
885
Florin Corasab2f6db2018-08-31 14:31:41 -0700886 /*
887 * Free workers
888 */
889
Florin Coras15531972018-08-12 23:50:53 -0700890 /* *INDENT-OFF* */
891 pool_flush (wrk_map, app->worker_maps, ({
892 app_wrk = app_worker_get (wrk_map->wrk_index);
893 app_worker_free (app_wrk);
894 }));
895 /* *INDENT-ON* */
896 pool_free (app->worker_maps);
897
Florin Corasab2f6db2018-08-31 14:31:41 -0700898 /*
Florin Coras41d5f542021-01-15 13:49:33 -0800899 * Free rx mqs if allocated
900 */
901 if (app->rx_mqs)
902 {
903 int i;
904 for (i = 0; i < vec_len (app->rx_mqs); i++)
905 app_rx_mqs_epoll_del (app, &app->rx_mqs[i]);
906
907 fifo_segment_cleanup (&app->rx_mqs_segment);
908 ssvm_delete (&app->rx_mqs_segment.ssvm);
909 vec_free (app->rx_mqs);
910 }
911
912 /*
Florin Corasab2f6db2018-08-31 14:31:41 -0700913 * Cleanup remaining state
914 */
Florin Corasc1f5a432018-11-20 11:31:26 -0800915 if (application_is_builtin (app))
916 application_name_table_del (app);
Florin Coras15531972018-08-12 23:50:53 -0700917 vec_free (app->name);
Florin Coras15531972018-08-12 23:50:53 -0700918 pool_put (app_main.app_pool, app);
919}
920
Florin Corasc1a42652019-02-08 18:27:29 -0800921static void
Florin Coras053a0e42018-11-13 15:52:38 -0800922application_detach_process (application_t * app, u32 api_client_index)
923{
924 vnet_app_worker_add_del_args_t _args = { 0 }, *args = &_args;
925 app_worker_map_t *wrk_map;
926 u32 *wrks = 0, *wrk_index;
927 app_worker_t *app_wrk;
928
929 if (api_client_index == ~0)
930 {
931 application_free (app);
932 return;
933 }
934
935 APP_DBG ("Detaching for app %v index %u api client index %u", app->name,
Nathan Skrzypczakba65ca42019-05-16 16:35:40 +0200936 app->app_index, api_client_index);
Florin Coras053a0e42018-11-13 15:52:38 -0800937
938 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100939 pool_foreach (wrk_map, app->worker_maps) {
Florin Coras053a0e42018-11-13 15:52:38 -0800940 app_wrk = app_worker_get (wrk_map->wrk_index);
Florin Corasc1f5a432018-11-20 11:31:26 -0800941 if (app_wrk->api_client_index == api_client_index)
Florin Coras053a0e42018-11-13 15:52:38 -0800942 vec_add1 (wrks, app_wrk->wrk_index);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100943 }
Florin Coras053a0e42018-11-13 15:52:38 -0800944 /* *INDENT-ON* */
945
946 if (!vec_len (wrks))
947 {
948 clib_warning ("no workers for app %u api_index %u", app->app_index,
949 api_client_index);
950 return;
951 }
952
953 args->app_index = app->app_index;
Florin Corasc1f5a432018-11-20 11:31:26 -0800954 args->api_client_index = api_client_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800955 vec_foreach (wrk_index, wrks)
956 {
957 app_wrk = app_worker_get (wrk_index[0]);
Florin Coras349f8ca2018-11-20 16:52:49 -0800958 args->wrk_map_index = app_wrk->wrk_map_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800959 args->is_add = 0;
960 vnet_app_worker_add_del (args);
961 }
962 vec_free (wrks);
963}
964
Nathan Skrzypczakb3ea73e2021-08-05 10:22:52 +0200965void
966application_namespace_cleanup (app_namespace_t *app_ns)
967{
968 u32 *app_indices = 0, *app_index;
969 application_t *app;
970 u32 ns_index;
971
972 ns_index = app_namespace_index (app_ns);
973 pool_foreach (app, app_main.app_pool)
974 if (app->ns_index == ns_index)
975 vec_add1 (app_indices, app->ns_index);
976
977 vec_foreach (app_index, app_indices)
978 {
979 app = application_get (*app_index);
980
981 if (application_is_proxy (app))
982 application_remove_proxy (app);
983 app->flags &= ~APP_OPTIONS_FLAGS_IS_PROXY;
984
985 application_free (app);
986 }
987 vec_free (app_indices);
988}
989
Florin Coras15531972018-08-12 23:50:53 -0700990app_worker_t *
991application_get_worker (application_t * app, u32 wrk_map_index)
992{
993 app_worker_map_t *map;
994 map = app_worker_map_get (app, wrk_map_index);
995 if (!map)
996 return 0;
997 return app_worker_get (map->wrk_index);
998}
999
1000app_worker_t *
1001application_get_default_worker (application_t * app)
1002{
1003 return application_get_worker (app, 0);
1004}
1005
Florin Coras053a0e42018-11-13 15:52:38 -08001006u32
1007application_n_workers (application_t * app)
1008{
1009 return pool_elts (app->worker_maps);
1010}
1011
Florin Coras15531972018-08-12 23:50:53 -07001012app_worker_t *
Florin Corasc9940fc2019-02-05 20:55:11 -08001013application_listener_select_worker (session_t * ls)
Florin Corasab2f6db2018-08-31 14:31:41 -07001014{
Florin Corasc9940fc2019-02-05 20:55:11 -08001015 app_listener_t *al;
Florin Corasab2f6db2018-08-31 14:31:41 -07001016
Florin Coras97fef282023-12-21 19:41:12 -08001017 al = app_listener_get (ls->al_index);
1018 return app_listener_select_worker (al);
Florin Corasab2f6db2018-08-31 14:31:41 -07001019}
1020
Florin Coras7428eaa2023-12-11 16:04:57 -08001021always_inline u32
1022app_listener_cl_flow_hash (session_dgram_hdr_t *hdr)
1023{
1024 u32 hash = 0;
1025
1026 if (hdr->is_ip4)
1027 {
1028 hash = clib_crc32c_u32 (hash, hdr->rmt_ip.ip4.as_u32);
1029 hash = clib_crc32c_u32 (hash, hdr->lcl_ip.ip4.as_u32);
1030 hash = clib_crc32c_u16 (hash, hdr->rmt_port);
1031 hash = clib_crc32c_u16 (hash, hdr->lcl_port);
1032 }
1033 else
1034 {
1035 hash = clib_crc32c_u64 (hash, hdr->rmt_ip.ip6.as_u64[0]);
1036 hash = clib_crc32c_u64 (hash, hdr->rmt_ip.ip6.as_u64[1]);
1037 hash = clib_crc32c_u64 (hash, hdr->lcl_ip.ip6.as_u64[0]);
1038 hash = clib_crc32c_u64 (hash, hdr->lcl_ip.ip6.as_u64[1]);
1039 hash = clib_crc32c_u16 (hash, hdr->rmt_port);
1040 hash = clib_crc32c_u16 (hash, hdr->lcl_port);
1041 }
1042
1043 return hash;
1044}
1045
1046session_t *
1047app_listener_select_wrk_cl_session (session_t *ls, session_dgram_hdr_t *hdr)
1048{
1049 u32 wrk_map_index = 0;
Florin Coras7428eaa2023-12-11 16:04:57 -08001050 app_listener_t *al;
1051
Florin Coras97fef282023-12-21 19:41:12 -08001052 al = app_listener_get (ls->al_index);
Florin Coras7428eaa2023-12-11 16:04:57 -08001053 /* Crude test to check if only worker 0 is set */
1054 if (al->workers[0] != 1)
1055 {
1056 u32 hash = app_listener_cl_flow_hash (hdr);
1057 hash %= vec_len (al->workers) * sizeof (uword);
1058 wrk_map_index = clib_bitmap_next_set (al->workers, hash);
1059 if (wrk_map_index == ~0)
1060 wrk_map_index = clib_bitmap_first_set (al->workers);
1061 }
1062
1063 return app_listener_get_wrk_cl_session (al, wrk_map_index);
1064}
1065
Florin Coras15531972018-08-12 23:50:53 -07001066int
Florin Coras623eb562019-02-03 19:28:34 -08001067application_alloc_worker_and_init (application_t * app, app_worker_t ** wrk)
Florin Coras15531972018-08-12 23:50:53 -07001068{
1069 app_worker_map_t *wrk_map;
1070 app_worker_t *app_wrk;
1071 segment_manager_t *sm;
1072 int rv;
1073
1074 app_wrk = app_worker_alloc (app);
1075 wrk_map = app_worker_map_alloc (app);
1076 wrk_map->wrk_index = app_wrk->wrk_index;
1077 app_wrk->wrk_map_index = app_worker_map_index (app, wrk_map);
1078
1079 /*
1080 * Setup first segment manager
1081 */
Florin Coras88001c62019-04-24 14:44:46 -07001082 sm = segment_manager_alloc ();
Florin Coras15531972018-08-12 23:50:53 -07001083 sm->app_wrk_index = app_wrk->wrk_index;
1084
Florin Corasa107f402020-09-29 19:18:46 -07001085 if ((rv = segment_manager_init_first (sm)))
Florin Coras15531972018-08-12 23:50:53 -07001086 {
1087 app_worker_free (app_wrk);
1088 return rv;
1089 }
Florin Corasc87c91d2017-08-16 19:55:49 -07001090 sm->first_is_protected = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001091
Florin Corascea194d2017-10-02 00:18:51 -07001092 /*
Florin Coras15531972018-08-12 23:50:53 -07001093 * Setup app worker
Florin Corascea194d2017-10-02 00:18:51 -07001094 */
Florin Coras94a6df02021-05-06 15:32:14 -07001095 app_wrk->connects_seg_manager = segment_manager_index (sm);
Florin Coras15531972018-08-12 23:50:53 -07001096 app_wrk->listeners_table = hash_create (0, sizeof (u64));
1097 app_wrk->event_queue = segment_manager_event_queue (sm);
1098 app_wrk->app_is_builtin = application_is_builtin (app);
Dave Barach68b0fb02017-02-28 15:15:56 -05001099
Florin Coras15531972018-08-12 23:50:53 -07001100 *wrk = app_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08001101
Florin Coras6cf30ad2017-04-04 23:08:23 -07001102 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001103}
1104
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001105session_error_t
1106vnet_app_worker_add_del (vnet_app_worker_add_del_args_t *a)
Florin Corasc1a42652019-02-08 18:27:29 -08001107{
Florin Coras88001c62019-04-24 14:44:46 -07001108 fifo_segment_t *fs;
Florin Corasc1a42652019-02-08 18:27:29 -08001109 app_worker_map_t *wrk_map;
1110 app_worker_t *app_wrk;
1111 segment_manager_t *sm;
1112 application_t *app;
1113 int rv;
1114
1115 app = application_get (a->app_index);
1116 if (!app)
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001117 return SESSION_E_INVALID;
Florin Corasc1a42652019-02-08 18:27:29 -08001118
1119 if (a->is_add)
1120 {
1121 if ((rv = application_alloc_worker_and_init (app, &app_wrk)))
1122 return rv;
1123
1124 /* Map worker api index to the app */
1125 app_wrk->api_client_index = a->api_client_index;
1126 application_api_table_add (app->app_index, a->api_client_index);
1127
Florin Coras94a6df02021-05-06 15:32:14 -07001128 sm = segment_manager_get (app_wrk->connects_seg_manager);
Florin Corasc1a42652019-02-08 18:27:29 -08001129 fs = segment_manager_get_segment_w_lock (sm, 0);
1130 a->segment = &fs->ssvm;
1131 a->segment_handle = segment_manager_segment_handle (sm, fs);
1132 segment_manager_segment_reader_unlock (sm);
1133 a->evt_q = app_wrk->event_queue;
1134 a->wrk_map_index = app_wrk->wrk_map_index;
1135 }
1136 else
1137 {
1138 wrk_map = app_worker_map_get (app, a->wrk_map_index);
1139 if (!wrk_map)
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001140 return SESSION_E_INVALID;
Florin Corasc1a42652019-02-08 18:27:29 -08001141
1142 app_wrk = app_worker_get (wrk_map->wrk_index);
1143 if (!app_wrk)
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001144 return SESSION_E_INVALID;
Florin Corasc1a42652019-02-08 18:27:29 -08001145
1146 application_api_table_del (app_wrk->api_client_index);
Florin Coras98078ab2021-08-12 18:12:09 -07001147 if (appns_sapi_enabled ())
1148 sapi_socket_close_w_handle (app_wrk->api_client_index);
Florin Corasc1a42652019-02-08 18:27:29 -08001149 app_worker_free (app_wrk);
1150 app_worker_map_free (app, wrk_map);
1151 if (application_n_workers (app) == 0)
1152 application_free (app);
1153 }
1154 return 0;
1155}
1156
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001157static session_error_t
1158app_validate_namespace (u8 *namespace_id, u64 secret, u32 *app_ns_index)
Florin Corasc1a42652019-02-08 18:27:29 -08001159{
1160 app_namespace_t *app_ns;
1161 if (vec_len (namespace_id) == 0)
1162 {
1163 /* Use default namespace */
1164 *app_ns_index = 0;
1165 return 0;
1166 }
1167
1168 *app_ns_index = app_namespace_index_from_id (namespace_id);
1169 if (*app_ns_index == APP_NAMESPACE_INVALID_INDEX)
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001170 return SESSION_E_INVALID_NS;
Florin Corasc1a42652019-02-08 18:27:29 -08001171 app_ns = app_namespace_get (*app_ns_index);
1172 if (!app_ns)
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001173 return SESSION_E_INVALID_NS;
Florin Corasc1a42652019-02-08 18:27:29 -08001174 if (app_ns->ns_secret != secret)
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001175 return SESSION_E_WRONG_NS_SECRET;
Florin Corasc1a42652019-02-08 18:27:29 -08001176 return 0;
1177}
1178
1179static u8 *
1180app_name_from_api_index (u32 api_client_index)
1181{
1182 vl_api_registration_t *regp;
1183 regp = vl_api_client_index_to_registration (api_client_index);
1184 if (regp)
Florin Corasbee97682019-04-09 16:13:18 -07001185 return format (0, "%s", regp->name);
Florin Corasc1a42652019-02-08 18:27:29 -08001186
1187 clib_warning ("api client index %u does not have an api registration!",
1188 api_client_index);
Florin Corasbee97682019-04-09 16:13:18 -07001189 return format (0, "unknown");
Florin Corasc1a42652019-02-08 18:27:29 -08001190}
1191
1192/**
1193 * Attach application to vpp
1194 *
1195 * Allocates a vpp app, i.e., a structure that keeps back pointers
1196 * to external app and a segment manager for shared memory fifo based
1197 * communication with the external app.
1198 */
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001199session_error_t
1200vnet_application_attach (vnet_app_attach_args_t *a)
Florin Corasc1a42652019-02-08 18:27:29 -08001201{
Florin Coras88001c62019-04-24 14:44:46 -07001202 fifo_segment_t *fs;
Florin Corasc1a42652019-02-08 18:27:29 -08001203 application_t *app = 0;
1204 app_worker_t *app_wrk;
1205 segment_manager_t *sm;
1206 u32 app_ns_index = 0;
1207 u8 *app_name = 0;
1208 u64 secret;
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001209 session_error_t rv;
Florin Corasc1a42652019-02-08 18:27:29 -08001210
1211 if (a->api_client_index != APP_INVALID_INDEX)
1212 app = application_lookup (a->api_client_index);
1213 else if (a->name)
1214 app = application_lookup_name (a->name);
1215 else
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001216 return SESSION_E_INVALID;
Florin Corasc1a42652019-02-08 18:27:29 -08001217
1218 if (app)
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001219 return SESSION_E_APP_ATTACHED;
Florin Corasc1a42652019-02-08 18:27:29 -08001220
Florin Coras61ae0562020-09-02 19:10:28 -07001221 /* Socket api sets the name and validates namespace prior to attach */
1222 if (!a->use_sock_api)
Florin Corasc1a42652019-02-08 18:27:29 -08001223 {
Florin Coras61ae0562020-09-02 19:10:28 -07001224 if (a->api_client_index != APP_INVALID_INDEX)
1225 {
1226 app_name = app_name_from_api_index (a->api_client_index);
1227 a->name = app_name;
1228 }
Florin Corasc1a42652019-02-08 18:27:29 -08001229
Florin Coras61ae0562020-09-02 19:10:28 -07001230 secret = a->options[APP_OPTIONS_NAMESPACE_SECRET];
Florin Coras6c10ab22020-11-08 16:50:39 -08001231 if ((rv = app_validate_namespace (a->namespace_id, secret,
1232 &app_ns_index)))
Florin Coras61ae0562020-09-02 19:10:28 -07001233 return rv;
1234 a->options[APP_OPTIONS_NAMESPACE] = app_ns_index;
1235 }
Florin Corasc1a42652019-02-08 18:27:29 -08001236
1237 if ((rv = application_alloc_and_init ((app_init_args_t *) a)))
1238 return rv;
1239
1240 app = application_get (a->app_index);
1241 if ((rv = application_alloc_worker_and_init (app, &app_wrk)))
1242 return rv;
1243
1244 a->app_evt_q = app_wrk->event_queue;
1245 app_wrk->api_client_index = a->api_client_index;
Florin Coras94a6df02021-05-06 15:32:14 -07001246 sm = segment_manager_get (app_wrk->connects_seg_manager);
Florin Corasc1a42652019-02-08 18:27:29 -08001247 fs = segment_manager_get_segment_w_lock (sm, 0);
1248
1249 if (application_is_proxy (app))
fanyfb8b6fe42020-09-17 22:10:41 +08001250 {
1251 application_setup_proxy (app);
Florin Coras2a7c0b62020-09-28 23:40:28 -07001252 /* The segment manager pool is reallocated because a new listener
1253 * is added. Re-grab segment manager to avoid dangling reference */
Florin Coras94a6df02021-05-06 15:32:14 -07001254 sm = segment_manager_get (app_wrk->connects_seg_manager);
fanyfb8b6fe42020-09-17 22:10:41 +08001255 }
Florin Corasc1a42652019-02-08 18:27:29 -08001256
1257 ASSERT (vec_len (fs->ssvm.name) <= 128);
1258 a->segment = &fs->ssvm;
1259 a->segment_handle = segment_manager_segment_handle (sm, fs);
1260
1261 segment_manager_segment_reader_unlock (sm);
Florin Coras41d5f542021-01-15 13:49:33 -08001262
1263 if (!application_is_builtin (app) && application_use_private_rx_mqs ())
1264 rv = app_rx_mqs_alloc (app);
1265
Florin Corasc1a42652019-02-08 18:27:29 -08001266 vec_free (app_name);
Florin Coras41d5f542021-01-15 13:49:33 -08001267 return rv;
Florin Corasc1a42652019-02-08 18:27:29 -08001268}
1269
1270/**
1271 * Detach application from vpp
1272 */
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001273session_error_t
1274vnet_application_detach (vnet_app_detach_args_t *a)
Florin Corasc1a42652019-02-08 18:27:29 -08001275{
1276 application_t *app;
1277
1278 app = application_get_if_valid (a->app_index);
1279 if (!app)
1280 {
1281 clib_warning ("app not attached");
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001282 return SESSION_E_NOAPP;
Florin Corasc1a42652019-02-08 18:27:29 -08001283 }
1284
1285 app_interface_check_thread_and_barrier (vnet_application_detach, a);
1286 application_detach_process (app, a->api_client_index);
1287 return 0;
1288}
1289
Florin Corasc1a42652019-02-08 18:27:29 -08001290static u8
Florin Coras8c2bdf82022-04-15 12:37:48 -07001291session_endpoint_in_ns (session_endpoint_cfg_t *sep)
Florin Corasc1a42652019-02-08 18:27:29 -08001292{
Florin Coras8c2bdf82022-04-15 12:37:48 -07001293 u8 is_lep;
1294
1295 if (sep->flags & SESSION_ENDPT_CFG_F_PROXY_LISTEN)
1296 return 1;
1297
1298 is_lep = session_endpoint_is_local ((session_endpoint_t *) sep);
Florin Corasc1a42652019-02-08 18:27:29 -08001299 if (!is_lep && sep->sw_if_index != ENDPOINT_INVALID_INDEX
1300 && !ip_interface_has_address (sep->sw_if_index, &sep->ip, sep->is_ip4))
1301 {
1302 clib_warning ("sw_if_index %u not configured with ip %U",
1303 sep->sw_if_index, format_ip46_address, &sep->ip,
1304 sep->is_ip4);
1305 return 0;
1306 }
Florin Coras8c2bdf82022-04-15 12:37:48 -07001307
Florin Corasc1a42652019-02-08 18:27:29 -08001308 return (is_lep || ip_is_local (sep->fib_index, &sep->ip, sep->is_ip4));
1309}
1310
1311static void
1312session_endpoint_update_for_app (session_endpoint_cfg_t * sep,
1313 application_t * app, u8 is_connect)
1314{
1315 app_namespace_t *app_ns;
1316 u32 ns_index, fib_index;
1317
1318 ns_index = app->ns_index;
1319
1320 /* App is a transport proto, so fetch the calling app's ns */
1321 if (app->flags & APP_OPTIONS_FLAGS_IS_TRANSPORT_APP)
Florin Coras8a140612019-02-18 22:39:39 -08001322 ns_index = sep->ns_index;
Florin Corasc1a42652019-02-08 18:27:29 -08001323
Florin Corasc1a42652019-02-08 18:27:29 -08001324 app_ns = app_namespace_get (ns_index);
1325 if (!app_ns)
1326 return;
1327
1328 /* Ask transport and network to bind to/connect using local interface
1329 * that "supports" app's namespace. This will fix our local connection
1330 * endpoint.
1331 */
1332
1333 /* If in default namespace and user requested a fib index use it */
1334 if (ns_index == 0 && sep->fib_index != ENDPOINT_INVALID_INDEX)
1335 fib_index = sep->fib_index;
1336 else
1337 fib_index = sep->is_ip4 ? app_ns->ip4_fib_index : app_ns->ip6_fib_index;
1338 sep->peer.fib_index = fib_index;
1339 sep->fib_index = fib_index;
1340
1341 if (!is_connect)
1342 {
1343 sep->sw_if_index = app_ns->sw_if_index;
1344 }
1345 else
1346 {
1347 if (app_ns->sw_if_index != APP_NAMESPACE_INVALID_INDEX
1348 && sep->peer.sw_if_index != ENDPOINT_INVALID_INDEX
1349 && sep->peer.sw_if_index != app_ns->sw_if_index)
1350 clib_warning ("Local sw_if_index different from app ns sw_if_index");
1351
1352 sep->peer.sw_if_index = app_ns->sw_if_index;
1353 }
1354}
1355
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001356session_error_t
1357vnet_listen (vnet_listen_args_t *a)
Florin Corasc1a42652019-02-08 18:27:29 -08001358{
1359 app_listener_t *app_listener;
1360 app_worker_t *app_wrk;
1361 application_t *app;
1362 int rv;
1363
Florin Coras458089b2019-08-21 16:20:44 -07001364 ASSERT (vlib_thread_is_main_w_barrier ());
1365
Florin Corasc1a42652019-02-08 18:27:29 -08001366 app = application_get_if_valid (a->app_index);
1367 if (!app)
Florin Corasa8c3b862020-04-07 22:31:06 +00001368 return SESSION_E_NOAPP;
Florin Corasc1a42652019-02-08 18:27:29 -08001369
1370 app_wrk = application_get_worker (app, a->wrk_map_index);
1371 if (!app_wrk)
Florin Corasa8c3b862020-04-07 22:31:06 +00001372 return SESSION_E_INVALID_APPWRK;
Florin Corasc1a42652019-02-08 18:27:29 -08001373
1374 a->sep_ext.app_wrk_index = app_wrk->wrk_index;
1375
1376 session_endpoint_update_for_app (&a->sep_ext, app, 0 /* is_connect */ );
Florin Coras8c2bdf82022-04-15 12:37:48 -07001377 if (!session_endpoint_in_ns (&a->sep_ext))
Florin Corasa8c3b862020-04-07 22:31:06 +00001378 return SESSION_E_INVALID_NS;
Florin Corasc1a42652019-02-08 18:27:29 -08001379
1380 /*
1381 * Check if we already have an app listener
1382 */
1383 app_listener = app_listener_lookup (app, &a->sep_ext);
1384 if (app_listener)
1385 {
1386 if (app_listener->app_index != app->app_index)
Florin Corasa8c3b862020-04-07 22:31:06 +00001387 return SESSION_E_ALREADY_LISTENING;
1388 if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1389 return rv;
Florin Corasc1a42652019-02-08 18:27:29 -08001390 a->handle = app_listener_handle (app_listener);
1391 return 0;
1392 }
1393
1394 /*
1395 * Create new app listener
1396 */
1397 if ((rv = app_listener_alloc_and_init (app, &a->sep_ext, &app_listener)))
1398 return rv;
1399
1400 if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1401 {
1402 app_listener_cleanup (app_listener);
1403 return rv;
1404 }
1405
1406 a->handle = app_listener_handle (app_listener);
1407 return 0;
1408}
1409
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001410session_error_t
1411vnet_connect (vnet_connect_args_t *a)
Florin Corasc1a42652019-02-08 18:27:29 -08001412{
Florin Coras2b81e3c2019-02-27 07:55:46 -08001413 app_worker_t *client_wrk;
Florin Corasc1a42652019-02-08 18:27:29 -08001414 application_t *client;
Florin Corasc1a42652019-02-08 18:27:29 -08001415
Florin Coras309f7aa2022-03-18 08:33:08 -07001416 ASSERT (session_vlib_thread_is_cl_thread ());
Florin Coras458089b2019-08-21 16:20:44 -07001417
Florin Corasc1a42652019-02-08 18:27:29 -08001418 if (session_endpoint_is_zero (&a->sep))
Florin Coras00e01d32019-10-21 16:07:46 -07001419 return SESSION_E_INVALID_RMT_IP;
Florin Corasc1a42652019-02-08 18:27:29 -08001420
1421 client = application_get (a->app_index);
1422 session_endpoint_update_for_app (&a->sep_ext, client, 1 /* is_connect */ );
1423 client_wrk = application_get_worker (client, a->wrk_map_index);
1424
Florin Coras89a9f612021-05-11 11:55:07 -07001425 a->sep_ext.opaque = a->api_context;
1426
Florin Corasc1a42652019-02-08 18:27:29 -08001427 /*
1428 * First check the local scope for locally attached destinations.
1429 * If we have local scope, we pass *all* connects through it since we may
1430 * have special policy rules even for non-local destinations, think proxy.
1431 */
1432 if (application_has_local_scope (client))
1433 {
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001434 session_error_t rv;
Florin Corasc1a42652019-02-08 18:27:29 -08001435
Florin Coras2b81e3c2019-02-27 07:55:46 -08001436 a->sep_ext.original_tp = a->sep_ext.transport_proto;
1437 a->sep_ext.transport_proto = TRANSPORT_PROTO_NONE;
Florin Coras89a9f612021-05-11 11:55:07 -07001438 rv = app_worker_connect_session (client_wrk, &a->sep_ext, &a->sh);
Florin Coras00e01d32019-10-21 16:07:46 -07001439 a->sep_ext.transport_proto = a->sep_ext.original_tp;
Florin Coras374df7a2021-05-13 11:37:43 -07001440 if (!rv || rv != SESSION_E_LOCAL_CONNECT)
1441 return rv;
Florin Corasc1a42652019-02-08 18:27:29 -08001442 }
Florin Corasc1a42652019-02-08 18:27:29 -08001443 /*
1444 * Not connecting to a local server, propagate to transport
1445 */
Florin Coras89a9f612021-05-11 11:55:07 -07001446 return app_worker_connect_session (client_wrk, &a->sep_ext, &a->sh);
Florin Corasc1a42652019-02-08 18:27:29 -08001447}
1448
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001449session_error_t
1450vnet_unlisten (vnet_unlisten_args_t *a)
Florin Corasc1a42652019-02-08 18:27:29 -08001451{
1452 app_worker_t *app_wrk;
1453 app_listener_t *al;
1454 application_t *app;
1455
Florin Coras458089b2019-08-21 16:20:44 -07001456 ASSERT (vlib_thread_is_main_w_barrier ());
1457
Florin Corasc1a42652019-02-08 18:27:29 -08001458 if (!(app = application_get_if_valid (a->app_index)))
Florin Corasa8c3b862020-04-07 22:31:06 +00001459 return SESSION_E_NOAPP;
Florin Corasc1a42652019-02-08 18:27:29 -08001460
Florin Coras92311f62019-03-01 19:26:31 -08001461 if (!(al = app_listener_get_w_handle (a->handle)))
Florin Corasa8c3b862020-04-07 22:31:06 +00001462 return SESSION_E_NOLISTEN;
Florin Coras92311f62019-03-01 19:26:31 -08001463
Florin Corasc1a42652019-02-08 18:27:29 -08001464 if (al->app_index != app->app_index)
1465 {
1466 clib_warning ("app doesn't own handle %llu!", a->handle);
Florin Corasa8c3b862020-04-07 22:31:06 +00001467 return SESSION_E_OWNER;
Florin Corasc1a42652019-02-08 18:27:29 -08001468 }
1469
1470 app_wrk = application_get_worker (app, a->wrk_map_index);
1471 if (!app_wrk)
1472 {
1473 clib_warning ("no app %u worker %u", app->app_index, a->wrk_map_index);
Florin Corasa8c3b862020-04-07 22:31:06 +00001474 return SESSION_E_INVALID_APPWRK;
Florin Corasc1a42652019-02-08 18:27:29 -08001475 }
1476
1477 return app_worker_stop_listen (app_wrk, al);
1478}
1479
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001480session_error_t
liuyacan534468e2021-05-09 03:50:40 +00001481vnet_shutdown_session (vnet_shutdown_args_t *a)
1482{
1483 app_worker_t *app_wrk;
1484 session_t *s;
1485
1486 s = session_get_from_handle_if_valid (a->handle);
1487 if (!s)
1488 return SESSION_E_NOSESSION;
1489
1490 app_wrk = app_worker_get (s->app_wrk_index);
1491 if (app_wrk->app_index != a->app_index)
1492 return SESSION_E_OWNER;
1493
1494 /* We're peeking into another's thread pool. Make sure */
1495 ASSERT (s->session_index == session_index_from_handle (a->handle));
1496
1497 session_half_close (s);
1498 return 0;
1499}
1500
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001501session_error_t
1502vnet_disconnect_session (vnet_disconnect_args_t *a)
Florin Corasc1a42652019-02-08 18:27:29 -08001503{
Florin Coras2b81e3c2019-02-27 07:55:46 -08001504 app_worker_t *app_wrk;
1505 session_t *s;
Florin Corasc1a42652019-02-08 18:27:29 -08001506
Florin Coras2b81e3c2019-02-27 07:55:46 -08001507 s = session_get_from_handle_if_valid (a->handle);
1508 if (!s)
Florin Corasa8c3b862020-04-07 22:31:06 +00001509 return SESSION_E_NOSESSION;
1510
Florin Coras2b81e3c2019-02-27 07:55:46 -08001511 app_wrk = app_worker_get (s->app_wrk_index);
1512 if (app_wrk->app_index != a->app_index)
Florin Corasa8c3b862020-04-07 22:31:06 +00001513 return SESSION_E_OWNER;
Florin Corasc1a42652019-02-08 18:27:29 -08001514
Florin Coras2b81e3c2019-02-27 07:55:46 -08001515 /* We're peeking into another's thread pool. Make sure */
1516 ASSERT (s->session_index == session_index_from_handle (a->handle));
Florin Corasc1a42652019-02-08 18:27:29 -08001517
Florin Coras2b81e3c2019-02-27 07:55:46 -08001518 session_close (s);
Florin Corasc1a42652019-02-08 18:27:29 -08001519 return 0;
1520}
1521
1522int
Florin Coras623eb562019-02-03 19:28:34 -08001523application_change_listener_owner (session_t * s, app_worker_t * app_wrk)
1524{
1525 app_worker_t *old_wrk = app_worker_get (s->app_wrk_index);
1526 app_listener_t *app_listener;
1527 application_t *app;
Florin Corasa8c3b862020-04-07 22:31:06 +00001528 int rv;
Florin Coras623eb562019-02-03 19:28:34 -08001529
1530 if (!old_wrk)
Florin Corasa8c3b862020-04-07 22:31:06 +00001531 return SESSION_E_INVALID_APPWRK;
Florin Coras623eb562019-02-03 19:28:34 -08001532
1533 hash_unset (old_wrk->listeners_table, listen_session_get_handle (s));
1534 if (session_transport_service_type (s) == TRANSPORT_SERVICE_CL
1535 && s->rx_fifo)
Florin Coras19223e02019-03-03 14:56:05 -08001536 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
Florin Coras623eb562019-02-03 19:28:34 -08001537
Florin Coras623eb562019-02-03 19:28:34 -08001538 app = application_get (old_wrk->app_index);
1539 if (!app)
Florin Corasa8c3b862020-04-07 22:31:06 +00001540 return SESSION_E_NOAPP;
Florin Coras623eb562019-02-03 19:28:34 -08001541
Florin Coras97fef282023-12-21 19:41:12 -08001542 app_listener = app_listener_get (s->al_index);
Florin Corasc9940fc2019-02-05 20:55:11 -08001543
1544 /* Only remove from lb for now */
Florin Coras623eb562019-02-03 19:28:34 -08001545 app_listener->workers = clib_bitmap_set (app_listener->workers,
1546 old_wrk->wrk_map_index, 0);
Florin Coras623eb562019-02-03 19:28:34 -08001547
Florin Corasa8c3b862020-04-07 22:31:06 +00001548 if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1549 return rv;
Florin Corasab2f6db2018-08-31 14:31:41 -07001550
Florin Corasc9940fc2019-02-05 20:55:11 -08001551 s->app_wrk_index = app_wrk->wrk_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001552
Dave Barach68b0fb02017-02-28 15:15:56 -05001553 return 0;
1554}
1555
Dave Barach52851e62017-08-07 09:35:25 -04001556int
1557application_is_proxy (application_t * app)
1558{
Florin Coras7999e832017-10-31 01:51:04 -07001559 return (app->flags & APP_OPTIONS_FLAGS_IS_PROXY);
1560}
1561
1562int
1563application_is_builtin (application_t * app)
1564{
1565 return (app->flags & APP_OPTIONS_FLAGS_IS_BUILTIN);
1566}
1567
1568int
1569application_is_builtin_proxy (application_t * app)
1570{
1571 return (application_is_proxy (app) && application_is_builtin (app));
Dave Barach52851e62017-08-07 09:35:25 -04001572}
1573
Florin Corascea194d2017-10-02 00:18:51 -07001574u8
1575application_has_local_scope (application_t * app)
1576{
1577 return app->flags & APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
1578}
1579
1580u8
1581application_has_global_scope (application_t * app)
1582{
1583 return app->flags & APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
1584}
1585
qinyangaf9b7152023-06-27 01:11:53 -07001586int
1587application_original_dst_is_enabled (application_t *app)
1588{
1589 return app->flags & APP_OPTIONS_FLAGS_GET_ORIGINAL_DST;
1590}
1591
Florin Coras7999e832017-10-31 01:51:04 -07001592static clib_error_t *
1593application_start_stop_proxy_fib_proto (application_t * app, u8 fib_proto,
1594 u8 transport_proto, u8 is_start)
1595{
Florin Coras7999e832017-10-31 01:51:04 -07001596 app_namespace_t *app_ns = app_namespace_get (app->ns_index);
1597 u8 is_ip4 = (fib_proto == FIB_PROTOCOL_IP4);
Florin Coras5665ced2018-10-25 18:03:45 -07001598 session_endpoint_cfg_t sep = SESSION_ENDPOINT_CFG_NULL;
Florin Coras7999e832017-10-31 01:51:04 -07001599 transport_connection_t *tc;
Florin Coras15531972018-08-12 23:50:53 -07001600 app_worker_t *app_wrk;
Florin Corasc9940fc2019-02-05 20:55:11 -08001601 app_listener_t *al;
Florin Coras288eaab2019-02-03 15:26:14 -08001602 session_t *s;
Florin Corasc9940fc2019-02-05 20:55:11 -08001603 u32 flags;
Florin Coras7999e832017-10-31 01:51:04 -07001604
Florin Coras15531972018-08-12 23:50:53 -07001605 /* TODO decide if we want proxy to be enabled for all workers */
1606 app_wrk = application_get_default_worker (app);
Florin Coras7999e832017-10-31 01:51:04 -07001607 if (is_start)
1608 {
Florin Coras15531972018-08-12 23:50:53 -07001609 s = app_worker_first_listener (app_wrk, fib_proto, transport_proto);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001610 if (!s)
1611 {
1612 sep.is_ip4 = is_ip4;
1613 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1614 sep.sw_if_index = app_ns->sw_if_index;
1615 sep.transport_proto = transport_proto;
Florin Corasab2f6db2018-08-31 14:31:41 -07001616 sep.app_wrk_index = app_wrk->wrk_index; /* only default */
Florin Corasc9940fc2019-02-05 20:55:11 -08001617
1618 /* force global scope listener */
1619 flags = app->flags;
1620 app->flags &= ~APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
1621 app_listener_alloc_and_init (app, &sep, &al);
1622 app->flags = flags;
1623
1624 app_worker_start_listen (app_wrk, al);
1625 s = listen_session_get (al->session_index);
Florin Corasd5c604d2019-03-18 09:06:35 -07001626 s->flags |= SESSION_F_PROXY;
Florin Coras19b1f6a2017-12-11 03:37:03 -08001627 }
Florin Coras7999e832017-10-31 01:51:04 -07001628 }
1629 else
1630 {
Florin Coras623eb562019-02-03 19:28:34 -08001631 s = app_worker_proxy_listener (app_wrk, fib_proto, transport_proto);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001632 ASSERT (s);
Florin Coras7999e832017-10-31 01:51:04 -07001633 }
Florin Coras19b1f6a2017-12-11 03:37:03 -08001634
Florin Coras7999e832017-10-31 01:51:04 -07001635 tc = listen_session_get_transport (s);
1636
1637 if (!ip_is_zero (&tc->lcl_ip, 1))
1638 {
Florin Corasdbd44562017-11-09 19:30:17 -08001639 u32 sti;
1640 sep.is_ip4 = is_ip4;
1641 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1642 sep.transport_proto = transport_proto;
1643 sep.port = 0;
1644 sti = session_lookup_get_index_for_fib (fib_proto, sep.fib_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001645 if (is_start)
Florin Corasab2f6db2018-08-31 14:31:41 -07001646 session_lookup_add_session_endpoint (sti,
1647 (session_endpoint_t *) & sep,
1648 s->session_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001649 else
Florin Corasab2f6db2018-08-31 14:31:41 -07001650 session_lookup_del_session_endpoint (sti,
1651 (session_endpoint_t *) & sep);
Florin Coras7999e832017-10-31 01:51:04 -07001652 }
Florin Coras19b1f6a2017-12-11 03:37:03 -08001653
Florin Coras7999e832017-10-31 01:51:04 -07001654 return 0;
1655}
1656
Florin Coras19b1f6a2017-12-11 03:37:03 -08001657static void
1658application_start_stop_proxy_local_scope (application_t * app,
1659 u8 transport_proto, u8 is_start)
1660{
1661 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
1662 app_namespace_t *app_ns;
1663 app_ns = app_namespace_get (app->ns_index);
1664 sep.is_ip4 = 1;
1665 sep.transport_proto = transport_proto;
1666 sep.port = 0;
1667
1668 if (is_start)
1669 {
1670 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
Florin Coras15531972018-08-12 23:50:53 -07001671 app->app_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001672 sep.is_ip4 = 0;
1673 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
Florin Coras15531972018-08-12 23:50:53 -07001674 app->app_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001675 }
1676 else
1677 {
1678 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1679 sep.is_ip4 = 0;
1680 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1681 }
1682}
1683
Florin Coras7999e832017-10-31 01:51:04 -07001684void
Florin Coras561af9b2017-12-09 10:19:43 -08001685application_start_stop_proxy (application_t * app,
1686 transport_proto_t transport_proto, u8 is_start)
Florin Coras7999e832017-10-31 01:51:04 -07001687{
Florin Coras7999e832017-10-31 01:51:04 -07001688 if (application_has_local_scope (app))
Florin Coras19b1f6a2017-12-11 03:37:03 -08001689 application_start_stop_proxy_local_scope (app, transport_proto, is_start);
Florin Coras7999e832017-10-31 01:51:04 -07001690
1691 if (application_has_global_scope (app))
1692 {
1693 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP4,
1694 transport_proto, is_start);
1695 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP6,
1696 transport_proto, is_start);
1697 }
1698}
1699
1700void
1701application_setup_proxy (application_t * app)
1702{
1703 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -08001704 transport_proto_t tp;
1705
Florin Coras7999e832017-10-31 01:51:04 -07001706 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -08001707
Nathan Skrzypczakb3ea73e2021-08-05 10:22:52 +02001708 transport_proto_foreach (tp, transports)
1709 application_start_stop_proxy (app, tp, 1);
Florin Coras7999e832017-10-31 01:51:04 -07001710}
1711
1712void
1713application_remove_proxy (application_t * app)
1714{
1715 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -08001716 transport_proto_t tp;
1717
Florin Coras7999e832017-10-31 01:51:04 -07001718 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -08001719
Nathan Skrzypczakb3ea73e2021-08-05 10:22:52 +02001720 transport_proto_foreach (tp, transports)
1721 application_start_stop_proxy (app, tp, 0);
Florin Coras7999e832017-10-31 01:51:04 -07001722}
1723
Florin Coras88001c62019-04-24 14:44:46 -07001724segment_manager_props_t *
Florin Corasa332c462018-01-31 06:52:17 -08001725application_segment_manager_properties (application_t * app)
1726{
1727 return &app->sm_properties;
1728}
1729
Florin Coras88001c62019-04-24 14:44:46 -07001730segment_manager_props_t *
Florin Corasa332c462018-01-31 06:52:17 -08001731application_get_segment_manager_properties (u32 app_index)
1732{
1733 application_t *app = application_get (app_index);
1734 return &app->sm_properties;
1735}
1736
Florin Coras15531972018-08-12 23:50:53 -07001737static void
1738application_format_listeners (application_t * app, int verbose)
1739{
1740 vlib_main_t *vm = vlib_get_main ();
1741 app_worker_map_t *wrk_map;
1742 app_worker_t *app_wrk;
1743 u32 sm_index;
1744 u64 handle;
1745
1746 if (!app)
1747 {
Andreas Schultz972dc172020-05-15 11:50:07 +02001748 vlib_cli_output (vm, "%U", format_app_worker_listener, NULL /* header */,
Florin Coras15531972018-08-12 23:50:53 -07001749 0, 0, verbose);
1750 return;
1751 }
1752
1753 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001754 pool_foreach (wrk_map, app->worker_maps) {
Florin Coras15531972018-08-12 23:50:53 -07001755 app_wrk = app_worker_get (wrk_map->wrk_index);
1756 if (hash_elts (app_wrk->listeners_table) == 0)
1757 continue;
1758 hash_foreach (handle, sm_index, app_wrk->listeners_table, ({
1759 vlib_cli_output (vm, "%U", format_app_worker_listener, app_wrk,
1760 handle, sm_index, verbose);
1761 }));
Damjan Marionb2c31b62020-12-13 21:47:40 +01001762 }
Florin Coras15531972018-08-12 23:50:53 -07001763 /* *INDENT-ON* */
1764}
1765
1766static void
Florin Coras15531972018-08-12 23:50:53 -07001767application_format_connects (application_t * app, int verbose)
1768{
1769 app_worker_map_t *wrk_map;
1770 app_worker_t *app_wrk;
1771
1772 if (!app)
1773 {
1774 app_worker_format_connects (0, verbose);
1775 return;
1776 }
1777
1778 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001779 pool_foreach (wrk_map, app->worker_maps) {
Florin Coras15531972018-08-12 23:50:53 -07001780 app_wrk = app_worker_get (wrk_map->wrk_index);
1781 app_worker_format_connects (app_wrk, verbose);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001782 }
Florin Coras15531972018-08-12 23:50:53 -07001783 /* *INDENT-ON* */
1784}
1785
Florin Coras6cf30ad2017-04-04 23:08:23 -07001786u8 *
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001787format_cert_key_pair (u8 * s, va_list * args)
1788{
1789 app_cert_key_pair_t *ckpair = va_arg (*args, app_cert_key_pair_t *);
1790 int key_len = 0, cert_len = 0;
1791 cert_len = vec_len (ckpair->cert);
1792 key_len = vec_len (ckpair->key);
1793 if (ckpair->cert_key_index == 0)
1794 s = format (s, "DEFAULT (cert:%d, key:%d)", cert_len, key_len);
1795 else
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001796 s = format (s, "%d (cert:%d, key:%d)", ckpair->cert_key_index,
1797 cert_len, key_len);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001798 return s;
1799}
1800
1801u8 *
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02001802format_crypto_engine (u8 * s, va_list * args)
1803{
1804 u32 engine = va_arg (*args, u32);
1805 switch (engine)
1806 {
1807 case CRYPTO_ENGINE_NONE:
1808 return format (s, "none");
1809 case CRYPTO_ENGINE_MBEDTLS:
1810 return format (s, "mbedtls");
1811 case CRYPTO_ENGINE_OPENSSL:
1812 return format (s, "openssl");
1813 case CRYPTO_ENGINE_PICOTLS:
1814 return format (s, "picotls");
1815 case CRYPTO_ENGINE_VPP:
1816 return format (s, "vpp");
1817 default:
1818 return format (s, "unknown engine");
1819 }
1820 return s;
1821}
1822
1823uword
1824unformat_crypto_engine (unformat_input_t * input, va_list * args)
1825{
1826 u8 *a = va_arg (*args, u8 *);
1827 if (unformat (input, "mbedtls"))
1828 *a = CRYPTO_ENGINE_MBEDTLS;
1829 else if (unformat (input, "openssl"))
1830 *a = CRYPTO_ENGINE_OPENSSL;
1831 else if (unformat (input, "picotls"))
1832 *a = CRYPTO_ENGINE_PICOTLS;
1833 else if (unformat (input, "vpp"))
1834 *a = CRYPTO_ENGINE_VPP;
1835 else
1836 return 0;
1837 return 1;
1838}
1839
1840u8 *
1841format_crypto_context (u8 * s, va_list * args)
1842{
1843 crypto_context_t *crctx = va_arg (*args, crypto_context_t *);
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001844 s = format (s, "[0x%x][sub%d,ckpair%x]", crctx->ctx_index,
1845 crctx->n_subscribers, crctx->ckpair_index);
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02001846 s = format (s, "[%U]", format_crypto_engine, crctx->crypto_engine);
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02001847 return s;
1848}
1849
1850u8 *
Florin Coras6cf30ad2017-04-04 23:08:23 -07001851format_application (u8 * s, va_list * args)
1852{
1853 application_t *app = va_arg (*args, application_t *);
1854 CLIB_UNUSED (int verbose) = va_arg (*args, int);
Florin Coras88001c62019-04-24 14:44:46 -07001855 segment_manager_props_t *props;
Florin Coras053a0e42018-11-13 15:52:38 -08001856 const u8 *app_ns_name, *app_name;
Florin Coras349f8ca2018-11-20 16:52:49 -08001857 app_worker_map_t *wrk_map;
1858 app_worker_t *app_wrk;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001859
1860 if (app == 0)
1861 {
Florin Coras349f8ca2018-11-20 16:52:49 -08001862 if (!verbose)
Florin Corasc1f5a432018-11-20 11:31:26 -08001863 s = format (s, "%-10s%-20s%-40s", "Index", "Name", "Namespace");
Florin Coras6cf30ad2017-04-04 23:08:23 -07001864 return s;
1865 }
1866
Florin Coras0bee9ce2018-03-22 21:24:31 -07001867 app_name = app_get_name (app);
Florin Corascea194d2017-10-02 00:18:51 -07001868 app_ns_name = app_namespace_id_from_index (app->ns_index);
Florin Corasa332c462018-01-31 06:52:17 -08001869 props = application_segment_manager_properties (app);
Florin Coras349f8ca2018-11-20 16:52:49 -08001870 if (!verbose)
1871 {
jiangxiaomingdfb30d92020-08-31 17:38:11 +08001872 s = format (s, "%-10u%-20v%-40v", app->app_index, app_name,
Florin Coras349f8ca2018-11-20 16:52:49 -08001873 app_ns_name);
1874 return s;
1875 }
1876
Florin Corasfa7512e2019-04-04 22:31:50 -07001877 s = format (s, "app-name %v app-index %u ns-index %u seg-size %U\n",
Florin Coras349f8ca2018-11-20 16:52:49 -08001878 app_name, app->app_index, app->ns_index,
1879 format_memory_size, props->add_segment_size);
1880 s = format (s, "rx-fifo-size %U tx-fifo-size %U workers:\n",
1881 format_memory_size, props->rx_fifo_size,
1882 format_memory_size, props->tx_fifo_size);
1883
1884 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001885 pool_foreach (wrk_map, app->worker_maps) {
Florin Coras349f8ca2018-11-20 16:52:49 -08001886 app_wrk = app_worker_get (wrk_map->wrk_index);
Florin Coras623eb562019-02-03 19:28:34 -08001887 s = format (s, "%U", format_app_worker, app_wrk);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001888 }
Florin Coras349f8ca2018-11-20 16:52:49 -08001889 /* *INDENT-ON* */
1890
Dave Barach68b0fb02017-02-28 15:15:56 -05001891 return s;
1892}
1893
Florin Corasf8f516a2018-02-08 15:10:09 -08001894void
Florin Coras2b81e3c2019-02-27 07:55:46 -08001895application_format_all_listeners (vlib_main_t * vm, int verbose)
Florin Corasf8f516a2018-02-08 15:10:09 -08001896{
1897 application_t *app;
Florin Corasf8f516a2018-02-08 15:10:09 -08001898
Florin Coras15531972018-08-12 23:50:53 -07001899 if (!pool_elts (app_main.app_pool))
Florin Corasf8f516a2018-02-08 15:10:09 -08001900 {
1901 vlib_cli_output (vm, "No active server bindings");
1902 return;
1903 }
1904
Florin Coras2b81e3c2019-02-27 07:55:46 -08001905 application_format_listeners (0, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08001906
Florin Coras2b81e3c2019-02-27 07:55:46 -08001907 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001908 pool_foreach (app, app_main.app_pool) {
Florin Coras2b81e3c2019-02-27 07:55:46 -08001909 application_format_listeners (app, verbose);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001910 }
Florin Coras2b81e3c2019-02-27 07:55:46 -08001911 /* *INDENT-ON* */
Florin Corasf8f516a2018-02-08 15:10:09 -08001912}
1913
1914void
Florin Coras2b81e3c2019-02-27 07:55:46 -08001915application_format_all_clients (vlib_main_t * vm, int verbose)
Florin Corasf8f516a2018-02-08 15:10:09 -08001916{
1917 application_t *app;
1918
Florin Coras15531972018-08-12 23:50:53 -07001919 if (!pool_elts (app_main.app_pool))
Florin Corasf8f516a2018-02-08 15:10:09 -08001920 {
1921 vlib_cli_output (vm, "No active apps");
1922 return;
1923 }
1924
Florin Coras2b81e3c2019-02-27 07:55:46 -08001925 application_format_connects (0, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08001926
Florin Coras2b81e3c2019-02-27 07:55:46 -08001927 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001928 pool_foreach (app, app_main.app_pool) {
Florin Coras2b81e3c2019-02-27 07:55:46 -08001929 application_format_connects (app, verbose);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001930 }
Florin Coras2b81e3c2019-02-27 07:55:46 -08001931 /* *INDENT-ON* */
Florin Corasf8f516a2018-02-08 15:10:09 -08001932}
1933
Dave Barach68b0fb02017-02-28 15:15:56 -05001934static clib_error_t *
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001935show_certificate_command_fn (vlib_main_t * vm, unformat_input_t * input,
1936 vlib_cli_command_t * cmd)
1937{
1938 app_cert_key_pair_t *ckpair;
1939 session_cli_return_if_not_enabled ();
1940
1941 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001942 pool_foreach (ckpair, app_main.cert_key_pair_store) {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001943 vlib_cli_output (vm, "%U", format_cert_key_pair, ckpair);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001944 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001945 /* *INDENT-ON* */
1946 return 0;
1947}
1948
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001949static inline void
1950appliction_format_app_mq (vlib_main_t * vm, application_t * app)
1951{
1952 app_worker_map_t *map;
1953 app_worker_t *wrk;
Florin Coras41d5f542021-01-15 13:49:33 -08001954 int i;
1955
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001956 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001957 pool_foreach (map, app->worker_maps) {
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001958 wrk = app_worker_get (map->wrk_index);
1959 vlib_cli_output (vm, "[A%d][%d]%U", app->app_index,
1960 map->wrk_index, format_svm_msg_q,
1961 wrk->event_queue);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001962 }
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001963 /* *INDENT-ON* */
Florin Coras41d5f542021-01-15 13:49:33 -08001964
1965 for (i = 0; i < vec_len (app->rx_mqs); i++)
1966 vlib_cli_output (vm, "[A%d][R%d]%U", app->app_index, i, format_svm_msg_q,
1967 app->rx_mqs[i].mq);
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001968}
1969
1970static clib_error_t *
1971appliction_format_all_app_mq (vlib_main_t * vm)
1972{
1973 application_t *app;
1974 int i, n_threads;
1975
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001976 n_threads = vlib_get_n_threads ();
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001977
1978 for (i = 0; i < n_threads; i++)
1979 {
1980 vlib_cli_output (vm, "[Ctrl%d]%U", i, format_svm_msg_q,
1981 session_main_get_vpp_event_queue (i));
1982 }
1983
1984 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001985 pool_foreach (app, app_main.app_pool) {
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001986 appliction_format_app_mq (vm, app);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001987 }
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001988 /* *INDENT-ON* */
1989 return 0;
1990}
1991
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001992static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05001993show_app_command_fn (vlib_main_t * vm, unformat_input_t * input,
1994 vlib_cli_command_t * cmd)
1995{
Florin Coras7e7b0302022-01-22 13:27:21 -08001996 int do_server = 0, do_client = 0, do_mq = 0, do_transports = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001997 application_t *app;
Florin Coras349f8ca2018-11-20 16:52:49 -08001998 u32 app_index = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001999 int verbose = 0;
Florin Coras7e7b0302022-01-22 13:27:21 -08002000 u8 is_ta;
Dave Barach68b0fb02017-02-28 15:15:56 -05002001
Florin Corascea194d2017-10-02 00:18:51 -07002002 session_cli_return_if_not_enabled ();
Florin Corase04c2992017-03-01 08:17:34 -08002003
Dave Barach68b0fb02017-02-28 15:15:56 -05002004 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2005 {
2006 if (unformat (input, "server"))
2007 do_server = 1;
2008 else if (unformat (input, "client"))
2009 do_client = 1;
Florin Coras7e7b0302022-01-22 13:27:21 -08002010 else if (unformat (input, "transports"))
2011 do_transports = 1;
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01002012 else if (unformat (input, "mq"))
2013 do_mq = 1;
Florin Coras349f8ca2018-11-20 16:52:49 -08002014 else if (unformat (input, "%u", &app_index))
2015 ;
Dave Barach68b0fb02017-02-28 15:15:56 -05002016 else if (unformat (input, "verbose"))
2017 verbose = 1;
2018 else
Florin Coras349f8ca2018-11-20 16:52:49 -08002019 return clib_error_return (0, "unknown input `%U'",
2020 format_unformat_error, input);
Dave Barach68b0fb02017-02-28 15:15:56 -05002021 }
2022
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01002023 if (do_mq && app_index != ~0)
2024 {
2025 app = application_get_if_valid (app_index);
2026 if (!app)
2027 return clib_error_return (0, "No app with index %u", app_index);
2028
2029 appliction_format_app_mq (vm, app);
2030 return 0;
2031 }
2032
2033 if (do_mq)
2034 {
2035 appliction_format_all_app_mq (vm);
2036 return 0;
2037 }
2038
Dave Barach68b0fb02017-02-28 15:15:56 -05002039 if (do_server)
Florin Coras349f8ca2018-11-20 16:52:49 -08002040 {
Florin Coras2b81e3c2019-02-27 07:55:46 -08002041 application_format_all_listeners (vm, verbose);
Florin Coras349f8ca2018-11-20 16:52:49 -08002042 return 0;
2043 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002044
2045 if (do_client)
Florin Coras349f8ca2018-11-20 16:52:49 -08002046 {
Florin Coras2b81e3c2019-02-27 07:55:46 -08002047 application_format_all_clients (vm, verbose);
Florin Coras349f8ca2018-11-20 16:52:49 -08002048 return 0;
2049 }
2050
2051 if (app_index != ~0)
2052 {
Florin Coras47c40e22018-11-26 17:01:36 -08002053 app = application_get_if_valid (app_index);
Florin Coras349f8ca2018-11-20 16:52:49 -08002054 if (!app)
2055 return clib_error_return (0, "No app with index %u", app_index);
2056
2057 vlib_cli_output (vm, "%U", format_application, app, /* verbose */ 1);
2058 return 0;
2059 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002060
Florin Coras6cf30ad2017-04-04 23:08:23 -07002061 /* Print app related info */
2062 if (!do_server && !do_client)
2063 {
Florin Coras349f8ca2018-11-20 16:52:49 -08002064 vlib_cli_output (vm, "%U", format_application, 0, 0);
Damjan Marionb2c31b62020-12-13 21:47:40 +01002065 pool_foreach (app, app_main.app_pool) {
Florin Coras7e7b0302022-01-22 13:27:21 -08002066 is_ta = app->flags & APP_OPTIONS_FLAGS_IS_TRANSPORT_APP;
2067 if ((!do_transports && !is_ta) || (do_transports && is_ta))
2068 vlib_cli_output (vm, "%U", format_application, app, 0);
Damjan Marionb2c31b62020-12-13 21:47:40 +01002069 }
Florin Coras6cf30ad2017-04-04 23:08:23 -07002070 }
2071
Dave Barach68b0fb02017-02-28 15:15:56 -05002072 return 0;
2073}
2074
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02002075/* Certificate store */
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002076
2077static app_cert_key_pair_t *
2078app_cert_key_pair_alloc ()
2079{
2080 app_cert_key_pair_t *ckpair;
2081 pool_get (app_main.cert_key_pair_store, ckpair);
2082 clib_memset (ckpair, 0, sizeof (*ckpair));
2083 ckpair->cert_key_index = ckpair - app_main.cert_key_pair_store;
2084 return ckpair;
2085}
2086
2087app_cert_key_pair_t *
2088app_cert_key_pair_get_if_valid (u32 index)
2089{
2090 if (pool_is_free_index (app_main.cert_key_pair_store, index))
2091 return 0;
2092 return app_cert_key_pair_get (index);
2093}
2094
2095app_cert_key_pair_t *
2096app_cert_key_pair_get (u32 index)
2097{
2098 return pool_elt_at_index (app_main.cert_key_pair_store, index);
2099}
2100
2101app_cert_key_pair_t *
2102app_cert_key_pair_get_default ()
2103{
2104 /* To maintain legacy bapi */
2105 return app_cert_key_pair_get (0);
2106}
2107
2108int
2109vnet_app_add_cert_key_pair (vnet_app_add_cert_key_pair_args_t * a)
2110{
2111 app_cert_key_pair_t *ckpair = app_cert_key_pair_alloc ();
Florin Corasa5a9efd2021-01-05 17:03:29 -08002112 vec_validate (ckpair->cert, a->cert_len - 1);
2113 clib_memcpy_fast (ckpair->cert, a->cert, a->cert_len);
2114 vec_validate (ckpair->key, a->key_len - 1);
2115 clib_memcpy_fast (ckpair->key, a->key, a->key_len);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002116 a->index = ckpair->cert_key_index;
2117 return 0;
2118}
2119
2120int
Nathan Skrzypczak7fbdb6a2019-10-09 16:23:26 +02002121vnet_app_add_cert_key_interest (u32 index, u32 app_index)
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002122{
2123 app_cert_key_pair_t *ckpair;
2124 if (!(ckpair = app_cert_key_pair_get_if_valid (index)))
2125 return -1;
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02002126 if (vec_search (ckpair->app_interests, app_index) != ~0)
2127 vec_add1 (ckpair->app_interests, app_index);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002128 return 0;
2129}
2130
2131int
2132vnet_app_del_cert_key_pair (u32 index)
2133{
2134 app_cert_key_pair_t *ckpair;
2135 application_t *app;
2136 u32 *app_index;
2137
2138 if (!(ckpair = app_cert_key_pair_get_if_valid (index)))
Filip Tehlar0028e6f2023-06-28 10:47:32 +02002139 return SESSION_E_INVALID;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002140
2141 vec_foreach (app_index, ckpair->app_interests)
2142 {
2143 if ((app = application_get_if_valid (*app_index))
2144 && app->cb_fns.app_cert_key_pair_delete_callback)
2145 app->cb_fns.app_cert_key_pair_delete_callback (ckpair);
2146 }
2147
2148 vec_free (ckpair->cert);
2149 vec_free (ckpair->key);
2150 pool_put (app_main.cert_key_pair_store, ckpair);
2151 return 0;
2152}
2153
2154clib_error_t *
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02002155application_init (vlib_main_t * vm)
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002156{
Florin Coras41d5f542021-01-15 13:49:33 -08002157 app_main_t *am = &app_main;
2158 u32 n_workers;
2159
2160 n_workers = vlib_num_workers ();
2161
Florin Corasa5a9efd2021-01-05 17:03:29 -08002162 /* Index 0 was originally used by legacy apis, maintain as invalid */
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002163 (void) app_cert_key_pair_alloc ();
Florin Coras41d5f542021-01-15 13:49:33 -08002164 am->last_crypto_engine = CRYPTO_ENGINE_LAST;
2165 am->app_by_name = hash_create_vec (0, sizeof (u8), sizeof (uword));
2166
2167 vec_validate (am->wrk, n_workers);
2168
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002169 return 0;
2170}
2171
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02002172VLIB_INIT_FUNCTION (application_init);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002173
Florin Coras7e7b0302022-01-22 13:27:21 -08002174VLIB_CLI_COMMAND (show_app_command, static) = {
Florin Corase04c2992017-03-01 08:17:34 -08002175 .path = "show app",
Florin Coras7e7b0302022-01-22 13:27:21 -08002176 .short_help = "show app [index] [server|client] [mq] [verbose] "
2177 "[transports]",
Florin Corase04c2992017-03-01 08:17:34 -08002178 .function = show_app_command_fn,
2179};
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002180
Florin Coras7e7b0302022-01-22 13:27:21 -08002181VLIB_CLI_COMMAND (show_certificate_command, static) = {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02002182 .path = "show app certificate",
2183 .short_help = "list app certs and keys present in store",
2184 .function = show_certificate_command_fn,
2185};
Dave Barach68b0fb02017-02-28 15:15:56 -05002186
Florin Coras79ba25d2019-10-20 19:32:47 -07002187crypto_engine_type_t
2188app_crypto_engine_type_add (void)
2189{
2190 return (++app_main.last_crypto_engine);
2191}
2192
2193u8
2194app_crypto_engine_n_types (void)
2195{
2196 return (app_main.last_crypto_engine + 1);
2197}
2198
Dave Barach68b0fb02017-02-28 15:15:56 -05002199/*
2200 * fd.io coding-style-patch-verification: ON
2201 *
2202 * Local Variables:
2203 * eval: (c-set-style "gnu")
2204 * End:
2205 */