blob: 2b789c5f42077221755871769e983f6bc9c96562 [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>
Dave Barach68b0fb02017-02-28 15:15:56 -050018#include <vnet/session/session.h>
19
Florin Coras6cf30ad2017-04-04 23:08:23 -070020/**
Dave Barach68b0fb02017-02-28 15:15:56 -050021 * Pool from which we allocate all applications
22 */
23static application_t *app_pool;
24
Florin Coras6cf30ad2017-04-04 23:08:23 -070025/**
Dave Barach68b0fb02017-02-28 15:15:56 -050026 * Hash table of apps by api client index
27 */
28static uword *app_by_api_client_index;
29
Florin Coras6cf30ad2017-04-04 23:08:23 -070030/**
31 * Default application event queue size
32 */
33static u32 default_app_evt_queue_size = 128;
34
Dave Barach68b0fb02017-02-28 15:15:56 -050035int
36application_api_queue_is_full (application_t * app)
37{
38 unix_shared_memory_queue_t *q;
39
40 /* builtin servers are always OK */
41 if (app->api_client_index == ~0)
42 return 0;
43
44 q = vl_api_client_index_to_input_queue (app->api_client_index);
45 if (!q)
46 return 1;
47
48 if (q->cursize == q->maxsize)
49 return 1;
50 return 0;
51}
52
53static void
54application_table_add (application_t * app)
55{
56 hash_set (app_by_api_client_index, app->api_client_index, app->index);
57}
58
59static void
60application_table_del (application_t * app)
61{
62 hash_unset (app_by_api_client_index, app->api_client_index);
63}
64
65application_t *
66application_lookup (u32 api_client_index)
67{
68 uword *p;
69 p = hash_get (app_by_api_client_index, api_client_index);
70 if (p)
71 return application_get (p[0]);
72
73 return 0;
74}
75
Florin Coras6cf30ad2017-04-04 23:08:23 -070076application_t *
77application_new ()
78{
79 application_t *app;
80 pool_get (app_pool, app);
81 memset (app, 0, sizeof (*app));
82 app->index = application_get_index (app);
Florin Corasc87c91d2017-08-16 19:55:49 -070083 app->connects_seg_manager = APP_INVALID_SEGMENT_MANAGER_INDEX;
84 app->first_segment_manager = APP_INVALID_SEGMENT_MANAGER_INDEX;
Dave Wallace7b749fe2017-07-05 14:30:46 -040085 if (CLIB_DEBUG > 1)
86 clib_warning ("[%d] New app (%d)", getpid (), app->index);
Florin Coras6cf30ad2017-04-04 23:08:23 -070087 return app;
88}
89
Dave Barach68b0fb02017-02-28 15:15:56 -050090void
91application_del (application_t * app)
92{
Florin Coras6cf30ad2017-04-04 23:08:23 -070093 segment_manager_t *sm;
94 u64 handle;
95 u32 index, *handles = 0;
96 int i;
97 vnet_unbind_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -050098
Florin Coras6cf30ad2017-04-04 23:08:23 -070099 /*
Florin Corasa5464812017-04-19 13:00:05 -0700100 * The app event queue allocated in first segment is cleared with
101 * the segment manager. No need to explicitly free it.
102 */
Dave Wallace7b749fe2017-07-05 14:30:46 -0400103 if (CLIB_DEBUG > 1)
104 clib_warning ("[%d] Delete app (%d)", getpid (), app->index);
Florin Corasa5464812017-04-19 13:00:05 -0700105
106 /*
Florin Corasc87c91d2017-08-16 19:55:49 -0700107 * Listener cleanup
Florin Coras6cf30ad2017-04-04 23:08:23 -0700108 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500109
Florin Coras6cf30ad2017-04-04 23:08:23 -0700110 /* *INDENT-OFF* */
111 hash_foreach (handle, index, app->listeners_table,
112 ({
113 vec_add1 (handles, handle);
Florin Coras9d063042017-09-14 03:08:00 -0400114 sm = segment_manager_get (index);
115 sm->app_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700116 }));
117 /* *INDENT-ON* */
118
Florin Coras6cf30ad2017-04-04 23:08:23 -0700119 for (i = 0; i < vec_len (handles); i++)
120 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700121 a->app_index = app->index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700122 a->handle = handles[i];
123 /* seg manager is removed when unbind completes */
124 vnet_unbind (a);
125 }
126
Florin Corasc87c91d2017-08-16 19:55:49 -0700127 /*
128 * Connects segment manager cleanup
129 */
130
131 if (app->connects_seg_manager != APP_INVALID_SEGMENT_MANAGER_INDEX)
132 {
133 sm = segment_manager_get (app->connects_seg_manager);
134 sm->app_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
135 segment_manager_init_del (sm);
136 }
137
138
139 /* If first segment manager is used by a listener */
140 if (app->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX
141 && app->first_segment_manager != app->connects_seg_manager)
Dave Wallace7b749fe2017-07-05 14:30:46 -0400142 {
143 sm = segment_manager_get (app->first_segment_manager);
Florin Corasc87c91d2017-08-16 19:55:49 -0700144 /* .. and has no fifos, e.g. it might be used for redirected sessions,
145 * remove it */
146 if (!segment_manager_has_fifos (sm))
147 {
148 sm->app_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
149 segment_manager_del (sm);
150 }
Dave Wallace7b749fe2017-07-05 14:30:46 -0400151 }
152
Dave Barach68b0fb02017-02-28 15:15:56 -0500153 application_table_del (app);
Dave Barach68b0fb02017-02-28 15:15:56 -0500154 pool_put (app_pool, app);
155}
156
Florin Corasd79b41e2017-03-04 05:37:52 -0800157static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700158application_verify_cb_fns (session_cb_vft_t * cb_fns)
Florin Corasd79b41e2017-03-04 05:37:52 -0800159{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700160 if (cb_fns->session_accept_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800161 clib_warning ("No accept callback function provided");
Florin Coras6cf30ad2017-04-04 23:08:23 -0700162 if (cb_fns->session_connected_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800163 clib_warning ("No session connected callback function provided");
164 if (cb_fns->session_disconnect_callback == 0)
165 clib_warning ("No session disconnect callback function provided");
166 if (cb_fns->session_reset_callback == 0)
167 clib_warning ("No session reset callback function provided");
168}
169
Florin Coras6cf30ad2017-04-04 23:08:23 -0700170int
171application_init (application_t * app, u32 api_client_index, u64 * options,
172 session_cb_vft_t * cb_fns)
Dave Barach68b0fb02017-02-28 15:15:56 -0500173{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700174 segment_manager_t *sm;
175 segment_manager_properties_t *props;
Florin Corasa5464812017-04-19 13:00:05 -0700176 u32 app_evt_queue_size, first_seg_size;
Florin Corasc87c91d2017-08-16 19:55:49 -0700177 u32 default_rx_fifo_size = 16 << 10, default_tx_fifo_size = 16 << 10;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700178 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500179
Florin Coras6cf30ad2017-04-04 23:08:23 -0700180 app_evt_queue_size = options[APP_EVT_QUEUE_SIZE] > 0 ?
181 options[APP_EVT_QUEUE_SIZE] : default_app_evt_queue_size;
Dave Barach68b0fb02017-02-28 15:15:56 -0500182
Florin Coras6cf30ad2017-04-04 23:08:23 -0700183 /* Setup segment manager */
184 sm = segment_manager_new ();
185 sm->app_index = app->index;
186 props = &app->sm_properties;
187 props->add_segment_size = options[SESSION_OPTIONS_ADD_SEGMENT_SIZE];
188 props->rx_fifo_size = options[SESSION_OPTIONS_RX_FIFO_SIZE];
Florin Corasc87c91d2017-08-16 19:55:49 -0700189 props->rx_fifo_size =
190 props->rx_fifo_size ? props->rx_fifo_size : default_rx_fifo_size;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700191 props->tx_fifo_size = options[SESSION_OPTIONS_TX_FIFO_SIZE];
Florin Corasc87c91d2017-08-16 19:55:49 -0700192 props->tx_fifo_size =
193 props->tx_fifo_size ? props->tx_fifo_size : default_tx_fifo_size;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700194 props->add_segment = props->add_segment_size != 0;
Dave Barach10d8cc62017-05-30 09:30:07 -0400195 props->preallocated_fifo_pairs = options[APP_OPTIONS_PREALLOC_FIFO_PAIRS];
Florin Corasa5464812017-04-19 13:00:05 -0700196 props->use_private_segment = options[APP_OPTIONS_FLAGS]
197 & APP_OPTIONS_FLAGS_BUILTIN_APP;
Dave Barach2c25a622017-06-26 11:35:07 -0400198 props->private_segment_count = options[APP_OPTIONS_PRIVATE_SEGMENT_COUNT];
199 props->private_segment_size = options[APP_OPTIONS_PRIVATE_SEGMENT_SIZE];
Dave Barach68b0fb02017-02-28 15:15:56 -0500200
Florin Corasa5464812017-04-19 13:00:05 -0700201 first_seg_size = options[SESSION_OPTIONS_SEGMENT_SIZE];
202 if ((rv = segment_manager_init (sm, props, first_seg_size)))
Florin Coras6cf30ad2017-04-04 23:08:23 -0700203 return rv;
Florin Corasc87c91d2017-08-16 19:55:49 -0700204 sm->first_is_protected = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500205
Florin Coras6cf30ad2017-04-04 23:08:23 -0700206 app->first_segment_manager = segment_manager_index (sm);
Dave Barach68b0fb02017-02-28 15:15:56 -0500207 app->api_client_index = api_client_index;
Florin Corasa5464812017-04-19 13:00:05 -0700208 app->flags = options[APP_OPTIONS_FLAGS];
Dave Barach68b0fb02017-02-28 15:15:56 -0500209 app->cb_fns = *cb_fns;
210
Florin Corasa5464812017-04-19 13:00:05 -0700211 /* Allocate app event queue in the first shared-memory segment */
212 app->event_queue = segment_manager_alloc_queue (sm, app_evt_queue_size);
213
Florin Corasd79b41e2017-03-04 05:37:52 -0800214 /* Check that the obvious things are properly set up */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700215 application_verify_cb_fns (cb_fns);
Florin Corasd79b41e2017-03-04 05:37:52 -0800216
Dave Barach68b0fb02017-02-28 15:15:56 -0500217 /* Add app to lookup by api_client_index table */
218 application_table_add (app);
219
Florin Coras6cf30ad2017-04-04 23:08:23 -0700220 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500221}
222
223application_t *
224application_get (u32 index)
225{
226 return pool_elt_at_index (app_pool, index);
227}
228
Florin Corase04c2992017-03-01 08:17:34 -0800229application_t *
230application_get_if_valid (u32 index)
231{
232 if (pool_is_free_index (app_pool, index))
233 return 0;
234
235 return pool_elt_at_index (app_pool, index);
236}
237
Dave Barach68b0fb02017-02-28 15:15:56 -0500238u32
239application_get_index (application_t * app)
240{
241 return app - app_pool;
242}
243
Florin Coras6cf30ad2017-04-04 23:08:23 -0700244static segment_manager_t *
245application_alloc_segment_manager (application_t * app)
Dave Barach68b0fb02017-02-28 15:15:56 -0500246{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700247 segment_manager_t *sm = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500248
Florin Corasc87c91d2017-08-16 19:55:49 -0700249 /* If the first segment manager is not in use, don't allocate a new one */
250 if (app->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX
Florin Coras0e9c33b2017-08-14 22:33:41 -0700251 && app->first_segment_manager_in_use == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500252 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700253 sm = segment_manager_get (app->first_segment_manager);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700254 app->first_segment_manager_in_use = 1;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700255 return sm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500256 }
257
Florin Coras6cf30ad2017-04-04 23:08:23 -0700258 sm = segment_manager_new ();
Florin Coras0e9c33b2017-08-14 22:33:41 -0700259 sm->properties = &app->sm_properties;
260
Florin Coras6cf30ad2017-04-04 23:08:23 -0700261 return sm;
262}
263
264/**
265 * Start listening local transport endpoint for requested transport.
266 *
267 * Creates a 'dummy' stream session with state LISTENING to be used in session
268 * lookups, prior to establishing connection. Requests transport to build
269 * it's own specific listening connection.
270 */
271int
272application_start_listen (application_t * srv, session_type_t session_type,
273 transport_endpoint_t * tep, u64 * res)
274{
275 segment_manager_t *sm;
276 stream_session_t *s;
277 u64 handle;
278
279 s = listen_session_new (session_type);
280 s->app_index = srv->index;
281
282 if (stream_session_listen (s, tep))
283 goto err;
284
285 /* Allocate segment manager. All sessions derived out of a listen session
286 * have fifos allocated by the same segment manager. */
287 sm = application_alloc_segment_manager (srv);
288 if (sm == 0)
289 goto err;
290
291 /* Add to app's listener table. Useful to find all child listeners
292 * when app goes down, although, just for unbinding this is not needed */
293 handle = listen_session_get_handle (s);
294 hash_set (srv->listeners_table, handle, segment_manager_index (sm));
295
296 *res = handle;
297 return 0;
298
299err:
300 listen_session_del (s);
301 return -1;
302}
303
304/**
305 * Stop listening on session associated to handle
306 */
307int
308application_stop_listen (application_t * srv, u64 handle)
309{
310 stream_session_t *listener;
311 uword *indexp;
312 segment_manager_t *sm;
313
314 if (srv && hash_get (srv->listeners_table, handle) == 0)
315 {
316 clib_warning ("app doesn't own handle %llu!", handle);
317 return -1;
318 }
319
320 listener = listen_session_get_from_handle (handle);
321 stream_session_stop_listen (listener);
322
323 indexp = hash_get (srv->listeners_table, handle);
324 ASSERT (indexp);
325
326 sm = segment_manager_get (*indexp);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700327 if (srv->first_segment_manager == *indexp)
328 {
Florin Corasc87c91d2017-08-16 19:55:49 -0700329 /* Delete sessions but don't remove segment manager */
Florin Coras0e9c33b2017-08-14 22:33:41 -0700330 srv->first_segment_manager_in_use = 0;
Florin Corasc87c91d2017-08-16 19:55:49 -0700331 segment_manager_del_sessions (sm);
332 }
333 else
334 {
335 segment_manager_init_del (sm);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700336 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700337 hash_unset (srv->listeners_table, handle);
338 listen_session_del (listener);
339
Dave Barach68b0fb02017-02-28 15:15:56 -0500340 return 0;
341}
342
Florin Coras6cf30ad2017-04-04 23:08:23 -0700343int
344application_open_session (application_t * app, session_type_t sst,
345 transport_endpoint_t * tep, u32 api_context)
Dave Barach68b0fb02017-02-28 15:15:56 -0500346{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700347 segment_manager_t *sm;
348 transport_connection_t *tc = 0;
349 int rv;
350
351 /* Make sure we have a segment manager for connects */
352 if (app->connects_seg_manager == (u32) ~ 0)
353 {
354 sm = application_alloc_segment_manager (app);
355 if (sm == 0)
356 return -1;
357 app->connects_seg_manager = segment_manager_index (sm);
358 }
359
360 if ((rv = stream_session_open (app->index, sst, tep, &tc)))
361 return rv;
362
363 /* Store api_context for when the reply comes. Not the nicest thing
Florin Corasab0289a2017-08-14 11:25:25 -0700364 * but better than allocating a separate half-open pool. */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700365 tc->s_index = api_context;
366
367 return 0;
368}
369
370segment_manager_t *
371application_get_connect_segment_manager (application_t * app)
372{
373 ASSERT (app->connects_seg_manager != (u32) ~ 0);
374 return segment_manager_get (app->connects_seg_manager);
375}
376
377segment_manager_t *
378application_get_listen_segment_manager (application_t * app,
379 stream_session_t * s)
380{
381 uword *smp;
382 smp = hash_get (app->listeners_table, listen_session_get_handle (s));
383 ASSERT (smp != 0);
384 return segment_manager_get (*smp);
385}
386
387static u8 *
388app_get_name_from_reg_index (application_t * app)
389{
390 u8 *app_name;
391
Dave Barach68b0fb02017-02-28 15:15:56 -0500392 vl_api_registration_t *regp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700393 regp = vl_api_client_index_to_registration (app->api_client_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500394 if (!regp)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700395 app_name = format (0, "builtin-%d%c", app->index, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500396 else
Florin Coras6cf30ad2017-04-04 23:08:23 -0700397 app_name = format (0, "%s%c", regp->name, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500398
Florin Coras6cf30ad2017-04-04 23:08:23 -0700399 return app_name;
Dave Barach68b0fb02017-02-28 15:15:56 -0500400}
401
Dave Barach52851e62017-08-07 09:35:25 -0400402int
403application_is_proxy (application_t * app)
404{
405 return !(app->flags & APP_OPTIONS_FLAGS_IS_PROXY);
406}
407
Florin Corasc87c91d2017-08-16 19:55:49 -0700408int
409application_add_segment_notify (u32 app_index, u32 fifo_segment_index)
410{
411 application_t *app = application_get (app_index);
412 u32 seg_size = 0;
413 u8 *seg_name;
414
415 /* Send an API message to the external app, to map new segment */
416 ASSERT (app->cb_fns.add_segment_callback);
417
418 segment_manager_get_segment_info (fifo_segment_index, &seg_name, &seg_size);
419 return app->cb_fns.add_segment_callback (app->api_client_index, seg_name,
420 seg_size);
421}
422
Dave Barach68b0fb02017-02-28 15:15:56 -0500423u8 *
Florin Coras6cf30ad2017-04-04 23:08:23 -0700424format_application_listener (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500425{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700426 application_t *app = va_arg (*args, application_t *);
427 u64 handle = va_arg (*args, u64);
428 u32 index = va_arg (*args, u32);
Dave Barach68b0fb02017-02-28 15:15:56 -0500429 int verbose = va_arg (*args, int);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700430 stream_session_t *listener;
431 u8 *app_name, *str;
Dave Barach68b0fb02017-02-28 15:15:56 -0500432
Florin Coras6cf30ad2017-04-04 23:08:23 -0700433 if (app == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500434 {
435 if (verbose)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700436 s = format (s, "%-40s%-20s%-15s%-15s%-10s", "Connection", "App",
437 "API Client", "ListenerID", "SegManager");
Dave Barach68b0fb02017-02-28 15:15:56 -0500438 else
Florin Coras6cf30ad2017-04-04 23:08:23 -0700439 s = format (s, "%-40s%-20s", "Connection", "App");
Dave Barach68b0fb02017-02-28 15:15:56 -0500440
441 return s;
442 }
443
Florin Coras6cf30ad2017-04-04 23:08:23 -0700444 app_name = app_get_name_from_reg_index (app);
445 listener = listen_session_get_from_handle (handle);
446 str = format (0, "%U", format_stream_session, listener, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -0500447
Dave Barach68b0fb02017-02-28 15:15:56 -0500448 if (verbose)
449 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700450 s = format (s, "%-40s%-20s%-15u%-15u%-10u", str, app_name,
451 app->api_client_index, handle, index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500452 }
453 else
Florin Coras6cf30ad2017-04-04 23:08:23 -0700454 s = format (s, "%-40s%-20s", str, app_name);
455
456 vec_free (app_name);
457 return s;
458}
459
460void
461application_format_connects (application_t * app, int verbose)
462{
463 vlib_main_t *vm = vlib_get_main ();
464 segment_manager_t *sm;
465 u8 *app_name, *s = 0;
Dave Barach10d8cc62017-05-30 09:30:07 -0400466 int j;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700467
468 /* Header */
469 if (app == 0)
470 {
471 if (verbose)
472 vlib_cli_output (vm, "%-40s%-20s%-15s%-10s", "Connection", "App",
473 "API Client", "SegManager");
474 else
475 vlib_cli_output (vm, "%-40s%-20s", "Connection", "App");
476 return;
477 }
478
479 /* make sure */
480 if (app->connects_seg_manager == (u32) ~ 0)
481 return;
482
483 app_name = app_get_name_from_reg_index (app);
484
485 /* Across all fifo segments */
486 sm = segment_manager_get (app->connects_seg_manager);
487 for (j = 0; j < vec_len (sm->segment_indices); j++)
488 {
489 svm_fifo_segment_private_t *fifo_segment;
Dave Barach10d8cc62017-05-30 09:30:07 -0400490 svm_fifo_t *fifo;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700491 u8 *str;
492
Florin Corasc87c91d2017-08-16 19:55:49 -0700493 fifo_segment = svm_fifo_segment_get_segment (sm->segment_indices[j]);
Dave Barach10d8cc62017-05-30 09:30:07 -0400494 fifo = svm_fifo_segment_get_fifo_list (fifo_segment);
495 while (fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700496 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700497 u32 session_index, thread_index;
498 stream_session_t *session;
499
Florin Corasa5464812017-04-19 13:00:05 -0700500 session_index = fifo->master_session_index;
501 thread_index = fifo->master_thread_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700502
503 session = stream_session_get (session_index, thread_index);
504 str = format (0, "%U", format_stream_session, session, verbose);
505
506 if (verbose)
507 s = format (s, "%-40s%-20s%-15u%-10u", str, app_name,
508 app->api_client_index, app->connects_seg_manager);
509 else
510 s = format (s, "%-40s%-20s", str, app_name);
511
512 vlib_cli_output (vm, "%v", s);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700513 vec_reset_length (s);
514 vec_free (str);
Dave Barach10d8cc62017-05-30 09:30:07 -0400515
516 fifo = fifo->next;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700517 }
518 vec_free (s);
519 }
520
521 vec_free (app_name);
522}
523
524u8 *
525format_application (u8 * s, va_list * args)
526{
527 application_t *app = va_arg (*args, application_t *);
528 CLIB_UNUSED (int verbose) = va_arg (*args, int);
529 u8 *app_name;
530
531 if (app == 0)
532 {
533 if (verbose)
534 s = format (s, "%-10s%-20s%-15s%-15s%-15s%-15s", "Index", "Name",
535 "API Client", "Add seg size", "Rx fifo size",
536 "Tx fifo size");
537 else
538 s = format (s, "%-10s%-20s%-20s", "Index", "Name", "API Client");
539 return s;
540 }
541
542 app_name = app_get_name_from_reg_index (app);
543 if (verbose)
544 s = format (s, "%-10d%-20s%-15d%-15d%-15d%-15d", app->index, app_name,
545 app->api_client_index, app->sm_properties.add_segment_size,
546 app->sm_properties.rx_fifo_size,
547 app->sm_properties.tx_fifo_size);
548 else
549 s = format (s, "%-10d%-20s%-20d", app->index, app_name,
550 app->api_client_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500551 return s;
552}
553
554static clib_error_t *
555show_app_command_fn (vlib_main_t * vm, unformat_input_t * input,
556 vlib_cli_command_t * cmd)
557{
558 application_t *app;
559 int do_server = 0;
560 int do_client = 0;
561 int verbose = 0;
562
Florin Coras6cf30ad2017-04-04 23:08:23 -0700563 if (!session_manager_is_enabled ())
Florin Corase04c2992017-03-01 08:17:34 -0800564 {
565 clib_error_return (0, "session layer is not enabled");
566 }
567
Dave Barach68b0fb02017-02-28 15:15:56 -0500568 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
569 {
570 if (unformat (input, "server"))
571 do_server = 1;
572 else if (unformat (input, "client"))
573 do_client = 1;
574 else if (unformat (input, "verbose"))
575 verbose = 1;
576 else
577 break;
578 }
579
580 if (do_server)
581 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700582 u64 handle;
583 u32 index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500584 if (pool_elts (app_pool))
585 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700586 vlib_cli_output (vm, "%U", format_application_listener,
587 0 /* header */ , 0, 0,
Dave Barach68b0fb02017-02-28 15:15:56 -0500588 verbose);
589 /* *INDENT-OFF* */
590 pool_foreach (app, app_pool,
591 ({
Florin Coras6cf30ad2017-04-04 23:08:23 -0700592 /* App's listener sessions */
593 if (hash_elts (app->listeners_table) == 0)
594 continue;
595 hash_foreach (handle, index, app->listeners_table,
596 ({
597 vlib_cli_output (vm, "%U", format_application_listener, app,
598 handle, index, verbose);
599 }));
Dave Barach68b0fb02017-02-28 15:15:56 -0500600 }));
601 /* *INDENT-ON* */
602 }
603 else
604 vlib_cli_output (vm, "No active server bindings");
605 }
606
607 if (do_client)
608 {
609 if (pool_elts (app_pool))
610 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700611 application_format_connects (0, verbose);
612
Dave Barach68b0fb02017-02-28 15:15:56 -0500613 /* *INDENT-OFF* */
614 pool_foreach (app, app_pool,
615 ({
Florin Coras6cf30ad2017-04-04 23:08:23 -0700616 if (app->connects_seg_manager == (u32)~0)
617 continue;
618 application_format_connects (app, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -0500619 }));
620 /* *INDENT-ON* */
621 }
622 else
Florin Corase04c2992017-03-01 08:17:34 -0800623 vlib_cli_output (vm, "No active client bindings");
Dave Barach68b0fb02017-02-28 15:15:56 -0500624 }
625
Florin Coras6cf30ad2017-04-04 23:08:23 -0700626 /* Print app related info */
627 if (!do_server && !do_client)
628 {
629 vlib_cli_output (vm, "%U", format_application, 0, verbose);
630 pool_foreach (app, app_pool, (
631 {
632 vlib_cli_output (vm, "%U",
633 format_application, app,
634 verbose);
635 }
636 ));
637 }
638
Dave Barach68b0fb02017-02-28 15:15:56 -0500639 return 0;
640}
641
Florin Corase04c2992017-03-01 08:17:34 -0800642/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500643VLIB_CLI_COMMAND (show_app_command, static) =
644{
Florin Corase04c2992017-03-01 08:17:34 -0800645 .path = "show app",
646 .short_help = "show app [server|client] [verbose]",
647 .function = show_app_command_fn,
648};
649/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500650
651/*
652 * fd.io coding-style-patch-verification: ON
653 *
654 * Local Variables:
655 * eval: (c-set-style "gnu")
656 * End:
657 */