blob: b7498d008816f7f5c365c230e0f95a726b309cc9 [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 Coras15531972018-08-12 23:50:53 -070023static app_worker_map_t *
24app_worker_map_alloc (application_t * app)
25{
26 app_worker_map_t *map;
27 pool_get (app->worker_maps, map);
28 memset (map, 0, sizeof (*map));
29 return map;
30}
Dave Barach68b0fb02017-02-28 15:15:56 -050031
Florin Coras15531972018-08-12 23:50:53 -070032static u32
33app_worker_map_index (application_t * app, app_worker_map_t * map)
34{
35 return (map - app->worker_maps);
36}
37
38static void
39app_worker_map_free (application_t * app, app_worker_map_t * map)
40{
41 pool_put (app->worker_maps, map);
42}
43
44static app_worker_map_t *
45app_worker_map_get (application_t * app, u32 map_index)
46{
47 return pool_elt_at_index (app->worker_maps, map_index);
48}
Florin Coras0bee9ce2018-03-22 21:24:31 -070049
Florin Corascea194d2017-10-02 00:18:51 -070050static u8 *
51app_get_name_from_reg_index (application_t * app)
52{
53 u8 *app_name;
54
55 vl_api_registration_t *regp;
56 regp = vl_api_client_index_to_registration (app->api_client_index);
57 if (!regp)
Florin Coras15531972018-08-12 23:50:53 -070058 app_name = format (0, "builtin-%d%c", app->app_index, 0);
Florin Corascea194d2017-10-02 00:18:51 -070059 else
60 app_name = format (0, "%s%c", regp->name, 0);
61
62 return app_name;
63}
64
Florin Coras0bee9ce2018-03-22 21:24:31 -070065static u8 *
66app_get_name (application_t * app)
67{
68 if (!app->name)
69 return app_get_name_from_reg_index (app);
70 return app->name;
71}
72
Florin Corascea194d2017-10-02 00:18:51 -070073u32
74application_session_table (application_t * app, u8 fib_proto)
75{
76 app_namespace_t *app_ns;
77 app_ns = app_namespace_get (app->ns_index);
78 if (!application_has_global_scope (app))
79 return APP_INVALID_INDEX;
80 if (fib_proto == FIB_PROTOCOL_IP4)
81 return session_lookup_get_index_for_fib (fib_proto,
82 app_ns->ip4_fib_index);
83 else
84 return session_lookup_get_index_for_fib (fib_proto,
85 app_ns->ip6_fib_index);
86}
87
88u32
89application_local_session_table (application_t * app)
90{
91 app_namespace_t *app_ns;
92 if (!application_has_local_scope (app))
93 return APP_INVALID_INDEX;
94 app_ns = app_namespace_get (app->ns_index);
95 return app_ns->local_table_index;
96}
97
Dave Barach68b0fb02017-02-28 15:15:56 -050098int
99application_api_queue_is_full (application_t * app)
100{
Florin Corase86a8ed2018-01-05 03:20:25 -0800101 svm_queue_t *q;
Dave Barach68b0fb02017-02-28 15:15:56 -0500102
103 /* builtin servers are always OK */
104 if (app->api_client_index == ~0)
105 return 0;
106
107 q = vl_api_client_index_to_input_queue (app->api_client_index);
108 if (!q)
109 return 1;
110
111 if (q->cursize == q->maxsize)
112 return 1;
113 return 0;
114}
115
Florin Corascea194d2017-10-02 00:18:51 -0700116/**
117 * Returns app name
118 *
119 * Since the name is not stored per app, we generate it on the fly. It is
120 * the caller's responsibility to free the vector
121 */
122u8 *
123application_name_from_index (u32 app_index)
124{
125 application_t *app = application_get (app_index);
126 if (!app)
127 return 0;
128 return app_get_name_from_reg_index (app);
129}
130
Dave Barach68b0fb02017-02-28 15:15:56 -0500131static void
132application_table_add (application_t * app)
133{
Florin Coras0bee9ce2018-03-22 21:24:31 -0700134 if (app->api_client_index != APP_INVALID_INDEX)
Florin Coras15531972018-08-12 23:50:53 -0700135 hash_set (app_main.app_by_api_client_index, app->api_client_index,
136 app->app_index);
Florin Coras0bee9ce2018-03-22 21:24:31 -0700137 else if (app->name)
Florin Coras15531972018-08-12 23:50:53 -0700138 hash_set_mem (app_main.app_by_name, app->name, app->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500139}
140
141static void
142application_table_del (application_t * app)
143{
Florin Coras0bee9ce2018-03-22 21:24:31 -0700144 if (app->api_client_index != APP_INVALID_INDEX)
Florin Coras15531972018-08-12 23:50:53 -0700145 hash_unset (app_main.app_by_api_client_index, app->api_client_index);
Florin Coras0bee9ce2018-03-22 21:24:31 -0700146 else if (app->name)
Florin Coras15531972018-08-12 23:50:53 -0700147 hash_unset_mem (app_main.app_by_name, app->name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500148}
149
150application_t *
151application_lookup (u32 api_client_index)
152{
153 uword *p;
Florin Coras15531972018-08-12 23:50:53 -0700154 p = hash_get (app_main.app_by_api_client_index, api_client_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500155 if (p)
156 return application_get (p[0]);
157
158 return 0;
159}
160
Florin Coras6cf30ad2017-04-04 23:08:23 -0700161application_t *
Florin Coras0bee9ce2018-03-22 21:24:31 -0700162application_lookup_name (const u8 * name)
163{
164 uword *p;
Florin Coras15531972018-08-12 23:50:53 -0700165 p = hash_get_mem (app_main.app_by_name, name);
Florin Coras0bee9ce2018-03-22 21:24:31 -0700166 if (p)
167 return application_get (p[0]);
168
169 return 0;
170}
171
172application_t *
Florin Coras15531972018-08-12 23:50:53 -0700173application_alloc (void)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700174{
175 application_t *app;
Florin Coras15531972018-08-12 23:50:53 -0700176 pool_get (app_main.app_pool, app);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700177 memset (app, 0, sizeof (*app));
Florin Coras15531972018-08-12 23:50:53 -0700178 app->app_index = app - app_main.app_pool;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700179 return app;
180}
181
Florin Coras15531972018-08-12 23:50:53 -0700182application_t *
183application_get (u32 app_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500184{
Florin Coras15531972018-08-12 23:50:53 -0700185 if (app_index == APP_INVALID_INDEX)
186 return 0;
187 return pool_elt_at_index (app_main.app_pool, app_index);
188}
Dave Barach68b0fb02017-02-28 15:15:56 -0500189
Florin Coras15531972018-08-12 23:50:53 -0700190application_t *
191application_get_if_valid (u32 app_index)
192{
193 if (pool_is_free_index (app_main.app_pool, app_index))
194 return 0;
Florin Corasa5464812017-04-19 13:00:05 -0700195
Florin Coras15531972018-08-12 23:50:53 -0700196 return pool_elt_at_index (app_main.app_pool, app_index);
197}
Florin Coras7999e832017-10-31 01:51:04 -0700198
Florin Coras15531972018-08-12 23:50:53 -0700199u32
200application_index (application_t * app)
201{
202 return app - app_main.app_pool;
Dave Barach68b0fb02017-02-28 15:15:56 -0500203}
204
Florin Corasd79b41e2017-03-04 05:37:52 -0800205static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700206application_verify_cb_fns (session_cb_vft_t * cb_fns)
Florin Corasd79b41e2017-03-04 05:37:52 -0800207{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700208 if (cb_fns->session_accept_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800209 clib_warning ("No accept callback function provided");
Florin Coras6cf30ad2017-04-04 23:08:23 -0700210 if (cb_fns->session_connected_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800211 clib_warning ("No session connected callback function provided");
212 if (cb_fns->session_disconnect_callback == 0)
213 clib_warning ("No session disconnect callback function provided");
214 if (cb_fns->session_reset_callback == 0)
215 clib_warning ("No session reset callback function provided");
216}
217
Florin Corasb384b542018-01-15 01:08:33 -0800218/**
219 * Check app config for given segment type
220 *
221 * Returns 1 on success and 0 otherwise
222 */
223static u8
224application_verify_cfg (ssvm_segment_type_t st)
225{
226 u8 is_valid;
227 if (st == SSVM_SEGMENT_MEMFD)
228 {
229 is_valid = (session_manager_get_evt_q_segment () != 0);
230 if (!is_valid)
231 clib_warning ("memfd seg: vpp's event qs IN binary api svm region");
232 return is_valid;
233 }
234 else if (st == SSVM_SEGMENT_SHM)
235 {
236 is_valid = (session_manager_get_evt_q_segment () == 0);
237 if (!is_valid)
238 clib_warning ("shm seg: vpp's event qs NOT IN binary api svm region");
239 return is_valid;
240 }
241 else
242 return 1;
243}
244
Florin Coras6cf30ad2017-04-04 23:08:23 -0700245int
Florin Coras15531972018-08-12 23:50:53 -0700246application_alloc_and_init (app_init_args_t * a)
Dave Barach68b0fb02017-02-28 15:15:56 -0500247{
Florin Corasa332c462018-01-31 06:52:17 -0800248 ssvm_segment_type_t seg_type = SSVM_SEGMENT_MEMFD;
Florin Corasb384b542018-01-15 01:08:33 -0800249 segment_manager_properties_t *props;
250 vl_api_registration_t *reg;
Florin Coras15531972018-08-12 23:50:53 -0700251 application_t *app;
252 u64 *options;
Dave Barach68b0fb02017-02-28 15:15:56 -0500253
Florin Coras15531972018-08-12 23:50:53 -0700254 app = application_alloc ();
255 options = a->options;
Florin Corasb384b542018-01-15 01:08:33 -0800256 /*
257 * Make sure we support the requested configuration
258 */
Florin Corasa332c462018-01-31 06:52:17 -0800259 if (!(options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_IS_BUILTIN))
260 {
Florin Coras15531972018-08-12 23:50:53 -0700261 reg = vl_api_client_index_to_registration (a->api_client_index);
Florin Corasa332c462018-01-31 06:52:17 -0800262 if (!reg)
263 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
264 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
265 seg_type = SSVM_SEGMENT_SHM;
266 }
267 else
268 {
Florin Coras99368312018-08-02 10:45:44 -0700269 if (options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
270 {
271 clib_warning ("mq eventfds can only be used if socket transport is "
272 "used for api");
273 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
274 }
Florin Corasa332c462018-01-31 06:52:17 -0800275 seg_type = SSVM_SEGMENT_PRIVATE;
276 }
Florin Corasb384b542018-01-15 01:08:33 -0800277
Florin Corasa332c462018-01-31 06:52:17 -0800278 if (!application_verify_cfg (seg_type))
Florin Corasb384b542018-01-15 01:08:33 -0800279 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
Dave Barach68b0fb02017-02-28 15:15:56 -0500280
Florin Coras15531972018-08-12 23:50:53 -0700281 /* Check that the obvious things are properly set up */
282 application_verify_cb_fns (a->session_cb_vft);
283
284 app->api_client_index = a->api_client_index;
285 app->flags = options[APP_OPTIONS_FLAGS];
286 app->cb_fns = *a->session_cb_vft;
287 app->ns_index = options[APP_OPTIONS_NAMESPACE];
288 app->proxied_transports = options[APP_OPTIONS_PROXY_TRANSPORT];
289 app->name = vec_dup (a->name);
290
291 /* If no scope enabled, default to global */
292 if (!application_has_global_scope (app)
293 && !application_has_local_scope (app))
294 app->flags |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
295
Florin Corasa332c462018-01-31 06:52:17 -0800296 props = application_segment_manager_properties (app);
297 segment_manager_properties_init (props);
Florin Coras15531972018-08-12 23:50:53 -0700298 props->segment_size = options[APP_OPTIONS_ADD_SEGMENT_SIZE];
299 props->prealloc_fifos = options[APP_OPTIONS_PREALLOC_FIFO_PAIRS];
Florin Corasb384b542018-01-15 01:08:33 -0800300 if (options[APP_OPTIONS_ADD_SEGMENT_SIZE])
301 {
302 props->add_segment_size = options[APP_OPTIONS_ADD_SEGMENT_SIZE];
303 props->add_segment = 1;
304 }
305 if (options[APP_OPTIONS_RX_FIFO_SIZE])
306 props->rx_fifo_size = options[APP_OPTIONS_RX_FIFO_SIZE];
307 if (options[APP_OPTIONS_TX_FIFO_SIZE])
308 props->tx_fifo_size = options[APP_OPTIONS_TX_FIFO_SIZE];
Florin Corasf8f516a2018-02-08 15:10:09 -0800309 if (options[APP_OPTIONS_EVT_QUEUE_SIZE])
310 props->evt_q_size = options[APP_OPTIONS_EVT_QUEUE_SIZE];
Florin Coras99368312018-08-02 10:45:44 -0700311 if (options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
312 props->use_mq_eventfd = 1;
Florin Coras58d36f02018-03-09 13:05:53 -0800313 if (options[APP_OPTIONS_TLS_ENGINE])
314 app->tls_engine = options[APP_OPTIONS_TLS_ENGINE];
Florin Corasa332c462018-01-31 06:52:17 -0800315 props->segment_type = seg_type;
Dave Barach68b0fb02017-02-28 15:15:56 -0500316
Florin Coras15531972018-08-12 23:50:53 -0700317 /* Add app to lookup by api_client_index table */
318 application_table_add (app);
319 a->app_index = application_index (app);
Florin Corasa332c462018-01-31 06:52:17 -0800320
Florin Coras15531972018-08-12 23:50:53 -0700321 APP_DBG ("New app name: %v api index: %u index %u", app->name,
322 app->api_client_index, app->app_index);
323
324 return 0;
325}
326
327void
328application_free (application_t * app)
329{
330 app_worker_map_t *wrk_map;
331 app_worker_t *app_wrk;
332
333 /*
334 * The app event queue allocated in first segment is cleared with
335 * the segment manager. No need to explicitly free it.
336 */
337 APP_DBG ("Delete app name %v api index: %d index: %d", app->name,
338 app->api_client_index, app->app_index);
339
340 if (application_is_proxy (app))
341 application_remove_proxy (app);
342
343 /* *INDENT-OFF* */
344 pool_flush (wrk_map, app->worker_maps, ({
345 app_wrk = app_worker_get (wrk_map->wrk_index);
346 app_worker_free (app_wrk);
347 }));
348 /* *INDENT-ON* */
349 pool_free (app->worker_maps);
350
351 application_table_del (app);
352 vec_free (app->name);
353 vec_free (app->tls_cert);
354 vec_free (app->tls_key);
355 pool_put (app_main.app_pool, app);
356}
357
358app_worker_t *
359application_get_worker (application_t * app, u32 wrk_map_index)
360{
361 app_worker_map_t *map;
362 map = app_worker_map_get (app, wrk_map_index);
363 if (!map)
364 return 0;
365 return app_worker_get (map->wrk_index);
366}
367
368app_worker_t *
369application_get_default_worker (application_t * app)
370{
371 return application_get_worker (app, 0);
372}
373
374app_worker_t *
375app_worker_alloc (application_t * app)
376{
377 app_worker_t *app_wrk;
378 pool_get (app_main.workers, app_wrk);
379 memset (app_wrk, 0, sizeof (*app_wrk));
380 app_wrk->wrk_index = app_wrk - app_main.workers;
381 app_wrk->app_index = app->app_index;
382 app_wrk->wrk_map_index = ~0;
383 app_wrk->connects_seg_manager = APP_INVALID_SEGMENT_MANAGER_INDEX;
384 app_wrk->first_segment_manager = APP_INVALID_SEGMENT_MANAGER_INDEX;
385 app_wrk->local_segment_manager = APP_INVALID_SEGMENT_MANAGER_INDEX;
386 APP_DBG ("New app %v worker %u", app_get_name (app), app_wrk->wrk_index);
387 return app_wrk;
388}
389
390app_worker_t *
391app_worker_get (u32 wrk_index)
392{
393 return pool_elt_at_index (app_main.workers, wrk_index);
394}
395
396app_worker_t *
397app_worker_get_if_valid (u32 wrk_index)
398{
399 if (pool_is_free_index (app_main.workers, wrk_index))
400 return 0;
401 return pool_elt_at_index (app_main.workers, wrk_index);
402}
403
404void
405app_worker_free (app_worker_t * app_wrk)
406{
407 application_t *app = application_get (app_wrk->app_index);
408 vnet_unbind_args_t _a, *a = &_a;
409 u64 handle, *handles = 0;
410 segment_manager_t *sm;
411 u32 sm_index;
412 int i;
413
414 /*
415 * Listener cleanup
416 */
417
418 /* *INDENT-OFF* */
419 hash_foreach (handle, sm_index, app_wrk->listeners_table,
420 ({
421 vec_add1 (handles, handle);
422 sm = segment_manager_get (sm_index);
423 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
424 }));
425 /* *INDENT-ON* */
426
427 for (i = 0; i < vec_len (handles); i++)
428 {
429 a->app_index = app->app_index;
430 a->app_wrk_index = app_wrk->wrk_map_index;
431 a->handle = handles[i];
432 /* seg manager is removed when unbind completes */
433 vnet_unbind (a);
434 }
435
436 /*
437 * Connects segment manager cleanup
438 */
439
440 if (app_wrk->connects_seg_manager != APP_INVALID_SEGMENT_MANAGER_INDEX)
441 {
442 sm = segment_manager_get (app_wrk->connects_seg_manager);
443 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
444 segment_manager_init_del (sm);
445 }
446
447 /* If first segment manager is used by a listener */
448 if (app_wrk->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX
449 && app_wrk->first_segment_manager != app_wrk->connects_seg_manager)
450 {
451 sm = segment_manager_get (app_wrk->first_segment_manager);
452 /* .. and has no fifos, e.g. it might be used for redirected sessions,
453 * remove it */
454 if (!segment_manager_has_fifos (sm))
455 {
456 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
457 segment_manager_del (sm);
458 }
459 }
460
461 /*
462 * Local sessions
463 */
464 application_local_sessions_free (app_wrk);
465
466 pool_put (app_main.workers, app_wrk);
467 if (CLIB_DEBUG)
468 memset (app_wrk, 0xfe, sizeof (*app_wrk));
469}
470
471int
472app_worker_alloc_and_init (application_t * app, app_worker_t ** wrk)
473{
474 app_worker_map_t *wrk_map;
475 app_worker_t *app_wrk;
476 segment_manager_t *sm;
477 int rv;
478
479 app_wrk = app_worker_alloc (app);
480 wrk_map = app_worker_map_alloc (app);
481 wrk_map->wrk_index = app_wrk->wrk_index;
482 app_wrk->wrk_map_index = app_worker_map_index (app, wrk_map);
483
484 /*
485 * Setup first segment manager
486 */
487 sm = segment_manager_new ();
488 sm->app_wrk_index = app_wrk->wrk_index;
489
490 if ((rv = segment_manager_init (sm, app->sm_properties.segment_size,
491 app->sm_properties.prealloc_fifos)))
492 {
493 app_worker_free (app_wrk);
494 return rv;
495 }
Florin Corasc87c91d2017-08-16 19:55:49 -0700496 sm->first_is_protected = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500497
Florin Corascea194d2017-10-02 00:18:51 -0700498 /*
Florin Coras15531972018-08-12 23:50:53 -0700499 * Setup app worker
Florin Corascea194d2017-10-02 00:18:51 -0700500 */
Florin Coras15531972018-08-12 23:50:53 -0700501 app_wrk->first_segment_manager = segment_manager_index (sm);
502 app_wrk->listeners_table = hash_create (0, sizeof (u64));
503 app_wrk->event_queue = segment_manager_event_queue (sm);
504 app_wrk->app_is_builtin = application_is_builtin (app);
Dave Barach68b0fb02017-02-28 15:15:56 -0500505
Florin Corasf8f516a2018-02-08 15:10:09 -0800506 /*
507 * Segment manager for local sessions
508 */
509 sm = segment_manager_new ();
Florin Coras15531972018-08-12 23:50:53 -0700510 sm->app_wrk_index = app_wrk->wrk_index;
511 app_wrk->local_segment_manager = segment_manager_index (sm);
512 app_wrk->local_connects = hash_create (0, sizeof (u64));
513
514 *wrk = app_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -0800515
Florin Coras6cf30ad2017-04-04 23:08:23 -0700516 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500517}
518
Florin Coras6cf30ad2017-04-04 23:08:23 -0700519static segment_manager_t *
Florin Coras15531972018-08-12 23:50:53 -0700520application_alloc_segment_manager (app_worker_t * app_wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -0500521{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700522 segment_manager_t *sm = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500523
Florin Corasc87c91d2017-08-16 19:55:49 -0700524 /* If the first segment manager is not in use, don't allocate a new one */
Florin Coras15531972018-08-12 23:50:53 -0700525 if (app_wrk->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX
526 && app_wrk->first_segment_manager_in_use == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500527 {
Florin Coras15531972018-08-12 23:50:53 -0700528 sm = segment_manager_get (app_wrk->first_segment_manager);
529 app_wrk->first_segment_manager_in_use = 1;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700530 return sm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500531 }
532
Florin Coras6cf30ad2017-04-04 23:08:23 -0700533 sm = segment_manager_new ();
Florin Coras15531972018-08-12 23:50:53 -0700534 sm->app_wrk_index = app_wrk->wrk_index;
Florin Coras0e9c33b2017-08-14 22:33:41 -0700535
Florin Coras6cf30ad2017-04-04 23:08:23 -0700536 return sm;
537}
538
539/**
540 * Start listening local transport endpoint for requested transport.
541 *
542 * Creates a 'dummy' stream session with state LISTENING to be used in session
543 * lookups, prior to establishing connection. Requests transport to build
544 * it's own specific listening connection.
545 */
546int
Florin Coras15531972018-08-12 23:50:53 -0700547app_worker_start_listen (app_worker_t * app_wrk, session_endpoint_t * sep,
548 session_handle_t * res)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700549{
550 segment_manager_t *sm;
551 stream_session_t *s;
Florin Corasf8f516a2018-02-08 15:10:09 -0800552 session_handle_t handle;
Florin Corascea194d2017-10-02 00:18:51 -0700553 session_type_t sst;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700554
Florin Corascea194d2017-10-02 00:18:51 -0700555 sst = session_type_from_proto_and_ip (sep->transport_proto, sep->is_ip4);
Florin Coras5c9083d2018-04-13 06:39:07 -0700556 s = listen_session_new (0, sst);
Florin Coras15531972018-08-12 23:50:53 -0700557 s->app_wrk_index = app_wrk->wrk_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700558
Florin Coras6cf30ad2017-04-04 23:08:23 -0700559 /* Allocate segment manager. All sessions derived out of a listen session
560 * have fifos allocated by the same segment manager. */
Florin Coras15531972018-08-12 23:50:53 -0700561 if (!(sm = application_alloc_segment_manager (app_wrk)))
Florin Coras6cf30ad2017-04-04 23:08:23 -0700562 goto err;
563
564 /* Add to app's listener table. Useful to find all child listeners
565 * when app goes down, although, just for unbinding this is not needed */
566 handle = listen_session_get_handle (s);
Florin Coras15531972018-08-12 23:50:53 -0700567 hash_set (app_wrk->listeners_table, handle, segment_manager_index (sm));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700568
Florin Coras7fb0fe12018-04-09 09:24:52 -0700569 if (stream_session_listen (s, sep))
570 {
571 segment_manager_del (sm);
Florin Coras15531972018-08-12 23:50:53 -0700572 hash_unset (app_wrk->listeners_table, handle);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700573 goto err;
574 }
575
Florin Coras6cf30ad2017-04-04 23:08:23 -0700576 *res = handle;
577 return 0;
578
579err:
580 listen_session_del (s);
581 return -1;
582}
583
584/**
585 * Stop listening on session associated to handle
Florin Coras15531972018-08-12 23:50:53 -0700586 *
587 * @param handle listener handle
588 * @param app_index index of the app owning the handle. This is used
589 * only for validating ownership
Florin Coras6cf30ad2017-04-04 23:08:23 -0700590 */
591int
Florin Coras15531972018-08-12 23:50:53 -0700592app_worker_stop_listen (session_handle_t handle, u32 app_index)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700593{
594 stream_session_t *listener;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700595 segment_manager_t *sm;
Florin Coras15531972018-08-12 23:50:53 -0700596 app_worker_t *app_wrk;
597 uword *indexp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700598
Florin Coras15531972018-08-12 23:50:53 -0700599 listener = listen_session_get_from_handle (handle);
600 app_wrk = app_worker_get (listener->app_wrk_index);
601 if (PREDICT_FALSE (!app_wrk || app_wrk->app_index != app_index))
Florin Coras6cf30ad2017-04-04 23:08:23 -0700602 {
603 clib_warning ("app doesn't own handle %llu!", handle);
604 return -1;
605 }
Florin Coras15531972018-08-12 23:50:53 -0700606 if (PREDICT_FALSE (hash_get (app_wrk->listeners_table, handle) == 0))
607 {
608 clib_warning ("listener handle was removed %llu!", handle);
609 return -1;
610 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700611
Florin Coras6cf30ad2017-04-04 23:08:23 -0700612 stream_session_stop_listen (listener);
613
Florin Coras15531972018-08-12 23:50:53 -0700614 indexp = hash_get (app_wrk->listeners_table, handle);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700615 ASSERT (indexp);
616
617 sm = segment_manager_get (*indexp);
Florin Coras15531972018-08-12 23:50:53 -0700618 if (app_wrk->first_segment_manager == *indexp)
Florin Coras0e9c33b2017-08-14 22:33:41 -0700619 {
Florin Corasc87c91d2017-08-16 19:55:49 -0700620 /* Delete sessions but don't remove segment manager */
Florin Coras15531972018-08-12 23:50:53 -0700621 app_wrk->first_segment_manager_in_use = 0;
Florin Corasc87c91d2017-08-16 19:55:49 -0700622 segment_manager_del_sessions (sm);
623 }
624 else
625 {
626 segment_manager_init_del (sm);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700627 }
Florin Coras15531972018-08-12 23:50:53 -0700628 hash_unset (app_wrk->listeners_table, handle);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700629 listen_session_del (listener);
630
Dave Barach68b0fb02017-02-28 15:15:56 -0500631 return 0;
632}
633
Florin Coras6cf30ad2017-04-04 23:08:23 -0700634int
Florin Coras15531972018-08-12 23:50:53 -0700635app_worker_open_session (app_worker_t * app, session_endpoint_t * sep,
636 u32 api_context)
Dave Barach68b0fb02017-02-28 15:15:56 -0500637{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700638 int rv;
639
640 /* Make sure we have a segment manager for connects */
Florin Coras15531972018-08-12 23:50:53 -0700641 app_worker_alloc_connects_segment_manager (app);
Florin Coras371ca502018-02-21 12:07:41 -0800642
Florin Coras15531972018-08-12 23:50:53 -0700643 if ((rv = session_open (app->wrk_index, sep, api_context)))
Florin Coras371ca502018-02-21 12:07:41 -0800644 return rv;
645
646 return 0;
647}
648
649int
Florin Coras15531972018-08-12 23:50:53 -0700650app_worker_alloc_connects_segment_manager (app_worker_t * app_wrk)
Florin Coras371ca502018-02-21 12:07:41 -0800651{
652 segment_manager_t *sm;
653
Florin Coras15531972018-08-12 23:50:53 -0700654 if (app_wrk->connects_seg_manager == APP_INVALID_SEGMENT_MANAGER_INDEX)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700655 {
Florin Coras15531972018-08-12 23:50:53 -0700656 sm = application_alloc_segment_manager (app_wrk);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700657 if (sm == 0)
658 return -1;
Florin Coras15531972018-08-12 23:50:53 -0700659 app_wrk->connects_seg_manager = segment_manager_index (sm);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700660 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700661 return 0;
662}
663
664segment_manager_t *
Florin Coras15531972018-08-12 23:50:53 -0700665app_worker_get_connect_segment_manager (app_worker_t * app)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700666{
667 ASSERT (app->connects_seg_manager != (u32) ~ 0);
668 return segment_manager_get (app->connects_seg_manager);
669}
670
671segment_manager_t *
Florin Coras15531972018-08-12 23:50:53 -0700672app_worker_get_listen_segment_manager (app_worker_t * app,
673 stream_session_t * s)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700674{
675 uword *smp;
676 smp = hash_get (app->listeners_table, listen_session_get_handle (s));
677 ASSERT (smp != 0);
678 return segment_manager_get (*smp);
679}
680
Florin Coras15531972018-08-12 23:50:53 -0700681clib_error_t *
682vnet_app_worker_add_del (vnet_app_worker_add_del_args_t * a)
683{
684 svm_fifo_segment_private_t *fs;
685 app_worker_map_t *wrk_map;
686 app_worker_t *app_wrk;
687 segment_manager_t *sm;
688 application_t *app;
689 int rv;
690
691 app = application_get (a->app_index);
692 if (!app)
693 return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0,
694 "App %u does not exist", a->app_index);
695
696 if (a->is_add)
697 {
698 if ((rv = app_worker_alloc_and_init (app, &app_wrk)))
699 return clib_error_return_code (0, rv, 0, "app wrk init: %d", rv);
700 sm = segment_manager_get (app_wrk->first_segment_manager);
701 fs = segment_manager_get_segment_w_lock (sm, 0);
702 a->segment = &fs->ssvm;
703 segment_manager_segment_reader_unlock (sm);
704 a->evt_q = app_wrk->event_queue;
705 }
706 else
707 {
708 wrk_map = app_worker_map_get (app, a->wrk_index);
709 if (!wrk_map)
710 return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0,
711 "App %u does not have worker %u",
712 app->app_index, a->wrk_index);
713 app_wrk = app_worker_get (wrk_map->wrk_index);
714 app_worker_map_free (app, wrk_map);
715 if (!app_wrk)
716 return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0,
717 "No worker %u", a->wrk_index);
718 app_worker_free (app_wrk);
719 }
720 return 0;
721}
722
Florin Corasf8f516a2018-02-08 15:10:09 -0800723segment_manager_t *
Florin Coras15531972018-08-12 23:50:53 -0700724application_get_local_segment_manager (app_worker_t * app)
Florin Corasf8f516a2018-02-08 15:10:09 -0800725{
726 return segment_manager_get (app->local_segment_manager);
727}
728
729segment_manager_t *
Florin Coras15531972018-08-12 23:50:53 -0700730application_get_local_segment_manager_w_session (app_worker_t * app,
Florin Corasf8f516a2018-02-08 15:10:09 -0800731 local_session_t * ls)
732{
733 stream_session_t *listener;
734 if (application_local_session_listener_has_transport (ls))
735 {
Florin Coras5c9083d2018-04-13 06:39:07 -0700736 listener = listen_session_get (ls->listener_index);
Florin Coras15531972018-08-12 23:50:53 -0700737 return app_worker_get_listen_segment_manager (app, listener);
Florin Corasf8f516a2018-02-08 15:10:09 -0800738 }
739 return segment_manager_get (app->local_segment_manager);
740}
741
Dave Barach52851e62017-08-07 09:35:25 -0400742int
743application_is_proxy (application_t * app)
744{
Florin Coras7999e832017-10-31 01:51:04 -0700745 return (app->flags & APP_OPTIONS_FLAGS_IS_PROXY);
746}
747
748int
749application_is_builtin (application_t * app)
750{
751 return (app->flags & APP_OPTIONS_FLAGS_IS_BUILTIN);
752}
753
754int
755application_is_builtin_proxy (application_t * app)
756{
757 return (application_is_proxy (app) && application_is_builtin (app));
Dave Barach52851e62017-08-07 09:35:25 -0400758}
759
Florin Corascea194d2017-10-02 00:18:51 -0700760u8
761application_has_local_scope (application_t * app)
762{
763 return app->flags & APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
764}
765
766u8
767application_has_global_scope (application_t * app)
768{
769 return app->flags & APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
770}
771
Florin Coras60116992018-08-27 09:52:18 -0700772u8
773application_use_mq_for_ctrl (application_t * app)
774{
775 return app->flags & APP_OPTIONS_FLAGS_USE_MQ_FOR_CTRL_MSGS;
776}
777
Florin Coras15531972018-08-12 23:50:53 -0700778/**
779 * Send an API message to the external app, to map new segment
780 */
781int
782app_worker_add_segment_notify (u32 app_wrk_index, ssvm_private_t * fs)
783{
784 app_worker_t *app_wrk = app_worker_get (app_wrk_index);
785 application_t *app = application_get (app_wrk->app_index);
786 return app->cb_fns.add_segment_callback (app->api_client_index, fs);
787}
788
Florin Coras1c710452017-10-17 00:03:13 -0700789u32
Florin Coras15531972018-08-12 23:50:53 -0700790application_n_listeners (app_worker_t * app)
Florin Coras1c710452017-10-17 00:03:13 -0700791{
792 return hash_elts (app->listeners_table);
793}
794
795stream_session_t *
Florin Coras15531972018-08-12 23:50:53 -0700796app_worker_first_listener (app_worker_t * app, u8 fib_proto,
797 u8 transport_proto)
Florin Coras1c710452017-10-17 00:03:13 -0700798{
Florin Coras7999e832017-10-31 01:51:04 -0700799 stream_session_t *listener;
Florin Coras1c710452017-10-17 00:03:13 -0700800 u64 handle;
801 u32 sm_index;
Florin Coras7999e832017-10-31 01:51:04 -0700802 u8 sst;
803
804 sst = session_type_from_proto_and_ip (transport_proto,
805 fib_proto == FIB_PROTOCOL_IP4);
Florin Coras1c710452017-10-17 00:03:13 -0700806
807 /* *INDENT-OFF* */
808 hash_foreach (handle, sm_index, app->listeners_table, ({
Florin Coras7999e832017-10-31 01:51:04 -0700809 listener = listen_session_get_from_handle (handle);
Florin Corasc3ddea82017-11-27 03:12:00 -0800810 if (listener->session_type == sst
811 && listener->listener_index != SESSION_PROXY_LISTENER_INDEX)
Florin Coras7999e832017-10-31 01:51:04 -0700812 return listener;
Florin Coras1c710452017-10-17 00:03:13 -0700813 }));
814 /* *INDENT-ON* */
815
816 return 0;
817}
818
Florin Coras15531972018-08-12 23:50:53 -0700819u8
820app_worker_application_is_builtin (app_worker_t * app_wrk)
821{
822 return app_wrk->app_is_builtin;
823}
824
Florin Coras19b1f6a2017-12-11 03:37:03 -0800825stream_session_t *
Florin Coras15531972018-08-12 23:50:53 -0700826application_proxy_listener (app_worker_t * app, u8 fib_proto,
Florin Coras19b1f6a2017-12-11 03:37:03 -0800827 u8 transport_proto)
828{
829 stream_session_t *listener;
830 u64 handle;
831 u32 sm_index;
832 u8 sst;
833
834 sst = session_type_from_proto_and_ip (transport_proto,
835 fib_proto == FIB_PROTOCOL_IP4);
836
837 /* *INDENT-OFF* */
838 hash_foreach (handle, sm_index, app->listeners_table, ({
839 listener = listen_session_get_from_handle (handle);
840 if (listener->session_type == sst
841 && listener->listener_index == SESSION_PROXY_LISTENER_INDEX)
842 return listener;
843 }));
844 /* *INDENT-ON* */
845
846 return 0;
847}
848
Florin Coras7999e832017-10-31 01:51:04 -0700849static clib_error_t *
850application_start_stop_proxy_fib_proto (application_t * app, u8 fib_proto,
851 u8 transport_proto, u8 is_start)
852{
Florin Coras7999e832017-10-31 01:51:04 -0700853 app_namespace_t *app_ns = app_namespace_get (app->ns_index);
854 u8 is_ip4 = (fib_proto == FIB_PROTOCOL_IP4);
855 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
856 transport_connection_t *tc;
Florin Coras15531972018-08-12 23:50:53 -0700857 app_worker_t *app_wrk;
Florin Coras7999e832017-10-31 01:51:04 -0700858 stream_session_t *s;
859 u64 handle;
860
Florin Coras15531972018-08-12 23:50:53 -0700861 /* TODO decide if we want proxy to be enabled for all workers */
862 app_wrk = application_get_default_worker (app);
Florin Coras7999e832017-10-31 01:51:04 -0700863 if (is_start)
864 {
Florin Coras15531972018-08-12 23:50:53 -0700865 s = app_worker_first_listener (app_wrk, fib_proto, transport_proto);
Florin Coras19b1f6a2017-12-11 03:37:03 -0800866 if (!s)
867 {
868 sep.is_ip4 = is_ip4;
869 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
870 sep.sw_if_index = app_ns->sw_if_index;
871 sep.transport_proto = transport_proto;
Florin Coras15531972018-08-12 23:50:53 -0700872 app_worker_start_listen (app_wrk, &sep, &handle);
Florin Coras19b1f6a2017-12-11 03:37:03 -0800873 s = listen_session_get_from_handle (handle);
874 s->listener_index = SESSION_PROXY_LISTENER_INDEX;
875 }
Florin Coras7999e832017-10-31 01:51:04 -0700876 }
877 else
878 {
Florin Coras15531972018-08-12 23:50:53 -0700879 s = application_proxy_listener (app_wrk, fib_proto, transport_proto);
Florin Coras19b1f6a2017-12-11 03:37:03 -0800880 ASSERT (s);
Florin Coras7999e832017-10-31 01:51:04 -0700881 }
Florin Coras19b1f6a2017-12-11 03:37:03 -0800882
Florin Coras7999e832017-10-31 01:51:04 -0700883 tc = listen_session_get_transport (s);
884
885 if (!ip_is_zero (&tc->lcl_ip, 1))
886 {
Florin Corasdbd44562017-11-09 19:30:17 -0800887 u32 sti;
888 sep.is_ip4 = is_ip4;
889 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
890 sep.transport_proto = transport_proto;
891 sep.port = 0;
892 sti = session_lookup_get_index_for_fib (fib_proto, sep.fib_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -0800893 if (is_start)
894 session_lookup_add_session_endpoint (sti, &sep, s->session_index);
895 else
896 session_lookup_del_session_endpoint (sti, &sep);
Florin Coras7999e832017-10-31 01:51:04 -0700897 }
Florin Coras19b1f6a2017-12-11 03:37:03 -0800898
Florin Coras7999e832017-10-31 01:51:04 -0700899 return 0;
900}
901
Florin Coras19b1f6a2017-12-11 03:37:03 -0800902static void
903application_start_stop_proxy_local_scope (application_t * app,
904 u8 transport_proto, u8 is_start)
905{
906 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
907 app_namespace_t *app_ns;
908 app_ns = app_namespace_get (app->ns_index);
909 sep.is_ip4 = 1;
910 sep.transport_proto = transport_proto;
911 sep.port = 0;
912
913 if (is_start)
914 {
915 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
Florin Coras15531972018-08-12 23:50:53 -0700916 app->app_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -0800917 sep.is_ip4 = 0;
918 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
Florin Coras15531972018-08-12 23:50:53 -0700919 app->app_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -0800920 }
921 else
922 {
923 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
924 sep.is_ip4 = 0;
925 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
926 }
927}
928
Florin Coras7999e832017-10-31 01:51:04 -0700929void
Florin Coras561af9b2017-12-09 10:19:43 -0800930application_start_stop_proxy (application_t * app,
931 transport_proto_t transport_proto, u8 is_start)
Florin Coras7999e832017-10-31 01:51:04 -0700932{
Florin Coras7999e832017-10-31 01:51:04 -0700933 if (application_has_local_scope (app))
Florin Coras19b1f6a2017-12-11 03:37:03 -0800934 application_start_stop_proxy_local_scope (app, transport_proto, is_start);
Florin Coras7999e832017-10-31 01:51:04 -0700935
936 if (application_has_global_scope (app))
937 {
938 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP4,
939 transport_proto, is_start);
940 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP6,
941 transport_proto, is_start);
942 }
943}
944
945void
946application_setup_proxy (application_t * app)
947{
948 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -0800949 transport_proto_t tp;
950
Florin Coras7999e832017-10-31 01:51:04 -0700951 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -0800952
953 /* *INDENT-OFF* */
954 transport_proto_foreach (tp, ({
955 if (transports & (1 << tp))
956 application_start_stop_proxy (app, tp, 1);
957 }));
958 /* *INDENT-ON* */
Florin Coras7999e832017-10-31 01:51:04 -0700959}
960
961void
962application_remove_proxy (application_t * app)
963{
964 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -0800965 transport_proto_t tp;
966
Florin Coras7999e832017-10-31 01:51:04 -0700967 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -0800968
969 /* *INDENT-OFF* */
970 transport_proto_foreach (tp, ({
971 if (transports & (1 << tp))
972 application_start_stop_proxy (app, tp, 0);
973 }));
974 /* *INDENT-ON* */
Florin Coras7999e832017-10-31 01:51:04 -0700975}
976
Florin Corasa332c462018-01-31 06:52:17 -0800977segment_manager_properties_t *
978application_segment_manager_properties (application_t * app)
979{
980 return &app->sm_properties;
981}
982
983segment_manager_properties_t *
984application_get_segment_manager_properties (u32 app_index)
985{
986 application_t *app = application_get (app_index);
987 return &app->sm_properties;
988}
989
Florin Coras3c2fed52018-07-04 04:15:05 -0700990static inline int
991app_enqueue_evt (svm_msg_q_t * mq, svm_msg_q_msg_t * msg, u8 lock)
992{
Florin Coras52207f12018-07-12 14:48:06 -0700993 if (PREDICT_FALSE (svm_msg_q_is_full (mq)))
Florin Coras3c2fed52018-07-04 04:15:05 -0700994 {
995 clib_warning ("evt q full");
996 svm_msg_q_free_msg (mq, msg);
997 if (lock)
998 svm_msg_q_unlock (mq);
999 return -1;
1000 }
Florin Coras52207f12018-07-12 14:48:06 -07001001
1002 if (lock)
1003 {
1004 svm_msg_q_add_and_unlock (mq, msg);
1005 return 0;
1006 }
1007
1008 /* Even when not locking the ring, we must wait for queue mutex */
1009 if (svm_msg_q_add (mq, msg, SVM_Q_WAIT))
1010 {
1011 clib_warning ("msg q add returned");
1012 return -1;
1013 }
Florin Coras3c2fed52018-07-04 04:15:05 -07001014 return 0;
1015}
1016
1017static inline int
Florin Coras15531972018-08-12 23:50:53 -07001018app_send_io_evt_rx (app_worker_t * app_wrk, stream_session_t * s, u8 lock)
Florin Coras3c2fed52018-07-04 04:15:05 -07001019{
Florin Coras52207f12018-07-12 14:48:06 -07001020 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -07001021 svm_msg_q_msg_t msg;
1022 svm_msg_q_t *mq;
1023
Florin Coras460dce62018-07-27 05:45:06 -07001024 if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY
1025 && s->session_state != SESSION_STATE_LISTENING))
Florin Coras3c2fed52018-07-04 04:15:05 -07001026 {
1027 /* Session is closed so app will never clean up. Flush rx fifo */
Florin Coras84099552018-07-22 12:59:30 -07001028 if (s->session_state == SESSION_STATE_CLOSED)
1029 svm_fifo_dequeue_drop_all (s->server_rx_fifo);
Florin Coras3c2fed52018-07-04 04:15:05 -07001030 return 0;
1031 }
1032
Florin Coras15531972018-08-12 23:50:53 -07001033 if (app_worker_application_is_builtin (app_wrk))
1034 {
1035 application_t *app = application_get (app_wrk->app_index);
1036 return app->cb_fns.builtin_app_rx_callback (s);
1037 }
Florin Coras3c2fed52018-07-04 04:15:05 -07001038
Florin Coras54693d22018-07-17 10:46:29 -07001039 if (svm_fifo_has_event (s->server_rx_fifo)
1040 || svm_fifo_is_empty (s->server_rx_fifo))
Florin Coras3c2fed52018-07-04 04:15:05 -07001041 return 0;
1042
Florin Coras15531972018-08-12 23:50:53 -07001043 mq = app_wrk->event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001044 if (lock)
1045 svm_msg_q_lock (mq);
1046
1047 if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
1048 {
1049 clib_warning ("evt q rings full");
1050 if (lock)
1051 svm_msg_q_unlock (mq);
1052 return -1;
1053 }
1054
1055 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
1056 ASSERT (!svm_msg_q_msg_is_invalid (&msg));
1057
Florin Coras52207f12018-07-12 14:48:06 -07001058 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -07001059 evt->fifo = s->server_rx_fifo;
1060 evt->event_type = FIFO_EVENT_APP_RX;
1061
Florin Coras54693d22018-07-17 10:46:29 -07001062 if (app_enqueue_evt (mq, &msg, lock))
1063 return -1;
Florin Corasd3ca8ff2018-07-28 04:53:30 -07001064 (void) svm_fifo_set_event (s->server_rx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07001065 return 0;
Florin Coras3c2fed52018-07-04 04:15:05 -07001066}
1067
1068static inline int
Florin Coras15531972018-08-12 23:50:53 -07001069app_send_io_evt_tx (app_worker_t * app_wrk, stream_session_t * s, u8 lock)
Florin Coras3c2fed52018-07-04 04:15:05 -07001070{
1071 svm_msg_q_t *mq;
Florin Coras52207f12018-07-12 14:48:06 -07001072 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -07001073 svm_msg_q_msg_t msg;
1074
Florin Coras15531972018-08-12 23:50:53 -07001075 if (app_worker_application_is_builtin (app_wrk))
Florin Coras3c2fed52018-07-04 04:15:05 -07001076 return 0;
1077
Florin Coras15531972018-08-12 23:50:53 -07001078 mq = app_wrk->event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001079 if (lock)
1080 svm_msg_q_lock (mq);
1081
1082 if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
1083 {
1084 clib_warning ("evt q rings full");
1085 if (lock)
1086 svm_msg_q_unlock (mq);
1087 return -1;
1088 }
1089
1090 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
1091 ASSERT (!svm_msg_q_msg_is_invalid (&msg));
1092
Florin Coras52207f12018-07-12 14:48:06 -07001093 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -07001094 evt->event_type = FIFO_EVENT_APP_TX;
1095 evt->fifo = s->server_tx_fifo;
1096
1097 return app_enqueue_evt (mq, &msg, lock);
1098}
1099
1100/* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001101typedef int (app_send_evt_handler_fn) (app_worker_t *app,
Florin Coras3c2fed52018-07-04 04:15:05 -07001102 stream_session_t *s,
1103 u8 lock);
Florin Coras460dce62018-07-27 05:45:06 -07001104static app_send_evt_handler_fn * const app_send_evt_handler_fns[3] = {
Florin Coras3c2fed52018-07-04 04:15:05 -07001105 app_send_io_evt_rx,
Florin Coras460dce62018-07-27 05:45:06 -07001106 0,
Florin Coras3c2fed52018-07-04 04:15:05 -07001107 app_send_io_evt_tx,
1108};
1109/* *INDENT-ON* */
1110
1111/**
1112 * Send event to application
1113 *
1114 * Logic from queue perspective is non-blocking. That is, if there's
1115 * not enough space to enqueue a message, we return. However, if the lock
1116 * flag is set, we do wait for queue mutex.
1117 */
1118int
Florin Coras15531972018-08-12 23:50:53 -07001119application_send_event (app_worker_t * app, stream_session_t * s, u8 evt_type)
Florin Coras3c2fed52018-07-04 04:15:05 -07001120{
1121 ASSERT (app && evt_type <= FIFO_EVENT_APP_TX);
1122 return app_send_evt_handler_fns[evt_type] (app, s, 0 /* lock */ );
1123}
1124
1125int
Florin Coras15531972018-08-12 23:50:53 -07001126application_lock_and_send_event (app_worker_t * app, stream_session_t * s,
Florin Coras3c2fed52018-07-04 04:15:05 -07001127 u8 evt_type)
1128{
1129 return app_send_evt_handler_fns[evt_type] (app, s, 1 /* lock */ );
1130}
1131
Florin Corasf8f516a2018-02-08 15:10:09 -08001132local_session_t *
Florin Coras15531972018-08-12 23:50:53 -07001133application_alloc_local_session (app_worker_t * app)
Florin Corasf8f516a2018-02-08 15:10:09 -08001134{
1135 local_session_t *s;
1136 pool_get (app->local_sessions, s);
1137 memset (s, 0, sizeof (*s));
Florin Coras15531972018-08-12 23:50:53 -07001138 s->app_wrk_index = app->app_index;
Florin Corasf8f516a2018-02-08 15:10:09 -08001139 s->session_index = s - app->local_sessions;
1140 s->session_type = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE, 0);
1141 return s;
1142}
1143
1144void
Florin Coras15531972018-08-12 23:50:53 -07001145application_free_local_session (app_worker_t * app, local_session_t * s)
Florin Corasf8f516a2018-02-08 15:10:09 -08001146{
1147 pool_put (app->local_sessions, s);
1148 if (CLIB_DEBUG)
1149 memset (s, 0xfc, sizeof (*s));
1150}
1151
1152local_session_t *
Florin Coras15531972018-08-12 23:50:53 -07001153application_get_local_session (app_worker_t * app_wrk, u32 session_index)
Florin Corasf8f516a2018-02-08 15:10:09 -08001154{
Florin Coras15531972018-08-12 23:50:53 -07001155 if (pool_is_free_index (app_wrk->local_sessions, session_index))
Florin Coras99368312018-08-02 10:45:44 -07001156 return 0;
Florin Coras15531972018-08-12 23:50:53 -07001157 return pool_elt_at_index (app_wrk->local_sessions, session_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001158}
1159
1160local_session_t *
1161application_get_local_session_from_handle (session_handle_t handle)
1162{
Florin Coras15531972018-08-12 23:50:53 -07001163 app_worker_t *server_wrk;
1164 u32 session_index, server_wrk_index;
1165 local_session_parse_handle (handle, &server_wrk_index, &session_index);
1166 server_wrk = app_worker_get_if_valid (server_wrk_index);
1167 if (!server_wrk)
Florin Corasfcbda892018-08-23 19:27:03 -07001168 return 0;
Florin Coras15531972018-08-12 23:50:53 -07001169 return application_get_local_session (server_wrk, session_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001170}
1171
Florin Coras60116992018-08-27 09:52:18 -07001172local_session_t *
1173application_get_local_listen_session_from_handle (session_handle_t lh)
1174{
1175 u32 ll_index, server_wrk_index;
1176 app_worker_t *server_wrk;
1177
1178 local_session_parse_handle (lh, &server_wrk_index, &ll_index);
1179 server_wrk = app_worker_get (server_wrk_index);
1180 return application_get_local_listen_session (server_wrk, ll_index);
1181}
1182
Florin Corasf8f516a2018-02-08 15:10:09 -08001183always_inline void
1184application_local_listener_session_endpoint (local_session_t * ll,
1185 session_endpoint_t * sep)
1186{
1187 sep->transport_proto =
1188 session_type_transport_proto (ll->listener_session_type);
1189 sep->port = ll->port;
1190 sep->is_ip4 = ll->listener_session_type & 1;
1191}
1192
1193int
Florin Coras15531972018-08-12 23:50:53 -07001194application_start_local_listen (app_worker_t * app_wrk,
Florin Corasf8f516a2018-02-08 15:10:09 -08001195 session_endpoint_t * sep,
1196 session_handle_t * handle)
1197{
1198 session_handle_t lh;
1199 local_session_t *ll;
Florin Coras15531972018-08-12 23:50:53 -07001200 application_t *app;
Florin Corasf8f516a2018-02-08 15:10:09 -08001201 u32 table_index;
1202
Florin Coras15531972018-08-12 23:50:53 -07001203 app = application_get (app_wrk->app_index);
1204 table_index = application_local_session_table (app);
Florin Corasf8f516a2018-02-08 15:10:09 -08001205
1206 /* An exact sep match, as opposed to session_lookup_local_listener */
1207 lh = session_lookup_endpoint_listener (table_index, sep, 1);
1208 if (lh != SESSION_INVALID_HANDLE)
1209 return VNET_API_ERROR_ADDRESS_IN_USE;
1210
Florin Coras15531972018-08-12 23:50:53 -07001211 pool_get (app_wrk->local_listen_sessions, ll);
Florin Corasf8f516a2018-02-08 15:10:09 -08001212 memset (ll, 0, sizeof (*ll));
1213 ll->session_type = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE, 0);
Florin Coras15531972018-08-12 23:50:53 -07001214 ll->app_wrk_index = app_wrk->app_index;
1215 ll->session_index = ll - app_wrk->local_listen_sessions;
Florin Corasf8f516a2018-02-08 15:10:09 -08001216 ll->port = sep->port;
1217 /* Store the original session type for the unbind */
1218 ll->listener_session_type =
1219 session_type_from_proto_and_ip (sep->transport_proto, sep->is_ip4);
Florin Coras5fda7a32018-02-14 08:04:31 -08001220 ll->transport_listener_index = ~0;
Florin Corasf8f516a2018-02-08 15:10:09 -08001221
1222 *handle = application_local_session_handle (ll);
1223 session_lookup_add_session_endpoint (table_index, sep, *handle);
1224
1225 return 0;
1226}
1227
1228/**
1229 * Clean up local session table. If we have a listener session use it to
1230 * find the port and proto. If not, the handle must be a local table handle
1231 * so parse it.
1232 */
1233int
Florin Coras15531972018-08-12 23:50:53 -07001234application_stop_local_listen (session_handle_t lh, u32 app_index)
Florin Corasf8f516a2018-02-08 15:10:09 -08001235{
1236 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
Florin Coras15531972018-08-12 23:50:53 -07001237 u32 table_index, ll_index, server_wrk_index;
1238 app_worker_t *server_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08001239 stream_session_t *sl = 0;
1240 local_session_t *ll, *ls;
Florin Coras15531972018-08-12 23:50:53 -07001241 application_t *server;
Florin Corasf8f516a2018-02-08 15:10:09 -08001242
Florin Coras15531972018-08-12 23:50:53 -07001243 server = application_get (app_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001244 table_index = application_local_session_table (server);
1245
1246 /* We have both local and global table binds. Figure from global what
1247 * the sep we should be cleaning up is.
1248 */
1249 if (!session_handle_is_local (lh))
1250 {
1251 sl = listen_session_get_from_handle (lh);
1252 if (!sl || listen_session_get_local_session_endpoint (sl, &sep))
1253 {
1254 clib_warning ("broken listener");
1255 return -1;
1256 }
1257 lh = session_lookup_endpoint_listener (table_index, &sep, 0);
1258 if (lh == SESSION_INVALID_HANDLE)
1259 return -1;
1260 }
1261
Florin Coras15531972018-08-12 23:50:53 -07001262 local_session_parse_handle (lh, &server_wrk_index, &ll_index);
1263 server_wrk = app_worker_get (server_wrk_index);
1264 if (PREDICT_FALSE (server_wrk->app_index != app_index))
1265 {
1266 clib_warning ("app %u does not own local handle 0x%lx", app_index, lh);
1267 }
1268 ll = application_get_local_listen_session (server_wrk, ll_index);
1269 if (PREDICT_FALSE (!ll))
Florin Corasf8f516a2018-02-08 15:10:09 -08001270 {
1271 clib_warning ("no local listener");
1272 return -1;
1273 }
1274 application_local_listener_session_endpoint (ll, &sep);
1275 session_lookup_del_session_endpoint (table_index, &sep);
1276
1277 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001278 pool_foreach (ls, server_wrk->local_sessions, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08001279 if (ls->listener_index == ll->session_index)
Florin Coras15531972018-08-12 23:50:53 -07001280 application_local_session_disconnect (server_wrk->app_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001281 }));
1282 /* *INDENT-ON* */
Florin Coras15531972018-08-12 23:50:53 -07001283 pool_put_index (server_wrk->local_listen_sessions, ll->session_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001284
1285 return 0;
1286}
1287
Florin Coras99368312018-08-02 10:45:44 -07001288static void
1289application_local_session_fix_eventds (svm_msg_q_t * sq, svm_msg_q_t * cq)
1290{
1291 int fd;
1292
1293 /*
1294 * segment manager initializes only the producer eventds, since vpp is
1295 * typically the producer. But for local sessions, we also pass to the
1296 * apps the mqs they listen on for events from peer apps, so they are also
1297 * consumer fds.
1298 */
1299 fd = svm_msg_q_get_producer_eventfd (sq);
1300 svm_msg_q_set_consumer_eventfd (sq, fd);
1301 fd = svm_msg_q_get_producer_eventfd (cq);
1302 svm_msg_q_set_consumer_eventfd (cq, fd);
1303}
1304
Florin Corasf8f516a2018-02-08 15:10:09 -08001305int
Florin Coras15531972018-08-12 23:50:53 -07001306application_local_session_connect (app_worker_t * client_wrk,
1307 app_worker_t * server_wrk,
Florin Corasf8f516a2018-02-08 15:10:09 -08001308 local_session_t * ll, u32 opaque)
1309{
1310 u32 seg_size, evt_q_sz, evt_q_elts, margin = 16 << 10;
1311 segment_manager_properties_t *props, *cprops;
Florin Coras54693d22018-07-17 10:46:29 -07001312 u32 round_rx_fifo_sz, round_tx_fifo_sz;
Florin Corasf8f516a2018-02-08 15:10:09 -08001313 int rv, has_transport, seg_index;
1314 svm_fifo_segment_private_t *seg;
Florin Coras15531972018-08-12 23:50:53 -07001315 application_t *server, *client;
Florin Corasf8f516a2018-02-08 15:10:09 -08001316 segment_manager_t *sm;
1317 local_session_t *ls;
Florin Coras3c2fed52018-07-04 04:15:05 -07001318 svm_msg_q_t *sq, *cq;
Florin Corasf8f516a2018-02-08 15:10:09 -08001319
Florin Coras15531972018-08-12 23:50:53 -07001320 ls = application_alloc_local_session (server_wrk);
1321
1322 server = application_get (server_wrk->app_index);
1323 client = application_get (client_wrk->app_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001324
1325 props = application_segment_manager_properties (server);
1326 cprops = application_segment_manager_properties (client);
1327 evt_q_elts = props->evt_q_size + cprops->evt_q_size;
Florin Coras3c2fed52018-07-04 04:15:05 -07001328 evt_q_sz = segment_manager_evt_q_expected_size (evt_q_elts);
Florin Coras54693d22018-07-17 10:46:29 -07001329 round_rx_fifo_sz = 1 << max_log2 (props->rx_fifo_size);
1330 round_tx_fifo_sz = 1 << max_log2 (props->tx_fifo_size);
1331 seg_size = round_rx_fifo_sz + round_tx_fifo_sz + evt_q_sz + margin;
Florin Corasf8f516a2018-02-08 15:10:09 -08001332
1333 has_transport = session_has_transport ((stream_session_t *) ll);
1334 if (!has_transport)
1335 {
1336 /* Local sessions don't have backing transport */
1337 ls->port = ll->port;
Florin Coras15531972018-08-12 23:50:53 -07001338 sm = application_get_local_segment_manager (server_wrk);
Florin Corasf8f516a2018-02-08 15:10:09 -08001339 }
1340 else
1341 {
1342 stream_session_t *sl = (stream_session_t *) ll;
1343 transport_connection_t *tc;
1344 tc = listen_session_get_transport (sl);
1345 ls->port = tc->lcl_port;
Florin Coras15531972018-08-12 23:50:53 -07001346 sm = app_worker_get_listen_segment_manager (server_wrk, sl);
Florin Corasf8f516a2018-02-08 15:10:09 -08001347 }
1348
1349 seg_index = segment_manager_add_segment (sm, seg_size);
1350 if (seg_index < 0)
1351 {
1352 clib_warning ("failed to add new cut-through segment");
1353 return seg_index;
1354 }
1355 seg = segment_manager_get_segment_w_lock (sm, seg_index);
Florin Coras99368312018-08-02 10:45:44 -07001356 sq = segment_manager_alloc_queue (seg, props);
1357 cq = segment_manager_alloc_queue (seg, cprops);
1358
1359 if (props->use_mq_eventfd)
1360 application_local_session_fix_eventds (sq, cq);
1361
Florin Corasf8f516a2018-02-08 15:10:09 -08001362 ls->server_evt_q = pointer_to_uword (sq);
1363 ls->client_evt_q = pointer_to_uword (cq);
1364 rv = segment_manager_try_alloc_fifos (seg, props->rx_fifo_size,
1365 props->tx_fifo_size,
1366 &ls->server_rx_fifo,
1367 &ls->server_tx_fifo);
1368 if (rv)
1369 {
1370 clib_warning ("failed to add fifos in cut-through segment");
1371 segment_manager_segment_reader_unlock (sm);
1372 goto failed;
1373 }
1374 ls->server_rx_fifo->master_session_index = ls->session_index;
1375 ls->server_tx_fifo->master_session_index = ls->session_index;
1376 ls->server_rx_fifo->master_thread_index = ~0;
1377 ls->server_tx_fifo->master_thread_index = ~0;
1378 ls->svm_segment_index = seg_index;
1379 ls->listener_index = ll->session_index;
Florin Coras15531972018-08-12 23:50:53 -07001380 ls->client_wrk_index = client_wrk->wrk_index;
Florin Corasf8f516a2018-02-08 15:10:09 -08001381 ls->client_opaque = opaque;
1382 ls->listener_session_type = ll->session_type;
1383
1384 if ((rv = server->cb_fns.add_segment_callback (server->api_client_index,
1385 &seg->ssvm)))
1386 {
1387 clib_warning ("failed to notify server of new segment");
1388 segment_manager_segment_reader_unlock (sm);
1389 goto failed;
1390 }
1391 segment_manager_segment_reader_unlock (sm);
1392 if ((rv = server->cb_fns.session_accept_callback ((stream_session_t *) ls)))
1393 {
1394 clib_warning ("failed to send accept cut-through notify to server");
1395 goto failed;
1396 }
1397 if (server->flags & APP_OPTIONS_FLAGS_IS_BUILTIN)
1398 application_local_session_connect_notify (ls);
1399
1400 return 0;
1401
1402failed:
1403 if (!has_transport)
1404 segment_manager_del_segment (sm, seg);
1405 return rv;
1406}
1407
1408static uword
1409application_client_local_connect_key (local_session_t * ls)
1410{
Florin Coras15531972018-08-12 23:50:53 -07001411 return ((uword) ls->app_wrk_index << 32 | (uword) ls->session_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001412}
1413
1414static void
Florin Coras15531972018-08-12 23:50:53 -07001415application_client_local_connect_key_parse (uword key, u32 * app_wrk_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08001416 u32 * session_index)
1417{
Florin Coras15531972018-08-12 23:50:53 -07001418 *app_wrk_index = key >> 32;
Florin Corasf8f516a2018-02-08 15:10:09 -08001419 *session_index = key & 0xFFFFFFFF;
1420}
1421
1422int
1423application_local_session_connect_notify (local_session_t * ls)
1424{
1425 svm_fifo_segment_private_t *seg;
Florin Coras15531972018-08-12 23:50:53 -07001426 app_worker_t *client_wrk, *server_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08001427 segment_manager_t *sm;
Florin Coras15531972018-08-12 23:50:53 -07001428 application_t *client;
Florin Corasf8f516a2018-02-08 15:10:09 -08001429 int rv, is_fail = 0;
1430 uword client_key;
1431
Florin Coras15531972018-08-12 23:50:53 -07001432 client_wrk = app_worker_get (ls->client_wrk_index);
1433 server_wrk = app_worker_get (ls->app_wrk_index);
1434 client = application_get (client_wrk->app_index);
1435
1436 sm = application_get_local_segment_manager_w_session (server_wrk, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001437 seg = segment_manager_get_segment_w_lock (sm, ls->svm_segment_index);
1438 if ((rv = client->cb_fns.add_segment_callback (client->api_client_index,
1439 &seg->ssvm)))
1440 {
1441 clib_warning ("failed to notify client %u of new segment",
Florin Coras15531972018-08-12 23:50:53 -07001442 ls->client_wrk_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001443 segment_manager_segment_reader_unlock (sm);
Florin Coras15531972018-08-12 23:50:53 -07001444 application_local_session_disconnect (ls->client_wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001445 is_fail = 1;
1446 }
1447 else
1448 {
1449 segment_manager_segment_reader_unlock (sm);
1450 }
1451
Florin Coras15531972018-08-12 23:50:53 -07001452 client->cb_fns.session_connected_callback (client_wrk->wrk_index,
1453 ls->client_opaque,
Florin Corasf8f516a2018-02-08 15:10:09 -08001454 (stream_session_t *) ls,
1455 is_fail);
1456
1457 client_key = application_client_local_connect_key (ls);
Florin Coras15531972018-08-12 23:50:53 -07001458 hash_set (client_wrk->local_connects, client_key, client_key);
Florin Corasf8f516a2018-02-08 15:10:09 -08001459 return 0;
1460}
1461
1462int
Florin Coras15531972018-08-12 23:50:53 -07001463application_local_session_cleanup (app_worker_t * client_wrk,
1464 app_worker_t * server_wrk,
Florin Corasf6647e02018-03-23 22:56:43 -07001465 local_session_t * ls)
Florin Corasf8f516a2018-02-08 15:10:09 -08001466{
1467 svm_fifo_segment_private_t *seg;
Florin Corasf8f516a2018-02-08 15:10:09 -08001468 segment_manager_t *sm;
1469 uword client_key;
Florin Corasf6647e02018-03-23 22:56:43 -07001470 u8 has_transport;
1471
1472 has_transport = session_has_transport ((stream_session_t *) ls);
1473 client_key = application_client_local_connect_key (ls);
1474 if (!has_transport)
Florin Coras15531972018-08-12 23:50:53 -07001475 sm = application_get_local_segment_manager_w_session (server_wrk, ls);
Florin Corasf6647e02018-03-23 22:56:43 -07001476 else
Florin Coras15531972018-08-12 23:50:53 -07001477 sm = app_worker_get_listen_segment_manager (server_wrk,
1478 (stream_session_t *) ls);
Florin Corasf6647e02018-03-23 22:56:43 -07001479
1480 seg = segment_manager_get_segment (sm, ls->svm_segment_index);
Florin Coras15531972018-08-12 23:50:53 -07001481 if (client_wrk)
1482 hash_unset (client_wrk->local_connects, client_key);
Florin Corasf6647e02018-03-23 22:56:43 -07001483
1484 if (!has_transport)
1485 {
Florin Coras15531972018-08-12 23:50:53 -07001486 application_t *server = application_get (server_wrk->app_index);
Florin Corasf6647e02018-03-23 22:56:43 -07001487 server->cb_fns.del_segment_callback (server->api_client_index,
1488 &seg->ssvm);
Florin Coras15531972018-08-12 23:50:53 -07001489 if (client_wrk)
1490 {
1491 application_t *client = application_get (client_wrk->app_index);
1492 client->cb_fns.del_segment_callback (client->api_client_index,
1493 &seg->ssvm);
1494 }
Florin Corasf6647e02018-03-23 22:56:43 -07001495 segment_manager_del_segment (sm, seg);
1496 }
1497
Florin Coras15531972018-08-12 23:50:53 -07001498 application_free_local_session (server_wrk, ls);
Florin Corasf6647e02018-03-23 22:56:43 -07001499
1500 return 0;
1501}
1502
1503int
Florin Coras15531972018-08-12 23:50:53 -07001504application_local_session_disconnect (u32 app_wrk_index, local_session_t * ls)
Florin Corasf6647e02018-03-23 22:56:43 -07001505{
Florin Coras15531972018-08-12 23:50:53 -07001506 app_worker_t *client_wrk, *server_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08001507
Florin Coras15531972018-08-12 23:50:53 -07001508 client_wrk = app_worker_get_if_valid (ls->client_wrk_index);
1509 server_wrk = app_worker_get (ls->app_wrk_index);
1510
Florin Corasf8f516a2018-02-08 15:10:09 -08001511
1512 if (ls->session_state == SESSION_STATE_CLOSED)
Florin Coras15531972018-08-12 23:50:53 -07001513 return application_local_session_cleanup (client_wrk, server_wrk, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001514
Florin Coras15531972018-08-12 23:50:53 -07001515 if (app_wrk_index == ls->client_wrk_index)
Florin Corasf8f516a2018-02-08 15:10:09 -08001516 {
Florin Coras15531972018-08-12 23:50:53 -07001517 mq_send_local_session_disconnected_cb (ls->app_wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001518 }
1519 else
1520 {
Florin Coras15531972018-08-12 23:50:53 -07001521 if (!client_wrk)
Florin Corasf8f516a2018-02-08 15:10:09 -08001522 {
Florin Coras15531972018-08-12 23:50:53 -07001523 return application_local_session_cleanup (client_wrk, server_wrk,
1524 ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001525 }
1526 else if (ls->session_state < SESSION_STATE_READY)
1527 {
Florin Coras15531972018-08-12 23:50:53 -07001528 application_t *client = application_get (client_wrk->app_index);
1529 client->cb_fns.session_connected_callback (client_wrk->wrk_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08001530 ls->client_opaque,
1531 (stream_session_t *) ls,
1532 1 /* is_fail */ );
1533 ls->session_state = SESSION_STATE_CLOSED;
Florin Coras15531972018-08-12 23:50:53 -07001534 return application_local_session_cleanup (client_wrk, server_wrk,
1535 ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001536 }
1537 else
1538 {
Florin Coras15531972018-08-12 23:50:53 -07001539 mq_send_local_session_disconnected_cb (client_wrk->wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001540 }
1541 }
1542
1543 ls->session_state = SESSION_STATE_CLOSED;
1544
1545 return 0;
1546}
1547
Florin Corasf6647e02018-03-23 22:56:43 -07001548int
Florin Coras15531972018-08-12 23:50:53 -07001549application_local_session_disconnect_w_index (u32 app_wrk_index, u32 ls_index)
Florin Corasf6647e02018-03-23 22:56:43 -07001550{
Florin Coras15531972018-08-12 23:50:53 -07001551 app_worker_t *app_wrk;
Florin Corasf6647e02018-03-23 22:56:43 -07001552 local_session_t *ls;
Florin Coras15531972018-08-12 23:50:53 -07001553 app_wrk = app_worker_get (app_wrk_index);
1554 ls = application_get_local_session (app_wrk, ls_index);
1555 return application_local_session_disconnect (app_wrk_index, ls);
Florin Corasf6647e02018-03-23 22:56:43 -07001556}
1557
Florin Corasf8f516a2018-02-08 15:10:09 -08001558void
Florin Coras15531972018-08-12 23:50:53 -07001559application_local_sessions_free (app_worker_t * app_wrk)
Florin Corasf8f516a2018-02-08 15:10:09 -08001560{
Florin Coras15531972018-08-12 23:50:53 -07001561 u32 index, server_wrk_index, session_index, table_index;
Florin Corasf8f516a2018-02-08 15:10:09 -08001562 segment_manager_t *sm;
1563 u64 handle, *handles = 0;
1564 local_session_t *ls, *ll;
Florin Coras15531972018-08-12 23:50:53 -07001565 app_worker_t *server_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08001566 session_endpoint_t sep;
Florin Coras15531972018-08-12 23:50:53 -07001567 application_t *app;
Florin Corasf8f516a2018-02-08 15:10:09 -08001568 int i;
1569
1570 /*
1571 * Local listens. Don't bother with local sessions, we clean them lower
1572 */
Florin Coras15531972018-08-12 23:50:53 -07001573 app = application_get (app_wrk->app_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001574 table_index = application_local_session_table (app);
1575 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001576 pool_foreach (ll, app_wrk->local_listen_sessions, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08001577 application_local_listener_session_endpoint (ll, &sep);
1578 session_lookup_del_session_endpoint (table_index, &sep);
1579 }));
1580 /* *INDENT-ON* */
1581
1582 /*
1583 * Local sessions
1584 */
Florin Coras15531972018-08-12 23:50:53 -07001585 if (app_wrk->local_sessions)
Florin Corasf8f516a2018-02-08 15:10:09 -08001586 {
1587 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001588 pool_foreach (ls, app_wrk->local_sessions, ({
1589 application_local_session_disconnect (app_wrk->wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001590 }));
1591 /* *INDENT-ON* */
1592 }
1593
1594 /*
1595 * Local connects
1596 */
1597 vec_reset_length (handles);
1598 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001599 hash_foreach (handle, index, app_wrk->local_connects, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08001600 vec_add1 (handles, handle);
1601 }));
1602 /* *INDENT-ON* */
1603
1604 for (i = 0; i < vec_len (handles); i++)
1605 {
Florin Coras15531972018-08-12 23:50:53 -07001606 application_client_local_connect_key_parse (handles[i],
1607 &server_wrk_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08001608 &session_index);
Florin Coras15531972018-08-12 23:50:53 -07001609 server_wrk = app_worker_get_if_valid (server_wrk_index);
1610 if (server_wrk)
Florin Corasf8f516a2018-02-08 15:10:09 -08001611 {
Florin Coras15531972018-08-12 23:50:53 -07001612 ls = application_get_local_session (server_wrk, session_index);
1613 application_local_session_disconnect (app_wrk->wrk_index, ls);
Florin Corasf8f516a2018-02-08 15:10:09 -08001614 }
1615 }
1616
Florin Coras15531972018-08-12 23:50:53 -07001617 sm = segment_manager_get (app_wrk->local_segment_manager);
1618 sm->app_wrk_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
Florin Corasf8f516a2018-02-08 15:10:09 -08001619 segment_manager_del (sm);
1620}
1621
Florin Coras371ca502018-02-21 12:07:41 -08001622clib_error_t *
1623vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a)
1624{
1625 application_t *app;
1626 app = application_get (a->app_index);
1627 if (!app)
1628 return clib_error_return_code (0, VNET_API_ERROR_APPLICATION_NOT_ATTACHED,
1629 0, "app %u doesn't exist", a->app_index);
1630 app->tls_cert = vec_dup (a->cert);
1631 return 0;
1632}
1633
1634clib_error_t *
1635vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a)
1636{
1637 application_t *app;
1638 app = application_get (a->app_index);
1639 if (!app)
1640 return clib_error_return_code (0, VNET_API_ERROR_APPLICATION_NOT_ATTACHED,
1641 0, "app %u doesn't exist", a->app_index);
1642 app->tls_key = vec_dup (a->key);
1643 return 0;
1644}
1645
Dave Barach68b0fb02017-02-28 15:15:56 -05001646u8 *
Florin Coras15531972018-08-12 23:50:53 -07001647format_app_worker_listener (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -05001648{
Florin Coras15531972018-08-12 23:50:53 -07001649 app_worker_t *app_wrk = va_arg (*args, app_worker_t *);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001650 u64 handle = va_arg (*args, u64);
Florin Corasf8f516a2018-02-08 15:10:09 -08001651 u32 sm_index = va_arg (*args, u32);
Dave Barach68b0fb02017-02-28 15:15:56 -05001652 int verbose = va_arg (*args, int);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001653 stream_session_t *listener;
Florin Coras15531972018-08-12 23:50:53 -07001654 application_t *app;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001655 u8 *app_name, *str;
Dave Barach68b0fb02017-02-28 15:15:56 -05001656
Florin Coras15531972018-08-12 23:50:53 -07001657 if (!app_wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -05001658 {
1659 if (verbose)
Florin Coras15531972018-08-12 23:50:53 -07001660 s = format (s, "%-40s%-25s%-15s%-15s%-10s", "Connection", "App",
Florin Coras6cf30ad2017-04-04 23:08:23 -07001661 "API Client", "ListenerID", "SegManager");
Dave Barach68b0fb02017-02-28 15:15:56 -05001662 else
Florin Coras15531972018-08-12 23:50:53 -07001663 s = format (s, "%-40s%-25s", "Connection", "App");
Dave Barach68b0fb02017-02-28 15:15:56 -05001664
1665 return s;
1666 }
1667
Florin Coras15531972018-08-12 23:50:53 -07001668 app = application_get (app_wrk->app_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001669 app_name = app_get_name_from_reg_index (app);
1670 listener = listen_session_get_from_handle (handle);
1671 str = format (0, "%U", format_stream_session, listener, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -05001672
Dave Barach68b0fb02017-02-28 15:15:56 -05001673 if (verbose)
1674 {
Florin Coras15531972018-08-12 23:50:53 -07001675 s = format (s, "%-40s%-25s%-15u%-15u%-10u", str, app_name,
Florin Corasf8f516a2018-02-08 15:10:09 -08001676 app->api_client_index, handle, sm_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001677 }
1678 else
Florin Coras15531972018-08-12 23:50:53 -07001679 s = format (s, "%-40s%-25s", str, app_name);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001680
1681 vec_free (app_name);
1682 return s;
1683}
1684
Florin Coras15531972018-08-12 23:50:53 -07001685static void
1686application_format_listeners (application_t * app, int verbose)
1687{
1688 vlib_main_t *vm = vlib_get_main ();
1689 app_worker_map_t *wrk_map;
1690 app_worker_t *app_wrk;
1691 u32 sm_index;
1692 u64 handle;
1693
1694 if (!app)
1695 {
1696 vlib_cli_output (vm, "%U", format_app_worker_listener, 0 /* header */ ,
1697 0, 0, verbose);
1698 return;
1699 }
1700
1701 /* *INDENT-OFF* */
1702 pool_foreach (wrk_map, app->worker_maps, ({
1703 app_wrk = app_worker_get (wrk_map->wrk_index);
1704 if (hash_elts (app_wrk->listeners_table) == 0)
1705 continue;
1706 hash_foreach (handle, sm_index, app_wrk->listeners_table, ({
1707 vlib_cli_output (vm, "%U", format_app_worker_listener, app_wrk,
1708 handle, sm_index, verbose);
1709 }));
1710 }));
1711 /* *INDENT-ON* */
1712}
1713
1714static void
1715app_worker_format_connects (app_worker_t * app_wrk, int verbose)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001716{
Florin Corasa332c462018-01-31 06:52:17 -08001717 svm_fifo_segment_private_t *fifo_segment;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001718 vlib_main_t *vm = vlib_get_main ();
1719 segment_manager_t *sm;
1720 u8 *app_name, *s = 0;
Florin Coras15531972018-08-12 23:50:53 -07001721 application_t *app;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001722
1723 /* Header */
Florin Coras15531972018-08-12 23:50:53 -07001724 if (!app_wrk)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001725 {
1726 if (verbose)
1727 vlib_cli_output (vm, "%-40s%-20s%-15s%-10s", "Connection", "App",
1728 "API Client", "SegManager");
1729 else
1730 vlib_cli_output (vm, "%-40s%-20s", "Connection", "App");
1731 return;
1732 }
1733
Florin Coras15531972018-08-12 23:50:53 -07001734 app = application_get (app_wrk->app_index);
1735 if (app_wrk->connects_seg_manager == (u32) ~ 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001736 return;
1737
1738 app_name = app_get_name_from_reg_index (app);
1739
1740 /* Across all fifo segments */
Florin Coras15531972018-08-12 23:50:53 -07001741 sm = segment_manager_get (app_wrk->connects_seg_manager);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001742
Florin Corasa332c462018-01-31 06:52:17 -08001743 /* *INDENT-OFF* */
1744 segment_manager_foreach_segment_w_lock (fifo_segment, sm, ({
1745 svm_fifo_t *fifo;
1746 u8 *str;
1747
1748 fifo = svm_fifo_segment_get_fifo_list (fifo_segment);
1749 while (fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001750 {
Florin Coras6cf30ad2017-04-04 23:08:23 -07001751 u32 session_index, thread_index;
1752 stream_session_t *session;
1753
Florin Corasa5464812017-04-19 13:00:05 -07001754 session_index = fifo->master_session_index;
1755 thread_index = fifo->master_thread_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001756
Florin Corascea194d2017-10-02 00:18:51 -07001757 session = session_get (session_index, thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001758 str = format (0, "%U", format_stream_session, session, verbose);
1759
1760 if (verbose)
1761 s = format (s, "%-40s%-20s%-15u%-10u", str, app_name,
Florin Coras15531972018-08-12 23:50:53 -07001762 app->api_client_index, app_wrk->connects_seg_manager);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001763 else
1764 s = format (s, "%-40s%-20s", str, app_name);
1765
1766 vlib_cli_output (vm, "%v", s);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001767 vec_reset_length (s);
1768 vec_free (str);
Dave Barach10d8cc62017-05-30 09:30:07 -04001769
1770 fifo = fifo->next;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001771 }
Florin Corasa332c462018-01-31 06:52:17 -08001772 vec_free (s);
1773 }));
1774 /* *INDENT-ON* */
Florin Coras6cf30ad2017-04-04 23:08:23 -07001775
1776 vec_free (app_name);
1777}
1778
Florin Coras15531972018-08-12 23:50:53 -07001779static void
1780application_format_connects (application_t * app, int verbose)
1781{
1782 app_worker_map_t *wrk_map;
1783 app_worker_t *app_wrk;
1784
1785 if (!app)
1786 {
1787 app_worker_format_connects (0, verbose);
1788 return;
1789 }
1790
1791 /* *INDENT-OFF* */
1792 pool_foreach (wrk_map, app->worker_maps, ({
1793 app_wrk = app_worker_get (wrk_map->wrk_index);
1794 app_worker_format_connects (app_wrk, verbose);
1795 }));
1796 /* *INDENT-ON* */
1797}
1798
1799static void
1800app_worker_format_local_sessions (app_worker_t * app_wrk, int verbose)
Florin Corasf8f516a2018-02-08 15:10:09 -08001801{
1802 vlib_main_t *vm = vlib_get_main ();
1803 local_session_t *ls;
1804 transport_proto_t tp;
1805 u8 *conn = 0;
1806
1807 /* Header */
Florin Coras15531972018-08-12 23:50:53 -07001808 if (app_wrk == 0)
Florin Corasf8f516a2018-02-08 15:10:09 -08001809 {
1810 vlib_cli_output (vm, "%-40s%-15s%-20s", "Connection", "ServerApp",
1811 "ClientApp");
1812 return;
1813 }
1814
Florin Coras15531972018-08-12 23:50:53 -07001815 if (!pool_elts (app_wrk->local_sessions)
1816 && !pool_elts (app_wrk->local_connects))
1817 return;
1818
Florin Corasf8f516a2018-02-08 15:10:09 -08001819 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001820 pool_foreach (ls, app_wrk->local_listen_sessions, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08001821 tp = session_type_transport_proto(ls->listener_session_type);
1822 conn = format (0, "[L][%U] *:%u", format_transport_proto_short, tp,
1823 ls->port);
Florin Coras15531972018-08-12 23:50:53 -07001824 vlib_cli_output (vm, "%-40v%-15u%-20s", conn, ls->app_wrk_index, "*");
Florin Corasf8f516a2018-02-08 15:10:09 -08001825 vec_reset_length (conn);
1826 }));
Florin Coras15531972018-08-12 23:50:53 -07001827 pool_foreach (ls, app_wrk->local_sessions, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08001828 tp = session_type_transport_proto(ls->listener_session_type);
1829 conn = format (0, "[L][%U] *:%u", format_transport_proto_short, tp,
1830 ls->port);
Florin Coras15531972018-08-12 23:50:53 -07001831 vlib_cli_output (vm, "%-40v%-15u%-20u", conn, ls->app_wrk_index,
1832 ls->client_wrk_index);
Florin Corasf8f516a2018-02-08 15:10:09 -08001833 vec_reset_length (conn);
1834 }));
1835 /* *INDENT-ON* */
1836
1837 vec_free (conn);
1838}
1839
Florin Coras15531972018-08-12 23:50:53 -07001840static void
1841application_format_local_sessions (application_t * app, int verbose)
1842{
1843 app_worker_map_t *wrk_map;
1844 app_worker_t *app_wrk;
1845
1846 if (!app)
1847 {
1848 app_worker_format_local_sessions (0, verbose);
1849 return;
1850 }
1851
1852 /* *INDENT-OFF* */
1853 pool_foreach (wrk_map, app->worker_maps, ({
1854 app_wrk = app_worker_get (wrk_map->wrk_index);
1855 app_worker_format_local_sessions (app_wrk, verbose);
1856 }));
1857 /* *INDENT-ON* */
1858}
1859
1860static void
1861app_worker_format_local_connects (app_worker_t * app, int verbose)
Florin Corasf8f516a2018-02-08 15:10:09 -08001862{
1863 vlib_main_t *vm = vlib_get_main ();
Florin Coras15531972018-08-12 23:50:53 -07001864 u32 app_wrk_index, session_index;
1865 app_worker_t *server_wrk;
Florin Corasf8f516a2018-02-08 15:10:09 -08001866 local_session_t *ls;
1867 uword client_key;
1868 u64 value;
1869
1870 /* Header */
1871 if (app == 0)
1872 {
1873 if (verbose)
1874 vlib_cli_output (vm, "%-40s%-15s%-20s%-10s", "Connection", "App",
1875 "Peer App", "SegManager");
1876 else
1877 vlib_cli_output (vm, "%-40s%-15s%-20s", "Connection", "App",
1878 "Peer App");
1879 return;
1880 }
1881
Florin Coras15531972018-08-12 23:50:53 -07001882 if (!app->local_connects)
1883 return;
1884
Florin Corasf8f516a2018-02-08 15:10:09 -08001885 /* *INDENT-OFF* */
1886 hash_foreach (client_key, value, app->local_connects, ({
Florin Coras15531972018-08-12 23:50:53 -07001887 application_client_local_connect_key_parse (client_key, &app_wrk_index,
Florin Corasf8f516a2018-02-08 15:10:09 -08001888 &session_index);
Florin Coras15531972018-08-12 23:50:53 -07001889 server_wrk = app_worker_get (app_wrk_index);
1890 ls = application_get_local_session (server_wrk, session_index);
1891 vlib_cli_output (vm, "%-40s%-15s%-20s", "TODO", ls->app_wrk_index,
1892 ls->client_wrk_index);
1893 }));
1894 /* *INDENT-ON* */
1895}
1896
1897static void
1898application_format_local_connects (application_t * app, int verbose)
1899{
1900 app_worker_map_t *wrk_map;
1901 app_worker_t *app_wrk;
1902
1903 if (!app)
1904 {
1905 app_worker_format_local_connects (0, verbose);
1906 return;
1907 }
1908
1909 /* *INDENT-OFF* */
1910 pool_foreach (wrk_map, app->worker_maps, ({
1911 app_wrk = app_worker_get (wrk_map->wrk_index);
1912 app_worker_format_local_connects (app_wrk, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08001913 }));
1914 /* *INDENT-ON* */
1915}
1916
Florin Coras6cf30ad2017-04-04 23:08:23 -07001917u8 *
1918format_application (u8 * s, va_list * args)
1919{
1920 application_t *app = va_arg (*args, application_t *);
1921 CLIB_UNUSED (int verbose) = va_arg (*args, int);
Florin Corasad0c77f2017-11-09 18:00:15 -08001922 segment_manager_properties_t *props;
Florin Corascea194d2017-10-02 00:18:51 -07001923 const u8 *app_ns_name;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001924 u8 *app_name;
1925
1926 if (app == 0)
1927 {
1928 if (verbose)
Florin Corascea194d2017-10-02 00:18:51 -07001929 s = format (s, "%-10s%-20s%-15s%-15s%-15s%-15s%-15s", "Index", "Name",
Florin Coras078371e2018-05-11 09:20:12 -07001930 "API Client", "Namespace", "Add seg size", "Rx-f size",
1931 "Tx-f size");
Florin Coras6cf30ad2017-04-04 23:08:23 -07001932 else
Florin Coras0bee9ce2018-03-22 21:24:31 -07001933 s = format (s, "%-10s%-20s%-15s%-40s", "Index", "Name", "API Client",
1934 "Namespace");
Florin Coras6cf30ad2017-04-04 23:08:23 -07001935 return s;
1936 }
1937
Florin Coras0bee9ce2018-03-22 21:24:31 -07001938 app_name = app_get_name (app);
Florin Corascea194d2017-10-02 00:18:51 -07001939 app_ns_name = app_namespace_id_from_index (app->ns_index);
Florin Corasa332c462018-01-31 06:52:17 -08001940 props = application_segment_manager_properties (app);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001941 if (verbose)
Florin Coras15531972018-08-12 23:50:53 -07001942 s = format (s, "%-10u%-20s%-15d%-15u%-15U%-15U%-15U", app->app_index,
Florin Coras0bee9ce2018-03-22 21:24:31 -07001943 app_name, app->api_client_index, app->ns_index,
Florin Coras078371e2018-05-11 09:20:12 -07001944 format_memory_size, props->add_segment_size,
1945 format_memory_size, props->rx_fifo_size, format_memory_size,
Florin Coras0bee9ce2018-03-22 21:24:31 -07001946 props->tx_fifo_size);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001947 else
Florin Coras15531972018-08-12 23:50:53 -07001948 s = format (s, "%-10u%-20s%-15d%-40s", app->app_index, app_name,
Florin Coras8f107b32017-11-21 22:13:03 -08001949 app->api_client_index, app_ns_name);
Dave Barach68b0fb02017-02-28 15:15:56 -05001950 return s;
1951}
1952
Florin Corasf8f516a2018-02-08 15:10:09 -08001953void
1954application_format_all_listeners (vlib_main_t * vm, int do_local, int verbose)
1955{
1956 application_t *app;
Florin Corasf8f516a2018-02-08 15:10:09 -08001957
Florin Coras15531972018-08-12 23:50:53 -07001958 if (!pool_elts (app_main.app_pool))
Florin Corasf8f516a2018-02-08 15:10:09 -08001959 {
1960 vlib_cli_output (vm, "No active server bindings");
1961 return;
1962 }
1963
1964 if (do_local)
1965 {
1966 application_format_local_sessions (0, verbose);
1967 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001968 pool_foreach (app, app_main.app_pool, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08001969 application_format_local_sessions (app, verbose);
1970 }));
1971 /* *INDENT-ON* */
1972 }
1973 else
1974 {
Florin Coras15531972018-08-12 23:50:53 -07001975 application_format_listeners (0, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08001976
1977 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07001978 pool_foreach (app, app_main.app_pool, ({
1979 application_format_listeners (app, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08001980 }));
1981 /* *INDENT-ON* */
1982 }
1983}
1984
1985void
1986application_format_all_clients (vlib_main_t * vm, int do_local, int verbose)
1987{
1988 application_t *app;
1989
Florin Coras15531972018-08-12 23:50:53 -07001990 if (!pool_elts (app_main.app_pool))
Florin Corasf8f516a2018-02-08 15:10:09 -08001991 {
1992 vlib_cli_output (vm, "No active apps");
1993 return;
1994 }
1995
1996 if (do_local)
1997 {
1998 application_format_local_connects (0, verbose);
1999
2000 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002001 pool_foreach (app, app_main.app_pool, ({
2002 application_format_local_connects (app, verbose);
Florin Corasf8f516a2018-02-08 15:10:09 -08002003 }));
2004 /* *INDENT-ON* */
2005 }
2006 else
2007 {
2008 application_format_connects (0, verbose);
2009
2010 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002011 pool_foreach (app, app_main.app_pool, ({
Florin Corasf8f516a2018-02-08 15:10:09 -08002012 application_format_connects (app, verbose);
2013 }));
2014 /* *INDENT-ON* */
2015 }
2016}
2017
Dave Barach68b0fb02017-02-28 15:15:56 -05002018static clib_error_t *
2019show_app_command_fn (vlib_main_t * vm, unformat_input_t * input,
2020 vlib_cli_command_t * cmd)
2021{
Florin Corasf8f516a2018-02-08 15:10:09 -08002022 int do_server = 0, do_client = 0, do_local = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002023 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -05002024 int verbose = 0;
2025
Florin Corascea194d2017-10-02 00:18:51 -07002026 session_cli_return_if_not_enabled ();
Florin Corase04c2992017-03-01 08:17:34 -08002027
Dave Barach68b0fb02017-02-28 15:15:56 -05002028 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2029 {
2030 if (unformat (input, "server"))
2031 do_server = 1;
2032 else if (unformat (input, "client"))
2033 do_client = 1;
Florin Corasf8f516a2018-02-08 15:10:09 -08002034 else if (unformat (input, "local"))
2035 do_local = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002036 else if (unformat (input, "verbose"))
2037 verbose = 1;
2038 else
2039 break;
2040 }
2041
2042 if (do_server)
Florin Corasf8f516a2018-02-08 15:10:09 -08002043 application_format_all_listeners (vm, do_local, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -05002044
2045 if (do_client)
Florin Corasf8f516a2018-02-08 15:10:09 -08002046 application_format_all_clients (vm, do_local, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -05002047
Florin Coras6cf30ad2017-04-04 23:08:23 -07002048 /* Print app related info */
2049 if (!do_server && !do_client)
2050 {
2051 vlib_cli_output (vm, "%U", format_application, 0, verbose);
Florin Corascea194d2017-10-02 00:18:51 -07002052 /* *INDENT-OFF* */
Florin Coras15531972018-08-12 23:50:53 -07002053 pool_foreach (app, app_main.app_pool, ({
Florin Corascea194d2017-10-02 00:18:51 -07002054 vlib_cli_output (vm, "%U", format_application, app, verbose);
2055 }));
2056 /* *INDENT-ON* */
Florin Coras6cf30ad2017-04-04 23:08:23 -07002057 }
2058
Dave Barach68b0fb02017-02-28 15:15:56 -05002059 return 0;
2060}
2061
Florin Corase04c2992017-03-01 08:17:34 -08002062/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002063VLIB_CLI_COMMAND (show_app_command, static) =
2064{
Florin Corase04c2992017-03-01 08:17:34 -08002065 .path = "show app",
2066 .short_help = "show app [server|client] [verbose]",
2067 .function = show_app_command_fn,
2068};
2069/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002070
2071/*
2072 * fd.io coding-style-patch-verification: ON
2073 *
2074 * Local Variables:
2075 * eval: (c-set-style "gnu")
2076 * End:
2077 */