FD.io VPP  v18.04-17-g3a0d853
Vector Packet Processing
session_api.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015-2016 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>
22 
23 #include <vnet/vnet_msg_enum.h>
24 
25 #define vl_typedefs /* define message structures */
26 #include <vnet/vnet_all_api_h.h>
27 #undef vl_typedefs
28 
29 #define vl_endianfun /* define message structures */
30 #include <vnet/vnet_all_api_h.h>
31 #undef vl_endianfun
32 
33 /* instantiate all the print functions we know about */
34 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
35 #define vl_printfun
36 #include <vnet/vnet_all_api_h.h>
37 #undef vl_printfun
38 
40 
41 #define foreach_session_api_msg \
42 _(MAP_ANOTHER_SEGMENT_REPLY, map_another_segment_reply) \
43 _(APPLICATION_ATTACH, application_attach) \
44 _(APPLICATION_DETACH, application_detach) \
45 _(BIND_URI, bind_uri) \
46 _(UNBIND_URI, unbind_uri) \
47 _(CONNECT_URI, connect_uri) \
48 _(DISCONNECT_SESSION, disconnect_session) \
49 _(DISCONNECT_SESSION_REPLY, disconnect_session_reply) \
50 _(ACCEPT_SESSION_REPLY, accept_session_reply) \
51 _(RESET_SESSION_REPLY, reset_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 
62 static int
64 {
65  clib_error_t *error;
67  {
68  clib_warning ("can't send memfd fd");
69  return -1;
70  }
71  error = vl_api_send_fd_msg (reg, sp->fd);
72  if (error)
73  {
74  clib_error_report (error);
75  return -1;
76  }
77  return 0;
78 }
79 
80 static int
81 send_add_segment_callback (u32 api_client_index, const ssvm_private_t * sp)
82 {
85 
86  reg = vl_mem_api_client_index_to_registration (api_client_index);
87  if (!reg)
88  {
89  clib_warning ("no registration: %u", api_client_index);
90  return -1;
91  }
92 
93  if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD
95  {
96  clib_warning ("can't send memfd fd");
97  return -1;
98  }
99 
100  mp = vl_msg_api_alloc_as_if_client (sizeof (*mp));
101  memset (mp, 0, sizeof (*mp));
102  mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MAP_ANOTHER_SEGMENT);
103  mp->segment_size = sp->ssvm_size;
104  strncpy ((char *) mp->segment_name, (char *) sp->name,
105  sizeof (mp->segment_name) - 1);
106 
107  vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
108 
109  if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
110  return session_send_memfd_fd (reg, sp);
111 
112  return 0;
113 }
114 
115 static int
116 send_del_segment_callback (u32 api_client_index, const ssvm_private_t * fs)
117 {
120 
121  reg = vl_mem_api_client_index_to_registration (api_client_index);
122  if (!reg)
123  {
124  clib_warning ("no registration: %u", api_client_index);
125  return -1;
126  }
127 
128  if (ssvm_type (fs) == SSVM_SEGMENT_MEMFD
130  {
131  clib_warning ("can't send memfd fd");
132  return -1;
133  }
134 
135  mp = vl_msg_api_alloc_as_if_client (sizeof (*mp));
136  memset (mp, 0, sizeof (*mp));
137  mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_UNMAP_SEGMENT);
138  strncpy ((char *) mp->segment_name, (char *) fs->name,
139  sizeof (mp->segment_name) - 1);
140 
141  vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
142 
143  if (ssvm_type (fs) == SSVM_SEGMENT_MEMFD)
144  return session_send_memfd_fd (reg, fs);
145 
146  return 0;
147 }
148 
149 static int
151 {
152  application_t *server = application_get (s->app_index);
153  transport_proto_vft_t *tp_vft;
157  stream_session_t *listener;
158  svm_queue_t *vpp_queue;
159 
160  reg = vl_mem_api_client_index_to_registration (server->api_client_index);
161  if (!reg)
162  {
163  clib_warning ("no registration: %u", server->api_client_index);
164  return -1;
165  }
166 
167  mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
168  memset (mp, 0, sizeof (*mp));
169 
170  mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_ACCEPT_SESSION);
171  mp->context = server->index;
172  mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
173  mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
174 
175  if (session_has_transport (s))
176  {
177  listener = listen_session_get (s->session_type, s->listener_index);
179  if (application_is_proxy (server))
180  {
181  listener =
184  if (listener)
186  }
187  vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
188  mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
189  mp->handle = session_handle (s);
191  tc = tp_vft->get_connection (s->connection_index, s->thread_index);
192  mp->port = tc->rmt_port;
193  mp->is_ip4 = tc->is_ip4;
194  clib_memcpy (&mp->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
195  }
196  else
197  {
198  local_session_t *ls = (local_session_t *) s;
199  local_session_t *ll;
201  {
203  ls->listener_index);
205  mp->is_ip4 = session_type_is_ip4 (listener->session_type);
206  }
207  else
208  {
210  ls->listener_index);
211  if (ll->transport_listener_index != ~0)
212  {
216  }
217  else
218  {
220  }
222  }
224  mp->port = ls->port;
227  }
228  vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
229 
230  return 0;
231 }
232 
233 void
235 {
236  application_t *app = application_get (app_index);
239 
240  reg = vl_mem_api_client_index_to_registration (app->api_client_index);
241  if (!reg)
242  {
243  clib_warning ("no registration: %u", app->api_client_index);
244  return;
245  }
246 
247  mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
248  memset (mp, 0, sizeof (*mp));
249  mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_DISCONNECT_SESSION);
251  mp->context = app->api_client_index;
252  vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
253 }
254 
255 static void
257 {
258  application_t *app = application_get (s->app_index);
261 
262  reg = vl_mem_api_client_index_to_registration (app->api_client_index);
263  if (!reg)
264  {
265  clib_warning ("no registration: %u", app->api_client_index);
266  return;
267  }
268 
269  mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
270  memset (mp, 0, sizeof (*mp));
271  mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_DISCONNECT_SESSION);
272  mp->handle = session_handle (s);
273  mp->context = app->api_client_index;
274  vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
275 }
276 
277 static void
279 {
280  application_t *app = application_get (s->app_index);
283 
284  reg = vl_mem_api_client_index_to_registration (app->api_client_index);
285  if (!reg)
286  {
287  clib_warning ("no registration: %u", app->api_client_index);
288  return;
289  }
290 
291  mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
292  memset (mp, 0, sizeof (*mp));
293  mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_RESET_SESSION);
294  mp->handle = session_handle (s);
295  vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
296 }
297 
298 int
299 send_session_connected_callback (u32 app_index, u32 api_context,
300  stream_session_t * s, u8 is_fail)
301 {
305  svm_queue_t *vpp_queue;
306  application_t *app;
307 
308  app = application_get (app_index);
309  reg = vl_mem_api_client_index_to_registration (app->api_client_index);
310  if (!reg)
311  {
312  clib_warning ("no registration: %u", app->api_client_index);
313  return -1;
314  }
315 
316  mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
317  mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_CONNECT_SESSION_REPLY);
318  mp->context = api_context;
319 
320  if (is_fail)
321  goto done;
322 
323  if (session_has_transport (s))
324  {
325  tc = session_get_transport (s);
326  if (!tc)
327  {
328  is_fail = 1;
329  goto done;
330  }
331 
332  vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
333  mp->handle = session_handle (s);
334  mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
335  clib_memcpy (mp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
336  mp->is_ip4 = tc->is_ip4;
337  mp->lcl_port = tc->lcl_port;
338  mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
339  mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
340  }
341  else
342  {
343  local_session_t *ls = (local_session_t *) s;
345  mp->lcl_port = ls->port;
348  mp->server_rx_fifo = pointer_to_uword (s->server_tx_fifo);
349  mp->server_tx_fifo = pointer_to_uword (s->server_rx_fifo);
350  }
351 
352 done:
353  mp->retval = is_fail ?
354  clib_host_to_net_u32 (VNET_API_ERROR_SESSION_CONNECT) : 0;
355  vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
356  return 0;
357 }
358 
360  .session_accept_callback = send_session_accept_callback,
361  .session_disconnect_callback = send_session_disconnect_callback,
362  .session_connected_callback = send_session_connected_callback,
363  .session_reset_callback = send_session_reset_callback,
364  .add_segment_callback = send_add_segment_callback,
365  .del_segment_callback = send_del_segment_callback,
366 };
367 
368 static void
370 {
371  vl_api_session_enable_disable_reply_t *rmp;
373  int rv = 0;
374 
376  REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
377 }
378 
379 static void
381 {
383  ssvm_private_t *segp, *evt_q_segment;
384  vnet_app_attach_args_t _a, *a = &_a;
386  clib_error_t *error = 0;
387  int rv = 0;
388 
390  if (!reg)
391  return;
392 
393  if (session_manager_is_enabled () == 0)
394  {
395  rv = VNET_API_ERROR_FEATURE_DISABLED;
396  goto done;
397  }
398 
400  sizeof (mp->options),
401  "Out of options, fix api message definition");
402 
403  memset (a, 0, sizeof (*a));
404  a->api_client_index = mp->client_index;
405  a->options = mp->options;
406  a->session_cb_vft = &session_cb_vft;
407 
408  if (mp->namespace_id_len > 64)
409  {
410  rv = VNET_API_ERROR_INVALID_VALUE;
411  goto done;
412  }
413 
414  if (mp->namespace_id_len)
415  {
416  vec_validate (a->namespace_id, mp->namespace_id_len - 1);
417  clib_memcpy (a->namespace_id, mp->namespace_id, mp->namespace_id_len);
418  }
419 
420  if ((error = vnet_application_attach (a)))
421  {
422  rv = clib_error_get_code (error);
423  clib_error_report (error);
424  }
425  vec_free (a->namespace_id);
426 
427 done:
428 
429  /* *INDENT-OFF* */
430  REPLY_MACRO2 (VL_API_APPLICATION_ATTACH_REPLY, ({
431  if (!rv)
432  {
433  segp = a->segment;
434  rmp->segment_name_length = 0;
435  rmp->segment_size = segp->ssvm_size;
436  if (vec_len (segp->name))
437  {
438  memcpy (rmp->segment_name, segp->name, vec_len (segp->name));
439  rmp->segment_name_length = vec_len (segp->name);
440  }
441  rmp->app_event_queue_address = a->app_event_queue_address;
442  }
443  }));
444  /* *INDENT-ON* */
445 
446  if (rv)
447  return;
448 
449  /* Send fifo segment fd if needed */
450  if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
451  session_send_memfd_fd (reg, a->segment);
452  /* Send event queues segment */
453  if ((evt_q_segment = session_manager_get_evt_q_segment ()))
454  session_send_memfd_fd (reg, evt_q_segment);
455 }
456 
457 static void
459 {
460  vl_api_application_detach_reply_t *rmp;
461  int rv = VNET_API_ERROR_INVALID_VALUE_2;
462  vnet_app_detach_args_t _a, *a = &_a;
463  application_t *app;
464 
465  if (session_manager_is_enabled () == 0)
466  {
467  rv = VNET_API_ERROR_FEATURE_DISABLED;
468  goto done;
469  }
470 
471  app = application_lookup (mp->client_index);
472  if (app)
473  {
474  a->app_index = app->index;
475  rv = vnet_application_detach (a);
476  }
477 
478 done:
479  REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
480 }
481 
482 static void
484 {
485  vl_api_bind_uri_reply_t *rmp;
486  vnet_bind_args_t _a, *a = &_a;
487  application_t *app;
488  int rv;
489 
490  if (session_manager_is_enabled () == 0)
491  {
492  rv = VNET_API_ERROR_FEATURE_DISABLED;
493  goto done;
494  }
495 
496  app = application_lookup (mp->client_index);
497  if (app)
498  {
499  memset (a, 0, sizeof (*a));
500  a->uri = (char *) mp->uri;
501  a->app_index = app->index;
502  rv = vnet_bind_uri (a);
503  }
504  else
505  {
506  rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
507  }
508 
509 done:
510  REPLY_MACRO (VL_API_BIND_URI_REPLY);
511 }
512 
513 static void
515 {
516  vl_api_unbind_uri_reply_t *rmp;
517  application_t *app;
518  vnet_unbind_args_t _a, *a = &_a;
519  int rv;
520 
521  if (session_manager_is_enabled () == 0)
522  {
523  rv = VNET_API_ERROR_FEATURE_DISABLED;
524  goto done;
525  }
526 
527  app = application_lookup (mp->client_index);
528  if (app)
529  {
530  a->uri = (char *) mp->uri;
531  a->app_index = app->index;
532  rv = vnet_unbind_uri (a);
533  }
534  else
535  {
536  rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
537  }
538 
539 done:
540  REPLY_MACRO (VL_API_UNBIND_URI_REPLY);
541 }
542 
543 static void
545 {
547  vnet_connect_args_t _a, *a = &_a;
548  application_t *app;
549  clib_error_t *error = 0;
550  int rv = 0;
551 
552  if (session_manager_is_enabled () == 0)
553  {
554  rv = VNET_API_ERROR_FEATURE_DISABLED;
555  goto done;
556  }
557 
558  app = application_lookup (mp->client_index);
559  if (app)
560  {
561  a->uri = (char *) mp->uri;
562  a->api_context = mp->context;
563  a->app_index = app->index;
564  if ((error = vnet_connect_uri (a)))
565  {
566  rv = clib_error_get_code (error);
567  clib_error_report (error);
568  }
569  }
570  else
571  {
572  rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
573  }
574 
575  /*
576  * Don't reply to stream (tcp) connects. The reply will come once
577  * the connection is established. In case of the redirects, the reply
578  * will come from the server app.
579  */
580  if (rv == 0)
581  return;
582 
583 done:
584  /* *INDENT-OFF* */
585  REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
586  /* *INDENT-ON* */
587 }
588 
589 static void
591 {
593  vnet_disconnect_args_t _a, *a = &_a;
594  application_t *app;
595  int rv = 0;
596 
597  if (session_manager_is_enabled () == 0)
598  {
599  rv = VNET_API_ERROR_FEATURE_DISABLED;
600  goto done;
601  }
602 
603  app = application_lookup (mp->client_index);
604  if (app)
605  {
606  a->handle = mp->handle;
607  a->app_index = app->index;
608  rv = vnet_disconnect_session (a);
609  }
610  else
611  {
612  rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
613  }
614 
615 done:
616  REPLY_MACRO2 (VL_API_DISCONNECT_SESSION_REPLY, rmp->handle = mp->handle);
617 }
618 
619 static void
621  mp)
622 {
623  vnet_disconnect_args_t _a, *a = &_a;
624  application_t *app;
625 
626  /* Client objected to disconnecting the session, log and continue */
627  if (mp->retval)
628  {
629  clib_warning ("client retval %d", mp->retval);
630  return;
631  }
632 
633  /* Disconnect has been confirmed. Confirm close to transport */
634  app = application_lookup (mp->context);
635  if (app)
636  {
637  a->handle = mp->handle;
638  a->app_index = app->index;
640  }
641 }
642 
643 static void
645 {
646  application_t *app;
647  stream_session_t *s;
648  u32 index, thread_index;
649 
650  app = application_lookup (mp->client_index);
651  if (!app)
652  return;
653 
654  session_parse_handle (mp->handle, &index, &thread_index);
655  s = session_get_if_valid (index, thread_index);
656  if (s == 0 || app->index != s->app_index)
657  {
658  clib_warning ("Invalid session!");
659  return;
660  }
661 
662  /* Client objected to resetting the session, log and continue */
663  if (mp->retval)
664  {
665  clib_warning ("client retval %d", mp->retval);
666  return;
667  }
668 
669  /* This comes as a response to a reset, transport only waiting for
670  * confirmation to remove connection state, no need to disconnect */
672 }
673 
674 static void
676 {
677  vnet_disconnect_args_t _a = { 0 }, *a = &_a;
678  local_session_t *ls;
679  stream_session_t *s;
680 
681  /* Server isn't interested, kill the session */
682  if (mp->retval)
683  {
684  a->app_index = mp->context;
685  a->handle = mp->handle;
687  return;
688  }
689 
691  {
693  if (!ls || ls->app_index != mp->context)
694  {
695  clib_warning ("server %u doesn't own local handle %llu",
696  mp->context, mp->handle);
697  return;
698  }
700  return;
702  }
703  else
704  {
706  if (!s)
707  {
708  clib_warning ("session doesn't exist");
709  return;
710  }
711  if (s->app_index != mp->context)
712  {
713  clib_warning ("app doesn't own session");
714  return;
715  }
716  s->session_state = SESSION_STATE_READY;
717  }
718 }
719 
720 static void
721 vl_api_map_another_segment_reply_t_handler (vl_api_map_another_segment_reply_t
722  * mp)
723 {
724  clib_warning ("not implemented");
725 }
726 
727 static void
729 {
731  vnet_bind_args_t _a, *a = &_a;
732  int rv = 0;
733  clib_error_t *error;
734  application_t *app = 0;
735  stream_session_t *s;
736  transport_connection_t *tc = 0;
737  ip46_address_t *ip46;
738 
739  if (session_manager_is_enabled () == 0)
740  {
741  rv = VNET_API_ERROR_FEATURE_DISABLED;
742  goto done;
743  }
744 
745  app = application_lookup (mp->client_index);
746  if (!app)
747  {
748  rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
749  goto done;
750  }
751 
752  ip46 = (ip46_address_t *) mp->ip;
753  memset (a, 0, sizeof (*a));
754  a->sep.is_ip4 = mp->is_ip4;
755  a->sep.ip = *ip46;
756  a->sep.port = mp->port;
757  a->sep.fib_index = mp->vrf;
758  a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
759  a->sep.transport_proto = mp->proto;
760  a->app_index = app->index;
761 
762  if ((error = vnet_bind (a)))
763  {
764  rv = clib_error_get_code (error);
765  clib_error_report (error);
766  }
767 
768 done:
769  /* *INDENT-OFF* */
770  REPLY_MACRO2 (VL_API_BIND_SOCK_REPLY,({
771  if (!rv)
772  {
773  rmp->handle = a->handle;
774  rmp->lcl_port = mp->port;
775  rmp->lcl_is_ip4 = mp->is_ip4;
776  if (app && application_has_global_scope (app))
777  {
778  s = listen_session_get_from_handle (a->handle);
780  rmp->lcl_is_ip4 = tc->is_ip4;
781  clib_memcpy (rmp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
782  }
783  }
784  }));
785  /* *INDENT-ON* */
786 }
787 
788 static void
790 {
791  vl_api_unbind_sock_reply_t *rmp;
792  vnet_unbind_args_t _a, *a = &_a;
793  application_t *app;
794  clib_error_t *error;
795  int rv = 0;
796 
797  if (session_manager_is_enabled () == 0)
798  {
799  rv = VNET_API_ERROR_FEATURE_DISABLED;
800  goto done;
801  }
802 
803  app = application_lookup (mp->client_index);
804  if (app)
805  {
806  a->app_index = app->index;
807  a->handle = mp->handle;
808  if ((error = vnet_unbind (a)))
809  {
810  rv = clib_error_get_code (error);
811  clib_error_report (error);
812  }
813  }
814 
815 done:
816  REPLY_MACRO (VL_API_UNBIND_SOCK_REPLY);
817 }
818 
819 static void
821 {
823  vnet_connect_args_t _a, *a = &_a;
824  application_t *app;
825  clib_error_t *error = 0;
826  int rv = 0;
827 
828  if (session_manager_is_enabled () == 0)
829  {
830  rv = VNET_API_ERROR_FEATURE_DISABLED;
831  goto done;
832  }
833 
834  app = application_lookup (mp->client_index);
835  if (app)
836  {
837  svm_queue_t *client_q;
838  ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
839 
840  memset (a, 0, sizeof (*a));
842  mp->client_queue_address = pointer_to_uword (client_q);
843  a->sep.is_ip4 = mp->is_ip4;
844  a->sep.ip = *ip46;
845  a->sep.port = mp->port;
846  a->sep.transport_proto = mp->proto;
847  a->sep.fib_index = mp->vrf;
848  a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
849  if (mp->hostname_len)
850  {
851  vec_validate (a->sep.hostname, mp->hostname_len - 1);
852  clib_memcpy (a->sep.hostname, mp->hostname, mp->hostname_len);
853  }
854  a->api_context = mp->context;
855  a->app_index = app->index;
856  if ((error = vnet_connect (a)))
857  {
858  rv = clib_error_get_code (error);
859  clib_error_report (error);
860  }
861  vec_free (a->sep.hostname);
862  }
863  else
864  {
865  rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
866  }
867 
868  if (rv == 0)
869  return;
870 
871  /* Got some error, relay it */
872 
873 done:
874  REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
875 }
876 
877 static void
879 {
881  clib_error_t *error = 0;
882  u32 appns_index = 0;
883  u8 *ns_id = 0;
884  int rv = 0;
886  {
887  rv = VNET_API_ERROR_FEATURE_DISABLED;
888  goto done;
889  }
890 
891  if (mp->namespace_id_len > ARRAY_LEN (mp->namespace_id))
892  {
893  rv = VNET_API_ERROR_INVALID_VALUE;
894  goto done;
895  }
896 
897  vec_validate (ns_id, mp->namespace_id_len - 1);
898  clib_memcpy (ns_id, mp->namespace_id, mp->namespace_id_len);
900  .ns_id = ns_id,
901  .secret = clib_net_to_host_u64 (mp->secret),
902  .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
903  .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
904  .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
905  .is_add = 1
906  };
907  error = vnet_app_namespace_add_del (&args);
908  if (error)
909  {
910  rv = clib_error_get_code (error);
911  clib_error_report (error);
912  }
913  else
914  {
915  appns_index = app_namespace_index_from_id (ns_id);
916  if (appns_index == APP_NAMESPACE_INVALID_INDEX)
917  {
918  clib_warning ("app ns lookup failed");
919  rv = VNET_API_ERROR_UNSPECIFIED;
920  }
921  }
922  vec_free (ns_id);
923 
924  /* *INDENT-OFF* */
925 done:
926  REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
927  if (!rv)
928  rmp->appns_index = clib_host_to_net_u32 (appns_index);
929  }));
930  /* *INDENT-ON* */
931 }
932 
933 static void
935 {
936  vl_api_session_rule_add_del_reply_t *rmp;
938  session_rule_table_add_del_args_t *table_args = &args.table_args;
939  clib_error_t *error;
940  u8 fib_proto;
941  int rv = 0;
942 
943  memset (&args, 0, sizeof (args));
944  fib_proto = mp->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
945 
946  table_args->lcl.fp_len = mp->lcl_plen;
947  table_args->lcl.fp_proto = fib_proto;
948  table_args->rmt.fp_len = mp->rmt_plen;
949  table_args->rmt.fp_proto = fib_proto;
950  table_args->lcl_port = mp->lcl_port;
951  table_args->rmt_port = mp->rmt_port;
952  table_args->action_index = clib_net_to_host_u32 (mp->action_index);
953  table_args->is_add = mp->is_add;
954  mp->tag[sizeof (mp->tag) - 1] = 0;
955  table_args->tag = format (0, "%s", mp->tag);
956  args.appns_index = clib_net_to_host_u32 (mp->appns_index);
957  args.scope = mp->scope;
958  args.transport_proto = mp->transport_proto;
959 
960  memset (&table_args->lcl.fp_addr, 0, sizeof (table_args->lcl.fp_addr));
961  memset (&table_args->rmt.fp_addr, 0, sizeof (table_args->rmt.fp_addr));
962  ip_set (&table_args->lcl.fp_addr, mp->lcl_ip, mp->is_ip4);
963  ip_set (&table_args->rmt.fp_addr, mp->rmt_ip, mp->is_ip4);
964  error = vnet_session_rule_add_del (&args);
965  if (error)
966  {
967  rv = clib_error_get_code (error);
968  clib_error_report (error);
969  }
970  vec_free (table_args->tag);
971  REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
972 }
973 
974 static void
975 send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
976  u8 transport_proto, u32 appns_index, u8 * tag,
977  vl_api_registration_t * reg, u32 context)
978 {
980  session_mask_or_match_4_t *match =
981  (session_mask_or_match_4_t *) & rule->match;
982  session_mask_or_match_4_t *mask =
983  (session_mask_or_match_4_t *) & rule->mask;
984 
985  rmp = vl_msg_api_alloc (sizeof (*rmp));
986  memset (rmp, 0, sizeof (*rmp));
987  rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
988  rmp->context = context;
989 
990  rmp->is_ip4 = 1;
991  clib_memcpy (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
992  clib_memcpy (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
993  rmp->lcl_plen = ip4_mask_to_preflen (&mask->lcl_ip);
994  rmp->rmt_plen = ip4_mask_to_preflen (&mask->rmt_ip);
995  rmp->lcl_port = match->lcl_port;
996  rmp->rmt_port = match->rmt_port;
997  rmp->action_index = clib_host_to_net_u32 (rule->action_index);
998  rmp->scope =
1000  rmp->transport_proto = transport_proto;
1001  rmp->appns_index = clib_host_to_net_u32 (appns_index);
1002  if (tag)
1003  {
1004  clib_memcpy (rmp->tag, tag, vec_len (tag));
1005  rmp->tag[vec_len (tag)] = 0;
1006  }
1007 
1008  vl_api_send_msg (reg, (u8 *) rmp);
1009 }
1010 
1011 static void
1012 send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
1013  u8 transport_proto, u32 appns_index, u8 * tag,
1014  vl_api_registration_t * reg, u32 context)
1015 {
1017  session_mask_or_match_6_t *match =
1018  (session_mask_or_match_6_t *) & rule->match;
1019  session_mask_or_match_6_t *mask =
1020  (session_mask_or_match_6_t *) & rule->mask;
1021 
1022  rmp = vl_msg_api_alloc (sizeof (*rmp));
1023  memset (rmp, 0, sizeof (*rmp));
1024  rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1025  rmp->context = context;
1026 
1027  rmp->is_ip4 = 0;
1028  clib_memcpy (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1029  clib_memcpy (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
1030  rmp->lcl_plen = ip6_mask_to_preflen (&mask->lcl_ip);
1031  rmp->rmt_plen = ip6_mask_to_preflen (&mask->rmt_ip);
1032  rmp->lcl_port = match->lcl_port;
1033  rmp->rmt_port = match->rmt_port;
1034  rmp->action_index = clib_host_to_net_u32 (rule->action_index);
1035  rmp->scope =
1037  rmp->transport_proto = transport_proto;
1038  rmp->appns_index = clib_host_to_net_u32 (appns_index);
1039  if (tag)
1040  {
1041  clib_memcpy (rmp->tag, tag, vec_len (tag));
1042  rmp->tag[vec_len (tag)] = 0;
1043  }
1044 
1045  vl_api_send_msg (reg, (u8 *) rmp);
1046 }
1047 
1048 static void
1050  u8 tp, u8 is_local, u32 appns_index,
1051  vl_api_registration_t * reg, u32 context)
1052 {
1053  mma_rule_16_t *rule16;
1054  mma_rule_40_t *rule40;
1055  mma_rules_table_16_t *srt16;
1056  mma_rules_table_40_t *srt40;
1057  u32 ri;
1058 
1059  if (is_local || fib_proto == FIB_PROTOCOL_IP4)
1060  {
1061  u8 *tag = 0;
1062  /* *INDENT-OFF* */
1063  srt16 = &srt->session_rules_tables_16;
1064  pool_foreach (rule16, srt16->rules, ({
1065  ri = mma_rules_table_rule_index_16 (srt16, rule16);
1066  tag = session_rules_table_rule_tag (srt, ri, 1);
1067  send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
1068  reg, context);
1069  }));
1070  /* *INDENT-ON* */
1071  }
1072  if (is_local || fib_proto == FIB_PROTOCOL_IP6)
1073  {
1074  u8 *tag = 0;
1075  /* *INDENT-OFF* */
1076  srt40 = &srt->session_rules_tables_40;
1077  pool_foreach (rule40, srt40->rules, ({
1078  ri = mma_rules_table_rule_index_40 (srt40, rule40);
1079  tag = session_rules_table_rule_tag (srt, ri, 1);
1080  send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
1081  reg, context);
1082  }));
1083  /* *INDENT-ON* */
1084  }
1085 }
1086 
1087 static void
1089 {
1090  vl_api_registration_t *reg;
1091  session_table_t *st;
1092  u8 tp;
1093 
1095  if (!reg)
1096  return;
1097 
1098  /* *INDENT-OFF* */
1099  session_table_foreach (st, ({
1100  for (tp = 0; tp < TRANSPORT_N_PROTO; tp++)
1101  {
1102  send_session_rules_table_details (&st->session_rules[tp],
1103  st->active_fib_proto, tp,
1104  st->is_local, st->appns_index, reg,
1105  mp->context);
1106  }
1107  }));
1108  /* *INDENT-ON* */
1109 }
1110 
1111 static void
1113  mp)
1114 {
1116  vnet_app_add_tls_cert_args_t _a, *a = &_a;
1117  clib_error_t *error;
1118  application_t *app;
1119  u32 cert_len;
1120  int rv = 0;
1122  {
1123  rv = VNET_API_ERROR_FEATURE_DISABLED;
1124  goto done;
1125  }
1126  if (!(app = application_lookup (mp->client_index)))
1127  {
1128  rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1129  goto done;
1130  }
1131  memset (a, 0, sizeof (*a));
1132  a->app_index = app->index;
1133  cert_len = clib_net_to_host_u16 (mp->cert_len);
1134  if (cert_len > 10000)
1135  {
1136  rv = VNET_API_ERROR_INVALID_VALUE;
1137  goto done;
1138  }
1139  vec_validate (a->cert, cert_len);
1140  clib_memcpy (a->cert, mp->cert, cert_len);
1141  if ((error = vnet_app_add_tls_cert (a)))
1142  {
1143  rv = clib_error_get_code (error);
1144  clib_error_report (error);
1145  }
1146  vec_free (a->cert);
1147 done:
1148  REPLY_MACRO (VL_API_APPLICATION_TLS_CERT_ADD_REPLY);
1149 }
1150 
1151 static void
1153  mp)
1154 {
1156  vnet_app_add_tls_key_args_t _a, *a = &_a;
1157  clib_error_t *error;
1158  application_t *app;
1159  u32 key_len;
1160  int rv = 0;
1162  {
1163  rv = VNET_API_ERROR_FEATURE_DISABLED;
1164  goto done;
1165  }
1166  if (!(app = application_lookup (mp->client_index)))
1167  {
1168  rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1169  goto done;
1170  }
1171  memset (a, 0, sizeof (*a));
1172  a->app_index = app->index;
1173  key_len = clib_net_to_host_u16 (mp->key_len);
1174  if (key_len > 10000)
1175  {
1176  rv = VNET_API_ERROR_INVALID_VALUE;
1177  goto done;
1178  }
1179  vec_validate (a->key, key_len);
1180  clib_memcpy (a->key, mp->key, key_len);
1181  if ((error = vnet_app_add_tls_key (a)))
1182  {
1183  rv = clib_error_get_code (error);
1184  clib_error_report (error);
1185  }
1186  vec_free (a->key);
1187 done:
1188  REPLY_MACRO (VL_API_APPLICATION_TLS_KEY_ADD_REPLY);
1189 }
1190 
1191 static clib_error_t *
1193 {
1194  application_t *app = application_lookup (client_index);
1195  vnet_app_detach_args_t _a, *a = &_a;
1196  if (app)
1197  {
1198  a->app_index = app->index;
1200  }
1201  return 0;
1202 }
1203 
1205 
1206 #define vl_msg_name_crc_list
1207 #include <vnet/vnet_all_api_h.h>
1208 #undef vl_msg_name_crc_list
1209 
1210 static void
1212 {
1213 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1214  foreach_vl_msg_name_crc_session;
1215 #undef _
1216 }
1217 
1218 /*
1219  * session_api_hookup
1220  * Add uri's API message handlers to the table.
1221  * vlib has alread mapped shared memory and
1222  * added the client registration handlers.
1223  * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
1224  */
1225 static clib_error_t *
1227 {
1228  api_main_t *am = &api_main;
1229 
1230 #define _(N,n) \
1231  vl_msg_api_set_handlers(VL_API_##N, #n, \
1232  vl_api_##n##_t_handler, \
1233  vl_noop_handler, \
1234  vl_api_##n##_t_endian, \
1235  vl_api_##n##_t_print, \
1236  sizeof(vl_api_##n##_t), 1);
1238 #undef _
1239 
1240  /*
1241  * Messages which bounce off the data-plane to
1242  * an API client. Simply tells the message handling infra not
1243  * to free the message.
1244  *
1245  * Bounced message handlers MUST NOT block the data plane
1246  */
1247  am->message_bounce[VL_API_CONNECT_URI] = 1;
1248  am->message_bounce[VL_API_CONNECT_SOCK] = 1;
1249 
1250  /*
1251  * Set up the (msg_name, crc, message-id) table
1252  */
1254 
1255  return 0;
1256 }
1257 
1259 
1260 /*
1261  * fd.io coding-style-patch-verification: ON
1262  *
1263  * Local Variables:
1264  * eval: (c-set-style "gnu")
1265  * End:
1266  */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:434
static void vl_api_disconnect_session_reply_t_handler(vl_api_disconnect_session_reply_t *mp)
Definition: session_api.c:620
u64 ssvm_size
Definition: ssvm.h:84
session_type_t listener_session_type
Has transport embedded when listener not purely local.
static svm_queue_t * session_manager_get_vpp_event_queue(u32 thread_index)
Definition: session.h:505
#define APP_NAMESPACE_INVALID_INDEX
static clib_error_t * session_api_hookup(vlib_main_t *vm)
Definition: session_api.c:1226
clib_error_t * vnet_app_namespace_add_del(vnet_app_namespace_add_del_args_t *a)
static clib_error_t * vl_api_send_fd_msg(vl_api_registration_t *reg, int fd_to_send)
Definition: api.h:85
static session_handle_t application_local_session_handle(local_session_t *ls)
Definition: application.h:236
vpp->client reset session API
Definition: session.api:232
a
Definition: bitmap.h:516
VL_MSG_API_REAPER_FUNCTION(application_reaper_cb)
struct _session_rules_table_t session_rules_table_t
u8 application_has_global_scope(application_t *app)
Definition: application.c:611
struct _transport_connection transport_connection_t
struct _vnet_connect_args vnet_connect_args_t
Application add TLS key.
Definition: session.api:74
static int send_del_segment_callback(u32 api_client_index, const ssvm_private_t *fs)
Definition: session_api.c:116
int vnet_bind_uri(vnet_bind_args_t *a)
static void vl_api_app_namespace_add_del_t_handler(vl_api_app_namespace_add_del_t *mp)
Definition: session_api.c:878
void ip_set(ip46_address_t *dst, void *src, u8 is_ip4)
Definition: ip.c:90
clib_error_t * vnet_unbind(vnet_unbind_args_t *a)
#define REPLY_MACRO2(t, body)
add/del session rule
Definition: session.api:446
static void vl_api_send_msg(vl_api_registration_t *rp, u8 *elem)
Definition: api.h:34
u8 * message_bounce
Don&#39;t automatically free message buffer vetor.
Definition: api_common.h:219
Session rules details.
Definition: session.api:492
static void vl_api_map_another_segment_reply_t_handler(vl_api_map_another_segment_reply_t *mp)
Definition: session_api.c:721
struct _transport_proto_vft transport_proto_vft_t
local_session_t * application_get_local_session_from_handle(session_handle_t handle)
Definition: application.c:835
Bind to an ip:port pair for a given transport protocol.
Definition: session.api:262
struct _vnet_app_namespace_add_del_args vnet_app_namespace_add_del_args_t
client->vpp, reply to an accept message
Definition: session.api:195
application_t * application_lookup(u32 api_client_index)
Definition: application.c:136
Request for map server summary status.
Definition: one.api:885
static void vl_api_unbind_sock_t_handler(vl_api_unbind_sock_t *mp)
Definition: session_api.c:789
static void session_parse_handle(session_handle_t handle, u32 *index, u32 *thread_index)
Definition: session.h:279
transport_connection_t * session_get_transport(stream_session_t *s)
Definition: session.c:1172
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
#define foreach_session_api_msg
Definition: session_api.c:41
struct _vnet_application_add_tls_cert_args_t vnet_app_add_tls_cert_args_t
static u8 session_manager_is_enabled()
Definition: session.h:586
void * vl_msg_api_alloc(int nbytes)
clib_error_t * vnet_app_add_tls_cert(vnet_app_add_tls_cert_args_t *a)
Definition: application.c:1231
static stream_session_t * listen_session_get_from_handle(session_handle_t handle)
Definition: session.h:520
int application_is_proxy(application_t *app)
Definition: application.c:577
clib_error_t * vnet_session_rule_add_del(session_rule_add_del_args_t *args)
static void vl_api_connect_uri_t_handler(vl_api_connect_uri_t *mp)
Definition: session_api.c:544
int vnet_unbind_uri(vnet_unbind_args_t *a)
static void vl_api_session_enable_disable_t_handler(vl_api_session_enable_disable_t *mp)
Definition: session_api.c:369
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:440
struct _vnet_disconnect_args_t vnet_disconnect_args_t
static void send_session_reset_callback(stream_session_t *s)
Definition: session_api.c:278
int application_local_session_connect_notify(local_session_t *ls)
Definition: application.c:1046
u32 transport_listener_index
struct _stream_session_cb_vft session_cb_vft_t
vl_api_registration_t * vl_mem_api_client_index_to_registration(u32 handle)
Definition: memory_api.c:710
struct _vnet_unbind_args_t vnet_unbind_args_t
vpp/server->client, connect reply – used for all connect_* messages
Definition: session.api:360
add/del application namespace
Definition: session.api:402
static void vl_api_application_tls_cert_add_t_handler(vl_api_application_tls_cert_add_t *mp)
Definition: session_api.c:1112
unsigned long u64
Definition: types.h:89
void stream_session_cleanup(stream_session_t *s)
Cleanup transport and session state.
Definition: session.c:1049
static local_session_t * application_get_local_listen_session(application_t *app, u32 session_index)
Definition: application.h:243
static void send_session_rule_details4(mma_rule_16_t *rule, u8 is_local, u8 transport_proto, u32 appns_index, u8 *tag, vl_api_registration_t *reg, u32 context)
Definition: session_api.c:975
u32 app_namespace_index_from_id(const u8 *ns_id)
struct _stream_session_t stream_session_t
static uword pointer_to_uword(const void *p)
Definition: types.h:131
struct _vnet_app_attach_args_t vnet_app_attach_args_t
transport_proto_vft_t * transport_protocol_get_vft(transport_proto_t transport_proto)
Get transport virtual function table.
Definition: transport.c:181
vpp->client unmap shared memory segment
Definition: session.api:108
static transport_proto_t session_get_transport_proto(stream_session_t *s)
Definition: session.h:324
static void vl_api_session_rules_dump_t_handler(vl_api_one_map_server_dump_t *mp)
Definition: session_api.c:1088
clib_error_t * vnet_app_add_tls_key(vnet_app_add_tls_key_args_t *a)
Definition: application.c:1243
static session_cb_vft_t session_cb_vft
Definition: session_api.c:359
#define VL_API_INVALID_FI
Definition: api_common.h:75
static void vl_api_accept_session_reply_t_handler(vl_api_accept_session_reply_t *mp)
Definition: session_api.c:675
svm_queue_t * vl_input_queue
shared memory only: pointer to client input queue
Definition: api_common.h:59
struct _session_rule_add_del_args session_rule_add_del_args_t
client->vpp, attach application to session layer
Definition: session.api:27
u8 hostname[hostname_len]
Definition: session.api:310
static u8 session_handle_is_local(session_handle_t handle)
Definition: session.h:304
static void vl_api_disconnect_session_t_handler(vl_api_disconnect_session_t *mp)
Definition: session_api.c:590
static session_handle_t session_handle(stream_session_t *s)
Definition: session.h:261
stream_session_t * application_first_listener(application_t *app, u8 fib_proto, u8 transport_proto)
Definition: application.c:623
#define REPLY_MACRO(t)
static u8 application_local_session_listener_has_transport(local_session_t *ls)
Definition: application.h:259
static clib_error_t * application_reaper_cb(u32 client_index)
Definition: session_api.c:1192
static int send_add_segment_callback(u32 api_client_index, const ssvm_private_t *sp)
Definition: session_api.c:81
clib_error_t * vnet_connect(vnet_connect_args_t *a)
Unbind a given URI.
Definition: session.api:136
static stream_session_t * session_get_if_valid(u64 si, u32 thread_index)
Definition: session.h:248
static int session_send_memfd_fd(vl_api_registration_t *reg, const ssvm_private_t *sp)
Definition: session_api.c:63
clib_error_t * vnet_session_enable_disable(vlib_main_t *vm, u8 is_en)
Definition: session.c:1312
volatile u8 session_state
State.
vpp->client, accept this session
Definition: session.api:174
u32 ip6_mask_to_preflen(ip6_address_t *mask)
Definition: ip.c:266
int send_session_connected_callback(u32 app_index, u32 api_context, stream_session_t *s, u8 is_fail)
Definition: session_api.c:299
API main structure, used by both vpp and binary API clients.
Definition: api_common.h:199
An API client registration, only in vpp/vlib.
Definition: api_common.h:44
static int send_session_accept_callback(stream_session_t *s)
Definition: session_api.c:150
void vl_msg_api_send_shmem(svm_queue_t *q, u8 *elem)
vlib_main_t * vm
Definition: buffer.c:294
svm_queue_t * vl_api_client_index_to_input_queue(u32 index)
Definition: memory_api.c:739
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:336
#define ENDPOINT_INVALID_INDEX
Definition: transport.h:115
#define clib_warning(format, args...)
Definition: error.h:59
#define clib_memcpy(a, b, c)
Definition: string.h:75
u16 port
Port for connection.
u32 ip4_mask_to_preflen(ip4_address_t *mask)
Definition: ip.c:205
struct _application application_t
int vnet_disconnect_session(vnet_disconnect_args_t *a)
static void send_session_rules_table_details(session_rules_table_t *srt, u8 fib_proto, u8 tp, u8 is_local, u32 appns_index, vl_api_registration_t *reg, u32 context)
Definition: session_api.c:1049
#define ARRAY_LEN(x)
Definition: clib.h:59
static vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
Definition: api.h:56
Application attach reply.
Definition: session.api:45
static u32 vl_api_registration_file_index(vl_api_registration_t *reg)
Definition: api.h:65
static u8 session_has_transport(stream_session_t *s)
Definition: session.h:343
static void send_session_rule_details6(mma_rule_40_t *rule, u8 is_local, u8 transport_proto, u32 appns_index, u8 *tag, vl_api_registration_t *reg, u32 context)
Definition: session_api.c:1012
static stream_session_t * session_get_from_handle_if_valid(session_handle_t handle)
Definition: session.h:296
int fd
memfd segments
Definition: ssvm.h:92
ssvm_private_t * session_manager_get_evt_q_segment(void)
Definition: session.c:1119
unsigned int u32
Definition: types.h:88
enable/disable session layer
Definition: session.api:382
static void vl_api_connect_sock_t_handler(vl_api_connect_sock_t *mp)
Definition: session_api.c:820
clib_error_t * vnet_bind(vnet_bind_args_t *a)
Reply for app namespace add/del.
Definition: session.api:418
client->vpp, attach application to session layer
Definition: session.api:86
struct _vnet_application_add_tls_key_args_t vnet_app_add_tls_key_args_t
static void vl_api_bind_sock_t_handler(vl_api_bind_sock_t *mp)
Definition: session_api.c:728
vpp->client, please map an additional shared memory segment
Definition: session.api:96
#define clib_error_report(e)
Definition: error.h:113
struct _vnet_app_detach_args_t vnet_app_detach_args_t
Connect to a remote peer.
Definition: session.api:299
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
u8 * name
Definition: ssvm.h:86
static void vl_api_application_attach_t_handler(vl_api_application_attach_t *mp)
Definition: session_api.c:380
static void setup_message_id_table(api_main_t *am)
Definition: session_api.c:1211
bidirectional disconnect API
Definition: session.api:207
clib_error_t * vnet_connect_uri(vnet_connect_args_t *a)
transport_connection_t * listen_session_get_transport(stream_session_t *s)
Definition: session.c:1185
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
static stream_session_t * listen_session_get(session_type_t type, u32 index)
Definition: session.h:559
unsigned char u8
Definition: types.h:56
Bind to a given URI.
Definition: session.api:122
clib_error_t * vnet_application_attach(vnet_app_attach_args_t *a)
Attach application to vpp.
#define STATIC_ASSERT(truth,...)
application_t * application_get(u32 index)
Definition: application.c:386
static void vl_api_application_tls_key_add_t_handler(vl_api_application_tls_key_add_t *mp)
Definition: session_api.c:1152
#define clib_error_get_code(err)
Definition: error.h:77
VLIB_API_INIT_FUNCTION(session_api_hookup)
struct _session_lookup_table session_table_t
struct _svm_queue svm_queue_t
void * vl_mem_api_alloc_as_if_client_w_reg(vl_api_registration_t *reg, int nbytes)
static void send_session_disconnect_callback(stream_session_t *s)
Definition: session_api.c:256
static void vl_api_application_detach_t_handler(vl_api_application_detach_t *mp)
Definition: session_api.c:458
struct _session_rules_table_add_del_args session_rule_table_add_del_args_t
#define session_table_foreach(VAR, BODY)
Definition: session_table.h:77
Application add TLS certificate.
Definition: session.api:60
client->vpp reset session reply
Definition: session.api:245
Connect to a given URI.
Definition: session.api:152
static void vl_api_session_rule_add_del_t_handler(vl_api_session_rule_add_del_t *mp)
Definition: session_api.c:934
void * vl_msg_api_alloc_as_if_client(int nbytes)
void send_local_session_disconnect_callback(u32 app_index, local_session_t *ls)
Definition: session_api.c:234
bidirectional disconnect reply API
Definition: session.api:220
static fib_protocol_t session_get_fib_proto(stream_session_t *s)
Definition: session.h:330
api_main_t api_main
Definition: api_shared.c:35
int vnet_application_detach(vnet_app_detach_args_t *a)
Detach application from vpp.
struct _vnet_bind_args_t vnet_bind_args_t
static u8 session_type_is_ip4(session_type_t st)
Definition: session.h:318
static u64 listen_session_get_handle(stream_session_t *s)
Definition: session.h:513
static void vl_api_bind_uri_t_handler(vl_api_bind_uri_t *mp)
Definition: session_api.c:483
static void vl_api_reset_session_reply_t_handler(vl_api_reset_session_reply_t *mp)
Definition: session_api.c:644
static void vl_api_unbind_uri_t_handler(vl_api_unbind_uri_t *mp)
Definition: session_api.c:514
u32 app_index
Server index.
ssvm_segment_type_t ssvm_type(const ssvm_private_t *ssvm)
Definition: ssvm.c:393