blob: 71fc93f960f09f6aa966f67715227c9dca33ec41 [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 Coras6cf30ad2017-04-04 23:08:23 -070021/**
Dave Barach68b0fb02017-02-28 15:15:56 -050022 * Pool from which we allocate all applications
23 */
24static application_t *app_pool;
25
Florin Coras6cf30ad2017-04-04 23:08:23 -070026/**
Dave Barach68b0fb02017-02-28 15:15:56 -050027 * Hash table of apps by api client index
28 */
29static uword *app_by_api_client_index;
30
Florin Coras6cf30ad2017-04-04 23:08:23 -070031/**
32 * Default application event queue size
33 */
34static u32 default_app_evt_queue_size = 128;
35
Florin Corascea194d2017-10-02 00:18:51 -070036static u8 *
37app_get_name_from_reg_index (application_t * app)
38{
39 u8 *app_name;
40
41 vl_api_registration_t *regp;
42 regp = vl_api_client_index_to_registration (app->api_client_index);
43 if (!regp)
44 app_name = format (0, "builtin-%d%c", app->index, 0);
45 else
46 app_name = format (0, "%s%c", regp->name, 0);
47
48 return app_name;
49}
50
51u32
52application_session_table (application_t * app, u8 fib_proto)
53{
54 app_namespace_t *app_ns;
55 app_ns = app_namespace_get (app->ns_index);
56 if (!application_has_global_scope (app))
57 return APP_INVALID_INDEX;
58 if (fib_proto == FIB_PROTOCOL_IP4)
59 return session_lookup_get_index_for_fib (fib_proto,
60 app_ns->ip4_fib_index);
61 else
62 return session_lookup_get_index_for_fib (fib_proto,
63 app_ns->ip6_fib_index);
64}
65
66u32
67application_local_session_table (application_t * app)
68{
69 app_namespace_t *app_ns;
70 if (!application_has_local_scope (app))
71 return APP_INVALID_INDEX;
72 app_ns = app_namespace_get (app->ns_index);
73 return app_ns->local_table_index;
74}
75
Dave Barach68b0fb02017-02-28 15:15:56 -050076int
77application_api_queue_is_full (application_t * app)
78{
Florin Corase86a8ed2018-01-05 03:20:25 -080079 svm_queue_t *q;
Dave Barach68b0fb02017-02-28 15:15:56 -050080
81 /* builtin servers are always OK */
82 if (app->api_client_index == ~0)
83 return 0;
84
85 q = vl_api_client_index_to_input_queue (app->api_client_index);
86 if (!q)
87 return 1;
88
89 if (q->cursize == q->maxsize)
90 return 1;
91 return 0;
92}
93
Florin Corascea194d2017-10-02 00:18:51 -070094/**
95 * Returns app name
96 *
97 * Since the name is not stored per app, we generate it on the fly. It is
98 * the caller's responsibility to free the vector
99 */
100u8 *
101application_name_from_index (u32 app_index)
102{
103 application_t *app = application_get (app_index);
104 if (!app)
105 return 0;
106 return app_get_name_from_reg_index (app);
107}
108
Dave Barach68b0fb02017-02-28 15:15:56 -0500109static void
110application_table_add (application_t * app)
111{
112 hash_set (app_by_api_client_index, app->api_client_index, app->index);
113}
114
115static void
116application_table_del (application_t * app)
117{
118 hash_unset (app_by_api_client_index, app->api_client_index);
119}
120
121application_t *
122application_lookup (u32 api_client_index)
123{
124 uword *p;
125 p = hash_get (app_by_api_client_index, api_client_index);
126 if (p)
127 return application_get (p[0]);
128
129 return 0;
130}
131
Florin Coras6cf30ad2017-04-04 23:08:23 -0700132application_t *
133application_new ()
134{
135 application_t *app;
136 pool_get (app_pool, app);
137 memset (app, 0, sizeof (*app));
138 app->index = application_get_index (app);
Florin Corasc87c91d2017-08-16 19:55:49 -0700139 app->connects_seg_manager = APP_INVALID_SEGMENT_MANAGER_INDEX;
140 app->first_segment_manager = APP_INVALID_SEGMENT_MANAGER_INDEX;
Dave Wallace7b749fe2017-07-05 14:30:46 -0400141 if (CLIB_DEBUG > 1)
142 clib_warning ("[%d] New app (%d)", getpid (), app->index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700143 return app;
144}
145
Dave Barach68b0fb02017-02-28 15:15:56 -0500146void
147application_del (application_t * app)
148{
Florin Corasad0c77f2017-11-09 18:00:15 -0800149 vnet_unbind_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700150 segment_manager_t *sm;
Florin Coras7999e832017-10-31 01:51:04 -0700151 u64 handle, *handles = 0;
152 u32 index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700153 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -0500154
Florin Coras6cf30ad2017-04-04 23:08:23 -0700155 /*
Florin Corasa5464812017-04-19 13:00:05 -0700156 * The app event queue allocated in first segment is cleared with
157 * the segment manager. No need to explicitly free it.
158 */
Dave Wallace7b749fe2017-07-05 14:30:46 -0400159 if (CLIB_DEBUG > 1)
160 clib_warning ("[%d] Delete app (%d)", getpid (), app->index);
Florin Corasa5464812017-04-19 13:00:05 -0700161
Florin Coras7999e832017-10-31 01:51:04 -0700162 if (application_is_proxy (app))
163 application_remove_proxy (app);
164
Florin Corasa5464812017-04-19 13:00:05 -0700165 /*
Florin Corasc87c91d2017-08-16 19:55:49 -0700166 * Listener cleanup
Florin Coras6cf30ad2017-04-04 23:08:23 -0700167 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500168
Florin Coras6cf30ad2017-04-04 23:08:23 -0700169 /* *INDENT-OFF* */
170 hash_foreach (handle, index, app->listeners_table,
171 ({
172 vec_add1 (handles, handle);
Florin Coras9d063042017-09-14 03:08:00 -0400173 sm = segment_manager_get (index);
174 sm->app_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700175 }));
176 /* *INDENT-ON* */
177
Florin Coras6cf30ad2017-04-04 23:08:23 -0700178 for (i = 0; i < vec_len (handles); i++)
179 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700180 a->app_index = app->index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700181 a->handle = handles[i];
182 /* seg manager is removed when unbind completes */
183 vnet_unbind (a);
184 }
185
Florin Corasc87c91d2017-08-16 19:55:49 -0700186 /*
187 * Connects segment manager cleanup
188 */
189
190 if (app->connects_seg_manager != APP_INVALID_SEGMENT_MANAGER_INDEX)
191 {
192 sm = segment_manager_get (app->connects_seg_manager);
193 sm->app_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
194 segment_manager_init_del (sm);
195 }
196
Florin Corasc87c91d2017-08-16 19:55:49 -0700197 /* If first segment manager is used by a listener */
198 if (app->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX
199 && app->first_segment_manager != app->connects_seg_manager)
Dave Wallace7b749fe2017-07-05 14:30:46 -0400200 {
201 sm = segment_manager_get (app->first_segment_manager);
Florin Corasc87c91d2017-08-16 19:55:49 -0700202 /* .. and has no fifos, e.g. it might be used for redirected sessions,
203 * remove it */
204 if (!segment_manager_has_fifos (sm))
205 {
206 sm->app_index = SEGMENT_MANAGER_INVALID_APP_INDEX;
207 segment_manager_del (sm);
208 }
Dave Wallace7b749fe2017-07-05 14:30:46 -0400209 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500210 application_table_del (app);
Dave Barach68b0fb02017-02-28 15:15:56 -0500211 pool_put (app_pool, app);
212}
213
Florin Corasd79b41e2017-03-04 05:37:52 -0800214static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700215application_verify_cb_fns (session_cb_vft_t * cb_fns)
Florin Corasd79b41e2017-03-04 05:37:52 -0800216{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700217 if (cb_fns->session_accept_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800218 clib_warning ("No accept callback function provided");
Florin Coras6cf30ad2017-04-04 23:08:23 -0700219 if (cb_fns->session_connected_callback == 0)
Florin Corasd79b41e2017-03-04 05:37:52 -0800220 clib_warning ("No session connected callback function provided");
221 if (cb_fns->session_disconnect_callback == 0)
222 clib_warning ("No session disconnect callback function provided");
223 if (cb_fns->session_reset_callback == 0)
224 clib_warning ("No session reset callback function provided");
225}
226
Florin Corasb384b542018-01-15 01:08:33 -0800227/**
228 * Check app config for given segment type
229 *
230 * Returns 1 on success and 0 otherwise
231 */
232static u8
233application_verify_cfg (ssvm_segment_type_t st)
234{
235 u8 is_valid;
236 if (st == SSVM_SEGMENT_MEMFD)
237 {
238 is_valid = (session_manager_get_evt_q_segment () != 0);
239 if (!is_valid)
240 clib_warning ("memfd seg: vpp's event qs IN binary api svm region");
241 return is_valid;
242 }
243 else if (st == SSVM_SEGMENT_SHM)
244 {
245 is_valid = (session_manager_get_evt_q_segment () == 0);
246 if (!is_valid)
247 clib_warning ("shm seg: vpp's event qs NOT IN binary api svm region");
248 return is_valid;
249 }
250 else
251 return 1;
252}
253
Florin Coras6cf30ad2017-04-04 23:08:23 -0700254int
255application_init (application_t * app, u32 api_client_index, u64 * options,
256 session_cb_vft_t * cb_fns)
Dave Barach68b0fb02017-02-28 15:15:56 -0500257{
Florin Corasa332c462018-01-31 06:52:17 -0800258 u32 app_evt_queue_size, first_seg_size, prealloc_fifo_pairs;
259 ssvm_segment_type_t seg_type = SSVM_SEGMENT_MEMFD;
Florin Corasb384b542018-01-15 01:08:33 -0800260 segment_manager_properties_t *props;
261 vl_api_registration_t *reg;
262 segment_manager_t *sm;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700263 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500264
Florin Corasb384b542018-01-15 01:08:33 -0800265 /*
266 * Make sure we support the requested configuration
267 */
Florin Corasb384b542018-01-15 01:08:33 -0800268
Florin Corasa332c462018-01-31 06:52:17 -0800269 if (!(options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_IS_BUILTIN))
270 {
271 reg = vl_api_client_index_to_registration (api_client_index);
272 if (!reg)
273 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
274 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
275 seg_type = SSVM_SEGMENT_SHM;
276 }
277 else
278 {
279 seg_type = SSVM_SEGMENT_PRIVATE;
280 }
Florin Corasb384b542018-01-15 01:08:33 -0800281
Florin Corasa332c462018-01-31 06:52:17 -0800282 if (!application_verify_cfg (seg_type))
Florin Corasb384b542018-01-15 01:08:33 -0800283 return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
Dave Barach68b0fb02017-02-28 15:15:56 -0500284
Florin Corascea194d2017-10-02 00:18:51 -0700285 /*
286 * Setup segment manager
287 */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700288 sm = segment_manager_new ();
289 sm->app_index = app->index;
Florin Corasa332c462018-01-31 06:52:17 -0800290 props = application_segment_manager_properties (app);
291 segment_manager_properties_init (props);
Florin Corasb384b542018-01-15 01:08:33 -0800292 if (options[APP_OPTIONS_ADD_SEGMENT_SIZE])
293 {
294 props->add_segment_size = options[APP_OPTIONS_ADD_SEGMENT_SIZE];
295 props->add_segment = 1;
296 }
297 if (options[APP_OPTIONS_RX_FIFO_SIZE])
298 props->rx_fifo_size = options[APP_OPTIONS_RX_FIFO_SIZE];
299 if (options[APP_OPTIONS_TX_FIFO_SIZE])
300 props->tx_fifo_size = options[APP_OPTIONS_TX_FIFO_SIZE];
Florin Corasa332c462018-01-31 06:52:17 -0800301 props->segment_type = seg_type;
Dave Barach68b0fb02017-02-28 15:15:56 -0500302
Florin Corasb384b542018-01-15 01:08:33 -0800303 app_evt_queue_size = options[APP_OPTIONS_EVT_QUEUE_SIZE] > 0 ?
304 options[APP_OPTIONS_EVT_QUEUE_SIZE] : default_app_evt_queue_size;
Florin Corasff6e7692017-12-11 04:59:01 -0800305 first_seg_size = options[APP_OPTIONS_SEGMENT_SIZE];
Florin Corasa332c462018-01-31 06:52:17 -0800306 prealloc_fifo_pairs = options[APP_OPTIONS_PREALLOC_FIFO_PAIRS];
307
308 if ((rv = segment_manager_init (sm, first_seg_size, app_evt_queue_size,
309 prealloc_fifo_pairs)))
Florin Coras6cf30ad2017-04-04 23:08:23 -0700310 return rv;
Florin Corasc87c91d2017-08-16 19:55:49 -0700311 sm->first_is_protected = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500312
Florin Corascea194d2017-10-02 00:18:51 -0700313 /*
314 * Setup application
315 */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700316 app->first_segment_manager = segment_manager_index (sm);
Dave Barach68b0fb02017-02-28 15:15:56 -0500317 app->api_client_index = api_client_index;
Florin Corasa5464812017-04-19 13:00:05 -0700318 app->flags = options[APP_OPTIONS_FLAGS];
Dave Barach68b0fb02017-02-28 15:15:56 -0500319 app->cb_fns = *cb_fns;
Florin Corascea194d2017-10-02 00:18:51 -0700320 app->ns_index = options[APP_OPTIONS_NAMESPACE];
Florin Coras7999e832017-10-31 01:51:04 -0700321 app->listeners_table = hash_create (0, sizeof (u64));
322 app->proxied_transports = options[APP_OPTIONS_PROXY_TRANSPORT];
Florin Corasa332c462018-01-31 06:52:17 -0800323 app->event_queue = segment_manager_event_queue (sm);
Florin Corascea194d2017-10-02 00:18:51 -0700324
325 /* If no scope enabled, default to global */
326 if (!application_has_global_scope (app)
327 && !application_has_local_scope (app))
328 app->flags |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500329
Florin Corasd79b41e2017-03-04 05:37:52 -0800330 /* Check that the obvious things are properly set up */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700331 application_verify_cb_fns (cb_fns);
Florin Corasd79b41e2017-03-04 05:37:52 -0800332
Dave Barach68b0fb02017-02-28 15:15:56 -0500333 /* Add app to lookup by api_client_index table */
334 application_table_add (app);
335
Florin Coras6cf30ad2017-04-04 23:08:23 -0700336 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500337}
338
339application_t *
340application_get (u32 index)
341{
Florin Corascea194d2017-10-02 00:18:51 -0700342 if (index == APP_INVALID_INDEX)
343 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500344 return pool_elt_at_index (app_pool, index);
345}
346
Florin Corase04c2992017-03-01 08:17:34 -0800347application_t *
348application_get_if_valid (u32 index)
349{
350 if (pool_is_free_index (app_pool, index))
351 return 0;
352
353 return pool_elt_at_index (app_pool, index);
354}
355
Dave Barach68b0fb02017-02-28 15:15:56 -0500356u32
357application_get_index (application_t * app)
358{
359 return app - app_pool;
360}
361
Florin Coras6cf30ad2017-04-04 23:08:23 -0700362static segment_manager_t *
363application_alloc_segment_manager (application_t * app)
Dave Barach68b0fb02017-02-28 15:15:56 -0500364{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700365 segment_manager_t *sm = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500366
Florin Corasc87c91d2017-08-16 19:55:49 -0700367 /* If the first segment manager is not in use, don't allocate a new one */
368 if (app->first_segment_manager != APP_INVALID_SEGMENT_MANAGER_INDEX
Florin Coras0e9c33b2017-08-14 22:33:41 -0700369 && app->first_segment_manager_in_use == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500370 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700371 sm = segment_manager_get (app->first_segment_manager);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700372 app->first_segment_manager_in_use = 1;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700373 return sm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500374 }
375
Florin Coras6cf30ad2017-04-04 23:08:23 -0700376 sm = segment_manager_new ();
Florin Corasa332c462018-01-31 06:52:17 -0800377 sm->app_index = app->index;
Florin Coras0e9c33b2017-08-14 22:33:41 -0700378
Florin Coras6cf30ad2017-04-04 23:08:23 -0700379 return sm;
380}
381
382/**
383 * Start listening local transport endpoint for requested transport.
384 *
385 * Creates a 'dummy' stream session with state LISTENING to be used in session
386 * lookups, prior to establishing connection. Requests transport to build
387 * it's own specific listening connection.
388 */
389int
Florin Corascea194d2017-10-02 00:18:51 -0700390application_start_listen (application_t * srv, session_endpoint_t * sep,
391 u64 * res)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700392{
393 segment_manager_t *sm;
394 stream_session_t *s;
395 u64 handle;
Florin Corascea194d2017-10-02 00:18:51 -0700396 session_type_t sst;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700397
Florin Corascea194d2017-10-02 00:18:51 -0700398 sst = session_type_from_proto_and_ip (sep->transport_proto, sep->is_ip4);
399 s = listen_session_new (sst);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700400 s->app_index = srv->index;
401
Florin Corascea194d2017-10-02 00:18:51 -0700402 if (stream_session_listen (s, sep))
Florin Coras6cf30ad2017-04-04 23:08:23 -0700403 goto err;
404
405 /* Allocate segment manager. All sessions derived out of a listen session
406 * have fifos allocated by the same segment manager. */
407 sm = application_alloc_segment_manager (srv);
408 if (sm == 0)
409 goto err;
410
411 /* Add to app's listener table. Useful to find all child listeners
412 * when app goes down, although, just for unbinding this is not needed */
413 handle = listen_session_get_handle (s);
414 hash_set (srv->listeners_table, handle, segment_manager_index (sm));
415
416 *res = handle;
417 return 0;
418
419err:
420 listen_session_del (s);
421 return -1;
422}
423
424/**
425 * Stop listening on session associated to handle
426 */
427int
428application_stop_listen (application_t * srv, u64 handle)
429{
430 stream_session_t *listener;
431 uword *indexp;
432 segment_manager_t *sm;
433
434 if (srv && hash_get (srv->listeners_table, handle) == 0)
435 {
436 clib_warning ("app doesn't own handle %llu!", handle);
437 return -1;
438 }
439
440 listener = listen_session_get_from_handle (handle);
441 stream_session_stop_listen (listener);
442
443 indexp = hash_get (srv->listeners_table, handle);
444 ASSERT (indexp);
445
446 sm = segment_manager_get (*indexp);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700447 if (srv->first_segment_manager == *indexp)
448 {
Florin Corasc87c91d2017-08-16 19:55:49 -0700449 /* Delete sessions but don't remove segment manager */
Florin Coras0e9c33b2017-08-14 22:33:41 -0700450 srv->first_segment_manager_in_use = 0;
Florin Corasc87c91d2017-08-16 19:55:49 -0700451 segment_manager_del_sessions (sm);
452 }
453 else
454 {
455 segment_manager_init_del (sm);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700456 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700457 hash_unset (srv->listeners_table, handle);
458 listen_session_del (listener);
459
Dave Barach68b0fb02017-02-28 15:15:56 -0500460 return 0;
461}
462
Florin Coras6cf30ad2017-04-04 23:08:23 -0700463int
Florin Corascea194d2017-10-02 00:18:51 -0700464application_open_session (application_t * app, session_endpoint_t * sep,
465 u32 api_context)
Dave Barach68b0fb02017-02-28 15:15:56 -0500466{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700467 segment_manager_t *sm;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700468 int rv;
469
470 /* Make sure we have a segment manager for connects */
Florin Corascea194d2017-10-02 00:18:51 -0700471 if (app->connects_seg_manager == APP_INVALID_SEGMENT_MANAGER_INDEX)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700472 {
473 sm = application_alloc_segment_manager (app);
474 if (sm == 0)
475 return -1;
476 app->connects_seg_manager = segment_manager_index (sm);
477 }
478
Florin Coras3cbc04b2017-10-02 00:18:51 -0700479 if ((rv = session_open (app->index, sep, api_context)))
Florin Coras6cf30ad2017-04-04 23:08:23 -0700480 return rv;
481
Florin Coras6cf30ad2017-04-04 23:08:23 -0700482 return 0;
483}
484
485segment_manager_t *
486application_get_connect_segment_manager (application_t * app)
487{
488 ASSERT (app->connects_seg_manager != (u32) ~ 0);
489 return segment_manager_get (app->connects_seg_manager);
490}
491
492segment_manager_t *
493application_get_listen_segment_manager (application_t * app,
494 stream_session_t * s)
495{
496 uword *smp;
497 smp = hash_get (app->listeners_table, listen_session_get_handle (s));
498 ASSERT (smp != 0);
499 return segment_manager_get (*smp);
500}
501
Dave Barach52851e62017-08-07 09:35:25 -0400502int
503application_is_proxy (application_t * app)
504{
Florin Coras7999e832017-10-31 01:51:04 -0700505 return (app->flags & APP_OPTIONS_FLAGS_IS_PROXY);
506}
507
508int
509application_is_builtin (application_t * app)
510{
511 return (app->flags & APP_OPTIONS_FLAGS_IS_BUILTIN);
512}
513
514int
515application_is_builtin_proxy (application_t * app)
516{
517 return (application_is_proxy (app) && application_is_builtin (app));
Dave Barach52851e62017-08-07 09:35:25 -0400518}
519
Florin Corasa332c462018-01-31 06:52:17 -0800520/**
521 * Send an API message to the external app, to map new segment
522 */
Florin Corasc87c91d2017-08-16 19:55:49 -0700523int
Florin Corasa332c462018-01-31 06:52:17 -0800524application_add_segment_notify (u32 app_index, ssvm_private_t * fs)
Florin Corasc87c91d2017-08-16 19:55:49 -0700525{
526 application_t *app = application_get (app_index);
Florin Corasa332c462018-01-31 06:52:17 -0800527 return app->cb_fns.add_segment_callback (app->api_client_index, fs);
Florin Corasc87c91d2017-08-16 19:55:49 -0700528}
529
Florin Corascea194d2017-10-02 00:18:51 -0700530u8
531application_has_local_scope (application_t * app)
532{
533 return app->flags & APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
534}
535
536u8
537application_has_global_scope (application_t * app)
538{
539 return app->flags & APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
540}
541
Florin Coras1c710452017-10-17 00:03:13 -0700542u32
543application_n_listeners (application_t * app)
544{
545 return hash_elts (app->listeners_table);
546}
547
548stream_session_t *
Florin Coras7999e832017-10-31 01:51:04 -0700549application_first_listener (application_t * app, u8 fib_proto,
550 u8 transport_proto)
Florin Coras1c710452017-10-17 00:03:13 -0700551{
Florin Coras7999e832017-10-31 01:51:04 -0700552 stream_session_t *listener;
Florin Coras1c710452017-10-17 00:03:13 -0700553 u64 handle;
554 u32 sm_index;
Florin Coras7999e832017-10-31 01:51:04 -0700555 u8 sst;
556
557 sst = session_type_from_proto_and_ip (transport_proto,
558 fib_proto == FIB_PROTOCOL_IP4);
Florin Coras1c710452017-10-17 00:03:13 -0700559
560 /* *INDENT-OFF* */
561 hash_foreach (handle, sm_index, app->listeners_table, ({
Florin Coras7999e832017-10-31 01:51:04 -0700562 listener = listen_session_get_from_handle (handle);
Florin Corasc3ddea82017-11-27 03:12:00 -0800563 if (listener->session_type == sst
564 && listener->listener_index != SESSION_PROXY_LISTENER_INDEX)
Florin Coras7999e832017-10-31 01:51:04 -0700565 return listener;
Florin Coras1c710452017-10-17 00:03:13 -0700566 }));
567 /* *INDENT-ON* */
568
569 return 0;
570}
571
Florin Coras19b1f6a2017-12-11 03:37:03 -0800572stream_session_t *
573application_proxy_listener (application_t * app, u8 fib_proto,
574 u8 transport_proto)
575{
576 stream_session_t *listener;
577 u64 handle;
578 u32 sm_index;
579 u8 sst;
580
581 sst = session_type_from_proto_and_ip (transport_proto,
582 fib_proto == FIB_PROTOCOL_IP4);
583
584 /* *INDENT-OFF* */
585 hash_foreach (handle, sm_index, app->listeners_table, ({
586 listener = listen_session_get_from_handle (handle);
587 if (listener->session_type == sst
588 && listener->listener_index == SESSION_PROXY_LISTENER_INDEX)
589 return listener;
590 }));
591 /* *INDENT-ON* */
592
593 return 0;
594}
595
Florin Coras7999e832017-10-31 01:51:04 -0700596static clib_error_t *
597application_start_stop_proxy_fib_proto (application_t * app, u8 fib_proto,
598 u8 transport_proto, u8 is_start)
599{
Florin Coras7999e832017-10-31 01:51:04 -0700600 app_namespace_t *app_ns = app_namespace_get (app->ns_index);
601 u8 is_ip4 = (fib_proto == FIB_PROTOCOL_IP4);
602 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
603 transport_connection_t *tc;
604 stream_session_t *s;
605 u64 handle;
606
607 if (is_start)
608 {
Florin Coras19b1f6a2017-12-11 03:37:03 -0800609 s = application_first_listener (app, fib_proto, transport_proto);
610 if (!s)
611 {
612 sep.is_ip4 = is_ip4;
613 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
614 sep.sw_if_index = app_ns->sw_if_index;
615 sep.transport_proto = transport_proto;
616 application_start_listen (app, &sep, &handle);
617 s = listen_session_get_from_handle (handle);
618 s->listener_index = SESSION_PROXY_LISTENER_INDEX;
619 }
Florin Coras7999e832017-10-31 01:51:04 -0700620 }
621 else
622 {
Florin Coras19b1f6a2017-12-11 03:37:03 -0800623 s = application_proxy_listener (app, fib_proto, transport_proto);
624 ASSERT (s);
Florin Coras7999e832017-10-31 01:51:04 -0700625 }
Florin Coras19b1f6a2017-12-11 03:37:03 -0800626
Florin Coras7999e832017-10-31 01:51:04 -0700627 tc = listen_session_get_transport (s);
628
629 if (!ip_is_zero (&tc->lcl_ip, 1))
630 {
Florin Corasdbd44562017-11-09 19:30:17 -0800631 u32 sti;
632 sep.is_ip4 = is_ip4;
633 sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
634 sep.transport_proto = transport_proto;
635 sep.port = 0;
636 sti = session_lookup_get_index_for_fib (fib_proto, sep.fib_index);
Florin Coras19b1f6a2017-12-11 03:37:03 -0800637 if (is_start)
638 session_lookup_add_session_endpoint (sti, &sep, s->session_index);
639 else
640 session_lookup_del_session_endpoint (sti, &sep);
Florin Coras7999e832017-10-31 01:51:04 -0700641 }
Florin Coras19b1f6a2017-12-11 03:37:03 -0800642
Florin Coras7999e832017-10-31 01:51:04 -0700643 return 0;
644}
645
Florin Coras19b1f6a2017-12-11 03:37:03 -0800646static void
647application_start_stop_proxy_local_scope (application_t * app,
648 u8 transport_proto, u8 is_start)
649{
650 session_endpoint_t sep = SESSION_ENDPOINT_NULL;
651 app_namespace_t *app_ns;
652 app_ns = app_namespace_get (app->ns_index);
653 sep.is_ip4 = 1;
654 sep.transport_proto = transport_proto;
655 sep.port = 0;
656
657 if (is_start)
658 {
659 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
660 app->index);
661 sep.is_ip4 = 0;
662 session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
663 app->index);
664 }
665 else
666 {
667 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
668 sep.is_ip4 = 0;
669 session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
670 }
671}
672
Florin Coras7999e832017-10-31 01:51:04 -0700673void
Florin Coras561af9b2017-12-09 10:19:43 -0800674application_start_stop_proxy (application_t * app,
675 transport_proto_t transport_proto, u8 is_start)
Florin Coras7999e832017-10-31 01:51:04 -0700676{
Florin Coras7999e832017-10-31 01:51:04 -0700677 if (application_has_local_scope (app))
Florin Coras19b1f6a2017-12-11 03:37:03 -0800678 application_start_stop_proxy_local_scope (app, transport_proto, is_start);
Florin Coras7999e832017-10-31 01:51:04 -0700679
680 if (application_has_global_scope (app))
681 {
682 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP4,
683 transport_proto, is_start);
684 application_start_stop_proxy_fib_proto (app, FIB_PROTOCOL_IP6,
685 transport_proto, is_start);
686 }
687}
688
689void
690application_setup_proxy (application_t * app)
691{
692 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -0800693 transport_proto_t tp;
694
Florin Coras7999e832017-10-31 01:51:04 -0700695 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -0800696
697 /* *INDENT-OFF* */
698 transport_proto_foreach (tp, ({
699 if (transports & (1 << tp))
700 application_start_stop_proxy (app, tp, 1);
701 }));
702 /* *INDENT-ON* */
Florin Coras7999e832017-10-31 01:51:04 -0700703}
704
705void
706application_remove_proxy (application_t * app)
707{
708 u16 transports = app->proxied_transports;
Florin Coras561af9b2017-12-09 10:19:43 -0800709 transport_proto_t tp;
710
Florin Coras7999e832017-10-31 01:51:04 -0700711 ASSERT (application_is_proxy (app));
Florin Coras561af9b2017-12-09 10:19:43 -0800712
713 /* *INDENT-OFF* */
714 transport_proto_foreach (tp, ({
715 if (transports & (1 << tp))
716 application_start_stop_proxy (app, tp, 0);
717 }));
718 /* *INDENT-ON* */
Florin Coras7999e832017-10-31 01:51:04 -0700719}
720
Florin Corasa332c462018-01-31 06:52:17 -0800721segment_manager_properties_t *
722application_segment_manager_properties (application_t * app)
723{
724 return &app->sm_properties;
725}
726
727segment_manager_properties_t *
728application_get_segment_manager_properties (u32 app_index)
729{
730 application_t *app = application_get (app_index);
731 return &app->sm_properties;
732}
733
Dave Barach68b0fb02017-02-28 15:15:56 -0500734u8 *
Florin Coras6cf30ad2017-04-04 23:08:23 -0700735format_application_listener (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500736{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700737 application_t *app = va_arg (*args, application_t *);
738 u64 handle = va_arg (*args, u64);
739 u32 index = va_arg (*args, u32);
Dave Barach68b0fb02017-02-28 15:15:56 -0500740 int verbose = va_arg (*args, int);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700741 stream_session_t *listener;
742 u8 *app_name, *str;
Dave Barach68b0fb02017-02-28 15:15:56 -0500743
Florin Coras6cf30ad2017-04-04 23:08:23 -0700744 if (app == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500745 {
746 if (verbose)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700747 s = format (s, "%-40s%-20s%-15s%-15s%-10s", "Connection", "App",
748 "API Client", "ListenerID", "SegManager");
Dave Barach68b0fb02017-02-28 15:15:56 -0500749 else
Florin Coras6cf30ad2017-04-04 23:08:23 -0700750 s = format (s, "%-40s%-20s", "Connection", "App");
Dave Barach68b0fb02017-02-28 15:15:56 -0500751
752 return s;
753 }
754
Florin Coras6cf30ad2017-04-04 23:08:23 -0700755 app_name = app_get_name_from_reg_index (app);
756 listener = listen_session_get_from_handle (handle);
757 str = format (0, "%U", format_stream_session, listener, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -0500758
Dave Barach68b0fb02017-02-28 15:15:56 -0500759 if (verbose)
760 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700761 s = format (s, "%-40s%-20s%-15u%-15u%-10u", str, app_name,
762 app->api_client_index, handle, index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500763 }
764 else
Florin Coras6cf30ad2017-04-04 23:08:23 -0700765 s = format (s, "%-40s%-20s", str, app_name);
766
767 vec_free (app_name);
768 return s;
769}
770
771void
772application_format_connects (application_t * app, int verbose)
773{
Florin Corasa332c462018-01-31 06:52:17 -0800774 svm_fifo_segment_private_t *fifo_segment;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700775 vlib_main_t *vm = vlib_get_main ();
776 segment_manager_t *sm;
777 u8 *app_name, *s = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700778
779 /* Header */
780 if (app == 0)
781 {
782 if (verbose)
783 vlib_cli_output (vm, "%-40s%-20s%-15s%-10s", "Connection", "App",
784 "API Client", "SegManager");
785 else
786 vlib_cli_output (vm, "%-40s%-20s", "Connection", "App");
787 return;
788 }
789
790 /* make sure */
791 if (app->connects_seg_manager == (u32) ~ 0)
792 return;
793
794 app_name = app_get_name_from_reg_index (app);
795
796 /* Across all fifo segments */
797 sm = segment_manager_get (app->connects_seg_manager);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700798
Florin Corasa332c462018-01-31 06:52:17 -0800799 /* *INDENT-OFF* */
800 segment_manager_foreach_segment_w_lock (fifo_segment, sm, ({
801 svm_fifo_t *fifo;
802 u8 *str;
803
804 fifo = svm_fifo_segment_get_fifo_list (fifo_segment);
805 while (fifo)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700806 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700807 u32 session_index, thread_index;
808 stream_session_t *session;
809
Florin Corasa5464812017-04-19 13:00:05 -0700810 session_index = fifo->master_session_index;
811 thread_index = fifo->master_thread_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700812
Florin Corascea194d2017-10-02 00:18:51 -0700813 session = session_get (session_index, thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700814 str = format (0, "%U", format_stream_session, session, verbose);
815
816 if (verbose)
817 s = format (s, "%-40s%-20s%-15u%-10u", str, app_name,
818 app->api_client_index, app->connects_seg_manager);
819 else
820 s = format (s, "%-40s%-20s", str, app_name);
821
822 vlib_cli_output (vm, "%v", s);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700823 vec_reset_length (s);
824 vec_free (str);
Dave Barach10d8cc62017-05-30 09:30:07 -0400825
826 fifo = fifo->next;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700827 }
Florin Corasa332c462018-01-31 06:52:17 -0800828 vec_free (s);
829 }));
830 /* *INDENT-ON* */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700831
832 vec_free (app_name);
833}
834
835u8 *
836format_application (u8 * s, va_list * args)
837{
838 application_t *app = va_arg (*args, application_t *);
839 CLIB_UNUSED (int verbose) = va_arg (*args, int);
Florin Corasad0c77f2017-11-09 18:00:15 -0800840 segment_manager_properties_t *props;
Florin Corascea194d2017-10-02 00:18:51 -0700841 const u8 *app_ns_name;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700842 u8 *app_name;
843
844 if (app == 0)
845 {
846 if (verbose)
Florin Corascea194d2017-10-02 00:18:51 -0700847 s = format (s, "%-10s%-20s%-15s%-15s%-15s%-15s%-15s", "Index", "Name",
Florin Coras8f107b32017-11-21 22:13:03 -0800848 "API Client", "Namespace", "Add seg size", "Rx fifo size",
Florin Coras6cf30ad2017-04-04 23:08:23 -0700849 "Tx fifo size");
850 else
Florin Corascea194d2017-10-02 00:18:51 -0700851 s =
Florin Coras8f107b32017-11-21 22:13:03 -0800852 format (s, "%-10s%-20s%-15s%-40s", "Index", "Name", "API Client",
853 "Namespace");
Florin Coras6cf30ad2017-04-04 23:08:23 -0700854 return s;
855 }
856
857 app_name = app_get_name_from_reg_index (app);
Florin Corascea194d2017-10-02 00:18:51 -0700858 app_ns_name = app_namespace_id_from_index (app->ns_index);
Florin Corasa332c462018-01-31 06:52:17 -0800859 props = application_segment_manager_properties (app);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700860 if (verbose)
Florin Corascea194d2017-10-02 00:18:51 -0700861 s =
Florin Coras8f107b32017-11-21 22:13:03 -0800862 format (s, "%-10d%-20s%-15d%-15d%-15d%-15d%-15d", app->index, app_name,
863 app->api_client_index, app->ns_index,
Florin Corasad0c77f2017-11-09 18:00:15 -0800864 props->add_segment_size,
865 props->rx_fifo_size, props->tx_fifo_size);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700866 else
Florin Coras8f107b32017-11-21 22:13:03 -0800867 s = format (s, "%-10d%-20s%-15d%-40s", app->index, app_name,
868 app->api_client_index, app_ns_name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500869 return s;
870}
871
872static clib_error_t *
873show_app_command_fn (vlib_main_t * vm, unformat_input_t * input,
874 vlib_cli_command_t * cmd)
875{
876 application_t *app;
877 int do_server = 0;
878 int do_client = 0;
879 int verbose = 0;
880
Florin Corascea194d2017-10-02 00:18:51 -0700881 session_cli_return_if_not_enabled ();
Florin Corase04c2992017-03-01 08:17:34 -0800882
Dave Barach68b0fb02017-02-28 15:15:56 -0500883 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
884 {
885 if (unformat (input, "server"))
886 do_server = 1;
887 else if (unformat (input, "client"))
888 do_client = 1;
889 else if (unformat (input, "verbose"))
890 verbose = 1;
891 else
892 break;
893 }
894
895 if (do_server)
896 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700897 u64 handle;
898 u32 index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500899 if (pool_elts (app_pool))
900 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700901 vlib_cli_output (vm, "%U", format_application_listener,
Florin Corasa332c462018-01-31 06:52:17 -0800902 0 /* header */ , 0, 0, verbose);
903
Florin Coras1c710452017-10-17 00:03:13 -0700904 /* *INDENT-OFF* */
Florin Corasa332c462018-01-31 06:52:17 -0800905 pool_foreach (app, app_pool, ({
Florin Coras6cf30ad2017-04-04 23:08:23 -0700906 /* App's listener sessions */
907 if (hash_elts (app->listeners_table) == 0)
908 continue;
Florin Corasa332c462018-01-31 06:52:17 -0800909 hash_foreach (handle, index, app->listeners_table, ({
Florin Coras6cf30ad2017-04-04 23:08:23 -0700910 vlib_cli_output (vm, "%U", format_application_listener, app,
911 handle, index, verbose);
912 }));
Dave Barach68b0fb02017-02-28 15:15:56 -0500913 }));
914 /* *INDENT-ON* */
Florin Corasa332c462018-01-31 06:52:17 -0800915
Dave Barach68b0fb02017-02-28 15:15:56 -0500916 }
917 else
918 vlib_cli_output (vm, "No active server bindings");
919 }
920
921 if (do_client)
922 {
923 if (pool_elts (app_pool))
924 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700925 application_format_connects (0, verbose);
926
Dave Barach68b0fb02017-02-28 15:15:56 -0500927 /* *INDENT-OFF* */
928 pool_foreach (app, app_pool,
929 ({
Florin Coras6cf30ad2017-04-04 23:08:23 -0700930 if (app->connects_seg_manager == (u32)~0)
931 continue;
932 application_format_connects (app, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -0500933 }));
934 /* *INDENT-ON* */
935 }
936 else
Florin Corase04c2992017-03-01 08:17:34 -0800937 vlib_cli_output (vm, "No active client bindings");
Dave Barach68b0fb02017-02-28 15:15:56 -0500938 }
939
Florin Coras6cf30ad2017-04-04 23:08:23 -0700940 /* Print app related info */
941 if (!do_server && !do_client)
942 {
943 vlib_cli_output (vm, "%U", format_application, 0, verbose);
Florin Corascea194d2017-10-02 00:18:51 -0700944 /* *INDENT-OFF* */
945 pool_foreach (app, app_pool, ({
946 vlib_cli_output (vm, "%U", format_application, app, verbose);
947 }));
948 /* *INDENT-ON* */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700949 }
950
Dave Barach68b0fb02017-02-28 15:15:56 -0500951 return 0;
952}
953
Florin Corase04c2992017-03-01 08:17:34 -0800954/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500955VLIB_CLI_COMMAND (show_app_command, static) =
956{
Florin Corase04c2992017-03-01 08:17:34 -0800957 .path = "show app",
958 .short_help = "show app [server|client] [verbose]",
959 .function = show_app_command_fn,
960};
961/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500962
963/*
964 * fd.io coding-style-patch-verification: ON
965 *
966 * Local Variables:
967 * eval: (c-set-style "gnu")
968 * End:
969 */