blob: c62496e1d5f46e61c26f709ac800cc99d56b69bb [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;
104
105 sep = (session_endpoint_t *) sep_ext;
106 if (application_has_local_scope (app) && session_endpoint_is_local (sep))
107 {
108 table_index = application_local_session_table (app);
109 handle = session_lookup_endpoint_listener (table_index, sep, 1);
110 if (handle != SESSION_INVALID_HANDLE)
111 {
Florin Corasd4295e62019-02-22 13:11:38 -0800112 ls = listen_session_get_from_handle (handle);
113 return app_listener_get_w_session (ls);
Florin Corasc9940fc2019-02-05 20:55:11 -0800114 }
115 }
116
117 fib_proto = session_endpoint_fib_proto (sep);
Florin Coras95cd8642019-12-30 21:53:19 -0800118 table_index = session_lookup_get_index_for_fib (fib_proto, sep->fib_index);
Florin Corasc9940fc2019-02-05 20:55:11 -0800119 handle = session_lookup_endpoint_listener (table_index, sep, 1);
120 if (handle != SESSION_INVALID_HANDLE)
121 {
122 ls = listen_session_get_from_handle (handle);
123 return app_listener_get_w_session ((session_t *) ls);
124 }
125
126 return 0;
127}
128
129int
130app_listener_alloc_and_init (application_t * app,
131 session_endpoint_cfg_t * sep,
132 app_listener_t ** listener)
133{
134 app_listener_t *app_listener;
Florin Corasd4295e62019-02-22 13:11:38 -0800135 transport_connection_t *tc;
Florin Coras95cd8642019-12-30 21:53:19 -0800136 u32 al_index, table_index;
Florin Corasc9940fc2019-02-05 20:55:11 -0800137 session_handle_t lh;
138 session_type_t st;
139 session_t *ls = 0;
140 int rv;
141
142 app_listener = app_listener_alloc (app);
Florin Corasa27a46e2019-02-18 13:02:28 -0800143 al_index = app_listener->al_index;
Florin Corasc9940fc2019-02-05 20:55:11 -0800144 st = session_type_from_proto_and_ip (sep->transport_proto, sep->is_ip4);
145
146 /*
147 * Add session endpoint to local session table. Only binds to "inaddr_any"
148 * (i.e., zero address) are added to local scope table.
149 */
150 if (application_has_local_scope (app)
151 && session_endpoint_is_local ((session_endpoint_t *) sep))
152 {
Florin Corasd4295e62019-02-22 13:11:38 -0800153 session_type_t local_st;
Florin Corasc9940fc2019-02-05 20:55:11 -0800154
Florin Corasd4295e62019-02-22 13:11:38 -0800155 local_st = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE,
156 sep->is_ip4);
157 ls = listen_session_alloc (0, local_st);
158 ls->app_index = app->app_index;
159 ls->app_wrk_index = sep->app_wrk_index;
160 lh = session_handle (ls);
161
162 if ((rv = session_listen (ls, sep)))
163 {
164 ls = session_get_from_handle (lh);
165 session_free (ls);
166 return rv;
167 }
168
169 ls = session_get_from_handle (lh);
170 app_listener = app_listener_get (app, al_index);
171 app_listener->local_index = ls->session_index;
Florin Coras87d66332019-06-11 12:31:31 -0700172 app_listener->ls_handle = lh;
Florin Corasd4295e62019-02-22 13:11:38 -0800173 ls->al_index = al_index;
174
Florin Corasc9940fc2019-02-05 20:55:11 -0800175 table_index = application_local_session_table (app);
Florin Corasc9940fc2019-02-05 20:55:11 -0800176 session_lookup_add_session_endpoint (table_index,
177 (session_endpoint_t *) sep, lh);
Florin Corasc9940fc2019-02-05 20:55:11 -0800178 }
179
180 if (application_has_global_scope (app))
181 {
182 /*
183 * Start listening on local endpoint for requested transport and scope.
184 * Creates a stream session with state LISTENING to be used in session
185 * lookups, prior to establishing connection. Requests transport to
186 * build it's own specific listening connection.
187 */
Florin Corasba7d8f52019-02-22 13:11:38 -0800188 ls = listen_session_alloc (0, st);
Florin Corasc9940fc2019-02-05 20:55:11 -0800189 ls->app_index = app->app_index;
190 ls->app_wrk_index = sep->app_wrk_index;
191
192 /* Listen pool can be reallocated if the transport is
193 * recursive (tls) */
Florin Corasd4295e62019-02-22 13:11:38 -0800194 lh = listen_session_get_handle (ls);
Florin Corasc9940fc2019-02-05 20:55:11 -0800195
196 if ((rv = session_listen (ls, sep)))
197 {
Florin Corasd4295e62019-02-22 13:11:38 -0800198 ls = listen_session_get_from_handle (lh);
Florin Corasc9940fc2019-02-05 20:55:11 -0800199 session_free (ls);
200 return rv;
201 }
Florin Corasd4295e62019-02-22 13:11:38 -0800202 ls = listen_session_get_from_handle (lh);
Florin Corasa27a46e2019-02-18 13:02:28 -0800203 app_listener = app_listener_get (app, al_index);
Florin Corasc9940fc2019-02-05 20:55:11 -0800204 app_listener->session_index = ls->session_index;
Florin Coras87d66332019-06-11 12:31:31 -0700205 app_listener->ls_handle = lh;
Florin Corasa27a46e2019-02-18 13:02:28 -0800206 ls->al_index = al_index;
Florin Corasd4295e62019-02-22 13:11:38 -0800207
208 /* Add to the global lookup table after transport was initialized.
209 * Lookup table needs to be populated only now because sessions
210 * with cut-through transport are are added to app local tables that
211 * are not related to network fibs, i.e., cannot be added as
212 * connections */
213 tc = session_get_transport (ls);
Nathan Skrzypczak2eed1a12019-07-04 14:26:21 +0200214 if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
Florin Coras95cd8642019-12-30 21:53:19 -0800215 {
216 fib_protocol_t fib_proto;
217 fib_proto = session_endpoint_fib_proto ((session_endpoint_t *) sep);
218 table_index = session_lookup_get_index_for_fib (fib_proto,
219 sep->fib_index);
220 ASSERT (table_index != SESSION_TABLE_INVALID_INDEX);
221 session_lookup_add_session_endpoint (table_index,
222 (session_endpoint_t *) sep,
223 lh);
224 }
Florin Corasc9940fc2019-02-05 20:55:11 -0800225 }
226
Florin Coras2b81e3c2019-02-27 07:55:46 -0800227 if (!ls)
Florin Corasc9940fc2019-02-05 20:55:11 -0800228 {
229 app_listener_free (app, app_listener);
230 return -1;
231 }
232
233 *listener = app_listener;
234 return 0;
235}
236
237void
238app_listener_cleanup (app_listener_t * al)
239{
240 application_t *app = application_get (al->app_index);
Florin Corasd4295e62019-02-22 13:11:38 -0800241 session_t *ls;
Florin Corasc9940fc2019-02-05 20:55:11 -0800242
243 if (al->session_index != SESSION_INVALID_INDEX)
244 {
Florin Corasd4295e62019-02-22 13:11:38 -0800245 ls = session_get (al->session_index, 0);
Florin Corasc9940fc2019-02-05 20:55:11 -0800246 session_stop_listen (ls);
Florin Corasba7d8f52019-02-22 13:11:38 -0800247 listen_session_free (ls);
Florin Corasc9940fc2019-02-05 20:55:11 -0800248 }
249 if (al->local_index != SESSION_INVALID_INDEX)
250 {
251 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
Florin Corasc9940fc2019-02-05 20:55:11 -0800252 u32 table_index;
253
254 table_index = application_local_session_table (app);
Florin Corasd4295e62019-02-22 13:11:38 -0800255 ls = listen_session_get (al->local_index);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800256 ct_session_endpoint (ls, &sep);
Florin Corasc9940fc2019-02-05 20:55:11 -0800257 session_lookup_del_session_endpoint (table_index, &sep);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800258 session_stop_listen (ls);
Florin Corasd4295e62019-02-22 13:11:38 -0800259 listen_session_free (ls);
Florin Corasc9940fc2019-02-05 20:55:11 -0800260 }
261 app_listener_free (app, al);
262}
263
Florin Coras11e2cf52019-03-06 12:04:24 -0800264static app_worker_t *
265app_listener_select_worker (application_t * app, app_listener_t * al)
Florin Corasc9940fc2019-02-05 20:55:11 -0800266{
Florin Corasc9940fc2019-02-05 20:55:11 -0800267 u32 wrk_index;
268
269 app = application_get (al->app_index);
270 wrk_index = clib_bitmap_next_set (al->workers, al->accept_rotor + 1);
271 if (wrk_index == ~0)
272 wrk_index = clib_bitmap_first_set (al->workers);
273
274 ASSERT (wrk_index != ~0);
275 al->accept_rotor = wrk_index;
276 return application_get_worker (app, wrk_index);
277}
278
279session_t *
280app_listener_get_session (app_listener_t * al)
281{
282 if (al->session_index == SESSION_INVALID_INDEX)
283 return 0;
284
285 return listen_session_get (al->session_index);
Florin Corasab2f6db2018-08-31 14:31:41 -0700286}
287
Florin Corasd4295e62019-02-22 13:11:38 -0800288session_t *
289app_listener_get_local_session (app_listener_t * al)
290{
291 if (al->local_index == SESSION_INVALID_INDEX)
292 return 0;
293 return listen_session_get (al->local_index);
294}
295
Florin Coras15531972018-08-12 23:50:53 -0700296static app_worker_map_t *
297app_worker_map_alloc (application_t * app)
298{
299 app_worker_map_t *map;
300 pool_get (app->worker_maps, map);
Dave Barachb7b92992018-10-17 10:38:51 -0400301 clib_memset (map, 0, sizeof (*map));
Florin Coras15531972018-08-12 23:50:53 -0700302 return map;
303}
Dave Barach68b0fb02017-02-28 15:15:56 -0500304
Florin Coras15531972018-08-12 23:50:53 -0700305static u32
306app_worker_map_index (application_t * app, app_worker_map_t * map)
307{
308 return (map - app->worker_maps);
309}
310
311static void
312app_worker_map_free (application_t * app, app_worker_map_t * map)
313{
314 pool_put (app->worker_maps, map);
315}
316
317static app_worker_map_t *
318app_worker_map_get (application_t * app, u32 map_index)
319{
Florin Coras01f3f892018-12-02 12:45:53 -0800320 if (pool_is_free_index (app->worker_maps, map_index))
321 return 0;
Florin Coras15531972018-08-12 23:50:53 -0700322 return pool_elt_at_index (app->worker_maps, map_index);
323}
Florin Coras0bee9ce2018-03-22 21:24:31 -0700324
Florin Coras053a0e42018-11-13 15:52:38 -0800325static const u8 *
Florin Coras0bee9ce2018-03-22 21:24:31 -0700326app_get_name (application_t * app)
327{
Florin Coras0bee9ce2018-03-22 21:24:31 -0700328 return app->name;
329}
330
Florin Corascea194d2017-10-02 00:18:51 -0700331u32
332application_session_table (application_t * app, u8 fib_proto)
333{
334 app_namespace_t *app_ns;
335 app_ns = app_namespace_get (app->ns_index);
336 if (!application_has_global_scope (app))
337 return APP_INVALID_INDEX;
338 if (fib_proto == FIB_PROTOCOL_IP4)
339 return session_lookup_get_index_for_fib (fib_proto,
340 app_ns->ip4_fib_index);
341 else
342 return session_lookup_get_index_for_fib (fib_proto,
343 app_ns->ip6_fib_index);
344}
345
346u32
347application_local_session_table (application_t * app)
348{
349 app_namespace_t *app_ns;
350 if (!application_has_local_scope (app))
351 return APP_INVALID_INDEX;
352 app_ns = app_namespace_get (app->ns_index);
353 return app_ns->local_table_index;
354}
355
Florin Corascea194d2017-10-02 00:18:51 -0700356/**
Florin Coras053a0e42018-11-13 15:52:38 -0800357 * Returns app name for app-index
Florin Corascea194d2017-10-02 00:18:51 -0700358 */
Florin Coras053a0e42018-11-13 15:52:38 -0800359const u8 *
Florin Corascea194d2017-10-02 00:18:51 -0700360application_name_from_index (u32 app_index)
361{
362 application_t *app = application_get (app_index);
363 if (!app)
364 return 0;
Florin Coras053a0e42018-11-13 15:52:38 -0800365 return app_get_name (app);
366}
367
368static void
369application_api_table_add (u32 app_index, u32 api_client_index)
370{
Florin Corasc1f5a432018-11-20 11:31:26 -0800371 if (api_client_index != APP_INVALID_INDEX)
372 hash_set (app_main.app_by_api_client_index, api_client_index, app_index);
Florin Coras053a0e42018-11-13 15:52:38 -0800373}
374
375static void
376application_api_table_del (u32 api_client_index)
377{
378 hash_unset (app_main.app_by_api_client_index, api_client_index);
Florin Corascea194d2017-10-02 00:18:51 -0700379}
380
Dave Barach68b0fb02017-02-28 15:15:56 -0500381static void
Florin Corasc1f5a432018-11-20 11:31:26 -0800382application_name_table_add (application_t * app)
Dave Barach68b0fb02017-02-28 15:15:56 -0500383{
Florin Corasc1f5a432018-11-20 11:31:26 -0800384 hash_set_mem (app_main.app_by_name, app->name, app->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500385}
386
387static void
Florin Corasc1f5a432018-11-20 11:31:26 -0800388application_name_table_del (application_t * app)
Dave Barach68b0fb02017-02-28 15:15:56 -0500389{
Florin Corasc1f5a432018-11-20 11:31:26 -0800390 hash_unset_mem (app_main.app_by_name, app->name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500391}
392
393application_t *
394application_lookup (u32 api_client_index)
395{
396 uword *p;
Florin Coras15531972018-08-12 23:50:53 -0700397 p = hash_get (app_main.app_by_api_client_index, api_client_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500398 if (p)
Florin Coras053a0e42018-11-13 15:52:38 -0800399 return application_get_if_valid (p[0]);
Dave Barach68b0fb02017-02-28 15:15:56 -0500400
401 return 0;
402}
403
Florin Coras6cf30ad2017-04-04 23:08:23 -0700404application_t *
Florin Coras0bee9ce2018-03-22 21:24:31 -0700405application_lookup_name (const u8 * name)
406{
407 uword *p;
Florin Coras15531972018-08-12 23:50:53 -0700408 p = hash_get_mem (app_main.app_by_name, name);
Florin Coras0bee9ce2018-03-22 21:24:31 -0700409 if (p)
410 return application_get (p[0]);
411
412 return 0;
413}
414
Florin Corasc1a42652019-02-08 18:27:29 -0800415static application_t *
Florin Coras15531972018-08-12 23:50:53 -0700416application_alloc (void)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700417{
418 application_t *app;
Florin Coras15531972018-08-12 23:50:53 -0700419 pool_get (app_main.app_pool, app);
Dave Barachb7b92992018-10-17 10:38:51 -0400420 clib_memset (app, 0, sizeof (*app));
Florin Coras15531972018-08-12 23:50:53 -0700421 app->app_index = app - app_main.app_pool;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700422 return app;
423}
424
Florin Coras15531972018-08-12 23:50:53 -0700425application_t *
426application_get (u32 app_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500427{
Florin Coras15531972018-08-12 23:50:53 -0700428 if (app_index == APP_INVALID_INDEX)
429 return 0;
430 return pool_elt_at_index (app_main.app_pool, app_index);
431}
Dave Barach68b0fb02017-02-28 15:15:56 -0500432
Florin Coras15531972018-08-12 23:50:53 -0700433application_t *
434application_get_if_valid (u32 app_index)
435{
436 if (pool_is_free_index (app_main.app_pool, app_index))
437 return 0;
Florin Corasa5464812017-04-19 13:00:05 -0700438
Florin Coras15531972018-08-12 23:50:53 -0700439 return pool_elt_at_index (app_main.app_pool, app_index);
440}
Florin Coras7999e832017-10-31 01:51:04 -0700441
Florin Corasd79b41e2017-03-04 05:37:52 -0800442static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700443application_verify_cb_fns (session_cb_vft_t * cb_fns)
Florin Corasd79b41e2017-03-04 05:37:52 -0800444{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700445 if (cb_fns->session_accept_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800446 clib_warning ("No accept callback function provided");
Florin Coras6cf30ad2017-04-04 23:08:23 -0700447 if (cb_fns->session_connected_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800448 clib_warning ("No session connected callback function provided");
449 if (cb_fns->session_disconnect_callback == 0)
450 clib_warning ("No session disconnect callback function provided");
451 if (cb_fns->session_reset_callback == 0)
452 clib_warning ("No session reset callback function provided");
453}
454
Florin Corasb384b542018-01-15 01:08:33 -0800455/**
456 * Check app config for given segment type
457 *
458 * Returns 1 on success and 0 otherwise
459 */
460static u8
461application_verify_cfg (ssvm_segment_type_t st)
462{
463 u8 is_valid;
464 if (st == SSVM_SEGMENT_MEMFD)
465 {
Florin Coras31c99552019-03-01 13:00:58 -0800466 is_valid = (session_main_get_evt_q_segment () != 0);
Florin Corasb384b542018-01-15 01:08:33 -0800467 if (!is_valid)
468 clib_warning ("memfd seg: vpp's event qs IN binary api svm region");
469 return is_valid;
470 }
471 else if (st == SSVM_SEGMENT_SHM)
472 {
Florin Coras31c99552019-03-01 13:00:58 -0800473 is_valid = (session_main_get_evt_q_segment () == 0);
Florin Corasb384b542018-01-15 01:08:33 -0800474 if (!is_valid)
475 clib_warning ("shm seg: vpp's event qs NOT IN binary api svm region");
476 return is_valid;
477 }
478 else
479 return 1;
480}
481
Florin Corasc1a42652019-02-08 18:27:29 -0800482static int
Florin Coras15531972018-08-12 23:50:53 -0700483application_alloc_and_init (app_init_args_t * a)
Dave Barach68b0fb02017-02-28 15:15:56 -0500484{
Florin Corasa332c462018-01-31 06:52:17 -0800485 ssvm_segment_type_t seg_type = SSVM_SEGMENT_MEMFD;
Florin Coras88001c62019-04-24 14:44:46 -0700486 segment_manager_props_t *props;
Florin Corasb384b542018-01-15 01:08:33 -0800487 vl_api_registration_t *reg;
Florin Coras15531972018-08-12 23:50:53 -0700488 application_t *app;
489 u64 *options;
Dave Barach68b0fb02017-02-28 15:15:56 -0500490
Florin Coras15531972018-08-12 23:50:53 -0700491 app = application_alloc ();
492 options = a->options;
Florin Corasb384b542018-01-15 01:08:33 -0800493 /*
494 * Make sure we support the requested configuration
495 */
Florin Coras61ae0562020-09-02 19:10:28 -0700496 if (options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_IS_BUILTIN)
497 {
498 seg_type = SSVM_SEGMENT_PRIVATE;
499 }
500 else if (!a->use_sock_api)
Florin Corasa332c462018-01-31 06:52:17 -0800501 {
Florin Coras15531972018-08-12 23:50:53 -0700502 reg = vl_api_client_index_to_registration (a->api_client_index);
Florin Corasa332c462018-01-31 06:52:17 -0800503 if (!reg)
504 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
505 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
506 seg_type = SSVM_SEGMENT_SHM;
507 }
Florin Corasb384b542018-01-15 01:08:33 -0800508
Florin Corasd8402ae2019-03-03 16:46:52 -0800509 if ((options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
510 && seg_type != SSVM_SEGMENT_MEMFD)
511 {
512 clib_warning ("mq eventfds can only be used if socket transport is "
513 "used for binary api");
514 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
515 }
516
Florin Corasa332c462018-01-31 06:52:17 -0800517 if (!application_verify_cfg (seg_type))
Florin Corasb384b542018-01-15 01:08:33 -0800518 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
Dave Barach68b0fb02017-02-28 15:15:56 -0500519
Florin Coras9845c202020-04-28 01:54:22 +0000520 if (options[APP_OPTIONS_PREALLOC_FIFO_PAIRS]
521 && options[APP_OPTIONS_PREALLOC_FIFO_HDRS])
522 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
523
Florin Coras15531972018-08-12 23:50:53 -0700524 /* Check that the obvious things are properly set up */
525 application_verify_cb_fns (a->session_cb_vft);
526
Florin Coras15531972018-08-12 23:50:53 -0700527 app->flags = options[APP_OPTIONS_FLAGS];
528 app->cb_fns = *a->session_cb_vft;
529 app->ns_index = options[APP_OPTIONS_NAMESPACE];
530 app->proxied_transports = options[APP_OPTIONS_PROXY_TRANSPORT];
531 app->name = vec_dup (a->name);
532
533 /* If no scope enabled, default to global */
534 if (!application_has_global_scope (app)
535 && !application_has_local_scope (app))
536 app->flags |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
537
Florin Corasa332c462018-01-31 06:52:17 -0800538 props = application_segment_manager_properties (app);
Florin Coras88001c62019-04-24 14:44:46 -0700539 segment_manager_props_init (props);
Florin Coras404b8a32019-05-09 12:08:06 -0700540 props->segment_size = options[APP_OPTIONS_SEGMENT_SIZE];
Florin Coras15531972018-08-12 23:50:53 -0700541 props->prealloc_fifos = options[APP_OPTIONS_PREALLOC_FIFO_PAIRS];
Florin Coras9845c202020-04-28 01:54:22 +0000542 props->prealloc_fifo_hdrs = options[APP_OPTIONS_PREALLOC_FIFO_HDRS];
Florin Corasb384b542018-01-15 01:08:33 -0800543 if (options[APP_OPTIONS_ADD_SEGMENT_SIZE])
544 {
545 props->add_segment_size = options[APP_OPTIONS_ADD_SEGMENT_SIZE];
546 props->add_segment = 1;
547 }
548 if (options[APP_OPTIONS_RX_FIFO_SIZE])
549 props->rx_fifo_size = options[APP_OPTIONS_RX_FIFO_SIZE];
550 if (options[APP_OPTIONS_TX_FIFO_SIZE])
551 props->tx_fifo_size = options[APP_OPTIONS_TX_FIFO_SIZE];
Florin Corasf8f516a2018-02-08 15:10:09 -0800552 if (options[APP_OPTIONS_EVT_QUEUE_SIZE])
553 props->evt_q_size = options[APP_OPTIONS_EVT_QUEUE_SIZE];
Florin Coras99368312018-08-02 10:45:44 -0700554 if (options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
555 props->use_mq_eventfd = 1;
Florin Coras58d36f02018-03-09 13:05:53 -0800556 if (options[APP_OPTIONS_TLS_ENGINE])
557 app->tls_engine = options[APP_OPTIONS_TLS_ENGINE];
Ryujiro Shibuyad8f48e22020-01-22 12:11:42 +0000558 if (options[APP_OPTIONS_MAX_FIFO_SIZE])
559 props->max_fifo_size = options[APP_OPTIONS_MAX_FIFO_SIZE];
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000560 if (options[APP_OPTIONS_HIGH_WATERMARK])
561 props->high_watermark = options[APP_OPTIONS_HIGH_WATERMARK];
562 if (options[APP_OPTIONS_LOW_WATERMARK])
563 props->low_watermark = options[APP_OPTIONS_LOW_WATERMARK];
Florin Coras2de9c0f2020-02-02 19:30:39 +0000564 if (options[APP_OPTIONS_PCT_FIRST_ALLOC])
565 props->pct_first_alloc = options[APP_OPTIONS_PCT_FIRST_ALLOC];
Florin Corasa332c462018-01-31 06:52:17 -0800566 props->segment_type = seg_type;
Dave Barach68b0fb02017-02-28 15:15:56 -0500567
Florin Coras15531972018-08-12 23:50:53 -0700568 /* Add app to lookup by api_client_index table */
Florin Corasc1f5a432018-11-20 11:31:26 -0800569 if (!application_is_builtin (app))
570 application_api_table_add (app->app_index, a->api_client_index);
571 else
572 application_name_table_add (app);
573
574 a->app_index = app->app_index;
Florin Corasa332c462018-01-31 06:52:17 -0800575
Florin Coras15531972018-08-12 23:50:53 -0700576 APP_DBG ("New app name: %v api index: %u index %u", app->name,
Nathan Skrzypczakba65ca42019-05-16 16:35:40 +0200577 a->api_client_index, app->app_index);
Florin Coras15531972018-08-12 23:50:53 -0700578
579 return 0;
580}
581
Florin Corasc1a42652019-02-08 18:27:29 -0800582static void
Florin Coras15531972018-08-12 23:50:53 -0700583application_free (application_t * app)
584{
585 app_worker_map_t *wrk_map;
586 app_worker_t *app_wrk;
587
588 /*
589 * The app event queue allocated in first segment is cleared with
590 * the segment manager. No need to explicitly free it.
591 */
Nathan Skrzypczakba65ca42019-05-16 16:35:40 +0200592 APP_DBG ("Delete app name %v index: %d", app->name, app->app_index);
Florin Coras15531972018-08-12 23:50:53 -0700593
594 if (application_is_proxy (app))
595 application_remove_proxy (app);
596
Florin Corasab2f6db2018-08-31 14:31:41 -0700597 /*
598 * Free workers
599 */
600
Florin Coras15531972018-08-12 23:50:53 -0700601 /* *INDENT-OFF* */
602 pool_flush (wrk_map, app->worker_maps, ({
603 app_wrk = app_worker_get (wrk_map->wrk_index);
604 app_worker_free (app_wrk);
605 }));
606 /* *INDENT-ON* */
607 pool_free (app->worker_maps);
608
Florin Corasab2f6db2018-08-31 14:31:41 -0700609 /*
Florin Corasab2f6db2018-08-31 14:31:41 -0700610 * Cleanup remaining state
611 */
Florin Corasc1f5a432018-11-20 11:31:26 -0800612 if (application_is_builtin (app))
613 application_name_table_del (app);
Florin Coras15531972018-08-12 23:50:53 -0700614 vec_free (app->name);
Florin Coras15531972018-08-12 23:50:53 -0700615 pool_put (app_main.app_pool, app);
616}
617
Florin Corasc1a42652019-02-08 18:27:29 -0800618static void
Florin Coras053a0e42018-11-13 15:52:38 -0800619application_detach_process (application_t * app, u32 api_client_index)
620{
621 vnet_app_worker_add_del_args_t _args = { 0 }, *args = &_args;
622 app_worker_map_t *wrk_map;
623 u32 *wrks = 0, *wrk_index;
624 app_worker_t *app_wrk;
625
626 if (api_client_index == ~0)
627 {
628 application_free (app);
629 return;
630 }
631
632 APP_DBG ("Detaching for app %v index %u api client index %u", app->name,
Nathan Skrzypczakba65ca42019-05-16 16:35:40 +0200633 app->app_index, api_client_index);
Florin Coras053a0e42018-11-13 15:52:38 -0800634
635 /* *INDENT-OFF* */
636 pool_foreach (wrk_map, app->worker_maps, ({
637 app_wrk = app_worker_get (wrk_map->wrk_index);
Florin Corasc1f5a432018-11-20 11:31:26 -0800638 if (app_wrk->api_client_index == api_client_index)
Florin Coras053a0e42018-11-13 15:52:38 -0800639 vec_add1 (wrks, app_wrk->wrk_index);
640 }));
641 /* *INDENT-ON* */
642
643 if (!vec_len (wrks))
644 {
645 clib_warning ("no workers for app %u api_index %u", app->app_index,
646 api_client_index);
647 return;
648 }
649
650 args->app_index = app->app_index;
Florin Corasc1f5a432018-11-20 11:31:26 -0800651 args->api_client_index = api_client_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800652 vec_foreach (wrk_index, wrks)
653 {
654 app_wrk = app_worker_get (wrk_index[0]);
Florin Coras349f8ca2018-11-20 16:52:49 -0800655 args->wrk_map_index = app_wrk->wrk_map_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800656 args->is_add = 0;
657 vnet_app_worker_add_del (args);
658 }
659 vec_free (wrks);
660}
661
Florin Coras15531972018-08-12 23:50:53 -0700662app_worker_t *
663application_get_worker (application_t * app, u32 wrk_map_index)
664{
665 app_worker_map_t *map;
666 map = app_worker_map_get (app, wrk_map_index);
667 if (!map)
668 return 0;
669 return app_worker_get (map->wrk_index);
670}
671
672app_worker_t *
673application_get_default_worker (application_t * app)
674{
675 return application_get_worker (app, 0);
676}
677
Florin Coras053a0e42018-11-13 15:52:38 -0800678u32
679application_n_workers (application_t * app)
680{
681 return pool_elts (app->worker_maps);
682}
683
Florin Coras15531972018-08-12 23:50:53 -0700684app_worker_t *
Florin Corasc9940fc2019-02-05 20:55:11 -0800685application_listener_select_worker (session_t * ls)
Florin Corasab2f6db2018-08-31 14:31:41 -0700686{
Florin Coras11e2cf52019-03-06 12:04:24 -0800687 application_t *app;
Florin Corasc9940fc2019-02-05 20:55:11 -0800688 app_listener_t *al;
Florin Corasab2f6db2018-08-31 14:31:41 -0700689
Florin Coras11e2cf52019-03-06 12:04:24 -0800690 app = application_get (ls->app_index);
691 al = app_listener_get (app, ls->al_index);
692 return app_listener_select_worker (app, al);
Florin Corasab2f6db2018-08-31 14:31:41 -0700693}
694
Florin Coras15531972018-08-12 23:50:53 -0700695int
Florin Coras623eb562019-02-03 19:28:34 -0800696application_alloc_worker_and_init (application_t * app, app_worker_t ** wrk)
Florin Coras15531972018-08-12 23:50:53 -0700697{
698 app_worker_map_t *wrk_map;
699 app_worker_t *app_wrk;
700 segment_manager_t *sm;
701 int rv;
702
703 app_wrk = app_worker_alloc (app);
704 wrk_map = app_worker_map_alloc (app);
705 wrk_map->wrk_index = app_wrk->wrk_index;
706 app_wrk->wrk_map_index = app_worker_map_index (app, wrk_map);
707
708 /*
709 * Setup first segment manager
710 */
Florin Coras88001c62019-04-24 14:44:46 -0700711 sm = segment_manager_alloc ();
Florin Coras15531972018-08-12 23:50:53 -0700712 sm->app_wrk_index = app_wrk->wrk_index;
713
Florin Corasa107f402020-09-29 19:18:46 -0700714 if ((rv = segment_manager_init_first (sm)))
Florin Coras15531972018-08-12 23:50:53 -0700715 {
716 app_worker_free (app_wrk);
717 return rv;
718 }
Florin Corasc87c91d2017-08-16 19:55:49 -0700719 sm->first_is_protected = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500720
Florin Corascea194d2017-10-02 00:18:51 -0700721 /*
Florin Coras15531972018-08-12 23:50:53 -0700722 * Setup app worker
Florin Corascea194d2017-10-02 00:18:51 -0700723 */
Florin Coras15531972018-08-12 23:50:53 -0700724 app_wrk->first_segment_manager = segment_manager_index (sm);
725 app_wrk->listeners_table = hash_create (0, sizeof (u64));
726 app_wrk->event_queue = segment_manager_event_queue (sm);
727 app_wrk->app_is_builtin = application_is_builtin (app);
Dave Barach68b0fb02017-02-28 15:15:56 -0500728
Florin Coras15531972018-08-12 23:50:53 -0700729 *wrk = app_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -0800730
Florin Coras6cf30ad2017-04-04 23:08:23 -0700731 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500732}
733
Florin Coras623eb562019-02-03 19:28:34 -0800734int
Florin Corasc1a42652019-02-08 18:27:29 -0800735vnet_app_worker_add_del (vnet_app_worker_add_del_args_t * a)
736{
Florin Coras88001c62019-04-24 14:44:46 -0700737 fifo_segment_t *fs;
Florin Corasc1a42652019-02-08 18:27:29 -0800738 app_worker_map_t *wrk_map;
739 app_worker_t *app_wrk;
740 segment_manager_t *sm;
741 application_t *app;
742 int rv;
743
744 app = application_get (a->app_index);
745 if (!app)
746 return VNET_API_ERROR_INVALID_VALUE;
747
748 if (a->is_add)
749 {
750 if ((rv = application_alloc_worker_and_init (app, &app_wrk)))
751 return rv;
752
753 /* Map worker api index to the app */
754 app_wrk->api_client_index = a->api_client_index;
755 application_api_table_add (app->app_index, a->api_client_index);
756
757 sm = segment_manager_get (app_wrk->first_segment_manager);
758 fs = segment_manager_get_segment_w_lock (sm, 0);
759 a->segment = &fs->ssvm;
760 a->segment_handle = segment_manager_segment_handle (sm, fs);
761 segment_manager_segment_reader_unlock (sm);
762 a->evt_q = app_wrk->event_queue;
763 a->wrk_map_index = app_wrk->wrk_map_index;
764 }
765 else
766 {
767 wrk_map = app_worker_map_get (app, a->wrk_map_index);
768 if (!wrk_map)
769 return VNET_API_ERROR_INVALID_VALUE;
770
771 app_wrk = app_worker_get (wrk_map->wrk_index);
772 if (!app_wrk)
773 return VNET_API_ERROR_INVALID_VALUE;
774
775 application_api_table_del (app_wrk->api_client_index);
776 app_worker_free (app_wrk);
777 app_worker_map_free (app, wrk_map);
778 if (application_n_workers (app) == 0)
779 application_free (app);
780 }
781 return 0;
782}
783
784static int
785app_validate_namespace (u8 * namespace_id, u64 secret, u32 * app_ns_index)
786{
787 app_namespace_t *app_ns;
788 if (vec_len (namespace_id) == 0)
789 {
790 /* Use default namespace */
791 *app_ns_index = 0;
792 return 0;
793 }
794
795 *app_ns_index = app_namespace_index_from_id (namespace_id);
796 if (*app_ns_index == APP_NAMESPACE_INVALID_INDEX)
797 return VNET_API_ERROR_APP_INVALID_NS;
798 app_ns = app_namespace_get (*app_ns_index);
799 if (!app_ns)
800 return VNET_API_ERROR_APP_INVALID_NS;
801 if (app_ns->ns_secret != secret)
802 return VNET_API_ERROR_APP_WRONG_NS_SECRET;
803 return 0;
804}
805
806static u8 *
807app_name_from_api_index (u32 api_client_index)
808{
809 vl_api_registration_t *regp;
810 regp = vl_api_client_index_to_registration (api_client_index);
811 if (regp)
Florin Corasbee97682019-04-09 16:13:18 -0700812 return format (0, "%s", regp->name);
Florin Corasc1a42652019-02-08 18:27:29 -0800813
814 clib_warning ("api client index %u does not have an api registration!",
815 api_client_index);
Florin Corasbee97682019-04-09 16:13:18 -0700816 return format (0, "unknown");
Florin Corasc1a42652019-02-08 18:27:29 -0800817}
818
819/**
820 * Attach application to vpp
821 *
822 * Allocates a vpp app, i.e., a structure that keeps back pointers
823 * to external app and a segment manager for shared memory fifo based
824 * communication with the external app.
825 */
826int
827vnet_application_attach (vnet_app_attach_args_t * a)
828{
Florin Coras88001c62019-04-24 14:44:46 -0700829 fifo_segment_t *fs;
Florin Corasc1a42652019-02-08 18:27:29 -0800830 application_t *app = 0;
831 app_worker_t *app_wrk;
832 segment_manager_t *sm;
833 u32 app_ns_index = 0;
834 u8 *app_name = 0;
835 u64 secret;
836 int rv;
837
838 if (a->api_client_index != APP_INVALID_INDEX)
839 app = application_lookup (a->api_client_index);
840 else if (a->name)
841 app = application_lookup_name (a->name);
842 else
843 return VNET_API_ERROR_INVALID_VALUE;
844
845 if (app)
846 return VNET_API_ERROR_APP_ALREADY_ATTACHED;
847
Florin Coras61ae0562020-09-02 19:10:28 -0700848 /* Socket api sets the name and validates namespace prior to attach */
849 if (!a->use_sock_api)
Florin Corasc1a42652019-02-08 18:27:29 -0800850 {
Florin Coras61ae0562020-09-02 19:10:28 -0700851 if (a->api_client_index != APP_INVALID_INDEX)
852 {
853 app_name = app_name_from_api_index (a->api_client_index);
854 a->name = app_name;
855 }
Florin Corasc1a42652019-02-08 18:27:29 -0800856
Florin Coras61ae0562020-09-02 19:10:28 -0700857 secret = a->options[APP_OPTIONS_NAMESPACE_SECRET];
858 if ((rv =
859 app_validate_namespace (a->namespace_id, secret, &app_ns_index)))
860 return rv;
861 a->options[APP_OPTIONS_NAMESPACE] = app_ns_index;
862 }
Florin Corasc1a42652019-02-08 18:27:29 -0800863
864 if ((rv = application_alloc_and_init ((app_init_args_t *) a)))
865 return rv;
866
867 app = application_get (a->app_index);
868 if ((rv = application_alloc_worker_and_init (app, &app_wrk)))
869 return rv;
870
871 a->app_evt_q = app_wrk->event_queue;
872 app_wrk->api_client_index = a->api_client_index;
873 sm = segment_manager_get (app_wrk->first_segment_manager);
874 fs = segment_manager_get_segment_w_lock (sm, 0);
875
876 if (application_is_proxy (app))
fanyfb8b6fe42020-09-17 22:10:41 +0800877 {
878 application_setup_proxy (app);
Florin Coras2a7c0b62020-09-28 23:40:28 -0700879 /* The segment manager pool is reallocated because a new listener
880 * is added. Re-grab segment manager to avoid dangling reference */
fanyfb8b6fe42020-09-17 22:10:41 +0800881 sm = segment_manager_get (app_wrk->first_segment_manager);
882 }
Florin Corasc1a42652019-02-08 18:27:29 -0800883
884 ASSERT (vec_len (fs->ssvm.name) <= 128);
885 a->segment = &fs->ssvm;
886 a->segment_handle = segment_manager_segment_handle (sm, fs);
887
888 segment_manager_segment_reader_unlock (sm);
889 vec_free (app_name);
890 return 0;
891}
892
893/**
894 * Detach application from vpp
895 */
896int
897vnet_application_detach (vnet_app_detach_args_t * a)
898{
899 application_t *app;
900
901 app = application_get_if_valid (a->app_index);
902 if (!app)
903 {
904 clib_warning ("app not attached");
905 return VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
906 }
907
908 app_interface_check_thread_and_barrier (vnet_application_detach, a);
909 application_detach_process (app, a->api_client_index);
910 return 0;
911}
912
913
914static u8
915session_endpoint_in_ns (session_endpoint_t * sep)
916{
917 u8 is_lep = session_endpoint_is_local (sep);
918 if (!is_lep && sep->sw_if_index != ENDPOINT_INVALID_INDEX
919 && !ip_interface_has_address (sep->sw_if_index, &sep->ip, sep->is_ip4))
920 {
921 clib_warning ("sw_if_index %u not configured with ip %U",
922 sep->sw_if_index, format_ip46_address, &sep->ip,
923 sep->is_ip4);
924 return 0;
925 }
926 return (is_lep || ip_is_local (sep->fib_index, &sep->ip, sep->is_ip4));
927}
928
929static void
930session_endpoint_update_for_app (session_endpoint_cfg_t * sep,
931 application_t * app, u8 is_connect)
932{
933 app_namespace_t *app_ns;
934 u32 ns_index, fib_index;
935
936 ns_index = app->ns_index;
937
938 /* App is a transport proto, so fetch the calling app's ns */
939 if (app->flags & APP_OPTIONS_FLAGS_IS_TRANSPORT_APP)
Florin Coras8a140612019-02-18 22:39:39 -0800940 ns_index = sep->ns_index;
Florin Corasc1a42652019-02-08 18:27:29 -0800941
Florin Corasc1a42652019-02-08 18:27:29 -0800942 app_ns = app_namespace_get (ns_index);
943 if (!app_ns)
944 return;
945
946 /* Ask transport and network to bind to/connect using local interface
947 * that "supports" app's namespace. This will fix our local connection
948 * endpoint.
949 */
950
951 /* If in default namespace and user requested a fib index use it */
952 if (ns_index == 0 && sep->fib_index != ENDPOINT_INVALID_INDEX)
953 fib_index = sep->fib_index;
954 else
955 fib_index = sep->is_ip4 ? app_ns->ip4_fib_index : app_ns->ip6_fib_index;
956 sep->peer.fib_index = fib_index;
957 sep->fib_index = fib_index;
958
959 if (!is_connect)
960 {
961 sep->sw_if_index = app_ns->sw_if_index;
962 }
963 else
964 {
965 if (app_ns->sw_if_index != APP_NAMESPACE_INVALID_INDEX
966 && sep->peer.sw_if_index != ENDPOINT_INVALID_INDEX
967 && sep->peer.sw_if_index != app_ns->sw_if_index)
968 clib_warning ("Local sw_if_index different from app ns sw_if_index");
969
970 sep->peer.sw_if_index = app_ns->sw_if_index;
971 }
972}
973
974int
975vnet_listen (vnet_listen_args_t * a)
976{
977 app_listener_t *app_listener;
978 app_worker_t *app_wrk;
979 application_t *app;
980 int rv;
981
Florin Coras458089b2019-08-21 16:20:44 -0700982 ASSERT (vlib_thread_is_main_w_barrier ());
983
Florin Corasc1a42652019-02-08 18:27:29 -0800984 app = application_get_if_valid (a->app_index);
985 if (!app)
Florin Corasa8c3b862020-04-07 22:31:06 +0000986 return SESSION_E_NOAPP;
Florin Corasc1a42652019-02-08 18:27:29 -0800987
988 app_wrk = application_get_worker (app, a->wrk_map_index);
989 if (!app_wrk)
Florin Corasa8c3b862020-04-07 22:31:06 +0000990 return SESSION_E_INVALID_APPWRK;
Florin Corasc1a42652019-02-08 18:27:29 -0800991
992 a->sep_ext.app_wrk_index = app_wrk->wrk_index;
993
994 session_endpoint_update_for_app (&a->sep_ext, app, 0 /* is_connect */ );
995 if (!session_endpoint_in_ns (&a->sep))
Florin Corasa8c3b862020-04-07 22:31:06 +0000996 return SESSION_E_INVALID_NS;
Florin Corasc1a42652019-02-08 18:27:29 -0800997
998 /*
999 * Check if we already have an app listener
1000 */
1001 app_listener = app_listener_lookup (app, &a->sep_ext);
1002 if (app_listener)
1003 {
1004 if (app_listener->app_index != app->app_index)
Florin Corasa8c3b862020-04-07 22:31:06 +00001005 return SESSION_E_ALREADY_LISTENING;
1006 if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1007 return rv;
Florin Corasc1a42652019-02-08 18:27:29 -08001008 a->handle = app_listener_handle (app_listener);
1009 return 0;
1010 }
1011
1012 /*
1013 * Create new app listener
1014 */
1015 if ((rv = app_listener_alloc_and_init (app, &a->sep_ext, &app_listener)))
1016 return rv;
1017
1018 if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1019 {
1020 app_listener_cleanup (app_listener);
1021 return rv;
1022 }
1023
1024 a->handle = app_listener_handle (app_listener);
1025 return 0;
1026}
1027
1028int
1029vnet_connect (vnet_connect_args_t * a)
1030{
Florin Coras2b81e3c2019-02-27 07:55:46 -08001031 app_worker_t *client_wrk;
Florin Corasc1a42652019-02-08 18:27:29 -08001032 application_t *client;
Florin Corasc1a42652019-02-08 18:27:29 -08001033
Florin Coras458089b2019-08-21 16:20:44 -07001034 ASSERT (vlib_thread_is_main_w_barrier ());
1035
Florin Corasc1a42652019-02-08 18:27:29 -08001036 if (session_endpoint_is_zero (&a->sep))
Florin Coras00e01d32019-10-21 16:07:46 -07001037 return SESSION_E_INVALID_RMT_IP;
Florin Corasc1a42652019-02-08 18:27:29 -08001038
1039 client = application_get (a->app_index);
1040 session_endpoint_update_for_app (&a->sep_ext, client, 1 /* is_connect */ );
1041 client_wrk = application_get_worker (client, a->wrk_map_index);
1042
1043 /*
1044 * First check the local scope for locally attached destinations.
1045 * If we have local scope, we pass *all* connects through it since we may
1046 * have special policy rules even for non-local destinations, think proxy.
1047 */
1048 if (application_has_local_scope (client))
1049 {
Florin Coras2b81e3c2019-02-27 07:55:46 -08001050 int rv;
Florin Corasc1a42652019-02-08 18:27:29 -08001051
Florin Coras2b81e3c2019-02-27 07:55:46 -08001052 a->sep_ext.original_tp = a->sep_ext.transport_proto;
1053 a->sep_ext.transport_proto = TRANSPORT_PROTO_NONE;
1054 rv = app_worker_connect_session (client_wrk, &a->sep, a->api_context);
1055 if (rv <= 0)
1056 return rv;
Florin Coras00e01d32019-10-21 16:07:46 -07001057 a->sep_ext.transport_proto = a->sep_ext.original_tp;
Florin Corasc1a42652019-02-08 18:27:29 -08001058 }
Florin Corasc1a42652019-02-08 18:27:29 -08001059 /*
1060 * Not connecting to a local server, propagate to transport
1061 */
Florin Coras00e01d32019-10-21 16:07:46 -07001062 return app_worker_connect_session (client_wrk, &a->sep, a->api_context);
Florin Corasc1a42652019-02-08 18:27:29 -08001063}
1064
1065int
1066vnet_unlisten (vnet_unlisten_args_t * a)
1067{
1068 app_worker_t *app_wrk;
1069 app_listener_t *al;
1070 application_t *app;
1071
Florin Coras458089b2019-08-21 16:20:44 -07001072 ASSERT (vlib_thread_is_main_w_barrier ());
1073
Florin Corasc1a42652019-02-08 18:27:29 -08001074 if (!(app = application_get_if_valid (a->app_index)))
Florin Corasa8c3b862020-04-07 22:31:06 +00001075 return SESSION_E_NOAPP;
Florin Corasc1a42652019-02-08 18:27:29 -08001076
Florin Coras92311f62019-03-01 19:26:31 -08001077 if (!(al = app_listener_get_w_handle (a->handle)))
Florin Corasa8c3b862020-04-07 22:31:06 +00001078 return SESSION_E_NOLISTEN;
Florin Coras92311f62019-03-01 19:26:31 -08001079
Florin Corasc1a42652019-02-08 18:27:29 -08001080 if (al->app_index != app->app_index)
1081 {
1082 clib_warning ("app doesn't own handle %llu!", a->handle);
Florin Corasa8c3b862020-04-07 22:31:06 +00001083 return SESSION_E_OWNER;
Florin Corasc1a42652019-02-08 18:27:29 -08001084 }
1085
1086 app_wrk = application_get_worker (app, a->wrk_map_index);
1087 if (!app_wrk)
1088 {
1089 clib_warning ("no app %u worker %u", app->app_index, a->wrk_map_index);
Florin Corasa8c3b862020-04-07 22:31:06 +00001090 return SESSION_E_INVALID_APPWRK;
Florin Corasc1a42652019-02-08 18:27:29 -08001091 }
1092
1093 return app_worker_stop_listen (app_wrk, al);
1094}
1095
1096int
1097vnet_disconnect_session (vnet_disconnect_args_t * a)
1098{
Florin Coras2b81e3c2019-02-27 07:55:46 -08001099 app_worker_t *app_wrk;
1100 session_t *s;
Florin Corasc1a42652019-02-08 18:27:29 -08001101
Florin Coras2b81e3c2019-02-27 07:55:46 -08001102 s = session_get_from_handle_if_valid (a->handle);
1103 if (!s)
Florin Corasa8c3b862020-04-07 22:31:06 +00001104 return SESSION_E_NOSESSION;
1105
Florin Coras2b81e3c2019-02-27 07:55:46 -08001106 app_wrk = app_worker_get (s->app_wrk_index);
1107 if (app_wrk->app_index != a->app_index)
Florin Corasa8c3b862020-04-07 22:31:06 +00001108 return SESSION_E_OWNER;
Florin Corasc1a42652019-02-08 18:27:29 -08001109
Florin Coras2b81e3c2019-02-27 07:55:46 -08001110 /* We're peeking into another's thread pool. Make sure */
1111 ASSERT (s->session_index == session_index_from_handle (a->handle));
Florin Corasc1a42652019-02-08 18:27:29 -08001112
Florin Coras2b81e3c2019-02-27 07:55:46 -08001113 session_close (s);
Florin Corasc1a42652019-02-08 18:27:29 -08001114 return 0;
1115}
1116
1117int
Florin Coras623eb562019-02-03 19:28:34 -08001118application_change_listener_owner (session_t * s, app_worker_t * app_wrk)
1119{
1120 app_worker_t *old_wrk = app_worker_get (s->app_wrk_index);
1121 app_listener_t *app_listener;
1122 application_t *app;
Florin Corasa8c3b862020-04-07 22:31:06 +00001123 int rv;
Florin Coras623eb562019-02-03 19:28:34 -08001124
1125 if (!old_wrk)
Florin Corasa8c3b862020-04-07 22:31:06 +00001126 return SESSION_E_INVALID_APPWRK;
Florin Coras623eb562019-02-03 19:28:34 -08001127
1128 hash_unset (old_wrk->listeners_table, listen_session_get_handle (s));
1129 if (session_transport_service_type (s) == TRANSPORT_SERVICE_CL
1130 && s->rx_fifo)
Florin Coras19223e02019-03-03 14:56:05 -08001131 segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo);
Florin Coras623eb562019-02-03 19:28:34 -08001132
Florin Coras623eb562019-02-03 19:28:34 -08001133 app = application_get (old_wrk->app_index);
1134 if (!app)
Florin Corasa8c3b862020-04-07 22:31:06 +00001135 return SESSION_E_NOAPP;
Florin Coras623eb562019-02-03 19:28:34 -08001136
Florin Corasc9940fc2019-02-05 20:55:11 -08001137 app_listener = app_listener_get (app, s->al_index);
1138
1139 /* Only remove from lb for now */
Florin Coras623eb562019-02-03 19:28:34 -08001140 app_listener->workers = clib_bitmap_set (app_listener->workers,
1141 old_wrk->wrk_map_index, 0);
Florin Coras623eb562019-02-03 19:28:34 -08001142
Florin Corasa8c3b862020-04-07 22:31:06 +00001143 if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1144 return rv;
Florin Corasab2f6db2018-08-31 14:31:41 -07001145
Florin Corasc9940fc2019-02-05 20:55:11 -08001146 s->app_wrk_index = app_wrk->wrk_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001147
Dave Barach68b0fb02017-02-28 15:15:56 -05001148 return 0;
1149}
1150
Dave Barach52851e62017-08-07 09:35:25 -04001151int
1152application_is_proxy (application_t * app)
1153{
Florin Coras7999e832017-10-31 01:51:04 -07001154 return (app->flags & APP_OPTIONS_FLAGS_IS_PROXY);
1155}
1156
1157int
1158application_is_builtin (application_t * app)
1159{
1160 return (app->flags & APP_OPTIONS_FLAGS_IS_BUILTIN);
1161}
1162
1163int
1164application_is_builtin_proxy (application_t * app)
1165{
1166 return (application_is_proxy (app) && application_is_builtin (app));
Dave Barach52851e62017-08-07 09:35:25 -04001167}
1168
Florin Corascea194d2017-10-02 00:18:51 -07001169u8
1170application_has_local_scope (application_t * app)
1171{
1172 return app->flags & APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
1173}
1174
1175u8
1176application_has_global_scope (application_t * app)
1177{
1178 return app->flags & APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
1179}
1180
Florin Coras7999e832017-10-31 01:51:04 -07001181static clib_error_t *
1182application_start_stop_proxy_fib_proto (application_t * app, u8 fib_proto,
1183 u8 transport_proto, u8 is_start)
1184{
Florin Coras7999e832017-10-31 01:51:04 -07001185 app_namespace_t *app_ns = app_namespace_get (app->ns_index);
1186 u8 is_ip4 = (fib_proto == FIB_PROTOCOL_IP4);
Florin Coras5665ced2018-10-25 18:03:45 -07001187 session_endpoint_cfg_t sep = SESSION_ENDPOINT_CFG_NULL;
Florin Coras7999e832017-10-31 01:51:04 -07001188 transport_connection_t *tc;
Florin Coras15531972018-08-12 23:50:53 -07001189 app_worker_t *app_wrk;
Florin Corasc9940fc2019-02-05 20:55:11 -08001190 app_listener_t *al;
Florin Coras288eaab2019-02-03 15:26:14 -08001191 session_t *s;
Florin Corasc9940fc2019-02-05 20:55:11 -08001192 u32 flags;
Florin Coras7999e832017-10-31 01:51:04 -07001193
Florin Coras15531972018-08-12 23:50:53 -07001194 /* TODO decide if we want proxy to be enabled for all workers */
1195 app_wrk = application_get_default_worker (app);
Florin Coras7999e832017-10-31 01:51:04 -07001196 if (is_start)
1197 {
Florin Coras15531972018-08-12 23:50:53 -07001198 s = app_worker_first_listener (app_wrk, fib_proto, transport_proto);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001199 if (!s)
1200 {
1201 sep.is_ip4 = is_ip4;
1202 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1203 sep.sw_if_index = app_ns->sw_if_index;
1204 sep.transport_proto = transport_proto;
Florin Corasab2f6db2018-08-31 14:31:41 -07001205 sep.app_wrk_index = app_wrk->wrk_index; /* only default */
Florin Corasc9940fc2019-02-05 20:55:11 -08001206
1207 /* force global scope listener */
1208 flags = app->flags;
1209 app->flags &= ~APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
1210 app_listener_alloc_and_init (app, &sep, &al);
1211 app->flags = flags;
1212
1213 app_worker_start_listen (app_wrk, al);
1214 s = listen_session_get (al->session_index);
Florin Corasd5c604d2019-03-18 09:06:35 -07001215 s->flags |= SESSION_F_PROXY;
Florin Coras19b1f6a2017-12-11 03:37:03 -08001216 }
Florin Coras7999e832017-10-31 01:51:04 -07001217 }
1218 else
1219 {
Florin Coras623eb562019-02-03 19:28:34 -08001220 s = app_worker_proxy_listener (app_wrk, fib_proto, transport_proto);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001221 ASSERT (s);
Florin Coras7999e832017-10-31 01:51:04 -07001222 }
Florin Coras19b1f6a2017-12-11 03:37:03 -08001223
Florin Coras7999e832017-10-31 01:51:04 -07001224 tc = listen_session_get_transport (s);
1225
1226 if (!ip_is_zero (&tc->lcl_ip, 1))
1227 {
Florin Corasdbd44562017-11-09 19:30:17 -08001228 u32 sti;
1229 sep.is_ip4 = is_ip4;
1230 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1231 sep.transport_proto = transport_proto;
1232 sep.port = 0;
1233 sti = session_lookup_get_index_for_fib (fib_proto, sep.fib_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001234 if (is_start)
Florin Corasab2f6db2018-08-31 14:31:41 -07001235 session_lookup_add_session_endpoint (sti,
1236 (session_endpoint_t *) & sep,
1237 s->session_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001238 else
Florin Corasab2f6db2018-08-31 14:31:41 -07001239 session_lookup_del_session_endpoint (sti,
1240 (session_endpoint_t *) & sep);
Florin Coras7999e832017-10-31 01:51:04 -07001241 }
Florin Coras19b1f6a2017-12-11 03:37:03 -08001242
Florin Coras7999e832017-10-31 01:51:04 -07001243 return 0;
1244}
1245
Florin Coras19b1f6a2017-12-11 03:37:03 -08001246static void
1247application_start_stop_proxy_local_scope (application_t * app,
1248 u8 transport_proto, u8 is_start)
1249{
1250 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
1251 app_namespace_t *app_ns;
1252 app_ns = app_namespace_get (app->ns_index);
1253 sep.is_ip4 = 1;
1254 sep.transport_proto = transport_proto;
1255 sep.port = 0;
1256
1257 if (is_start)
1258 {
1259 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
Florin Coras15531972018-08-12 23:50:53 -07001260 app->app_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001261 sep.is_ip4 = 0;
1262 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
Florin Coras15531972018-08-12 23:50:53 -07001263 app->app_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001264 }
1265 else
1266 {
1267 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1268 sep.is_ip4 = 0;
1269 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1270 }
1271}
1272
Florin Coras7999e832017-10-31 01:51:04 -07001273void
Florin Coras561af9b2017-12-09 10:19:43 -08001274application_start_stop_proxy (application_t * app,
1275 transport_proto_t transport_proto, u8 is_start)
Florin Coras7999e832017-10-31 01:51:04 -07001276{
Florin Coras7999e832017-10-31 01:51:04 -07001277 if (application_has_local_scope (app))
Florin Coras19b1f6a2017-12-11 03:37:03 -08001278 application_start_stop_proxy_local_scope (app, transport_proto, is_start);
Florin Coras7999e832017-10-31 01:51:04 -07001279
1280 if (application_has_global_scope (app))
1281 {
1282 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP4,
1283 transport_proto, is_start);
1284 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP6,
1285 transport_proto, is_start);
1286 }
1287}
1288
1289void
1290application_setup_proxy (application_t * app)
1291{
1292 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -08001293 transport_proto_t tp;
1294
Florin Coras7999e832017-10-31 01:51:04 -07001295 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -08001296
1297 /* *INDENT-OFF* */
1298 transport_proto_foreach (tp, ({
1299 if (transports & (1 << tp))
1300 application_start_stop_proxy (app, tp, 1);
1301 }));
1302 /* *INDENT-ON* */
Florin Coras7999e832017-10-31 01:51:04 -07001303}
1304
1305void
1306application_remove_proxy (application_t * app)
1307{
1308 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -08001309 transport_proto_t tp;
1310
Florin Coras7999e832017-10-31 01:51:04 -07001311 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -08001312
1313 /* *INDENT-OFF* */
1314 transport_proto_foreach (tp, ({
1315 if (transports & (1 << tp))
1316 application_start_stop_proxy (app, tp, 0);
1317 }));
1318 /* *INDENT-ON* */
Florin Coras7999e832017-10-31 01:51:04 -07001319}
1320
Florin Coras88001c62019-04-24 14:44:46 -07001321segment_manager_props_t *
Florin Corasa332c462018-01-31 06:52:17 -08001322application_segment_manager_properties (application_t * app)
1323{
1324 return &app->sm_properties;
1325}
1326
Florin Coras88001c62019-04-24 14:44:46 -07001327segment_manager_props_t *
Florin Corasa332c462018-01-31 06:52:17 -08001328application_get_segment_manager_properties (u32 app_index)
1329{
1330 application_t *app = application_get (app_index);
1331 return &app->sm_properties;
1332}
1333
Florin Coras371ca502018-02-21 12:07:41 -08001334clib_error_t *
1335vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a)
1336{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001337 /* Deprected, will be remove after 20.01 */
1338 app_cert_key_pair_t *ckpair;
1339 ckpair = app_cert_key_pair_get_default ();
1340 ckpair->cert = vec_dup (a->cert);
Florin Coras371ca502018-02-21 12:07:41 -08001341 return 0;
1342}
1343
1344clib_error_t *
1345vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a)
1346{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001347 /* Deprected, will be remove after 20.01 */
1348 app_cert_key_pair_t *ckpair;
1349 ckpair = app_cert_key_pair_get_default ();
1350 ckpair->key = vec_dup (a->key);
Florin Coras371ca502018-02-21 12:07:41 -08001351 return 0;
1352}
1353
Florin Coras15531972018-08-12 23:50:53 -07001354static void
1355application_format_listeners (application_t * app, int verbose)
1356{
1357 vlib_main_t *vm = vlib_get_main ();
1358 app_worker_map_t *wrk_map;
1359 app_worker_t *app_wrk;
1360 u32 sm_index;
1361 u64 handle;
1362
1363 if (!app)
1364 {
1365 vlib_cli_output (vm, "%U", format_app_worker_listener, 0 /* header */ ,
1366 0, 0, verbose);
1367 return;
1368 }
1369
1370 /* *INDENT-OFF* */
1371 pool_foreach (wrk_map, app->worker_maps, ({
1372 app_wrk = app_worker_get (wrk_map->wrk_index);
1373 if (hash_elts (app_wrk->listeners_table) == 0)
1374 continue;
1375 hash_foreach (handle, sm_index, app_wrk->listeners_table, ({
1376 vlib_cli_output (vm, "%U", format_app_worker_listener, app_wrk,
1377 handle, sm_index, verbose);
1378 }));
1379 }));
1380 /* *INDENT-ON* */
1381}
1382
1383static void
Florin Coras15531972018-08-12 23:50:53 -07001384application_format_connects (application_t * app, int verbose)
1385{
1386 app_worker_map_t *wrk_map;
1387 app_worker_t *app_wrk;
1388
1389 if (!app)
1390 {
1391 app_worker_format_connects (0, verbose);
1392 return;
1393 }
1394
1395 /* *INDENT-OFF* */
1396 pool_foreach (wrk_map, app->worker_maps, ({
1397 app_wrk = app_worker_get (wrk_map->wrk_index);
1398 app_worker_format_connects (app_wrk, verbose);
1399 }));
1400 /* *INDENT-ON* */
1401}
1402
Florin Coras6cf30ad2017-04-04 23:08:23 -07001403u8 *
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001404format_cert_key_pair (u8 * s, va_list * args)
1405{
1406 app_cert_key_pair_t *ckpair = va_arg (*args, app_cert_key_pair_t *);
1407 int key_len = 0, cert_len = 0;
1408 cert_len = vec_len (ckpair->cert);
1409 key_len = vec_len (ckpair->key);
1410 if (ckpair->cert_key_index == 0)
1411 s = format (s, "DEFAULT (cert:%d, key:%d)", cert_len, key_len);
1412 else
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001413 s = format (s, "%d (cert:%d, key:%d)", ckpair->cert_key_index,
1414 cert_len, key_len);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001415 return s;
1416}
1417
1418u8 *
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02001419format_crypto_engine (u8 * s, va_list * args)
1420{
1421 u32 engine = va_arg (*args, u32);
1422 switch (engine)
1423 {
1424 case CRYPTO_ENGINE_NONE:
1425 return format (s, "none");
1426 case CRYPTO_ENGINE_MBEDTLS:
1427 return format (s, "mbedtls");
1428 case CRYPTO_ENGINE_OPENSSL:
1429 return format (s, "openssl");
1430 case CRYPTO_ENGINE_PICOTLS:
1431 return format (s, "picotls");
1432 case CRYPTO_ENGINE_VPP:
1433 return format (s, "vpp");
1434 default:
1435 return format (s, "unknown engine");
1436 }
1437 return s;
1438}
1439
1440uword
1441unformat_crypto_engine (unformat_input_t * input, va_list * args)
1442{
1443 u8 *a = va_arg (*args, u8 *);
1444 if (unformat (input, "mbedtls"))
1445 *a = CRYPTO_ENGINE_MBEDTLS;
1446 else if (unformat (input, "openssl"))
1447 *a = CRYPTO_ENGINE_OPENSSL;
1448 else if (unformat (input, "picotls"))
1449 *a = CRYPTO_ENGINE_PICOTLS;
1450 else if (unformat (input, "vpp"))
1451 *a = CRYPTO_ENGINE_VPP;
1452 else
1453 return 0;
1454 return 1;
1455}
1456
1457u8 *
1458format_crypto_context (u8 * s, va_list * args)
1459{
1460 crypto_context_t *crctx = va_arg (*args, crypto_context_t *);
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001461 s = format (s, "[0x%x][sub%d,ckpair%x]", crctx->ctx_index,
1462 crctx->n_subscribers, crctx->ckpair_index);
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02001463 s = format (s, "[%U]", format_crypto_engine, crctx->crypto_engine);
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02001464 return s;
1465}
1466
1467u8 *
Florin Coras6cf30ad2017-04-04 23:08:23 -07001468format_application (u8 * s, va_list * args)
1469{
1470 application_t *app = va_arg (*args, application_t *);
1471 CLIB_UNUSED (int verbose) = va_arg (*args, int);
Florin Coras88001c62019-04-24 14:44:46 -07001472 segment_manager_props_t *props;
Florin Coras053a0e42018-11-13 15:52:38 -08001473 const u8 *app_ns_name, *app_name;
Florin Coras349f8ca2018-11-20 16:52:49 -08001474 app_worker_map_t *wrk_map;
1475 app_worker_t *app_wrk;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001476
1477 if (app == 0)
1478 {
Florin Coras349f8ca2018-11-20 16:52:49 -08001479 if (!verbose)
Florin Corasc1f5a432018-11-20 11:31:26 -08001480 s = format (s, "%-10s%-20s%-40s", "Index", "Name", "Namespace");
Florin Coras6cf30ad2017-04-04 23:08:23 -07001481 return s;
1482 }
1483
Florin Coras0bee9ce2018-03-22 21:24:31 -07001484 app_name = app_get_name (app);
Florin Corascea194d2017-10-02 00:18:51 -07001485 app_ns_name = app_namespace_id_from_index (app->ns_index);
Florin Corasa332c462018-01-31 06:52:17 -08001486 props = application_segment_manager_properties (app);
Florin Coras349f8ca2018-11-20 16:52:49 -08001487 if (!verbose)
1488 {
jiangxiaomingdfb30d92020-08-31 17:38:11 +08001489 s = format (s, "%-10u%-20v%-40v", app->app_index, app_name,
Florin Coras349f8ca2018-11-20 16:52:49 -08001490 app_ns_name);
1491 return s;
1492 }
1493
Florin Corasfa7512e2019-04-04 22:31:50 -07001494 s = format (s, "app-name %v app-index %u ns-index %u seg-size %U\n",
Florin Coras349f8ca2018-11-20 16:52:49 -08001495 app_name, app->app_index, app->ns_index,
1496 format_memory_size, props->add_segment_size);
1497 s = format (s, "rx-fifo-size %U tx-fifo-size %U workers:\n",
1498 format_memory_size, props->rx_fifo_size,
1499 format_memory_size, props->tx_fifo_size);
1500
1501 /* *INDENT-OFF* */
1502 pool_foreach (wrk_map, app->worker_maps, ({
1503 app_wrk = app_worker_get (wrk_map->wrk_index);
Florin Coras623eb562019-02-03 19:28:34 -08001504 s = format (s, "%U", format_app_worker, app_wrk);
Florin Coras349f8ca2018-11-20 16:52:49 -08001505 }));
1506 /* *INDENT-ON* */
1507
Dave Barach68b0fb02017-02-28 15:15:56 -05001508 return s;
1509}
1510
Florin Corasf8f516a2018-02-08 15:10:09 -08001511void
Florin Coras2b81e3c2019-02-27 07:55:46 -08001512application_format_all_listeners (vlib_main_t * vm, int verbose)
Florin Corasf8f516a2018-02-08 15:10:09 -08001513{
1514 application_t *app;
Florin Corasf8f516a2018-02-08 15:10:09 -08001515
Florin Coras15531972018-08-12 23:50:53 -07001516 if (!pool_elts (app_main.app_pool))
Florin Corasf8f516a2018-02-08 15:10:09 -08001517 {
1518 vlib_cli_output (vm, "No active server bindings");
1519 return;
1520 }
1521
Florin Coras2b81e3c2019-02-27 07:55:46 -08001522 application_format_listeners (0, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08001523
Florin Coras2b81e3c2019-02-27 07:55:46 -08001524 /* *INDENT-OFF* */
1525 pool_foreach (app, app_main.app_pool, ({
1526 application_format_listeners (app, verbose);
1527 }));
1528 /* *INDENT-ON* */
Florin Corasf8f516a2018-02-08 15:10:09 -08001529}
1530
1531void
Florin Coras2b81e3c2019-02-27 07:55:46 -08001532application_format_all_clients (vlib_main_t * vm, int verbose)
Florin Corasf8f516a2018-02-08 15:10:09 -08001533{
1534 application_t *app;
1535
Florin Coras15531972018-08-12 23:50:53 -07001536 if (!pool_elts (app_main.app_pool))
Florin Corasf8f516a2018-02-08 15:10:09 -08001537 {
1538 vlib_cli_output (vm, "No active apps");
1539 return;
1540 }
1541
Florin Coras2b81e3c2019-02-27 07:55:46 -08001542 application_format_connects (0, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08001543
Florin Coras2b81e3c2019-02-27 07:55:46 -08001544 /* *INDENT-OFF* */
1545 pool_foreach (app, app_main.app_pool, ({
1546 application_format_connects (app, verbose);
1547 }));
1548 /* *INDENT-ON* */
Florin Corasf8f516a2018-02-08 15:10:09 -08001549}
1550
Dave Barach68b0fb02017-02-28 15:15:56 -05001551static clib_error_t *
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001552show_certificate_command_fn (vlib_main_t * vm, unformat_input_t * input,
1553 vlib_cli_command_t * cmd)
1554{
1555 app_cert_key_pair_t *ckpair;
1556 session_cli_return_if_not_enabled ();
1557
1558 /* *INDENT-OFF* */
1559 pool_foreach (ckpair, app_main.cert_key_pair_store, ({
1560 vlib_cli_output (vm, "%U", format_cert_key_pair, ckpair);
1561 }));
1562 /* *INDENT-ON* */
1563 return 0;
1564}
1565
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001566static inline void
1567appliction_format_app_mq (vlib_main_t * vm, application_t * app)
1568{
1569 app_worker_map_t *map;
1570 app_worker_t *wrk;
1571 /* *INDENT-OFF* */
1572 pool_foreach (map, app->worker_maps, ({
1573 wrk = app_worker_get (map->wrk_index);
1574 vlib_cli_output (vm, "[A%d][%d]%U", app->app_index,
1575 map->wrk_index, format_svm_msg_q,
1576 wrk->event_queue);
1577 }));
1578 /* *INDENT-ON* */
1579}
1580
1581static clib_error_t *
1582appliction_format_all_app_mq (vlib_main_t * vm)
1583{
1584 application_t *app;
1585 int i, n_threads;
1586
1587 n_threads = vec_len (vlib_mains);
1588
1589 for (i = 0; i < n_threads; i++)
1590 {
1591 vlib_cli_output (vm, "[Ctrl%d]%U", i, format_svm_msg_q,
1592 session_main_get_vpp_event_queue (i));
1593 }
1594
1595 /* *INDENT-OFF* */
1596 pool_foreach (app, app_main.app_pool, ({
1597 appliction_format_app_mq (vm, app);
1598 }));
1599 /* *INDENT-ON* */
1600 return 0;
1601}
1602
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001603static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05001604show_app_command_fn (vlib_main_t * vm, unformat_input_t * input,
1605 vlib_cli_command_t * cmd)
1606{
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001607 int do_server = 0, do_client = 0, do_mq = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001608 application_t *app;
Florin Coras349f8ca2018-11-20 16:52:49 -08001609 u32 app_index = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001610 int verbose = 0;
1611
Florin Corascea194d2017-10-02 00:18:51 -07001612 session_cli_return_if_not_enabled ();
Florin Corase04c2992017-03-01 08:17:34 -08001613
Dave Barach68b0fb02017-02-28 15:15:56 -05001614 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1615 {
1616 if (unformat (input, "server"))
1617 do_server = 1;
1618 else if (unformat (input, "client"))
1619 do_client = 1;
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001620 else if (unformat (input, "mq"))
1621 do_mq = 1;
Florin Coras349f8ca2018-11-20 16:52:49 -08001622 else if (unformat (input, "%u", &app_index))
1623 ;
Dave Barach68b0fb02017-02-28 15:15:56 -05001624 else if (unformat (input, "verbose"))
1625 verbose = 1;
1626 else
Florin Coras349f8ca2018-11-20 16:52:49 -08001627 return clib_error_return (0, "unknown input `%U'",
1628 format_unformat_error, input);
Dave Barach68b0fb02017-02-28 15:15:56 -05001629 }
1630
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001631 if (do_mq && app_index != ~0)
1632 {
1633 app = application_get_if_valid (app_index);
1634 if (!app)
1635 return clib_error_return (0, "No app with index %u", app_index);
1636
1637 appliction_format_app_mq (vm, app);
1638 return 0;
1639 }
1640
1641 if (do_mq)
1642 {
1643 appliction_format_all_app_mq (vm);
1644 return 0;
1645 }
1646
Dave Barach68b0fb02017-02-28 15:15:56 -05001647 if (do_server)
Florin Coras349f8ca2018-11-20 16:52:49 -08001648 {
Florin Coras2b81e3c2019-02-27 07:55:46 -08001649 application_format_all_listeners (vm, verbose);
Florin Coras349f8ca2018-11-20 16:52:49 -08001650 return 0;
1651 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001652
1653 if (do_client)
Florin Coras349f8ca2018-11-20 16:52:49 -08001654 {
Florin Coras2b81e3c2019-02-27 07:55:46 -08001655 application_format_all_clients (vm, verbose);
Florin Coras349f8ca2018-11-20 16:52:49 -08001656 return 0;
1657 }
1658
1659 if (app_index != ~0)
1660 {
Florin Coras47c40e22018-11-26 17:01:36 -08001661 app = application_get_if_valid (app_index);
Florin Coras349f8ca2018-11-20 16:52:49 -08001662 if (!app)
1663 return clib_error_return (0, "No app with index %u", app_index);
1664
1665 vlib_cli_output (vm, "%U", format_application, app, /* verbose */ 1);
1666 return 0;
1667 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001668
Florin Coras6cf30ad2017-04-04 23:08:23 -07001669 /* Print app related info */
1670 if (!do_server && !do_client)
1671 {
Florin Coras349f8ca2018-11-20 16:52:49 -08001672 vlib_cli_output (vm, "%U", format_application, 0, 0);
Florin Corascea194d2017-10-02 00:18:51 -07001673 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001674 pool_foreach (app, app_main.app_pool, ({
Florin Coras349f8ca2018-11-20 16:52:49 -08001675 vlib_cli_output (vm, "%U", format_application, app, 0);
Florin Corascea194d2017-10-02 00:18:51 -07001676 }));
1677 /* *INDENT-ON* */
Florin Coras6cf30ad2017-04-04 23:08:23 -07001678 }
1679
Dave Barach68b0fb02017-02-28 15:15:56 -05001680 return 0;
1681}
1682
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02001683/* Certificate store */
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001684
1685static app_cert_key_pair_t *
1686app_cert_key_pair_alloc ()
1687{
1688 app_cert_key_pair_t *ckpair;
1689 pool_get (app_main.cert_key_pair_store, ckpair);
1690 clib_memset (ckpair, 0, sizeof (*ckpair));
1691 ckpair->cert_key_index = ckpair - app_main.cert_key_pair_store;
1692 return ckpair;
1693}
1694
1695app_cert_key_pair_t *
1696app_cert_key_pair_get_if_valid (u32 index)
1697{
1698 if (pool_is_free_index (app_main.cert_key_pair_store, index))
1699 return 0;
1700 return app_cert_key_pair_get (index);
1701}
1702
1703app_cert_key_pair_t *
1704app_cert_key_pair_get (u32 index)
1705{
1706 return pool_elt_at_index (app_main.cert_key_pair_store, index);
1707}
1708
1709app_cert_key_pair_t *
1710app_cert_key_pair_get_default ()
1711{
1712 /* To maintain legacy bapi */
1713 return app_cert_key_pair_get (0);
1714}
1715
1716int
1717vnet_app_add_cert_key_pair (vnet_app_add_cert_key_pair_args_t * a)
1718{
1719 app_cert_key_pair_t *ckpair = app_cert_key_pair_alloc ();
1720 ckpair->cert = vec_dup (a->cert);
1721 ckpair->key = vec_dup (a->key);
1722 a->index = ckpair->cert_key_index;
1723 return 0;
1724}
1725
1726int
Nathan Skrzypczak7fbdb6a2019-10-09 16:23:26 +02001727vnet_app_add_cert_key_interest (u32 index, u32 app_index)
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001728{
1729 app_cert_key_pair_t *ckpair;
1730 if (!(ckpair = app_cert_key_pair_get_if_valid (index)))
1731 return -1;
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02001732 if (vec_search (ckpair->app_interests, app_index) != ~0)
1733 vec_add1 (ckpair->app_interests, app_index);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001734 return 0;
1735}
1736
1737int
1738vnet_app_del_cert_key_pair (u32 index)
1739{
1740 app_cert_key_pair_t *ckpair;
1741 application_t *app;
1742 u32 *app_index;
1743
1744 if (!(ckpair = app_cert_key_pair_get_if_valid (index)))
1745 return (VNET_API_ERROR_INVALID_VALUE);
1746
1747 vec_foreach (app_index, ckpair->app_interests)
1748 {
1749 if ((app = application_get_if_valid (*app_index))
1750 && app->cb_fns.app_cert_key_pair_delete_callback)
1751 app->cb_fns.app_cert_key_pair_delete_callback (ckpair);
1752 }
1753
1754 vec_free (ckpair->cert);
1755 vec_free (ckpair->key);
1756 pool_put (app_main.cert_key_pair_store, ckpair);
1757 return 0;
1758}
1759
1760clib_error_t *
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02001761application_init (vlib_main_t * vm)
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001762{
1763 /* Add a certificate with index 0 to support legacy apis */
1764 (void) app_cert_key_pair_alloc ();
Florin Coras79ba25d2019-10-20 19:32:47 -07001765 app_main.last_crypto_engine = CRYPTO_ENGINE_LAST;
jiangxiaomingb495e9f2020-07-13 16:21:33 +08001766 app_main.app_by_name = hash_create_vec (0, sizeof (u8), sizeof (uword));
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001767 return 0;
1768}
1769
Florin Corase04c2992017-03-01 08:17:34 -08001770/* *INDENT-OFF* */
Nathan Skrzypczakde6caf42019-10-09 14:41:48 +02001771VLIB_INIT_FUNCTION (application_init);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001772
Dave Barach68b0fb02017-02-28 15:15:56 -05001773VLIB_CLI_COMMAND (show_app_command, static) =
1774{
Florin Corase04c2992017-03-01 08:17:34 -08001775 .path = "show app",
Nathan Skrzypczakcfdb1092019-12-02 16:44:42 +01001776 .short_help = "show app [app_id] [server|client] [mq] [verbose]",
Florin Corase04c2992017-03-01 08:17:34 -08001777 .function = show_app_command_fn,
1778};
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001779
1780VLIB_CLI_COMMAND (show_certificate_command, static) =
1781{
1782 .path = "show app certificate",
1783 .short_help = "list app certs and keys present in store",
1784 .function = show_certificate_command_fn,
1785};
Florin Corase04c2992017-03-01 08:17:34 -08001786/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001787
Florin Coras79ba25d2019-10-20 19:32:47 -07001788crypto_engine_type_t
1789app_crypto_engine_type_add (void)
1790{
1791 return (++app_main.last_crypto_engine);
1792}
1793
1794u8
1795app_crypto_engine_n_types (void)
1796{
1797 return (app_main.last_crypto_engine + 1);
1798}
1799
Dave Barach68b0fb02017-02-28 15:15:56 -05001800/*
1801 * fd.io coding-style-patch-verification: ON
1802 *
1803 * Local Variables:
1804 * eval: (c-set-style "gnu")
1805 * End:
1806 */