blob: 9b77af90577c3497f56b8443b8883c9f104e3ce7 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/session/application.h>
Florin 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>
Dave Barach68b0fb02017-02-28 15:15:56 -050019#include <vnet/session/session.h>
20
Florin Coras15531972018-08-12 23:50:53 -070021static app_main_t app_main;
Dave Barach68b0fb02017-02-28 15:15:56 -050022
Florin Corasab2f6db2018-08-31 14:31:41 -070023static app_listener_t *
24app_listener_alloc (application_t * app)
25{
26 app_listener_t *app_listener;
27 pool_get (app->listeners, app_listener);
Dave Barachb7b92992018-10-17 10:38:51 -040028 clib_memset (app_listener, 0, sizeof (*app_listener));
Florin Corasab2f6db2018-08-31 14:31:41 -070029 app_listener->al_index = app_listener - app->listeners;
30 return app_listener;
31}
32
33static app_listener_t *
34app_listener_get (application_t * app, u32 app_listener_index)
35{
36 return pool_elt_at_index (app->listeners, app_listener_index);
37}
38
39static void
40app_listener_free (application_t * app, app_listener_t * app_listener)
41{
42 clib_bitmap_free (app_listener->workers);
43 pool_put (app->listeners, app_listener);
44 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -040045 clib_memset (app_listener, 0xfa, sizeof (*app_listener));
Florin Corasab2f6db2018-08-31 14:31:41 -070046}
47
48static app_listener_t *
49app_local_listener_alloc (application_t * app)
50{
51 app_listener_t *app_listener;
52 pool_get (app->local_listeners, app_listener);
Dave Barachb7b92992018-10-17 10:38:51 -040053 clib_memset (app_listener, 0, sizeof (*app_listener));
Florin Corasab2f6db2018-08-31 14:31:41 -070054 app_listener->al_index = app_listener - app->local_listeners;
55 return app_listener;
56}
57
58static app_listener_t *
59app_local_listener_get (application_t * app, u32 app_listener_index)
60{
61 return pool_elt_at_index (app->local_listeners, app_listener_index);
62}
63
64static void
65app_local_listener_free (application_t * app, app_listener_t * app_listener)
66{
67 clib_bitmap_free (app_listener->workers);
68 pool_put (app->local_listeners, app_listener);
69 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -040070 clib_memset (app_listener, 0xfa, sizeof (*app_listener));
Florin Corasab2f6db2018-08-31 14:31:41 -070071}
72
Florin Coras15531972018-08-12 23:50:53 -070073static app_worker_map_t *
74app_worker_map_alloc (application_t * app)
75{
76 app_worker_map_t *map;
77 pool_get (app->worker_maps, map);
Dave Barachb7b92992018-10-17 10:38:51 -040078 clib_memset (map, 0, sizeof (*map));
Florin Coras15531972018-08-12 23:50:53 -070079 return map;
80}
Dave Barach68b0fb02017-02-28 15:15:56 -050081
Florin Coras15531972018-08-12 23:50:53 -070082static u32
83app_worker_map_index (application_t * app, app_worker_map_t * map)
84{
85 return (map - app->worker_maps);
86}
87
88static void
89app_worker_map_free (application_t * app, app_worker_map_t * map)
90{
91 pool_put (app->worker_maps, map);
92}
93
94static app_worker_map_t *
95app_worker_map_get (application_t * app, u32 map_index)
96{
97 return pool_elt_at_index (app->worker_maps, map_index);
98}
Florin Coras0bee9ce2018-03-22 21:24:31 -070099
Florin Coras053a0e42018-11-13 15:52:38 -0800100static const u8 *
Florin Coras0bee9ce2018-03-22 21:24:31 -0700101app_get_name (application_t * app)
102{
Florin Coras0bee9ce2018-03-22 21:24:31 -0700103 return app->name;
104}
105
Florin Corascea194d2017-10-02 00:18:51 -0700106u32
107application_session_table (application_t * app, u8 fib_proto)
108{
109 app_namespace_t *app_ns;
110 app_ns = app_namespace_get (app->ns_index);
111 if (!application_has_global_scope (app))
112 return APP_INVALID_INDEX;
113 if (fib_proto == FIB_PROTOCOL_IP4)
114 return session_lookup_get_index_for_fib (fib_proto,
115 app_ns->ip4_fib_index);
116 else
117 return session_lookup_get_index_for_fib (fib_proto,
118 app_ns->ip6_fib_index);
119}
120
121u32
122application_local_session_table (application_t * app)
123{
124 app_namespace_t *app_ns;
125 if (!application_has_local_scope (app))
126 return APP_INVALID_INDEX;
127 app_ns = app_namespace_get (app->ns_index);
128 return app_ns->local_table_index;
129}
130
Florin Corasab2f6db2018-08-31 14:31:41 -0700131static void
132application_local_listener_session_endpoint (local_session_t * ll,
133 session_endpoint_t * sep)
134{
135 sep->transport_proto =
136 session_type_transport_proto (ll->listener_session_type);
137 sep->port = ll->port;
138 sep->is_ip4 = ll->listener_session_type & 1;
139}
140
Florin Corascea194d2017-10-02 00:18:51 -0700141/**
Florin Coras053a0e42018-11-13 15:52:38 -0800142 * Returns app name for app-index
Florin Corascea194d2017-10-02 00:18:51 -0700143 */
Florin Coras053a0e42018-11-13 15:52:38 -0800144const u8 *
Florin Corascea194d2017-10-02 00:18:51 -0700145application_name_from_index (u32 app_index)
146{
147 application_t *app = application_get (app_index);
148 if (!app)
149 return 0;
Florin Coras053a0e42018-11-13 15:52:38 -0800150 return app_get_name (app);
151}
152
153static void
154application_api_table_add (u32 app_index, u32 api_client_index)
155{
Florin Corasc1f5a432018-11-20 11:31:26 -0800156 if (api_client_index != APP_INVALID_INDEX)
157 hash_set (app_main.app_by_api_client_index, api_client_index, app_index);
Florin Coras053a0e42018-11-13 15:52:38 -0800158}
159
160static void
161application_api_table_del (u32 api_client_index)
162{
163 hash_unset (app_main.app_by_api_client_index, api_client_index);
Florin Corascea194d2017-10-02 00:18:51 -0700164}
165
Dave Barach68b0fb02017-02-28 15:15:56 -0500166static void
Florin Corasc1f5a432018-11-20 11:31:26 -0800167application_name_table_add (application_t * app)
Dave Barach68b0fb02017-02-28 15:15:56 -0500168{
Florin Corasc1f5a432018-11-20 11:31:26 -0800169 hash_set_mem (app_main.app_by_name, app->name, app->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500170}
171
172static void
Florin Corasc1f5a432018-11-20 11:31:26 -0800173application_name_table_del (application_t * app)
Dave Barach68b0fb02017-02-28 15:15:56 -0500174{
Florin Corasc1f5a432018-11-20 11:31:26 -0800175 hash_unset_mem (app_main.app_by_name, app->name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500176}
177
178application_t *
179application_lookup (u32 api_client_index)
180{
181 uword *p;
Florin Coras15531972018-08-12 23:50:53 -0700182 p = hash_get (app_main.app_by_api_client_index, api_client_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500183 if (p)
Florin Coras053a0e42018-11-13 15:52:38 -0800184 return application_get_if_valid (p[0]);
Dave Barach68b0fb02017-02-28 15:15:56 -0500185
186 return 0;
187}
188
Florin Coras6cf30ad2017-04-04 23:08:23 -0700189application_t *
Florin Coras0bee9ce2018-03-22 21:24:31 -0700190application_lookup_name (const u8 * name)
191{
192 uword *p;
Florin Coras15531972018-08-12 23:50:53 -0700193 p = hash_get_mem (app_main.app_by_name, name);
Florin Coras0bee9ce2018-03-22 21:24:31 -0700194 if (p)
195 return application_get (p[0]);
196
197 return 0;
198}
199
200application_t *
Florin Coras15531972018-08-12 23:50:53 -0700201application_alloc (void)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700202{
203 application_t *app;
Florin Coras15531972018-08-12 23:50:53 -0700204 pool_get (app_main.app_pool, app);
Dave Barachb7b92992018-10-17 10:38:51 -0400205 clib_memset (app, 0, sizeof (*app));
Florin Coras15531972018-08-12 23:50:53 -0700206 app->app_index = app - app_main.app_pool;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700207 return app;
208}
209
Florin Coras15531972018-08-12 23:50:53 -0700210application_t *
211application_get (u32 app_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500212{
Florin Coras15531972018-08-12 23:50:53 -0700213 if (app_index == APP_INVALID_INDEX)
214 return 0;
215 return pool_elt_at_index (app_main.app_pool, app_index);
216}
Dave Barach68b0fb02017-02-28 15:15:56 -0500217
Florin Coras15531972018-08-12 23:50:53 -0700218application_t *
219application_get_if_valid (u32 app_index)
220{
221 if (pool_is_free_index (app_main.app_pool, app_index))
222 return 0;
Florin Corasa5464812017-04-19 13:00:05 -0700223
Florin Coras15531972018-08-12 23:50:53 -0700224 return pool_elt_at_index (app_main.app_pool, app_index);
225}
Florin Coras7999e832017-10-31 01:51:04 -0700226
Florin Corasd79b41e2017-03-04 05:37:52 -0800227static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700228application_verify_cb_fns (session_cb_vft_t * cb_fns)
Florin Corasd79b41e2017-03-04 05:37:52 -0800229{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700230 if (cb_fns->session_accept_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800231 clib_warning ("No accept callback function provided");
Florin Coras6cf30ad2017-04-04 23:08:23 -0700232 if (cb_fns->session_connected_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800233 clib_warning ("No session connected callback function provided");
234 if (cb_fns->session_disconnect_callback == 0)
235 clib_warning ("No session disconnect callback function provided");
236 if (cb_fns->session_reset_callback == 0)
237 clib_warning ("No session reset callback function provided");
238}
239
Florin Corasb384b542018-01-15 01:08:33 -0800240/**
241 * Check app config for given segment type
242 *
243 * Returns 1 on success and 0 otherwise
244 */
245static u8
246application_verify_cfg (ssvm_segment_type_t st)
247{
248 u8 is_valid;
249 if (st == SSVM_SEGMENT_MEMFD)
250 {
251 is_valid = (session_manager_get_evt_q_segment () != 0);
252 if (!is_valid)
253 clib_warning ("memfd seg: vpp's event qs IN binary api svm region");
254 return is_valid;
255 }
256 else if (st == SSVM_SEGMENT_SHM)
257 {
258 is_valid = (session_manager_get_evt_q_segment () == 0);
259 if (!is_valid)
260 clib_warning ("shm seg: vpp's event qs NOT IN binary api svm region");
261 return is_valid;
262 }
263 else
264 return 1;
265}
266
Florin Coras6cf30ad2017-04-04 23:08:23 -0700267int
Florin Coras15531972018-08-12 23:50:53 -0700268application_alloc_and_init (app_init_args_t * a)
Dave Barach68b0fb02017-02-28 15:15:56 -0500269{
Florin Corasa332c462018-01-31 06:52:17 -0800270 ssvm_segment_type_t seg_type = SSVM_SEGMENT_MEMFD;
Florin Corasb384b542018-01-15 01:08:33 -0800271 segment_manager_properties_t *props;
272 vl_api_registration_t *reg;
Florin Coras15531972018-08-12 23:50:53 -0700273 application_t *app;
274 u64 *options;
Dave Barach68b0fb02017-02-28 15:15:56 -0500275
Florin Coras15531972018-08-12 23:50:53 -0700276 app = application_alloc ();
277 options = a->options;
Florin Corasb384b542018-01-15 01:08:33 -0800278 /*
279 * Make sure we support the requested configuration
280 */
Florin Corasa332c462018-01-31 06:52:17 -0800281 if (!(options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_IS_BUILTIN))
282 {
Florin Coras15531972018-08-12 23:50:53 -0700283 reg = vl_api_client_index_to_registration (a->api_client_index);
Florin Corasa332c462018-01-31 06:52:17 -0800284 if (!reg)
285 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
286 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
287 seg_type = SSVM_SEGMENT_SHM;
288 }
289 else
290 {
Florin Coras99368312018-08-02 10:45:44 -0700291 if (options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
292 {
293 clib_warning ("mq eventfds can only be used if socket transport is "
294 "used for api");
295 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
296 }
Florin Corasa332c462018-01-31 06:52:17 -0800297 seg_type = SSVM_SEGMENT_PRIVATE;
298 }
Florin Corasb384b542018-01-15 01:08:33 -0800299
Florin Corasa332c462018-01-31 06:52:17 -0800300 if (!application_verify_cfg (seg_type))
Florin Corasb384b542018-01-15 01:08:33 -0800301 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
Dave Barach68b0fb02017-02-28 15:15:56 -0500302
Florin Coras15531972018-08-12 23:50:53 -0700303 /* Check that the obvious things are properly set up */
304 application_verify_cb_fns (a->session_cb_vft);
305
Florin Coras15531972018-08-12 23:50:53 -0700306 app->flags = options[APP_OPTIONS_FLAGS];
307 app->cb_fns = *a->session_cb_vft;
308 app->ns_index = options[APP_OPTIONS_NAMESPACE];
309 app->proxied_transports = options[APP_OPTIONS_PROXY_TRANSPORT];
310 app->name = vec_dup (a->name);
311
312 /* If no scope enabled, default to global */
313 if (!application_has_global_scope (app)
314 && !application_has_local_scope (app))
315 app->flags |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
316
Florin Corasa332c462018-01-31 06:52:17 -0800317 props = application_segment_manager_properties (app);
318 segment_manager_properties_init (props);
Florin Coras15531972018-08-12 23:50:53 -0700319 props->segment_size = options[APP_OPTIONS_ADD_SEGMENT_SIZE];
320 props->prealloc_fifos = options[APP_OPTIONS_PREALLOC_FIFO_PAIRS];
Florin Corasb384b542018-01-15 01:08:33 -0800321 if (options[APP_OPTIONS_ADD_SEGMENT_SIZE])
322 {
323 props->add_segment_size = options[APP_OPTIONS_ADD_SEGMENT_SIZE];
324 props->add_segment = 1;
325 }
326 if (options[APP_OPTIONS_RX_FIFO_SIZE])
327 props->rx_fifo_size = options[APP_OPTIONS_RX_FIFO_SIZE];
328 if (options[APP_OPTIONS_TX_FIFO_SIZE])
329 props->tx_fifo_size = options[APP_OPTIONS_TX_FIFO_SIZE];
Florin Corasf8f516a2018-02-08 15:10:09 -0800330 if (options[APP_OPTIONS_EVT_QUEUE_SIZE])
331 props->evt_q_size = options[APP_OPTIONS_EVT_QUEUE_SIZE];
Florin Coras99368312018-08-02 10:45:44 -0700332 if (options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
333 props->use_mq_eventfd = 1;
Florin Coras58d36f02018-03-09 13:05:53 -0800334 if (options[APP_OPTIONS_TLS_ENGINE])
335 app->tls_engine = options[APP_OPTIONS_TLS_ENGINE];
Florin Corasa332c462018-01-31 06:52:17 -0800336 props->segment_type = seg_type;
Dave Barach68b0fb02017-02-28 15:15:56 -0500337
Florin Coras15531972018-08-12 23:50:53 -0700338 /* Add app to lookup by api_client_index table */
Florin Corasc1f5a432018-11-20 11:31:26 -0800339 if (!application_is_builtin (app))
340 application_api_table_add (app->app_index, a->api_client_index);
341 else
342 application_name_table_add (app);
343
344 a->app_index = app->app_index;
Florin Corasa332c462018-01-31 06:52:17 -0800345
Florin Coras15531972018-08-12 23:50:53 -0700346 APP_DBG ("New app name: %v api index: %u index %u", app->name,
347 app->api_client_index, app->app_index);
348
349 return 0;
350}
351
352void
353application_free (application_t * app)
354{
355 app_worker_map_t *wrk_map;
356 app_worker_t *app_wrk;
Florin Corasab2f6db2018-08-31 14:31:41 -0700357 u32 table_index;
358 local_session_t *ll;
359 session_endpoint_t sep;
Florin Coras15531972018-08-12 23:50:53 -0700360
361 /*
362 * The app event queue allocated in first segment is cleared with
363 * the segment manager. No need to explicitly free it.
364 */
365 APP_DBG ("Delete app name %v api index: %d index: %d", app->name,
366 app->api_client_index, app->app_index);
367
368 if (application_is_proxy (app))
369 application_remove_proxy (app);
370
Florin Corasab2f6db2018-08-31 14:31:41 -0700371 /*
372 * Free workers
373 */
374
Florin Coras15531972018-08-12 23:50:53 -0700375 /* *INDENT-OFF* */
376 pool_flush (wrk_map, app->worker_maps, ({
377 app_wrk = app_worker_get (wrk_map->wrk_index);
378 app_worker_free (app_wrk);
379 }));
380 /* *INDENT-ON* */
381 pool_free (app->worker_maps);
382
Florin Corasab2f6db2018-08-31 14:31:41 -0700383 /*
384 * Free local listeners. Global table unbinds stop local listeners
385 * as well, but if we have only local binds, these won't be cleaned up.
386 * Don't bother with local accepted sessions, we clean them when
387 * cleaning up the worker.
388 */
389 table_index = application_local_session_table (app);
390 /* *INDENT-OFF* */
391 pool_foreach (ll, app->local_listen_sessions, ({
392 application_local_listener_session_endpoint (ll, &sep);
393 session_lookup_del_session_endpoint (table_index, &sep);
394 }));
395 /* *INDENT-ON* */
396 pool_free (app->local_listen_sessions);
397
398 /*
399 * Cleanup remaining state
400 */
Florin Corasc1f5a432018-11-20 11:31:26 -0800401 if (application_is_builtin (app))
402 application_name_table_del (app);
Florin Coras15531972018-08-12 23:50:53 -0700403 vec_free (app->name);
404 vec_free (app->tls_cert);
405 vec_free (app->tls_key);
406 pool_put (app_main.app_pool, app);
407}
408
Florin Coras053a0e42018-11-13 15:52:38 -0800409void
410application_detach_process (application_t * app, u32 api_client_index)
411{
412 vnet_app_worker_add_del_args_t _args = { 0 }, *args = &_args;
413 app_worker_map_t *wrk_map;
414 u32 *wrks = 0, *wrk_index;
415 app_worker_t *app_wrk;
416
417 if (api_client_index == ~0)
418 {
419 application_free (app);
420 return;
421 }
422
423 APP_DBG ("Detaching for app %v index %u api client index %u", app->name,
424 app->app_index, app->api_client_index);
425
426 /* *INDENT-OFF* */
427 pool_foreach (wrk_map, app->worker_maps, ({
428 app_wrk = app_worker_get (wrk_map->wrk_index);
Florin Corasc1f5a432018-11-20 11:31:26 -0800429 if (app_wrk->api_client_index == api_client_index)
Florin Coras053a0e42018-11-13 15:52:38 -0800430 vec_add1 (wrks, app_wrk->wrk_index);
431 }));
432 /* *INDENT-ON* */
433
434 if (!vec_len (wrks))
435 {
436 clib_warning ("no workers for app %u api_index %u", app->app_index,
437 api_client_index);
438 return;
439 }
440
441 args->app_index = app->app_index;
Florin Corasc1f5a432018-11-20 11:31:26 -0800442 args->api_client_index = api_client_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800443 vec_foreach (wrk_index, wrks)
444 {
445 app_wrk = app_worker_get (wrk_index[0]);
Florin Coras349f8ca2018-11-20 16:52:49 -0800446 args->wrk_map_index = app_wrk->wrk_map_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800447 args->is_add = 0;
448 vnet_app_worker_add_del (args);
449 }
450 vec_free (wrks);
451}
452
Florin Coras15531972018-08-12 23:50:53 -0700453app_worker_t *
454application_get_worker (application_t * app, u32 wrk_map_index)
455{
456 app_worker_map_t *map;
457 map = app_worker_map_get (app, wrk_map_index);
458 if (!map)
459 return 0;
460 return app_worker_get (map->wrk_index);
461}
462
463app_worker_t *
464application_get_default_worker (application_t * app)
465{
466 return application_get_worker (app, 0);
467}
468
Florin Coras053a0e42018-11-13 15:52:38 -0800469u32
470application_n_workers (application_t * app)
471{
472 return pool_elts (app->worker_maps);
473}
474
Florin Coras15531972018-08-12 23:50:53 -0700475app_worker_t *
Florin Corasab2f6db2018-08-31 14:31:41 -0700476application_listener_select_worker (stream_session_t * ls, u8 is_local)
477{
478 app_listener_t *app_listener;
479 application_t *app;
480 u32 wrk_index;
481
482 app = application_get (ls->app_index);
483 if (!is_local)
484 app_listener = app_listener_get (app, ls->listener_db_index);
485 else
486 app_listener = app_local_listener_get (app, ls->listener_db_index);
487
488 wrk_index = clib_bitmap_next_set (app_listener->workers,
489 app_listener->accept_rotor + 1);
490 if (wrk_index == ~0)
491 wrk_index = clib_bitmap_first_set (app_listener->workers);
492
493 ASSERT (wrk_index != ~0);
494 app_listener->accept_rotor = wrk_index;
495 return application_get_worker (app, wrk_index);
496}
497
498app_worker_t *
Florin Coras15531972018-08-12 23:50:53 -0700499app_worker_alloc (application_t * app)
500{
501 app_worker_t *app_wrk;
502 pool_get (app_main.workers, app_wrk);
Dave Barachb7b92992018-10-17 10:38:51 -0400503 clib_memset (app_wrk, 0, sizeof (*app_wrk));
Florin Coras15531972018-08-12 23:50:53 -0700504 app_wrk->wrk_index = app_wrk - app_main.workers;
505 app_wrk->app_index = app->app_index;
506 app_wrk->wrk_map_index = ~0;
507 app_wrk->connects_seg_manager = APP_INVALID_SEGMENT_MANAGER_INDEX;
508 app_wrk->first_segment_manager = APP_INVALID_SEGMENT_MANAGER_INDEX;
509 app_wrk->local_segment_manager = APP_INVALID_SEGMENT_MANAGER_INDEX;
510 APP_DBG ("New app %v worker %u", app_get_name (app), app_wrk->wrk_index);
511 return app_wrk;
512}
513
514app_worker_t *
515app_worker_get (u32 wrk_index)
516{
517 return pool_elt_at_index (app_main.workers, wrk_index);
518}
519
520app_worker_t *
521app_worker_get_if_valid (u32 wrk_index)
522{
523 if (pool_is_free_index (app_main.workers, wrk_index))
524 return 0;
525 return pool_elt_at_index (app_main.workers, wrk_index);
526}
527
528void
529app_worker_free (app_worker_t * app_wrk)
530{
531 application_t *app = application_get (app_wrk->app_index);
532 vnet_unbind_args_t _a, *a = &_a;
533 u64 handle, *handles = 0;
534 segment_manager_t *sm;
535 u32 sm_index;
536 int i;
537
538 /*
539 * Listener cleanup
540 */
541
542 /* *INDENT-OFF* */
543 hash_foreach (handle, sm_index, app_wrk->listeners_table,
544 ({
545 vec_add1 (handles, handle);
546 sm = segment_manager_get (sm_index);
547 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
548 }));
549 /* *INDENT-ON* */
550
551 for (i = 0; i < vec_len (handles); i++)
552 {
553 a->app_index = app->app_index;
Florin Corasab2f6db2018-08-31 14:31:41 -0700554 a->wrk_map_index = app_wrk->wrk_map_index;
Florin Coras15531972018-08-12 23:50:53 -0700555 a->handle = handles[i];
556 /* seg manager is removed when unbind completes */
557 vnet_unbind (a);
558 }
559
560 /*
561 * Connects segment manager cleanup
562 */
563
564 if (app_wrk->connects_seg_manager != APP_INVALID_SEGMENT_MANAGER_INDEX)
565 {
566 sm = segment_manager_get (app_wrk->connects_seg_manager);
567 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
568 segment_manager_init_del (sm);
569 }
570
571 /* If first segment manager is used by a listener */
572 if (app_wrk->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX
573 && app_wrk->first_segment_manager != app_wrk->connects_seg_manager)
574 {
575 sm = segment_manager_get (app_wrk->first_segment_manager);
Florin Coras400ded32018-10-03 01:00:57 -0700576 sm->first_is_protected = 0;
577 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
Florin Coras15531972018-08-12 23:50:53 -0700578 /* .. and has no fifos, e.g. it might be used for redirected sessions,
579 * remove it */
580 if (!segment_manager_has_fifos (sm))
Florin Coras400ded32018-10-03 01:00:57 -0700581 segment_manager_del (sm);
Florin Coras15531972018-08-12 23:50:53 -0700582 }
583
584 /*
585 * Local sessions
586 */
Florin Corasab2f6db2018-08-31 14:31:41 -0700587 app_worker_local_sessions_free (app_wrk);
Florin Coras15531972018-08-12 23:50:53 -0700588
589 pool_put (app_main.workers, app_wrk);
590 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400591 clib_memset (app_wrk, 0xfe, sizeof (*app_wrk));
Florin Coras15531972018-08-12 23:50:53 -0700592}
593
594int
595app_worker_alloc_and_init (application_t * app, app_worker_t ** wrk)
596{
597 app_worker_map_t *wrk_map;
598 app_worker_t *app_wrk;
599 segment_manager_t *sm;
600 int rv;
601
602 app_wrk = app_worker_alloc (app);
603 wrk_map = app_worker_map_alloc (app);
604 wrk_map->wrk_index = app_wrk->wrk_index;
605 app_wrk->wrk_map_index = app_worker_map_index (app, wrk_map);
606
607 /*
608 * Setup first segment manager
609 */
610 sm = segment_manager_new ();
611 sm->app_wrk_index = app_wrk->wrk_index;
612
613 if ((rv = segment_manager_init (sm, app->sm_properties.segment_size,
614 app->sm_properties.prealloc_fifos)))
615 {
616 app_worker_free (app_wrk);
617 return rv;
618 }
Florin Corasc87c91d2017-08-16 19:55:49 -0700619 sm->first_is_protected = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500620
Florin Corascea194d2017-10-02 00:18:51 -0700621 /*
Florin Coras15531972018-08-12 23:50:53 -0700622 * Setup app worker
Florin Corascea194d2017-10-02 00:18:51 -0700623 */
Florin Coras15531972018-08-12 23:50:53 -0700624 app_wrk->first_segment_manager = segment_manager_index (sm);
625 app_wrk->listeners_table = hash_create (0, sizeof (u64));
626 app_wrk->event_queue = segment_manager_event_queue (sm);
627 app_wrk->app_is_builtin = application_is_builtin (app);
Dave Barach68b0fb02017-02-28 15:15:56 -0500628
Florin Corasf8f516a2018-02-08 15:10:09 -0800629 /*
630 * Segment manager for local sessions
631 */
632 sm = segment_manager_new ();
Florin Coras15531972018-08-12 23:50:53 -0700633 sm->app_wrk_index = app_wrk->wrk_index;
634 app_wrk->local_segment_manager = segment_manager_index (sm);
635 app_wrk->local_connects = hash_create (0, sizeof (u64));
636
637 *wrk = app_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -0800638
Florin Coras6cf30ad2017-04-04 23:08:23 -0700639 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500640}
641
Florin Corasab2f6db2018-08-31 14:31:41 -0700642application_t *
643app_worker_get_app (u32 wrk_index)
644{
645 app_worker_t *app_wrk;
646 app_wrk = app_worker_get_if_valid (wrk_index);
647 if (!app_wrk)
648 return 0;
649 return application_get_if_valid (app_wrk->app_index);
650}
651
Florin Coras6cf30ad2017-04-04 23:08:23 -0700652static segment_manager_t *
Florin Corasab2f6db2018-08-31 14:31:41 -0700653app_worker_alloc_segment_manager (app_worker_t * app_wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -0500654{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700655 segment_manager_t *sm = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500656
Florin Corasc87c91d2017-08-16 19:55:49 -0700657 /* If the first segment manager is not in use, don't allocate a new one */
Florin Coras15531972018-08-12 23:50:53 -0700658 if (app_wrk->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX
659 && app_wrk->first_segment_manager_in_use == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500660 {
Florin Coras15531972018-08-12 23:50:53 -0700661 sm = segment_manager_get (app_wrk->first_segment_manager);
662 app_wrk->first_segment_manager_in_use = 1;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700663 return sm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500664 }
665
Florin Coras6cf30ad2017-04-04 23:08:23 -0700666 sm = segment_manager_new ();
Florin Coras15531972018-08-12 23:50:53 -0700667 sm->app_wrk_index = app_wrk->wrk_index;
Florin Coras0e9c33b2017-08-14 22:33:41 -0700668
Florin Coras6cf30ad2017-04-04 23:08:23 -0700669 return sm;
670}
671
Florin Coras6cf30ad2017-04-04 23:08:23 -0700672int
Florin Corasab2f6db2018-08-31 14:31:41 -0700673app_worker_start_listen (app_worker_t * app_wrk, stream_session_t * ls)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700674{
675 segment_manager_t *sm;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700676
Florin Coras6cf30ad2017-04-04 23:08:23 -0700677 /* Allocate segment manager. All sessions derived out of a listen session
678 * have fifos allocated by the same segment manager. */
Florin Corasab2f6db2018-08-31 14:31:41 -0700679 if (!(sm = app_worker_alloc_segment_manager (app_wrk)))
680 return -1;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700681
682 /* Add to app's listener table. Useful to find all child listeners
683 * when app goes down, although, just for unbinding this is not needed */
Florin Corasab2f6db2018-08-31 14:31:41 -0700684 hash_set (app_wrk->listeners_table, listen_session_get_handle (ls),
685 segment_manager_index (sm));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700686
Florin Corasab2f6db2018-08-31 14:31:41 -0700687 if (!ls->server_rx_fifo
688 && session_transport_service_type (ls) == TRANSPORT_SERVICE_CL)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700689 {
Florin Corasab2f6db2018-08-31 14:31:41 -0700690 if (session_alloc_fifos (sm, ls))
691 return -1;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700692 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700693 return 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700694}
695
Florin Coras6cf30ad2017-04-04 23:08:23 -0700696int
Florin Corasab2f6db2018-08-31 14:31:41 -0700697app_worker_stop_listen (app_worker_t * app_wrk, session_handle_t handle)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700698{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700699 segment_manager_t *sm;
Florin Corasab2f6db2018-08-31 14:31:41 -0700700 uword *sm_indexp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700701
Florin Corasab2f6db2018-08-31 14:31:41 -0700702 sm_indexp = hash_get (app_wrk->listeners_table, handle);
703 if (PREDICT_FALSE (!sm_indexp))
Florin Coras15531972018-08-12 23:50:53 -0700704 {
705 clib_warning ("listener handle was removed %llu!", handle);
706 return -1;
707 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700708
Florin Corasab2f6db2018-08-31 14:31:41 -0700709 sm = segment_manager_get (*sm_indexp);
710 if (app_wrk->first_segment_manager == *sm_indexp)
Florin Coras0e9c33b2017-08-14 22:33:41 -0700711 {
Florin Corasc87c91d2017-08-16 19:55:49 -0700712 /* Delete sessions but don't remove segment manager */
Florin Coras15531972018-08-12 23:50:53 -0700713 app_wrk->first_segment_manager_in_use = 0;
Florin Corasc87c91d2017-08-16 19:55:49 -0700714 segment_manager_del_sessions (sm);
715 }
716 else
717 {
718 segment_manager_init_del (sm);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700719 }
Florin Coras15531972018-08-12 23:50:53 -0700720 hash_unset (app_wrk->listeners_table, handle);
Florin Corasab2f6db2018-08-31 14:31:41 -0700721
722 return 0;
723}
724
725/**
726 * Start listening local transport endpoint for requested transport.
727 *
728 * Creates a 'dummy' stream session with state LISTENING to be used in session
729 * lookups, prior to establishing connection. Requests transport to build
730 * it's own specific listening connection.
731 */
732int
733application_start_listen (application_t * app,
Florin Coras5665ced2018-10-25 18:03:45 -0700734 session_endpoint_cfg_t * sep_ext,
Florin Corasab2f6db2018-08-31 14:31:41 -0700735 session_handle_t * res)
736{
737 app_listener_t *app_listener;
738 u32 table_index, fib_proto;
739 session_endpoint_t *sep;
740 app_worker_t *app_wrk;
741 stream_session_t *ls;
742 session_handle_t lh;
743 session_type_t sst;
744
745 /*
746 * Check if sep is already listened on
747 */
748 sep = (session_endpoint_t *) sep_ext;
749 fib_proto = session_endpoint_fib_proto (sep);
750 table_index = application_session_table (app, fib_proto);
751 lh = session_lookup_endpoint_listener (table_index, sep, 1);
752 if (lh != SESSION_INVALID_HANDLE)
753 {
754 ls = listen_session_get_from_handle (lh);
755 if (ls->app_index != app->app_index)
756 return VNET_API_ERROR_ADDRESS_IN_USE;
757
758 app_wrk = app_worker_get (sep_ext->app_wrk_index);
759 if (ls->app_wrk_index == app_wrk->wrk_index)
760 return VNET_API_ERROR_ADDRESS_IN_USE;
761
762 if (app_worker_start_listen (app_wrk, ls))
763 return -1;
764
765 app_listener = app_listener_get (app, ls->listener_db_index);
766 app_listener->workers = clib_bitmap_set (app_listener->workers,
767 app_wrk->wrk_map_index, 1);
768
769 *res = listen_session_get_handle (ls);
770 return 0;
771 }
772
773 /*
774 * Allocate new listener for application
775 */
776 sst = session_type_from_proto_and_ip (sep_ext->transport_proto,
777 sep_ext->is_ip4);
778 ls = listen_session_new (0, sst);
779 ls->app_index = app->app_index;
Florin Coras74cac882018-09-07 09:13:15 -0700780 lh = listen_session_get_handle (ls);
Florin Corasab2f6db2018-08-31 14:31:41 -0700781 if (session_listen (ls, sep_ext))
782 goto err;
783
Florin Coras74cac882018-09-07 09:13:15 -0700784
785 ls = listen_session_get_from_handle (lh);
Florin Corasab2f6db2018-08-31 14:31:41 -0700786 app_listener = app_listener_alloc (app);
787 ls->listener_db_index = app_listener->al_index;
788
789 /*
790 * Setup app worker as a listener
791 */
792 app_wrk = app_worker_get (sep_ext->app_wrk_index);
793 ls->app_wrk_index = app_wrk->wrk_index;
794 if (app_worker_start_listen (app_wrk, ls))
795 goto err;
796 app_listener->workers = clib_bitmap_set (app_listener->workers,
797 app_wrk->wrk_map_index, 1);
798
Florin Coras74cac882018-09-07 09:13:15 -0700799 *res = lh;
Florin Corasab2f6db2018-08-31 14:31:41 -0700800 return 0;
801
802err:
803 listen_session_del (ls);
804 return -1;
805}
806
807/**
808 * Stop listening on session associated to handle
809 *
810 * @param handle listener handle
811 * @param app_index index of the app owning the handle.
812 * @param app_wrk_index index of the worker requesting the stop
813 */
814int
815application_stop_listen (u32 app_index, u32 app_wrk_index,
816 session_handle_t handle)
817{
818 app_listener_t *app_listener;
819 stream_session_t *listener;
820 app_worker_t *app_wrk;
821 application_t *app;
822
823 listener = listen_session_get_from_handle (handle);
824 app = application_get (app_index);
825 if (PREDICT_FALSE (!app || app->app_index != listener->app_index))
826 {
827 clib_warning ("app doesn't own handle %llu!", handle);
828 return -1;
829 }
830
831 app_listener = app_listener_get (app, listener->listener_db_index);
832 if (!clib_bitmap_get (app_listener->workers, app_wrk_index))
833 {
Florin Coras053a0e42018-11-13 15:52:38 -0800834 clib_warning ("worker %u not listening on handle %lu", app_wrk_index,
835 handle);
Florin Corasab2f6db2018-08-31 14:31:41 -0700836 return 0;
837 }
838
839 app_wrk = application_get_worker (app, app_wrk_index);
840 app_worker_stop_listen (app_wrk, handle);
841 clib_bitmap_set_no_check (app_listener->workers, app_wrk_index, 0);
842
843 if (clib_bitmap_is_zero (app_listener->workers))
844 {
845 session_stop_listen (listener);
846 app_listener_free (app, app_listener);
847 listen_session_del (listener);
848 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700849
Dave Barach68b0fb02017-02-28 15:15:56 -0500850 return 0;
851}
852
Florin Coras6cf30ad2017-04-04 23:08:23 -0700853int
Florin Coras15531972018-08-12 23:50:53 -0700854app_worker_open_session (app_worker_t * app, session_endpoint_t * sep,
855 u32 api_context)
Dave Barach68b0fb02017-02-28 15:15:56 -0500856{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700857 int rv;
858
859 /* Make sure we have a segment manager for connects */
Florin Coras15531972018-08-12 23:50:53 -0700860 app_worker_alloc_connects_segment_manager (app);
Florin Coras371ca502018-02-21 12:07:41 -0800861
Florin Coras15531972018-08-12 23:50:53 -0700862 if ((rv = session_open (app->wrk_index, sep, api_context)))
Florin Coras371ca502018-02-21 12:07:41 -0800863 return rv;
864
865 return 0;
866}
867
868int
Florin Coras15531972018-08-12 23:50:53 -0700869app_worker_alloc_connects_segment_manager (app_worker_t * app_wrk)
Florin Coras371ca502018-02-21 12:07:41 -0800870{
871 segment_manager_t *sm;
872
Florin Coras15531972018-08-12 23:50:53 -0700873 if (app_wrk->connects_seg_manager == APP_INVALID_SEGMENT_MANAGER_INDEX)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700874 {
Florin Corasab2f6db2018-08-31 14:31:41 -0700875 sm = app_worker_alloc_segment_manager (app_wrk);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700876 if (sm == 0)
877 return -1;
Florin Coras15531972018-08-12 23:50:53 -0700878 app_wrk->connects_seg_manager = segment_manager_index (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700879 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700880 return 0;
881}
882
883segment_manager_t *
Florin Coras15531972018-08-12 23:50:53 -0700884app_worker_get_connect_segment_manager (app_worker_t * app)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700885{
886 ASSERT (app->connects_seg_manager != (u32) ~ 0);
887 return segment_manager_get (app->connects_seg_manager);
888}
889
890segment_manager_t *
Florin Coras15531972018-08-12 23:50:53 -0700891app_worker_get_listen_segment_manager (app_worker_t * app,
Florin Corasa44d6b12018-10-03 14:29:10 -0700892 stream_session_t * listener)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700893{
894 uword *smp;
Florin Corasa44d6b12018-10-03 14:29:10 -0700895 smp = hash_get (app->listeners_table, listen_session_get_handle (listener));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700896 ASSERT (smp != 0);
897 return segment_manager_get (*smp);
898}
899
Florin Coras15531972018-08-12 23:50:53 -0700900clib_error_t *
901vnet_app_worker_add_del (vnet_app_worker_add_del_args_t * a)
902{
903 svm_fifo_segment_private_t *fs;
904 app_worker_map_t *wrk_map;
905 app_worker_t *app_wrk;
906 segment_manager_t *sm;
907 application_t *app;
908 int rv;
909
910 app = application_get (a->app_index);
911 if (!app)
912 return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0,
913 "App %u does not exist", a->app_index);
914
915 if (a->is_add)
916 {
917 if ((rv = app_worker_alloc_and_init (app, &app_wrk)))
918 return clib_error_return_code (0, rv, 0, "app wrk init: %d", rv);
Florin Coras053a0e42018-11-13 15:52:38 -0800919
920 /* Map worker api index to the app */
Florin Corasc1f5a432018-11-20 11:31:26 -0800921 app_wrk->api_client_index = a->api_client_index;
922 application_api_table_add (app->app_index, a->api_client_index);
Florin Coras053a0e42018-11-13 15:52:38 -0800923
Florin Coras15531972018-08-12 23:50:53 -0700924 sm = segment_manager_get (app_wrk->first_segment_manager);
925 fs = segment_manager_get_segment_w_lock (sm, 0);
926 a->segment = &fs->ssvm;
927 segment_manager_segment_reader_unlock (sm);
928 a->evt_q = app_wrk->event_queue;
Florin Coras349f8ca2018-11-20 16:52:49 -0800929 a->wrk_map_index = app_wrk->wrk_map_index;
Florin Coras15531972018-08-12 23:50:53 -0700930 }
931 else
932 {
Florin Coras349f8ca2018-11-20 16:52:49 -0800933 wrk_map = app_worker_map_get (app, a->wrk_map_index);
Florin Coras15531972018-08-12 23:50:53 -0700934 if (!wrk_map)
935 return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0,
936 "App %u does not have worker %u",
Florin Coras349f8ca2018-11-20 16:52:49 -0800937 app->app_index, a->wrk_map_index);
Florin Coras15531972018-08-12 23:50:53 -0700938 app_wrk = app_worker_get (wrk_map->wrk_index);
Florin Coras15531972018-08-12 23:50:53 -0700939 if (!app_wrk)
940 return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0,
Florin Coras349f8ca2018-11-20 16:52:49 -0800941 "No worker %u", a->wrk_map_index);
Florin Corasc1f5a432018-11-20 11:31:26 -0800942 application_api_table_del (app_wrk->api_client_index);
Florin Coras15531972018-08-12 23:50:53 -0700943 app_worker_free (app_wrk);
Florin Coras053a0e42018-11-13 15:52:38 -0800944 app_worker_map_free (app, wrk_map);
945 if (application_n_workers (app) == 0)
946 application_free (app);
Florin Coras15531972018-08-12 23:50:53 -0700947 }
948 return 0;
949}
950
Florin Corasf8f516a2018-02-08 15:10:09 -0800951segment_manager_t *
Florin Coras15531972018-08-12 23:50:53 -0700952application_get_local_segment_manager (app_worker_t * app)
Florin Corasf8f516a2018-02-08 15:10:09 -0800953{
954 return segment_manager_get (app->local_segment_manager);
955}
956
957segment_manager_t *
Florin Coras15531972018-08-12 23:50:53 -0700958application_get_local_segment_manager_w_session (app_worker_t * app,
Florin Corasf8f516a2018-02-08 15:10:09 -0800959 local_session_t * ls)
960{
961 stream_session_t *listener;
962 if (application_local_session_listener_has_transport (ls))
963 {
Florin Coras5c9083d2018-04-13 06:39:07 -0700964 listener = listen_session_get (ls->listener_index);
Florin Coras15531972018-08-12 23:50:53 -0700965 return app_worker_get_listen_segment_manager (app, listener);
Florin Corasf8f516a2018-02-08 15:10:09 -0800966 }
967 return segment_manager_get (app->local_segment_manager);
968}
969
Dave Barach52851e62017-08-07 09:35:25 -0400970int
971application_is_proxy (application_t * app)
972{
Florin Coras7999e832017-10-31 01:51:04 -0700973 return (app->flags & APP_OPTIONS_FLAGS_IS_PROXY);
974}
975
976int
977application_is_builtin (application_t * app)
978{
979 return (app->flags & APP_OPTIONS_FLAGS_IS_BUILTIN);
980}
981
982int
983application_is_builtin_proxy (application_t * app)
984{
985 return (application_is_proxy (app) && application_is_builtin (app));
Dave Barach52851e62017-08-07 09:35:25 -0400986}
987
Florin Corascea194d2017-10-02 00:18:51 -0700988u8
989application_has_local_scope (application_t * app)
990{
991 return app->flags & APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
992}
993
994u8
995application_has_global_scope (application_t * app)
996{
997 return app->flags & APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
998}
999
Florin Coras60116992018-08-27 09:52:18 -07001000u8
1001application_use_mq_for_ctrl (application_t * app)
1002{
1003 return app->flags & APP_OPTIONS_FLAGS_USE_MQ_FOR_CTRL_MSGS;
1004}
1005
Florin Coras15531972018-08-12 23:50:53 -07001006/**
1007 * Send an API message to the external app, to map new segment
1008 */
1009int
1010app_worker_add_segment_notify (u32 app_wrk_index, ssvm_private_t * fs)
1011{
1012 app_worker_t *app_wrk = app_worker_get (app_wrk_index);
1013 application_t *app = application_get (app_wrk->app_index);
Florin Corasc1f5a432018-11-20 11:31:26 -08001014 return app->cb_fns.add_segment_callback (app_wrk->api_client_index, fs);
Florin Coras15531972018-08-12 23:50:53 -07001015}
1016
Florin Coras1c710452017-10-17 00:03:13 -07001017u32
Florin Coras15531972018-08-12 23:50:53 -07001018application_n_listeners (app_worker_t * app)
Florin Coras1c710452017-10-17 00:03:13 -07001019{
1020 return hash_elts (app->listeners_table);
1021}
1022
1023stream_session_t *
Florin Coras15531972018-08-12 23:50:53 -07001024app_worker_first_listener (app_worker_t * app, u8 fib_proto,
1025 u8 transport_proto)
Florin Coras1c710452017-10-17 00:03:13 -07001026{
Florin Coras7999e832017-10-31 01:51:04 -07001027 stream_session_t *listener;
Florin Coras1c710452017-10-17 00:03:13 -07001028 u64 handle;
1029 u32 sm_index;
Florin Coras7999e832017-10-31 01:51:04 -07001030 u8 sst;
1031
1032 sst = session_type_from_proto_and_ip (transport_proto,
1033 fib_proto == FIB_PROTOCOL_IP4);
Florin Coras1c710452017-10-17 00:03:13 -07001034
1035 /* *INDENT-OFF* */
1036 hash_foreach (handle, sm_index, app->listeners_table, ({
Florin Coras7999e832017-10-31 01:51:04 -07001037 listener = listen_session_get_from_handle (handle);
Florin Corasc3ddea82017-11-27 03:12:00 -08001038 if (listener->session_type == sst
Florin Corasab2f6db2018-08-31 14:31:41 -07001039 && listener->enqueue_epoch != SESSION_PROXY_LISTENER_INDEX)
Florin Coras7999e832017-10-31 01:51:04 -07001040 return listener;
Florin Coras1c710452017-10-17 00:03:13 -07001041 }));
1042 /* *INDENT-ON* */
1043
1044 return 0;
1045}
1046
Florin Coras15531972018-08-12 23:50:53 -07001047u8
1048app_worker_application_is_builtin (app_worker_t * app_wrk)
1049{
1050 return app_wrk->app_is_builtin;
1051}
1052
Florin Coras19b1f6a2017-12-11 03:37:03 -08001053stream_session_t *
Florin Coras15531972018-08-12 23:50:53 -07001054application_proxy_listener (app_worker_t * app, u8 fib_proto,
Florin Coras19b1f6a2017-12-11 03:37:03 -08001055 u8 transport_proto)
1056{
1057 stream_session_t *listener;
1058 u64 handle;
1059 u32 sm_index;
1060 u8 sst;
1061
1062 sst = session_type_from_proto_and_ip (transport_proto,
1063 fib_proto == FIB_PROTOCOL_IP4);
1064
1065 /* *INDENT-OFF* */
1066 hash_foreach (handle, sm_index, app->listeners_table, ({
1067 listener = listen_session_get_from_handle (handle);
1068 if (listener->session_type == sst
Florin Corasab2f6db2018-08-31 14:31:41 -07001069 && listener->enqueue_epoch == SESSION_PROXY_LISTENER_INDEX)
Florin Coras19b1f6a2017-12-11 03:37:03 -08001070 return listener;
1071 }));
1072 /* *INDENT-ON* */
1073
1074 return 0;
1075}
1076
Florin Coras7999e832017-10-31 01:51:04 -07001077static clib_error_t *
1078application_start_stop_proxy_fib_proto (application_t * app, u8 fib_proto,
1079 u8 transport_proto, u8 is_start)
1080{
Florin Coras7999e832017-10-31 01:51:04 -07001081 app_namespace_t *app_ns = app_namespace_get (app->ns_index);
1082 u8 is_ip4 = (fib_proto == FIB_PROTOCOL_IP4);
Florin Coras5665ced2018-10-25 18:03:45 -07001083 session_endpoint_cfg_t sep = SESSION_ENDPOINT_CFG_NULL;
Florin Coras7999e832017-10-31 01:51:04 -07001084 transport_connection_t *tc;
Florin Coras15531972018-08-12 23:50:53 -07001085 app_worker_t *app_wrk;
Florin Coras7999e832017-10-31 01:51:04 -07001086 stream_session_t *s;
1087 u64 handle;
1088
Florin Coras15531972018-08-12 23:50:53 -07001089 /* TODO decide if we want proxy to be enabled for all workers */
1090 app_wrk = application_get_default_worker (app);
Florin Coras7999e832017-10-31 01:51:04 -07001091 if (is_start)
1092 {
Florin Coras15531972018-08-12 23:50:53 -07001093 s = app_worker_first_listener (app_wrk, fib_proto, transport_proto);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001094 if (!s)
1095 {
1096 sep.is_ip4 = is_ip4;
1097 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1098 sep.sw_if_index = app_ns->sw_if_index;
1099 sep.transport_proto = transport_proto;
Florin Corasab2f6db2018-08-31 14:31:41 -07001100 sep.app_wrk_index = app_wrk->wrk_index; /* only default */
1101 application_start_listen (app, &sep, &handle);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001102 s = listen_session_get_from_handle (handle);
Florin Corasab2f6db2018-08-31 14:31:41 -07001103 s->enqueue_epoch = SESSION_PROXY_LISTENER_INDEX;
Florin Coras19b1f6a2017-12-11 03:37:03 -08001104 }
Florin Coras7999e832017-10-31 01:51:04 -07001105 }
1106 else
1107 {
Florin Coras15531972018-08-12 23:50:53 -07001108 s = application_proxy_listener (app_wrk, fib_proto, transport_proto);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001109 ASSERT (s);
Florin Coras7999e832017-10-31 01:51:04 -07001110 }
Florin Coras19b1f6a2017-12-11 03:37:03 -08001111
Florin Coras7999e832017-10-31 01:51:04 -07001112 tc = listen_session_get_transport (s);
1113
1114 if (!ip_is_zero (&tc->lcl_ip, 1))
1115 {
Florin Corasdbd44562017-11-09 19:30:17 -08001116 u32 sti;
1117 sep.is_ip4 = is_ip4;
1118 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1119 sep.transport_proto = transport_proto;
1120 sep.port = 0;
1121 sti = session_lookup_get_index_for_fib (fib_proto, sep.fib_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001122 if (is_start)
Florin Corasab2f6db2018-08-31 14:31:41 -07001123 session_lookup_add_session_endpoint (sti,
1124 (session_endpoint_t *) & sep,
1125 s->session_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001126 else
Florin Corasab2f6db2018-08-31 14:31:41 -07001127 session_lookup_del_session_endpoint (sti,
1128 (session_endpoint_t *) & sep);
Florin Coras7999e832017-10-31 01:51:04 -07001129 }
Florin Coras19b1f6a2017-12-11 03:37:03 -08001130
Florin Coras7999e832017-10-31 01:51:04 -07001131 return 0;
1132}
1133
Florin Coras19b1f6a2017-12-11 03:37:03 -08001134static void
1135application_start_stop_proxy_local_scope (application_t * app,
1136 u8 transport_proto, u8 is_start)
1137{
1138 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
1139 app_namespace_t *app_ns;
1140 app_ns = app_namespace_get (app->ns_index);
1141 sep.is_ip4 = 1;
1142 sep.transport_proto = transport_proto;
1143 sep.port = 0;
1144
1145 if (is_start)
1146 {
1147 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
Florin Coras15531972018-08-12 23:50:53 -07001148 app->app_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001149 sep.is_ip4 = 0;
1150 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
Florin Coras15531972018-08-12 23:50:53 -07001151 app->app_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001152 }
1153 else
1154 {
1155 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1156 sep.is_ip4 = 0;
1157 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1158 }
1159}
1160
Florin Coras7999e832017-10-31 01:51:04 -07001161void
Florin Coras561af9b2017-12-09 10:19:43 -08001162application_start_stop_proxy (application_t * app,
1163 transport_proto_t transport_proto, u8 is_start)
Florin Coras7999e832017-10-31 01:51:04 -07001164{
Florin Coras7999e832017-10-31 01:51:04 -07001165 if (application_has_local_scope (app))
Florin Coras19b1f6a2017-12-11 03:37:03 -08001166 application_start_stop_proxy_local_scope (app, transport_proto, is_start);
Florin Coras7999e832017-10-31 01:51:04 -07001167
1168 if (application_has_global_scope (app))
1169 {
1170 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP4,
1171 transport_proto, is_start);
1172 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP6,
1173 transport_proto, is_start);
1174 }
1175}
1176
1177void
1178application_setup_proxy (application_t * app)
1179{
1180 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -08001181 transport_proto_t tp;
1182
Florin Coras7999e832017-10-31 01:51:04 -07001183 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -08001184
1185 /* *INDENT-OFF* */
1186 transport_proto_foreach (tp, ({
1187 if (transports & (1 << tp))
1188 application_start_stop_proxy (app, tp, 1);
1189 }));
1190 /* *INDENT-ON* */
Florin Coras7999e832017-10-31 01:51:04 -07001191}
1192
1193void
1194application_remove_proxy (application_t * app)
1195{
1196 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -08001197 transport_proto_t tp;
1198
Florin Coras7999e832017-10-31 01:51:04 -07001199 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -08001200
1201 /* *INDENT-OFF* */
1202 transport_proto_foreach (tp, ({
1203 if (transports & (1 << tp))
1204 application_start_stop_proxy (app, tp, 0);
1205 }));
1206 /* *INDENT-ON* */
Florin Coras7999e832017-10-31 01:51:04 -07001207}
1208
Florin Corasa332c462018-01-31 06:52:17 -08001209segment_manager_properties_t *
1210application_segment_manager_properties (application_t * app)
1211{
1212 return &app->sm_properties;
1213}
1214
1215segment_manager_properties_t *
1216application_get_segment_manager_properties (u32 app_index)
1217{
1218 application_t *app = application_get (app_index);
1219 return &app->sm_properties;
1220}
1221
Florin Coras3c2fed52018-07-04 04:15:05 -07001222static inline int
1223app_enqueue_evt (svm_msg_q_t * mq, svm_msg_q_msg_t * msg, u8 lock)
1224{
Florin Coras52207f12018-07-12 14:48:06 -07001225 if (PREDICT_FALSE (svm_msg_q_is_full (mq)))
Florin Coras3c2fed52018-07-04 04:15:05 -07001226 {
1227 clib_warning ("evt q full");
1228 svm_msg_q_free_msg (mq, msg);
1229 if (lock)
1230 svm_msg_q_unlock (mq);
1231 return -1;
1232 }
Florin Coras52207f12018-07-12 14:48:06 -07001233
1234 if (lock)
1235 {
1236 svm_msg_q_add_and_unlock (mq, msg);
1237 return 0;
1238 }
1239
1240 /* Even when not locking the ring, we must wait for queue mutex */
1241 if (svm_msg_q_add (mq, msg, SVM_Q_WAIT))
1242 {
1243 clib_warning ("msg q add returned");
1244 return -1;
1245 }
Florin Coras3c2fed52018-07-04 04:15:05 -07001246 return 0;
1247}
1248
1249static inline int
Florin Coras15531972018-08-12 23:50:53 -07001250app_send_io_evt_rx (app_worker_t * app_wrk, stream_session_t * s, u8 lock)
Florin Coras3c2fed52018-07-04 04:15:05 -07001251{
Florin Coras52207f12018-07-12 14:48:06 -07001252 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -07001253 svm_msg_q_msg_t msg;
1254 svm_msg_q_t *mq;
1255
Florin Coras460dce62018-07-27 05:45:06 -07001256 if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY
1257 && s->session_state != SESSION_STATE_LISTENING))
Florin Coras3c2fed52018-07-04 04:15:05 -07001258 {
1259 /* Session is closed so app will never clean up. Flush rx fifo */
Florin Coras84099552018-07-22 12:59:30 -07001260 if (s->session_state == SESSION_STATE_CLOSED)
1261 svm_fifo_dequeue_drop_all (s->server_rx_fifo);
Florin Coras3c2fed52018-07-04 04:15:05 -07001262 return 0;
1263 }
1264
Florin Coras15531972018-08-12 23:50:53 -07001265 if (app_worker_application_is_builtin (app_wrk))
1266 {
1267 application_t *app = application_get (app_wrk->app_index);
1268 return app->cb_fns.builtin_app_rx_callback (s);
1269 }
Florin Coras3c2fed52018-07-04 04:15:05 -07001270
Florin Coras54693d22018-07-17 10:46:29 -07001271 if (svm_fifo_has_event (s->server_rx_fifo)
1272 || svm_fifo_is_empty (s->server_rx_fifo))
Florin Coras3c2fed52018-07-04 04:15:05 -07001273 return 0;
1274
Florin Coras15531972018-08-12 23:50:53 -07001275 mq = app_wrk->event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001276 if (lock)
1277 svm_msg_q_lock (mq);
1278
1279 if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
1280 {
1281 clib_warning ("evt q rings full");
1282 if (lock)
1283 svm_msg_q_unlock (mq);
1284 return -1;
1285 }
1286
1287 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
1288 ASSERT (!svm_msg_q_msg_is_invalid (&msg));
1289
Florin Coras52207f12018-07-12 14:48:06 -07001290 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -07001291 evt->fifo = s->server_rx_fifo;
1292 evt->event_type = FIFO_EVENT_APP_RX;
1293
Florin Coras41c9e042018-09-11 00:10:41 -07001294 (void) svm_fifo_set_event (s->server_rx_fifo);
1295
Florin Coras54693d22018-07-17 10:46:29 -07001296 if (app_enqueue_evt (mq, &msg, lock))
1297 return -1;
Florin Coras54693d22018-07-17 10:46:29 -07001298 return 0;
Florin Coras3c2fed52018-07-04 04:15:05 -07001299}
1300
1301static inline int
Florin Coras15531972018-08-12 23:50:53 -07001302app_send_io_evt_tx (app_worker_t * app_wrk, stream_session_t * s, u8 lock)
Florin Coras3c2fed52018-07-04 04:15:05 -07001303{
1304 svm_msg_q_t *mq;
Florin Coras52207f12018-07-12 14:48:06 -07001305 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -07001306 svm_msg_q_msg_t msg;
1307
Florin Coras15531972018-08-12 23:50:53 -07001308 if (app_worker_application_is_builtin (app_wrk))
Florin Coras3c2fed52018-07-04 04:15:05 -07001309 return 0;
1310
Florin Coras15531972018-08-12 23:50:53 -07001311 mq = app_wrk->event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001312 if (lock)
1313 svm_msg_q_lock (mq);
1314
1315 if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
1316 {
1317 clib_warning ("evt q rings full");
1318 if (lock)
1319 svm_msg_q_unlock (mq);
1320 return -1;
1321 }
1322
1323 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
1324 ASSERT (!svm_msg_q_msg_is_invalid (&msg));
1325
Florin Coras52207f12018-07-12 14:48:06 -07001326 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -07001327 evt->event_type = FIFO_EVENT_APP_TX;
1328 evt->fifo = s->server_tx_fifo;
1329
1330 return app_enqueue_evt (mq, &msg, lock);
1331}
1332
1333/* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001334typedef int (app_send_evt_handler_fn) (app_worker_t *app,
Florin Coras3c2fed52018-07-04 04:15:05 -07001335 stream_session_t *s,
1336 u8 lock);
Florin Coras460dce62018-07-27 05:45:06 -07001337static app_send_evt_handler_fn * const app_send_evt_handler_fns[3] = {
Florin Coras3c2fed52018-07-04 04:15:05 -07001338 app_send_io_evt_rx,
Florin Coras460dce62018-07-27 05:45:06 -07001339 0,
Florin Coras3c2fed52018-07-04 04:15:05 -07001340 app_send_io_evt_tx,
1341};
1342/* *INDENT-ON* */
1343
1344/**
1345 * Send event to application
1346 *
Florin Coras21795132018-09-09 09:40:51 -07001347 * Logic from queue perspective is non-blocking. If there's
1348 * not enough space to enqueue a message, we return.
Florin Coras3c2fed52018-07-04 04:15:05 -07001349 */
1350int
Florin Corasab2f6db2018-08-31 14:31:41 -07001351app_worker_send_event (app_worker_t * app, stream_session_t * s, u8 evt_type)
Florin Coras3c2fed52018-07-04 04:15:05 -07001352{
1353 ASSERT (app && evt_type <= FIFO_EVENT_APP_TX);
1354 return app_send_evt_handler_fns[evt_type] (app, s, 0 /* lock */ );
1355}
1356
Florin Coras21795132018-09-09 09:40:51 -07001357/**
1358 * Send event to application
1359 *
1360 * Logic from queue perspective is blocking. However, if queue is full,
1361 * we return.
1362 */
Florin Coras3c2fed52018-07-04 04:15:05 -07001363int
Florin Corasab2f6db2018-08-31 14:31:41 -07001364app_worker_lock_and_send_event (app_worker_t * app, stream_session_t * s,
1365 u8 evt_type)
Florin Coras3c2fed52018-07-04 04:15:05 -07001366{
1367 return app_send_evt_handler_fns[evt_type] (app, s, 1 /* lock */ );
1368}
1369
Florin Corasf8f516a2018-02-08 15:10:09 -08001370local_session_t *
Florin Corasab2f6db2018-08-31 14:31:41 -07001371application_local_session_alloc (app_worker_t * app_wrk)
Florin Corasf8f516a2018-02-08 15:10:09 -08001372{
1373 local_session_t *s;
Florin Corasab2f6db2018-08-31 14:31:41 -07001374 pool_get (app_wrk->local_sessions, s);
Dave Barachb7b92992018-10-17 10:38:51 -04001375 clib_memset (s, 0, sizeof (*s));
Florin Corasab2f6db2018-08-31 14:31:41 -07001376 s->app_wrk_index = app_wrk->wrk_index;
1377 s->session_index = s - app_wrk->local_sessions;
Florin Corasf8f516a2018-02-08 15:10:09 -08001378 s->session_type = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE, 0);
1379 return s;
1380}
1381
1382void
Florin Corasab2f6db2018-08-31 14:31:41 -07001383application_local_session_free (app_worker_t * app, local_session_t * s)
Florin Corasf8f516a2018-02-08 15:10:09 -08001384{
1385 pool_put (app->local_sessions, s);
1386 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -04001387 clib_memset (s, 0xfc, sizeof (*s));
Florin Corasf8f516a2018-02-08 15:10:09 -08001388}
1389
1390local_session_t *
Florin Coras15531972018-08-12 23:50:53 -07001391application_get_local_session (app_worker_t * app_wrk, u32 session_index)
Florin Corasf8f516a2018-02-08 15:10:09 -08001392{
Florin Coras15531972018-08-12 23:50:53 -07001393 if (pool_is_free_index (app_wrk->local_sessions, session_index))
Florin Coras99368312018-08-02 10:45:44 -07001394 return 0;
Florin Coras15531972018-08-12 23:50:53 -07001395 return pool_elt_at_index (app_wrk->local_sessions, session_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001396}
1397
1398local_session_t *
1399application_get_local_session_from_handle (session_handle_t handle)
1400{
Florin Coras15531972018-08-12 23:50:53 -07001401 app_worker_t *server_wrk;
1402 u32 session_index, server_wrk_index;
1403 local_session_parse_handle (handle, &server_wrk_index, &session_index);
1404 server_wrk = app_worker_get_if_valid (server_wrk_index);
1405 if (!server_wrk)
Florin Corasfcbda892018-08-23 19:27:03 -07001406 return 0;
Florin Coras15531972018-08-12 23:50:53 -07001407 return application_get_local_session (server_wrk, session_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001408}
1409
Florin Coras60116992018-08-27 09:52:18 -07001410local_session_t *
Florin Corasab2f6db2018-08-31 14:31:41 -07001411application_local_listen_session_alloc (application_t * app)
Florin Coras60116992018-08-27 09:52:18 -07001412{
Florin Corasab2f6db2018-08-31 14:31:41 -07001413 local_session_t *ll;
1414 pool_get (app->local_listen_sessions, ll);
Dave Barachb7b92992018-10-17 10:38:51 -04001415 clib_memset (ll, 0, sizeof (*ll));
Florin Corasab2f6db2018-08-31 14:31:41 -07001416 return ll;
Florin Coras60116992018-08-27 09:52:18 -07001417}
1418
Florin Corasab2f6db2018-08-31 14:31:41 -07001419u32
1420application_local_listener_index (application_t * app, local_session_t * ll)
Florin Corasf8f516a2018-02-08 15:10:09 -08001421{
Florin Corasab2f6db2018-08-31 14:31:41 -07001422 return (ll - app->local_listen_sessions);
1423}
1424
1425void
1426application_local_listen_session_free (application_t * app,
1427 local_session_t * ll)
1428{
1429 pool_put (app->local_listen_sessions, ll);
1430 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -04001431 clib_memset (ll, 0xfb, sizeof (*ll));
Florin Corasf8f516a2018-02-08 15:10:09 -08001432}
1433
1434int
Florin Corasab2f6db2018-08-31 14:31:41 -07001435application_start_local_listen (application_t * app,
Florin Coras5665ced2018-10-25 18:03:45 -07001436 session_endpoint_cfg_t * sep_ext,
Florin Corasf8f516a2018-02-08 15:10:09 -08001437 session_handle_t * handle)
1438{
Florin Corasab2f6db2018-08-31 14:31:41 -07001439 app_listener_t *app_listener;
1440 session_endpoint_t *sep;
1441 app_worker_t *app_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08001442 session_handle_t lh;
1443 local_session_t *ll;
1444 u32 table_index;
1445
Florin Corasab2f6db2018-08-31 14:31:41 -07001446 sep = (session_endpoint_t *) sep_ext;
Florin Coras15531972018-08-12 23:50:53 -07001447 table_index = application_local_session_table (app);
Florin Corasab2f6db2018-08-31 14:31:41 -07001448 app_wrk = app_worker_get (sep_ext->app_wrk_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001449
1450 /* An exact sep match, as opposed to session_lookup_local_listener */
1451 lh = session_lookup_endpoint_listener (table_index, sep, 1);
1452 if (lh != SESSION_INVALID_HANDLE)
Florin Corasab2f6db2018-08-31 14:31:41 -07001453 {
1454 ll = application_get_local_listener_w_handle (lh);
1455 if (ll->app_index != app->app_index)
1456 return VNET_API_ERROR_ADDRESS_IN_USE;
Florin Corasf8f516a2018-02-08 15:10:09 -08001457
Florin Corasab2f6db2018-08-31 14:31:41 -07001458 if (ll->app_wrk_index == app_wrk->wrk_index)
1459 return VNET_API_ERROR_ADDRESS_IN_USE;
1460
1461 app_listener = app_local_listener_get (app, ll->listener_db_index);
1462 app_listener->workers = clib_bitmap_set (app_listener->workers,
1463 app_wrk->wrk_map_index, 1);
1464 *handle = application_local_session_handle (ll);
1465 return 0;
1466 }
1467
1468 ll = application_local_listen_session_alloc (app);
Florin Corasf8f516a2018-02-08 15:10:09 -08001469 ll->session_type = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE, 0);
Florin Coras15531972018-08-12 23:50:53 -07001470 ll->app_wrk_index = app_wrk->app_index;
Florin Corasab2f6db2018-08-31 14:31:41 -07001471 ll->session_index = application_local_listener_index (app, ll);
1472 ll->port = sep_ext->port;
Florin Corasf8f516a2018-02-08 15:10:09 -08001473 /* Store the original session type for the unbind */
1474 ll->listener_session_type =
Florin Corasab2f6db2018-08-31 14:31:41 -07001475 session_type_from_proto_and_ip (sep_ext->transport_proto,
1476 sep_ext->is_ip4);
Florin Coras5fda7a32018-02-14 08:04:31 -08001477 ll->transport_listener_index = ~0;
Florin Corasab2f6db2018-08-31 14:31:41 -07001478 ll->app_index = app->app_index;
1479
1480 app_listener = app_local_listener_alloc (app);
1481 ll->listener_db_index = app_listener->al_index;
1482 app_listener->workers = clib_bitmap_set (app_listener->workers,
1483 app_wrk->wrk_map_index, 1);
Florin Corasf8f516a2018-02-08 15:10:09 -08001484
1485 *handle = application_local_session_handle (ll);
1486 session_lookup_add_session_endpoint (table_index, sep, *handle);
1487
1488 return 0;
1489}
1490
1491/**
1492 * Clean up local session table. If we have a listener session use it to
1493 * find the port and proto. If not, the handle must be a local table handle
1494 * so parse it.
1495 */
1496int
Florin Corasab2f6db2018-08-31 14:31:41 -07001497application_stop_local_listen (u32 app_index, u32 wrk_map_index,
1498 session_handle_t lh)
Florin Corasf8f516a2018-02-08 15:10:09 -08001499{
1500 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
Florin Corasab2f6db2018-08-31 14:31:41 -07001501 u32 table_index, ll_index, server_index;
1502 app_listener_t *app_listener;
Florin Coras15531972018-08-12 23:50:53 -07001503 app_worker_t *server_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08001504 stream_session_t *sl = 0;
1505 local_session_t *ll, *ls;
Florin Coras15531972018-08-12 23:50:53 -07001506 application_t *server;
Florin Corasf8f516a2018-02-08 15:10:09 -08001507
Florin Coras15531972018-08-12 23:50:53 -07001508 server = application_get (app_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001509 table_index = application_local_session_table (server);
1510
1511 /* We have both local and global table binds. Figure from global what
1512 * the sep we should be cleaning up is.
1513 */
1514 if (!session_handle_is_local (lh))
1515 {
1516 sl = listen_session_get_from_handle (lh);
1517 if (!sl || listen_session_get_local_session_endpoint (sl, &sep))
1518 {
1519 clib_warning ("broken listener");
1520 return -1;
1521 }
1522 lh = session_lookup_endpoint_listener (table_index, &sep, 0);
1523 if (lh == SESSION_INVALID_HANDLE)
1524 return -1;
1525 }
1526
Florin Corasab2f6db2018-08-31 14:31:41 -07001527 local_session_parse_handle (lh, &server_index, &ll_index);
1528 if (PREDICT_FALSE (server_index != app_index))
Florin Coras15531972018-08-12 23:50:53 -07001529 {
1530 clib_warning ("app %u does not own local handle 0x%lx", app_index, lh);
Florin Corasab2f6db2018-08-31 14:31:41 -07001531 return -1;
Florin Coras15531972018-08-12 23:50:53 -07001532 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001533
1534 ll = application_get_local_listen_session (server, ll_index);
Florin Coras15531972018-08-12 23:50:53 -07001535 if (PREDICT_FALSE (!ll))
Florin Corasf8f516a2018-02-08 15:10:09 -08001536 {
1537 clib_warning ("no local listener");
1538 return -1;
1539 }
Florin Corasf8f516a2018-02-08 15:10:09 -08001540
Florin Corasab2f6db2018-08-31 14:31:41 -07001541 app_listener = app_local_listener_get (server, ll->listener_db_index);
1542 if (!clib_bitmap_get (app_listener->workers, wrk_map_index))
1543 {
1544 clib_warning ("app wrk %u not listening on handle %lu", wrk_map_index,
1545 lh);
1546 return -1;
1547 }
1548
1549 server_wrk = application_get_worker (server, wrk_map_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001550 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001551 pool_foreach (ls, server_wrk->local_sessions, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08001552 if (ls->listener_index == ll->session_index)
Florin Coras15531972018-08-12 23:50:53 -07001553 application_local_session_disconnect (server_wrk->app_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001554 }));
1555 /* *INDENT-ON* */
Florin Corasab2f6db2018-08-31 14:31:41 -07001556
1557 clib_bitmap_set_no_check (app_listener->workers, wrk_map_index, 0);
1558 if (clib_bitmap_is_zero (app_listener->workers))
1559 {
1560 app_local_listener_free (server, app_listener);
1561 application_local_listener_session_endpoint (ll, &sep);
1562 session_lookup_del_session_endpoint (table_index, &sep);
1563 application_local_listen_session_free (server, ll);
1564 }
Florin Corasf8f516a2018-02-08 15:10:09 -08001565
1566 return 0;
1567}
1568
Florin Coras99368312018-08-02 10:45:44 -07001569static void
1570application_local_session_fix_eventds (svm_msg_q_t * sq, svm_msg_q_t * cq)
1571{
1572 int fd;
1573
1574 /*
1575 * segment manager initializes only the producer eventds, since vpp is
1576 * typically the producer. But for local sessions, we also pass to the
1577 * apps the mqs they listen on for events from peer apps, so they are also
1578 * consumer fds.
1579 */
1580 fd = svm_msg_q_get_producer_eventfd (sq);
1581 svm_msg_q_set_consumer_eventfd (sq, fd);
1582 fd = svm_msg_q_get_producer_eventfd (cq);
1583 svm_msg_q_set_consumer_eventfd (cq, fd);
1584}
1585
Florin Corasf8f516a2018-02-08 15:10:09 -08001586int
Florin Coras15531972018-08-12 23:50:53 -07001587application_local_session_connect (app_worker_t * client_wrk,
1588 app_worker_t * server_wrk,
Florin Corasf8f516a2018-02-08 15:10:09 -08001589 local_session_t * ll, u32 opaque)
1590{
1591 u32 seg_size, evt_q_sz, evt_q_elts, margin = 16 << 10;
1592 segment_manager_properties_t *props, *cprops;
Florin Coras54693d22018-07-17 10:46:29 -07001593 u32 round_rx_fifo_sz, round_tx_fifo_sz;
Florin Corasf8f516a2018-02-08 15:10:09 -08001594 int rv, has_transport, seg_index;
1595 svm_fifo_segment_private_t *seg;
Florin Coras15531972018-08-12 23:50:53 -07001596 application_t *server, *client;
Florin Corasf8f516a2018-02-08 15:10:09 -08001597 segment_manager_t *sm;
1598 local_session_t *ls;
Florin Coras3c2fed52018-07-04 04:15:05 -07001599 svm_msg_q_t *sq, *cq;
Florin Corasf8f516a2018-02-08 15:10:09 -08001600
Florin Corasab2f6db2018-08-31 14:31:41 -07001601 ls = application_local_session_alloc (server_wrk);
Florin Coras15531972018-08-12 23:50:53 -07001602 server = application_get (server_wrk->app_index);
1603 client = application_get (client_wrk->app_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001604
1605 props = application_segment_manager_properties (server);
1606 cprops = application_segment_manager_properties (client);
1607 evt_q_elts = props->evt_q_size + cprops->evt_q_size;
Florin Coras3c2fed52018-07-04 04:15:05 -07001608 evt_q_sz = segment_manager_evt_q_expected_size (evt_q_elts);
Florin Coras54693d22018-07-17 10:46:29 -07001609 round_rx_fifo_sz = 1 << max_log2 (props->rx_fifo_size);
1610 round_tx_fifo_sz = 1 << max_log2 (props->tx_fifo_size);
1611 seg_size = round_rx_fifo_sz + round_tx_fifo_sz + evt_q_sz + margin;
Florin Corasf8f516a2018-02-08 15:10:09 -08001612
1613 has_transport = session_has_transport ((stream_session_t *) ll);
1614 if (!has_transport)
1615 {
1616 /* Local sessions don't have backing transport */
1617 ls->port = ll->port;
Florin Coras15531972018-08-12 23:50:53 -07001618 sm = application_get_local_segment_manager (server_wrk);
Florin Corasf8f516a2018-02-08 15:10:09 -08001619 }
1620 else
1621 {
1622 stream_session_t *sl = (stream_session_t *) ll;
1623 transport_connection_t *tc;
1624 tc = listen_session_get_transport (sl);
1625 ls->port = tc->lcl_port;
Florin Coras15531972018-08-12 23:50:53 -07001626 sm = app_worker_get_listen_segment_manager (server_wrk, sl);
Florin Corasf8f516a2018-02-08 15:10:09 -08001627 }
1628
1629 seg_index = segment_manager_add_segment (sm, seg_size);
1630 if (seg_index < 0)
1631 {
1632 clib_warning ("failed to add new cut-through segment");
1633 return seg_index;
1634 }
1635 seg = segment_manager_get_segment_w_lock (sm, seg_index);
Florin Coras99368312018-08-02 10:45:44 -07001636 sq = segment_manager_alloc_queue (seg, props);
1637 cq = segment_manager_alloc_queue (seg, cprops);
1638
1639 if (props->use_mq_eventfd)
1640 application_local_session_fix_eventds (sq, cq);
1641
Florin Corasf8f516a2018-02-08 15:10:09 -08001642 ls->server_evt_q = pointer_to_uword (sq);
1643 ls->client_evt_q = pointer_to_uword (cq);
1644 rv = segment_manager_try_alloc_fifos (seg, props->rx_fifo_size,
1645 props->tx_fifo_size,
1646 &ls->server_rx_fifo,
1647 &ls->server_tx_fifo);
1648 if (rv)
1649 {
1650 clib_warning ("failed to add fifos in cut-through segment");
1651 segment_manager_segment_reader_unlock (sm);
1652 goto failed;
1653 }
Florin Coras326b81e2018-10-04 19:03:05 -07001654 ls->server_rx_fifo->ct_session_index = ls->session_index;
1655 ls->server_tx_fifo->ct_session_index = ls->session_index;
Florin Corasf8f516a2018-02-08 15:10:09 -08001656 ls->svm_segment_index = seg_index;
1657 ls->listener_index = ll->session_index;
Florin Coras15531972018-08-12 23:50:53 -07001658 ls->client_wrk_index = client_wrk->wrk_index;
Florin Corasf8f516a2018-02-08 15:10:09 -08001659 ls->client_opaque = opaque;
1660 ls->listener_session_type = ll->session_type;
Florin Corasab2f6db2018-08-31 14:31:41 -07001661 ls->session_state = SESSION_STATE_READY;
Florin Corasf8f516a2018-02-08 15:10:09 -08001662
Florin Corasc1f5a432018-11-20 11:31:26 -08001663 if ((rv = server->cb_fns.add_segment_callback (server_wrk->api_client_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08001664 &seg->ssvm)))
1665 {
1666 clib_warning ("failed to notify server of new segment");
1667 segment_manager_segment_reader_unlock (sm);
1668 goto failed;
1669 }
1670 segment_manager_segment_reader_unlock (sm);
1671 if ((rv = server->cb_fns.session_accept_callback ((stream_session_t *) ls)))
1672 {
1673 clib_warning ("failed to send accept cut-through notify to server");
1674 goto failed;
1675 }
1676 if (server->flags & APP_OPTIONS_FLAGS_IS_BUILTIN)
1677 application_local_session_connect_notify (ls);
1678
1679 return 0;
1680
1681failed:
1682 if (!has_transport)
1683 segment_manager_del_segment (sm, seg);
1684 return rv;
1685}
1686
1687static uword
1688application_client_local_connect_key (local_session_t * ls)
1689{
Florin Coras15531972018-08-12 23:50:53 -07001690 return ((uword) ls->app_wrk_index << 32 | (uword) ls->session_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001691}
1692
1693static void
Florin Coras15531972018-08-12 23:50:53 -07001694application_client_local_connect_key_parse (uword key, u32 * app_wrk_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08001695 u32 * session_index)
1696{
Florin Coras15531972018-08-12 23:50:53 -07001697 *app_wrk_index = key >> 32;
Florin Corasf8f516a2018-02-08 15:10:09 -08001698 *session_index = key & 0xFFFFFFFF;
1699}
1700
1701int
1702application_local_session_connect_notify (local_session_t * ls)
1703{
1704 svm_fifo_segment_private_t *seg;
Florin Coras15531972018-08-12 23:50:53 -07001705 app_worker_t *client_wrk, *server_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08001706 segment_manager_t *sm;
Florin Coras15531972018-08-12 23:50:53 -07001707 application_t *client;
Florin Corasf8f516a2018-02-08 15:10:09 -08001708 int rv, is_fail = 0;
1709 uword client_key;
1710
Florin Coras15531972018-08-12 23:50:53 -07001711 client_wrk = app_worker_get (ls->client_wrk_index);
1712 server_wrk = app_worker_get (ls->app_wrk_index);
1713 client = application_get (client_wrk->app_index);
1714
1715 sm = application_get_local_segment_manager_w_session (server_wrk, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001716 seg = segment_manager_get_segment_w_lock (sm, ls->svm_segment_index);
Florin Corasc1f5a432018-11-20 11:31:26 -08001717 if ((rv = client->cb_fns.add_segment_callback (client_wrk->api_client_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08001718 &seg->ssvm)))
1719 {
1720 clib_warning ("failed to notify client %u of new segment",
Florin Coras15531972018-08-12 23:50:53 -07001721 ls->client_wrk_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001722 segment_manager_segment_reader_unlock (sm);
Florin Coras15531972018-08-12 23:50:53 -07001723 application_local_session_disconnect (ls->client_wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001724 is_fail = 1;
1725 }
1726 else
1727 {
1728 segment_manager_segment_reader_unlock (sm);
1729 }
1730
Florin Coras15531972018-08-12 23:50:53 -07001731 client->cb_fns.session_connected_callback (client_wrk->wrk_index,
1732 ls->client_opaque,
Florin Corasf8f516a2018-02-08 15:10:09 -08001733 (stream_session_t *) ls,
1734 is_fail);
1735
1736 client_key = application_client_local_connect_key (ls);
Florin Coras15531972018-08-12 23:50:53 -07001737 hash_set (client_wrk->local_connects, client_key, client_key);
Florin Corasf8f516a2018-02-08 15:10:09 -08001738 return 0;
1739}
1740
1741int
Florin Coras15531972018-08-12 23:50:53 -07001742application_local_session_cleanup (app_worker_t * client_wrk,
1743 app_worker_t * server_wrk,
Florin Corasf6647e02018-03-23 22:56:43 -07001744 local_session_t * ls)
Florin Corasf8f516a2018-02-08 15:10:09 -08001745{
1746 svm_fifo_segment_private_t *seg;
Florin Corasa44d6b12018-10-03 14:29:10 -07001747 stream_session_t *listener;
Florin Corasf8f516a2018-02-08 15:10:09 -08001748 segment_manager_t *sm;
1749 uword client_key;
Florin Corasf6647e02018-03-23 22:56:43 -07001750 u8 has_transport;
1751
Florin Corasa44d6b12018-10-03 14:29:10 -07001752 /* Retrieve listener transport type as it is the one that decides where
1753 * the fifos are allocated */
1754 has_transport = application_local_session_listener_has_transport (ls);
Florin Corasf6647e02018-03-23 22:56:43 -07001755 if (!has_transport)
Florin Coras15531972018-08-12 23:50:53 -07001756 sm = application_get_local_segment_manager_w_session (server_wrk, ls);
Florin Corasf6647e02018-03-23 22:56:43 -07001757 else
Florin Corasa44d6b12018-10-03 14:29:10 -07001758 {
1759 listener = listen_session_get (ls->listener_index);
1760 sm = app_worker_get_listen_segment_manager (server_wrk, listener);
1761 }
Florin Corasf6647e02018-03-23 22:56:43 -07001762
1763 seg = segment_manager_get_segment (sm, ls->svm_segment_index);
Florin Coras15531972018-08-12 23:50:53 -07001764 if (client_wrk)
Florin Corasa44d6b12018-10-03 14:29:10 -07001765 {
1766 client_key = application_client_local_connect_key (ls);
1767 hash_unset (client_wrk->local_connects, client_key);
1768 }
Florin Corasf6647e02018-03-23 22:56:43 -07001769
1770 if (!has_transport)
1771 {
Florin Coras15531972018-08-12 23:50:53 -07001772 application_t *server = application_get (server_wrk->app_index);
Florin Corasc1f5a432018-11-20 11:31:26 -08001773 server->cb_fns.del_segment_callback (server_wrk->api_client_index,
Florin Corasf6647e02018-03-23 22:56:43 -07001774 &seg->ssvm);
Florin Coras15531972018-08-12 23:50:53 -07001775 if (client_wrk)
1776 {
1777 application_t *client = application_get (client_wrk->app_index);
Florin Corasc1f5a432018-11-20 11:31:26 -08001778 client->cb_fns.del_segment_callback (client_wrk->api_client_index,
Florin Coras15531972018-08-12 23:50:53 -07001779 &seg->ssvm);
1780 }
Florin Corasf6647e02018-03-23 22:56:43 -07001781 segment_manager_del_segment (sm, seg);
1782 }
1783
Florin Corasab2f6db2018-08-31 14:31:41 -07001784 application_local_session_free (server_wrk, ls);
Florin Corasf6647e02018-03-23 22:56:43 -07001785
1786 return 0;
1787}
1788
1789int
Florin Corasab2f6db2018-08-31 14:31:41 -07001790application_local_session_disconnect (u32 app_index, local_session_t * ls)
Florin Corasf6647e02018-03-23 22:56:43 -07001791{
Florin Coras15531972018-08-12 23:50:53 -07001792 app_worker_t *client_wrk, *server_wrk;
Florin Corasab2f6db2018-08-31 14:31:41 -07001793 u8 is_server = 0, is_client = 0;
1794 application_t *app;
1795
1796 app = application_get_if_valid (app_index);
1797 if (!app)
1798 return 0;
Florin Corasf8f516a2018-02-08 15:10:09 -08001799
Florin Coras15531972018-08-12 23:50:53 -07001800 client_wrk = app_worker_get_if_valid (ls->client_wrk_index);
1801 server_wrk = app_worker_get (ls->app_wrk_index);
1802
Florin Corasab2f6db2018-08-31 14:31:41 -07001803 if (server_wrk->app_index == app_index)
1804 is_server = 1;
1805 else if (client_wrk && client_wrk->app_index == app_index)
1806 is_client = 1;
1807
1808 if (!is_server && !is_client)
1809 {
1810 clib_warning ("app %u is neither client nor server for session 0x%lx",
1811 app_index, application_local_session_handle (ls));
1812 return VNET_API_ERROR_INVALID_VALUE;
1813 }
Florin Corasf8f516a2018-02-08 15:10:09 -08001814
1815 if (ls->session_state == SESSION_STATE_CLOSED)
Florin Coras15531972018-08-12 23:50:53 -07001816 return application_local_session_cleanup (client_wrk, server_wrk, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001817
Florin Corasab2f6db2018-08-31 14:31:41 -07001818 if (app_index == ls->client_wrk_index)
Florin Corasf8f516a2018-02-08 15:10:09 -08001819 {
Florin Coras15531972018-08-12 23:50:53 -07001820 mq_send_local_session_disconnected_cb (ls->app_wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001821 }
1822 else
1823 {
Florin Coras15531972018-08-12 23:50:53 -07001824 if (!client_wrk)
Florin Corasf8f516a2018-02-08 15:10:09 -08001825 {
Florin Coras15531972018-08-12 23:50:53 -07001826 return application_local_session_cleanup (client_wrk, server_wrk,
1827 ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001828 }
1829 else if (ls->session_state < SESSION_STATE_READY)
1830 {
Florin Coras15531972018-08-12 23:50:53 -07001831 application_t *client = application_get (client_wrk->app_index);
1832 client->cb_fns.session_connected_callback (client_wrk->wrk_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08001833 ls->client_opaque,
1834 (stream_session_t *) ls,
1835 1 /* is_fail */ );
1836 ls->session_state = SESSION_STATE_CLOSED;
Florin Coras15531972018-08-12 23:50:53 -07001837 return application_local_session_cleanup (client_wrk, server_wrk,
1838 ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001839 }
1840 else
1841 {
Florin Coras15531972018-08-12 23:50:53 -07001842 mq_send_local_session_disconnected_cb (client_wrk->wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001843 }
1844 }
1845
1846 ls->session_state = SESSION_STATE_CLOSED;
1847
1848 return 0;
1849}
1850
Florin Corasf6647e02018-03-23 22:56:43 -07001851int
Florin Coras15531972018-08-12 23:50:53 -07001852application_local_session_disconnect_w_index (u32 app_wrk_index, u32 ls_index)
Florin Corasf6647e02018-03-23 22:56:43 -07001853{
Florin Coras15531972018-08-12 23:50:53 -07001854 app_worker_t *app_wrk;
Florin Corasf6647e02018-03-23 22:56:43 -07001855 local_session_t *ls;
Florin Coras15531972018-08-12 23:50:53 -07001856 app_wrk = app_worker_get (app_wrk_index);
1857 ls = application_get_local_session (app_wrk, ls_index);
1858 return application_local_session_disconnect (app_wrk_index, ls);
Florin Corasf6647e02018-03-23 22:56:43 -07001859}
1860
Florin Corasf8f516a2018-02-08 15:10:09 -08001861void
Florin Corasab2f6db2018-08-31 14:31:41 -07001862app_worker_local_sessions_free (app_worker_t * app_wrk)
Florin Corasf8f516a2018-02-08 15:10:09 -08001863{
Florin Corasab2f6db2018-08-31 14:31:41 -07001864 u32 index, server_wrk_index, session_index;
Florin Corasf8f516a2018-02-08 15:10:09 -08001865 u64 handle, *handles = 0;
Florin Coras15531972018-08-12 23:50:53 -07001866 app_worker_t *server_wrk;
Florin Corasab2f6db2018-08-31 14:31:41 -07001867 segment_manager_t *sm;
1868 local_session_t *ls;
Florin Corasf8f516a2018-02-08 15:10:09 -08001869 int i;
1870
1871 /*
Florin Corasf8f516a2018-02-08 15:10:09 -08001872 * Local sessions
1873 */
Florin Coras15531972018-08-12 23:50:53 -07001874 if (app_wrk->local_sessions)
Florin Corasf8f516a2018-02-08 15:10:09 -08001875 {
1876 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001877 pool_foreach (ls, app_wrk->local_sessions, ({
1878 application_local_session_disconnect (app_wrk->wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001879 }));
1880 /* *INDENT-ON* */
1881 }
1882
1883 /*
1884 * Local connects
1885 */
1886 vec_reset_length (handles);
1887 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001888 hash_foreach (handle, index, app_wrk->local_connects, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08001889 vec_add1 (handles, handle);
1890 }));
1891 /* *INDENT-ON* */
1892
1893 for (i = 0; i < vec_len (handles); i++)
1894 {
Florin Coras15531972018-08-12 23:50:53 -07001895 application_client_local_connect_key_parse (handles[i],
1896 &server_wrk_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08001897 &session_index);
Florin Coras15531972018-08-12 23:50:53 -07001898 server_wrk = app_worker_get_if_valid (server_wrk_index);
1899 if (server_wrk)
Florin Corasf8f516a2018-02-08 15:10:09 -08001900 {
Florin Coras15531972018-08-12 23:50:53 -07001901 ls = application_get_local_session (server_wrk, session_index);
1902 application_local_session_disconnect (app_wrk->wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001903 }
1904 }
1905
Florin Coras15531972018-08-12 23:50:53 -07001906 sm = segment_manager_get (app_wrk->local_segment_manager);
1907 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
Florin Corasf8f516a2018-02-08 15:10:09 -08001908 segment_manager_del (sm);
1909}
1910
Florin Coras371ca502018-02-21 12:07:41 -08001911clib_error_t *
1912vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a)
1913{
1914 application_t *app;
1915 app = application_get (a->app_index);
1916 if (!app)
1917 return clib_error_return_code (0, VNET_API_ERROR_APPLICATION_NOT_ATTACHED,
1918 0, "app %u doesn't exist", a->app_index);
1919 app->tls_cert = vec_dup (a->cert);
1920 return 0;
1921}
1922
1923clib_error_t *
1924vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a)
1925{
1926 application_t *app;
1927 app = application_get (a->app_index);
1928 if (!app)
1929 return clib_error_return_code (0, VNET_API_ERROR_APPLICATION_NOT_ATTACHED,
1930 0, "app %u doesn't exist", a->app_index);
1931 app->tls_key = vec_dup (a->key);
1932 return 0;
1933}
1934
Dave Barach68b0fb02017-02-28 15:15:56 -05001935u8 *
Florin Coras15531972018-08-12 23:50:53 -07001936format_app_worker_listener (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -05001937{
Florin Coras15531972018-08-12 23:50:53 -07001938 app_worker_t *app_wrk = va_arg (*args, app_worker_t *);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001939 u64 handle = va_arg (*args, u64);
Florin Corasf8f516a2018-02-08 15:10:09 -08001940 u32 sm_index = va_arg (*args, u32);
Dave Barach68b0fb02017-02-28 15:15:56 -05001941 int verbose = va_arg (*args, int);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001942 stream_session_t *listener;
Florin Coras053a0e42018-11-13 15:52:38 -08001943 const u8 *app_name;
1944 u8 *str;
Dave Barach68b0fb02017-02-28 15:15:56 -05001945
Florin Coras15531972018-08-12 23:50:53 -07001946 if (!app_wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -05001947 {
1948 if (verbose)
Florin Corasab2f6db2018-08-31 14:31:41 -07001949 s = format (s, "%-40s%-25s%=10s%-15s%-15s%-10s", "Connection", "App",
1950 "Wrk", "API Client", "ListenerID", "SegManager");
Dave Barach68b0fb02017-02-28 15:15:56 -05001951 else
Florin Corasab2f6db2018-08-31 14:31:41 -07001952 s = format (s, "%-40s%-25s%=10s", "Connection", "App", "Wrk");
Dave Barach68b0fb02017-02-28 15:15:56 -05001953
1954 return s;
1955 }
1956
Florin Corasc1f5a432018-11-20 11:31:26 -08001957 app_name = application_name_from_index (app_wrk->app_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001958 listener = listen_session_get_from_handle (handle);
1959 str = format (0, "%U", format_stream_session, listener, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -05001960
Dave Barach68b0fb02017-02-28 15:15:56 -05001961 if (verbose)
1962 {
Florin Coras74cac882018-09-07 09:13:15 -07001963 char buf[32];
1964 sprintf (buf, "%u(%u)", app_wrk->wrk_map_index, app_wrk->wrk_index);
1965 s = format (s, "%-40s%-25s%=10s%-15u%-15u%-10u", str, app_name,
Florin Corasc1f5a432018-11-20 11:31:26 -08001966 buf, app_wrk->api_client_index, handle, sm_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001967 }
1968 else
Florin Corasab2f6db2018-08-31 14:31:41 -07001969 s = format (s, "%-40s%-25s%=10u", str, app_name, app_wrk->wrk_map_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001970
Florin Coras6cf30ad2017-04-04 23:08:23 -07001971 return s;
1972}
1973
Florin Coras15531972018-08-12 23:50:53 -07001974static void
1975application_format_listeners (application_t * app, int verbose)
1976{
1977 vlib_main_t *vm = vlib_get_main ();
1978 app_worker_map_t *wrk_map;
1979 app_worker_t *app_wrk;
1980 u32 sm_index;
1981 u64 handle;
1982
1983 if (!app)
1984 {
1985 vlib_cli_output (vm, "%U", format_app_worker_listener, 0 /* header */ ,
1986 0, 0, verbose);
1987 return;
1988 }
1989
1990 /* *INDENT-OFF* */
1991 pool_foreach (wrk_map, app->worker_maps, ({
1992 app_wrk = app_worker_get (wrk_map->wrk_index);
1993 if (hash_elts (app_wrk->listeners_table) == 0)
1994 continue;
1995 hash_foreach (handle, sm_index, app_wrk->listeners_table, ({
1996 vlib_cli_output (vm, "%U", format_app_worker_listener, app_wrk,
1997 handle, sm_index, verbose);
1998 }));
1999 }));
2000 /* *INDENT-ON* */
2001}
2002
2003static void
2004app_worker_format_connects (app_worker_t * app_wrk, int verbose)
Florin Coras6cf30ad2017-04-04 23:08:23 -07002005{
Florin Corasa332c462018-01-31 06:52:17 -08002006 svm_fifo_segment_private_t *fifo_segment;
Florin Coras6cf30ad2017-04-04 23:08:23 -07002007 vlib_main_t *vm = vlib_get_main ();
2008 segment_manager_t *sm;
Florin Coras053a0e42018-11-13 15:52:38 -08002009 const u8 *app_name;
Florin Coras053a0e42018-11-13 15:52:38 -08002010 u8 *s = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -07002011
2012 /* Header */
Florin Coras15531972018-08-12 23:50:53 -07002013 if (!app_wrk)
Florin Coras6cf30ad2017-04-04 23:08:23 -07002014 {
2015 if (verbose)
2016 vlib_cli_output (vm, "%-40s%-20s%-15s%-10s", "Connection", "App",
2017 "API Client", "SegManager");
2018 else
2019 vlib_cli_output (vm, "%-40s%-20s", "Connection", "App");
2020 return;
2021 }
2022
Florin Coras15531972018-08-12 23:50:53 -07002023 if (app_wrk->connects_seg_manager == (u32) ~ 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -07002024 return;
2025
Florin Corasc1f5a432018-11-20 11:31:26 -08002026 app_name = application_name_from_index (app_wrk->app_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -07002027
2028 /* Across all fifo segments */
Florin Coras15531972018-08-12 23:50:53 -07002029 sm = segment_manager_get (app_wrk->connects_seg_manager);
Florin Coras6cf30ad2017-04-04 23:08:23 -07002030
Florin Corasa332c462018-01-31 06:52:17 -08002031 /* *INDENT-OFF* */
2032 segment_manager_foreach_segment_w_lock (fifo_segment, sm, ({
2033 svm_fifo_t *fifo;
2034 u8 *str;
2035
2036 fifo = svm_fifo_segment_get_fifo_list (fifo_segment);
2037 while (fifo)
Florin Corasc1f5a432018-11-20 11:31:26 -08002038 {
2039 u32 session_index, thread_index;
2040 stream_session_t *session;
Florin Coras6cf30ad2017-04-04 23:08:23 -07002041
Florin Corasc1f5a432018-11-20 11:31:26 -08002042 session_index = fifo->master_session_index;
2043 thread_index = fifo->master_thread_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07002044
Florin Corasc1f5a432018-11-20 11:31:26 -08002045 session = session_get (session_index, thread_index);
2046 str = format (0, "%U", format_stream_session, session, verbose);
Florin Coras6cf30ad2017-04-04 23:08:23 -07002047
Florin Corasc1f5a432018-11-20 11:31:26 -08002048 if (verbose)
2049 s = format (s, "%-40s%-20s%-15u%-10u", str, app_name,
2050 app_wrk->api_client_index, app_wrk->connects_seg_manager);
2051 else
2052 s = format (s, "%-40s%-20s", str, app_name);
Florin Coras6cf30ad2017-04-04 23:08:23 -07002053
Florin Corasc1f5a432018-11-20 11:31:26 -08002054 vlib_cli_output (vm, "%v", s);
2055 vec_reset_length (s);
2056 vec_free (str);
Dave Barach10d8cc62017-05-30 09:30:07 -04002057
Florin Corasc1f5a432018-11-20 11:31:26 -08002058 fifo = fifo->next;
2059 }
Florin Corasa332c462018-01-31 06:52:17 -08002060 vec_free (s);
2061 }));
2062 /* *INDENT-ON* */
Florin Coras6cf30ad2017-04-04 23:08:23 -07002063
Florin Coras6cf30ad2017-04-04 23:08:23 -07002064}
2065
Florin Coras15531972018-08-12 23:50:53 -07002066static void
2067application_format_connects (application_t * app, int verbose)
2068{
2069 app_worker_map_t *wrk_map;
2070 app_worker_t *app_wrk;
2071
2072 if (!app)
2073 {
2074 app_worker_format_connects (0, verbose);
2075 return;
2076 }
2077
2078 /* *INDENT-OFF* */
2079 pool_foreach (wrk_map, app->worker_maps, ({
2080 app_wrk = app_worker_get (wrk_map->wrk_index);
2081 app_worker_format_connects (app_wrk, verbose);
2082 }));
2083 /* *INDENT-ON* */
2084}
2085
2086static void
2087app_worker_format_local_sessions (app_worker_t * app_wrk, int verbose)
Florin Corasf8f516a2018-02-08 15:10:09 -08002088{
2089 vlib_main_t *vm = vlib_get_main ();
2090 local_session_t *ls;
2091 transport_proto_t tp;
2092 u8 *conn = 0;
2093
2094 /* Header */
Florin Coras15531972018-08-12 23:50:53 -07002095 if (app_wrk == 0)
Florin Corasf8f516a2018-02-08 15:10:09 -08002096 {
2097 vlib_cli_output (vm, "%-40s%-15s%-20s", "Connection", "ServerApp",
2098 "ClientApp");
2099 return;
2100 }
2101
Florin Coras15531972018-08-12 23:50:53 -07002102 if (!pool_elts (app_wrk->local_sessions)
2103 && !pool_elts (app_wrk->local_connects))
2104 return;
2105
Florin Corasf8f516a2018-02-08 15:10:09 -08002106 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002107 pool_foreach (ls, app_wrk->local_sessions, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08002108 tp = session_type_transport_proto(ls->listener_session_type);
2109 conn = format (0, "[L][%U] *:%u", format_transport_proto_short, tp,
2110 ls->port);
Florin Coras15531972018-08-12 23:50:53 -07002111 vlib_cli_output (vm, "%-40v%-15u%-20u", conn, ls->app_wrk_index,
2112 ls->client_wrk_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08002113 vec_reset_length (conn);
2114 }));
2115 /* *INDENT-ON* */
2116
2117 vec_free (conn);
2118}
2119
Florin Coras15531972018-08-12 23:50:53 -07002120static void
2121application_format_local_sessions (application_t * app, int verbose)
2122{
Florin Corasab2f6db2018-08-31 14:31:41 -07002123 vlib_main_t *vm = vlib_get_main ();
Florin Coras15531972018-08-12 23:50:53 -07002124 app_worker_map_t *wrk_map;
2125 app_worker_t *app_wrk;
Florin Corasab2f6db2018-08-31 14:31:41 -07002126 transport_proto_t tp;
2127 local_session_t *ls;
2128 u8 *conn = 0;
Florin Coras15531972018-08-12 23:50:53 -07002129
2130 if (!app)
2131 {
2132 app_worker_format_local_sessions (0, verbose);
2133 return;
2134 }
2135
Florin Corasab2f6db2018-08-31 14:31:41 -07002136 /*
2137 * Format local listeners
2138 */
2139
2140 /* *INDENT-OFF* */
2141 pool_foreach (ls, app->local_listen_sessions, ({
2142 tp = session_type_transport_proto (ls->listener_session_type);
2143 conn = format (0, "[L][%U] *:%u", format_transport_proto_short, tp,
2144 ls->port);
2145 vlib_cli_output (vm, "%-40v%-15u%-20s", conn, ls->app_wrk_index, "*");
2146 vec_reset_length (conn);
2147 }));
2148 /* *INDENT-ON* */
2149
2150 /*
2151 * Format local accepted/connected sessions
2152 */
Florin Coras15531972018-08-12 23:50:53 -07002153 /* *INDENT-OFF* */
2154 pool_foreach (wrk_map, app->worker_maps, ({
2155 app_wrk = app_worker_get (wrk_map->wrk_index);
2156 app_worker_format_local_sessions (app_wrk, verbose);
2157 }));
2158 /* *INDENT-ON* */
2159}
2160
2161static void
2162app_worker_format_local_connects (app_worker_t * app, int verbose)
Florin Corasf8f516a2018-02-08 15:10:09 -08002163{
2164 vlib_main_t *vm = vlib_get_main ();
Florin Coras15531972018-08-12 23:50:53 -07002165 u32 app_wrk_index, session_index;
2166 app_worker_t *server_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08002167 local_session_t *ls;
2168 uword client_key;
2169 u64 value;
2170
2171 /* Header */
2172 if (app == 0)
2173 {
2174 if (verbose)
2175 vlib_cli_output (vm, "%-40s%-15s%-20s%-10s", "Connection", "App",
2176 "Peer App", "SegManager");
2177 else
2178 vlib_cli_output (vm, "%-40s%-15s%-20s", "Connection", "App",
2179 "Peer App");
2180 return;
2181 }
2182
Florin Coras15531972018-08-12 23:50:53 -07002183 if (!app->local_connects)
2184 return;
2185
Florin Corasf8f516a2018-02-08 15:10:09 -08002186 /* *INDENT-OFF* */
2187 hash_foreach (client_key, value, app->local_connects, ({
Florin Coras15531972018-08-12 23:50:53 -07002188 application_client_local_connect_key_parse (client_key, &app_wrk_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08002189 &session_index);
Florin Coras15531972018-08-12 23:50:53 -07002190 server_wrk = app_worker_get (app_wrk_index);
2191 ls = application_get_local_session (server_wrk, session_index);
2192 vlib_cli_output (vm, "%-40s%-15s%-20s", "TODO", ls->app_wrk_index,
2193 ls->client_wrk_index);
2194 }));
2195 /* *INDENT-ON* */
2196}
2197
2198static void
2199application_format_local_connects (application_t * app, int verbose)
2200{
2201 app_worker_map_t *wrk_map;
2202 app_worker_t *app_wrk;
2203
2204 if (!app)
2205 {
2206 app_worker_format_local_connects (0, verbose);
2207 return;
2208 }
2209
2210 /* *INDENT-OFF* */
2211 pool_foreach (wrk_map, app->worker_maps, ({
2212 app_wrk = app_worker_get (wrk_map->wrk_index);
2213 app_worker_format_local_connects (app_wrk, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08002214 }));
2215 /* *INDENT-ON* */
2216}
2217
Florin Coras6cf30ad2017-04-04 23:08:23 -07002218u8 *
Florin Coras349f8ca2018-11-20 16:52:49 -08002219format_application_worker (u8 * s, va_list * args)
2220{
2221 app_worker_t *app_wrk = va_arg (*args, app_worker_t *);
2222 u32 indent = 1;
2223
2224 s = format (s, "%U wrk-index %u app-index %u map-index %u "
2225 "api-client-index %d\n", format_white_space, indent,
2226 app_wrk->wrk_index, app_wrk->app_index, app_wrk->wrk_map_index,
2227 app_wrk->api_client_index);
2228 return s;
2229}
2230
2231u8 *
Florin Coras6cf30ad2017-04-04 23:08:23 -07002232format_application (u8 * s, va_list * args)
2233{
2234 application_t *app = va_arg (*args, application_t *);
2235 CLIB_UNUSED (int verbose) = va_arg (*args, int);
Florin Corasad0c77f2017-11-09 18:00:15 -08002236 segment_manager_properties_t *props;
Florin Coras053a0e42018-11-13 15:52:38 -08002237 const u8 *app_ns_name, *app_name;
Florin Coras349f8ca2018-11-20 16:52:49 -08002238 app_worker_map_t *wrk_map;
2239 app_worker_t *app_wrk;
Florin Coras6cf30ad2017-04-04 23:08:23 -07002240
2241 if (app == 0)
2242 {
Florin Coras349f8ca2018-11-20 16:52:49 -08002243 if (!verbose)
Florin Corasc1f5a432018-11-20 11:31:26 -08002244 s = format (s, "%-10s%-20s%-40s", "Index", "Name", "Namespace");
Florin Coras6cf30ad2017-04-04 23:08:23 -07002245 return s;
2246 }
2247
Florin Coras0bee9ce2018-03-22 21:24:31 -07002248 app_name = app_get_name (app);
Florin Corascea194d2017-10-02 00:18:51 -07002249 app_ns_name = app_namespace_id_from_index (app->ns_index);
Florin Corasa332c462018-01-31 06:52:17 -08002250 props = application_segment_manager_properties (app);
Florin Coras349f8ca2018-11-20 16:52:49 -08002251 if (!verbose)
2252 {
2253 s = format (s, "%-10u%-20s%-40s", app->app_index, app_name,
2254 app_ns_name);
2255 return s;
2256 }
2257
2258 s = format (s, "app-name %s app-index %u ns-index %u seg-size %U\n",
2259 app_name, app->app_index, app->ns_index,
2260 format_memory_size, props->add_segment_size);
2261 s = format (s, "rx-fifo-size %U tx-fifo-size %U workers:\n",
2262 format_memory_size, props->rx_fifo_size,
2263 format_memory_size, props->tx_fifo_size);
2264
2265 /* *INDENT-OFF* */
2266 pool_foreach (wrk_map, app->worker_maps, ({
2267 app_wrk = app_worker_get (wrk_map->wrk_index);
2268 s = format (s, "%U", format_application_worker, app_wrk);
2269 }));
2270 /* *INDENT-ON* */
2271
Dave Barach68b0fb02017-02-28 15:15:56 -05002272 return s;
2273}
2274
Florin Corasf8f516a2018-02-08 15:10:09 -08002275void
2276application_format_all_listeners (vlib_main_t * vm, int do_local, int verbose)
2277{
2278 application_t *app;
Florin Corasf8f516a2018-02-08 15:10:09 -08002279
Florin Coras15531972018-08-12 23:50:53 -07002280 if (!pool_elts (app_main.app_pool))
Florin Corasf8f516a2018-02-08 15:10:09 -08002281 {
2282 vlib_cli_output (vm, "No active server bindings");
2283 return;
2284 }
2285
2286 if (do_local)
2287 {
2288 application_format_local_sessions (0, verbose);
2289 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002290 pool_foreach (app, app_main.app_pool, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08002291 application_format_local_sessions (app, verbose);
2292 }));
2293 /* *INDENT-ON* */
2294 }
2295 else
2296 {
Florin Coras15531972018-08-12 23:50:53 -07002297 application_format_listeners (0, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08002298
2299 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002300 pool_foreach (app, app_main.app_pool, ({
2301 application_format_listeners (app, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08002302 }));
2303 /* *INDENT-ON* */
2304 }
2305}
2306
2307void
2308application_format_all_clients (vlib_main_t * vm, int do_local, int verbose)
2309{
2310 application_t *app;
2311
Florin Coras15531972018-08-12 23:50:53 -07002312 if (!pool_elts (app_main.app_pool))
Florin Corasf8f516a2018-02-08 15:10:09 -08002313 {
2314 vlib_cli_output (vm, "No active apps");
2315 return;
2316 }
2317
2318 if (do_local)
2319 {
2320 application_format_local_connects (0, verbose);
2321
2322 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002323 pool_foreach (app, app_main.app_pool, ({
2324 application_format_local_connects (app, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08002325 }));
2326 /* *INDENT-ON* */
2327 }
2328 else
2329 {
2330 application_format_connects (0, verbose);
2331
2332 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002333 pool_foreach (app, app_main.app_pool, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08002334 application_format_connects (app, verbose);
2335 }));
2336 /* *INDENT-ON* */
2337 }
2338}
2339
Dave Barach68b0fb02017-02-28 15:15:56 -05002340static clib_error_t *
2341show_app_command_fn (vlib_main_t * vm, unformat_input_t * input,
2342 vlib_cli_command_t * cmd)
2343{
Florin Corasf8f516a2018-02-08 15:10:09 -08002344 int do_server = 0, do_client = 0, do_local = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002345 application_t *app;
Florin Coras349f8ca2018-11-20 16:52:49 -08002346 u32 app_index = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002347 int verbose = 0;
2348
Florin Corascea194d2017-10-02 00:18:51 -07002349 session_cli_return_if_not_enabled ();
Florin Corase04c2992017-03-01 08:17:34 -08002350
Dave Barach68b0fb02017-02-28 15:15:56 -05002351 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2352 {
2353 if (unformat (input, "server"))
2354 do_server = 1;
2355 else if (unformat (input, "client"))
2356 do_client = 1;
Florin Corasf8f516a2018-02-08 15:10:09 -08002357 else if (unformat (input, "local"))
2358 do_local = 1;
Florin Coras349f8ca2018-11-20 16:52:49 -08002359 else if (unformat (input, "%u", &app_index))
2360 ;
Dave Barach68b0fb02017-02-28 15:15:56 -05002361 else if (unformat (input, "verbose"))
2362 verbose = 1;
2363 else
Florin Coras349f8ca2018-11-20 16:52:49 -08002364 return clib_error_return (0, "unknown input `%U'",
2365 format_unformat_error, input);
Dave Barach68b0fb02017-02-28 15:15:56 -05002366 }
2367
2368 if (do_server)
Florin Coras349f8ca2018-11-20 16:52:49 -08002369 {
2370 application_format_all_listeners (vm, do_local, verbose);
2371 return 0;
2372 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002373
2374 if (do_client)
Florin Coras349f8ca2018-11-20 16:52:49 -08002375 {
2376 application_format_all_clients (vm, do_local, verbose);
2377 return 0;
2378 }
2379
2380 if (app_index != ~0)
2381 {
2382 app = application_get (app_index);
2383 if (!app)
2384 return clib_error_return (0, "No app with index %u", app_index);
2385
2386 vlib_cli_output (vm, "%U", format_application, app, /* verbose */ 1);
2387 return 0;
2388 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002389
Florin Coras6cf30ad2017-04-04 23:08:23 -07002390 /* Print app related info */
2391 if (!do_server && !do_client)
2392 {
Florin Coras349f8ca2018-11-20 16:52:49 -08002393 vlib_cli_output (vm, "%U", format_application, 0, 0);
Florin Corascea194d2017-10-02 00:18:51 -07002394 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002395 pool_foreach (app, app_main.app_pool, ({
Florin Coras349f8ca2018-11-20 16:52:49 -08002396 vlib_cli_output (vm, "%U", format_application, app, 0);
Florin Corascea194d2017-10-02 00:18:51 -07002397 }));
2398 /* *INDENT-ON* */
Florin Coras6cf30ad2017-04-04 23:08:23 -07002399 }
2400
Dave Barach68b0fb02017-02-28 15:15:56 -05002401 return 0;
2402}
2403
Florin Corase04c2992017-03-01 08:17:34 -08002404/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002405VLIB_CLI_COMMAND (show_app_command, static) =
2406{
Florin Corase04c2992017-03-01 08:17:34 -08002407 .path = "show app",
2408 .short_help = "show app [server|client] [verbose]",
2409 .function = show_app_command_fn,
2410};
2411/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002412
2413/*
2414 * fd.io coding-style-patch-verification: ON
2415 *
2416 * Local Variables:
2417 * eval: (c-set-style "gnu")
2418 * End:
2419 */