blob: 7d0fd5567a3271f17b2db5f00901ccb03007d562 [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);
28 memset (app_listener, 0, sizeof (*app_listener));
29 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)
45 memset (app_listener, 0xfa, sizeof (*app_listener));
46}
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);
53 memset (app_listener, 0, sizeof (*app_listener));
54 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)
70 memset (app_listener, 0xfa, sizeof (*app_listener));
71}
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);
78 memset (map, 0, sizeof (*map));
79 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 Corascea194d2017-10-02 00:18:51 -0700100static u8 *
101app_get_name_from_reg_index (application_t * app)
102{
103 u8 *app_name;
104
105 vl_api_registration_t *regp;
106 regp = vl_api_client_index_to_registration (app->api_client_index);
107 if (!regp)
Florin Coras15531972018-08-12 23:50:53 -0700108 app_name = format (0, "builtin-%d%c", app->app_index, 0);
Florin Corascea194d2017-10-02 00:18:51 -0700109 else
110 app_name = format (0, "%s%c", regp->name, 0);
111
112 return app_name;
113}
114
Florin Coras0bee9ce2018-03-22 21:24:31 -0700115static u8 *
116app_get_name (application_t * app)
117{
118 if (!app->name)
119 return app_get_name_from_reg_index (app);
120 return app->name;
121}
122
Florin Corascea194d2017-10-02 00:18:51 -0700123u32
124application_session_table (application_t * app, u8 fib_proto)
125{
126 app_namespace_t *app_ns;
127 app_ns = app_namespace_get (app->ns_index);
128 if (!application_has_global_scope (app))
129 return APP_INVALID_INDEX;
130 if (fib_proto == FIB_PROTOCOL_IP4)
131 return session_lookup_get_index_for_fib (fib_proto,
132 app_ns->ip4_fib_index);
133 else
134 return session_lookup_get_index_for_fib (fib_proto,
135 app_ns->ip6_fib_index);
136}
137
138u32
139application_local_session_table (application_t * app)
140{
141 app_namespace_t *app_ns;
142 if (!application_has_local_scope (app))
143 return APP_INVALID_INDEX;
144 app_ns = app_namespace_get (app->ns_index);
145 return app_ns->local_table_index;
146}
147
Florin Corasab2f6db2018-08-31 14:31:41 -0700148static void
149application_local_listener_session_endpoint (local_session_t * ll,
150 session_endpoint_t * sep)
151{
152 sep->transport_proto =
153 session_type_transport_proto (ll->listener_session_type);
154 sep->port = ll->port;
155 sep->is_ip4 = ll->listener_session_type & 1;
156}
157
Dave Barach68b0fb02017-02-28 15:15:56 -0500158int
159application_api_queue_is_full (application_t * app)
160{
Florin Corase86a8ed2018-01-05 03:20:25 -0800161 svm_queue_t *q;
Dave Barach68b0fb02017-02-28 15:15:56 -0500162
163 /* builtin servers are always OK */
164 if (app->api_client_index == ~0)
165 return 0;
166
167 q = vl_api_client_index_to_input_queue (app->api_client_index);
168 if (!q)
169 return 1;
170
171 if (q->cursize == q->maxsize)
172 return 1;
173 return 0;
174}
175
Florin Corascea194d2017-10-02 00:18:51 -0700176/**
177 * Returns app name
178 *
179 * Since the name is not stored per app, we generate it on the fly. It is
180 * the caller's responsibility to free the vector
181 */
182u8 *
183application_name_from_index (u32 app_index)
184{
185 application_t *app = application_get (app_index);
186 if (!app)
187 return 0;
188 return app_get_name_from_reg_index (app);
189}
190
Dave Barach68b0fb02017-02-28 15:15:56 -0500191static void
192application_table_add (application_t * app)
193{
Florin Coras0bee9ce2018-03-22 21:24:31 -0700194 if (app->api_client_index != APP_INVALID_INDEX)
Florin Coras15531972018-08-12 23:50:53 -0700195 hash_set (app_main.app_by_api_client_index, app->api_client_index,
196 app->app_index);
Florin Coras0bee9ce2018-03-22 21:24:31 -0700197 else if (app->name)
Florin Coras15531972018-08-12 23:50:53 -0700198 hash_set_mem (app_main.app_by_name, app->name, app->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500199}
200
201static void
202application_table_del (application_t * app)
203{
Florin Coras0bee9ce2018-03-22 21:24:31 -0700204 if (app->api_client_index != APP_INVALID_INDEX)
Florin Coras15531972018-08-12 23:50:53 -0700205 hash_unset (app_main.app_by_api_client_index, app->api_client_index);
Florin Coras0bee9ce2018-03-22 21:24:31 -0700206 else if (app->name)
Florin Coras15531972018-08-12 23:50:53 -0700207 hash_unset_mem (app_main.app_by_name, app->name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500208}
209
210application_t *
211application_lookup (u32 api_client_index)
212{
213 uword *p;
Florin Coras15531972018-08-12 23:50:53 -0700214 p = hash_get (app_main.app_by_api_client_index, api_client_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500215 if (p)
216 return application_get (p[0]);
217
218 return 0;
219}
220
Florin Coras6cf30ad2017-04-04 23:08:23 -0700221application_t *
Florin Coras0bee9ce2018-03-22 21:24:31 -0700222application_lookup_name (const u8 * name)
223{
224 uword *p;
Florin Coras15531972018-08-12 23:50:53 -0700225 p = hash_get_mem (app_main.app_by_name, name);
Florin Coras0bee9ce2018-03-22 21:24:31 -0700226 if (p)
227 return application_get (p[0]);
228
229 return 0;
230}
231
232application_t *
Florin Coras15531972018-08-12 23:50:53 -0700233application_alloc (void)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700234{
235 application_t *app;
Florin Coras15531972018-08-12 23:50:53 -0700236 pool_get (app_main.app_pool, app);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700237 memset (app, 0, sizeof (*app));
Florin Coras15531972018-08-12 23:50:53 -0700238 app->app_index = app - app_main.app_pool;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700239 return app;
240}
241
Florin Coras15531972018-08-12 23:50:53 -0700242application_t *
243application_get (u32 app_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500244{
Florin Coras15531972018-08-12 23:50:53 -0700245 if (app_index == APP_INVALID_INDEX)
246 return 0;
247 return pool_elt_at_index (app_main.app_pool, app_index);
248}
Dave Barach68b0fb02017-02-28 15:15:56 -0500249
Florin Coras15531972018-08-12 23:50:53 -0700250application_t *
251application_get_if_valid (u32 app_index)
252{
253 if (pool_is_free_index (app_main.app_pool, app_index))
254 return 0;
Florin Corasa5464812017-04-19 13:00:05 -0700255
Florin Coras15531972018-08-12 23:50:53 -0700256 return pool_elt_at_index (app_main.app_pool, app_index);
257}
Florin Coras7999e832017-10-31 01:51:04 -0700258
Florin Coras15531972018-08-12 23:50:53 -0700259u32
260application_index (application_t * app)
261{
262 return app - app_main.app_pool;
Dave Barach68b0fb02017-02-28 15:15:56 -0500263}
264
Florin Corasd79b41e2017-03-04 05:37:52 -0800265static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700266application_verify_cb_fns (session_cb_vft_t * cb_fns)
Florin Corasd79b41e2017-03-04 05:37:52 -0800267{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700268 if (cb_fns->session_accept_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800269 clib_warning ("No accept callback function provided");
Florin Coras6cf30ad2017-04-04 23:08:23 -0700270 if (cb_fns->session_connected_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800271 clib_warning ("No session connected callback function provided");
272 if (cb_fns->session_disconnect_callback == 0)
273 clib_warning ("No session disconnect callback function provided");
274 if (cb_fns->session_reset_callback == 0)
275 clib_warning ("No session reset callback function provided");
276}
277
Florin Corasb384b542018-01-15 01:08:33 -0800278/**
279 * Check app config for given segment type
280 *
281 * Returns 1 on success and 0 otherwise
282 */
283static u8
284application_verify_cfg (ssvm_segment_type_t st)
285{
286 u8 is_valid;
287 if (st == SSVM_SEGMENT_MEMFD)
288 {
289 is_valid = (session_manager_get_evt_q_segment () != 0);
290 if (!is_valid)
291 clib_warning ("memfd seg: vpp's event qs IN binary api svm region");
292 return is_valid;
293 }
294 else if (st == SSVM_SEGMENT_SHM)
295 {
296 is_valid = (session_manager_get_evt_q_segment () == 0);
297 if (!is_valid)
298 clib_warning ("shm seg: vpp's event qs NOT IN binary api svm region");
299 return is_valid;
300 }
301 else
302 return 1;
303}
304
Florin Coras6cf30ad2017-04-04 23:08:23 -0700305int
Florin Coras15531972018-08-12 23:50:53 -0700306application_alloc_and_init (app_init_args_t * a)
Dave Barach68b0fb02017-02-28 15:15:56 -0500307{
Florin Corasa332c462018-01-31 06:52:17 -0800308 ssvm_segment_type_t seg_type = SSVM_SEGMENT_MEMFD;
Florin Corasb384b542018-01-15 01:08:33 -0800309 segment_manager_properties_t *props;
310 vl_api_registration_t *reg;
Florin Coras15531972018-08-12 23:50:53 -0700311 application_t *app;
312 u64 *options;
Dave Barach68b0fb02017-02-28 15:15:56 -0500313
Florin Coras15531972018-08-12 23:50:53 -0700314 app = application_alloc ();
315 options = a->options;
Florin Corasb384b542018-01-15 01:08:33 -0800316 /*
317 * Make sure we support the requested configuration
318 */
Florin Corasa332c462018-01-31 06:52:17 -0800319 if (!(options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_IS_BUILTIN))
320 {
Florin Coras15531972018-08-12 23:50:53 -0700321 reg = vl_api_client_index_to_registration (a->api_client_index);
Florin Corasa332c462018-01-31 06:52:17 -0800322 if (!reg)
323 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
324 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
325 seg_type = SSVM_SEGMENT_SHM;
326 }
327 else
328 {
Florin Coras99368312018-08-02 10:45:44 -0700329 if (options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
330 {
331 clib_warning ("mq eventfds can only be used if socket transport is "
332 "used for api");
333 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
334 }
Florin Corasa332c462018-01-31 06:52:17 -0800335 seg_type = SSVM_SEGMENT_PRIVATE;
336 }
Florin Corasb384b542018-01-15 01:08:33 -0800337
Florin Corasa332c462018-01-31 06:52:17 -0800338 if (!application_verify_cfg (seg_type))
Florin Corasb384b542018-01-15 01:08:33 -0800339 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
Dave Barach68b0fb02017-02-28 15:15:56 -0500340
Florin Coras15531972018-08-12 23:50:53 -0700341 /* Check that the obvious things are properly set up */
342 application_verify_cb_fns (a->session_cb_vft);
343
344 app->api_client_index = a->api_client_index;
345 app->flags = options[APP_OPTIONS_FLAGS];
346 app->cb_fns = *a->session_cb_vft;
347 app->ns_index = options[APP_OPTIONS_NAMESPACE];
348 app->proxied_transports = options[APP_OPTIONS_PROXY_TRANSPORT];
349 app->name = vec_dup (a->name);
350
351 /* If no scope enabled, default to global */
352 if (!application_has_global_scope (app)
353 && !application_has_local_scope (app))
354 app->flags |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
355
Florin Corasa332c462018-01-31 06:52:17 -0800356 props = application_segment_manager_properties (app);
357 segment_manager_properties_init (props);
Florin Coras15531972018-08-12 23:50:53 -0700358 props->segment_size = options[APP_OPTIONS_ADD_SEGMENT_SIZE];
359 props->prealloc_fifos = options[APP_OPTIONS_PREALLOC_FIFO_PAIRS];
Florin Corasb384b542018-01-15 01:08:33 -0800360 if (options[APP_OPTIONS_ADD_SEGMENT_SIZE])
361 {
362 props->add_segment_size = options[APP_OPTIONS_ADD_SEGMENT_SIZE];
363 props->add_segment = 1;
364 }
365 if (options[APP_OPTIONS_RX_FIFO_SIZE])
366 props->rx_fifo_size = options[APP_OPTIONS_RX_FIFO_SIZE];
367 if (options[APP_OPTIONS_TX_FIFO_SIZE])
368 props->tx_fifo_size = options[APP_OPTIONS_TX_FIFO_SIZE];
Florin Corasf8f516a2018-02-08 15:10:09 -0800369 if (options[APP_OPTIONS_EVT_QUEUE_SIZE])
370 props->evt_q_size = options[APP_OPTIONS_EVT_QUEUE_SIZE];
Florin Coras99368312018-08-02 10:45:44 -0700371 if (options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
372 props->use_mq_eventfd = 1;
Florin Coras58d36f02018-03-09 13:05:53 -0800373 if (options[APP_OPTIONS_TLS_ENGINE])
374 app->tls_engine = options[APP_OPTIONS_TLS_ENGINE];
Florin Corasa332c462018-01-31 06:52:17 -0800375 props->segment_type = seg_type;
Dave Barach68b0fb02017-02-28 15:15:56 -0500376
Florin Coras15531972018-08-12 23:50:53 -0700377 /* Add app to lookup by api_client_index table */
378 application_table_add (app);
379 a->app_index = application_index (app);
Florin Corasa332c462018-01-31 06:52:17 -0800380
Florin Coras15531972018-08-12 23:50:53 -0700381 APP_DBG ("New app name: %v api index: %u index %u", app->name,
382 app->api_client_index, app->app_index);
383
384 return 0;
385}
386
387void
388application_free (application_t * app)
389{
390 app_worker_map_t *wrk_map;
391 app_worker_t *app_wrk;
Florin Corasab2f6db2018-08-31 14:31:41 -0700392 u32 table_index;
393 local_session_t *ll;
394 session_endpoint_t sep;
Florin Coras15531972018-08-12 23:50:53 -0700395
396 /*
397 * The app event queue allocated in first segment is cleared with
398 * the segment manager. No need to explicitly free it.
399 */
400 APP_DBG ("Delete app name %v api index: %d index: %d", app->name,
401 app->api_client_index, app->app_index);
402
403 if (application_is_proxy (app))
404 application_remove_proxy (app);
405
Florin Corasab2f6db2018-08-31 14:31:41 -0700406 /*
407 * Free workers
408 */
409
Florin Coras15531972018-08-12 23:50:53 -0700410 /* *INDENT-OFF* */
411 pool_flush (wrk_map, app->worker_maps, ({
412 app_wrk = app_worker_get (wrk_map->wrk_index);
413 app_worker_free (app_wrk);
414 }));
415 /* *INDENT-ON* */
416 pool_free (app->worker_maps);
417
Florin Corasab2f6db2018-08-31 14:31:41 -0700418 /*
419 * Free local listeners. Global table unbinds stop local listeners
420 * as well, but if we have only local binds, these won't be cleaned up.
421 * Don't bother with local accepted sessions, we clean them when
422 * cleaning up the worker.
423 */
424 table_index = application_local_session_table (app);
425 /* *INDENT-OFF* */
426 pool_foreach (ll, app->local_listen_sessions, ({
427 application_local_listener_session_endpoint (ll, &sep);
428 session_lookup_del_session_endpoint (table_index, &sep);
429 }));
430 /* *INDENT-ON* */
431 pool_free (app->local_listen_sessions);
432
433 /*
434 * Cleanup remaining state
435 */
Florin Coras15531972018-08-12 23:50:53 -0700436 application_table_del (app);
437 vec_free (app->name);
438 vec_free (app->tls_cert);
439 vec_free (app->tls_key);
440 pool_put (app_main.app_pool, app);
441}
442
443app_worker_t *
444application_get_worker (application_t * app, u32 wrk_map_index)
445{
446 app_worker_map_t *map;
447 map = app_worker_map_get (app, wrk_map_index);
448 if (!map)
449 return 0;
450 return app_worker_get (map->wrk_index);
451}
452
453app_worker_t *
454application_get_default_worker (application_t * app)
455{
456 return application_get_worker (app, 0);
457}
458
459app_worker_t *
Florin Corasab2f6db2018-08-31 14:31:41 -0700460application_listener_select_worker (stream_session_t * ls, u8 is_local)
461{
462 app_listener_t *app_listener;
463 application_t *app;
464 u32 wrk_index;
465
466 app = application_get (ls->app_index);
467 if (!is_local)
468 app_listener = app_listener_get (app, ls->listener_db_index);
469 else
470 app_listener = app_local_listener_get (app, ls->listener_db_index);
471
472 wrk_index = clib_bitmap_next_set (app_listener->workers,
473 app_listener->accept_rotor + 1);
474 if (wrk_index == ~0)
475 wrk_index = clib_bitmap_first_set (app_listener->workers);
476
477 ASSERT (wrk_index != ~0);
478 app_listener->accept_rotor = wrk_index;
479 return application_get_worker (app, wrk_index);
480}
481
482app_worker_t *
Florin Coras15531972018-08-12 23:50:53 -0700483app_worker_alloc (application_t * app)
484{
485 app_worker_t *app_wrk;
486 pool_get (app_main.workers, app_wrk);
487 memset (app_wrk, 0, sizeof (*app_wrk));
488 app_wrk->wrk_index = app_wrk - app_main.workers;
489 app_wrk->app_index = app->app_index;
490 app_wrk->wrk_map_index = ~0;
491 app_wrk->connects_seg_manager = APP_INVALID_SEGMENT_MANAGER_INDEX;
492 app_wrk->first_segment_manager = APP_INVALID_SEGMENT_MANAGER_INDEX;
493 app_wrk->local_segment_manager = APP_INVALID_SEGMENT_MANAGER_INDEX;
494 APP_DBG ("New app %v worker %u", app_get_name (app), app_wrk->wrk_index);
495 return app_wrk;
496}
497
498app_worker_t *
499app_worker_get (u32 wrk_index)
500{
501 return pool_elt_at_index (app_main.workers, wrk_index);
502}
503
504app_worker_t *
505app_worker_get_if_valid (u32 wrk_index)
506{
507 if (pool_is_free_index (app_main.workers, wrk_index))
508 return 0;
509 return pool_elt_at_index (app_main.workers, wrk_index);
510}
511
512void
513app_worker_free (app_worker_t * app_wrk)
514{
515 application_t *app = application_get (app_wrk->app_index);
516 vnet_unbind_args_t _a, *a = &_a;
517 u64 handle, *handles = 0;
518 segment_manager_t *sm;
519 u32 sm_index;
520 int i;
521
522 /*
523 * Listener cleanup
524 */
525
526 /* *INDENT-OFF* */
527 hash_foreach (handle, sm_index, app_wrk->listeners_table,
528 ({
529 vec_add1 (handles, handle);
530 sm = segment_manager_get (sm_index);
531 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
532 }));
533 /* *INDENT-ON* */
534
535 for (i = 0; i < vec_len (handles); i++)
536 {
537 a->app_index = app->app_index;
Florin Corasab2f6db2018-08-31 14:31:41 -0700538 a->wrk_map_index = app_wrk->wrk_map_index;
Florin Coras15531972018-08-12 23:50:53 -0700539 a->handle = handles[i];
540 /* seg manager is removed when unbind completes */
541 vnet_unbind (a);
542 }
543
544 /*
545 * Connects segment manager cleanup
546 */
547
548 if (app_wrk->connects_seg_manager != APP_INVALID_SEGMENT_MANAGER_INDEX)
549 {
550 sm = segment_manager_get (app_wrk->connects_seg_manager);
551 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
552 segment_manager_init_del (sm);
553 }
554
555 /* If first segment manager is used by a listener */
556 if (app_wrk->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX
557 && app_wrk->first_segment_manager != app_wrk->connects_seg_manager)
558 {
559 sm = segment_manager_get (app_wrk->first_segment_manager);
560 /* .. and has no fifos, e.g. it might be used for redirected sessions,
561 * remove it */
562 if (!segment_manager_has_fifos (sm))
563 {
564 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
565 segment_manager_del (sm);
566 }
567 }
568
569 /*
570 * Local sessions
571 */
Florin Corasab2f6db2018-08-31 14:31:41 -0700572 app_worker_local_sessions_free (app_wrk);
Florin Coras15531972018-08-12 23:50:53 -0700573
574 pool_put (app_main.workers, app_wrk);
575 if (CLIB_DEBUG)
576 memset (app_wrk, 0xfe, sizeof (*app_wrk));
577}
578
579int
580app_worker_alloc_and_init (application_t * app, app_worker_t ** wrk)
581{
582 app_worker_map_t *wrk_map;
583 app_worker_t *app_wrk;
584 segment_manager_t *sm;
585 int rv;
586
587 app_wrk = app_worker_alloc (app);
588 wrk_map = app_worker_map_alloc (app);
589 wrk_map->wrk_index = app_wrk->wrk_index;
590 app_wrk->wrk_map_index = app_worker_map_index (app, wrk_map);
591
592 /*
593 * Setup first segment manager
594 */
595 sm = segment_manager_new ();
596 sm->app_wrk_index = app_wrk->wrk_index;
597
598 if ((rv = segment_manager_init (sm, app->sm_properties.segment_size,
599 app->sm_properties.prealloc_fifos)))
600 {
601 app_worker_free (app_wrk);
602 return rv;
603 }
Florin Corasc87c91d2017-08-16 19:55:49 -0700604 sm->first_is_protected = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500605
Florin Corascea194d2017-10-02 00:18:51 -0700606 /*
Florin Coras15531972018-08-12 23:50:53 -0700607 * Setup app worker
Florin Corascea194d2017-10-02 00:18:51 -0700608 */
Florin Coras15531972018-08-12 23:50:53 -0700609 app_wrk->first_segment_manager = segment_manager_index (sm);
610 app_wrk->listeners_table = hash_create (0, sizeof (u64));
611 app_wrk->event_queue = segment_manager_event_queue (sm);
612 app_wrk->app_is_builtin = application_is_builtin (app);
Dave Barach68b0fb02017-02-28 15:15:56 -0500613
Florin Corasf8f516a2018-02-08 15:10:09 -0800614 /*
615 * Segment manager for local sessions
616 */
617 sm = segment_manager_new ();
Florin Coras15531972018-08-12 23:50:53 -0700618 sm->app_wrk_index = app_wrk->wrk_index;
619 app_wrk->local_segment_manager = segment_manager_index (sm);
620 app_wrk->local_connects = hash_create (0, sizeof (u64));
621
622 *wrk = app_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -0800623
Florin Coras6cf30ad2017-04-04 23:08:23 -0700624 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500625}
626
Florin Corasab2f6db2018-08-31 14:31:41 -0700627application_t *
628app_worker_get_app (u32 wrk_index)
629{
630 app_worker_t *app_wrk;
631 app_wrk = app_worker_get_if_valid (wrk_index);
632 if (!app_wrk)
633 return 0;
634 return application_get_if_valid (app_wrk->app_index);
635}
636
Florin Coras6cf30ad2017-04-04 23:08:23 -0700637static segment_manager_t *
Florin Corasab2f6db2018-08-31 14:31:41 -0700638app_worker_alloc_segment_manager (app_worker_t * app_wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -0500639{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700640 segment_manager_t *sm = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500641
Florin Corasc87c91d2017-08-16 19:55:49 -0700642 /* If the first segment manager is not in use, don't allocate a new one */
Florin Coras15531972018-08-12 23:50:53 -0700643 if (app_wrk->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX
644 && app_wrk->first_segment_manager_in_use == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500645 {
Florin Coras15531972018-08-12 23:50:53 -0700646 sm = segment_manager_get (app_wrk->first_segment_manager);
647 app_wrk->first_segment_manager_in_use = 1;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700648 return sm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500649 }
650
Florin Coras6cf30ad2017-04-04 23:08:23 -0700651 sm = segment_manager_new ();
Florin Coras15531972018-08-12 23:50:53 -0700652 sm->app_wrk_index = app_wrk->wrk_index;
Florin Coras0e9c33b2017-08-14 22:33:41 -0700653
Florin Coras6cf30ad2017-04-04 23:08:23 -0700654 return sm;
655}
656
Florin Coras6cf30ad2017-04-04 23:08:23 -0700657int
Florin Corasab2f6db2018-08-31 14:31:41 -0700658app_worker_start_listen (app_worker_t * app_wrk, stream_session_t * ls)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700659{
660 segment_manager_t *sm;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700661
Florin Coras6cf30ad2017-04-04 23:08:23 -0700662 /* Allocate segment manager. All sessions derived out of a listen session
663 * have fifos allocated by the same segment manager. */
Florin Corasab2f6db2018-08-31 14:31:41 -0700664 if (!(sm = app_worker_alloc_segment_manager (app_wrk)))
665 return -1;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700666
667 /* Add to app's listener table. Useful to find all child listeners
668 * when app goes down, although, just for unbinding this is not needed */
Florin Corasab2f6db2018-08-31 14:31:41 -0700669 hash_set (app_wrk->listeners_table, listen_session_get_handle (ls),
670 segment_manager_index (sm));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700671
Florin Corasab2f6db2018-08-31 14:31:41 -0700672 if (!ls->server_rx_fifo
673 && session_transport_service_type (ls) == TRANSPORT_SERVICE_CL)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700674 {
Florin Corasab2f6db2018-08-31 14:31:41 -0700675 if (session_alloc_fifos (sm, ls))
676 return -1;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700677 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700678 return 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700679}
680
Florin Coras6cf30ad2017-04-04 23:08:23 -0700681int
Florin Corasab2f6db2018-08-31 14:31:41 -0700682app_worker_stop_listen (app_worker_t * app_wrk, session_handle_t handle)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700683{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700684 segment_manager_t *sm;
Florin Corasab2f6db2018-08-31 14:31:41 -0700685 uword *sm_indexp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700686
Florin Corasab2f6db2018-08-31 14:31:41 -0700687 sm_indexp = hash_get (app_wrk->listeners_table, handle);
688 if (PREDICT_FALSE (!sm_indexp))
Florin Coras15531972018-08-12 23:50:53 -0700689 {
690 clib_warning ("listener handle was removed %llu!", handle);
691 return -1;
692 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700693
Florin Corasab2f6db2018-08-31 14:31:41 -0700694 sm = segment_manager_get (*sm_indexp);
695 if (app_wrk->first_segment_manager == *sm_indexp)
Florin Coras0e9c33b2017-08-14 22:33:41 -0700696 {
Florin Corasc87c91d2017-08-16 19:55:49 -0700697 /* Delete sessions but don't remove segment manager */
Florin Coras15531972018-08-12 23:50:53 -0700698 app_wrk->first_segment_manager_in_use = 0;
Florin Corasc87c91d2017-08-16 19:55:49 -0700699 segment_manager_del_sessions (sm);
700 }
701 else
702 {
703 segment_manager_init_del (sm);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700704 }
Florin Coras15531972018-08-12 23:50:53 -0700705 hash_unset (app_wrk->listeners_table, handle);
Florin Corasab2f6db2018-08-31 14:31:41 -0700706
707 return 0;
708}
709
710/**
711 * Start listening local transport endpoint for requested transport.
712 *
713 * Creates a 'dummy' stream session with state LISTENING to be used in session
714 * lookups, prior to establishing connection. Requests transport to build
715 * it's own specific listening connection.
716 */
717int
718application_start_listen (application_t * app,
719 session_endpoint_extended_t * sep_ext,
720 session_handle_t * res)
721{
722 app_listener_t *app_listener;
723 u32 table_index, fib_proto;
724 session_endpoint_t *sep;
725 app_worker_t *app_wrk;
726 stream_session_t *ls;
727 session_handle_t lh;
728 session_type_t sst;
729
730 /*
731 * Check if sep is already listened on
732 */
733 sep = (session_endpoint_t *) sep_ext;
734 fib_proto = session_endpoint_fib_proto (sep);
735 table_index = application_session_table (app, fib_proto);
736 lh = session_lookup_endpoint_listener (table_index, sep, 1);
737 if (lh != SESSION_INVALID_HANDLE)
738 {
739 ls = listen_session_get_from_handle (lh);
740 if (ls->app_index != app->app_index)
741 return VNET_API_ERROR_ADDRESS_IN_USE;
742
743 app_wrk = app_worker_get (sep_ext->app_wrk_index);
744 if (ls->app_wrk_index == app_wrk->wrk_index)
745 return VNET_API_ERROR_ADDRESS_IN_USE;
746
747 if (app_worker_start_listen (app_wrk, ls))
748 return -1;
749
750 app_listener = app_listener_get (app, ls->listener_db_index);
751 app_listener->workers = clib_bitmap_set (app_listener->workers,
752 app_wrk->wrk_map_index, 1);
753
754 *res = listen_session_get_handle (ls);
755 return 0;
756 }
757
758 /*
759 * Allocate new listener for application
760 */
761 sst = session_type_from_proto_and_ip (sep_ext->transport_proto,
762 sep_ext->is_ip4);
763 ls = listen_session_new (0, sst);
764 ls->app_index = app->app_index;
Florin Coras74cac882018-09-07 09:13:15 -0700765 lh = listen_session_get_handle (ls);
Florin Corasab2f6db2018-08-31 14:31:41 -0700766 if (session_listen (ls, sep_ext))
767 goto err;
768
Florin Coras74cac882018-09-07 09:13:15 -0700769
770 ls = listen_session_get_from_handle (lh);
Florin Corasab2f6db2018-08-31 14:31:41 -0700771 app_listener = app_listener_alloc (app);
772 ls->listener_db_index = app_listener->al_index;
773
774 /*
775 * Setup app worker as a listener
776 */
777 app_wrk = app_worker_get (sep_ext->app_wrk_index);
778 ls->app_wrk_index = app_wrk->wrk_index;
779 if (app_worker_start_listen (app_wrk, ls))
780 goto err;
781 app_listener->workers = clib_bitmap_set (app_listener->workers,
782 app_wrk->wrk_map_index, 1);
783
Florin Coras74cac882018-09-07 09:13:15 -0700784 *res = lh;
Florin Corasab2f6db2018-08-31 14:31:41 -0700785 return 0;
786
787err:
788 listen_session_del (ls);
789 return -1;
790}
791
792/**
793 * Stop listening on session associated to handle
794 *
795 * @param handle listener handle
796 * @param app_index index of the app owning the handle.
797 * @param app_wrk_index index of the worker requesting the stop
798 */
799int
800application_stop_listen (u32 app_index, u32 app_wrk_index,
801 session_handle_t handle)
802{
803 app_listener_t *app_listener;
804 stream_session_t *listener;
805 app_worker_t *app_wrk;
806 application_t *app;
807
808 listener = listen_session_get_from_handle (handle);
809 app = application_get (app_index);
810 if (PREDICT_FALSE (!app || app->app_index != listener->app_index))
811 {
812 clib_warning ("app doesn't own handle %llu!", handle);
813 return -1;
814 }
815
816 app_listener = app_listener_get (app, listener->listener_db_index);
817 if (!clib_bitmap_get (app_listener->workers, app_wrk_index))
818 {
819 clib_warning ("worker not listening on handle %lu", handle);
820 return 0;
821 }
822
823 app_wrk = application_get_worker (app, app_wrk_index);
824 app_worker_stop_listen (app_wrk, handle);
825 clib_bitmap_set_no_check (app_listener->workers, app_wrk_index, 0);
826
827 if (clib_bitmap_is_zero (app_listener->workers))
828 {
829 session_stop_listen (listener);
830 app_listener_free (app, app_listener);
831 listen_session_del (listener);
832 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700833
Dave Barach68b0fb02017-02-28 15:15:56 -0500834 return 0;
835}
836
Florin Coras6cf30ad2017-04-04 23:08:23 -0700837int
Florin Coras15531972018-08-12 23:50:53 -0700838app_worker_open_session (app_worker_t * app, session_endpoint_t * sep,
839 u32 api_context)
Dave Barach68b0fb02017-02-28 15:15:56 -0500840{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700841 int rv;
842
843 /* Make sure we have a segment manager for connects */
Florin Coras15531972018-08-12 23:50:53 -0700844 app_worker_alloc_connects_segment_manager (app);
Florin Coras371ca502018-02-21 12:07:41 -0800845
Florin Coras15531972018-08-12 23:50:53 -0700846 if ((rv = session_open (app->wrk_index, sep, api_context)))
Florin Coras371ca502018-02-21 12:07:41 -0800847 return rv;
848
849 return 0;
850}
851
852int
Florin Coras15531972018-08-12 23:50:53 -0700853app_worker_alloc_connects_segment_manager (app_worker_t * app_wrk)
Florin Coras371ca502018-02-21 12:07:41 -0800854{
855 segment_manager_t *sm;
856
Florin Coras15531972018-08-12 23:50:53 -0700857 if (app_wrk->connects_seg_manager == APP_INVALID_SEGMENT_MANAGER_INDEX)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700858 {
Florin Corasab2f6db2018-08-31 14:31:41 -0700859 sm = app_worker_alloc_segment_manager (app_wrk);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700860 if (sm == 0)
861 return -1;
Florin Coras15531972018-08-12 23:50:53 -0700862 app_wrk->connects_seg_manager = segment_manager_index (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700863 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700864 return 0;
865}
866
867segment_manager_t *
Florin Coras15531972018-08-12 23:50:53 -0700868app_worker_get_connect_segment_manager (app_worker_t * app)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700869{
870 ASSERT (app->connects_seg_manager != (u32) ~ 0);
871 return segment_manager_get (app->connects_seg_manager);
872}
873
874segment_manager_t *
Florin Coras15531972018-08-12 23:50:53 -0700875app_worker_get_listen_segment_manager (app_worker_t * app,
876 stream_session_t * s)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700877{
878 uword *smp;
879 smp = hash_get (app->listeners_table, listen_session_get_handle (s));
880 ASSERT (smp != 0);
881 return segment_manager_get (*smp);
882}
883
Florin Coras15531972018-08-12 23:50:53 -0700884clib_error_t *
885vnet_app_worker_add_del (vnet_app_worker_add_del_args_t * a)
886{
887 svm_fifo_segment_private_t *fs;
888 app_worker_map_t *wrk_map;
889 app_worker_t *app_wrk;
890 segment_manager_t *sm;
891 application_t *app;
892 int rv;
893
894 app = application_get (a->app_index);
895 if (!app)
896 return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0,
897 "App %u does not exist", a->app_index);
898
899 if (a->is_add)
900 {
901 if ((rv = app_worker_alloc_and_init (app, &app_wrk)))
902 return clib_error_return_code (0, rv, 0, "app wrk init: %d", rv);
903 sm = segment_manager_get (app_wrk->first_segment_manager);
904 fs = segment_manager_get_segment_w_lock (sm, 0);
905 a->segment = &fs->ssvm;
906 segment_manager_segment_reader_unlock (sm);
907 a->evt_q = app_wrk->event_queue;
Florin Corasab2f6db2018-08-31 14:31:41 -0700908 a->wrk_index = app_wrk->wrk_map_index;
Florin Coras15531972018-08-12 23:50:53 -0700909 }
910 else
911 {
912 wrk_map = app_worker_map_get (app, a->wrk_index);
913 if (!wrk_map)
914 return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0,
915 "App %u does not have worker %u",
916 app->app_index, a->wrk_index);
917 app_wrk = app_worker_get (wrk_map->wrk_index);
918 app_worker_map_free (app, wrk_map);
919 if (!app_wrk)
920 return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0,
921 "No worker %u", a->wrk_index);
922 app_worker_free (app_wrk);
923 }
924 return 0;
925}
926
Florin Corasf8f516a2018-02-08 15:10:09 -0800927segment_manager_t *
Florin Coras15531972018-08-12 23:50:53 -0700928application_get_local_segment_manager (app_worker_t * app)
Florin Corasf8f516a2018-02-08 15:10:09 -0800929{
930 return segment_manager_get (app->local_segment_manager);
931}
932
933segment_manager_t *
Florin Coras15531972018-08-12 23:50:53 -0700934application_get_local_segment_manager_w_session (app_worker_t * app,
Florin Corasf8f516a2018-02-08 15:10:09 -0800935 local_session_t * ls)
936{
937 stream_session_t *listener;
938 if (application_local_session_listener_has_transport (ls))
939 {
Florin Coras5c9083d2018-04-13 06:39:07 -0700940 listener = listen_session_get (ls->listener_index);
Florin Coras15531972018-08-12 23:50:53 -0700941 return app_worker_get_listen_segment_manager (app, listener);
Florin Corasf8f516a2018-02-08 15:10:09 -0800942 }
943 return segment_manager_get (app->local_segment_manager);
944}
945
Dave Barach52851e62017-08-07 09:35:25 -0400946int
947application_is_proxy (application_t * app)
948{
Florin Coras7999e832017-10-31 01:51:04 -0700949 return (app->flags & APP_OPTIONS_FLAGS_IS_PROXY);
950}
951
952int
953application_is_builtin (application_t * app)
954{
955 return (app->flags & APP_OPTIONS_FLAGS_IS_BUILTIN);
956}
957
958int
959application_is_builtin_proxy (application_t * app)
960{
961 return (application_is_proxy (app) && application_is_builtin (app));
Dave Barach52851e62017-08-07 09:35:25 -0400962}
963
Florin Corascea194d2017-10-02 00:18:51 -0700964u8
965application_has_local_scope (application_t * app)
966{
967 return app->flags & APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
968}
969
970u8
971application_has_global_scope (application_t * app)
972{
973 return app->flags & APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
974}
975
Florin Coras60116992018-08-27 09:52:18 -0700976u8
977application_use_mq_for_ctrl (application_t * app)
978{
979 return app->flags & APP_OPTIONS_FLAGS_USE_MQ_FOR_CTRL_MSGS;
980}
981
Florin Coras15531972018-08-12 23:50:53 -0700982/**
983 * Send an API message to the external app, to map new segment
984 */
985int
986app_worker_add_segment_notify (u32 app_wrk_index, ssvm_private_t * fs)
987{
988 app_worker_t *app_wrk = app_worker_get (app_wrk_index);
989 application_t *app = application_get (app_wrk->app_index);
990 return app->cb_fns.add_segment_callback (app->api_client_index, fs);
991}
992
Florin Coras1c710452017-10-17 00:03:13 -0700993u32
Florin Coras15531972018-08-12 23:50:53 -0700994application_n_listeners (app_worker_t * app)
Florin Coras1c710452017-10-17 00:03:13 -0700995{
996 return hash_elts (app->listeners_table);
997}
998
999stream_session_t *
Florin Coras15531972018-08-12 23:50:53 -07001000app_worker_first_listener (app_worker_t * app, u8 fib_proto,
1001 u8 transport_proto)
Florin Coras1c710452017-10-17 00:03:13 -07001002{
Florin Coras7999e832017-10-31 01:51:04 -07001003 stream_session_t *listener;
Florin Coras1c710452017-10-17 00:03:13 -07001004 u64 handle;
1005 u32 sm_index;
Florin Coras7999e832017-10-31 01:51:04 -07001006 u8 sst;
1007
1008 sst = session_type_from_proto_and_ip (transport_proto,
1009 fib_proto == FIB_PROTOCOL_IP4);
Florin Coras1c710452017-10-17 00:03:13 -07001010
1011 /* *INDENT-OFF* */
1012 hash_foreach (handle, sm_index, app->listeners_table, ({
Florin Coras7999e832017-10-31 01:51:04 -07001013 listener = listen_session_get_from_handle (handle);
Florin Corasc3ddea82017-11-27 03:12:00 -08001014 if (listener->session_type == sst
Florin Corasab2f6db2018-08-31 14:31:41 -07001015 && listener->enqueue_epoch != SESSION_PROXY_LISTENER_INDEX)
Florin Coras7999e832017-10-31 01:51:04 -07001016 return listener;
Florin Coras1c710452017-10-17 00:03:13 -07001017 }));
1018 /* *INDENT-ON* */
1019
1020 return 0;
1021}
1022
Florin Coras15531972018-08-12 23:50:53 -07001023u8
1024app_worker_application_is_builtin (app_worker_t * app_wrk)
1025{
1026 return app_wrk->app_is_builtin;
1027}
1028
Florin Coras19b1f6a2017-12-11 03:37:03 -08001029stream_session_t *
Florin Coras15531972018-08-12 23:50:53 -07001030application_proxy_listener (app_worker_t * app, u8 fib_proto,
Florin Coras19b1f6a2017-12-11 03:37:03 -08001031 u8 transport_proto)
1032{
1033 stream_session_t *listener;
1034 u64 handle;
1035 u32 sm_index;
1036 u8 sst;
1037
1038 sst = session_type_from_proto_and_ip (transport_proto,
1039 fib_proto == FIB_PROTOCOL_IP4);
1040
1041 /* *INDENT-OFF* */
1042 hash_foreach (handle, sm_index, app->listeners_table, ({
1043 listener = listen_session_get_from_handle (handle);
1044 if (listener->session_type == sst
Florin Corasab2f6db2018-08-31 14:31:41 -07001045 && listener->enqueue_epoch == SESSION_PROXY_LISTENER_INDEX)
Florin Coras19b1f6a2017-12-11 03:37:03 -08001046 return listener;
1047 }));
1048 /* *INDENT-ON* */
1049
1050 return 0;
1051}
1052
Florin Coras7999e832017-10-31 01:51:04 -07001053static clib_error_t *
1054application_start_stop_proxy_fib_proto (application_t * app, u8 fib_proto,
1055 u8 transport_proto, u8 is_start)
1056{
Florin Coras7999e832017-10-31 01:51:04 -07001057 app_namespace_t *app_ns = app_namespace_get (app->ns_index);
1058 u8 is_ip4 = (fib_proto == FIB_PROTOCOL_IP4);
Florin Corasab2f6db2018-08-31 14:31:41 -07001059 session_endpoint_extended_t sep = SESSION_ENDPOINT_EXT_NULL;
Florin Coras7999e832017-10-31 01:51:04 -07001060 transport_connection_t *tc;
Florin Coras15531972018-08-12 23:50:53 -07001061 app_worker_t *app_wrk;
Florin Coras7999e832017-10-31 01:51:04 -07001062 stream_session_t *s;
1063 u64 handle;
1064
Florin Coras15531972018-08-12 23:50:53 -07001065 /* TODO decide if we want proxy to be enabled for all workers */
1066 app_wrk = application_get_default_worker (app);
Florin Coras7999e832017-10-31 01:51:04 -07001067 if (is_start)
1068 {
Florin Coras15531972018-08-12 23:50:53 -07001069 s = app_worker_first_listener (app_wrk, fib_proto, transport_proto);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001070 if (!s)
1071 {
1072 sep.is_ip4 = is_ip4;
1073 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1074 sep.sw_if_index = app_ns->sw_if_index;
1075 sep.transport_proto = transport_proto;
Florin Corasab2f6db2018-08-31 14:31:41 -07001076 sep.app_wrk_index = app_wrk->wrk_index; /* only default */
1077 application_start_listen (app, &sep, &handle);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001078 s = listen_session_get_from_handle (handle);
Florin Corasab2f6db2018-08-31 14:31:41 -07001079 s->enqueue_epoch = SESSION_PROXY_LISTENER_INDEX;
Florin Coras19b1f6a2017-12-11 03:37:03 -08001080 }
Florin Coras7999e832017-10-31 01:51:04 -07001081 }
1082 else
1083 {
Florin Coras15531972018-08-12 23:50:53 -07001084 s = application_proxy_listener (app_wrk, fib_proto, transport_proto);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001085 ASSERT (s);
Florin Coras7999e832017-10-31 01:51:04 -07001086 }
Florin Coras19b1f6a2017-12-11 03:37:03 -08001087
Florin Coras7999e832017-10-31 01:51:04 -07001088 tc = listen_session_get_transport (s);
1089
1090 if (!ip_is_zero (&tc->lcl_ip, 1))
1091 {
Florin Corasdbd44562017-11-09 19:30:17 -08001092 u32 sti;
1093 sep.is_ip4 = is_ip4;
1094 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1095 sep.transport_proto = transport_proto;
1096 sep.port = 0;
1097 sti = session_lookup_get_index_for_fib (fib_proto, sep.fib_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001098 if (is_start)
Florin Corasab2f6db2018-08-31 14:31:41 -07001099 session_lookup_add_session_endpoint (sti,
1100 (session_endpoint_t *) & sep,
1101 s->session_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001102 else
Florin Corasab2f6db2018-08-31 14:31:41 -07001103 session_lookup_del_session_endpoint (sti,
1104 (session_endpoint_t *) & sep);
Florin Coras7999e832017-10-31 01:51:04 -07001105 }
Florin Coras19b1f6a2017-12-11 03:37:03 -08001106
Florin Coras7999e832017-10-31 01:51:04 -07001107 return 0;
1108}
1109
Florin Coras19b1f6a2017-12-11 03:37:03 -08001110static void
1111application_start_stop_proxy_local_scope (application_t * app,
1112 u8 transport_proto, u8 is_start)
1113{
1114 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
1115 app_namespace_t *app_ns;
1116 app_ns = app_namespace_get (app->ns_index);
1117 sep.is_ip4 = 1;
1118 sep.transport_proto = transport_proto;
1119 sep.port = 0;
1120
1121 if (is_start)
1122 {
1123 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
Florin Coras15531972018-08-12 23:50:53 -07001124 app->app_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001125 sep.is_ip4 = 0;
1126 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
Florin Coras15531972018-08-12 23:50:53 -07001127 app->app_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -08001128 }
1129 else
1130 {
1131 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1132 sep.is_ip4 = 0;
1133 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1134 }
1135}
1136
Florin Coras7999e832017-10-31 01:51:04 -07001137void
Florin Coras561af9b2017-12-09 10:19:43 -08001138application_start_stop_proxy (application_t * app,
1139 transport_proto_t transport_proto, u8 is_start)
Florin Coras7999e832017-10-31 01:51:04 -07001140{
Florin Coras7999e832017-10-31 01:51:04 -07001141 if (application_has_local_scope (app))
Florin Coras19b1f6a2017-12-11 03:37:03 -08001142 application_start_stop_proxy_local_scope (app, transport_proto, is_start);
Florin Coras7999e832017-10-31 01:51:04 -07001143
1144 if (application_has_global_scope (app))
1145 {
1146 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP4,
1147 transport_proto, is_start);
1148 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP6,
1149 transport_proto, is_start);
1150 }
1151}
1152
1153void
1154application_setup_proxy (application_t * app)
1155{
1156 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -08001157 transport_proto_t tp;
1158
Florin Coras7999e832017-10-31 01:51:04 -07001159 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -08001160
1161 /* *INDENT-OFF* */
1162 transport_proto_foreach (tp, ({
1163 if (transports & (1 << tp))
1164 application_start_stop_proxy (app, tp, 1);
1165 }));
1166 /* *INDENT-ON* */
Florin Coras7999e832017-10-31 01:51:04 -07001167}
1168
1169void
1170application_remove_proxy (application_t * app)
1171{
1172 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -08001173 transport_proto_t tp;
1174
Florin Coras7999e832017-10-31 01:51:04 -07001175 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -08001176
1177 /* *INDENT-OFF* */
1178 transport_proto_foreach (tp, ({
1179 if (transports & (1 << tp))
1180 application_start_stop_proxy (app, tp, 0);
1181 }));
1182 /* *INDENT-ON* */
Florin Coras7999e832017-10-31 01:51:04 -07001183}
1184
Florin Corasa332c462018-01-31 06:52:17 -08001185segment_manager_properties_t *
1186application_segment_manager_properties (application_t * app)
1187{
1188 return &app->sm_properties;
1189}
1190
1191segment_manager_properties_t *
1192application_get_segment_manager_properties (u32 app_index)
1193{
1194 application_t *app = application_get (app_index);
1195 return &app->sm_properties;
1196}
1197
Florin Coras3c2fed52018-07-04 04:15:05 -07001198static inline int
1199app_enqueue_evt (svm_msg_q_t * mq, svm_msg_q_msg_t * msg, u8 lock)
1200{
Florin Coras52207f12018-07-12 14:48:06 -07001201 if (PREDICT_FALSE (svm_msg_q_is_full (mq)))
Florin Coras3c2fed52018-07-04 04:15:05 -07001202 {
1203 clib_warning ("evt q full");
1204 svm_msg_q_free_msg (mq, msg);
1205 if (lock)
1206 svm_msg_q_unlock (mq);
1207 return -1;
1208 }
Florin Coras52207f12018-07-12 14:48:06 -07001209
1210 if (lock)
1211 {
1212 svm_msg_q_add_and_unlock (mq, msg);
1213 return 0;
1214 }
1215
1216 /* Even when not locking the ring, we must wait for queue mutex */
1217 if (svm_msg_q_add (mq, msg, SVM_Q_WAIT))
1218 {
1219 clib_warning ("msg q add returned");
1220 return -1;
1221 }
Florin Coras3c2fed52018-07-04 04:15:05 -07001222 return 0;
1223}
1224
1225static inline int
Florin Coras15531972018-08-12 23:50:53 -07001226app_send_io_evt_rx (app_worker_t * app_wrk, stream_session_t * s, u8 lock)
Florin Coras3c2fed52018-07-04 04:15:05 -07001227{
Florin Coras52207f12018-07-12 14:48:06 -07001228 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -07001229 svm_msg_q_msg_t msg;
1230 svm_msg_q_t *mq;
1231
Florin Coras460dce62018-07-27 05:45:06 -07001232 if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY
1233 && s->session_state != SESSION_STATE_LISTENING))
Florin Coras3c2fed52018-07-04 04:15:05 -07001234 {
1235 /* Session is closed so app will never clean up. Flush rx fifo */
Florin Coras84099552018-07-22 12:59:30 -07001236 if (s->session_state == SESSION_STATE_CLOSED)
1237 svm_fifo_dequeue_drop_all (s->server_rx_fifo);
Florin Coras3c2fed52018-07-04 04:15:05 -07001238 return 0;
1239 }
1240
Florin Coras15531972018-08-12 23:50:53 -07001241 if (app_worker_application_is_builtin (app_wrk))
1242 {
1243 application_t *app = application_get (app_wrk->app_index);
1244 return app->cb_fns.builtin_app_rx_callback (s);
1245 }
Florin Coras3c2fed52018-07-04 04:15:05 -07001246
Florin Coras54693d22018-07-17 10:46:29 -07001247 if (svm_fifo_has_event (s->server_rx_fifo)
1248 || svm_fifo_is_empty (s->server_rx_fifo))
Florin Coras3c2fed52018-07-04 04:15:05 -07001249 return 0;
1250
Florin Coras15531972018-08-12 23:50:53 -07001251 mq = app_wrk->event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001252 if (lock)
1253 svm_msg_q_lock (mq);
1254
1255 if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
1256 {
1257 clib_warning ("evt q rings full");
1258 if (lock)
1259 svm_msg_q_unlock (mq);
1260 return -1;
1261 }
1262
1263 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
1264 ASSERT (!svm_msg_q_msg_is_invalid (&msg));
1265
Florin Coras52207f12018-07-12 14:48:06 -07001266 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -07001267 evt->fifo = s->server_rx_fifo;
1268 evt->event_type = FIFO_EVENT_APP_RX;
1269
Florin Coras41c9e042018-09-11 00:10:41 -07001270 (void) svm_fifo_set_event (s->server_rx_fifo);
1271
Florin Coras54693d22018-07-17 10:46:29 -07001272 if (app_enqueue_evt (mq, &msg, lock))
1273 return -1;
Florin Coras54693d22018-07-17 10:46:29 -07001274 return 0;
Florin Coras3c2fed52018-07-04 04:15:05 -07001275}
1276
1277static inline int
Florin Coras15531972018-08-12 23:50:53 -07001278app_send_io_evt_tx (app_worker_t * app_wrk, stream_session_t * s, u8 lock)
Florin Coras3c2fed52018-07-04 04:15:05 -07001279{
1280 svm_msg_q_t *mq;
Florin Coras52207f12018-07-12 14:48:06 -07001281 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -07001282 svm_msg_q_msg_t msg;
1283
Florin Coras15531972018-08-12 23:50:53 -07001284 if (app_worker_application_is_builtin (app_wrk))
Florin Coras3c2fed52018-07-04 04:15:05 -07001285 return 0;
1286
Florin Coras15531972018-08-12 23:50:53 -07001287 mq = app_wrk->event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001288 if (lock)
1289 svm_msg_q_lock (mq);
1290
1291 if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
1292 {
1293 clib_warning ("evt q rings full");
1294 if (lock)
1295 svm_msg_q_unlock (mq);
1296 return -1;
1297 }
1298
1299 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
1300 ASSERT (!svm_msg_q_msg_is_invalid (&msg));
1301
Florin Coras52207f12018-07-12 14:48:06 -07001302 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -07001303 evt->event_type = FIFO_EVENT_APP_TX;
1304 evt->fifo = s->server_tx_fifo;
1305
1306 return app_enqueue_evt (mq, &msg, lock);
1307}
1308
1309/* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001310typedef int (app_send_evt_handler_fn) (app_worker_t *app,
Florin Coras3c2fed52018-07-04 04:15:05 -07001311 stream_session_t *s,
1312 u8 lock);
Florin Coras460dce62018-07-27 05:45:06 -07001313static app_send_evt_handler_fn * const app_send_evt_handler_fns[3] = {
Florin Coras3c2fed52018-07-04 04:15:05 -07001314 app_send_io_evt_rx,
Florin Coras460dce62018-07-27 05:45:06 -07001315 0,
Florin Coras3c2fed52018-07-04 04:15:05 -07001316 app_send_io_evt_tx,
1317};
1318/* *INDENT-ON* */
1319
1320/**
1321 * Send event to application
1322 *
Florin Coras21795132018-09-09 09:40:51 -07001323 * Logic from queue perspective is non-blocking. If there's
1324 * not enough space to enqueue a message, we return.
Florin Coras3c2fed52018-07-04 04:15:05 -07001325 */
1326int
Florin Corasab2f6db2018-08-31 14:31:41 -07001327app_worker_send_event (app_worker_t * app, stream_session_t * s, u8 evt_type)
Florin Coras3c2fed52018-07-04 04:15:05 -07001328{
1329 ASSERT (app && evt_type <= FIFO_EVENT_APP_TX);
1330 return app_send_evt_handler_fns[evt_type] (app, s, 0 /* lock */ );
1331}
1332
Florin Coras21795132018-09-09 09:40:51 -07001333/**
1334 * Send event to application
1335 *
1336 * Logic from queue perspective is blocking. However, if queue is full,
1337 * we return.
1338 */
Florin Coras3c2fed52018-07-04 04:15:05 -07001339int
Florin Corasab2f6db2018-08-31 14:31:41 -07001340app_worker_lock_and_send_event (app_worker_t * app, stream_session_t * s,
1341 u8 evt_type)
Florin Coras3c2fed52018-07-04 04:15:05 -07001342{
1343 return app_send_evt_handler_fns[evt_type] (app, s, 1 /* lock */ );
1344}
1345
Florin Corasf8f516a2018-02-08 15:10:09 -08001346local_session_t *
Florin Corasab2f6db2018-08-31 14:31:41 -07001347application_local_session_alloc (app_worker_t * app_wrk)
Florin Corasf8f516a2018-02-08 15:10:09 -08001348{
1349 local_session_t *s;
Florin Corasab2f6db2018-08-31 14:31:41 -07001350 pool_get (app_wrk->local_sessions, s);
Florin Corasf8f516a2018-02-08 15:10:09 -08001351 memset (s, 0, sizeof (*s));
Florin Corasab2f6db2018-08-31 14:31:41 -07001352 s->app_wrk_index = app_wrk->wrk_index;
1353 s->session_index = s - app_wrk->local_sessions;
Florin Corasf8f516a2018-02-08 15:10:09 -08001354 s->session_type = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE, 0);
1355 return s;
1356}
1357
1358void
Florin Corasab2f6db2018-08-31 14:31:41 -07001359application_local_session_free (app_worker_t * app, local_session_t * s)
Florin Corasf8f516a2018-02-08 15:10:09 -08001360{
1361 pool_put (app->local_sessions, s);
1362 if (CLIB_DEBUG)
1363 memset (s, 0xfc, sizeof (*s));
1364}
1365
1366local_session_t *
Florin Coras15531972018-08-12 23:50:53 -07001367application_get_local_session (app_worker_t * app_wrk, u32 session_index)
Florin Corasf8f516a2018-02-08 15:10:09 -08001368{
Florin Coras15531972018-08-12 23:50:53 -07001369 if (pool_is_free_index (app_wrk->local_sessions, session_index))
Florin Coras99368312018-08-02 10:45:44 -07001370 return 0;
Florin Coras15531972018-08-12 23:50:53 -07001371 return pool_elt_at_index (app_wrk->local_sessions, session_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001372}
1373
1374local_session_t *
1375application_get_local_session_from_handle (session_handle_t handle)
1376{
Florin Coras15531972018-08-12 23:50:53 -07001377 app_worker_t *server_wrk;
1378 u32 session_index, server_wrk_index;
1379 local_session_parse_handle (handle, &server_wrk_index, &session_index);
1380 server_wrk = app_worker_get_if_valid (server_wrk_index);
1381 if (!server_wrk)
Florin Corasfcbda892018-08-23 19:27:03 -07001382 return 0;
Florin Coras15531972018-08-12 23:50:53 -07001383 return application_get_local_session (server_wrk, session_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001384}
1385
Florin Coras60116992018-08-27 09:52:18 -07001386local_session_t *
Florin Corasab2f6db2018-08-31 14:31:41 -07001387application_local_listen_session_alloc (application_t * app)
Florin Coras60116992018-08-27 09:52:18 -07001388{
Florin Corasab2f6db2018-08-31 14:31:41 -07001389 local_session_t *ll;
1390 pool_get (app->local_listen_sessions, ll);
1391 memset (ll, 0, sizeof (*ll));
1392 return ll;
Florin Coras60116992018-08-27 09:52:18 -07001393}
1394
Florin Corasab2f6db2018-08-31 14:31:41 -07001395u32
1396application_local_listener_index (application_t * app, local_session_t * ll)
Florin Corasf8f516a2018-02-08 15:10:09 -08001397{
Florin Corasab2f6db2018-08-31 14:31:41 -07001398 return (ll - app->local_listen_sessions);
1399}
1400
1401void
1402application_local_listen_session_free (application_t * app,
1403 local_session_t * ll)
1404{
1405 pool_put (app->local_listen_sessions, ll);
1406 if (CLIB_DEBUG)
1407 memset (ll, 0xfb, sizeof (*ll));
Florin Corasf8f516a2018-02-08 15:10:09 -08001408}
1409
1410int
Florin Corasab2f6db2018-08-31 14:31:41 -07001411application_start_local_listen (application_t * app,
1412 session_endpoint_extended_t * sep_ext,
Florin Corasf8f516a2018-02-08 15:10:09 -08001413 session_handle_t * handle)
1414{
Florin Corasab2f6db2018-08-31 14:31:41 -07001415 app_listener_t *app_listener;
1416 session_endpoint_t *sep;
1417 app_worker_t *app_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08001418 session_handle_t lh;
1419 local_session_t *ll;
1420 u32 table_index;
1421
Florin Corasab2f6db2018-08-31 14:31:41 -07001422 sep = (session_endpoint_t *) sep_ext;
Florin Coras15531972018-08-12 23:50:53 -07001423 table_index = application_local_session_table (app);
Florin Corasab2f6db2018-08-31 14:31:41 -07001424 app_wrk = app_worker_get (sep_ext->app_wrk_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001425
1426 /* An exact sep match, as opposed to session_lookup_local_listener */
1427 lh = session_lookup_endpoint_listener (table_index, sep, 1);
1428 if (lh != SESSION_INVALID_HANDLE)
Florin Corasab2f6db2018-08-31 14:31:41 -07001429 {
1430 ll = application_get_local_listener_w_handle (lh);
1431 if (ll->app_index != app->app_index)
1432 return VNET_API_ERROR_ADDRESS_IN_USE;
Florin Corasf8f516a2018-02-08 15:10:09 -08001433
Florin Corasab2f6db2018-08-31 14:31:41 -07001434 if (ll->app_wrk_index == app_wrk->wrk_index)
1435 return VNET_API_ERROR_ADDRESS_IN_USE;
1436
1437 app_listener = app_local_listener_get (app, ll->listener_db_index);
1438 app_listener->workers = clib_bitmap_set (app_listener->workers,
1439 app_wrk->wrk_map_index, 1);
1440 *handle = application_local_session_handle (ll);
1441 return 0;
1442 }
1443
1444 ll = application_local_listen_session_alloc (app);
Florin Corasf8f516a2018-02-08 15:10:09 -08001445 ll->session_type = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE, 0);
Florin Coras15531972018-08-12 23:50:53 -07001446 ll->app_wrk_index = app_wrk->app_index;
Florin Corasab2f6db2018-08-31 14:31:41 -07001447 ll->session_index = application_local_listener_index (app, ll);
1448 ll->port = sep_ext->port;
Florin Corasf8f516a2018-02-08 15:10:09 -08001449 /* Store the original session type for the unbind */
1450 ll->listener_session_type =
Florin Corasab2f6db2018-08-31 14:31:41 -07001451 session_type_from_proto_and_ip (sep_ext->transport_proto,
1452 sep_ext->is_ip4);
Florin Coras5fda7a32018-02-14 08:04:31 -08001453 ll->transport_listener_index = ~0;
Florin Corasab2f6db2018-08-31 14:31:41 -07001454 ll->app_index = app->app_index;
1455
1456 app_listener = app_local_listener_alloc (app);
1457 ll->listener_db_index = app_listener->al_index;
1458 app_listener->workers = clib_bitmap_set (app_listener->workers,
1459 app_wrk->wrk_map_index, 1);
Florin Corasf8f516a2018-02-08 15:10:09 -08001460
1461 *handle = application_local_session_handle (ll);
1462 session_lookup_add_session_endpoint (table_index, sep, *handle);
1463
1464 return 0;
1465}
1466
1467/**
1468 * Clean up local session table. If we have a listener session use it to
1469 * find the port and proto. If not, the handle must be a local table handle
1470 * so parse it.
1471 */
1472int
Florin Corasab2f6db2018-08-31 14:31:41 -07001473application_stop_local_listen (u32 app_index, u32 wrk_map_index,
1474 session_handle_t lh)
Florin Corasf8f516a2018-02-08 15:10:09 -08001475{
1476 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
Florin Corasab2f6db2018-08-31 14:31:41 -07001477 u32 table_index, ll_index, server_index;
1478 app_listener_t *app_listener;
Florin Coras15531972018-08-12 23:50:53 -07001479 app_worker_t *server_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08001480 stream_session_t *sl = 0;
1481 local_session_t *ll, *ls;
Florin Coras15531972018-08-12 23:50:53 -07001482 application_t *server;
Florin Corasf8f516a2018-02-08 15:10:09 -08001483
Florin Coras15531972018-08-12 23:50:53 -07001484 server = application_get (app_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001485 table_index = application_local_session_table (server);
1486
1487 /* We have both local and global table binds. Figure from global what
1488 * the sep we should be cleaning up is.
1489 */
1490 if (!session_handle_is_local (lh))
1491 {
1492 sl = listen_session_get_from_handle (lh);
1493 if (!sl || listen_session_get_local_session_endpoint (sl, &sep))
1494 {
1495 clib_warning ("broken listener");
1496 return -1;
1497 }
1498 lh = session_lookup_endpoint_listener (table_index, &sep, 0);
1499 if (lh == SESSION_INVALID_HANDLE)
1500 return -1;
1501 }
1502
Florin Corasab2f6db2018-08-31 14:31:41 -07001503 local_session_parse_handle (lh, &server_index, &ll_index);
1504 if (PREDICT_FALSE (server_index != app_index))
Florin Coras15531972018-08-12 23:50:53 -07001505 {
1506 clib_warning ("app %u does not own local handle 0x%lx", app_index, lh);
Florin Corasab2f6db2018-08-31 14:31:41 -07001507 return -1;
Florin Coras15531972018-08-12 23:50:53 -07001508 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001509
1510 ll = application_get_local_listen_session (server, ll_index);
Florin Coras15531972018-08-12 23:50:53 -07001511 if (PREDICT_FALSE (!ll))
Florin Corasf8f516a2018-02-08 15:10:09 -08001512 {
1513 clib_warning ("no local listener");
1514 return -1;
1515 }
Florin Corasf8f516a2018-02-08 15:10:09 -08001516
Florin Corasab2f6db2018-08-31 14:31:41 -07001517 app_listener = app_local_listener_get (server, ll->listener_db_index);
1518 if (!clib_bitmap_get (app_listener->workers, wrk_map_index))
1519 {
1520 clib_warning ("app wrk %u not listening on handle %lu", wrk_map_index,
1521 lh);
1522 return -1;
1523 }
1524
1525 server_wrk = application_get_worker (server, wrk_map_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001526 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001527 pool_foreach (ls, server_wrk->local_sessions, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08001528 if (ls->listener_index == ll->session_index)
Florin Coras15531972018-08-12 23:50:53 -07001529 application_local_session_disconnect (server_wrk->app_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001530 }));
1531 /* *INDENT-ON* */
Florin Corasab2f6db2018-08-31 14:31:41 -07001532
1533 clib_bitmap_set_no_check (app_listener->workers, wrk_map_index, 0);
1534 if (clib_bitmap_is_zero (app_listener->workers))
1535 {
1536 app_local_listener_free (server, app_listener);
1537 application_local_listener_session_endpoint (ll, &sep);
1538 session_lookup_del_session_endpoint (table_index, &sep);
1539 application_local_listen_session_free (server, ll);
1540 }
Florin Corasf8f516a2018-02-08 15:10:09 -08001541
1542 return 0;
1543}
1544
Florin Coras99368312018-08-02 10:45:44 -07001545static void
1546application_local_session_fix_eventds (svm_msg_q_t * sq, svm_msg_q_t * cq)
1547{
1548 int fd;
1549
1550 /*
1551 * segment manager initializes only the producer eventds, since vpp is
1552 * typically the producer. But for local sessions, we also pass to the
1553 * apps the mqs they listen on for events from peer apps, so they are also
1554 * consumer fds.
1555 */
1556 fd = svm_msg_q_get_producer_eventfd (sq);
1557 svm_msg_q_set_consumer_eventfd (sq, fd);
1558 fd = svm_msg_q_get_producer_eventfd (cq);
1559 svm_msg_q_set_consumer_eventfd (cq, fd);
1560}
1561
Florin Corasf8f516a2018-02-08 15:10:09 -08001562int
Florin Coras15531972018-08-12 23:50:53 -07001563application_local_session_connect (app_worker_t * client_wrk,
1564 app_worker_t * server_wrk,
Florin Corasf8f516a2018-02-08 15:10:09 -08001565 local_session_t * ll, u32 opaque)
1566{
1567 u32 seg_size, evt_q_sz, evt_q_elts, margin = 16 << 10;
1568 segment_manager_properties_t *props, *cprops;
Florin Coras54693d22018-07-17 10:46:29 -07001569 u32 round_rx_fifo_sz, round_tx_fifo_sz;
Florin Corasf8f516a2018-02-08 15:10:09 -08001570 int rv, has_transport, seg_index;
1571 svm_fifo_segment_private_t *seg;
Florin Coras15531972018-08-12 23:50:53 -07001572 application_t *server, *client;
Florin Corasf8f516a2018-02-08 15:10:09 -08001573 segment_manager_t *sm;
1574 local_session_t *ls;
Florin Coras3c2fed52018-07-04 04:15:05 -07001575 svm_msg_q_t *sq, *cq;
Florin Corasf8f516a2018-02-08 15:10:09 -08001576
Florin Corasab2f6db2018-08-31 14:31:41 -07001577 ls = application_local_session_alloc (server_wrk);
Florin Coras15531972018-08-12 23:50:53 -07001578 server = application_get (server_wrk->app_index);
1579 client = application_get (client_wrk->app_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001580
1581 props = application_segment_manager_properties (server);
1582 cprops = application_segment_manager_properties (client);
1583 evt_q_elts = props->evt_q_size + cprops->evt_q_size;
Florin Coras3c2fed52018-07-04 04:15:05 -07001584 evt_q_sz = segment_manager_evt_q_expected_size (evt_q_elts);
Florin Coras54693d22018-07-17 10:46:29 -07001585 round_rx_fifo_sz = 1 << max_log2 (props->rx_fifo_size);
1586 round_tx_fifo_sz = 1 << max_log2 (props->tx_fifo_size);
1587 seg_size = round_rx_fifo_sz + round_tx_fifo_sz + evt_q_sz + margin;
Florin Corasf8f516a2018-02-08 15:10:09 -08001588
1589 has_transport = session_has_transport ((stream_session_t *) ll);
1590 if (!has_transport)
1591 {
1592 /* Local sessions don't have backing transport */
1593 ls->port = ll->port;
Florin Coras15531972018-08-12 23:50:53 -07001594 sm = application_get_local_segment_manager (server_wrk);
Florin Corasf8f516a2018-02-08 15:10:09 -08001595 }
1596 else
1597 {
1598 stream_session_t *sl = (stream_session_t *) ll;
1599 transport_connection_t *tc;
1600 tc = listen_session_get_transport (sl);
1601 ls->port = tc->lcl_port;
Florin Coras15531972018-08-12 23:50:53 -07001602 sm = app_worker_get_listen_segment_manager (server_wrk, sl);
Florin Corasf8f516a2018-02-08 15:10:09 -08001603 }
1604
1605 seg_index = segment_manager_add_segment (sm, seg_size);
1606 if (seg_index < 0)
1607 {
1608 clib_warning ("failed to add new cut-through segment");
1609 return seg_index;
1610 }
1611 seg = segment_manager_get_segment_w_lock (sm, seg_index);
Florin Coras99368312018-08-02 10:45:44 -07001612 sq = segment_manager_alloc_queue (seg, props);
1613 cq = segment_manager_alloc_queue (seg, cprops);
1614
1615 if (props->use_mq_eventfd)
1616 application_local_session_fix_eventds (sq, cq);
1617
Florin Corasf8f516a2018-02-08 15:10:09 -08001618 ls->server_evt_q = pointer_to_uword (sq);
1619 ls->client_evt_q = pointer_to_uword (cq);
1620 rv = segment_manager_try_alloc_fifos (seg, props->rx_fifo_size,
1621 props->tx_fifo_size,
1622 &ls->server_rx_fifo,
1623 &ls->server_tx_fifo);
1624 if (rv)
1625 {
1626 clib_warning ("failed to add fifos in cut-through segment");
1627 segment_manager_segment_reader_unlock (sm);
1628 goto failed;
1629 }
1630 ls->server_rx_fifo->master_session_index = ls->session_index;
1631 ls->server_tx_fifo->master_session_index = ls->session_index;
1632 ls->server_rx_fifo->master_thread_index = ~0;
1633 ls->server_tx_fifo->master_thread_index = ~0;
1634 ls->svm_segment_index = seg_index;
1635 ls->listener_index = ll->session_index;
Florin Coras15531972018-08-12 23:50:53 -07001636 ls->client_wrk_index = client_wrk->wrk_index;
Florin Corasf8f516a2018-02-08 15:10:09 -08001637 ls->client_opaque = opaque;
1638 ls->listener_session_type = ll->session_type;
Florin Corasab2f6db2018-08-31 14:31:41 -07001639 ls->session_state = SESSION_STATE_READY;
Florin Corasf8f516a2018-02-08 15:10:09 -08001640
1641 if ((rv = server->cb_fns.add_segment_callback (server->api_client_index,
1642 &seg->ssvm)))
1643 {
1644 clib_warning ("failed to notify server of new segment");
1645 segment_manager_segment_reader_unlock (sm);
1646 goto failed;
1647 }
1648 segment_manager_segment_reader_unlock (sm);
1649 if ((rv = server->cb_fns.session_accept_callback ((stream_session_t *) ls)))
1650 {
1651 clib_warning ("failed to send accept cut-through notify to server");
1652 goto failed;
1653 }
1654 if (server->flags & APP_OPTIONS_FLAGS_IS_BUILTIN)
1655 application_local_session_connect_notify (ls);
1656
1657 return 0;
1658
1659failed:
1660 if (!has_transport)
1661 segment_manager_del_segment (sm, seg);
1662 return rv;
1663}
1664
1665static uword
1666application_client_local_connect_key (local_session_t * ls)
1667{
Florin Coras15531972018-08-12 23:50:53 -07001668 return ((uword) ls->app_wrk_index << 32 | (uword) ls->session_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001669}
1670
1671static void
Florin Coras15531972018-08-12 23:50:53 -07001672application_client_local_connect_key_parse (uword key, u32 * app_wrk_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08001673 u32 * session_index)
1674{
Florin Coras15531972018-08-12 23:50:53 -07001675 *app_wrk_index = key >> 32;
Florin Corasf8f516a2018-02-08 15:10:09 -08001676 *session_index = key & 0xFFFFFFFF;
1677}
1678
1679int
1680application_local_session_connect_notify (local_session_t * ls)
1681{
1682 svm_fifo_segment_private_t *seg;
Florin Coras15531972018-08-12 23:50:53 -07001683 app_worker_t *client_wrk, *server_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08001684 segment_manager_t *sm;
Florin Coras15531972018-08-12 23:50:53 -07001685 application_t *client;
Florin Corasf8f516a2018-02-08 15:10:09 -08001686 int rv, is_fail = 0;
1687 uword client_key;
1688
Florin Coras15531972018-08-12 23:50:53 -07001689 client_wrk = app_worker_get (ls->client_wrk_index);
1690 server_wrk = app_worker_get (ls->app_wrk_index);
1691 client = application_get (client_wrk->app_index);
1692
1693 sm = application_get_local_segment_manager_w_session (server_wrk, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001694 seg = segment_manager_get_segment_w_lock (sm, ls->svm_segment_index);
1695 if ((rv = client->cb_fns.add_segment_callback (client->api_client_index,
1696 &seg->ssvm)))
1697 {
1698 clib_warning ("failed to notify client %u of new segment",
Florin Coras15531972018-08-12 23:50:53 -07001699 ls->client_wrk_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001700 segment_manager_segment_reader_unlock (sm);
Florin Coras15531972018-08-12 23:50:53 -07001701 application_local_session_disconnect (ls->client_wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001702 is_fail = 1;
1703 }
1704 else
1705 {
1706 segment_manager_segment_reader_unlock (sm);
1707 }
1708
Florin Coras15531972018-08-12 23:50:53 -07001709 client->cb_fns.session_connected_callback (client_wrk->wrk_index,
1710 ls->client_opaque,
Florin Corasf8f516a2018-02-08 15:10:09 -08001711 (stream_session_t *) ls,
1712 is_fail);
1713
1714 client_key = application_client_local_connect_key (ls);
Florin Coras15531972018-08-12 23:50:53 -07001715 hash_set (client_wrk->local_connects, client_key, client_key);
Florin Corasf8f516a2018-02-08 15:10:09 -08001716 return 0;
1717}
1718
1719int
Florin Coras15531972018-08-12 23:50:53 -07001720application_local_session_cleanup (app_worker_t * client_wrk,
1721 app_worker_t * server_wrk,
Florin Corasf6647e02018-03-23 22:56:43 -07001722 local_session_t * ls)
Florin Corasf8f516a2018-02-08 15:10:09 -08001723{
1724 svm_fifo_segment_private_t *seg;
Florin Corasf8f516a2018-02-08 15:10:09 -08001725 segment_manager_t *sm;
1726 uword client_key;
Florin Corasf6647e02018-03-23 22:56:43 -07001727 u8 has_transport;
1728
1729 has_transport = session_has_transport ((stream_session_t *) ls);
1730 client_key = application_client_local_connect_key (ls);
1731 if (!has_transport)
Florin Coras15531972018-08-12 23:50:53 -07001732 sm = application_get_local_segment_manager_w_session (server_wrk, ls);
Florin Corasf6647e02018-03-23 22:56:43 -07001733 else
Florin Coras15531972018-08-12 23:50:53 -07001734 sm = app_worker_get_listen_segment_manager (server_wrk,
1735 (stream_session_t *) ls);
Florin Corasf6647e02018-03-23 22:56:43 -07001736
1737 seg = segment_manager_get_segment (sm, ls->svm_segment_index);
Florin Coras15531972018-08-12 23:50:53 -07001738 if (client_wrk)
1739 hash_unset (client_wrk->local_connects, client_key);
Florin Corasf6647e02018-03-23 22:56:43 -07001740
1741 if (!has_transport)
1742 {
Florin Coras15531972018-08-12 23:50:53 -07001743 application_t *server = application_get (server_wrk->app_index);
Florin Corasf6647e02018-03-23 22:56:43 -07001744 server->cb_fns.del_segment_callback (server->api_client_index,
1745 &seg->ssvm);
Florin Coras15531972018-08-12 23:50:53 -07001746 if (client_wrk)
1747 {
1748 application_t *client = application_get (client_wrk->app_index);
1749 client->cb_fns.del_segment_callback (client->api_client_index,
1750 &seg->ssvm);
1751 }
Florin Corasf6647e02018-03-23 22:56:43 -07001752 segment_manager_del_segment (sm, seg);
1753 }
1754
Florin Corasab2f6db2018-08-31 14:31:41 -07001755 application_local_session_free (server_wrk, ls);
Florin Corasf6647e02018-03-23 22:56:43 -07001756
1757 return 0;
1758}
1759
1760int
Florin Corasab2f6db2018-08-31 14:31:41 -07001761application_local_session_disconnect (u32 app_index, local_session_t * ls)
Florin Corasf6647e02018-03-23 22:56:43 -07001762{
Florin Coras15531972018-08-12 23:50:53 -07001763 app_worker_t *client_wrk, *server_wrk;
Florin Corasab2f6db2018-08-31 14:31:41 -07001764 u8 is_server = 0, is_client = 0;
1765 application_t *app;
1766
1767 app = application_get_if_valid (app_index);
1768 if (!app)
1769 return 0;
Florin Corasf8f516a2018-02-08 15:10:09 -08001770
Florin Coras15531972018-08-12 23:50:53 -07001771 client_wrk = app_worker_get_if_valid (ls->client_wrk_index);
1772 server_wrk = app_worker_get (ls->app_wrk_index);
1773
Florin Corasab2f6db2018-08-31 14:31:41 -07001774 if (server_wrk->app_index == app_index)
1775 is_server = 1;
1776 else if (client_wrk && client_wrk->app_index == app_index)
1777 is_client = 1;
1778
1779 if (!is_server && !is_client)
1780 {
1781 clib_warning ("app %u is neither client nor server for session 0x%lx",
1782 app_index, application_local_session_handle (ls));
1783 return VNET_API_ERROR_INVALID_VALUE;
1784 }
Florin Corasf8f516a2018-02-08 15:10:09 -08001785
1786 if (ls->session_state == SESSION_STATE_CLOSED)
Florin Coras15531972018-08-12 23:50:53 -07001787 return application_local_session_cleanup (client_wrk, server_wrk, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001788
Florin Corasab2f6db2018-08-31 14:31:41 -07001789 if (app_index == ls->client_wrk_index)
Florin Corasf8f516a2018-02-08 15:10:09 -08001790 {
Florin Coras15531972018-08-12 23:50:53 -07001791 mq_send_local_session_disconnected_cb (ls->app_wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001792 }
1793 else
1794 {
Florin Coras15531972018-08-12 23:50:53 -07001795 if (!client_wrk)
Florin Corasf8f516a2018-02-08 15:10:09 -08001796 {
Florin Coras15531972018-08-12 23:50:53 -07001797 return application_local_session_cleanup (client_wrk, server_wrk,
1798 ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001799 }
1800 else if (ls->session_state < SESSION_STATE_READY)
1801 {
Florin Coras15531972018-08-12 23:50:53 -07001802 application_t *client = application_get (client_wrk->app_index);
1803 client->cb_fns.session_connected_callback (client_wrk->wrk_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08001804 ls->client_opaque,
1805 (stream_session_t *) ls,
1806 1 /* is_fail */ );
1807 ls->session_state = SESSION_STATE_CLOSED;
Florin Coras15531972018-08-12 23:50:53 -07001808 return application_local_session_cleanup (client_wrk, server_wrk,
1809 ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001810 }
1811 else
1812 {
Florin Coras15531972018-08-12 23:50:53 -07001813 mq_send_local_session_disconnected_cb (client_wrk->wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001814 }
1815 }
1816
1817 ls->session_state = SESSION_STATE_CLOSED;
1818
1819 return 0;
1820}
1821
Florin Corasf6647e02018-03-23 22:56:43 -07001822int
Florin Coras15531972018-08-12 23:50:53 -07001823application_local_session_disconnect_w_index (u32 app_wrk_index, u32 ls_index)
Florin Corasf6647e02018-03-23 22:56:43 -07001824{
Florin Coras15531972018-08-12 23:50:53 -07001825 app_worker_t *app_wrk;
Florin Corasf6647e02018-03-23 22:56:43 -07001826 local_session_t *ls;
Florin Coras15531972018-08-12 23:50:53 -07001827 app_wrk = app_worker_get (app_wrk_index);
1828 ls = application_get_local_session (app_wrk, ls_index);
1829 return application_local_session_disconnect (app_wrk_index, ls);
Florin Corasf6647e02018-03-23 22:56:43 -07001830}
1831
Florin Corasf8f516a2018-02-08 15:10:09 -08001832void
Florin Corasab2f6db2018-08-31 14:31:41 -07001833app_worker_local_sessions_free (app_worker_t * app_wrk)
Florin Corasf8f516a2018-02-08 15:10:09 -08001834{
Florin Corasab2f6db2018-08-31 14:31:41 -07001835 u32 index, server_wrk_index, session_index;
Florin Corasf8f516a2018-02-08 15:10:09 -08001836 u64 handle, *handles = 0;
Florin Coras15531972018-08-12 23:50:53 -07001837 app_worker_t *server_wrk;
Florin Corasab2f6db2018-08-31 14:31:41 -07001838 segment_manager_t *sm;
1839 local_session_t *ls;
Florin Corasf8f516a2018-02-08 15:10:09 -08001840 int i;
1841
1842 /*
Florin Corasf8f516a2018-02-08 15:10:09 -08001843 * Local sessions
1844 */
Florin Coras15531972018-08-12 23:50:53 -07001845 if (app_wrk->local_sessions)
Florin Corasf8f516a2018-02-08 15:10:09 -08001846 {
1847 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001848 pool_foreach (ls, app_wrk->local_sessions, ({
1849 application_local_session_disconnect (app_wrk->wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001850 }));
1851 /* *INDENT-ON* */
1852 }
1853
1854 /*
1855 * Local connects
1856 */
1857 vec_reset_length (handles);
1858 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001859 hash_foreach (handle, index, app_wrk->local_connects, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08001860 vec_add1 (handles, handle);
1861 }));
1862 /* *INDENT-ON* */
1863
1864 for (i = 0; i < vec_len (handles); i++)
1865 {
Florin Coras15531972018-08-12 23:50:53 -07001866 application_client_local_connect_key_parse (handles[i],
1867 &server_wrk_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08001868 &session_index);
Florin Coras15531972018-08-12 23:50:53 -07001869 server_wrk = app_worker_get_if_valid (server_wrk_index);
1870 if (server_wrk)
Florin Corasf8f516a2018-02-08 15:10:09 -08001871 {
Florin Coras15531972018-08-12 23:50:53 -07001872 ls = application_get_local_session (server_wrk, session_index);
1873 application_local_session_disconnect (app_wrk->wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001874 }
1875 }
1876
Florin Coras15531972018-08-12 23:50:53 -07001877 sm = segment_manager_get (app_wrk->local_segment_manager);
1878 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
Florin Corasf8f516a2018-02-08 15:10:09 -08001879 segment_manager_del (sm);
1880}
1881
Florin Coras371ca502018-02-21 12:07:41 -08001882clib_error_t *
1883vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a)
1884{
1885 application_t *app;
1886 app = application_get (a->app_index);
1887 if (!app)
1888 return clib_error_return_code (0, VNET_API_ERROR_APPLICATION_NOT_ATTACHED,
1889 0, "app %u doesn't exist", a->app_index);
1890 app->tls_cert = vec_dup (a->cert);
1891 return 0;
1892}
1893
1894clib_error_t *
1895vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a)
1896{
1897 application_t *app;
1898 app = application_get (a->app_index);
1899 if (!app)
1900 return clib_error_return_code (0, VNET_API_ERROR_APPLICATION_NOT_ATTACHED,
1901 0, "app %u doesn't exist", a->app_index);
1902 app->tls_key = vec_dup (a->key);
1903 return 0;
1904}
1905
Dave Barach68b0fb02017-02-28 15:15:56 -05001906u8 *
Florin Coras15531972018-08-12 23:50:53 -07001907format_app_worker_listener (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -05001908{
Florin Coras15531972018-08-12 23:50:53 -07001909 app_worker_t *app_wrk = va_arg (*args, app_worker_t *);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001910 u64 handle = va_arg (*args, u64);
Florin Corasf8f516a2018-02-08 15:10:09 -08001911 u32 sm_index = va_arg (*args, u32);
Dave Barach68b0fb02017-02-28 15:15:56 -05001912 int verbose = va_arg (*args, int);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001913 stream_session_t *listener;
Florin Coras15531972018-08-12 23:50:53 -07001914 application_t *app;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001915 u8 *app_name, *str;
Dave Barach68b0fb02017-02-28 15:15:56 -05001916
Florin Coras15531972018-08-12 23:50:53 -07001917 if (!app_wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -05001918 {
1919 if (verbose)
Florin Corasab2f6db2018-08-31 14:31:41 -07001920 s = format (s, "%-40s%-25s%=10s%-15s%-15s%-10s", "Connection", "App",
1921 "Wrk", "API Client", "ListenerID", "SegManager");
Dave Barach68b0fb02017-02-28 15:15:56 -05001922 else
Florin Corasab2f6db2018-08-31 14:31:41 -07001923 s = format (s, "%-40s%-25s%=10s", "Connection", "App", "Wrk");
Dave Barach68b0fb02017-02-28 15:15:56 -05001924
1925 return s;
1926 }
1927
Florin Coras15531972018-08-12 23:50:53 -07001928 app = application_get (app_wrk->app_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001929 app_name = app_get_name_from_reg_index (app);
1930 listener = listen_session_get_from_handle (handle);
1931 str = format (0, "%U", format_stream_session, listener, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -05001932
Dave Barach68b0fb02017-02-28 15:15:56 -05001933 if (verbose)
1934 {
Florin Coras74cac882018-09-07 09:13:15 -07001935 char buf[32];
1936 sprintf (buf, "%u(%u)", app_wrk->wrk_map_index, app_wrk->wrk_index);
1937 s = format (s, "%-40s%-25s%=10s%-15u%-15u%-10u", str, app_name,
1938 buf, app->api_client_index, handle, sm_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001939 }
1940 else
Florin Corasab2f6db2018-08-31 14:31:41 -07001941 s = format (s, "%-40s%-25s%=10u", str, app_name, app_wrk->wrk_map_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001942
1943 vec_free (app_name);
1944 return s;
1945}
1946
Florin Coras15531972018-08-12 23:50:53 -07001947static void
1948application_format_listeners (application_t * app, int verbose)
1949{
1950 vlib_main_t *vm = vlib_get_main ();
1951 app_worker_map_t *wrk_map;
1952 app_worker_t *app_wrk;
1953 u32 sm_index;
1954 u64 handle;
1955
1956 if (!app)
1957 {
1958 vlib_cli_output (vm, "%U", format_app_worker_listener, 0 /* header */ ,
1959 0, 0, verbose);
1960 return;
1961 }
1962
1963 /* *INDENT-OFF* */
1964 pool_foreach (wrk_map, app->worker_maps, ({
1965 app_wrk = app_worker_get (wrk_map->wrk_index);
1966 if (hash_elts (app_wrk->listeners_table) == 0)
1967 continue;
1968 hash_foreach (handle, sm_index, app_wrk->listeners_table, ({
1969 vlib_cli_output (vm, "%U", format_app_worker_listener, app_wrk,
1970 handle, sm_index, verbose);
1971 }));
1972 }));
1973 /* *INDENT-ON* */
1974}
1975
1976static void
1977app_worker_format_connects (app_worker_t * app_wrk, int verbose)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001978{
Florin Corasa332c462018-01-31 06:52:17 -08001979 svm_fifo_segment_private_t *fifo_segment;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001980 vlib_main_t *vm = vlib_get_main ();
1981 segment_manager_t *sm;
1982 u8 *app_name, *s = 0;
Florin Coras15531972018-08-12 23:50:53 -07001983 application_t *app;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001984
1985 /* Header */
Florin Coras15531972018-08-12 23:50:53 -07001986 if (!app_wrk)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001987 {
1988 if (verbose)
1989 vlib_cli_output (vm, "%-40s%-20s%-15s%-10s", "Connection", "App",
1990 "API Client", "SegManager");
1991 else
1992 vlib_cli_output (vm, "%-40s%-20s", "Connection", "App");
1993 return;
1994 }
1995
Florin Coras15531972018-08-12 23:50:53 -07001996 app = application_get (app_wrk->app_index);
1997 if (app_wrk->connects_seg_manager == (u32) ~ 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001998 return;
1999
2000 app_name = app_get_name_from_reg_index (app);
2001
2002 /* Across all fifo segments */
Florin Coras15531972018-08-12 23:50:53 -07002003 sm = segment_manager_get (app_wrk->connects_seg_manager);
Florin Coras6cf30ad2017-04-04 23:08:23 -07002004
Florin Corasa332c462018-01-31 06:52:17 -08002005 /* *INDENT-OFF* */
2006 segment_manager_foreach_segment_w_lock (fifo_segment, sm, ({
2007 svm_fifo_t *fifo;
2008 u8 *str;
2009
2010 fifo = svm_fifo_segment_get_fifo_list (fifo_segment);
2011 while (fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -07002012 {
Florin Coras6cf30ad2017-04-04 23:08:23 -07002013 u32 session_index, thread_index;
2014 stream_session_t *session;
2015
Florin Corasa5464812017-04-19 13:00:05 -07002016 session_index = fifo->master_session_index;
2017 thread_index = fifo->master_thread_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07002018
Florin Corascea194d2017-10-02 00:18:51 -07002019 session = session_get (session_index, thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -07002020 str = format (0, "%U", format_stream_session, session, verbose);
2021
2022 if (verbose)
2023 s = format (s, "%-40s%-20s%-15u%-10u", str, app_name,
Florin Coras15531972018-08-12 23:50:53 -07002024 app->api_client_index, app_wrk->connects_seg_manager);
Florin Coras6cf30ad2017-04-04 23:08:23 -07002025 else
2026 s = format (s, "%-40s%-20s", str, app_name);
2027
2028 vlib_cli_output (vm, "%v", s);
Florin Coras6cf30ad2017-04-04 23:08:23 -07002029 vec_reset_length (s);
2030 vec_free (str);
Dave Barach10d8cc62017-05-30 09:30:07 -04002031
2032 fifo = fifo->next;
Florin Coras6cf30ad2017-04-04 23:08:23 -07002033 }
Florin Corasa332c462018-01-31 06:52:17 -08002034 vec_free (s);
2035 }));
2036 /* *INDENT-ON* */
Florin Coras6cf30ad2017-04-04 23:08:23 -07002037
2038 vec_free (app_name);
2039}
2040
Florin Coras15531972018-08-12 23:50:53 -07002041static void
2042application_format_connects (application_t * app, int verbose)
2043{
2044 app_worker_map_t *wrk_map;
2045 app_worker_t *app_wrk;
2046
2047 if (!app)
2048 {
2049 app_worker_format_connects (0, verbose);
2050 return;
2051 }
2052
2053 /* *INDENT-OFF* */
2054 pool_foreach (wrk_map, app->worker_maps, ({
2055 app_wrk = app_worker_get (wrk_map->wrk_index);
2056 app_worker_format_connects (app_wrk, verbose);
2057 }));
2058 /* *INDENT-ON* */
2059}
2060
2061static void
2062app_worker_format_local_sessions (app_worker_t * app_wrk, int verbose)
Florin Corasf8f516a2018-02-08 15:10:09 -08002063{
2064 vlib_main_t *vm = vlib_get_main ();
2065 local_session_t *ls;
2066 transport_proto_t tp;
2067 u8 *conn = 0;
2068
2069 /* Header */
Florin Coras15531972018-08-12 23:50:53 -07002070 if (app_wrk == 0)
Florin Corasf8f516a2018-02-08 15:10:09 -08002071 {
2072 vlib_cli_output (vm, "%-40s%-15s%-20s", "Connection", "ServerApp",
2073 "ClientApp");
2074 return;
2075 }
2076
Florin Coras15531972018-08-12 23:50:53 -07002077 if (!pool_elts (app_wrk->local_sessions)
2078 && !pool_elts (app_wrk->local_connects))
2079 return;
2080
Florin Corasf8f516a2018-02-08 15:10:09 -08002081 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002082 pool_foreach (ls, app_wrk->local_sessions, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08002083 tp = session_type_transport_proto(ls->listener_session_type);
2084 conn = format (0, "[L][%U] *:%u", format_transport_proto_short, tp,
2085 ls->port);
Florin Coras15531972018-08-12 23:50:53 -07002086 vlib_cli_output (vm, "%-40v%-15u%-20u", conn, ls->app_wrk_index,
2087 ls->client_wrk_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08002088 vec_reset_length (conn);
2089 }));
2090 /* *INDENT-ON* */
2091
2092 vec_free (conn);
2093}
2094
Florin Coras15531972018-08-12 23:50:53 -07002095static void
2096application_format_local_sessions (application_t * app, int verbose)
2097{
Florin Corasab2f6db2018-08-31 14:31:41 -07002098 vlib_main_t *vm = vlib_get_main ();
Florin Coras15531972018-08-12 23:50:53 -07002099 app_worker_map_t *wrk_map;
2100 app_worker_t *app_wrk;
Florin Corasab2f6db2018-08-31 14:31:41 -07002101 transport_proto_t tp;
2102 local_session_t *ls;
2103 u8 *conn = 0;
Florin Coras15531972018-08-12 23:50:53 -07002104
2105 if (!app)
2106 {
2107 app_worker_format_local_sessions (0, verbose);
2108 return;
2109 }
2110
Florin Corasab2f6db2018-08-31 14:31:41 -07002111 /*
2112 * Format local listeners
2113 */
2114
2115 /* *INDENT-OFF* */
2116 pool_foreach (ls, app->local_listen_sessions, ({
2117 tp = session_type_transport_proto (ls->listener_session_type);
2118 conn = format (0, "[L][%U] *:%u", format_transport_proto_short, tp,
2119 ls->port);
2120 vlib_cli_output (vm, "%-40v%-15u%-20s", conn, ls->app_wrk_index, "*");
2121 vec_reset_length (conn);
2122 }));
2123 /* *INDENT-ON* */
2124
2125 /*
2126 * Format local accepted/connected sessions
2127 */
Florin Coras15531972018-08-12 23:50:53 -07002128 /* *INDENT-OFF* */
2129 pool_foreach (wrk_map, app->worker_maps, ({
2130 app_wrk = app_worker_get (wrk_map->wrk_index);
2131 app_worker_format_local_sessions (app_wrk, verbose);
2132 }));
2133 /* *INDENT-ON* */
2134}
2135
2136static void
2137app_worker_format_local_connects (app_worker_t * app, int verbose)
Florin Corasf8f516a2018-02-08 15:10:09 -08002138{
2139 vlib_main_t *vm = vlib_get_main ();
Florin Coras15531972018-08-12 23:50:53 -07002140 u32 app_wrk_index, session_index;
2141 app_worker_t *server_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08002142 local_session_t *ls;
2143 uword client_key;
2144 u64 value;
2145
2146 /* Header */
2147 if (app == 0)
2148 {
2149 if (verbose)
2150 vlib_cli_output (vm, "%-40s%-15s%-20s%-10s", "Connection", "App",
2151 "Peer App", "SegManager");
2152 else
2153 vlib_cli_output (vm, "%-40s%-15s%-20s", "Connection", "App",
2154 "Peer App");
2155 return;
2156 }
2157
Florin Coras15531972018-08-12 23:50:53 -07002158 if (!app->local_connects)
2159 return;
2160
Florin Corasf8f516a2018-02-08 15:10:09 -08002161 /* *INDENT-OFF* */
2162 hash_foreach (client_key, value, app->local_connects, ({
Florin Coras15531972018-08-12 23:50:53 -07002163 application_client_local_connect_key_parse (client_key, &app_wrk_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08002164 &session_index);
Florin Coras15531972018-08-12 23:50:53 -07002165 server_wrk = app_worker_get (app_wrk_index);
2166 ls = application_get_local_session (server_wrk, session_index);
2167 vlib_cli_output (vm, "%-40s%-15s%-20s", "TODO", ls->app_wrk_index,
2168 ls->client_wrk_index);
2169 }));
2170 /* *INDENT-ON* */
2171}
2172
2173static void
2174application_format_local_connects (application_t * app, int verbose)
2175{
2176 app_worker_map_t *wrk_map;
2177 app_worker_t *app_wrk;
2178
2179 if (!app)
2180 {
2181 app_worker_format_local_connects (0, verbose);
2182 return;
2183 }
2184
2185 /* *INDENT-OFF* */
2186 pool_foreach (wrk_map, app->worker_maps, ({
2187 app_wrk = app_worker_get (wrk_map->wrk_index);
2188 app_worker_format_local_connects (app_wrk, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08002189 }));
2190 /* *INDENT-ON* */
2191}
2192
Florin Coras6cf30ad2017-04-04 23:08:23 -07002193u8 *
2194format_application (u8 * s, va_list * args)
2195{
2196 application_t *app = va_arg (*args, application_t *);
2197 CLIB_UNUSED (int verbose) = va_arg (*args, int);
Florin Corasad0c77f2017-11-09 18:00:15 -08002198 segment_manager_properties_t *props;
Florin Corascea194d2017-10-02 00:18:51 -07002199 const u8 *app_ns_name;
Florin Coras6cf30ad2017-04-04 23:08:23 -07002200 u8 *app_name;
2201
2202 if (app == 0)
2203 {
2204 if (verbose)
Florin Corascea194d2017-10-02 00:18:51 -07002205 s = format (s, "%-10s%-20s%-15s%-15s%-15s%-15s%-15s", "Index", "Name",
Florin Coras078371e2018-05-11 09:20:12 -07002206 "API Client", "Namespace", "Add seg size", "Rx-f size",
2207 "Tx-f size");
Florin Coras6cf30ad2017-04-04 23:08:23 -07002208 else
Florin Coras0bee9ce2018-03-22 21:24:31 -07002209 s = format (s, "%-10s%-20s%-15s%-40s", "Index", "Name", "API Client",
2210 "Namespace");
Florin Coras6cf30ad2017-04-04 23:08:23 -07002211 return s;
2212 }
2213
Florin Coras0bee9ce2018-03-22 21:24:31 -07002214 app_name = app_get_name (app);
Florin Corascea194d2017-10-02 00:18:51 -07002215 app_ns_name = app_namespace_id_from_index (app->ns_index);
Florin Corasa332c462018-01-31 06:52:17 -08002216 props = application_segment_manager_properties (app);
Florin Coras6cf30ad2017-04-04 23:08:23 -07002217 if (verbose)
Florin Coras15531972018-08-12 23:50:53 -07002218 s = format (s, "%-10u%-20s%-15d%-15u%-15U%-15U%-15U", app->app_index,
Florin Coras0bee9ce2018-03-22 21:24:31 -07002219 app_name, app->api_client_index, app->ns_index,
Florin Coras078371e2018-05-11 09:20:12 -07002220 format_memory_size, props->add_segment_size,
2221 format_memory_size, props->rx_fifo_size, format_memory_size,
Florin Coras0bee9ce2018-03-22 21:24:31 -07002222 props->tx_fifo_size);
Florin Coras6cf30ad2017-04-04 23:08:23 -07002223 else
Florin Coras15531972018-08-12 23:50:53 -07002224 s = format (s, "%-10u%-20s%-15d%-40s", app->app_index, app_name,
Florin Coras8f107b32017-11-21 22:13:03 -08002225 app->api_client_index, app_ns_name);
Dave Barach68b0fb02017-02-28 15:15:56 -05002226 return s;
2227}
2228
Florin Corasf8f516a2018-02-08 15:10:09 -08002229void
2230application_format_all_listeners (vlib_main_t * vm, int do_local, int verbose)
2231{
2232 application_t *app;
Florin Corasf8f516a2018-02-08 15:10:09 -08002233
Florin Coras15531972018-08-12 23:50:53 -07002234 if (!pool_elts (app_main.app_pool))
Florin Corasf8f516a2018-02-08 15:10:09 -08002235 {
2236 vlib_cli_output (vm, "No active server bindings");
2237 return;
2238 }
2239
2240 if (do_local)
2241 {
2242 application_format_local_sessions (0, verbose);
2243 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002244 pool_foreach (app, app_main.app_pool, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08002245 application_format_local_sessions (app, verbose);
2246 }));
2247 /* *INDENT-ON* */
2248 }
2249 else
2250 {
Florin Coras15531972018-08-12 23:50:53 -07002251 application_format_listeners (0, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08002252
2253 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002254 pool_foreach (app, app_main.app_pool, ({
2255 application_format_listeners (app, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08002256 }));
2257 /* *INDENT-ON* */
2258 }
2259}
2260
2261void
2262application_format_all_clients (vlib_main_t * vm, int do_local, int verbose)
2263{
2264 application_t *app;
2265
Florin Coras15531972018-08-12 23:50:53 -07002266 if (!pool_elts (app_main.app_pool))
Florin Corasf8f516a2018-02-08 15:10:09 -08002267 {
2268 vlib_cli_output (vm, "No active apps");
2269 return;
2270 }
2271
2272 if (do_local)
2273 {
2274 application_format_local_connects (0, verbose);
2275
2276 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002277 pool_foreach (app, app_main.app_pool, ({
2278 application_format_local_connects (app, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08002279 }));
2280 /* *INDENT-ON* */
2281 }
2282 else
2283 {
2284 application_format_connects (0, verbose);
2285
2286 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002287 pool_foreach (app, app_main.app_pool, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08002288 application_format_connects (app, verbose);
2289 }));
2290 /* *INDENT-ON* */
2291 }
2292}
2293
Dave Barach68b0fb02017-02-28 15:15:56 -05002294static clib_error_t *
2295show_app_command_fn (vlib_main_t * vm, unformat_input_t * input,
2296 vlib_cli_command_t * cmd)
2297{
Florin Corasf8f516a2018-02-08 15:10:09 -08002298 int do_server = 0, do_client = 0, do_local = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002299 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -05002300 int verbose = 0;
2301
Florin Corascea194d2017-10-02 00:18:51 -07002302 session_cli_return_if_not_enabled ();
Florin Corase04c2992017-03-01 08:17:34 -08002303
Dave Barach68b0fb02017-02-28 15:15:56 -05002304 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2305 {
2306 if (unformat (input, "server"))
2307 do_server = 1;
2308 else if (unformat (input, "client"))
2309 do_client = 1;
Florin Corasf8f516a2018-02-08 15:10:09 -08002310 else if (unformat (input, "local"))
2311 do_local = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002312 else if (unformat (input, "verbose"))
2313 verbose = 1;
2314 else
2315 break;
2316 }
2317
2318 if (do_server)
Florin Corasf8f516a2018-02-08 15:10:09 -08002319 application_format_all_listeners (vm, do_local, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -05002320
2321 if (do_client)
Florin Corasf8f516a2018-02-08 15:10:09 -08002322 application_format_all_clients (vm, do_local, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -05002323
Florin Coras6cf30ad2017-04-04 23:08:23 -07002324 /* Print app related info */
2325 if (!do_server && !do_client)
2326 {
2327 vlib_cli_output (vm, "%U", format_application, 0, verbose);
Florin Corascea194d2017-10-02 00:18:51 -07002328 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002329 pool_foreach (app, app_main.app_pool, ({
Florin Corascea194d2017-10-02 00:18:51 -07002330 vlib_cli_output (vm, "%U", format_application, app, verbose);
2331 }));
2332 /* *INDENT-ON* */
Florin Coras6cf30ad2017-04-04 23:08:23 -07002333 }
2334
Dave Barach68b0fb02017-02-28 15:15:56 -05002335 return 0;
2336}
2337
Florin Corase04c2992017-03-01 08:17:34 -08002338/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002339VLIB_CLI_COMMAND (show_app_command, static) =
2340{
Florin Corase04c2992017-03-01 08:17:34 -08002341 .path = "show app",
2342 .short_help = "show app [server|client] [verbose]",
2343 .function = show_app_command_fn,
2344};
2345/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002346
2347/*
2348 * fd.io coding-style-patch-verification: ON
2349 *
2350 * Local Variables:
2351 * eval: (c-set-style "gnu")
2352 * End:
2353 */