FD.io VPP  v21.10.1-2-g0a485f517
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  void *iface_ip;
105  ip46_address_t original_ip;
106 
107  sep = (session_endpoint_t *) sep_ext;
109  {
110  table_index = application_local_session_table (app);
111  handle = session_lookup_endpoint_listener (table_index, sep, 1);
112  if (handle != SESSION_INVALID_HANDLE)
113  {
114  ls = listen_session_get_from_handle (handle);
115  return app_listener_get_w_session (ls);
116  }
117  }
118 
119  fib_proto = session_endpoint_fib_proto (sep);
120  table_index = session_lookup_get_index_for_fib (fib_proto, sep->fib_index);
121  handle = session_lookup_endpoint_listener (table_index, sep, 1);
122  if (handle != SESSION_INVALID_HANDLE)
123  {
124  ls = listen_session_get_from_handle (handle);
125  return app_listener_get_w_session ((session_t *) ls);
126  }
127 
128  /*
129  * When binds to "inaddr_any", we add zero address in the local lookup table
130  * and interface address in the global lookup table. If local scope disable,
131  * the latter is the only clue to find the listener.
132  */
133  if (!application_has_local_scope (app) &&
134  ip_is_zero (&sep_ext->ip, sep_ext->is_ip4) &&
135  sep_ext->sw_if_index != ENDPOINT_INVALID_INDEX)
136  {
137  if ((iface_ip = ip_interface_get_first_ip (sep_ext->sw_if_index,
138  sep_ext->is_ip4)))
139  {
140  ip_copy (&original_ip, &sep_ext->ip, sep_ext->is_ip4);
141  ip_set (&sep_ext->ip, iface_ip, sep_ext->is_ip4);
142  handle = session_lookup_endpoint_listener (table_index, sep, 1);
143  ip_copy (&sep_ext->ip, &original_ip, sep_ext->is_ip4);
144  if (handle != SESSION_INVALID_HANDLE)
145  {
146  ls = listen_session_get_from_handle (handle);
147  return app_listener_get_w_session ((session_t *) ls);
148  }
149  }
150  }
151 
152  return 0;
153 }
154 
155 int
159 {
160  app_listener_t *app_listener;
162  u32 al_index, table_index;
163  session_handle_t lh;
164  session_type_t st;
165  session_t *ls = 0;
166  int rv;
167 
168  app_listener = app_listener_alloc (app);
169  al_index = app_listener->al_index;
170  st = session_type_from_proto_and_ip (sep->transport_proto, sep->is_ip4);
171 
172  /*
173  * Add session endpoint to local session table. Only binds to "inaddr_any"
174  * (i.e., zero address) are added to local scope table.
175  */
178  {
179  session_type_t local_st;
180 
181  local_st = session_type_from_proto_and_ip (TRANSPORT_PROTO_NONE,
182  sep->is_ip4);
183  ls = listen_session_alloc (0, local_st);
184  ls->app_index = app->app_index;
185  ls->app_wrk_index = sep->app_wrk_index;
186  lh = session_handle (ls);
187 
188  if ((rv = session_listen (ls, sep)))
189  {
190  ls = session_get_from_handle (lh);
191  session_free (ls);
192  return rv;
193  }
194 
195  ls = session_get_from_handle (lh);
196  app_listener = app_listener_get (app, al_index);
197  app_listener->local_index = ls->session_index;
198  app_listener->ls_handle = lh;
199  ls->al_index = al_index;
200 
201  table_index = application_local_session_table (app);
203  (session_endpoint_t *) sep, lh);
204  }
205 
207  {
208  /*
209  * Start listening on local endpoint for requested transport and scope.
210  * Creates a stream session with state LISTENING to be used in session
211  * lookups, prior to establishing connection. Requests transport to
212  * build it's own specific listening connection.
213  */
214  ls = listen_session_alloc (0, st);
215  ls->app_index = app->app_index;
216  ls->app_wrk_index = sep->app_wrk_index;
217 
218  /* Listen pool can be reallocated if the transport is
219  * recursive (tls) */
220  lh = listen_session_get_handle (ls);
221 
222  if ((rv = session_listen (ls, sep)))
223  {
225  session_free (ls);
226  return rv;
227  }
229  app_listener = app_listener_get (app, al_index);
230  app_listener->session_index = ls->session_index;
231  app_listener->ls_handle = lh;
232  ls->al_index = al_index;
233 
234  /* Add to the global lookup table after transport was initialized.
235  * Lookup table needs to be populated only now because sessions
236  * with cut-through transport are are added to app local tables that
237  * are not related to network fibs, i.e., cannot be added as
238  * connections */
239  tc = session_get_transport (ls);
240  if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
241  {
242  fib_protocol_t fib_proto;
243  fib_proto = session_endpoint_fib_proto ((session_endpoint_t *) sep);
244  /* Assume namespace vetted previously so make sure table exists */
246  fib_proto, sep->fib_index);
248  (session_endpoint_t *) sep,
249  lh);
250  }
251  }
252 
253  if (!ls)
254  {
255  app_listener_free (app, app_listener);
256  return -1;
257  }
258 
259  *listener = app_listener;
260  return 0;
261 }
262 
263 void
265 {
267  session_t *ls;
268 
270  {
271  ls = session_get (al->session_index, 0);
272  session_stop_listen (ls);
273  listen_session_free (ls);
274  }
276  {
278  u32 table_index;
279 
280  table_index = application_local_session_table (app);
281  ls = listen_session_get (al->local_index);
282  ct_session_endpoint (ls, &sep);
283  session_lookup_del_session_endpoint (table_index, &sep);
284  session_stop_listen (ls);
285  listen_session_free (ls);
286  }
287  app_listener_free (app, al);
288 }
289 
290 static app_worker_t *
292 {
293  u32 wrk_index;
294 
295  app = application_get (al->app_index);
296  wrk_index = clib_bitmap_next_set (al->workers, al->accept_rotor + 1);
297  if (wrk_index == ~0)
298  wrk_index = clib_bitmap_first_set (al->workers);
299 
300  ASSERT (wrk_index != ~0);
301  al->accept_rotor = wrk_index;
302  return application_get_worker (app, wrk_index);
303 }
304 
305 session_t *
307 {
309  return 0;
310 
311  return listen_session_get (al->session_index);
312 }
313 
314 session_t *
316 {
318  return 0;
319  return listen_session_get (al->local_index);
320 }
321 
322 static app_worker_map_t *
324 {
326  pool_get (app->worker_maps, map);
327  clib_memset (map, 0, sizeof (*map));
328  return map;
329 }
330 
331 static u32
333 {
334  return (map - app->worker_maps);
335 }
336 
337 static void
339 {
340  pool_put (app->worker_maps, map);
341 }
342 
343 static app_worker_map_t *
345 {
346  if (pool_is_free_index (app->worker_maps, map_index))
347  return 0;
348  return pool_elt_at_index (app->worker_maps, map_index);
349 }
350 
351 static const u8 *
353 {
354  return app->name;
355 }
356 
357 u32
359 {
360  app_namespace_t *app_ns;
361  app_ns = app_namespace_get (app->ns_index);
362  if (!application_has_global_scope (app))
363  return APP_INVALID_INDEX;
364  if (fib_proto == FIB_PROTOCOL_IP4)
365  return session_lookup_get_index_for_fib (fib_proto,
366  app_ns->ip4_fib_index);
367  else
368  return session_lookup_get_index_for_fib (fib_proto,
369  app_ns->ip6_fib_index);
370 }
371 
372 u32
374 {
375  app_namespace_t *app_ns;
376  if (!application_has_local_scope (app))
377  return APP_INVALID_INDEX;
378  app_ns = app_namespace_get (app->ns_index);
379  return app_ns->local_table_index;
380 }
381 
382 /**
383  * Returns app name for app-index
384  */
385 const u8 *
387 {
388  application_t *app = application_get (app_index);
389  if (!app)
390  return 0;
391  return app_get_name (app);
392 }
393 
394 static void
395 application_api_table_add (u32 app_index, u32 api_client_index)
396 {
397  if (api_client_index != APP_INVALID_INDEX)
398  hash_set (app_main.app_by_api_client_index, api_client_index, app_index);
399 }
400 
401 static void
402 application_api_table_del (u32 api_client_index)
403 {
404  hash_unset (app_main.app_by_api_client_index, api_client_index);
405 }
406 
407 static void
409 {
411 }
412 
413 static void
415 {
417 }
418 
420 application_lookup (u32 api_client_index)
421 {
422  uword *p;
423  p = hash_get (app_main.app_by_api_client_index, api_client_index);
424  if (p)
425  return application_get_if_valid (p[0]);
426 
427  return 0;
428 }
429 
432 {
433  uword *p;
435  if (p)
436  return application_get (p[0]);
437 
438  return 0;
439 }
440 
441 void
443 {
444  app_rx_mq_elt_t *head;
445 
446  if (!aw->pending_rx_mqs)
447  {
448  elt->next = elt->prev = elt;
449  aw->pending_rx_mqs = elt;
450  return;
451  }
452 
453  head = aw->pending_rx_mqs;
454 
455  ASSERT (head != elt);
456 
457  elt->prev = head->prev;
458  elt->next = head;
459 
460  head->prev->next = elt;
461  head->prev = elt;
462 }
463 
464 void
466 {
467  if (elt->next == elt)
468  {
469  elt->next = elt->prev = 0;
470  aw->pending_rx_mqs = 0;
471  return;
472  }
473 
474  if (elt == aw->pending_rx_mqs)
476 
477  elt->next->prev = elt->prev;
478  elt->prev->next = elt->next;
479  elt->next = elt->prev = 0;
480 }
481 
483 
486 {
491  int __clib_unused rv;
494 
495  aw = &am->wrk[thread_index];
496  elt = aw->pending_rx_mqs;
497  if (!elt)
498  return 0;
499 
501 
502  do
503  {
504  if (!(elt->flags & APP_RX_MQ_F_POSTPONED))
505  rv = read (svm_msg_q_get_eventfd (elt->mq), &buf, sizeof (buf));
507 
508  next = elt->next;
511  {
514  }
515  else
516  {
517  elt->flags = 0;
518  }
519  elt = next;
520  }
521  while (aw->pending_rx_mqs && elt != aw->pending_rx_mqs);
522 
523  if (aw->pending_rx_mqs)
525 
528 
529  return n_msgs;
530 }
531 
533  .name = "appsl-rx-mqs-input",
534  .type = VLIB_NODE_TYPE_INPUT,
535  .state = VLIB_NODE_STATE_DISABLED,
536 };
537 
538 static clib_error_t *
540 {
543  app_main_t *am = &app_main;
544  app_rx_mq_elt_t *mqe;
545  application_t *app;
546  appsl_wrk_t *aw;
547 
548  ASSERT (vlib_get_thread_index () == handle->thread_index);
549  app = application_get_if_valid (handle->app_index);
550  if (!app)
551  return 0;
552 
553  mqe = &app->rx_mqs[handle->thread_index];
554  if ((mqe->flags & APP_RX_MQ_F_PENDING) || svm_msg_q_is_empty (mqe->mq))
555  return 0;
556 
557  aw = &am->wrk[handle->thread_index];
559  mqe->flags |= APP_RX_MQ_F_PENDING;
560 
562 
563  return 0;
564 }
565 
566 static clib_error_t *
568 {
569  clib_warning ("should not be called");
570  return 0;
571 }
572 
573 static void
575 {
576  clib_file_t template = { 0 };
577  app_rx_mq_handle_t handle;
579  int fd;
580 
581  thread_index = mqe - app->rx_mqs;
582  fd = svm_msg_q_get_eventfd (mqe->mq);
583 
584  handle.app_index = app->app_index;
585  handle.thread_index = thread_index;
586 
587  template.read_function = app_rx_mq_fd_read_ready;
588  template.write_function = app_rx_mq_fd_write_ready;
589  template.file_descriptor = fd;
590  template.private_data = handle.as_u64;
591  template.polling_thread_index = thread_index;
592  template.description =
593  format (0, "app-%u-rx-mq-%u", app->app_index, thread_index);
594  mqe->file_index = clib_file_add (&file_main, &template);
595 }
596 
597 static void
599 {
600  u32 thread_index = mqe - app->rx_mqs;
601  app_main_t *am = &app_main;
602  appsl_wrk_t *aw;
603 
604  aw = &am->wrk[thread_index];
605 
607 
608  if (mqe->flags & APP_RX_MQ_F_PENDING)
610 
612 }
613 
614 svm_msg_q_t *
616 {
617  if (!app->rx_mqs)
618  return 0;
619 
620  return app->rx_mqs[mq_index].mq;
621 }
622 
623 static int
625 {
626  u32 evt_q_length, evt_size = sizeof (session_event_t);
627  fifo_segment_t *eqs = &app->rx_mqs_segment;
628  u32 n_mqs = vlib_num_workers () + 1;
630  int i;
631 
633  evt_q_length = clib_max (props->evt_q_size, 128);
634 
635  svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
637  { evt_q_length, evt_size, 0 }, { evt_q_length >> 1, 256, 0 }
638  };
639  cfg->consumer_pid = 0;
640  cfg->n_rings = 2;
641  cfg->q_nitems = evt_q_length;
642  cfg->ring_cfgs = rc;
643 
644  eqs->ssvm.ssvm_size = svm_msg_q_size_to_alloc (cfg) * n_mqs + (1 << 20);
645  eqs->ssvm.name = format (0, "%s-rx-mqs-seg%c", app->name, 0);
646 
648  {
649  clib_warning ("failed to initialize queue segment");
650  return SESSION_E_SEG_CREATE;
651  }
652 
653  fifo_segment_init (eqs);
654 
655  /* Fifo segment filled only with mqs */
656  eqs->h->n_mqs = n_mqs;
657  vec_validate (app->rx_mqs, n_mqs - 1);
658 
659  for (i = 0; i < n_mqs; i++)
660  {
661  app->rx_mqs[i].mq = fifo_segment_msg_q_alloc (eqs, i, cfg);
662  if (svm_msg_q_alloc_eventfd (app->rx_mqs[i].mq))
663  {
664  clib_warning ("eventfd returned");
665  fifo_segment_cleanup (eqs);
666  ssvm_delete (&eqs->ssvm);
667  return SESSION_E_EVENTFD_ALLOC;
668  }
669  app_rx_mqs_epoll_add (app, &app->rx_mqs[i]);
670  app->rx_mqs[i].app_index = app->app_index;
671  }
672 
673  return 0;
674 }
675 
676 u8
678 {
680 }
681 
684 {
686  return &app->rx_mqs_segment;
688 }
689 
690 void
692 {
693  u8 state = is_en ? VLIB_NODE_STATE_INTERRUPT : VLIB_NODE_STATE_DISABLED;
694 
696  vlib_node_set_state (this_vlib_main, appsl_rx_mqs_input_node.index, state);
697 }
698 
699 static application_t *
701 {
702  application_t *app;
703  pool_get (app_main.app_pool, app);
704  clib_memset (app, 0, sizeof (*app));
705  app->app_index = app - app_main.app_pool;
706  return app;
707 }
708 
710 application_get (u32 app_index)
711 {
712  if (app_index == APP_INVALID_INDEX)
713  return 0;
714  return pool_elt_at_index (app_main.app_pool, app_index);
715 }
716 
719 {
720  if (pool_is_free_index (app_main.app_pool, app_index))
721  return 0;
722 
723  return pool_elt_at_index (app_main.app_pool, app_index);
724 }
725 
726 static void
728 {
729  if (cb_fns->session_accept_callback == 0)
730  clib_warning ("No accept callback function provided");
731  if (cb_fns->session_connected_callback == 0)
732  clib_warning ("No session connected callback function provided");
733  if (cb_fns->session_disconnect_callback == 0)
734  clib_warning ("No session disconnect callback function provided");
735  if (cb_fns->session_reset_callback == 0)
736  clib_warning ("No session reset callback function provided");
737 }
738 
739 /**
740  * Check app config for given segment type
741  *
742  * Returns 1 on success and 0 otherwise
743  */
744 static u8
746 {
747  u8 is_valid;
748  if (st == SSVM_SEGMENT_MEMFD)
749  {
750  is_valid = (session_main_get_evt_q_segment () != 0);
751  if (!is_valid)
752  clib_warning ("memfd seg: vpp's event qs IN binary api svm region");
753  return is_valid;
754  }
755  else if (st == SSVM_SEGMENT_SHM)
756  {
757  is_valid = (session_main_get_evt_q_segment () == 0);
758  if (!is_valid)
759  clib_warning ("shm seg: vpp's event qs NOT IN binary api svm region");
760  return is_valid;
761  }
762  else
763  return 1;
764 }
765 
766 static int
768 {
771  application_t *app;
772  u64 *opts;
773 
774  app = application_alloc ();
775  opts = a->options;
776  /*
777  * Make sure we support the requested configuration
778  */
779  if ((opts[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_IS_BUILTIN) &&
780  !(opts[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_MEMFD_FOR_BUILTIN))
781  seg_type = SSVM_SEGMENT_PRIVATE;
782 
783  if ((opts[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD) &&
784  seg_type != SSVM_SEGMENT_MEMFD)
785  {
786  clib_warning ("mq eventfds can only be used if socket transport is "
787  "used for binary api");
788  return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
789  }
790 
791  if (!application_verify_cfg (seg_type))
792  return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
793 
796  return VNET_API_ERROR_APP_UNSUPPORTED_CFG;
797 
798  /* Check that the obvious things are properly set up */
799  application_verify_cb_fns (a->session_cb_vft);
800 
801  app->flags = opts[APP_OPTIONS_FLAGS];
802  app->cb_fns = *a->session_cb_vft;
803  app->ns_index = opts[APP_OPTIONS_NAMESPACE];
805  app->name = vec_dup (a->name);
806 
807  /* If no scope enabled, default to global */
809  && !application_has_local_scope (app))
810  app->flags |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
811 
814  props->segment_size = opts[APP_OPTIONS_SEGMENT_SIZE];
815  props->prealloc_fifos = opts[APP_OPTIONS_PREALLOC_FIFO_PAIRS];
816  props->prealloc_fifo_hdrs = opts[APP_OPTIONS_PREALLOC_FIFO_HDRS];
818  {
819  props->add_segment_size = opts[APP_OPTIONS_ADD_SEGMENT_SIZE];
820  props->add_segment = 1;
821  }
822  if (opts[APP_OPTIONS_RX_FIFO_SIZE])
823  props->rx_fifo_size = opts[APP_OPTIONS_RX_FIFO_SIZE];
824  if (opts[APP_OPTIONS_TX_FIFO_SIZE])
825  props->tx_fifo_size = opts[APP_OPTIONS_TX_FIFO_SIZE];
826  if (opts[APP_OPTIONS_EVT_QUEUE_SIZE])
827  props->evt_q_size = opts[APP_OPTIONS_EVT_QUEUE_SIZE];
828  if (opts[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
829  props->use_mq_eventfd = 1;
830  if (opts[APP_OPTIONS_TLS_ENGINE])
831  app->tls_engine = opts[APP_OPTIONS_TLS_ENGINE];
832  if (opts[APP_OPTIONS_MAX_FIFO_SIZE])
833  props->max_fifo_size = opts[APP_OPTIONS_MAX_FIFO_SIZE];
834  if (opts[APP_OPTIONS_HIGH_WATERMARK])
835  props->high_watermark = opts[APP_OPTIONS_HIGH_WATERMARK];
836  if (opts[APP_OPTIONS_LOW_WATERMARK])
837  props->low_watermark = opts[APP_OPTIONS_LOW_WATERMARK];
838  if (opts[APP_OPTIONS_PCT_FIRST_ALLOC])
839  props->pct_first_alloc = opts[APP_OPTIONS_PCT_FIRST_ALLOC];
840  props->segment_type = seg_type;
841 
842  /* Add app to lookup by api_client_index table */
843  if (!application_is_builtin (app))
844  application_api_table_add (app->app_index, a->api_client_index);
845  else
847 
848  a->app_index = app->app_index;
849 
850  APP_DBG ("New app name: %v api index: %u index %u", app->name,
851  a->api_client_index, app->app_index);
852 
853  return 0;
854 }
855 
856 static void
858 {
859  app_worker_map_t *wrk_map;
860  app_worker_t *app_wrk;
861 
862  /*
863  * The app event queue allocated in first segment is cleared with
864  * the segment manager. No need to explicitly free it.
865  */
866  APP_DBG ("Delete app name %v index: %d", app->name, app->app_index);
867 
868  if (application_is_proxy (app))
870 
871  /*
872  * Free workers
873  */
874 
875  /* *INDENT-OFF* */
876  pool_flush (wrk_map, app->worker_maps, ({
877  app_wrk = app_worker_get (wrk_map->wrk_index);
878  app_worker_free (app_wrk);
879  }));
880  /* *INDENT-ON* */
881  pool_free (app->worker_maps);
882 
883  /*
884  * Free rx mqs if allocated
885  */
886  if (app->rx_mqs)
887  {
888  int i;
889  for (i = 0; i < vec_len (app->rx_mqs); i++)
890  app_rx_mqs_epoll_del (app, &app->rx_mqs[i]);
891 
894  vec_free (app->rx_mqs);
895  }
896 
897  /*
898  * Cleanup remaining state
899  */
900  if (application_is_builtin (app))
902  vec_free (app->name);
903  pool_put (app_main.app_pool, app);
904 }
905 
906 static void
908 {
909  vnet_app_worker_add_del_args_t _args = { 0 }, *args = &_args;
910  app_worker_map_t *wrk_map;
911  u32 *wrks = 0, *wrk_index;
912  app_worker_t *app_wrk;
913 
914  if (api_client_index == ~0)
915  {
916  application_free (app);
917  return;
918  }
919 
920  APP_DBG ("Detaching for app %v index %u api client index %u", app->name,
921  app->app_index, api_client_index);
922 
923  /* *INDENT-OFF* */
924  pool_foreach (wrk_map, app->worker_maps) {
925  app_wrk = app_worker_get (wrk_map->wrk_index);
926  if (app_wrk->api_client_index == api_client_index)
927  vec_add1 (wrks, app_wrk->wrk_index);
928  }
929  /* *INDENT-ON* */
930 
931  if (!vec_len (wrks))
932  {
933  clib_warning ("no workers for app %u api_index %u", app->app_index,
934  api_client_index);
935  return;
936  }
937 
938  args->app_index = app->app_index;
939  args->api_client_index = api_client_index;
940  vec_foreach (wrk_index, wrks)
941  {
942  app_wrk = app_worker_get (wrk_index[0]);
943  args->wrk_map_index = app_wrk->wrk_map_index;
944  args->is_add = 0;
946  }
947  vec_free (wrks);
948 }
949 
950 void
952 {
953  u32 *app_indices = 0, *app_index;
954  application_t *app;
955  u32 ns_index;
956 
957  ns_index = app_namespace_index (app_ns);
959  if (app->ns_index == ns_index)
960  vec_add1 (app_indices, app->ns_index);
961 
962  vec_foreach (app_index, app_indices)
963  {
964  app = application_get (*app_index);
965 
966  if (application_is_proxy (app))
968  app->flags &= ~APP_OPTIONS_FLAGS_IS_PROXY;
969 
970  application_free (app);
971  }
972  vec_free (app_indices);
973 }
974 
975 app_worker_t *
977 {
979  map = app_worker_map_get (app, wrk_map_index);
980  if (!map)
981  return 0;
982  return app_worker_get (map->wrk_index);
983 }
984 
985 app_worker_t *
987 {
988  return application_get_worker (app, 0);
989 }
990 
991 u32
993 {
994  return pool_elts (app->worker_maps);
995 }
996 
997 app_worker_t *
999 {
1000  application_t *app;
1001  app_listener_t *al;
1002 
1003  app = application_get (ls->app_index);
1004  al = app_listener_get (app, ls->al_index);
1005  return app_listener_select_worker (app, al);
1006 }
1007 
1008 int
1010 {
1011  app_worker_map_t *wrk_map;
1012  app_worker_t *app_wrk;
1013  segment_manager_t *sm;
1014  int rv;
1015 
1016  app_wrk = app_worker_alloc (app);
1017  wrk_map = app_worker_map_alloc (app);
1018  wrk_map->wrk_index = app_wrk->wrk_index;
1019  app_wrk->wrk_map_index = app_worker_map_index (app, wrk_map);
1020 
1021  /*
1022  * Setup first segment manager
1023  */
1024  sm = segment_manager_alloc ();
1025  sm->app_wrk_index = app_wrk->wrk_index;
1026 
1027  if ((rv = segment_manager_init_first (sm)))
1028  {
1029  app_worker_free (app_wrk);
1030  return rv;
1031  }
1032  sm->first_is_protected = 1;
1033 
1034  /*
1035  * Setup app worker
1036  */
1038  app_wrk->listeners_table = hash_create (0, sizeof (u64));
1039  app_wrk->event_queue = segment_manager_event_queue (sm);
1040  app_wrk->app_is_builtin = application_is_builtin (app);
1041 
1042  *wrk = app_wrk;
1043 
1044  return 0;
1045 }
1046 
1047 int
1049 {
1050  fifo_segment_t *fs;
1051  app_worker_map_t *wrk_map;
1052  app_worker_t *app_wrk;
1053  segment_manager_t *sm;
1054  application_t *app;
1055  int rv;
1056 
1057  app = application_get (a->app_index);
1058  if (!app)
1059  return VNET_API_ERROR_INVALID_VALUE;
1060 
1061  if (a->is_add)
1062  {
1063  if ((rv = application_alloc_worker_and_init (app, &app_wrk)))
1064  return rv;
1065 
1066  /* Map worker api index to the app */
1067  app_wrk->api_client_index = a->api_client_index;
1068  application_api_table_add (app->app_index, a->api_client_index);
1069 
1070  sm = segment_manager_get (app_wrk->connects_seg_manager);
1072  a->segment = &fs->ssvm;
1073  a->segment_handle = segment_manager_segment_handle (sm, fs);
1075  a->evt_q = app_wrk->event_queue;
1076  a->wrk_map_index = app_wrk->wrk_map_index;
1077  }
1078  else
1079  {
1080  wrk_map = app_worker_map_get (app, a->wrk_map_index);
1081  if (!wrk_map)
1082  return VNET_API_ERROR_INVALID_VALUE;
1083 
1084  app_wrk = app_worker_get (wrk_map->wrk_index);
1085  if (!app_wrk)
1086  return VNET_API_ERROR_INVALID_VALUE;
1087 
1089  if (appns_sapi_enabled ())
1091  app_worker_free (app_wrk);
1092  app_worker_map_free (app, wrk_map);
1093  if (application_n_workers (app) == 0)
1094  application_free (app);
1095  }
1096  return 0;
1097 }
1098 
1099 static int
1100 app_validate_namespace (u8 * namespace_id, u64 secret, u32 * app_ns_index)
1101 {
1102  app_namespace_t *app_ns;
1103  if (vec_len (namespace_id) == 0)
1104  {
1105  /* Use default namespace */
1106  *app_ns_index = 0;
1107  return 0;
1108  }
1109 
1110  *app_ns_index = app_namespace_index_from_id (namespace_id);
1111  if (*app_ns_index == APP_NAMESPACE_INVALID_INDEX)
1112  return VNET_API_ERROR_APP_INVALID_NS;
1113  app_ns = app_namespace_get (*app_ns_index);
1114  if (!app_ns)
1115  return VNET_API_ERROR_APP_INVALID_NS;
1116  if (app_ns->ns_secret != secret)
1117  return VNET_API_ERROR_APP_WRONG_NS_SECRET;
1118  return 0;
1119 }
1120 
1121 static u8 *
1122 app_name_from_api_index (u32 api_client_index)
1123 {
1124  vl_api_registration_t *regp;
1125  regp = vl_api_client_index_to_registration (api_client_index);
1126  if (regp)
1127  return format (0, "%s", regp->name);
1128 
1129  clib_warning ("api client index %u does not have an api registration!",
1130  api_client_index);
1131  return format (0, "unknown");
1132 }
1133 
1134 /**
1135  * Attach application to vpp
1136  *
1137  * Allocates a vpp app, i.e., a structure that keeps back pointers
1138  * to external app and a segment manager for shared memory fifo based
1139  * communication with the external app.
1140  */
1141 int
1143 {
1144  fifo_segment_t *fs;
1145  application_t *app = 0;
1146  app_worker_t *app_wrk;
1147  segment_manager_t *sm;
1148  u32 app_ns_index = 0;
1149  u8 *app_name = 0;
1150  u64 secret;
1151  int rv;
1152 
1153  if (a->api_client_index != APP_INVALID_INDEX)
1154  app = application_lookup (a->api_client_index);
1155  else if (a->name)
1156  app = application_lookup_name (a->name);
1157  else
1158  return VNET_API_ERROR_INVALID_VALUE;
1159 
1160  if (app)
1161  return VNET_API_ERROR_APP_ALREADY_ATTACHED;
1162 
1163  /* Socket api sets the name and validates namespace prior to attach */
1164  if (!a->use_sock_api)
1165  {
1166  if (a->api_client_index != APP_INVALID_INDEX)
1167  {
1168  app_name = app_name_from_api_index (a->api_client_index);
1169  a->name = app_name;
1170  }
1171 
1172  secret = a->options[APP_OPTIONS_NAMESPACE_SECRET];
1173  if ((rv = app_validate_namespace (a->namespace_id, secret,
1174  &app_ns_index)))
1175  return rv;
1176  a->options[APP_OPTIONS_NAMESPACE] = app_ns_index;
1177  }
1178 
1180  return rv;
1181 
1182  app = application_get (a->app_index);
1183  if ((rv = application_alloc_worker_and_init (app, &app_wrk)))
1184  return rv;
1185 
1186  a->app_evt_q = app_wrk->event_queue;
1187  app_wrk->api_client_index = a->api_client_index;
1188  sm = segment_manager_get (app_wrk->connects_seg_manager);
1190 
1191  if (application_is_proxy (app))
1192  {
1194  /* The segment manager pool is reallocated because a new listener
1195  * is added. Re-grab segment manager to avoid dangling reference */
1196  sm = segment_manager_get (app_wrk->connects_seg_manager);
1197  }
1198 
1199  ASSERT (vec_len (fs->ssvm.name) <= 128);
1200  a->segment = &fs->ssvm;
1201  a->segment_handle = segment_manager_segment_handle (sm, fs);
1202 
1204 
1206  rv = app_rx_mqs_alloc (app);
1207 
1208  vec_free (app_name);
1209  return rv;
1210 }
1211 
1212 /**
1213  * Detach application from vpp
1214  */
1215 int
1217 {
1218  application_t *app;
1219 
1220  app = application_get_if_valid (a->app_index);
1221  if (!app)
1222  {
1223  clib_warning ("app not attached");
1224  return VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1225  }
1226 
1228  application_detach_process (app, a->api_client_index);
1229  return 0;
1230 }
1231 
1232 
1233 static u8
1235 {
1236  u8 is_lep = session_endpoint_is_local (sep);
1237  if (!is_lep && sep->sw_if_index != ENDPOINT_INVALID_INDEX
1238  && !ip_interface_has_address (sep->sw_if_index, &sep->ip, sep->is_ip4))
1239  {
1240  clib_warning ("sw_if_index %u not configured with ip %U",
1241  sep->sw_if_index, format_ip46_address, &sep->ip,
1242  sep->is_ip4);
1243  return 0;
1244  }
1245  return (is_lep || ip_is_local (sep->fib_index, &sep->ip, sep->is_ip4));
1246 }
1247 
1248 static void
1250  application_t * app, u8 is_connect)
1251 {
1252  app_namespace_t *app_ns;
1253  u32 ns_index, fib_index;
1254 
1255  ns_index = app->ns_index;
1256 
1257  /* App is a transport proto, so fetch the calling app's ns */
1258  if (app->flags & APP_OPTIONS_FLAGS_IS_TRANSPORT_APP)
1259  ns_index = sep->ns_index;
1260 
1261  app_ns = app_namespace_get (ns_index);
1262  if (!app_ns)
1263  return;
1264 
1265  /* Ask transport and network to bind to/connect using local interface
1266  * that "supports" app's namespace. This will fix our local connection
1267  * endpoint.
1268  */
1269 
1270  /* If in default namespace and user requested a fib index use it */
1271  if (ns_index == 0 && sep->fib_index != ENDPOINT_INVALID_INDEX)
1272  fib_index = sep->fib_index;
1273  else
1274  fib_index = sep->is_ip4 ? app_ns->ip4_fib_index : app_ns->ip6_fib_index;
1275  sep->peer.fib_index = fib_index;
1276  sep->fib_index = fib_index;
1277 
1278  if (!is_connect)
1279  {
1280  sep->sw_if_index = app_ns->sw_if_index;
1281  }
1282  else
1283  {
1284  if (app_ns->sw_if_index != APP_NAMESPACE_INVALID_INDEX
1285  && sep->peer.sw_if_index != ENDPOINT_INVALID_INDEX
1286  && sep->peer.sw_if_index != app_ns->sw_if_index)
1287  clib_warning ("Local sw_if_index different from app ns sw_if_index");
1288 
1289  sep->peer.sw_if_index = app_ns->sw_if_index;
1290  }
1291 }
1292 
1293 int
1295 {
1296  app_listener_t *app_listener;
1297  app_worker_t *app_wrk;
1298  application_t *app;
1299  int rv;
1300 
1302 
1303  app = application_get_if_valid (a->app_index);
1304  if (!app)
1305  return SESSION_E_NOAPP;
1306 
1307  app_wrk = application_get_worker (app, a->wrk_map_index);
1308  if (!app_wrk)
1309  return SESSION_E_INVALID_APPWRK;
1310 
1311  a->sep_ext.app_wrk_index = app_wrk->wrk_index;
1312 
1313  session_endpoint_update_for_app (&a->sep_ext, app, 0 /* is_connect */ );
1314  if (!session_endpoint_in_ns (&a->sep))
1315  return SESSION_E_INVALID_NS;
1316 
1317  /*
1318  * Check if we already have an app listener
1319  */
1320  app_listener = app_listener_lookup (app, &a->sep_ext);
1321  if (app_listener)
1322  {
1323  if (app_listener->app_index != app->app_index)
1324  return SESSION_E_ALREADY_LISTENING;
1325  if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1326  return rv;
1327  a->handle = app_listener_handle (app_listener);
1328  return 0;
1329  }
1330 
1331  /*
1332  * Create new app listener
1333  */
1334  if ((rv = app_listener_alloc_and_init (app, &a->sep_ext, &app_listener)))
1335  return rv;
1336 
1337  if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1338  {
1339  app_listener_cleanup (app_listener);
1340  return rv;
1341  }
1342 
1343  a->handle = app_listener_handle (app_listener);
1344  return 0;
1345 }
1346 
1347 int
1349 {
1350  app_worker_t *client_wrk;
1351  application_t *client;
1352 
1354 
1355  if (session_endpoint_is_zero (&a->sep))
1356  return SESSION_E_INVALID_RMT_IP;
1357 
1358  client = application_get (a->app_index);
1359  session_endpoint_update_for_app (&a->sep_ext, client, 1 /* is_connect */ );
1360  client_wrk = application_get_worker (client, a->wrk_map_index);
1361 
1362  a->sep_ext.opaque = a->api_context;
1363 
1364  /*
1365  * First check the local scope for locally attached destinations.
1366  * If we have local scope, we pass *all* connects through it since we may
1367  * have special policy rules even for non-local destinations, think proxy.
1368  */
1369  if (application_has_local_scope (client))
1370  {
1371  int rv;
1372 
1373  a->sep_ext.original_tp = a->sep_ext.transport_proto;
1374  a->sep_ext.transport_proto = TRANSPORT_PROTO_NONE;
1375  rv = app_worker_connect_session (client_wrk, &a->sep_ext, &a->sh);
1376  a->sep_ext.transport_proto = a->sep_ext.original_tp;
1377  if (!rv || rv != SESSION_E_LOCAL_CONNECT)
1378  return rv;
1379  }
1380  /*
1381  * Not connecting to a local server, propagate to transport
1382  */
1383  return app_worker_connect_session (client_wrk, &a->sep_ext, &a->sh);
1384 }
1385 
1386 int
1388 {
1389  app_worker_t *app_wrk;
1390  app_listener_t *al;
1391  application_t *app;
1392 
1394 
1395  if (!(app = application_get_if_valid (a->app_index)))
1396  return SESSION_E_NOAPP;
1397 
1398  if (!(al = app_listener_get_w_handle (a->handle)))
1399  return SESSION_E_NOLISTEN;
1400 
1401  if (al->app_index != app->app_index)
1402  {
1403  clib_warning ("app doesn't own handle %llu!", a->handle);
1404  return SESSION_E_OWNER;
1405  }
1406 
1407  app_wrk = application_get_worker (app, a->wrk_map_index);
1408  if (!app_wrk)
1409  {
1410  clib_warning ("no app %u worker %u", app->app_index, a->wrk_map_index);
1411  return SESSION_E_INVALID_APPWRK;
1412  }
1413 
1414  return app_worker_stop_listen (app_wrk, al);
1415 }
1416 
1417 int
1419 {
1420  app_worker_t *app_wrk;
1421  session_t *s;
1422 
1423  s = session_get_from_handle_if_valid (a->handle);
1424  if (!s)
1425  return SESSION_E_NOSESSION;
1426 
1427  app_wrk = app_worker_get (s->app_wrk_index);
1428  if (app_wrk->app_index != a->app_index)
1429  return SESSION_E_OWNER;
1430 
1431  /* We're peeking into another's thread pool. Make sure */
1432  ASSERT (s->session_index == session_index_from_handle (a->handle));
1433 
1434  session_half_close (s);
1435  return 0;
1436 }
1437 
1438 int
1440 {
1441  app_worker_t *app_wrk;
1442  session_t *s;
1443 
1444  s = session_get_from_handle_if_valid (a->handle);
1445  if (!s)
1446  return SESSION_E_NOSESSION;
1447 
1448  app_wrk = app_worker_get (s->app_wrk_index);
1449  if (app_wrk->app_index != a->app_index)
1450  return SESSION_E_OWNER;
1451 
1452  /* We're peeking into another's thread pool. Make sure */
1453  ASSERT (s->session_index == session_index_from_handle (a->handle));
1454 
1455  session_close (s);
1456  return 0;
1457 }
1458 
1459 int
1461 {
1462  app_worker_t *old_wrk = app_worker_get (s->app_wrk_index);
1463  app_listener_t *app_listener;
1464  application_t *app;
1465  int rv;
1466 
1467  if (!old_wrk)
1468  return SESSION_E_INVALID_APPWRK;
1469 
1472  && s->rx_fifo)
1474 
1475  app = application_get (old_wrk->app_index);
1476  if (!app)
1477  return SESSION_E_NOAPP;
1478 
1479  app_listener = app_listener_get (app, s->al_index);
1480 
1481  /* Only remove from lb for now */
1482  app_listener->workers = clib_bitmap_set (app_listener->workers,
1483  old_wrk->wrk_map_index, 0);
1484 
1485  if ((rv = app_worker_start_listen (app_wrk, app_listener)))
1486  return rv;
1487 
1488  s->app_wrk_index = app_wrk->wrk_index;
1489 
1490  return 0;
1491 }
1492 
1493 int
1495 {
1496  return (app->flags & APP_OPTIONS_FLAGS_IS_PROXY);
1497 }
1498 
1499 int
1501 {
1502  return (app->flags & APP_OPTIONS_FLAGS_IS_BUILTIN);
1503 }
1504 
1505 int
1507 {
1508  return (application_is_proxy (app) && application_is_builtin (app));
1509 }
1510 
1511 u8
1513 {
1514  return app->flags & APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
1515 }
1516 
1517 u8
1519 {
1520  return app->flags & APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
1521 }
1522 
1523 static clib_error_t *
1525  u8 transport_proto, u8 is_start)
1526 {
1527  app_namespace_t *app_ns = app_namespace_get (app->ns_index);
1528  u8 is_ip4 = (fib_proto == FIB_PROTOCOL_IP4);
1531  app_worker_t *app_wrk;
1532  app_listener_t *al;
1533  session_t *s;
1534  u32 flags;
1535 
1536  /* TODO decide if we want proxy to be enabled for all workers */
1537  app_wrk = application_get_default_worker (app);
1538  if (is_start)
1539  {
1540  s = app_worker_first_listener (app_wrk, fib_proto, transport_proto);
1541  if (!s)
1542  {
1543  sep.is_ip4 = is_ip4;
1544  sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1545  sep.sw_if_index = app_ns->sw_if_index;
1546  sep.transport_proto = transport_proto;
1547  sep.app_wrk_index = app_wrk->wrk_index; /* only default */
1548 
1549  /* force global scope listener */
1550  flags = app->flags;
1551  app->flags &= ~APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE;
1552  app_listener_alloc_and_init (app, &sep, &al);
1553  app->flags = flags;
1554 
1555  app_worker_start_listen (app_wrk, al);
1557  s->flags |= SESSION_F_PROXY;
1558  }
1559  }
1560  else
1561  {
1562  s = app_worker_proxy_listener (app_wrk, fib_proto, transport_proto);
1563  ASSERT (s);
1564  }
1565 
1567 
1568  if (!ip_is_zero (&tc->lcl_ip, 1))
1569  {
1570  u32 sti;
1571  sep.is_ip4 = is_ip4;
1572  sep.fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
1573  sep.transport_proto = transport_proto;
1574  sep.port = 0;
1575  sti = session_lookup_get_index_for_fib (fib_proto, sep.fib_index);
1576  if (is_start)
1578  (session_endpoint_t *) & sep,
1579  s->session_index);
1580  else
1582  (session_endpoint_t *) & sep);
1583  }
1584 
1585  return 0;
1586 }
1587 
1588 static void
1590  u8 transport_proto, u8 is_start)
1591 {
1593  app_namespace_t *app_ns;
1594  app_ns = app_namespace_get (app->ns_index);
1595  sep.is_ip4 = 1;
1596  sep.transport_proto = transport_proto;
1597  sep.port = 0;
1598 
1599  if (is_start)
1600  {
1601  session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
1602  app->app_index);
1603  sep.is_ip4 = 0;
1604  session_lookup_add_session_endpoint (app_ns->local_table_index, &sep,
1605  app->app_index);
1606  }
1607  else
1608  {
1609  session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1610  sep.is_ip4 = 0;
1611  session_lookup_del_session_endpoint (app_ns->local_table_index, &sep);
1612  }
1613 }
1614 
1615 void
1618 {
1619  if (application_has_local_scope (app))
1621 
1622  if (application_has_global_scope (app))
1623  {
1625  transport_proto, is_start);
1627  transport_proto, is_start);
1628  }
1629 }
1630 
1631 void
1633 {
1634  u16 transports = app->proxied_transports;
1635  transport_proto_t tp;
1636 
1637  ASSERT (application_is_proxy (app));
1638 
1639  transport_proto_foreach (tp, transports)
1640  application_start_stop_proxy (app, tp, 1);
1641 }
1642 
1643 void
1645 {
1646  u16 transports = app->proxied_transports;
1647  transport_proto_t tp;
1648 
1649  ASSERT (application_is_proxy (app));
1650 
1651  transport_proto_foreach (tp, transports)
1652  application_start_stop_proxy (app, tp, 0);
1653 }
1654 
1657 {
1658  return &app->sm_properties;
1659 }
1660 
1663 {
1664  application_t *app = application_get (app_index);
1665  return &app->sm_properties;
1666 }
1667 
1668 static void
1670 {
1672  app_worker_map_t *wrk_map;
1673  app_worker_t *app_wrk;
1674  u32 sm_index;
1675  u64 handle;
1676 
1677  if (!app)
1678  {
1679  vlib_cli_output (vm, "%U", format_app_worker_listener, 0 /* header */ ,
1680  0, 0, verbose);
1681  return;
1682  }
1683 
1684  /* *INDENT-OFF* */
1685  pool_foreach (wrk_map, app->worker_maps) {
1686  app_wrk = app_worker_get (wrk_map->wrk_index);
1687  if (hash_elts (app_wrk->listeners_table) == 0)
1688  continue;
1689  hash_foreach (handle, sm_index, app_wrk->listeners_table, ({
1690  vlib_cli_output (vm, "%U", format_app_worker_listener, app_wrk,
1691  handle, sm_index, verbose);
1692  }));
1693  }
1694  /* *INDENT-ON* */
1695 }
1696 
1697 static void
1699 {
1700  app_worker_map_t *wrk_map;
1701  app_worker_t *app_wrk;
1702 
1703  if (!app)
1704  {
1705  app_worker_format_connects (0, verbose);
1706  return;
1707  }
1708 
1709  /* *INDENT-OFF* */
1710  pool_foreach (wrk_map, app->worker_maps) {
1711  app_wrk = app_worker_get (wrk_map->wrk_index);
1712  app_worker_format_connects (app_wrk, verbose);
1713  }
1714  /* *INDENT-ON* */
1715 }
1716 
1717 u8 *
1718 format_cert_key_pair (u8 * s, va_list * args)
1719 {
1720  app_cert_key_pair_t *ckpair = va_arg (*args, app_cert_key_pair_t *);
1721  int key_len = 0, cert_len = 0;
1722  cert_len = vec_len (ckpair->cert);
1723  key_len = vec_len (ckpair->key);
1724  if (ckpair->cert_key_index == 0)
1725  s = format (s, "DEFAULT (cert:%d, key:%d)", cert_len, key_len);
1726  else
1727  s = format (s, "%d (cert:%d, key:%d)", ckpair->cert_key_index,
1728  cert_len, key_len);
1729  return s;
1730 }
1731 
1732 u8 *
1733 format_crypto_engine (u8 * s, va_list * args)
1734 {
1735  u32 engine = va_arg (*args, u32);
1736  switch (engine)
1737  {
1738  case CRYPTO_ENGINE_NONE:
1739  return format (s, "none");
1740  case CRYPTO_ENGINE_MBEDTLS:
1741  return format (s, "mbedtls");
1742  case CRYPTO_ENGINE_OPENSSL:
1743  return format (s, "openssl");
1744  case CRYPTO_ENGINE_PICOTLS:
1745  return format (s, "picotls");
1746  case CRYPTO_ENGINE_VPP:
1747  return format (s, "vpp");
1748  default:
1749  return format (s, "unknown engine");
1750  }
1751  return s;
1752 }
1753 
1754 uword
1755 unformat_crypto_engine (unformat_input_t * input, va_list * args)
1756 {
1757  u8 *a = va_arg (*args, u8 *);
1758  if (unformat (input, "mbedtls"))
1760  else if (unformat (input, "openssl"))
1762  else if (unformat (input, "picotls"))
1764  else if (unformat (input, "vpp"))
1765  *a = CRYPTO_ENGINE_VPP;
1766  else
1767  return 0;
1768  return 1;
1769 }
1770 
1771 u8 *
1772 format_crypto_context (u8 * s, va_list * args)
1773 {
1774  crypto_context_t *crctx = va_arg (*args, crypto_context_t *);
1775  s = format (s, "[0x%x][sub%d,ckpair%x]", crctx->ctx_index,
1776  crctx->n_subscribers, crctx->ckpair_index);
1777  s = format (s, "[%U]", format_crypto_engine, crctx->crypto_engine);
1778  return s;
1779 }
1780 
1781 u8 *
1782 format_application (u8 * s, va_list * args)
1783 {
1784  application_t *app = va_arg (*args, application_t *);
1785  CLIB_UNUSED (int verbose) = va_arg (*args, int);
1786  segment_manager_props_t *props;
1787  const u8 *app_ns_name, *app_name;
1788  app_worker_map_t *wrk_map;
1789  app_worker_t *app_wrk;
1790 
1791  if (app == 0)
1792  {
1793  if (!verbose)
1794  s = format (s, "%-10s%-20s%-40s", "Index", "Name", "Namespace");
1795  return s;
1796  }
1797 
1798  app_name = app_get_name (app);
1799  app_ns_name = app_namespace_id_from_index (app->ns_index);
1801  if (!verbose)
1802  {
1803  s = format (s, "%-10u%-20v%-40v", app->app_index, app_name,
1804  app_ns_name);
1805  return s;
1806  }
1807 
1808  s = format (s, "app-name %v app-index %u ns-index %u seg-size %U\n",
1809  app_name, app->app_index, app->ns_index,
1810  format_memory_size, props->add_segment_size);
1811  s = format (s, "rx-fifo-size %U tx-fifo-size %U workers:\n",
1812  format_memory_size, props->rx_fifo_size,
1813  format_memory_size, props->tx_fifo_size);
1814 
1815  /* *INDENT-OFF* */
1816  pool_foreach (wrk_map, app->worker_maps) {
1817  app_wrk = app_worker_get (wrk_map->wrk_index);
1818  s = format (s, "%U", format_app_worker, app_wrk);
1819  }
1820  /* *INDENT-ON* */
1821 
1822  return s;
1823 }
1824 
1825 void
1827 {
1828  application_t *app;
1829 
1830  if (!pool_elts (app_main.app_pool))
1831  {
1832  vlib_cli_output (vm, "No active server bindings");
1833  return;
1834  }
1835 
1836  application_format_listeners (0, verbose);
1837 
1838  /* *INDENT-OFF* */
1839  pool_foreach (app, app_main.app_pool) {
1840  application_format_listeners (app, verbose);
1841  }
1842  /* *INDENT-ON* */
1843 }
1844 
1845 void
1847 {
1848  application_t *app;
1849 
1850  if (!pool_elts (app_main.app_pool))
1851  {
1852  vlib_cli_output (vm, "No active apps");
1853  return;
1854  }
1855 
1856  application_format_connects (0, verbose);
1857 
1858  /* *INDENT-OFF* */
1859  pool_foreach (app, app_main.app_pool) {
1860  application_format_connects (app, verbose);
1861  }
1862  /* *INDENT-ON* */
1863 }
1864 
1865 static clib_error_t *
1867  vlib_cli_command_t * cmd)
1868 {
1869  app_cert_key_pair_t *ckpair;
1871 
1872  /* *INDENT-OFF* */
1874  vlib_cli_output (vm, "%U", format_cert_key_pair, ckpair);
1875  }
1876  /* *INDENT-ON* */
1877  return 0;
1878 }
1879 
1880 static inline void
1882 {
1884  app_worker_t *wrk;
1885  int i;
1886 
1887  /* *INDENT-OFF* */
1888  pool_foreach (map, app->worker_maps) {
1889  wrk = app_worker_get (map->wrk_index);
1890  vlib_cli_output (vm, "[A%d][%d]%U", app->app_index,
1891  map->wrk_index, format_svm_msg_q,
1892  wrk->event_queue);
1893  }
1894  /* *INDENT-ON* */
1895 
1896  for (i = 0; i < vec_len (app->rx_mqs); i++)
1897  vlib_cli_output (vm, "[A%d][R%d]%U", app->app_index, i, format_svm_msg_q,
1898  app->rx_mqs[i].mq);
1899 }
1900 
1901 static clib_error_t *
1903 {
1904  application_t *app;
1905  int i, n_threads;
1906 
1907  n_threads = vlib_get_n_threads ();
1908 
1909  for (i = 0; i < n_threads; i++)
1910  {
1911  vlib_cli_output (vm, "[Ctrl%d]%U", i, format_svm_msg_q,
1913  }
1914 
1915  /* *INDENT-OFF* */
1916  pool_foreach (app, app_main.app_pool) {
1918  }
1919  /* *INDENT-ON* */
1920  return 0;
1921 }
1922 
1923 static clib_error_t *
1925  vlib_cli_command_t * cmd)
1926 {
1927  int do_server = 0, do_client = 0, do_mq = 0;
1928  application_t *app;
1929  u32 app_index = ~0;
1930  int verbose = 0;
1931 
1933 
1934  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1935  {
1936  if (unformat (input, "server"))
1937  do_server = 1;
1938  else if (unformat (input, "client"))
1939  do_client = 1;
1940  else if (unformat (input, "mq"))
1941  do_mq = 1;
1942  else if (unformat (input, "%u", &app_index))
1943  ;
1944  else if (unformat (input, "verbose"))
1945  verbose = 1;
1946  else
1947  return clib_error_return (0, "unknown input `%U'",
1948  format_unformat_error, input);
1949  }
1950 
1951  if (do_mq && app_index != ~0)
1952  {
1953  app = application_get_if_valid (app_index);
1954  if (!app)
1955  return clib_error_return (0, "No app with index %u", app_index);
1956 
1958  return 0;
1959  }
1960 
1961  if (do_mq)
1962  {
1964  return 0;
1965  }
1966 
1967  if (do_server)
1968  {
1970  return 0;
1971  }
1972 
1973  if (do_client)
1974  {
1976  return 0;
1977  }
1978 
1979  if (app_index != ~0)
1980  {
1981  app = application_get_if_valid (app_index);
1982  if (!app)
1983  return clib_error_return (0, "No app with index %u", app_index);
1984 
1985  vlib_cli_output (vm, "%U", format_application, app, /* verbose */ 1);
1986  return 0;
1987  }
1988 
1989  /* Print app related info */
1990  if (!do_server && !do_client)
1991  {
1992  vlib_cli_output (vm, "%U", format_application, 0, 0);
1993  /* *INDENT-OFF* */
1994  pool_foreach (app, app_main.app_pool) {
1995  vlib_cli_output (vm, "%U", format_application, app, 0);
1996  }
1997  /* *INDENT-ON* */
1998  }
1999 
2000  return 0;
2001 }
2002 
2003 /* Certificate store */
2004 
2005 static app_cert_key_pair_t *
2007 {
2008  app_cert_key_pair_t *ckpair;
2010  clib_memset (ckpair, 0, sizeof (*ckpair));
2011  ckpair->cert_key_index = ckpair - app_main.cert_key_pair_store;
2012  return ckpair;
2013 }
2014 
2017 {
2019  return 0;
2020  return app_cert_key_pair_get (index);
2021 }
2022 
2025 {
2027 }
2028 
2031 {
2032  /* To maintain legacy bapi */
2033  return app_cert_key_pair_get (0);
2034 }
2035 
2036 int
2038 {
2040  vec_validate (ckpair->cert, a->cert_len - 1);
2041  clib_memcpy_fast (ckpair->cert, a->cert, a->cert_len);
2042  vec_validate (ckpair->key, a->key_len - 1);
2043  clib_memcpy_fast (ckpair->key, a->key, a->key_len);
2044  a->index = ckpair->cert_key_index;
2045  return 0;
2046 }
2047 
2048 int
2050 {
2051  app_cert_key_pair_t *ckpair;
2052  if (!(ckpair = app_cert_key_pair_get_if_valid (index)))
2053  return -1;
2054  if (vec_search (ckpair->app_interests, app_index) != ~0)
2055  vec_add1 (ckpair->app_interests, app_index);
2056  return 0;
2057 }
2058 
2059 int
2061 {
2062  app_cert_key_pair_t *ckpair;
2063  application_t *app;
2064  u32 *app_index;
2065 
2066  if (!(ckpair = app_cert_key_pair_get_if_valid (index)))
2067  return (VNET_API_ERROR_INVALID_VALUE);
2068 
2069  vec_foreach (app_index, ckpair->app_interests)
2070  {
2071  if ((app = application_get_if_valid (*app_index))
2074  }
2075 
2076  vec_free (ckpair->cert);
2077  vec_free (ckpair->key);
2079  return 0;
2080 }
2081 
2082 clib_error_t *
2084 {
2085  app_main_t *am = &app_main;
2086  u32 n_workers;
2087 
2088  n_workers = vlib_num_workers ();
2089 
2090  /* Index 0 was originally used by legacy apis, maintain as invalid */
2091  (void) app_cert_key_pair_alloc ();
2093  am->app_by_name = hash_create_vec (0, sizeof (u8), sizeof (uword));
2094 
2095  vec_validate (am->wrk, n_workers);
2096 
2097  return 0;
2098 }
2099 
2100 /* *INDENT-OFF* */
2102 
2104 {
2105  .path = "show app",
2106  .short_help = "show app [app_id] [server|client] [mq] [verbose]",
2107  .function = show_app_command_fn,
2108 };
2109 
2111 {
2112  .path = "show app certificate",
2113  .short_help = "list app certs and keys present in store",
2114  .function = show_certificate_command_fn,
2115 };
2116 /* *INDENT-ON* */
2117 
2120 {
2121  return (++app_main.last_crypto_engine);
2122 }
2123 
2124 u8
2126 {
2127  return (app_main.last_crypto_engine + 1);
2128 }
2129 
2130 /*
2131  * fd.io coding-style-patch-verification: ON
2132  *
2133  * Local Variables:
2134  * eval: (c-set-style "gnu")
2135  * End:
2136  */
app_listener_::ls_handle
session_handle_t ls_handle
session handle of the local or global listening session that also identifies the app listener
Definition: application.h:87
segment_manager_get_segment_w_lock
fifo_segment_t * segment_manager_get_segment_w_lock(segment_manager_t *sm, u32 segment_index)
Reads a segment from the segment manager's pool and acquires reader lock.
Definition: segment_manager.c:311
vnet_listen
int vnet_listen(vnet_listen_args_t *a)
Definition: application.c:1294
svm_msg_q_cfg_::n_rings
u32 n_rings
number of msg rings
Definition: message_queue.h:89
pool_flush
#define pool_flush(VAR, POOL, BODY)
Remove all elements from a pool in a safe way.
Definition: pool.h:586
application_::tls_engine
u8 tls_engine
Preferred tls engine.
Definition: application.h:137
format_cert_key_pair
u8 * format_cert_key_pair(u8 *s, va_list *args)
Definition: application.c:1718
APP_DBG
#define APP_DBG(_fmt, _args...)
Definition: application.h:29
crypto_engine_type_t
enum crypto_engine_type_ crypto_engine_type_t
vl_api_client_index_to_registration
static vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
Definition: api.h:79
vlib_num_workers
static u32 vlib_num_workers()
Definition: threads.h:333
SESSION_MQ_N_RINGS
@ SESSION_MQ_N_RINGS
Definition: session_types.h:403
app_worker_::wrk_index
u32 wrk_index
Worker index in global worker pool.
Definition: application.h:37
app_init_args_
Definition: application.h:208
sapi_socket_close_w_handle
void sapi_socket_close_w_handle(u32 api_handle)
Definition: session_api.c:1440
file_main
clib_file_main_t file_main
Definition: main.c:63
application_change_listener_owner
int application_change_listener_owner(session_t *s, app_worker_t *app_wrk)
Definition: application.c:1460
app_rx_mq_handle_
Definition: application.h:153
CRYPTO_ENGINE_PICOTLS
@ CRYPTO_ENGINE_PICOTLS
Definition: application_interface.h:180
hash_set
#define hash_set(h, key, value)
Definition: hash.h:255
application_rx_mq_get
svm_msg_q_t * application_rx_mq_get(application_t *app, u32 mq_index)
Definition: application.c:615
ip_set
void ip_set(ip46_address_t *dst, void *src, u8 is_ip4)
Definition: ip.c:95
thread_index
u32 thread_index
Definition: nat44_ei_hairpinning.c:495
vnet_connect
int vnet_connect(vnet_connect_args_t *a)
Definition: application.c:1348
certificate_
Definition: application_interface.h:24
app_rx_mqs_epoll_del
static void app_rx_mqs_epoll_del(application_t *app, app_rx_mq_elt_t *mqe)
Definition: application.c:598
CRYPTO_ENGINE_VPP
@ CRYPTO_ENGINE_VPP
Definition: application_interface.h:179
segment_manager_get
segment_manager_t * segment_manager_get(u32 index)
Definition: segment_manager.c:547
appliction_format_all_app_mq
static clib_error_t * appliction_format_all_app_mq(vlib_main_t *vm)
Definition: application.c:1902
segment_manager_init_first
int segment_manager_init_first(segment_manager_t *sm)
Initializes segment manager based on options provided.
Definition: segment_manager.c:368
app_rx_mq_elt_::next
struct app_rx_mq_elt_ * next
Definition: application.h:100
format_crypto_context
u8 * format_crypto_context(u8 *s, va_list *args)
Definition: application.c:1772
app_namespace_id_from_index
const u8 * app_namespace_id_from_index(u32 index)
Definition: application_namespace.c:204
APP_OPTIONS_RX_FIFO_SIZE
@ APP_OPTIONS_RX_FIFO_SIZE
Definition: application_interface.h:210
session_::session_index
u32 session_index
Index in thread pool where session was allocated.
Definition: session_types.h:188
application_alloc
static application_t * application_alloc(void)
Definition: application.c:700
APP_OPTIONS_HIGH_WATERMARK
@ APP_OPTIONS_HIGH_WATERMARK
Definition: application_interface.h:220
session_type_t
u8 session_type_t
Definition: session_types.h:110
session_close
void session_close(session_t *s)
Initialize session closing procedure.
Definition: session.c:1494
app_worker_proxy_listener
session_t * app_worker_proxy_listener(app_worker_t *app, u8 fib_proto, u8 transport_proto)
Definition: application_worker.c:565
APP_NAMESPACE_INVALID_INDEX
#define APP_NAMESPACE_INVALID_INDEX
Definition: application_namespace.h:81
clib_max
#define clib_max(x, y)
Definition: clib.h:335
app_rx_mq_elt_::file_index
uword file_index
Definition: application.h:103
vnet_app_worker_add_del_args_t
struct _vnet_app_worker_add_del_args vnet_app_worker_add_del_args_t
app_rx_mqs_alloc
static int app_rx_mqs_alloc(application_t *app)
Definition: application.c:624
vlib_node_set_state
static void vlib_node_set_state(vlib_main_t *vm, u32 node_index, vlib_node_state_t new_state)
Set node dispatch state.
Definition: node_funcs.h:175
app_listener_::local_index
u32 local_index
local listening session index
Definition: application.h:85
pool_elt_at_index
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:549
vnet_unlisten
int vnet_unlisten(vnet_unlisten_args_t *a)
Definition: application.c:1387
ssvm_private_t::ssvm_size
uword ssvm_size
Definition: ssvm.h:84
name
string name[64]
Definition: fib.api:25
app_get_name
static const u8 * app_get_name(application_t *app)
Definition: application.c:352
listen_session_get_handle
static u64 listen_session_get_handle(session_t *s)
Definition: session.h:623
app_namespace_t
struct _app_namespace app_namespace_t
session_::tx_fifo
svm_fifo_t * tx_fifo
Definition: session_types.h:179
session_wrk_handle_mq
int session_wrk_handle_mq(session_worker_t *wrk, svm_msg_q_t *mq)
Definition: session_node.c:1671
application_name_table_add
static void application_name_table_add(application_t *app)
Definition: application.c:408
app_cert_key_pair_alloc
static app_cert_key_pair_t * app_cert_key_pair_alloc()
Definition: application.c:2006
fifo_segment_header_::n_mqs
u8 n_mqs
Num mqs for mqs segment.
Definition: fifo_types.h:145
fifo_segment_t
Definition: fifo_segment.h:68
application_start_stop_proxy_fib_proto
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:1524
segment_manager_props_init
segment_manager_props_t * segment_manager_props_init(segment_manager_props_t *props)
Definition: segment_manager.c:53
appsl_rx_mqs_input_node
vlib_node_registration_t appsl_rx_mqs_input_node
(constructor) VLIB_REGISTER_NODE (appsl_rx_mqs_input_node)
Definition: application.c:482
app_listener_alloc_and_init
int app_listener_alloc_and_init(application_t *app, session_endpoint_cfg_t *sep, app_listener_t **listener)
Definition: application.c:156
application_namespace.h
app_listener_get_local_session
session_t * app_listener_get_local_session(app_listener_t *al)
Definition: application.c:315
clib_bitmap_first_set
static uword clib_bitmap_first_set(uword *ai)
Return the lowest numbered set bit in a bitmap.
Definition: bitmap.h:372
app_worker_format_connects
void app_worker_format_connects(app_worker_t *app_wrk, int verbose)
Definition: application_worker.c:771
aw
appsl_wrk_t * aw
Definition: application.c:492
session_lookup_endpoint_listener
u64 session_lookup_endpoint_listener(u32 table_index, session_endpoint_t *sep, u8 use_rules)
Lookup listener for session endpoint in table.
Definition: session_lookup.c:474
session_
Definition: session_types.h:175
CRYPTO_ENGINE_OPENSSL
@ CRYPTO_ENGINE_OPENSSL
Definition: application_interface.h:177
segment_manager_t
struct _segment_manager segment_manager_t
clib_error_return
#define clib_error_return(e, args...)
Definition: error.h:99
session_endpoint_cfg_t
struct _session_endpoint_cfg session_endpoint_cfg_t
application_segment_manager_properties
segment_manager_props_t * application_segment_manager_properties(application_t *app)
Definition: application.c:1656
vlib_cli_command_t::path
char * path
Definition: cli.h:96
session_handle_t
u64 session_handle_t
Definition: session_types.h:111
VLIB_NODE_TYPE_INPUT
@ VLIB_NODE_TYPE_INPUT
Definition: node.h:76
wrk
session_worker_t * wrk
Definition: application.c:490
show_app_command
static vlib_cli_command_t show_app_command
(constructor) VLIB_CLI_COMMAND (show_app_command)
Definition: application.c:2103
hash_foreach
#define hash_foreach(key_var, value_var, h, body)
Definition: hash.h:441
application_start_stop_proxy
void application_start_stop_proxy(application_t *app, transport_proto_t transport_proto, u8 is_start)
Definition: application.c:1616
svm_msg_q_cfg_::q_nitems
u32 q_nitems
msg queue size (not rings)
Definition: message_queue.h:88
app_main_
Definition: application.h:175
hash_elts
static uword hash_elts(void *v)
Definition: hash.h:118
u16
unsigned short u16
Definition: types.h:57
app_worker_map_index
static u32 app_worker_map_index(application_t *app, app_worker_map_t *map)
Definition: application.c:332
listen_session_get
static session_t * listen_session_get(u32 ls_index)
Definition: session.h:654
SESSION_INVALID_INDEX
#define SESSION_INVALID_INDEX
Definition: session_types.h:22
application_::app_index
u32 app_index
App index in app pool.
Definition: application.h:111
hash_set_mem
#define hash_set_mem(h, key, value)
Definition: hash.h:275
APP_INVALID_INDEX
#define APP_INVALID_INDEX
Definition: application.h:226
clib_file::private_data
u64 private_data
Definition: file.h:64
vnet_application_detach
int vnet_application_detach(vnet_app_detach_args_t *a)
Detach application from vpp.
Definition: application.c:1216
am
app_main_t * am
Definition: application.c:489
application_format_connects
static void application_format_connects(application_t *app, int verbose)
Definition: application.c:1698
app_listen_session_handle
session_handle_t app_listen_session_handle(session_t *ls)
Get app listener handle for listening session.
Definition: application.c:78
application_::listeners
app_listener_t * listeners
Pool of listeners for the app.
Definition: application.h:134
pool_put
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:305
application_is_builtin_proxy
int application_is_builtin_proxy(application_t *app)
Definition: application.c:1506
next
app_rx_mq_elt_t * next
Definition: application.c:488
app_main_::last_crypto_engine
crypto_engine_type_t last_crypto_engine
Definition: application.h:200
application_init
clib_error_t * application_init(vlib_main_t *vm)
Definition: application.c:2083
session_lookup_del_session_endpoint
int session_lookup_del_session_endpoint(u32 table_index, session_endpoint_t *sep)
Definition: session_lookup.c:290
state
vl_api_dhcp_client_state_t state
Definition: dhcp.api:201
listener
Definition: test_stats.cpp:7
certificate_::key
u8 * key
Definition: application_interface.h:28
session_endpoint_is_local
static u8 session_endpoint_is_local(session_endpoint_t *sep)
Definition: session_types.h:98
app_worker_alloc
app_worker_t * app_worker_alloc(application_t *app)
Definition: application_worker.c:26
svm_msg_q_alloc_eventfd
int svm_msg_q_alloc_eventfd(svm_msg_q_t *mq)
Allocate event fd for queue.
Definition: message_queue.c:491
vnet_unlisten_args_t
struct _vnet_unlisten_args_t vnet_unlisten_args_t
crypto_ctx_::n_subscribers
u32 n_subscribers
refcount of sessions using said context
Definition: application_interface.h:196
certificate_::app_interests
u32 * app_interests
Definition: application_interface.h:26
application_
Definition: application.h:108
APP_OPTIONS_SEGMENT_SIZE
@ APP_OPTIONS_SEGMENT_SIZE
Definition: application_interface.h:207
vnet_app_detach_args_t
struct _vnet_app_detach_args_t vnet_app_detach_args_t
transport_connection_t
struct _transport_connection transport_connection_t
unformat_input_t
struct _unformat_input_t unformat_input_t
format_app_worker_listener
u8 * format_app_worker_listener(u8 *s, va_list *args)
Definition: application_worker.c:713
session_lookup_add_session_endpoint
int session_lookup_add_session_endpoint(u32 table_index, session_endpoint_t *sep, u64 value)
Definition: session_lookup.c:263
vlib_frame_t
Definition: node.h:372
app_worker_first_listener
session_t * app_worker_first_listener(app_worker_t *app, u8 fib_proto, u8 transport_proto)
Definition: application_worker.c:541
app_namespace_get
app_namespace_t * app_namespace_get(u32 index)
Definition: application_namespace.c:38
clib_memcpy_fast
static_always_inline void * clib_memcpy_fast(void *restrict dst, const void *restrict src, size_t n)
Definition: string.h:92
segment_manager_alloc
segment_manager_t * segment_manager_alloc(void)
Definition: segment_manager.c:336
application_namespace_cleanup
void application_namespace_cleanup(app_namespace_t *app_ns)
Definition: application.c:951
session_free
void session_free(session_t *s)
Definition: session.c:227
APP_OPTIONS_NAMESPACE_SECRET
@ APP_OPTIONS_NAMESPACE_SECRET
Definition: application_interface.h:215
SSVM_SEGMENT_MEMFD
@ SSVM_SEGMENT_MEMFD
Definition: ssvm.h:50
ssvm_segment_type_t
enum ssvm_segment_type_ ssvm_segment_type_t
APP_OPTIONS_PROXY_TRANSPORT
@ APP_OPTIONS_PROXY_TRANSPORT
Definition: application_interface.h:216
app_listener_alloc
static app_listener_t * app_listener_alloc(application_t *app)
Definition: application.c:32
application_::rx_mqs
app_rx_mq_elt_t * rx_mqs
Fixed vector of rx mqs that can be a part of pending_rx_mqs linked list maintained by the app sublaye...
Definition: application.h:150
hash_unset
#define hash_unset(h, key)
Definition: hash.h:261
vnet_shutdown_args_t
struct _vnet_shutdown_args_t vnet_shutdown_args_t
frame
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
Definition: application.c:486
session_cb_vft_::session_accept_callback
int(* session_accept_callback)(session_t *new_session)
Notify server of newly accepted session.
Definition: application_interface.h:41
application_local.h
application_format_all_clients
void application_format_all_clients(vlib_main_t *vm, int verbose)
Definition: application.c:1846
svm_msg_q_ring_cfg_
Definition: message_queue.h:78
unformat
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
format_svm_msg_q
u8 * format_svm_msg_q(u8 *s, va_list *args)
Format message queue, shows msg count for each ring.
Definition: message_queue.c:628
pool_is_free_index
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:302
node
vlib_main_t vlib_node_runtime_t * node
Definition: application.c:485
app_worker_::listeners_table
uword * listeners_table
Lookup tables for listeners.
Definition: application.h:57
application_use_private_rx_mqs
u8 application_use_private_rx_mqs(void)
Definition: application.c:677
SESSION_ENDPOINT_CFG_NULL
#define SESSION_ENDPOINT_CFG_NULL
Definition: session_types.h:77
application_get_default_worker
app_worker_t * application_get_default_worker(application_t *app)
Definition: application.c:986
application_n_workers
u32 application_n_workers(application_t *app)
Definition: application.c:992
application_get
application_t * application_get(u32 app_index)
Definition: application.c:710
foreach_vlib_main
#define foreach_vlib_main()
Definition: threads.h:216
svm_msg_q_is_empty
static u8 svm_msg_q_is_empty(svm_msg_q_t *mq)
Check if message queue is empty.
Definition: message_queue.h:335
session_cb_vft_
Definition: application_interface.h:32
app_listener_cleanup
void app_listener_cleanup(app_listener_t *al)
Definition: application.c:264
session_::app_wrk_index
u32 app_wrk_index
Index of the app worker that owns the session.
Definition: session_types.h:191
application_has_global_scope
u8 application_has_global_scope(application_t *app)
Definition: application.c:1518
app_interface_check_thread_and_barrier
#define app_interface_check_thread_and_barrier(_fn, _arg)
Definition: application.c:24
pool_foreach
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:534
app_namespace_get_fib_index
u32 app_namespace_get_fib_index(app_namespace_t *app_ns, u8 fib_proto)
Definition: application_namespace.c:213
app_rx_mq_elt_::flags
u8 flags
Definition: application.h:105
fifo_segment_cleanup
void fifo_segment_cleanup(fifo_segment_t *fs)
Definition: fifo_segment.c:827
ip_interface_get_first_ip
void * ip_interface_get_first_ip(u32 sw_if_index, u8 is_ip4)
Definition: ip_interface.c:174
app_crypto_engine_n_types
u8 app_crypto_engine_n_types(void)
Definition: application.c:2125
session_::rx_fifo
svm_fifo_t * rx_fifo
Pointers to rx/tx buffers.
Definition: session_types.h:178
app_listener_::session_index
u32 session_index
global listening session index
Definition: application.h:86
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
CRYPTO_ENGINE_MBEDTLS
@ CRYPTO_ENGINE_MBEDTLS
Definition: application_interface.h:178
app_main_::app_by_api_client_index
uword * app_by_api_client_index
Hash table of apps by api client index.
Definition: application.h:185
segment_manager_event_queue
svm_msg_q_t * segment_manager_event_queue(segment_manager_t *sm)
Definition: segment_manager.c:945
app_listener_::app_index
u32 app_index
owning app index
Definition: application.h:84
app_worker_stop_listen
int app_worker_stop_listen(app_worker_t *app_wrk, app_listener_t *al)
Definition: application_worker.c:301
session_::app_index
u32 app_index
Index of application that owns the listener.
Definition: session_types.h:203
map
counters map
Definition: map.api:356
VLIB_NODE_FN
#define VLIB_NODE_FN(node)
Definition: node.h:202
vnet_disconnect_args_t
struct _vnet_disconnect_args_t vnet_disconnect_args_t
vec_add1
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:606
segment_manager_dealloc_fifos
void segment_manager_dealloc_fifos(svm_fifo_t *rx_fifo, svm_fifo_t *tx_fifo)
Definition: segment_manager.c:825
listen_session_free
static void listen_session_free(session_t *s)
Definition: session.h:660
application_get_segment_manager_properties
segment_manager_props_t * application_get_segment_manager_properties(u32 app_index)
Definition: application.c:1662
application_::rx_mqs_segment
fifo_segment_t rx_mqs_segment
Segment where rx mqs were allocated.
Definition: application.h:144
app_worker_map_get
static app_worker_map_t * app_worker_map_get(application_t *app, u32 map_index)
Definition: application.c:344
app_rx_mq_handle_::app_index
u32 app_index
Definition: application.h:159
session_get_transport
transport_connection_t * session_get_transport(session_t *s)
Definition: session.c:1743
application_setup_proxy
void application_setup_proxy(application_t *app)
Definition: application.c:1632
hash_unset_mem
#define hash_unset_mem(h, key)
Definition: hash.h:291
CLIB_UNUSED
#define CLIB_UNUSED(x)
Definition: clib.h:90
vec_dup
#define vec_dup(V)
Return copy of vector (no header, no alignment)
Definition: vec.h:444
session_listen
int session_listen(session_t *ls, session_endpoint_cfg_t *sep)
Ask transport to listen on session endpoint.
Definition: session.c:1423
application_verify_cfg
static u8 application_verify_cfg(ssvm_segment_type_t st)
Check app config for given segment type.
Definition: application.c:745
ssvm_delete
void ssvm_delete(ssvm_private_t *ssvm)
Definition: ssvm.c:445
fifo_segment_msg_q_alloc
svm_msg_q_t * fifo_segment_msg_q_alloc(fifo_segment_t *fs, u32 mq_index, svm_msg_q_cfg_t *cfg)
Allocate message queue on segment.
Definition: fifo_segment.c:1079
vm
vlib_main_t * vm
Definition: application.c:485
clib_file
Definition: file.h:51
segment_manager_props_t
struct _segment_manager_props segment_manager_props_t
application_alloc_worker_and_init
int application_alloc_worker_and_init(application_t *app, app_worker_t **wrk)
Definition: application.c:1009
ENDPOINT_INVALID_INDEX
#define ENDPOINT_INVALID_INDEX
Definition: transport_types.h:293
session_main_get_vpp_event_queue
static svm_msg_q_t * session_main_get_vpp_event_queue(u32 thread_index)
Definition: session.h:717
vnet_app_del_cert_key_pair
int vnet_app_del_cert_key_pair(u32 index)
Definition: application.c:2060
vlib_get_thread_index
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:187
vl_api_registration_
An API client registration, only in vpp/vlib.
Definition: api_common.h:47
app_worker_map_free
static void app_worker_map_free(application_t *app, app_worker_map_t *map)
Definition: application.c:338
application_listener_select_worker
app_worker_t * application_listener_select_worker(session_t *ls)
Definition: application.c:998
session_endpoint_is_zero
static u8 session_endpoint_is_zero(session_endpoint_t *sep)
Definition: session_types.h:105
application_session_table
u32 application_session_table(application_t *app, u8 fib_proto)
Definition: application.c:358
hash_get
#define hash_get(h, key)
Definition: hash.h:249
vnet_listen_args_t
struct _vnet_bind_args_t vnet_listen_args_t
unformat_check_input
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:163
APP_OPTIONS_TLS_ENGINE
@ APP_OPTIONS_TLS_ENGINE
Definition: application_interface.h:218
format_app_worker
u8 * format_app_worker(u8 *s, va_list *args)
Definition: application_worker.c:758
app_rx_mq_handle_::as_u64
u64 as_u64
Definition: application.h:162
application_lookup_name
application_t * application_lookup_name(const u8 *name)
Definition: application.c:431
application_format_all_listeners
void application_format_all_listeners(vlib_main_t *vm, int verbose)
Definition: application.c:1826
app_rx_mq_elt_::prev
struct app_rx_mq_elt_ * prev
Definition: application.h:101
session_stop_listen
int session_stop_listen(session_t *s)
Ask transport to stop listening on local transport endpoint.
Definition: session.c:1452
session_endpoint_fib_proto
static u8 session_endpoint_fib_proto(session_endpoint_t *sep)
Definition: session_types.h:92
clib_bitmap_free
#define clib_bitmap_free(v)
Free a bitmap.
Definition: bitmap.h:92
uword
u64 uword
Definition: types.h:112
application_get_rx_mqs_segment
fifo_segment_t * application_get_rx_mqs_segment(application_t *app)
Definition: application.c:683
asl_wrk_::pending_rx_mqs
app_rx_mq_elt_t * pending_rx_mqs
Linked list of mqs with pending messages.
Definition: application.h:172
session_cb_vft_::session_disconnect_callback
void(* session_disconnect_callback)(session_t *s)
Notify app that session is closing.
Definition: application_interface.h:48
app_rx_mq_handle_::thread_index
u32 thread_index
Definition: application.h:160
segment_manager_segment_reader_unlock
void segment_manager_segment_reader_unlock(segment_manager_t *sm)
Definition: segment_manager.c:324
app_main_::app_by_name
uword * app_by_name
Hash table of builtin apps by name.
Definition: application.h:190
vlib_thread_is_main_w_barrier
static u8 vlib_thread_is_main_w_barrier(void)
Definition: threads.h:485
app_main_::cert_key_pair_store
app_cert_key_pair_t * cert_key_pair_store
Pool from which we allocate certificates (key, cert)
Definition: application.h:195
vlib_main_t::thread_index
u32 thread_index
Definition: main.h:215
appsl_pending_rx_mqs_del
void appsl_pending_rx_mqs_del(appsl_wrk_t *aw, app_rx_mq_elt_t *elt)
Definition: application.c:465
application_has_local_scope
u8 application_has_local_scope(application_t *app)
Definition: application.c:1512
session_main
session_main_t session_main
Definition: session.c:25
application_free
static void application_free(application_t *app)
Definition: application.c:857
session_index_from_handle
static u32 session_index_from_handle(session_handle_t handle)
Definition: session_types.h:289
app_listener_free
static void app_listener_free(application_t *app, app_listener_t *app_listener)
Definition: application.c:52
application_api_table_del
static void application_api_table_del(u32 api_client_index)
Definition: application.c:402
session_handle
static session_handle_t session_handle(session_t *s)
Definition: session_types.h:283
svm_msg_q_cfg_::ring_cfgs
svm_msg_q_ring_cfg_t * ring_cfgs
array of ring cfgs
Definition: message_queue.h:90
application_::ns_index
u32 ns_index
Namespace the application belongs to.
Definition: application.h:129
app_rx_mq_elt_::app_index
u32 app_index
Definition: application.h:104
segment_manager_segment_handle
u64 segment_manager_segment_handle(segment_manager_t *sm, fifo_segment_t *segment)
Definition: segment_manager.c:275
format_unformat_error
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
n_msgs
n_msgs
Definition: application.c:506
pool_get
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:255
session_get_from_handle
static session_t * session_get_from_handle(session_handle_t handle)
Definition: session.h:357
session_get_from_handle_if_valid
static session_t * session_get_from_handle_if_valid(session_handle_t handle)
Definition: session.h:366
app_name
static char * app_name
Definition: vapi_cpp_test.cpp:33
vec_validate
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment)
Definition: vec.h:523
VLIB_CLI_COMMAND
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:163
session_cb_vft_::session_reset_callback
void(* session_reset_callback)(session_t *s)
Notify app that session was reset.
Definition: application_interface.h:60
session_main_::use_private_rx_mqs
u8 use_private_rx_mqs
Allocate private rx mqs for external apps.
Definition: session.h:214
fib_protocol_t
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
app_rx_mq_elt_
Definition: application.h:98
application_api_table_add
static void application_api_table_add(u32 app_index, u32 api_client_index)
Definition: application.c:395
clib_bitmap_set
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
app_worker_::event_queue
svm_msg_q_t * event_queue
Application listens for events on this svm queue.
Definition: application.h:46
application_get_if_valid
application_t * application_get_if_valid(u32 app_index)
Definition: application.c:718
app_cert_key_pair_get_default
app_cert_key_pair_t * app_cert_key_pair_get_default()
Definition: application.c:2030
FIB_PROTOCOL_IP4
@ FIB_PROTOCOL_IP4
Definition: fib_types.h:36
vnet_app_add_cert_key_pair
int vnet_app_add_cert_key_pair(vnet_app_add_cert_key_pair_args_t *a)
Definition: application.c:2037
app_worker_map_alloc
static app_worker_map_t * app_worker_map_alloc(application_t *app)
Definition: application.c:323
vlib_node_registration_t
struct _vlib_node_registration vlib_node_registration_t
segment_manager_index
u32 segment_manager_index(segment_manager_t *sm)
Definition: segment_manager.c:561
format_memory_size
u8 * format_memory_size(u8 *s, va_list *va)
Definition: std-formats.c:209
session_get
static session_t * session_get(u32 si, u32 thread_index)
Definition: session.h:337
vnet_disconnect_session
int vnet_disconnect_session(vnet_disconnect_args_t *a)
Definition: application.c:1439
vlib_cli_output
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:716
svm_msg_q_
Definition: message_queue.h:72
SSVM_SEGMENT_PRIVATE
@ SSVM_SEGMENT_PRIVATE
Definition: ssvm.h:51
vec_search
#define vec_search(v, E)
Search a vector for the index of the entry that matches.
Definition: vec.h:1054
vnet_app_add_cert_key_pair_args_t
struct _vnet_app_add_cert_key_pair_args_ vnet_app_add_cert_key_pair_args_t
app_worker_connect_session
int app_worker_connect_session(app_worker_t *app, session_endpoint_cfg_t *sep, session_handle_t *rsh)
Definition: application_worker.c:506
application_is_proxy
int application_is_proxy(application_t *app)
Definition: application.c:1494
APP_OPTIONS_PREALLOC_FIFO_PAIRS
@ APP_OPTIONS_PREALLOC_FIFO_PAIRS
Definition: application_interface.h:212
app_listener_get_w_handle
app_listener_t * app_listener_get_w_handle(session_handle_t handle)
Get app listener for listener session handle.
Definition: application.c:88
session_type_from_proto_and_ip
static session_type_t session_type_from_proto_and_ip(transport_proto_t proto, u8 is_ip4)
Definition: session_types.h:224
application_::proxied_transports
u16 proxied_transports
Definition: application.h:131
svm_msg_q_size_to_alloc
uword svm_msg_q_size_to_alloc(svm_msg_q_cfg_t *cfg)
Definition: message_queue.c:104
vnet_application_attach
int vnet_application_attach(vnet_app_attach_args_t *a)
Attach application to vpp.
Definition: application.c:1142
app_worker_free
void app_worker_free(app_worker_t *app_wrk)
Definition: application_worker.c:55
app_crypto_engine_type_add
crypto_engine_type_t app_crypto_engine_type_add(void)
Definition: application.c:2119
hash_create_vec
#define hash_create_vec(elts, key_bytes, value_bytes)
Definition: hash.h:667
show_app_command_fn
static clib_error_t * show_app_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: application.c:1924
application_local_session_table
u32 application_local_session_table(application_t *app)
Definition: application.c:373
app_listener_select_worker
static app_worker_t * app_listener_select_worker(application_t *app, app_listener_t *al)
Definition: application.c:291
hash_get_mem
#define hash_get_mem(h, key)
Definition: hash.h:269
app_listener_::workers
clib_bitmap_t * workers
workers accepting connections
Definition: application.h:81
fifo_segment_t::ssvm
ssvm_private_t ssvm
ssvm segment data
Definition: fifo_segment.h:70
app_name_from_api_index
static u8 * app_name_from_api_index(u32 api_client_index)
Definition: application.c:1122
vec_free
#define vec_free(V)
Free vector's memory (no header).
Definition: vec.h:395
app_cert_key_pair_get
app_cert_key_pair_t * app_cert_key_pair_get(u32 index)
Definition: application.c:2024
app_validate_namespace
static int app_validate_namespace(u8 *namespace_id, u64 secret, u32 *app_ns_index)
Definition: application.c:1100
crypto_ctx_::ctx_index
u32 ctx_index
index in crypto context pool
Definition: application_interface.h:195
SSVM_SEGMENT_SHM
@ SSVM_SEGMENT_SHM
Definition: ssvm.h:49
APP_OPTIONS_TX_FIFO_SIZE
@ APP_OPTIONS_TX_FIFO_SIZE
Definition: application_interface.h:211
SESSION_ENDPOINT_NULL
#define SESSION_ENDPOINT_NULL
Definition: session_types.h:67
app_worker_::connects_seg_manager
u32 connects_seg_manager
Segment manager used for outgoing connects issued by the app.
Definition: application.h:54
TRANSPORT_CONNECTION_F_NO_LOOKUP
@ TRANSPORT_CONNECTION_F_NO_LOOKUP
Don't register connection in lookup.
Definition: transport_types.h:52
session_main_get_evt_q_segment
fifo_segment_t * session_main_get_evt_q_segment(void)
Definition: session.c:1674
application_lookup
application_t * application_lookup(u32 api_client_index)
Definition: application.c:420
asl_wrk_
App sublayer per vpp worker state.
Definition: application.h:169
APP_OPTIONS_ADD_SEGMENT_SIZE
@ APP_OPTIONS_ADD_SEGMENT_SIZE
Definition: application_interface.h:208
u64
unsigned long u64
Definition: types.h:89
application_::worker_maps
app_worker_map_t * worker_maps
Pool of mappings that keep track of workers associated to this app.
Definition: application.h:123
application_verify_cb_fns
static void application_verify_cb_fns(session_cb_vft_t *cb_fns)
Definition: application.c:727
format
description fragment has unexpected format
Definition: map.api:433
ASSERT
#define ASSERT(truth)
Definition: error_bootstrap.h:69
ssvm_server_init
int ssvm_server_init(ssvm_private_t *ssvm, ssvm_segment_type_t type)
Definition: ssvm.c:433
app_namespace_index_from_id
u32 app_namespace_index_from_id(const u8 *ns_id)
Definition: application_namespace.c:188
application_::sm_properties
segment_manager_props_t sm_properties
Segment manager properties.
Definition: application.h:120
format_ip46_address
format_function_t format_ip46_address
Definition: ip46_address.h:50
crypto_ctx_
Definition: application_interface.h:193
app_main_::wrk
appsl_wrk_t * wrk
App sublayer per-worker state.
Definition: application.h:205
buf
u64 buf
Definition: application.c:493
u32
unsigned int u32
Definition: types.h:88
VLIB_INIT_FUNCTION
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:172
listen_session_get_transport
transport_connection_t * listen_session_get_transport(session_t *s)
Definition: session.c:1778
ip_is_local
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:57
ip_copy
void ip_copy(ip46_address_t *dst, ip46_address_t *src, u8 is_ip4)
Definition: ip.c:83
CRYPTO_ENGINE_LAST
@ CRYPTO_ENGINE_LAST
Definition: application_interface.h:181
vlib_node_set_interrupt_pending
static void vlib_node_set_interrupt_pending(vlib_main_t *vm, u32 node_index)
Definition: node_funcs.h:249
transport_proto_t
enum _transport_proto transport_proto_t
FIB_PROTOCOL_IP6
@ FIB_PROTOCOL_IP6
Definition: fib_types.h:37
app_worker_get
app_worker_t * app_worker_get(u32 wrk_index)
Definition: application_worker.c:41
format_crypto_engine
u8 * format_crypto_engine(u8 *s, va_list *args)
Definition: application.c:1733
app_worker_
Definition: application.h:32
app_rx_mqs_epoll_add
static void app_rx_mqs_epoll_add(application_t *app, app_rx_mq_elt_t *mqe)
Definition: application.c:574
vec_foreach
#define vec_foreach(var, vec)
Vector iterator.
Definition: vec_bootstrap.h:213
APP_OPTIONS_EVT_QUEUE_SIZE
@ APP_OPTIONS_EVT_QUEUE_SIZE
Definition: application_interface.h:206
listen_session_alloc
static session_t * listen_session_alloc(u8 thread_index, session_type_t type)
Definition: session.h:644
session_half_close
void session_half_close(session_t *s)
Initialize session half-closing procedure.
Definition: session.c:1479
vnet_shutdown_session
int vnet_shutdown_session(vnet_shutdown_args_t *a)
Definition: application.c:1418
application_get_worker
app_worker_t * application_get_worker(application_t *app, u32 wrk_map_index)
Definition: application.c:976
format_application
u8 * format_application(u8 *s, va_list *args)
Definition: application.c:1782
application_name_table_del
static void application_name_table_del(application_t *app)
Definition: application.c:414
session_endpoint_t
struct _session_endpoint session_endpoint_t
vnet_connect_args_t
struct _vnet_connect_args vnet_connect_args_t
pool_elts
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:127
ip_interface_has_address
u8 ip_interface_has_address(u32 sw_if_index, ip46_address_t *ip, u8 is_ip4)
Definition: ip_interface.c:140
clib_file_add
static uword clib_file_add(clib_file_main_t *um, clib_file_t *template)
Definition: file.h:96
app_namespace_index
u32 app_namespace_index(app_namespace_t *app_ns)
Definition: application_namespace.c:53
elt
app_rx_mq_elt_t * elt
Definition: application.c:488
application_name_from_index
const u8 * application_name_from_index(u32 app_index)
Returns app name for app-index.
Definition: application.c:386
show_certificate_command_fn
static clib_error_t * show_certificate_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: application.c:1866
SESSION_INVALID_HANDLE
#define SESSION_INVALID_HANDLE
Definition: session_types.h:23
APP_OPTIONS_FLAGS
@ APP_OPTIONS_FLAGS
Definition: application_interface.h:205
session_cb_vft_::session_connected_callback
int(* session_connected_callback)(u32 app_wrk_index, u32 opaque, session_t *s, session_error_t code)
Connection request callback.
Definition: application_interface.h:44
app_worker_::app_is_builtin
u8 app_is_builtin
Definition: application.h:62
app_worker_map_::wrk_index
u32 wrk_index
Definition: application.h:76
TRANSPORT_SERVICE_CL
@ TRANSPORT_SERVICE_CL
connectionless service
Definition: transport_types.h:40
vnet_app_worker_add_del
int vnet_app_worker_add_del(vnet_app_worker_add_del_args_t *a)
Definition: application.c:1048
fifo_segment_init
int fifo_segment_init(fifo_segment_t *fs)
Initialize fifo segment shared header.
Definition: fifo_segment.c:296
svm_msg_q_cfg_
Definition: message_queue.h:85
svm_msg_q_cfg_::consumer_pid
int consumer_pid
pid of msg consumer
Definition: message_queue.h:87
application_format_listeners
static void application_format_listeners(application_t *app, int verbose)
Definition: application.c:1669
application_alloc_and_init
static int application_alloc_and_init(app_init_args_t *a)
Definition: application.c:767
application_remove_proxy
void application_remove_proxy(application_t *app)
Definition: application.c:1644
clib_memset
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
vlib_main_t
Definition: main.h:102
transport_proto_foreach
#define transport_proto_foreach(VAR, VAR_ALLOW_BM)
Definition: transport.h:130
vlib_get_n_threads
static u32 vlib_get_n_threads()
Definition: global_funcs.h:23
index
appsl_rx_mqs_input_node index
Definition: application.c:524
app_worker_::wrk_map_index
u32 wrk_map_index
Worker index in app's map pool.
Definition: application.h:40
application_start_stop_proxy_local_scope
static void application_start_stop_proxy_local_scope(application_t *app, u8 transport_proto, u8 is_start)
Definition: application.c:1589
application_interface.h
appliction_format_app_mq
static void appliction_format_app_mq(vlib_main_t *vm, application_t *app)
Definition: application.c:1881
vlib_get_main
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:38
u8
unsigned char u8
Definition: types.h:56
ssvm_private_t::name
u8 * name
Definition: ssvm.h:87
clib_error_t
Definition: clib_error.h:21
a
a
Definition: bitmap.h:525
session_transport_service_type
static transport_service_type_t session_transport_service_type(session_t *s)
Definition: session_types.h:261
app_rx_mq_fd_write_ready
static clib_error_t * app_rx_mq_fd_write_ready(clib_file_t *cf)
Definition: application.c:567
vlib_init_function_t
clib_error_t *() vlib_init_function_t(struct vlib_main_t *vm)
Definition: init.h:51
crypto_ctx_::crypto_engine
u8 crypto_engine
Definition: application_interface.h:198
ct_session_endpoint
void ct_session_endpoint(session_t *ll, session_endpoint_t *sep)
Definition: application_local.c:129
application_enable_rx_mqs_nodes
void application_enable_rx_mqs_nodes(u8 is_en)
Definition: application.c:691
session.h
app_rx_mq_elt_::mq
svm_msg_q_t * mq
Definition: application.h:102
i
int i
Definition: flowhash_template.h:376
pool_free
#define pool_free(p)
Free a pool.
Definition: pool.h:447
app_main_::app_pool
application_t * app_pool
Pool from which we allocate all applications.
Definition: application.h:180
clib_warning
#define clib_warning(format, args...)
Definition: error.h:59
clib_file_del_by_index
static void clib_file_del_by_index(clib_file_main_t *um, uword index)
Definition: file.h:119
app_cert_key_pair_get_if_valid
app_cert_key_pair_t * app_cert_key_pair_get_if_valid(u32 index)
Definition: application.c:2016
session_::flags
u32 flags
Session flags.
Definition: session_types.h:197
rv
int __clib_unused rv
Definition: application.c:491
key_len
u16 key_len
Definition: ikev2_types.api:95
application_::cb_fns
session_cb_vft_t cb_fns
Callbacks: shoulder-taps for the server/client.
Definition: application.h:117
APP_OPTIONS_PREALLOC_FIFO_HDRS
@ APP_OPTIONS_PREALLOC_FIFO_HDRS
Definition: application_interface.h:213
application_::name
u8 * name
Name registered by builtin apps.
Definition: application.h:126
transport_proto
transport_proto
Definition: session.api:22
certificate_::cert
u8 * cert
Definition: application_interface.h:29
APP_RX_MQ_F_PENDING
@ APP_RX_MQ_F_PENDING
Definition: application.h:94
app_listener_get_w_session
app_listener_t * app_listener_get_w_session(session_t *ls)
Definition: application.c:67
vl_api_registration_::name
u8 * name
Client name.
Definition: api_common.h:54
vnet_app_attach_args_t
struct _vnet_app_attach_args_t vnet_app_attach_args_t
APP_OPTIONS_PCT_FIRST_ALLOC
@ APP_OPTIONS_PCT_FIRST_ALLOC
Definition: application_interface.h:222
app_worker_::app_index
u32 app_index
Index of owning app.
Definition: application.h:43
APP_OPTIONS_NAMESPACE
@ APP_OPTIONS_NAMESPACE
Definition: application_interface.h:214
vlib_node_runtime_t
Definition: node.h:454
session_lookup_get_or_alloc_index_for_fib
u32 session_lookup_get_or_alloc_index_for_fib(u32 fib_proto, u32 fib_index)
Definition: session_lookup.c:218
session_::al_index
u32 al_index
App listener index in app's listener pool if a listener.
Definition: session_types.h:211
session_worker_::state
session_wrk_state_t state
Worker state.
Definition: session.h:116
session_cli_return_if_not_enabled
#define session_cli_return_if_not_enabled()
Definition: session.h:728
app_main
static app_main_t app_main
Definition: application.c:22
session_cb_vft_::app_cert_key_pair_delete_callback
int(* app_cert_key_pair_delete_callback)(app_cert_key_pair_t *ckpair)
Cert and key pair delete notification.
Definition: application_interface.h:72
fifo_segment_t::h
fifo_segment_header_t * h
fifo segment data
Definition: fifo_segment.h:71
app_listener_get
app_listener_t * app_listener_get(application_t *app, u32 app_listener_index)
Definition: application.c:46
session_queue_node
vlib_node_registration_t session_queue_node
(constructor) VLIB_REGISTER_NODE (session_queue_node)
Definition: session_node.c:1835
vlib_cli_command_t
Definition: cli.h:92
session_endpoint_update_for_app
static void session_endpoint_update_for_app(session_endpoint_cfg_t *sep, application_t *app, u8 is_connect)
Definition: application.c:1249
app_listener_handle
session_handle_t app_listener_handle(app_listener_t *al)
Definition: application.c:61
app_worker_::api_client_index
u32 api_client_index
API index for the worker.
Definition: application.h:60
crypto_ctx_::ckpair_index
u32 ckpair_index
certificate & key
Definition: application_interface.h:197
application_is_builtin
int application_is_builtin(application_t *app)
Definition: application.c:1500
session_lookup_get_index_for_fib
u32 session_lookup_get_index_for_fib(u32 fib_proto, u32 fib_index)
Definition: session_lookup.c:210
hash_create
#define hash_create(elts, value_bytes)
Definition: hash.h:695
app_worker_start_listen
int app_worker_start_listen(app_worker_t *app_wrk, app_listener_t *lstnr)
Definition: application_worker.c:201
SESSION_WRK_INTERRUPT
@ SESSION_WRK_INTERRUPT
Definition: session.h:78
APP_OPTIONS_MAX_FIFO_SIZE
@ APP_OPTIONS_MAX_FIFO_SIZE
Definition: application_interface.h:219
app_listener_get_session
session_t * app_listener_get_session(app_listener_t *al)
Definition: application.c:306
app_rx_mq_fd_read_ready
static clib_error_t * app_rx_mq_fd_read_ready(clib_file_t *cf)
Definition: application.c:539
APP_RX_MQ_F_POSTPONED
@ APP_RX_MQ_F_POSTPONED
Definition: application.h:95
session_main_get_worker
static session_worker_t * session_main_get_worker(u32 thread_index)
Definition: session.h:703
app_listener_lookup
app_listener_t * app_listener_lookup(application_t *app, session_endpoint_cfg_t *sep_ext)
Definition: application.c:98
appns_sapi_enabled
u8 appns_sapi_enabled(void)
Definition: application_namespace.c:232
app_worker_map_
Definition: application.h:74
CRYPTO_ENGINE_NONE
@ CRYPTO_ENGINE_NONE
Definition: application_interface.h:176
app_listener_::al_index
u32 al_index
app listener index in app pool
Definition: application.h:83
vnet_app_add_cert_key_interest
int vnet_app_add_cert_key_interest(u32 index, u32 app_index)
Ask for app cb on pair deletion.
Definition: application.c:2049
listen_session_get_from_handle
static session_t * listen_session_get_from_handle(session_handle_t handle)
Definition: session.h:631
certificate_::cert_key_index
u32 cert_key_index
Definition: application_interface.h:27
appsl_pending_rx_mqs_add_tail
void appsl_pending_rx_mqs_add_tail(appsl_wrk_t *aw, app_rx_mq_elt_t *elt)
Definition: application.c:442
unformat_crypto_engine
uword unformat_crypto_engine(unformat_input_t *input, va_list *args)
Definition: application.c:1755
APP_OPTIONS_LOW_WATERMARK
@ APP_OPTIONS_LOW_WATERMARK
Definition: application_interface.h:221
show_certificate_command
static vlib_cli_command_t show_certificate_command
(constructor) VLIB_CLI_COMMAND (show_certificate_command)
Definition: application.c:2110
application_::flags
u32 flags
Flags.
Definition: application.h:114
UNFORMAT_END_OF_INPUT
#define UNFORMAT_END_OF_INPUT
Definition: format.h:137
session_worker_
Definition: session.h:87
session_endpoint_in_ns
static u8 session_endpoint_in_ns(session_endpoint_t *sep)
Definition: application.c:1234
svm_msg_q_get_eventfd
static int svm_msg_q_get_eventfd(svm_msg_q_t *mq)
Definition: message_queue.h:431
application.h
application_detach_process
static void application_detach_process(application_t *app, u32 api_client_index)
Definition: application.c:907
VLIB_REGISTER_NODE
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
app_listener_
Definition: application.h:79
ip_is_zero
u8 ip_is_zero(ip46_address_t *ip46_address, u8 is_ip4)
Definition: ip.c:22
app_listener_::accept_rotor
u32 accept_rotor
last worker to accept a connection
Definition: application.h:82
flags
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105