session: use session handles as app listener handles
[vpp.git] / src / vnet / session / session_api.c
1 /*
2  * Copyright (c) 2015-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/vnet.h>
17 #include <vlibmemory/api.h>
18 #include <vnet/session/application.h>
19 #include <vnet/session/application_interface.h>
20 #include <vnet/session/application_local.h>
21 #include <vnet/session/session_rules_table.h>
22 #include <vnet/session/session_table.h>
23 #include <vnet/session/session.h>
24
25 #include <vnet/vnet_msg_enum.h>
26
27 #define vl_typedefs             /* define message structures */
28 #include <vnet/vnet_all_api_h.h>
29 #undef vl_typedefs
30
31 #define vl_endianfun            /* define message structures */
32 #include <vnet/vnet_all_api_h.h>
33 #undef vl_endianfun
34
35 /* instantiate all the print functions we know about */
36 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
37 #define vl_printfun
38 #include <vnet/vnet_all_api_h.h>
39 #undef vl_printfun
40
41 #include <vlibapi/api_helper_macros.h>
42
43 #define foreach_session_api_msg                                         \
44 _(MAP_ANOTHER_SEGMENT_REPLY, map_another_segment_reply)                 \
45 _(APPLICATION_ATTACH, application_attach)                               \
46 _(APPLICATION_DETACH, application_detach)                               \
47 _(BIND_URI, bind_uri)                                                   \
48 _(UNBIND_URI, unbind_uri)                                               \
49 _(CONNECT_URI, connect_uri)                                             \
50 _(DISCONNECT_SESSION, disconnect_session)                               \
51 _(DISCONNECT_SESSION_REPLY, disconnect_session_reply)                   \
52 _(BIND_SOCK, bind_sock)                                                 \
53 _(UNBIND_SOCK, unbind_sock)                                             \
54 _(CONNECT_SOCK, connect_sock)                                           \
55 _(SESSION_ENABLE_DISABLE, session_enable_disable)                       \
56 _(APP_NAMESPACE_ADD_DEL, app_namespace_add_del)                         \
57 _(SESSION_RULE_ADD_DEL, session_rule_add_del)                           \
58 _(SESSION_RULES_DUMP, session_rules_dump)                               \
59 _(APPLICATION_TLS_CERT_ADD, application_tls_cert_add)                   \
60 _(APPLICATION_TLS_KEY_ADD, application_tls_key_add)                     \
61 _(APP_WORKER_ADD_DEL, app_worker_add_del)                               \
62
63 static int
64 session_send_fds (vl_api_registration_t * reg, int fds[], int n_fds)
65 {
66   clib_error_t *error;
67   if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
68     {
69       clib_warning ("can't send memfd fd");
70       return -1;
71     }
72   error = vl_api_send_fd_msg (reg, fds, n_fds);
73   if (error)
74     {
75       clib_error_report (error);
76       return -1;
77     }
78   return 0;
79 }
80
81 static int
82 send_add_segment_callback (u32 api_client_index, u64 segment_handle)
83 {
84   int fds[SESSION_N_FD_TYPE], n_fds = 0;
85   vl_api_map_another_segment_t *mp;
86   vl_api_registration_t *reg;
87   fifo_segment_t *fs;
88   ssvm_private_t *sp;
89   u8 fd_flags = 0;
90
91   reg = vl_mem_api_client_index_to_registration (api_client_index);
92   if (!reg)
93     {
94       clib_warning ("no api registration for client: %u", api_client_index);
95       return -1;
96     }
97
98   fs = segment_manager_get_segment_w_handle (segment_handle);
99   sp = &fs->ssvm;
100   if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
101     {
102       if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
103         {
104           clib_warning ("can't send memfd fd");
105           return -1;
106         }
107
108       fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
109       fds[n_fds] = sp->fd;
110       n_fds += 1;
111     }
112
113   mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
114   clib_memset (mp, 0, sizeof (*mp));
115   mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MAP_ANOTHER_SEGMENT);
116   mp->segment_size = sp->ssvm_size;
117   mp->fd_flags = fd_flags;
118   mp->segment_handle = clib_host_to_net_u64 (segment_handle);
119   strncpy ((char *) mp->segment_name, (char *) sp->name,
120            sizeof (mp->segment_name) - 1);
121
122   vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
123
124   if (n_fds)
125     return session_send_fds (reg, fds, n_fds);
126
127   return 0;
128 }
129
130 static int
131 send_del_segment_callback (u32 api_client_index, u64 segment_handle)
132 {
133   vl_api_unmap_segment_t *mp;
134   vl_api_registration_t *reg;
135
136   reg = vl_mem_api_client_index_to_registration (api_client_index);
137   if (!reg)
138     {
139       clib_warning ("no registration: %u", api_client_index);
140       return -1;
141     }
142
143   mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
144   clib_memset (mp, 0, sizeof (*mp));
145   mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_UNMAP_SEGMENT);
146   mp->segment_handle = clib_host_to_net_u64 (segment_handle);
147   vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
148
149   return 0;
150 }
151
152 static int
153 mq_try_lock_and_alloc_msg (svm_msg_q_t * app_mq, svm_msg_q_msg_t * msg)
154 {
155   int rv;
156   u8 try = 0;
157   while (try < 100)
158     {
159       rv = svm_msg_q_lock_and_alloc_msg_w_ring (app_mq,
160                                                 SESSION_MQ_CTRL_EVT_RING,
161                                                 SVM_Q_NOWAIT, msg);
162       if (!rv)
163         return 0;
164       try++;
165       usleep (1);
166     }
167   clib_warning ("failed to alloc msg");
168   return -1;
169 }
170
171 static int
172 mq_send_session_accepted_cb (session_t * s)
173 {
174   app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
175   svm_msg_q_msg_t _msg, *msg = &_msg;
176   svm_msg_q_t *vpp_queue, *app_mq;
177   session_t *listener;
178   session_accepted_msg_t *mp;
179   session_event_t *evt;
180   application_t *app;
181
182   app = application_get (app_wrk->app_index);
183   app_mq = app_wrk->event_queue;
184   if (mq_try_lock_and_alloc_msg (app_mq, msg))
185     return -1;
186
187   evt = svm_msg_q_msg_data (app_mq, msg);
188   clib_memset (evt, 0, sizeof (*evt));
189   evt->event_type = SESSION_CTRL_EVT_ACCEPTED;
190   mp = (session_accepted_msg_t *) evt->data;
191   clib_memset (mp, 0, sizeof (*mp));
192   mp->context = app->app_index;
193   mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
194   mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
195   mp->segment_handle = session_segment_handle (s);
196
197   if (session_has_transport (s))
198     {
199       listener = listen_session_get (s->listener_index);
200       mp->listener_handle = app_listen_session_handle (listener);
201       if (application_is_proxy (app))
202         {
203           listener =
204             app_worker_first_listener (app_wrk, session_get_fib_proto (s),
205                                        session_get_transport_proto (s));
206           if (listener)
207             mp->listener_handle = listen_session_get_handle (listener);
208         }
209       vpp_queue = session_main_get_vpp_event_queue (s->thread_index);
210       mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
211       mp->handle = session_handle (s);
212
213       session_get_endpoint (s, &mp->rmt, 0 /* is_lcl */ );
214     }
215   else
216     {
217       ct_connection_t *ct;
218
219       ct = (ct_connection_t *) session_get_transport (s);
220       listener = listen_session_get (s->listener_index);
221       mp->listener_handle = app_listen_session_handle (listener);
222       mp->rmt.is_ip4 = session_type_is_ip4 (listener->session_type);
223       mp->rmt.port = ct->c_rmt_port;
224       mp->handle = session_handle (s);
225       vpp_queue = session_main_get_vpp_event_queue (0);
226       mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
227     }
228   svm_msg_q_add_and_unlock (app_mq, msg);
229
230   return 0;
231 }
232
233 static inline void
234 mq_send_session_close_evt (app_worker_t * app_wrk, session_handle_t sh,
235                            session_evt_type_t evt_type)
236 {
237   svm_msg_q_msg_t _msg, *msg = &_msg;
238   session_disconnected_msg_t *mp;
239   svm_msg_q_t *app_mq;
240   session_event_t *evt;
241
242   app_mq = app_wrk->event_queue;
243   if (mq_try_lock_and_alloc_msg (app_mq, msg))
244     return;
245   evt = svm_msg_q_msg_data (app_mq, msg);
246   clib_memset (evt, 0, sizeof (*evt));
247   evt->event_type = evt_type;
248   mp = (session_disconnected_msg_t *) evt->data;
249   mp->handle = sh;
250   mp->context = app_wrk->api_client_index;
251   svm_msg_q_add_and_unlock (app_mq, msg);
252 }
253
254 static inline void
255 mq_notify_close_subscribers (u32 app_index, session_handle_t sh,
256                              svm_fifo_t * f, session_evt_type_t evt_type)
257 {
258   app_worker_t *app_wrk;
259   application_t *app;
260   int i;
261
262   app = application_get (app_index);
263   if (!app)
264     return;
265
266   for (i = 0; i < f->n_subscribers; i++)
267     {
268       if (!(app_wrk = application_get_worker (app, f->subscribers[i])))
269         continue;
270       mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_DISCONNECTED);
271     }
272 }
273
274 static void
275 mq_send_session_disconnected_cb (session_t * s)
276 {
277   app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
278   session_handle_t sh = session_handle (s);
279
280   mq_send_session_close_evt (app_wrk, session_handle (s),
281                              SESSION_CTRL_EVT_DISCONNECTED);
282
283   if (svm_fifo_n_subscribers (s->rx_fifo))
284     mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
285                                  SESSION_CTRL_EVT_DISCONNECTED);
286 }
287
288 static void
289 mq_send_session_reset_cb (session_t * s)
290 {
291   app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
292   session_handle_t sh = session_handle (s);
293
294   mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_RESET);
295
296   if (svm_fifo_n_subscribers (s->rx_fifo))
297     mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
298                                  SESSION_CTRL_EVT_RESET);
299 }
300
301 static int
302 mq_send_session_connected_cb (u32 app_wrk_index, u32 api_context,
303                               session_t * s, u8 is_fail)
304 {
305   svm_msg_q_msg_t _msg, *msg = &_msg;
306   session_connected_msg_t *mp;
307   svm_msg_q_t *vpp_mq, *app_mq;
308   transport_connection_t *tc;
309   app_worker_t *app_wrk;
310   session_event_t *evt;
311
312   app_wrk = app_worker_get (app_wrk_index);
313   app_mq = app_wrk->event_queue;
314   if (!app_mq)
315     {
316       clib_warning ("app %u with api index: %u not attached",
317                     app_wrk->app_index, app_wrk->api_client_index);
318       return -1;
319     }
320
321   if (mq_try_lock_and_alloc_msg (app_mq, msg))
322     return -1;
323
324   evt = svm_msg_q_msg_data (app_mq, msg);
325   clib_memset (evt, 0, sizeof (*evt));
326   evt->event_type = SESSION_CTRL_EVT_CONNECTED;
327   mp = (session_connected_msg_t *) evt->data;
328   clib_memset (mp, 0, sizeof (*mp));
329   mp->context = api_context;
330
331   if (is_fail)
332     goto done;
333
334   if (session_has_transport (s))
335     {
336       tc = session_get_transport (s);
337       if (!tc)
338         {
339           is_fail = 1;
340           goto done;
341         }
342
343       vpp_mq = session_main_get_vpp_event_queue (s->thread_index);
344       mp->handle = session_handle (s);
345       mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
346
347       session_get_endpoint (s, &mp->lcl, 1 /* is_lcl */ );
348
349       mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
350       mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
351       mp->segment_handle = session_segment_handle (s);
352     }
353   else
354     {
355       ct_connection_t *cct;
356       session_t *ss;
357
358       cct = (ct_connection_t *) session_get_transport (s);
359       mp->handle = session_handle (s);
360       mp->lcl.port = cct->c_lcl_port;
361       mp->lcl.is_ip4 = cct->c_is_ip4;
362       vpp_mq = session_main_get_vpp_event_queue (0);
363       mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
364       mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
365       mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
366       mp->segment_handle = session_segment_handle (s);
367       ss = ct_session_get_peer (s);
368       mp->ct_rx_fifo = pointer_to_uword (ss->tx_fifo);
369       mp->ct_tx_fifo = pointer_to_uword (ss->rx_fifo);
370       mp->ct_segment_handle = session_segment_handle (ss);
371     }
372
373 done:
374   mp->retval = is_fail ?
375     clib_host_to_net_u32 (VNET_API_ERROR_SESSION_CONNECT) : 0;
376
377   svm_msg_q_add_and_unlock (app_mq, msg);
378   return 0;
379 }
380
381 static int
382 mq_send_session_bound_cb (u32 app_wrk_index, u32 api_context,
383                           session_handle_t handle, int rv)
384 {
385   svm_msg_q_msg_t _msg, *msg = &_msg;
386   svm_msg_q_t *app_mq, *vpp_evt_q;
387   transport_endpoint_t tep;
388   session_bound_msg_t *mp;
389   app_worker_t *app_wrk;
390   session_event_t *evt;
391   app_listener_t *al;
392   session_t *ls = 0;
393   app_wrk = app_worker_get (app_wrk_index);
394   app_mq = app_wrk->event_queue;
395   if (!app_mq)
396     {
397       clib_warning ("app %u with api index: %u not attached",
398                     app_wrk->app_index, app_wrk->api_client_index);
399       return -1;
400     }
401
402   if (mq_try_lock_and_alloc_msg (app_mq, msg))
403     return -1;
404
405   evt = svm_msg_q_msg_data (app_mq, msg);
406   clib_memset (evt, 0, sizeof (*evt));
407   evt->event_type = SESSION_CTRL_EVT_BOUND;
408   mp = (session_bound_msg_t *) evt->data;
409   mp->context = api_context;
410
411   if (rv)
412     goto done;
413
414   mp->handle = handle;
415   al = app_listener_get_w_handle (handle);
416   if (al->session_index != SESSION_INVALID_INDEX)
417     ls = app_listener_get_session (al);
418   else
419     ls = app_listener_get_local_session (al);
420
421   session_get_endpoint (ls, &tep, 1 /* is_lcl */ );
422   mp->lcl_port = tep.port;
423   mp->lcl_is_ip4 = tep.is_ip4;
424   clib_memcpy_fast (mp->lcl_ip, &tep.ip, sizeof (tep.ip));
425
426   vpp_evt_q = session_main_get_vpp_event_queue (0);
427   mp->vpp_evt_q = pointer_to_uword (vpp_evt_q);
428
429   if (session_transport_service_type (ls) == TRANSPORT_SERVICE_CL)
430     {
431       mp->rx_fifo = pointer_to_uword (ls->rx_fifo);
432       mp->tx_fifo = pointer_to_uword (ls->tx_fifo);
433     }
434
435 done:
436   mp->retval = rv;
437   svm_msg_q_add_and_unlock (app_mq, msg);
438   return 0;
439 }
440
441 static session_cb_vft_t session_mq_cb_vft = {
442   .session_accept_callback = mq_send_session_accepted_cb,
443   .session_disconnect_callback = mq_send_session_disconnected_cb,
444   .session_connected_callback = mq_send_session_connected_cb,
445   .session_reset_callback = mq_send_session_reset_cb,
446   .add_segment_callback = send_add_segment_callback,
447   .del_segment_callback = send_del_segment_callback,
448 };
449
450 static void
451 vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
452 {
453   vl_api_session_enable_disable_reply_t *rmp;
454   vlib_main_t *vm = vlib_get_main ();
455   int rv = 0;
456
457   vnet_session_enable_disable (vm, mp->is_enable);
458   REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
459 }
460
461 static void
462 vl_api_application_attach_t_handler (vl_api_application_attach_t * mp)
463 {
464   int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
465   vl_api_application_attach_reply_t *rmp;
466   ssvm_private_t *segp, *evt_q_segment;
467   vnet_app_attach_args_t _a, *a = &_a;
468   vl_api_registration_t *reg;
469   u8 fd_flags = 0;
470
471   reg = vl_api_client_index_to_registration (mp->client_index);
472   if (!reg)
473     return;
474
475   if (session_main_is_enabled () == 0)
476     {
477       rv = VNET_API_ERROR_FEATURE_DISABLED;
478       goto done;
479     }
480
481   STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
482                  sizeof (mp->options),
483                  "Out of options, fix api message definition");
484
485   clib_memset (a, 0, sizeof (*a));
486   a->api_client_index = mp->client_index;
487   a->options = mp->options;
488   a->session_cb_vft = &session_mq_cb_vft;
489   if (mp->namespace_id_len > 64)
490     {
491       rv = VNET_API_ERROR_INVALID_VALUE;
492       goto done;
493     }
494
495   if (mp->namespace_id_len)
496     {
497       vec_validate (a->namespace_id, mp->namespace_id_len - 1);
498       clib_memcpy_fast (a->namespace_id, mp->namespace_id,
499                         mp->namespace_id_len);
500     }
501
502   if ((rv = vnet_application_attach (a)))
503     {
504       clib_warning ("attach returned: %d", rv);
505       vec_free (a->namespace_id);
506       goto done;
507     }
508   vec_free (a->namespace_id);
509
510   /* Send event queues segment */
511   if ((evt_q_segment = session_main_get_evt_q_segment ()))
512     {
513       fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
514       fds[n_fds] = evt_q_segment->fd;
515       n_fds += 1;
516     }
517   /* Send fifo segment fd if needed */
518   if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
519     {
520       fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
521       fds[n_fds] = a->segment->fd;
522       n_fds += 1;
523     }
524   if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
525     {
526       fd_flags |= SESSION_FD_F_MQ_EVENTFD;
527       fds[n_fds] = svm_msg_q_get_producer_eventfd (a->app_evt_q);
528       n_fds += 1;
529     }
530
531 done:
532
533   /* *INDENT-OFF* */
534   REPLY_MACRO2 (VL_API_APPLICATION_ATTACH_REPLY, ({
535     if (!rv)
536       {
537         segp = a->segment;
538         rmp->app_index = clib_host_to_net_u32 (a->app_index);
539         rmp->segment_name_length = 0;
540         rmp->segment_size = segp->ssvm_size;
541         if (vec_len (segp->name))
542           {
543             memcpy (rmp->segment_name, segp->name, vec_len (segp->name));
544             rmp->segment_name_length = vec_len (segp->name);
545           }
546         rmp->app_event_queue_address = pointer_to_uword (a->app_evt_q);
547         rmp->n_fds = n_fds;
548         rmp->fd_flags = fd_flags;
549         rmp->segment_handle = clib_host_to_net_u64 (a->segment_handle);
550       }
551   }));
552   /* *INDENT-ON* */
553
554   if (n_fds)
555     session_send_fds (reg, fds, n_fds);
556 }
557
558 static void
559 vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
560 {
561   vl_api_application_detach_reply_t *rmp;
562   int rv = VNET_API_ERROR_INVALID_VALUE_2;
563   vnet_app_detach_args_t _a, *a = &_a;
564   application_t *app;
565
566   if (session_main_is_enabled () == 0)
567     {
568       rv = VNET_API_ERROR_FEATURE_DISABLED;
569       goto done;
570     }
571
572   app = application_lookup (mp->client_index);
573   if (app)
574     {
575       a->app_index = app->app_index;
576       a->api_client_index = mp->client_index;
577       rv = vnet_application_detach (a);
578     }
579
580 done:
581   REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
582 }
583
584 static void
585 vl_api_bind_uri_t_handler (vl_api_bind_uri_t * mp)
586 {
587   vl_api_bind_uri_reply_t *rmp;
588   vnet_listen_args_t _a, *a = &_a;
589   application_t *app = 0;
590   app_worker_t *app_wrk;
591   int rv;
592
593   if (session_main_is_enabled () == 0)
594     {
595       rv = VNET_API_ERROR_FEATURE_DISABLED;
596       goto done;
597     }
598
599   app = application_lookup (mp->client_index);
600   if (app)
601     {
602       clib_memset (a, 0, sizeof (*a));
603       a->uri = (char *) mp->uri;
604       a->app_index = app->app_index;
605       rv = vnet_bind_uri (a);
606     }
607   else
608     {
609       rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
610     }
611
612 done:
613
614   REPLY_MACRO (VL_API_BIND_URI_REPLY);
615
616   if (app)
617     {
618       app_wrk = application_get_worker (app, 0);
619       mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle,
620                                 rv);
621     }
622 }
623
624 static void
625 vl_api_unbind_uri_t_handler (vl_api_unbind_uri_t * mp)
626 {
627   vl_api_unbind_uri_reply_t *rmp;
628   application_t *app;
629   vnet_unlisten_args_t _a, *a = &_a;
630   int rv;
631
632   if (session_main_is_enabled () == 0)
633     {
634       rv = VNET_API_ERROR_FEATURE_DISABLED;
635       goto done;
636     }
637
638   app = application_lookup (mp->client_index);
639   if (app)
640     {
641       a->uri = (char *) mp->uri;
642       a->app_index = app->app_index;
643       rv = vnet_unbind_uri (a);
644     }
645   else
646     {
647       rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
648     }
649
650 done:
651   REPLY_MACRO (VL_API_UNBIND_URI_REPLY);
652 }
653
654 static void
655 vl_api_connect_uri_t_handler (vl_api_connect_uri_t * mp)
656 {
657   vl_api_connect_uri_reply_t *rmp;
658   vnet_connect_args_t _a, *a = &_a;
659   application_t *app;
660   int rv = 0;
661
662   if (session_main_is_enabled () == 0)
663     {
664       rv = VNET_API_ERROR_FEATURE_DISABLED;
665       goto done;
666     }
667
668   app = application_lookup (mp->client_index);
669   if (app)
670     {
671       clib_memset (a, 0, sizeof (*a));
672       a->uri = (char *) mp->uri;
673       a->api_context = mp->context;
674       a->app_index = app->app_index;
675       if ((rv = vnet_connect_uri (a)))
676         clib_warning ("connect_uri returned: %d", rv);
677     }
678   else
679     {
680       rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
681     }
682
683   /*
684    * Don't reply to stream (tcp) connects. The reply will come once
685    * the connection is established. In case of the redirects, the reply
686    * will come from the server app.
687    */
688   if (rv == 0)
689     return;
690
691 done:
692   REPLY_MACRO (VL_API_CONNECT_URI_REPLY);
693 }
694
695 static void
696 vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
697 {
698   vl_api_disconnect_session_reply_t *rmp;
699   vnet_disconnect_args_t _a, *a = &_a;
700   application_t *app;
701   int rv = 0;
702
703   if (session_main_is_enabled () == 0)
704     {
705       rv = VNET_API_ERROR_FEATURE_DISABLED;
706       goto done;
707     }
708
709   app = application_lookup (mp->client_index);
710   if (app)
711     {
712       a->handle = mp->handle;
713       a->app_index = app->app_index;
714       rv = vnet_disconnect_session (a);
715     }
716   else
717     {
718       rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
719     }
720
721 done:
722   REPLY_MACRO2 (VL_API_DISCONNECT_SESSION_REPLY, rmp->handle = mp->handle);
723 }
724
725 static void
726 vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
727                                            mp)
728 {
729   vnet_disconnect_args_t _a, *a = &_a;
730   application_t *app;
731
732   /* Client objected to disconnecting the session, log and continue */
733   if (mp->retval)
734     {
735       clib_warning ("client retval %d", mp->retval);
736       return;
737     }
738
739   /* Disconnect has been confirmed. Confirm close to transport */
740   app = application_lookup (mp->context);
741   if (app)
742     {
743       a->handle = mp->handle;
744       a->app_index = app->app_index;
745       vnet_disconnect_session (a);
746     }
747 }
748
749 static void
750 vl_api_map_another_segment_reply_t_handler (vl_api_map_another_segment_reply_t
751                                             * mp)
752 {
753   clib_warning ("not implemented");
754 }
755
756 static void
757 vl_api_bind_sock_t_handler (vl_api_bind_sock_t * mp)
758 {
759   vnet_listen_args_t _a, *a = &_a;
760   vl_api_bind_sock_reply_t *rmp;
761   application_t *app = 0;
762   app_worker_t *app_wrk;
763   ip46_address_t *ip46;
764   int rv = 0;
765
766   if (session_main_is_enabled () == 0)
767     {
768       rv = VNET_API_ERROR_FEATURE_DISABLED;
769       goto done;
770     }
771
772   app = application_lookup (mp->client_index);
773   if (!app)
774     {
775       rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
776       goto done;
777     }
778
779   ip46 = (ip46_address_t *) mp->ip;
780   clib_memset (a, 0, sizeof (*a));
781   a->sep.is_ip4 = mp->is_ip4;
782   a->sep.ip = *ip46;
783   a->sep.port = mp->port;
784   a->sep.fib_index = mp->vrf;
785   a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
786   a->sep.transport_proto = mp->proto;
787   a->app_index = app->app_index;
788   a->wrk_map_index = mp->wrk_index;
789
790   if ((rv = vnet_listen (a)))
791     clib_warning ("listen returned: %d", rv);
792
793 done:
794   /* Actual reply sent only over mq */
795   REPLY_MACRO (VL_API_BIND_SOCK_REPLY);
796
797   if (app)
798     {
799       app_wrk = application_get_worker (app, mp->wrk_index);
800       mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle,
801                                 rv);
802     }
803 }
804
805 static void
806 vl_api_unbind_sock_t_handler (vl_api_unbind_sock_t * mp)
807 {
808   vl_api_unbind_sock_reply_t *rmp;
809   vnet_unlisten_args_t _a, *a = &_a;
810   app_worker_t *app_wrk;
811   application_t *app = 0;
812   int rv = 0;
813
814   if (session_main_is_enabled () == 0)
815     {
816       rv = VNET_API_ERROR_FEATURE_DISABLED;
817       goto done;
818     }
819
820   app = application_lookup (mp->client_index);
821   if (app)
822     {
823       a->app_index = app->app_index;
824       a->handle = mp->handle;
825       a->wrk_map_index = mp->wrk_index;
826       if ((rv = vnet_unlisten (a)))
827         clib_warning ("unlisten returned: %d", rv);
828     }
829
830 done:
831   REPLY_MACRO (VL_API_UNBIND_SOCK_REPLY);
832
833   /*
834    * Send reply over msg queue
835    */
836   svm_msg_q_msg_t _msg, *msg = &_msg;
837   session_unlisten_reply_msg_t *ump;
838   svm_msg_q_t *app_mq;
839   session_event_t *evt;
840
841   if (!app)
842     return;
843
844   app_wrk = application_get_worker (app, a->wrk_map_index);
845   if (!app_wrk)
846     return;
847
848   app_mq = app_wrk->event_queue;
849   if (mq_try_lock_and_alloc_msg (app_mq, msg))
850     return;
851
852   evt = svm_msg_q_msg_data (app_mq, msg);
853   clib_memset (evt, 0, sizeof (*evt));
854   evt->event_type = SESSION_CTRL_EVT_UNLISTEN_REPLY;
855   ump = (session_unlisten_reply_msg_t *) evt->data;
856   ump->context = mp->context;
857   ump->handle = mp->handle;
858   ump->retval = rv;
859   svm_msg_q_add_and_unlock (app_mq, msg);
860 }
861
862 static void
863 vl_api_connect_sock_t_handler (vl_api_connect_sock_t * mp)
864 {
865   vl_api_connect_sock_reply_t *rmp;
866   vnet_connect_args_t _a, *a = &_a;
867   application_t *app = 0;
868   int rv = 0;
869
870   if (session_main_is_enabled () == 0)
871     {
872       rv = VNET_API_ERROR_FEATURE_DISABLED;
873       goto done;
874     }
875
876   app = application_lookup (mp->client_index);
877   if (app)
878     {
879       svm_queue_t *client_q;
880       ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
881
882       clib_memset (a, 0, sizeof (*a));
883       client_q = vl_api_client_index_to_input_queue (mp->client_index);
884       mp->client_queue_address = pointer_to_uword (client_q);
885       a->sep.is_ip4 = mp->is_ip4;
886       a->sep.ip = *ip46;
887       a->sep.port = mp->port;
888       a->sep.transport_proto = mp->proto;
889       a->sep.peer.fib_index = mp->vrf;
890       a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
891       a->sep_ext.transport_opts = mp->transport_opts;
892       if (mp->hostname_len)
893         {
894           vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
895           clib_memcpy_fast (a->sep_ext.hostname, mp->hostname,
896                             mp->hostname_len);
897         }
898       a->api_context = mp->context;
899       a->app_index = app->app_index;
900       a->wrk_map_index = mp->wrk_index;
901       if ((rv = vnet_connect (a)))
902         clib_warning ("connect returned: %U", format_vnet_api_errno, rv);
903       vec_free (a->sep_ext.hostname);
904     }
905   else
906     {
907       rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
908     }
909
910   if (rv == 0)
911     return;
912
913   /* Got some error, relay it */
914
915 done:
916   REPLY_MACRO (VL_API_CONNECT_SOCK_REPLY);
917
918   if (app)
919     {
920       app_worker_t *app_wrk = application_get_worker (app, mp->wrk_index);
921       mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, 1);
922     }
923 }
924
925 static void
926 vl_api_app_worker_add_del_t_handler (vl_api_app_worker_add_del_t * mp)
927 {
928   int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
929   vl_api_app_worker_add_del_reply_t *rmp;
930   vl_api_registration_t *reg;
931   application_t *app;
932   u8 fd_flags = 0;
933
934   if (!session_main_is_enabled ())
935     {
936       rv = VNET_API_ERROR_FEATURE_DISABLED;
937       goto done;
938     }
939
940   reg = vl_api_client_index_to_registration (mp->client_index);
941   if (!reg)
942     return;
943
944   app = application_get_if_valid (clib_net_to_host_u32 (mp->app_index));
945   if (!app)
946     {
947       rv = VNET_API_ERROR_INVALID_VALUE;
948       goto done;
949     }
950
951   vnet_app_worker_add_del_args_t args = {
952     .app_index = app->app_index,
953     .wrk_map_index = clib_net_to_host_u32 (mp->wrk_index),
954     .api_client_index = mp->client_index,
955     .is_add = mp->is_add
956   };
957   rv = vnet_app_worker_add_del (&args);
958   if (rv)
959     {
960       clib_warning ("app worker add/del returned: %d", rv);
961       goto done;
962     }
963
964   if (!mp->is_add)
965     goto done;
966
967   /* Send fifo segment fd if needed */
968   if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
969     {
970       fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
971       fds[n_fds] = args.segment->fd;
972       n_fds += 1;
973     }
974   if (application_segment_manager_properties (app)->use_mq_eventfd)
975     {
976       fd_flags |= SESSION_FD_F_MQ_EVENTFD;
977       fds[n_fds] = svm_msg_q_get_producer_eventfd (args.evt_q);
978       n_fds += 1;
979     }
980
981   /* *INDENT-OFF* */
982 done:
983   REPLY_MACRO2 (VL_API_APP_WORKER_ADD_DEL_REPLY, ({
984     rmp->is_add = mp->is_add;
985     rmp->wrk_index = clib_host_to_net_u32 (args.wrk_map_index);
986     rmp->segment_handle = clib_host_to_net_u64 (args.segment_handle);
987     if (!rv && mp->is_add)
988       {
989         if (vec_len (args.segment->name))
990           {
991             memcpy (rmp->segment_name, args.segment->name,
992                     vec_len (args.segment->name));
993             rmp->segment_name_length = vec_len (args.segment->name);
994           }
995         rmp->app_event_queue_address = pointer_to_uword (args.evt_q);
996         rmp->n_fds = n_fds;
997         rmp->fd_flags = fd_flags;
998       }
999   }));
1000   /* *INDENT-ON* */
1001
1002   if (n_fds)
1003     session_send_fds (reg, fds, n_fds);
1004 }
1005
1006 static void
1007 vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
1008 {
1009   vl_api_app_namespace_add_del_reply_t *rmp;
1010   u32 appns_index = 0;
1011   u8 *ns_id = 0;
1012   int rv = 0;
1013   if (!session_main_is_enabled ())
1014     {
1015       rv = VNET_API_ERROR_FEATURE_DISABLED;
1016       goto done;
1017     }
1018
1019   if (mp->namespace_id_len > ARRAY_LEN (mp->namespace_id))
1020     {
1021       rv = VNET_API_ERROR_INVALID_VALUE;
1022       goto done;
1023     }
1024
1025   vec_validate (ns_id, mp->namespace_id_len - 1);
1026   clib_memcpy_fast (ns_id, mp->namespace_id, mp->namespace_id_len);
1027   vnet_app_namespace_add_del_args_t args = {
1028     .ns_id = ns_id,
1029     .secret = clib_net_to_host_u64 (mp->secret),
1030     .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
1031     .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
1032     .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
1033     .is_add = 1
1034   };
1035   rv = vnet_app_namespace_add_del (&args);
1036   if (!rv)
1037     {
1038       appns_index = app_namespace_index_from_id (ns_id);
1039       if (appns_index == APP_NAMESPACE_INVALID_INDEX)
1040         {
1041           clib_warning ("app ns lookup failed");
1042           rv = VNET_API_ERROR_UNSPECIFIED;
1043         }
1044     }
1045   vec_free (ns_id);
1046
1047   /* *INDENT-OFF* */
1048 done:
1049   REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
1050     if (!rv)
1051       rmp->appns_index = clib_host_to_net_u32 (appns_index);
1052   }));
1053   /* *INDENT-ON* */
1054 }
1055
1056 static void
1057 vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp)
1058 {
1059   vl_api_session_rule_add_del_reply_t *rmp;
1060   session_rule_add_del_args_t args;
1061   session_rule_table_add_del_args_t *table_args = &args.table_args;
1062   u8 fib_proto;
1063   int rv = 0;
1064
1065   clib_memset (&args, 0, sizeof (args));
1066   fib_proto = mp->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
1067
1068   table_args->lcl.fp_len = mp->lcl_plen;
1069   table_args->lcl.fp_proto = fib_proto;
1070   table_args->rmt.fp_len = mp->rmt_plen;
1071   table_args->rmt.fp_proto = fib_proto;
1072   table_args->lcl_port = mp->lcl_port;
1073   table_args->rmt_port = mp->rmt_port;
1074   table_args->action_index = clib_net_to_host_u32 (mp->action_index);
1075   table_args->is_add = mp->is_add;
1076   mp->tag[sizeof (mp->tag) - 1] = 0;
1077   table_args->tag = format (0, "%s", mp->tag);
1078   args.appns_index = clib_net_to_host_u32 (mp->appns_index);
1079   args.scope = mp->scope;
1080   args.transport_proto = mp->transport_proto;
1081
1082   clib_memset (&table_args->lcl.fp_addr, 0, sizeof (table_args->lcl.fp_addr));
1083   clib_memset (&table_args->rmt.fp_addr, 0, sizeof (table_args->rmt.fp_addr));
1084   ip_set (&table_args->lcl.fp_addr, mp->lcl_ip, mp->is_ip4);
1085   ip_set (&table_args->rmt.fp_addr, mp->rmt_ip, mp->is_ip4);
1086   rv = vnet_session_rule_add_del (&args);
1087   if (rv)
1088     clib_warning ("rule add del returned: %d", rv);
1089   vec_free (table_args->tag);
1090   REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
1091 }
1092
1093 static void
1094 send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
1095                             u8 transport_proto, u32 appns_index, u8 * tag,
1096                             vl_api_registration_t * reg, u32 context)
1097 {
1098   vl_api_session_rules_details_t *rmp = 0;
1099   session_mask_or_match_4_t *match =
1100     (session_mask_or_match_4_t *) & rule->match;
1101   session_mask_or_match_4_t *mask =
1102     (session_mask_or_match_4_t *) & rule->mask;
1103
1104   rmp = vl_msg_api_alloc (sizeof (*rmp));
1105   clib_memset (rmp, 0, sizeof (*rmp));
1106   rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1107   rmp->context = context;
1108
1109   rmp->is_ip4 = 1;
1110   clib_memcpy_fast (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1111   clib_memcpy_fast (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
1112   rmp->lcl_plen = ip4_mask_to_preflen (&mask->lcl_ip);
1113   rmp->rmt_plen = ip4_mask_to_preflen (&mask->rmt_ip);
1114   rmp->lcl_port = match->lcl_port;
1115   rmp->rmt_port = match->rmt_port;
1116   rmp->action_index = clib_host_to_net_u32 (rule->action_index);
1117   rmp->scope =
1118     is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
1119   rmp->transport_proto = transport_proto;
1120   rmp->appns_index = clib_host_to_net_u32 (appns_index);
1121   if (tag)
1122     {
1123       clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
1124       rmp->tag[vec_len (tag)] = 0;
1125     }
1126
1127   vl_api_send_msg (reg, (u8 *) rmp);
1128 }
1129
1130 static void
1131 send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
1132                             u8 transport_proto, u32 appns_index, u8 * tag,
1133                             vl_api_registration_t * reg, u32 context)
1134 {
1135   vl_api_session_rules_details_t *rmp = 0;
1136   session_mask_or_match_6_t *match =
1137     (session_mask_or_match_6_t *) & rule->match;
1138   session_mask_or_match_6_t *mask =
1139     (session_mask_or_match_6_t *) & rule->mask;
1140
1141   rmp = vl_msg_api_alloc (sizeof (*rmp));
1142   clib_memset (rmp, 0, sizeof (*rmp));
1143   rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1144   rmp->context = context;
1145
1146   rmp->is_ip4 = 0;
1147   clib_memcpy_fast (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1148   clib_memcpy_fast (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
1149   rmp->lcl_plen = ip6_mask_to_preflen (&mask->lcl_ip);
1150   rmp->rmt_plen = ip6_mask_to_preflen (&mask->rmt_ip);
1151   rmp->lcl_port = match->lcl_port;
1152   rmp->rmt_port = match->rmt_port;
1153   rmp->action_index = clib_host_to_net_u32 (rule->action_index);
1154   rmp->scope =
1155     is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
1156   rmp->transport_proto = transport_proto;
1157   rmp->appns_index = clib_host_to_net_u32 (appns_index);
1158   if (tag)
1159     {
1160       clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
1161       rmp->tag[vec_len (tag)] = 0;
1162     }
1163
1164   vl_api_send_msg (reg, (u8 *) rmp);
1165 }
1166
1167 static void
1168 send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto,
1169                                   u8 tp, u8 is_local, u32 appns_index,
1170                                   vl_api_registration_t * reg, u32 context)
1171 {
1172   mma_rule_16_t *rule16;
1173   mma_rule_40_t *rule40;
1174   mma_rules_table_16_t *srt16;
1175   mma_rules_table_40_t *srt40;
1176   u32 ri;
1177
1178   if (is_local || fib_proto == FIB_PROTOCOL_IP4)
1179     {
1180       u8 *tag = 0;
1181       /* *INDENT-OFF* */
1182       srt16 = &srt->session_rules_tables_16;
1183       pool_foreach (rule16, srt16->rules, ({
1184         ri = mma_rules_table_rule_index_16 (srt16, rule16);
1185         tag = session_rules_table_rule_tag (srt, ri, 1);
1186         send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
1187                                     reg, context);
1188       }));
1189       /* *INDENT-ON* */
1190     }
1191   if (is_local || fib_proto == FIB_PROTOCOL_IP6)
1192     {
1193       u8 *tag = 0;
1194       /* *INDENT-OFF* */
1195       srt40 = &srt->session_rules_tables_40;
1196       pool_foreach (rule40, srt40->rules, ({
1197         ri = mma_rules_table_rule_index_40 (srt40, rule40);
1198         tag = session_rules_table_rule_tag (srt, ri, 1);
1199         send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
1200                                     reg, context);
1201       }));
1202       /* *INDENT-ON* */
1203     }
1204 }
1205
1206 static void
1207 vl_api_session_rules_dump_t_handler (vl_api_one_map_server_dump_t * mp)
1208 {
1209   vl_api_registration_t *reg;
1210   session_table_t *st;
1211   u8 tp;
1212
1213   reg = vl_api_client_index_to_registration (mp->client_index);
1214   if (!reg)
1215     return;
1216
1217   /* *INDENT-OFF* */
1218   session_table_foreach (st, ({
1219     for (tp = 0; tp < TRANSPORT_N_PROTO; tp++)
1220       {
1221         send_session_rules_table_details (&st->session_rules[tp],
1222                                           st->active_fib_proto, tp,
1223                                           st->is_local, st->appns_index, reg,
1224                                           mp->context);
1225       }
1226   }));
1227   /* *INDENT-ON* */
1228 }
1229
1230 static void
1231 vl_api_application_tls_cert_add_t_handler (vl_api_application_tls_cert_add_t *
1232                                            mp)
1233 {
1234   vl_api_app_namespace_add_del_reply_t *rmp;
1235   vnet_app_add_tls_cert_args_t _a, *a = &_a;
1236   clib_error_t *error;
1237   application_t *app;
1238   u32 cert_len;
1239   int rv = 0;
1240   if (!session_main_is_enabled ())
1241     {
1242       rv = VNET_API_ERROR_FEATURE_DISABLED;
1243       goto done;
1244     }
1245   if (!(app = application_lookup (mp->client_index)))
1246     {
1247       rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1248       goto done;
1249     }
1250   clib_memset (a, 0, sizeof (*a));
1251   a->app_index = app->app_index;
1252   cert_len = clib_net_to_host_u16 (mp->cert_len);
1253   if (cert_len > 10000)
1254     {
1255       rv = VNET_API_ERROR_INVALID_VALUE;
1256       goto done;
1257     }
1258   vec_validate (a->cert, cert_len);
1259   clib_memcpy_fast (a->cert, mp->cert, cert_len);
1260   if ((error = vnet_app_add_tls_cert (a)))
1261     {
1262       rv = clib_error_get_code (error);
1263       clib_error_report (error);
1264     }
1265   vec_free (a->cert);
1266 done:
1267   REPLY_MACRO (VL_API_APPLICATION_TLS_CERT_ADD_REPLY);
1268 }
1269
1270 static void
1271 vl_api_application_tls_key_add_t_handler (vl_api_application_tls_key_add_t *
1272                                           mp)
1273 {
1274   vl_api_app_namespace_add_del_reply_t *rmp;
1275   vnet_app_add_tls_key_args_t _a, *a = &_a;
1276   clib_error_t *error;
1277   application_t *app;
1278   u32 key_len;
1279   int rv = 0;
1280   if (!session_main_is_enabled ())
1281     {
1282       rv = VNET_API_ERROR_FEATURE_DISABLED;
1283       goto done;
1284     }
1285   if (!(app = application_lookup (mp->client_index)))
1286     {
1287       rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1288       goto done;
1289     }
1290   clib_memset (a, 0, sizeof (*a));
1291   a->app_index = app->app_index;
1292   key_len = clib_net_to_host_u16 (mp->key_len);
1293   if (key_len > 10000)
1294     {
1295       rv = VNET_API_ERROR_INVALID_VALUE;
1296       goto done;
1297     }
1298   vec_validate (a->key, key_len);
1299   clib_memcpy_fast (a->key, mp->key, key_len);
1300   if ((error = vnet_app_add_tls_key (a)))
1301     {
1302       rv = clib_error_get_code (error);
1303       clib_error_report (error);
1304     }
1305   vec_free (a->key);
1306 done:
1307   REPLY_MACRO (VL_API_APPLICATION_TLS_KEY_ADD_REPLY);
1308 }
1309
1310 static clib_error_t *
1311 application_reaper_cb (u32 client_index)
1312 {
1313   application_t *app = application_lookup (client_index);
1314   vnet_app_detach_args_t _a, *a = &_a;
1315   if (app)
1316     {
1317       a->app_index = app->app_index;
1318       a->api_client_index = client_index;
1319       vnet_application_detach (a);
1320     }
1321   return 0;
1322 }
1323
1324 VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
1325
1326 #define vl_msg_name_crc_list
1327 #include <vnet/vnet_all_api_h.h>
1328 #undef vl_msg_name_crc_list
1329
1330 static void
1331 setup_message_id_table (api_main_t * am)
1332 {
1333 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1334   foreach_vl_msg_name_crc_session;
1335 #undef _
1336 }
1337
1338 /*
1339  * session_api_hookup
1340  * Add uri's API message handlers to the table.
1341  * vlib has already mapped shared memory and
1342  * added the client registration handlers.
1343  * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
1344  */
1345 static clib_error_t *
1346 session_api_hookup (vlib_main_t * vm)
1347 {
1348   api_main_t *am = &api_main;
1349
1350 #define _(N,n)                                                  \
1351     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
1352                            vl_api_##n##_t_handler,              \
1353                            vl_noop_handler,                     \
1354                            vl_api_##n##_t_endian,               \
1355                            vl_api_##n##_t_print,                \
1356                            sizeof(vl_api_##n##_t), 1);
1357   foreach_session_api_msg;
1358 #undef _
1359
1360   /*
1361    * Messages which bounce off the data-plane to
1362    * an API client. Simply tells the message handling infra not
1363    * to free the message.
1364    *
1365    * Bounced message handlers MUST NOT block the data plane
1366    */
1367   am->message_bounce[VL_API_CONNECT_URI] = 1;
1368   am->message_bounce[VL_API_CONNECT_SOCK] = 1;
1369
1370   /*
1371    * Set up the (msg_name, crc, message-id) table
1372    */
1373   setup_message_id_table (am);
1374
1375   return 0;
1376 }
1377
1378 VLIB_API_INIT_FUNCTION (session_api_hookup);
1379
1380 /*
1381  * fd.io coding-style-patch-verification: ON
1382  *
1383  * Local Variables:
1384  * eval: (c-set-style "gnu")
1385  * End:
1386  */