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