FD.io VPP  v21.01.1
Vector Packet Processing
application.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017-2019 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 
20 #include <vnet/session/session.h>
21 
23 
24 #define app_interface_check_thread_and_barrier(_fn, _arg) \
25  if (PREDICT_FALSE (!vlib_thread_is_main_w_barrier ())) \
26  { \
27  vlib_rpc_call_main_thread (_fn, (u8 *) _arg, sizeof(*_arg)); \
28  return 0; \
29  }
30 
31 static app_listener_t *
33 {
34  app_listener_t *app_listener;
35  pool_get (app->listeners, app_listener);
36  clib_memset (app_listener, 0, sizeof (*app_listener));
37  app_listener->al_index = app_listener - app->listeners;
38  app_listener->app_index = app->app_index;
39  app_listener->session_index = SESSION_INVALID_INDEX;
40  app_listener->local_index = SESSION_INVALID_INDEX;
41  app_listener->ls_handle = SESSION_INVALID_HANDLE;
42  return app_listener;
43 }
44 
46 app_listener_get (application_t * app, u32 app_listener_index)
47 {
48  return pool_elt_at_index (app->listeners, app_listener_index);
49 }
50 
51 static void
53 {
54  clib_bitmap_free (app_listener->workers);
55  if (CLIB_DEBUG)
56  clib_memset (app_listener, 0xfa, sizeof (*app_listener));
57  pool_put (app->listeners, app_listener);
58 }
59 
62 {
63  return al->ls_handle;
64 }
65 
68 {
69  application_t *app;
70 
72  if (!app)
73  return 0;
74  return app_listener_get (app, ls->al_index);
75 }
76 
79 {
80  app_listener_t *al;
82  if (!al)
83  return listen_session_get_handle (ls);
84  return al->ls_handle;
85 }
86 
89 {
90  session_t *ls;
92  if (!ls)
93  return 0;
94  return app_listener_get_w_session (ls);
95 }
96 
99 {
100  u32 table_index, fib_proto;
101  session_endpoint_t *sep;
102  session_handle_t handle;
103  session_t *ls;
104 
105  sep = (session_endpoint_t *) sep_ext;
107  {
108  table_index = application_local_session_table (app);
109  handle = session_lookup_endpoint_listener (table_index, sep, 1);
110  if (handle != SESSION_INVALID_HANDLE)
111  {
112  ls = listen_session_get_from_handle (handle);
113  return app_listener_get_w_session (ls);
114  }
115  }
116 
117  fib_proto = session_endpoint_fib_proto (sep);
118  table_index = session_lookup_get_index_for_fib (fib_proto, sep->fib_index);
119  handle = session_lookup_endpoint_listener (table_index, sep, 1);
120  if (handle != SESSION_INVALID_HANDLE)
121  {
122  ls = listen_session_get_from_handle (handle);
123  return app_listener_get_w_session ((session_t *) ls);
124  }
125 
126  return 0;
127 }
128 
129 int
133 {
134  app_listener_t *app_listener;
136  u32 al_index, table_index;
137  session_handle_t lh;
138  session_type_t st;
139  session_t *ls = 0;
140  int rv;
141 
142  app_listener = app_listener_alloc (app);
143  al_index = app_listener->al_index;
144  st = session_type_from_proto_and_ip (sep->transport_proto, sep->is_ip4);
145 
146  /*
147  * Add session endpoint to local session table. Only binds to "inaddr_any"
148  * (i.e., zero address) are added to local scope table.
149  */
152  {
153  session_type_t local_st;
154 
155  local_st = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE,
156  sep->is_ip4);
157  ls = listen_session_alloc (0, local_st);
158  ls->app_index = app->app_index;
159  ls->app_wrk_index = sep->app_wrk_index;
160  lh = session_handle (ls);
161 
162  if ((rv = session_listen (ls, sep)))
163  {
164  ls = session_get_from_handle (lh);
165  session_free (ls);
166  return rv;
167  }
168 
169  ls = session_get_from_handle (lh);
170  app_listener = app_listener_get (app, al_index);
171  app_listener->local_index = ls->session_index;
172  app_listener->ls_handle = lh;
173  ls->al_index = al_index;
174 
175  table_index = application_local_session_table (app);
177  (session_endpoint_t *) sep, lh);
178  }
179 
181  {
182  /*
183  * Start listening on local endpoint for requested transport and scope.
184  * Creates a stream session with state LISTENING to be used in session
185  * lookups, prior to establishing connection. Requests transport to
186  * build it's own specific listening connection.
187  */
188  ls = listen_session_alloc (0, st);
189  ls->app_index = app->app_index;
190  ls->app_wrk_index = sep->app_wrk_index;
191 
192  /* Listen pool can be reallocated if the transport is
193  * recursive (tls) */
194  lh = listen_session_get_handle (ls);
195 
196  if ((rv = session_listen (ls, sep)))
197  {
199  session_free (ls);
200  return rv;
201  }
203  app_listener = app_listener_get (app, al_index);
204  app_listener->session_index = ls->session_index;
205  app_listener->ls_handle = lh;
206  ls->al_index = al_index;
207 
208  /* Add to the global lookup table after transport was initialized.
209  * Lookup table needs to be populated only now because sessions
210  * with cut-through transport are are added to app local tables that
211  * are not related to network fibs, i.e., cannot be added as
212  * connections */
213  tc = session_get_transport (ls);
214  if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
215  {
216  fib_protocol_t fib_proto;
217  fib_proto = session_endpoint_fib_proto ((session_endpoint_t *) sep);
218  table_index = session_lookup_get_index_for_fib (fib_proto,
219  sep->fib_index);
220  ASSERT (table_index != SESSION_TABLE_INVALID_INDEX);
222  (session_endpoint_t *) sep,
223  lh);
224  }
225  }
226 
227  if (!ls)
228  {
229  app_listener_free (app, app_listener);
230  return -1;
231  }
232 
233  *listener = app_listener;
234  return 0;
235 }
236 
237 void
239 {
241  session_t *ls;
242 
244  {
245  ls = session_get (al->session_index, 0);
246  session_stop_listen (ls);
247  listen_session_free (ls);
248  }
250  {
252  u32 table_index;
253 
254  table_index = application_local_session_table (app);
255  ls = listen_session_get (al->local_index);
256  ct_session_endpoint (ls, &sep);
257  session_lookup_del_session_endpoint (table_index, &sep);
258  session_stop_listen (ls);
259  listen_session_free (ls);
260  }
261  app_listener_free (app, al);
262 }
263 
264 static app_worker_t *
266 {
267  u32 wrk_index;
268 
269  app = application_get (al->app_index);
270  wrk_index = clib_bitmap_next_set (al->workers, al->accept_rotor + 1);
271  if (wrk_index == ~0)
272  wrk_index = clib_bitmap_first_set (al->workers);
273 
274  ASSERT (wrk_index != ~0);
275  al->accept_rotor = wrk_index;
276  return application_get_worker (app, wrk_index);
277 }
278 
279 session_t *
281 {
283  return 0;
284 
285  return listen_session_get (al->session_index);
286 }
287 
288 session_t *
290 {
292  return 0;
293  return listen_session_get (al->local_index);
294 }
295 
296 static app_worker_map_t *
298 {
300  pool_get (app->worker_maps, map);
301  clib_memset (map, 0, sizeof (*map));
302  return map;
303 }
304 
305 static u32
307 {
308  return (map - app->worker_maps);
309 }
310 
311 static void
313 {
314  pool_put (app->worker_maps, map);
315 }
316 
317 static app_worker_map_t *
319 {
320  if (pool_is_free_index (app->worker_maps, map_index))
321  return 0;
322  return pool_elt_at_index (app->worker_maps, map_index);
323 }
324 
325 static const u8 *
327 {
328  return app->name;
329 }
330 
331 u32
333 {
334  app_namespace_t *app_ns;
335  app_ns = app_namespace_get (app->ns_index);
336  if (!application_has_global_scope (app))
337  return APP_INVALID_INDEX;
338  if (fib_proto == FIB_PROTOCOL_IP4)
339  return session_lookup_get_index_for_fib (fib_proto,
340  app_ns->ip4_fib_index);
341  else
342  return session_lookup_get_index_for_fib (fib_proto,
343  app_ns->ip6_fib_index);
344 }
345 
346 u32
348 {
349  app_namespace_t *app_ns;
350  if (!application_has_local_scope (app))
351  return APP_INVALID_INDEX;
352  app_ns = app_namespace_get (app->ns_index);
353  return app_ns->local_table_index;
354 }
355 
356 /**
357  * Returns app name for app-index
358  */
359 const u8 *
361 {
362  application_t *app = application_get (app_index);
363  if (!app)
364  return 0;
365  return app_get_name (app);
366 }
367 
368 static void
369 application_api_table_add (u32 app_index, u32 api_client_index)
370 {
371  if (api_client_index != APP_INVALID_INDEX)
372  hash_set (app_main.app_by_api_client_index, api_client_index, app_index);
373 }
374 
375 static void
376 application_api_table_del (u32 api_client_index)
377 {
378  hash_unset (app_main.app_by_api_client_index, api_client_index);
379 }
380 
381 static void
383 {
384  hash_set_mem (app_main.app_by_name, app->name, app->app_index);
385 }
386 
387 static void
389 {
390  hash_unset_mem (app_main.app_by_name, app->name);
391 }
392 
394 application_lookup (u32 api_client_index)
395 {
396  uword *p;
397  p = hash_get (app_main.app_by_api_client_index, api_client_index);
398  if (p)
399  return application_get_if_valid (p[0]);
400 
401  return 0;
402 }
403 
406 {
407  uword *p;
408  p = hash_get_mem (app_main.app_by_name, name);
409  if (p)
410  return application_get (p[0]);
411 
412  return 0;
413 }
414 
415 static application_t *
417 {
418  application_t *app;
419  pool_get (app_main.app_pool, app);
420  clib_memset (app, 0, sizeof (*app));
421  app->app_index = app - app_main.app_pool;
422  return app;
423 }
424 
426 application_get (u32 app_index)
427 {
428  if (app_index == APP_INVALID_INDEX)
429  return 0;
430  return pool_elt_at_index (app_main.app_pool, app_index);
431 }
432 
435 {
436  if (pool_is_free_index (app_main.app_pool, app_index))
437  return 0;
438 
439  return pool_elt_at_index (app_main.app_pool, app_index);
440 }
441 
442 static void
444 {
445  if (cb_fns->session_accept_callback == 0)
446  clib_warning ("No accept callback function provided");
447  if (cb_fns->session_connected_callback == 0)
448  clib_warning ("No session connected callback function provided");
449  if (cb_fns->session_disconnect_callback == 0)
450  clib_warning ("No session disconnect callback function provided");
451  if (cb_fns->session_reset_callback == 0)
452  clib_warning ("No session reset callback function provided");
453 }
454 
455 /**
456  * Check app config for given segment type
457  *
458  * Returns 1 on success and 0 otherwise
459  */
460 static u8
462 {
463  u8 is_valid;
464  if (st == SSVM_SEGMENT_MEMFD)
465  {
466  is_valid = (session_main_get_evt_q_segment () != 0);
467  if (!is_valid)
468  clib_warning ("memfd seg: vpp's event qs IN binary api svm region");
469  return is_valid;
470  }
471  else if (st == SSVM_SEGMENT_SHM)
472  {
473  is_valid = (session_main_get_evt_q_segment () == 0);
474  if (!is_valid)
475  clib_warning ("shm seg: vpp's event qs NOT IN binary api svm region");
476  return is_valid;
477  }
478  else
479  return 1;
480 }
481 
482 static int
484 {
487  application_t *app;
488  u64 *options;
489 
490  app = application_alloc ();
491  options = a->options;
492  /*
493  * Make sure we support the requested configuration
494  */
495  if (options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_IS_BUILTIN)
496  seg_type = SSVM_SEGMENT_PRIVATE;
497 
498  if ((options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
499  && seg_type != SSVM_SEGMENT_MEMFD)
500  {
501  clib_warning ("mq eventfds can only be used if socket transport is "
502  "used for binary api");
503  return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
504  }
505 
506  if (!application_verify_cfg (seg_type))
507  return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
508 
510  && options[APP_OPTIONS_PREALLOC_FIFO_HDRS])
511  return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
512 
513  /* Check that the obvious things are properly set up */
514  application_verify_cb_fns (a->session_cb_vft);
515 
516  app->flags = options[APP_OPTIONS_FLAGS];
517  app->cb_fns = *a->session_cb_vft;
518  app->ns_index = options[APP_OPTIONS_NAMESPACE];
520  app->name = vec_dup (a->name);
521 
522  /* If no scope enabled, default to global */
524  && !application_has_local_scope (app))
525  app->flags |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
526 
529  props->segment_size = options[APP_OPTIONS_SEGMENT_SIZE];
530  props->prealloc_fifos = options[APP_OPTIONS_PREALLOC_FIFO_PAIRS];
531  props->prealloc_fifo_hdrs = options[APP_OPTIONS_PREALLOC_FIFO_HDRS];
532  if (options[APP_OPTIONS_ADD_SEGMENT_SIZE])
533  {
534  props->add_segment_size = options[APP_OPTIONS_ADD_SEGMENT_SIZE];
535  props->add_segment = 1;
536  }
537  if (options[APP_OPTIONS_RX_FIFO_SIZE])
538  props->rx_fifo_size = options[APP_OPTIONS_RX_FIFO_SIZE];
539  if (options[APP_OPTIONS_TX_FIFO_SIZE])
540  props->tx_fifo_size = options[APP_OPTIONS_TX_FIFO_SIZE];
541  if (options[APP_OPTIONS_EVT_QUEUE_SIZE])
542  props->evt_q_size = options[APP_OPTIONS_EVT_QUEUE_SIZE];
543  if (options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
544  props->use_mq_eventfd = 1;
545  if (options[APP_OPTIONS_TLS_ENGINE])
546  app->tls_engine = options[APP_OPTIONS_TLS_ENGINE];
547  if (options[APP_OPTIONS_MAX_FIFO_SIZE])
548  props->max_fifo_size = options[APP_OPTIONS_MAX_FIFO_SIZE];
549  if (options[APP_OPTIONS_HIGH_WATERMARK])
550  props->high_watermark = options[APP_OPTIONS_HIGH_WATERMARK];
551  if (options[APP_OPTIONS_LOW_WATERMARK])
552  props->low_watermark = options[APP_OPTIONS_LOW_WATERMARK];
553  if (options[APP_OPTIONS_PCT_FIRST_ALLOC])
554  props->pct_first_alloc = options[APP_OPTIONS_PCT_FIRST_ALLOC];
555  props->segment_type = seg_type;
556 
557  /* Add app to lookup by api_client_index table */
558  if (!application_is_builtin (app))
559  application_api_table_add (app->app_index, a->api_client_index);
560  else
562 
563  a->app_index = app->app_index;
564 
565  APP_DBG ("New app name: %v api index: %u index %u", app->name,
566  a->api_client_index, app->app_index);
567 
568  return 0;
569 }
570 
571 static void
573 {
574  app_worker_map_t *wrk_map;
575  app_worker_t *app_wrk;
576 
577  /*
578  * The app event queue allocated in first segment is cleared with
579  * the segment manager. No need to explicitly free it.
580  */
581  APP_DBG ("Delete app name %v index: %d", app->name, app->app_index);
582 
583  if (application_is_proxy (app))
585 
586  /*
587  * Free workers
588  */
589 
590  /* *INDENT-OFF* */
591  pool_flush (wrk_map, app->worker_maps, ({
592  app_wrk = app_worker_get (wrk_map->wrk_index);
593  app_worker_free (app_wrk);
594  }));
595  /* *INDENT-ON* */
596  pool_free (app->worker_maps);
597 
598  /*
599  * Cleanup remaining state
600  */
601  if (application_is_builtin (app))
603  vec_free (app->name);
604  pool_put (app_main.app_pool, app);
605 }
606 
607 static void
609 {
610  vnet_app_worker_add_del_args_t _args = { 0 }, *args = &_args;
611  app_worker_map_t *wrk_map;
612  u32 *wrks = 0, *wrk_index;
613  app_worker_t *app_wrk;
614 
615  if (api_client_index == ~0)
616  {
617  application_free (app);
618  return;
619  }
620 
621  APP_DBG ("Detaching for app %v index %u api client index %u", app->name,
622  app->app_index, api_client_index);
623 
624  /* *INDENT-OFF* */
625  pool_foreach (wrk_map, app->worker_maps) {
626  app_wrk = app_worker_get (wrk_map->wrk_index);
627  if (app_wrk->api_client_index == api_client_index)
628  vec_add1 (wrks, app_wrk->wrk_index);
629  }
630  /* *INDENT-ON* */
631 
632  if (!vec_len (wrks))
633  {
634  clib_warning ("no workers for app %u api_index %u", app->app_index,
635  api_client_index);
636  return;
637  }
638 
639  args->app_index = app->app_index;
640  args->api_client_index = api_client_index;
641  vec_foreach (wrk_index, wrks)
642  {
643  app_wrk = app_worker_get (wrk_index[0]);
644  args->wrk_map_index = app_wrk->wrk_map_index;
645  args->is_add = 0;
647  }
648  vec_free (wrks);
649 }
650 
651 app_worker_t *
653 {
655  map = app_worker_map_get (app, wrk_map_index);
656  if (!map)
657  return 0;
658  return app_worker_get (map->wrk_index);
659 }
660 
661 app_worker_t *
663 {
664  return application_get_worker (app, 0);
665 }
666 
667 u32
669 {
670  return pool_elts (app->worker_maps);
671 }
672 
673 app_worker_t *
675 {
676  application_t *app;
677  app_listener_t *al;
678 
679  app = application_get (ls->app_index);
680  al = app_listener_get (app, ls->al_index);
681  return app_listener_select_worker (app, al);
682 }
683 
684 int
686 {
687  app_worker_map_t *wrk_map;
688  app_worker_t *app_wrk;
689  segment_manager_t *sm;
690  int rv;
691 
692  app_wrk = app_worker_alloc (app);
693  wrk_map = app_worker_map_alloc (app);
694  wrk_map->wrk_index = app_wrk->wrk_index;
695  app_wrk->wrk_map_index = app_worker_map_index (app, wrk_map);
696 
697  /*
698  * Setup first segment manager
699  */
700  sm = segment_manager_alloc ();
701  sm->app_wrk_index = app_wrk->wrk_index;
702 
703  if ((rv = segment_manager_init_first (sm)))
704  {
705  app_worker_free (app_wrk);
706  return rv;
707  }
708  sm->first_is_protected = 1;
709 
710  /*
711  * Setup app worker
712  */
714  app_wrk->listeners_table = hash_create (0, sizeof (u64));
716  app_wrk->app_is_builtin = application_is_builtin (app);
717 
718  *wrk = app_wrk;
719 
720  return 0;
721 }
722 
723 int
725 {
726  fifo_segment_t *fs;
727  app_worker_map_t *wrk_map;
728  app_worker_t *app_wrk;
729  segment_manager_t *sm;
730  application_t *app;
731  int rv;
732 
733  app = application_get (a->app_index);
734  if (!app)
735  return VNET_API_ERROR_INVALID_VALUE;
736 
737  if (a->is_add)
738  {
739  if ((rv = application_alloc_worker_and_init (app, &app_wrk)))
740  return rv;
741 
742  /* Map worker api index to the app */
743  app_wrk->api_client_index = a->api_client_index;
744  application_api_table_add (app->app_index, a->api_client_index);
745 
748  a->segment = &fs->ssvm;
749  a->segment_handle = segment_manager_segment_handle (sm, fs);
751  a->evt_q = app_wrk->event_queue;
752  a->wrk_map_index = app_wrk->wrk_map_index;
753  }
754  else
755  {
756  wrk_map = app_worker_map_get (app, a->wrk_map_index);
757  if (!wrk_map)
758  return VNET_API_ERROR_INVALID_VALUE;
759 
760  app_wrk = app_worker_get (wrk_map->wrk_index);
761  if (!app_wrk)
762  return VNET_API_ERROR_INVALID_VALUE;
763 
765  app_worker_free (app_wrk);
766  app_worker_map_free (app, wrk_map);
767  if (application_n_workers (app) == 0)
768  application_free (app);
769  }
770  return 0;
771 }
772 
773 static int
774 app_validate_namespace (u8 * namespace_id, u64 secret, u32 * app_ns_index)
775 {
776  app_namespace_t *app_ns;
777  if (vec_len (namespace_id) == 0)
778  {
779  /* Use default namespace */
780  *app_ns_index = 0;
781  return 0;
782  }
783 
784  *app_ns_index = app_namespace_index_from_id (namespace_id);
785  if (*app_ns_index == APP_NAMESPACE_INVALID_INDEX)
786  return VNET_API_ERROR_APP_INVALID_NS;
787  app_ns = app_namespace_get (*app_ns_index);
788  if (!app_ns)
789  return VNET_API_ERROR_APP_INVALID_NS;
790  if (app_ns->ns_secret != secret)
791  return VNET_API_ERROR_APP_WRONG_NS_SECRET;
792  return 0;
793 }
794 
795 static u8 *
796 app_name_from_api_index (u32 api_client_index)
797 {
798  vl_api_registration_t *regp;
799  regp = vl_api_client_index_to_registration (api_client_index);
800  if (regp)
801  return format (0, "%s", regp->name);
802 
803  clib_warning ("api client index %u does not have an api registration!",
804  api_client_index);
805  return format (0, "unknown");
806 }
807 
808 /**
809  * Attach application to vpp
810  *
811  * Allocates a vpp app, i.e., a structure that keeps back pointers
812  * to external app and a segment manager for shared memory fifo based
813  * communication with the external app.
814  */
815 int
817 {
818  fifo_segment_t *fs;
819  application_t *app = 0;
820  app_worker_t *app_wrk;
821  segment_manager_t *sm;
822  u32 app_ns_index = 0;
823  u8 *app_name = 0;
824  u64 secret;
825  int rv;
826 
827  if (a->api_client_index != APP_INVALID_INDEX)
828  app = application_lookup (a->api_client_index);
829  else if (a->name)
830  app = application_lookup_name (a->name);
831  else
832  return VNET_API_ERROR_INVALID_VALUE;
833 
834  if (app)
835  return VNET_API_ERROR_APP_ALREADY_ATTACHED;
836 
837  /* Socket api sets the name and validates namespace prior to attach */
838  if (!a->use_sock_api)
839  {
840  if (a->api_client_index != APP_INVALID_INDEX)
841  {
842  app_name = app_name_from_api_index (a->api_client_index);
843  a->name = app_name;
844  }
845 
846  secret = a->options[APP_OPTIONS_NAMESPACE_SECRET];
847  if ((rv = app_validate_namespace (a->namespace_id, secret,
848  &app_ns_index)))
849  return rv;
850  a->options[APP_OPTIONS_NAMESPACE] = app_ns_index;
851  }
852 
853  if ((rv = application_alloc_and_init ((app_init_args_t *) a)))
854  return rv;
855 
856  app = application_get (a->app_index);
857  if ((rv = application_alloc_worker_and_init (app, &app_wrk)))
858  return rv;
859 
860  a->app_evt_q = app_wrk->event_queue;
861  app_wrk->api_client_index = a->api_client_index;
864 
865  if (application_is_proxy (app))
866  {
868  /* The segment manager pool is reallocated because a new listener
869  * is added. Re-grab segment manager to avoid dangling reference */
871  }
872 
873  ASSERT (vec_len (fs->ssvm.name) <= 128);
874  a->segment = &fs->ssvm;
875  a->segment_handle = segment_manager_segment_handle (sm, fs);
876 
878  vec_free (app_name);
879  return 0;
880 }
881 
882 /**
883  * Detach application from vpp
884  */
885 int
887 {
888  application_t *app;
889 
890  app = application_get_if_valid (a->app_index);
891  if (!app)
892  {
893  clib_warning ("app not attached");
894  return VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
895  }
896 
898  application_detach_process (app, a->api_client_index);
899  return 0;
900 }
901 
902 
903 static u8
905 {
906  u8 is_lep = session_endpoint_is_local (sep);
907  if (!is_lep && sep->sw_if_index != ENDPOINT_INVALID_INDEX
908  && !ip_interface_has_address (sep->sw_if_index, &sep->ip, sep->is_ip4))
909  {
910  clib_warning ("sw_if_index %u not configured with ip %U",
911  sep->sw_if_index, format_ip46_address, &sep->ip,
912  sep->is_ip4);
913  return 0;
914  }
915  return (is_lep || ip_is_local (sep->fib_index, &sep->ip, sep->is_ip4));
916 }
917 
918 static void
920  application_t * app, u8 is_connect)
921 {
922  app_namespace_t *app_ns;
923  u32 ns_index, fib_index;
924 
925  ns_index = app->ns_index;
926 
927  /* App is a transport proto, so fetch the calling app's ns */
928  if (app->flags & APP_OPTIONS_FLAGS_IS_TRANSPORT_APP)
929  ns_index = sep->ns_index;
930 
931  app_ns = app_namespace_get (ns_index);
932  if (!app_ns)
933  return;
934 
935  /* Ask transport and network to bind to/connect using local interface
936  * that "supports" app's namespace. This will fix our local connection
937  * endpoint.
938  */
939 
940  /* If in default namespace and user requested a fib index use it */
941  if (ns_index == 0 && sep->fib_index != ENDPOINT_INVALID_INDEX)
942  fib_index = sep->fib_index;
943  else
944  fib_index = sep->is_ip4 ? app_ns->ip4_fib_index : app_ns->ip6_fib_index;
945  sep->peer.fib_index = fib_index;
946  sep->fib_index = fib_index;
947 
948  if (!is_connect)
949  {
950  sep->sw_if_index = app_ns->sw_if_index;
951  }
952  else
953  {
954  if (app_ns->sw_if_index != APP_NAMESPACE_INVALID_INDEX
955  && sep->peer.sw_if_index != ENDPOINT_INVALID_INDEX
956  && sep->peer.sw_if_index != app_ns->sw_if_index)
957  clib_warning ("Local sw_if_index different from app ns sw_if_index");
958 
959  sep->peer.sw_if_index = app_ns->sw_if_index;
960  }
961 }
962 
963 int
965 {
966  app_listener_t *app_listener;
967  app_worker_t *app_wrk;
968  application_t *app;
969  int rv;
970 
972 
973  app = application_get_if_valid (a->app_index);
974  if (!app)
975  return SESSION_E_NOAPP;
976 
977  app_wrk = application_get_worker (app, a->wrk_map_index);
978  if (!app_wrk)
979  return SESSION_E_INVALID_APPWRK;
980 
981  a->sep_ext.app_wrk_index = app_wrk->wrk_index;
982 
983  session_endpoint_update_for_app (&a->sep_ext, app, 0 /* is_connect */ );
984  if (!session_endpoint_in_ns (&a->sep))
985  return SESSION_E_INVALID_NS;
986 
987  /*
988  * Check if we already have an app listener
989  */
990  app_listener = app_listener_lookup (app, &a->sep_ext);
991  if (app_listener)
992  {
993  if (app_listener->app_index != app->app_index)
994  return SESSION_E_ALREADY_LISTENING;
995  if ((rv = app_worker_start_listen (app_wrk, app_listener)))
996  return rv;
997  a->handle = app_listener_handle (app_listener);
998  return 0;
999  }
1000 
1001  /*
1002  * Create new app listener
1003  */
1004  if ((rv = app_listener_alloc_and_init (app, &a->sep_ext, &app_listener)))
1005  return rv;
1006 
1007  if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1008  {
1009  app_listener_cleanup (app_listener);
1010  return rv;
1011  }
1012 
1013  a->handle = app_listener_handle (app_listener);
1014  return 0;
1015 }
1016 
1017 int
1019 {
1020  app_worker_t *client_wrk;
1021  application_t *client;
1022 
1024 
1025  if (session_endpoint_is_zero (&a->sep))
1026  return SESSION_E_INVALID_RMT_IP;
1027 
1028  client = application_get (a->app_index);
1029  session_endpoint_update_for_app (&a->sep_ext, client, 1 /* is_connect */ );
1030  client_wrk = application_get_worker (client, a->wrk_map_index);
1031 
1032  /*
1033  * First check the local scope for locally attached destinations.
1034  * If we have local scope, we pass *all* connects through it since we may
1035  * have special policy rules even for non-local destinations, think proxy.
1036  */
1037  if (application_has_local_scope (client))
1038  {
1039  int rv;
1040 
1041  a->sep_ext.original_tp = a->sep_ext.transport_proto;
1042  a->sep_ext.transport_proto = TRANSPORT_PROTO_NONE;
1043  rv = app_worker_connect_session (client_wrk, &a->sep, a->api_context);
1044  if (rv <= 0)
1045  return rv;
1046  a->sep_ext.transport_proto = a->sep_ext.original_tp;
1047  }
1048  /*
1049  * Not connecting to a local server, propagate to transport
1050  */
1051  return app_worker_connect_session (client_wrk, &a->sep, a->api_context);
1052 }
1053 
1054 int
1056 {
1057  app_worker_t *app_wrk;
1058  app_listener_t *al;
1059  application_t *app;
1060 
1062 
1063  if (!(app = application_get_if_valid (a->app_index)))
1064  return SESSION_E_NOAPP;
1065 
1066  if (!(al = app_listener_get_w_handle (a->handle)))
1067  return SESSION_E_NOLISTEN;
1068 
1069  if (al->app_index != app->app_index)
1070  {
1071  clib_warning ("app doesn't own handle %llu!", a->handle);
1072  return SESSION_E_OWNER;
1073  }
1074 
1075  app_wrk = application_get_worker (app, a->wrk_map_index);
1076  if (!app_wrk)
1077  {
1078  clib_warning ("no app %u worker %u", app->app_index, a->wrk_map_index);
1079  return SESSION_E_INVALID_APPWRK;
1080  }
1081 
1082  return app_worker_stop_listen (app_wrk, al);
1083 }
1084 
1085 int
1087 {
1088  app_worker_t *app_wrk;
1089  session_t *s;
1090 
1091  s = session_get_from_handle_if_valid (a->handle);
1092  if (!s)
1093  return SESSION_E_NOSESSION;
1094 
1095  app_wrk = app_worker_get (s->app_wrk_index);
1096  if (app_wrk->app_index != a->app_index)
1097  return SESSION_E_OWNER;
1098 
1099  /* We're peeking into another's thread pool. Make sure */
1100  ASSERT (s->session_index == session_index_from_handle (a->handle));
1101 
1102  session_close (s);
1103  return 0;
1104 }
1105 
1106 int
1108 {
1109  app_worker_t *old_wrk = app_worker_get (s->app_wrk_index);
1110  app_listener_t *app_listener;
1111  application_t *app;
1112  int rv;
1113 
1114  if (!old_wrk)
1115  return SESSION_E_INVALID_APPWRK;
1116 
1119  && s->rx_fifo)
1121 
1122  app = application_get (old_wrk->app_index);
1123  if (!app)
1124  return SESSION_E_NOAPP;
1125 
1126  app_listener = app_listener_get (app, s->al_index);
1127 
1128  /* Only remove from lb for now */
1129  app_listener->workers = clib_bitmap_set (app_listener->workers,
1130  old_wrk->wrk_map_index, 0);
1131 
1132  if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1133  return rv;
1134 
1135  s->app_wrk_index = app_wrk->wrk_index;
1136 
1137  return 0;
1138 }
1139 
1140 int
1142 {
1143  return (app->flags & APP_OPTIONS_FLAGS_IS_PROXY);
1144 }
1145 
1146 int
1148 {
1149  return (app->flags & APP_OPTIONS_FLAGS_IS_BUILTIN);
1150 }
1151 
1152 int
1154 {
1155  return (application_is_proxy (app) && application_is_builtin (app));
1156 }
1157 
1158 u8
1160 {
1161  return app->flags & APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
1162 }
1163 
1164 u8
1166 {
1167  return app->flags & APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
1168 }
1169 
1170 static clib_error_t *
1172  u8 transport_proto, u8 is_start)
1173 {
1174  app_namespace_t *app_ns = app_namespace_get (app->ns_index);
1175  u8 is_ip4 = (fib_proto == FIB_PROTOCOL_IP4);
1178  app_worker_t *app_wrk;
1179  app_listener_t *al;
1180  session_t *s;
1181  u32 flags;
1182 
1183  /* TODO decide if we want proxy to be enabled for all workers */
1184  app_wrk = application_get_default_worker (app);
1185  if (is_start)
1186  {
1187  s = app_worker_first_listener (app_wrk, fib_proto, transport_proto);
1188  if (!s)
1189  {
1190  sep.is_ip4 = is_ip4;
1191  sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1192  sep.sw_if_index = app_ns->sw_if_index;
1193  sep.transport_proto = transport_proto;
1194  sep.app_wrk_index = app_wrk->wrk_index; /* only default */
1195 
1196  /* force global scope listener */
1197  flags = app->flags;
1198  app->flags &= ~APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
1199  app_listener_alloc_and_init (app, &sep, &al);
1200  app->flags = flags;
1201 
1202  app_worker_start_listen (app_wrk, al);
1204  s->flags |= SESSION_F_PROXY;
1205  }
1206  }
1207  else
1208  {
1209  s = app_worker_proxy_listener (app_wrk, fib_proto, transport_proto);
1210  ASSERT (s);
1211  }
1212 
1214 
1215  if (!ip_is_zero (&tc->lcl_ip, 1))
1216  {
1217  u32 sti;
1218  sep.is_ip4 = is_ip4;
1219  sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1220  sep.transport_proto = transport_proto;
1221  sep.port = 0;
1222  sti = session_lookup_get_index_for_fib (fib_proto, sep.fib_index);
1223  if (is_start)
1225  (session_endpoint_t *) & sep,
1226  s->session_index);
1227  else
1229  (session_endpoint_t *) & sep);
1230  }
1231 
1232  return 0;
1233 }
1234 
1235 static void
1237  u8 transport_proto, u8 is_start)
1238 {
1240  app_namespace_t *app_ns;
1241  app_ns = app_namespace_get (app->ns_index);
1242  sep.is_ip4 = 1;
1243  sep.transport_proto = transport_proto;
1244  sep.port = 0;
1245 
1246  if (is_start)
1247  {
1248  session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
1249  app->app_index);
1250  sep.is_ip4 = 0;
1251  session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
1252  app->app_index);
1253  }
1254  else
1255  {
1256  session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1257  sep.is_ip4 = 0;
1258  session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1259  }
1260 }
1261 
1262 void
1265 {
1266  if (application_has_local_scope (app))
1267  application_start_stop_proxy_local_scope (app, transport_proto, is_start);
1268 
1269  if (application_has_global_scope (app))
1270  {
1272  transport_proto, is_start);
1274  transport_proto, is_start);
1275  }
1276 }
1277 
1278 void
1280 {
1281  u16 transports = app->proxied_transports;
1282  transport_proto_t tp;
1283 
1284  ASSERT (application_is_proxy (app));
1285 
1286  /* *INDENT-OFF* */
1287  transport_proto_foreach (tp, ({
1288  if (transports & (1 << tp))
1289  application_start_stop_proxy (app, tp, 1);
1290  }));
1291  /* *INDENT-ON* */
1292 }
1293 
1294 void
1296 {
1297  u16 transports = app->proxied_transports;
1298  transport_proto_t tp;
1299 
1300  ASSERT (application_is_proxy (app));
1301 
1302  /* *INDENT-OFF* */
1303  transport_proto_foreach (tp, ({
1304  if (transports & (1 << tp))
1305  application_start_stop_proxy (app, tp, 0);
1306  }));
1307  /* *INDENT-ON* */
1308 }
1309 
1312 {
1313  return &app->sm_properties;
1314 }
1315 
1318 {
1319  application_t *app = application_get (app_index);
1320  return &app->sm_properties;
1321 }
1322 
1323 clib_error_t *
1325 {
1326  /* Deprected, will be remove after 20.01 */
1327  app_cert_key_pair_t *ckpair;
1328  ckpair = app_cert_key_pair_get_default ();
1329  ckpair->cert = vec_dup (a->cert);
1330  return 0;
1331 }
1332 
1333 clib_error_t *
1335 {
1336  /* Deprected, will be remove after 20.01 */
1337  app_cert_key_pair_t *ckpair;
1338  ckpair = app_cert_key_pair_get_default ();
1339  ckpair->key = vec_dup (a->key);
1340  return 0;
1341 }
1342 
1343 static void
1345 {
1347  app_worker_map_t *wrk_map;
1348  app_worker_t *app_wrk;
1349  u32 sm_index;
1350  u64 handle;
1351 
1352  if (!app)
1353  {
1354  vlib_cli_output (vm, "%U", format_app_worker_listener, 0 /* header */ ,
1355  0, 0, verbose);
1356  return;
1357  }
1358 
1359  /* *INDENT-OFF* */
1360  pool_foreach (wrk_map, app->worker_maps) {
1361  app_wrk = app_worker_get (wrk_map->wrk_index);
1362  if (hash_elts (app_wrk->listeners_table) == 0)
1363  continue;
1364  hash_foreach (handle, sm_index, app_wrk->listeners_table, ({
1365  vlib_cli_output (vm, "%U", format_app_worker_listener, app_wrk,
1366  handle, sm_index, verbose);
1367  }));
1368  }
1369  /* *INDENT-ON* */
1370 }
1371 
1372 static void
1374 {
1375  app_worker_map_t *wrk_map;
1376  app_worker_t *app_wrk;
1377 
1378  if (!app)
1379  {
1380  app_worker_format_connects (0, verbose);
1381  return;
1382  }
1383 
1384  /* *INDENT-OFF* */
1385  pool_foreach (wrk_map, app->worker_maps) {
1386  app_wrk = app_worker_get (wrk_map->wrk_index);
1387  app_worker_format_connects (app_wrk, verbose);
1388  }
1389  /* *INDENT-ON* */
1390 }
1391 
1392 u8 *
1393 format_cert_key_pair (u8 * s, va_list * args)
1394 {
1395  app_cert_key_pair_t *ckpair = va_arg (*args, app_cert_key_pair_t *);
1396  int key_len = 0, cert_len = 0;
1397  cert_len = vec_len (ckpair->cert);
1398  key_len = vec_len (ckpair->key);
1399  if (ckpair->cert_key_index == 0)
1400  s = format (s, "DEFAULT (cert:%d, key:%d)", cert_len, key_len);
1401  else
1402  s = format (s, "%d (cert:%d, key:%d)", ckpair->cert_key_index,
1403  cert_len, key_len);
1404  return s;
1405 }
1406 
1407 u8 *
1408 format_crypto_engine (u8 * s, va_list * args)
1409 {
1410  u32 engine = va_arg (*args, u32);
1411  switch (engine)
1412  {
1413  case CRYPTO_ENGINE_NONE:
1414  return format (s, "none");
1415  case CRYPTO_ENGINE_MBEDTLS:
1416  return format (s, "mbedtls");
1417  case CRYPTO_ENGINE_OPENSSL:
1418  return format (s, "openssl");
1419  case CRYPTO_ENGINE_PICOTLS:
1420  return format (s, "picotls");
1421  case CRYPTO_ENGINE_VPP:
1422  return format (s, "vpp");
1423  default:
1424  return format (s, "unknown engine");
1425  }
1426  return s;
1427 }
1428 
1429 uword
1430 unformat_crypto_engine (unformat_input_t * input, va_list * args)
1431 {
1432  u8 *a = va_arg (*args, u8 *);
1433  if (unformat (input, "mbedtls"))
1434  *a = CRYPTO_ENGINE_MBEDTLS;
1435  else if (unformat (input, "openssl"))
1436  *a = CRYPTO_ENGINE_OPENSSL;
1437  else if (unformat (input, "picotls"))
1438  *a = CRYPTO_ENGINE_PICOTLS;
1439  else if (unformat (input, "vpp"))
1440  *a = CRYPTO_ENGINE_VPP;
1441  else
1442  return 0;
1443  return 1;
1444 }
1445 
1446 u8 *
1447 format_crypto_context (u8 * s, va_list * args)
1448 {
1449  crypto_context_t *crctx = va_arg (*args, crypto_context_t *);
1450  s = format (s, "[0x%x][sub%d,ckpair%x]", crctx->ctx_index,
1451  crctx->n_subscribers, crctx->ckpair_index);
1452  s = format (s, "[%U]", format_crypto_engine, crctx->crypto_engine);
1453  return s;
1454 }
1455 
1456 u8 *
1457 format_application (u8 * s, va_list * args)
1458 {
1459  application_t *app = va_arg (*args, application_t *);
1460  CLIB_UNUSED (int verbose) = va_arg (*args, int);
1461  segment_manager_props_t *props;
1462  const u8 *app_ns_name, *app_name;
1463  app_worker_map_t *wrk_map;
1464  app_worker_t *app_wrk;
1465 
1466  if (app == 0)
1467  {
1468  if (!verbose)
1469  s = format (s, "%-10s%-20s%-40s", "Index", "Name", "Namespace");
1470  return s;
1471  }
1472 
1473  app_name = app_get_name (app);
1474  app_ns_name = app_namespace_id_from_index (app->ns_index);
1476  if (!verbose)
1477  {
1478  s = format (s, "%-10u%-20v%-40v", app->app_index, app_name,
1479  app_ns_name);
1480  return s;
1481  }
1482 
1483  s = format (s, "app-name %v app-index %u ns-index %u seg-size %U\n",
1484  app_name, app->app_index, app->ns_index,
1485  format_memory_size, props->add_segment_size);
1486  s = format (s, "rx-fifo-size %U tx-fifo-size %U workers:\n",
1487  format_memory_size, props->rx_fifo_size,
1488  format_memory_size, props->tx_fifo_size);
1489 
1490  /* *INDENT-OFF* */
1491  pool_foreach (wrk_map, app->worker_maps) {
1492  app_wrk = app_worker_get (wrk_map->wrk_index);
1493  s = format (s, "%U", format_app_worker, app_wrk);
1494  }
1495  /* *INDENT-ON* */
1496 
1497  return s;
1498 }
1499 
1500 void
1502 {
1503  application_t *app;
1504 
1505  if (!pool_elts (app_main.app_pool))
1506  {
1507  vlib_cli_output (vm, "No active server bindings");
1508  return;
1509  }
1510 
1511  application_format_listeners (0, verbose);
1512 
1513  /* *INDENT-OFF* */
1514  pool_foreach (app, app_main.app_pool) {
1515  application_format_listeners (app, verbose);
1516  }
1517  /* *INDENT-ON* */
1518 }
1519 
1520 void
1522 {
1523  application_t *app;
1524 
1525  if (!pool_elts (app_main.app_pool))
1526  {
1527  vlib_cli_output (vm, "No active apps");
1528  return;
1529  }
1530 
1531  application_format_connects (0, verbose);
1532 
1533  /* *INDENT-OFF* */
1534  pool_foreach (app, app_main.app_pool) {
1535  application_format_connects (app, verbose);
1536  }
1537  /* *INDENT-ON* */
1538 }
1539 
1540 static clib_error_t *
1542  vlib_cli_command_t * cmd)
1543 {
1544  app_cert_key_pair_t *ckpair;
1546 
1547  /* *INDENT-OFF* */
1548  pool_foreach (ckpair, app_main.cert_key_pair_store) {
1549  vlib_cli_output (vm, "%U", format_cert_key_pair, ckpair);
1550  }
1551  /* *INDENT-ON* */
1552  return 0;
1553 }
1554 
1555 static inline void
1557 {
1559  app_worker_t *wrk;
1560  /* *INDENT-OFF* */
1561  pool_foreach (map, app->worker_maps) {
1562  wrk = app_worker_get (map->wrk_index);
1563  vlib_cli_output (vm, "[A%d][%d]%U", app->app_index,
1565  wrk->event_queue);
1566  }
1567  /* *INDENT-ON* */
1568 }
1569 
1570 static clib_error_t *
1572 {
1573  application_t *app;
1574  int i, n_threads;
1575 
1576  n_threads = vec_len (vlib_mains);
1577 
1578  for (i = 0; i < n_threads; i++)
1579  {
1580  vlib_cli_output (vm, "[Ctrl%d]%U", i, format_svm_msg_q,
1582  }
1583 
1584  /* *INDENT-OFF* */
1585  pool_foreach (app, app_main.app_pool) {
1586  appliction_format_app_mq (vm, app);
1587  }
1588  /* *INDENT-ON* */
1589  return 0;
1590 }
1591 
1592 static clib_error_t *
1594  vlib_cli_command_t * cmd)
1595 {
1596  int do_server = 0, do_client = 0, do_mq = 0;
1597  application_t *app;
1598  u32 app_index = ~0;
1599  int verbose = 0;
1600 
1602 
1603  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1604  {
1605  if (unformat (input, "server"))
1606  do_server = 1;
1607  else if (unformat (input, "client"))
1608  do_client = 1;
1609  else if (unformat (input, "mq"))
1610  do_mq = 1;
1611  else if (unformat (input, "%u", &app_index))
1612  ;
1613  else if (unformat (input, "verbose"))
1614  verbose = 1;
1615  else
1616  return clib_error_return (0, "unknown input `%U'",
1617  format_unformat_error, input);
1618  }
1619 
1620  if (do_mq && app_index != ~0)
1621  {
1622  app = application_get_if_valid (app_index);
1623  if (!app)
1624  return clib_error_return (0, "No app with index %u", app_index);
1625 
1626  appliction_format_app_mq (vm, app);
1627  return 0;
1628  }
1629 
1630  if (do_mq)
1631  {
1633  return 0;
1634  }
1635 
1636  if (do_server)
1637  {
1638  application_format_all_listeners (vm, verbose);
1639  return 0;
1640  }
1641 
1642  if (do_client)
1643  {
1644  application_format_all_clients (vm, verbose);
1645  return 0;
1646  }
1647 
1648  if (app_index != ~0)
1649  {
1650  app = application_get_if_valid (app_index);
1651  if (!app)
1652  return clib_error_return (0, "No app with index %u", app_index);
1653 
1654  vlib_cli_output (vm, "%U", format_application, app, /* verbose */ 1);
1655  return 0;
1656  }
1657 
1658  /* Print app related info */
1659  if (!do_server && !do_client)
1660  {
1661  vlib_cli_output (vm, "%U", format_application, 0, 0);
1662  /* *INDENT-OFF* */
1663  pool_foreach (app, app_main.app_pool) {
1664  vlib_cli_output (vm, "%U", format_application, app, 0);
1665  }
1666  /* *INDENT-ON* */
1667  }
1668 
1669  return 0;
1670 }
1671 
1672 /* Certificate store */
1673 
1674 static app_cert_key_pair_t *
1676 {
1677  app_cert_key_pair_t *ckpair;
1678  pool_get (app_main.cert_key_pair_store, ckpair);
1679  clib_memset (ckpair, 0, sizeof (*ckpair));
1680  ckpair->cert_key_index = ckpair - app_main.cert_key_pair_store;
1681  return ckpair;
1682 }
1683 
1686 {
1687  if (pool_is_free_index (app_main.cert_key_pair_store, index))
1688  return 0;
1689  return app_cert_key_pair_get (index);
1690 }
1691 
1694 {
1695  return pool_elt_at_index (app_main.cert_key_pair_store, index);
1696 }
1697 
1700 {
1701  /* To maintain legacy bapi */
1702  return app_cert_key_pair_get (0);
1703 }
1704 
1705 int
1707 {
1709  ckpair->cert = vec_dup (a->cert);
1710  ckpair->key = vec_dup (a->key);
1711  a->index = ckpair->cert_key_index;
1712  return 0;
1713 }
1714 
1715 int
1717 {
1718  app_cert_key_pair_t *ckpair;
1719  if (!(ckpair = app_cert_key_pair_get_if_valid (index)))
1720  return -1;
1721  if (vec_search (ckpair->app_interests, app_index) != ~0)
1722  vec_add1 (ckpair->app_interests, app_index);
1723  return 0;
1724 }
1725 
1726 int
1728 {
1729  app_cert_key_pair_t *ckpair;
1730  application_t *app;
1731  u32 *app_index;
1732 
1733  if (!(ckpair = app_cert_key_pair_get_if_valid (index)))
1734  return (VNET_API_ERROR_INVALID_VALUE);
1735 
1736  vec_foreach (app_index, ckpair->app_interests)
1737  {
1738  if ((app = application_get_if_valid (*app_index))
1741  }
1742 
1743  vec_free (ckpair->cert);
1744  vec_free (ckpair->key);
1745  pool_put (app_main.cert_key_pair_store, ckpair);
1746  return 0;
1747 }
1748 
1749 clib_error_t *
1751 {
1752  /* Add a certificate with index 0 to support legacy apis */
1753  (void) app_cert_key_pair_alloc ();
1755  app_main.app_by_name = hash_create_vec (0, sizeof (u8), sizeof (uword));
1756  return 0;
1757 }
1758 
1759 /* *INDENT-OFF* */
1761 
1762 VLIB_CLI_COMMAND (show_app_command, static) =
1763 {
1764  .path = "show app",
1765  .short_help = "show app [app_id] [server|client] [mq] [verbose]",
1766  .function = show_app_command_fn,
1767 };
1768 
1769 VLIB_CLI_COMMAND (show_certificate_command, static) =
1770 {
1771  .path = "show app certificate",
1772  .short_help = "list app certs and keys present in store",
1773  .function = show_certificate_command_fn,
1774 };
1775 /* *INDENT-ON* */
1776 
1779 {
1780  return (++app_main.last_crypto_engine);
1781 }
1782 
1783 u8
1785 {
1786  return (app_main.last_crypto_engine + 1);
1787 }
1788 
1789 /*
1790  * fd.io coding-style-patch-verification: ON
1791  *
1792  * Local Variables:
1793  * eval: (c-set-style "gnu")
1794  * End:
1795  */
u32 segment_manager_index(segment_manager_t *sm)
static void application_name_table_del(application_t *app)
Definition: application.c:388
u8 ip_interface_has_address(u32 sw_if_index, ip46_address_t *ip, u8 is_ip4)
Definition: ip_interface.c:140
u32 flags
Flags.
Definition: application.h:101
u32 al_index
App listener index in app&#39;s listener pool if a listener.
struct _vnet_app_worker_add_del_args vnet_app_worker_add_del_args_t
#define ENDPOINT_INVALID_INDEX
#define APP_NAMESPACE_INVALID_INDEX
session_t * app_worker_proxy_listener(app_worker_t *app, u8 fib_proto, u8 transport_proto)
u8 * name
Client name.
Definition: api_common.h:54
#define hash_set(h, key, value)
Definition: hash.h:255
void segment_manager_segment_reader_unlock(segment_manager_t *sm)
u64 segment_manager_segment_handle(segment_manager_t *sm, fifo_segment_t *segment)
#define CLIB_UNUSED(x)
Definition: clib.h:87
app_cert_key_pair_t * app_cert_key_pair_get_default()
Definition: application.c:1699
static void application_detach_process(application_t *app, u32 api_client_index)
Definition: application.c:608
int vnet_app_add_cert_key_pair(vnet_app_add_cert_key_pair_args_t *a)
Definition: application.c:1706
u32 al_index
app listener index in app pool
Definition: application.h:86
#define hash_unset(h, key)
Definition: hash.h:261
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105
a
Definition: bitmap.h:544
#define SESSION_TABLE_INVALID_INDEX
Definition: session_table.h:56
transport_proto
Definition: session.api:22
u64 session_lookup_endpoint_listener(u32 table_index, session_endpoint_t *sep, u8 use_rules)
Lookup listener for session endpoint in table.
svm_fifo_t * tx_fifo
u32 ns_index
Namespace the application belongs to.
Definition: application.h:116
u8 application_has_global_scope(application_t *app)
Definition: application.c:1165
struct _vnet_connect_args vnet_connect_args_t
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:527
struct _vnet_unlisten_args_t vnet_unlisten_args_t
int application_change_listener_owner(session_t *s, app_worker_t *app_wrk)
Definition: application.c:1107
u32 session_index
Index in thread pool where session was allocated.
int session_stop_listen(session_t *s)
Ask transport to stop listening on local transport endpoint.
Definition: session.c:1364
#define session_cli_return_if_not_enabled()
Definition: session.h:656
u8 ip_is_local(u32 fib_index, ip46_address_t *ip46_address, u8 is_ip4)
Checks that an ip is local to the requested fib.
Definition: ip.c:55
static clib_error_t * show_app_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: application.c:1593
unsigned long u64
Definition: types.h:89
transport_connection_t * listen_session_get_transport(session_t *s)
Definition: session.c:1654
static svm_msg_q_t * session_main_get_vpp_event_queue(u32 thread_index)
Definition: session.h:645
crypto_engine_type_t app_crypto_engine_type_add(void)
Definition: application.c:1778
static app_worker_t * app_listener_select_worker(application_t *app, app_listener_t *al)
Definition: application.c:265
app_cert_key_pair_t * app_cert_key_pair_get(u32 index)
Definition: application.c:1693
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
transport_connection_t * session_get_transport(session_t *s)
Definition: session.c:1631
application_t * application_lookup_name(const u8 *name)
Definition: application.c:405
svm_fifo_t * rx_fifo
Pointers to rx/tx buffers.
int segment_manager_init_first(segment_manager_t *sm)
Initializes segment manager based on options provided.
app_listener_t * app_listener_get_w_session(session_t *ls)
Definition: application.c:67
int app_worker_connect_session(app_worker_t *app, session_endpoint_t *tep, u32 api_context)
u32 session_lookup_get_index_for_fib(u32 fib_proto, u32 fib_index)
static session_t * listen_session_get_from_handle(session_handle_t handle)
Definition: session.h:583
int vnet_app_del_cert_key_pair(u32 index)
Definition: application.c:1727
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:592
u8 * format_svm_msg_q(u8 *s, va_list *args)
Format message queue, shows msg count for each ring.
application_t * application_lookup(u32 api_client_index)
Definition: application.c:394
app_listener_t * app_listener_get(application_t *app, u32 app_listener_index)
Definition: application.c:46
app_listener_t * listeners
Pool of listeners for the app.
Definition: application.h:121
u32 wrk_map_index
Worker index in app&#39;s map pool.
Definition: application.h:40
session_handle_t app_listener_handle(app_listener_t *al)
Definition: application.c:61
static session_t * listen_session_alloc(u8 thread_index, session_type_t type)
Definition: session.h:596
u16 key_len
Definition: ikev2_types.api:95
static uword * clib_bitmap_set(uword *ai, uword i, uword value)
Sets the ith bit of a bitmap to new_value Removes trailing zeros from the bitmap. ...
Definition: bitmap.h:167
#define hash_set_mem(h, key, value)
Definition: hash.h:275
app_cert_key_pair_t * cert_key_pair_store
Pool from which we allocate certificates (key, cert)
Definition: application.h:152
vlib_main_t * vm
Definition: in2out_ed.c:1580
static u8 session_endpoint_fib_proto(session_endpoint_t *sep)
static session_t * session_get(u32 si, u32 thread_index)
Definition: session.h:307
int vnet_unlisten(vnet_unlisten_args_t *a)
Definition: application.c:1055
void(* session_reset_callback)(session_t *s)
Notify app that session was reset.
uword * listeners_table
Lookup tables for listeners.
Definition: application.h:52
struct _vnet_application_add_tls_cert_args_t vnet_app_add_tls_cert_args_t
u32 flags
Session flags.
u8 app_is_builtin
Definition: application.h:65
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:251
uword unformat_crypto_engine(unformat_input_t *input, va_list *args)
Definition: application.c:1430
vlib_main_t ** vlib_mains
Definition: buffer.c:332
clib_error_t * vnet_app_add_tls_cert(vnet_app_add_tls_cert_args_t *a)
Definition: application.c:1324
unsigned char u8
Definition: types.h:56
app_worker_t * application_get_worker(application_t *app, u32 wrk_map_index)
Definition: application.c:652
#define SESSION_ENDPOINT_NULL
Definition: session_types.h:69
static u8 session_endpoint_in_ns(session_endpoint_t *sep)
Definition: application.c:904
application_t * application_get_if_valid(u32 app_index)
Definition: application.c:434
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
struct _vnet_bind_args_t vnet_listen_args_t
segment_manager_props_t * application_segment_manager_properties(application_t *app)
Definition: application.c:1311
static session_handle_t session_handle(session_t *s)
u32 ctx_index
index in crypto context pool
u8 session_type_t
static int application_alloc_and_init(app_init_args_t *a)
Definition: application.c:483
u32 app_index
owning app index
Definition: application.h:87
int application_is_proxy(application_t *app)
Definition: application.c:1141
enum ssvm_segment_type_ ssvm_segment_type_t
u32 first_segment_manager
First segment manager has in the the first segment the application&#39;s event fifo.
Definition: application.h:59
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
struct _vnet_disconnect_args_t vnet_disconnect_args_t
void segment_manager_dealloc_fifos(svm_fifo_t *rx_fifo, svm_fifo_t *tx_fifo)
u32 local_index
local listening session index
Definition: application.h:88
u32 session_index
global listening session index
Definition: application.h:89
description fragment has unexpected format
Definition: map.api:433
#define hash_foreach(key_var, value_var, h, body)
Definition: hash.h:442
u8 * format_memory_size(u8 *s, va_list *va)
Definition: std-formats.c:209
#define clib_error_return(e, args...)
Definition: error.h:99
unsigned int u32
Definition: types.h:88
#define vec_search(v, E)
Search a vector for the index of the entry that matches.
Definition: vec.h:1012
u32 app_namespace_index_from_id(const u8 *ns_id)
u16 proxied_transports
Definition: application.h:118
static int app_validate_namespace(u8 *namespace_id, u64 secret, u32 *app_ns_index)
Definition: application.c:774
#define SESSION_INVALID_HANDLE
Definition: session_types.h:23
u8 tls_engine
Preferred tls engine.
Definition: application.h:124
struct _vnet_app_attach_args_t vnet_app_attach_args_t
struct _session_endpoint_cfg session_endpoint_cfg_t
static const u8 * app_get_name(application_t *app)
Definition: application.c:326
#define pool_flush(VAR, POOL, BODY)
Remove all elements from a pool in a safe way.
Definition: pool.h:588
static app_main_t app_main
Definition: application.c:22
static void application_verify_cb_fns(session_cb_vft_t *cb_fns)
Definition: application.c:443
clib_error_t * vnet_app_add_tls_key(vnet_app_add_tls_key_args_t *a)
Definition: application.c:1334
int application_is_builtin(application_t *app)
Definition: application.c:1147
#define hash_get(h, key)
Definition: hash.h:249
u32 app_namespace_get_fib_index(app_namespace_t *app_ns, u8 fib_proto)
static session_type_t session_type_from_proto_and_ip(transport_proto_t proto, u8 is_ip4)
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:546
#define hash_unset_mem(h, key)
Definition: hash.h:291
session_t * app_listener_get_local_session(app_listener_t *al)
Definition: application.c:289
static uword clib_bitmap_first_set(uword *ai)
Return the lowest numbered set bit in a bitmap.
Definition: bitmap.h:391
static void application_api_table_del(u32 api_client_index)
Definition: application.c:376
static session_t * session_get_from_handle(session_handle_t handle)
Definition: session.h:327
session_t * app_listener_get_session(app_listener_t *al)
Definition: application.c:280
u32 app_index
Index of application that owns the listener.
struct _unformat_input_t unformat_input_t
unsigned short u16
Definition: types.h:57
const u8 * application_name_from_index(u32 app_index)
Returns app name for app-index.
Definition: application.c:360
u8 * format_crypto_engine(u8 *s, va_list *args)
Definition: application.c:1408
static u32 app_worker_map_index(application_t *app, app_worker_map_t *map)
Definition: application.c:306
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:301
#define APP_INVALID_INDEX
Definition: application.h:178
#define vec_dup(V)
Return copy of vector (no header, no alignment)
Definition: vec.h:429
struct _segment_manager_props segment_manager_props_t
app_namespace_t * app_namespace_get(u32 index)
static void appliction_format_app_mq(vlib_main_t *vm, application_t *app)
Definition: application.c:1556
u32 wrk_index
Worker index in global worker pool.
Definition: application.h:37
static clib_error_t * show_certificate_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: application.c:1541
u32 application_session_table(application_t *app, u8 fib_proto)
Definition: application.c:332
#define SESSION_INVALID_INDEX
Definition: session_types.h:22
app_worker_t * app_worker_alloc(application_t *app)
session_handle_t app_listen_session_handle(session_t *ls)
Get app listener handle for listening session.
Definition: application.c:78
u32 n_subscribers
refcount of sessions using said context
u8 * format_cert_key_pair(u8 *s, va_list *args)
Definition: application.c:1393
static u64 listen_session_get_handle(session_t *s)
Definition: session.h:575
u8 * format_app_worker_listener(u8 *s, va_list *args)
app_worker_map_t * worker_maps
Pool of mappings that keep track of workers associated to this app.
Definition: application.h:110
format_function_t format_ip46_address
Definition: ip46_address.h:50
int vnet_application_attach(vnet_app_attach_args_t *a)
Attach application to vpp.
Definition: application.c:816
static session_t * session_get_from_handle_if_valid(session_handle_t handle)
Definition: session.h:336
#define pool_free(p)
Free a pool.
Definition: pool.h:440
An API client registration, only in vpp/vlib.
Definition: api_common.h:47
svm_msg_q_t * segment_manager_event_queue(segment_manager_t *sm)
u32 application_local_session_table(application_t *app)
Definition: application.c:347
int(* session_connected_callback)(u32 app_wrk_index, u32 opaque, session_t *s, session_error_t code)
Connection request callback.
app_cert_key_pair_t * app_cert_key_pair_get_if_valid(u32 index)
Definition: application.c:1685
ssvm_private_t ssvm
ssvm segment data
Definition: fifo_segment.h:68
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
u32 ckpair_index
certificate & key
uword * app_by_name
Hash table of builtin apps by name.
Definition: application.h:147
segment_manager_t * segment_manager_alloc(void)
static void app_listener_free(application_t *app, app_listener_t *app_listener)
Definition: application.c:52
int(* app_cert_key_pair_delete_callback)(app_cert_key_pair_t *ckpair)
Cert and key pair delete notification.
session_t * app_worker_first_listener(app_worker_t *app, u8 fib_proto, u8 transport_proto)
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:317
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:380
segment_manager_props_t sm_properties
Segment manager properties.
Definition: application.h:107
counters map
Definition: map.api:356
static application_t * application_alloc(void)
Definition: application.c:416
int session_lookup_del_session_endpoint(u32 table_index, session_endpoint_t *sep)
void session_free(session_t *s)
Definition: session.c:210
#define clib_warning(format, args...)
Definition: error.h:59
static void session_endpoint_update_for_app(session_endpoint_cfg_t *sep, application_t *app, u8 is_connect)
Definition: application.c:919
Don&#39;t register connection in lookup.
clib_bitmap_t * workers
workers accepting connections
Definition: application.h:84
struct _transport_connection transport_connection_t
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:298
const u8 * app_namespace_id_from_index(u32 index)
void application_format_all_clients(vlib_main_t *vm, int verbose)
Definition: application.c:1521
static vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
Definition: api.h:79
int session_lookup_add_session_endpoint(u32 table_index, session_endpoint_t *sep, u64 value)
string name[64]
Definition: ip.api:44
static u8 vlib_thread_is_main_w_barrier(void)
Definition: threads.h:530
static void application_name_table_add(application_t *app)
Definition: application.c:382
struct _app_namespace app_namespace_t
application_t * application_get(u32 app_index)
Definition: application.c:426
int vnet_app_add_cert_key_interest(u32 index, u32 app_index)
Ask for app cb on pair deletion.
Definition: application.c:1716
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:158
segment_manager_props_t * application_get_segment_manager_properties(u32 app_index)
Definition: application.c:1317
int session_listen(session_t *ls, session_endpoint_cfg_t *sep)
Ask transport to listen on session endpoint.
Definition: session.c:1335
static u32 session_index_from_handle(session_handle_t handle)
#define hash_create(elts, value_bytes)
Definition: hash.h:696
int app_listener_alloc_and_init(application_t *app, session_endpoint_cfg_t *sep, app_listener_t **listener)
Definition: application.c:130
app_listener_t * app_listener_get_w_handle(session_handle_t handle)
Get app listener for listener session handle.
Definition: application.c:88
static uword hash_elts(void *v)
Definition: hash.h:118
#define ASSERT(truth)
int application_alloc_worker_and_init(application_t *app, app_worker_t **wrk)
Definition: application.c:685
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:696
segment_manager_props_t * segment_manager_props_init(segment_manager_props_t *props)
app_worker_t * application_listener_select_worker(session_t *ls)
Definition: application.c:674
static u8 * app_name_from_api_index(u32 api_client_index)
Definition: application.c:796
int vnet_listen(vnet_listen_args_t *a)
Definition: application.c:964
uword * app_by_api_client_index
Hash table of apps by api client index.
Definition: application.h:142
fifo_segment_t * segment_manager_get_segment_w_lock(segment_manager_t *sm, u32 segment_index)
Reads a segment from the segment manager&#39;s pool and acquires reader lock.
int vnet_application_detach(vnet_app_detach_args_t *a)
Detach application from vpp.
Definition: application.c:886
void application_remove_proxy(application_t *app)
Definition: application.c:1295
session_cb_vft_t cb_fns
Callbacks: shoulder-taps for the server/client.
Definition: application.h:104
struct _vnet_application_add_tls_key_args_t vnet_app_add_tls_key_args_t
enum _transport_proto transport_proto_t
struct _vnet_app_add_cert_key_pair_args_ vnet_app_add_cert_key_pair_args_t
#define clib_bitmap_free(v)
Free a bitmap.
Definition: bitmap.h:92
u32 accept_rotor
last worker to accept a connection
Definition: application.h:85
struct _vnet_app_detach_args_t vnet_app_detach_args_t
int vnet_connect(vnet_connect_args_t *a)
Definition: application.c:1018
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
u8 * name
Definition: ssvm.h:87
static void listen_session_free(session_t *s)
Definition: session.h:612
u8 ip_is_zero(ip46_address_t *ip46_address, u8 is_ip4)
Definition: ip.c:20
u32 app_index
App index in app pool.
Definition: application.h:98
#define hash_create_vec(elts, key_bytes, value_bytes)
Definition: hash.h:668
app_worker_t * app_worker_get(u32 wrk_index)
application_t * app_pool
Pool from which we allocate all applications.
Definition: application.h:137
u64 session_handle_t
static void application_free(application_t *app)
Definition: application.c:572
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
u8 * format_application(u8 *s, va_list *args)
Definition: application.c:1457
void(* session_disconnect_callback)(session_t *s)
Notify app that session is closing.
u8 * name
Name registered by builtin apps.
Definition: application.h:113
void session_close(session_t *s)
Initialize session closing procedure.
Definition: session.c:1392
u64 uword
Definition: types.h:112
session_handle_t ls_handle
session handle of the local or global listening session that also identifies the app listener ...
Definition: application.h:90
static u8 session_endpoint_is_zero(session_endpoint_t *sep)
static app_worker_map_t * app_worker_map_alloc(application_t *app)
Definition: application.c:297
ssvm_private_t * session_main_get_evt_q_segment(void)
Definition: session.c:1555
connectionless service
u32 index
Definition: flow_types.api:221
int vnet_disconnect_session(vnet_disconnect_args_t *a)
Definition: application.c:1086
app_worker_t * application_get_default_worker(application_t *app)
Definition: application.c:662
struct _segment_manager segment_manager_t
#define SESSION_ENDPOINT_CFG_NULL
Definition: session_types.h:79
segment_manager_t * segment_manager_get(u32 index)
u32 application_n_workers(application_t *app)
Definition: application.c:668
void app_listener_cleanup(app_listener_t *al)
Definition: application.c:238
int vnet_app_worker_add_del(vnet_app_worker_add_del_args_t *a)
Definition: application.c:724
static void application_api_table_add(u32 app_index, u32 api_client_index)
Definition: application.c:369
static void application_format_listeners(application_t *app, int verbose)
Definition: application.c:1344
int app_worker_start_listen(app_worker_t *app_wrk, app_listener_t *lstnr)
static clib_error_t * application_start_stop_proxy_fib_proto(application_t *app, u8 fib_proto, u8 transport_proto, u8 is_start)
Definition: application.c:1171
#define hash_get_mem(h, key)
Definition: hash.h:269
#define app_interface_check_thread_and_barrier(_fn, _arg)
Definition: application.c:24
u8 app_crypto_engine_n_types(void)
Definition: application.c:1784
u32 app_index
Index of owning app.
Definition: application.h:43
app_listener_t * app_listener_lookup(application_t *app, session_endpoint_cfg_t *sep_ext)
Definition: application.c:98
static struct option options[]
Definition: main.c:52
static void application_start_stop_proxy_local_scope(application_t *app, u8 transport_proto, u8 is_start)
Definition: application.c:1236
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
int app_worker_stop_listen(app_worker_t *app_wrk, app_listener_t *al)
void app_worker_free(app_worker_t *app_wrk)
static app_cert_key_pair_t * app_cert_key_pair_alloc()
Definition: application.c:1675
#define transport_proto_foreach(VAR, BODY)
Definition: transport.h:127
static app_worker_map_t * app_worker_map_get(application_t *app, u32 map_index)
Definition: application.c:318
#define vec_foreach(var, vec)
Vector iterator.
enum crypto_engine_type_ crypto_engine_type_t
u32 app_wrk_index
Index of the app worker that owns the session.
void application_setup_proxy(application_t *app)
Definition: application.c:1279
void app_worker_format_connects(app_worker_t *app_wrk, int verbose)
static u8 session_endpoint_is_local(session_endpoint_t *sep)
static u8 application_verify_cfg(ssvm_segment_type_t st)
Check app config for given segment type.
Definition: application.c:461
static void application_format_connects(application_t *app, int verbose)
Definition: application.c:1373
int(* session_accept_callback)(session_t *new_session)
Notify server of newly accepted session.
int application_is_builtin_proxy(application_t *app)
Definition: application.c:1153
u32 api_client_index
API index for the worker.
Definition: application.h:63
struct _session_endpoint session_endpoint_t
static void app_worker_map_free(application_t *app, app_worker_map_t *map)
Definition: application.c:312
void application_start_stop_proxy(application_t *app, transport_proto_t transport_proto, u8 is_start)
Definition: application.c:1263
svm_msg_q_t * event_queue
Application listens for events on this svm queue.
Definition: application.h:46
u8 * format_app_worker(u8 *s, va_list *args)
static transport_service_type_t session_transport_service_type(session_t *s)
void application_format_all_listeners(vlib_main_t *vm, int verbose)
Definition: application.c:1501
#define APP_DBG(_fmt, _args...)
Definition: application.h:29
clib_error_t * application_init(vlib_main_t *vm)
Definition: application.c:1750
crypto_engine_type_t last_crypto_engine
Definition: application.h:157
static session_t * listen_session_get(u32 ls_index)
Definition: session.h:606
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170
static clib_error_t * appliction_format_all_app_mq(vlib_main_t *vm)
Definition: application.c:1571
void ct_session_endpoint(session_t *ll, session_endpoint_t *sep)
static app_listener_t * app_listener_alloc(application_t *app)
Definition: application.c:32
u8 * format_crypto_context(u8 *s, va_list *args)
Definition: application.c:1447
u8 application_has_local_scope(application_t *app)
Definition: application.c:1159
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:127