FD.io VPP  v17.10-9-gd594711
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>
19 
20 #include <vnet/vnet_msg_enum.h>
21 #include "application_interface.h"
22 
23 #define vl_typedefs /* define message structures */
24 #include <vnet/vnet_all_api_h.h>
25 #undef vl_typedefs
26 
27 #define vl_endianfun /* define message structures */
28 #include <vnet/vnet_all_api_h.h>
29 #undef vl_endianfun
30 
31 /* instantiate all the print functions we know about */
32 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
33 #define vl_printfun
34 #include <vnet/vnet_all_api_h.h>
35 #undef vl_printfun
36 
38 
39 #define foreach_session_api_msg \
40 _(MAP_ANOTHER_SEGMENT_REPLY, map_another_segment_reply) \
41 _(APPLICATION_ATTACH, application_attach) \
42 _(APPLICATION_DETACH, application_detach) \
43 _(BIND_URI, bind_uri) \
44 _(UNBIND_URI, unbind_uri) \
45 _(CONNECT_URI, connect_uri) \
46 _(DISCONNECT_SESSION, disconnect_session) \
47 _(DISCONNECT_SESSION_REPLY, disconnect_session_reply) \
48 _(ACCEPT_SESSION_REPLY, accept_session_reply) \
49 _(RESET_SESSION_REPLY, reset_session_reply) \
50 _(BIND_SOCK, bind_sock) \
51 _(UNBIND_SOCK, unbind_sock) \
52 _(CONNECT_SOCK, connect_sock) \
53 _(SESSION_ENABLE_DISABLE, session_enable_disable) \
54 
55 static int
56 send_add_segment_callback (u32 api_client_index, const u8 * segment_name,
57  u32 segment_size)
58 {
61 
62  q = vl_api_client_index_to_input_queue (api_client_index);
63 
64  if (!q)
65  return -1;
66 
67  mp = vl_msg_api_alloc (sizeof (*mp));
68  memset (mp, 0, sizeof (*mp));
69  mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MAP_ANOTHER_SEGMENT);
70  mp->segment_size = segment_size;
71  strncpy ((char *) mp->segment_name, (char *) segment_name,
72  sizeof (mp->segment_name) - 1);
73 
74  vl_msg_api_send_shmem (q, (u8 *) & mp);
75 
76  return 0;
77 }
78 
79 static int
81 {
83  unix_shared_memory_queue_t *q, *vpp_queue;
84  application_t *server = application_get (s->app_index);
86  transport_proto_vft_t *tp_vft;
87  stream_session_t *listener;
88 
89  q = vl_api_client_index_to_input_queue (server->api_client_index);
90  vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
91 
92  if (!q)
93  return -1;
94 
95  mp = vl_msg_api_alloc (sizeof (*mp));
96  memset (mp, 0, sizeof (*mp));
97 
98  mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_ACCEPT_SESSION);
99  mp->context = server->index;
100  listener = listen_session_get (s->session_type, s->listener_index);
101  tp_vft = session_get_transport_vft (s->session_type);
102  tc = tp_vft->get_connection (s->connection_index, s->thread_index);
104  mp->handle = stream_session_handle (s);
105  mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
106  mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
107  mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
108  mp->port = tc->rmt_port;
109  mp->is_ip4 = tc->is_ip4;
110  clib_memcpy (&mp->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
111  vl_msg_api_send_shmem (q, (u8 *) & mp);
112 
113  return 0;
114 }
115 
116 static void
118 {
121  application_t *app = application_get (s->app_index);
122 
123  q = vl_api_client_index_to_input_queue (app->api_client_index);
124 
125  if (!q)
126  return;
127 
128  mp = vl_msg_api_alloc (sizeof (*mp));
129  memset (mp, 0, sizeof (*mp));
130  mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_DISCONNECT_SESSION);
131  mp->handle = stream_session_handle (s);
132  vl_msg_api_send_shmem (q, (u8 *) & mp);
133 }
134 
135 static void
137 {
140  application_t *app = application_get (s->app_index);
141 
142  q = vl_api_client_index_to_input_queue (app->api_client_index);
143 
144  if (!q)
145  return;
146 
147  mp = vl_msg_api_alloc (sizeof (*mp));
148  memset (mp, 0, sizeof (*mp));
149  mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_RESET_SESSION);
150  mp->handle = stream_session_handle (s);
151  vl_msg_api_send_shmem (q, (u8 *) & mp);
152 }
153 
154 int
155 send_session_connected_callback (u32 app_index, u32 api_context,
156  stream_session_t * s, u8 is_fail)
157 {
160  application_t *app;
161  unix_shared_memory_queue_t *vpp_queue;
162 
163  app = application_get (app_index);
164  q = vl_api_client_index_to_input_queue (app->api_client_index);
165 
166  if (!q)
167  return -1;
168 
169  mp = vl_msg_api_alloc (sizeof (*mp));
170  mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_CONNECT_SESSION_REPLY);
171  mp->context = api_context;
172  if (!is_fail)
173  {
174  vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
175  mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
176  mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
177  mp->handle = stream_session_handle (s);
178  mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
179  mp->retval = 0;
180  }
181  else
182  {
183  mp->retval = clib_host_to_net_u32 (VNET_API_ERROR_SESSION_CONNECT_FAIL);
184  }
185 
186  vl_msg_api_send_shmem (q, (u8 *) & mp);
187  return 0;
188 }
189 
190 /**
191  * Redirect a connect_uri message to the indicated server.
192  * Only sent if the server has bound the related port with
193  * URI_OPTIONS_FLAGS_USE_FIFO
194  */
195 static int
196 redirect_connect_callback (u32 server_api_client_index, void *mp_arg)
197 {
198  vl_api_connect_uri_t *mp = mp_arg;
199  unix_shared_memory_queue_t *server_q, *client_q;
201  f64 timeout = vlib_time_now (vm) + 0.5;
202  application_t *app;
203  int rv = 0;
204 
205  server_q = vl_api_client_index_to_input_queue (server_api_client_index);
206 
207  if (!server_q)
208  {
209  rv = VNET_API_ERROR_INVALID_VALUE;
210  goto out;
211  }
212 
214  if (!client_q)
215  {
216  rv = VNET_API_ERROR_INVALID_VALUE_2;
217  goto out;
218  }
219 
220  /* Tell the server the client's API queue address, so it can reply */
221  mp->client_queue_address = pointer_to_uword (client_q);
222  app = application_lookup (mp->client_index);
223  if (!app)
224  {
225  clib_warning ("no client application");
226  return -1;
227  }
228 
229  mp->options[SESSION_OPTIONS_RX_FIFO_SIZE] = app->sm_properties.rx_fifo_size;
230  mp->options[SESSION_OPTIONS_TX_FIFO_SIZE] = app->sm_properties.tx_fifo_size;
231 
232  /*
233  * Bounce message handlers MUST NOT block the data-plane.
234  * Spin waiting for the queue lock, but
235  */
236 
237  while (vlib_time_now (vm) < timeout)
238  {
239  rv =
240  unix_shared_memory_queue_add (server_q, (u8 *) & mp, 1 /*nowait */ );
241  switch (rv)
242  {
243  /* correctly enqueued */
244  case 0:
246 
247  /* continue spinning, wait for pthread_mutex_trylock to work */
248  case -1:
249  continue;
250 
251  /* queue stuffed, drop the msg */
252  case -2:
253  rv = VNET_API_ERROR_QUEUE_FULL;
254  goto out;
255  }
256  }
257 out:
258  /* Dispose of the message */
259  vl_msg_api_free (mp);
260  return rv;
261 }
262 
264  .session_accept_callback = send_session_accept_callback,
265  .session_disconnect_callback = send_session_disconnect_callback,
266  .session_connected_callback = send_session_connected_callback,
267  .session_reset_callback = send_session_reset_callback,
268  .add_segment_callback = send_add_segment_callback,
269  .redirect_connect_callback = redirect_connect_callback
270 };
271 
272 static void
274 {
275  vl_api_session_enable_disable_reply_t *rmp;
277  int rv = 0;
278 
280  REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
281 }
282 
283 static void
285 {
287  vnet_app_attach_args_t _a, *a = &_a;
288  int rv;
289 
290  if (session_manager_is_enabled () == 0)
291  {
292  rv = VNET_API_ERROR_FEATURE_DISABLED;
293  goto done;
294  }
295 
297  sizeof (mp->options),
298  "Out of options, fix api message definition");
299 
300  memset (a, 0, sizeof (*a));
301 
302  a->api_client_index = mp->client_index;
303  a->options = mp->options;
304  a->session_cb_vft = &uri_session_cb_vft;
305 
306  rv = vnet_application_attach (a);
307 
308 done:
309 
310  /* *INDENT-OFF* */
311  REPLY_MACRO2 (VL_API_APPLICATION_ATTACH_REPLY, ({
312  if (!rv)
313  {
314  rmp->segment_name_length = 0;
315  /* $$$$ policy? */
316  rmp->segment_size = a->segment_size;
317  if (a->segment_name_length)
318  {
319  memcpy (rmp->segment_name, a->segment_name,
320  a->segment_name_length);
321  rmp->segment_name_length = a->segment_name_length;
322  }
323  rmp->app_event_queue_address = a->app_event_queue_address;
324  }
325  }));
326  /* *INDENT-ON* */
327 }
328 
329 static void
331 {
332  vl_api_application_detach_reply_t *rmp;
333  int rv = VNET_API_ERROR_INVALID_VALUE_2;
334  vnet_app_detach_args_t _a, *a = &_a;
335  application_t *app;
336 
337  if (session_manager_is_enabled () == 0)
338  {
339  rv = VNET_API_ERROR_FEATURE_DISABLED;
340  goto done;
341  }
342 
343  app = application_lookup (mp->client_index);
344  if (app)
345  {
346  a->app_index = app->index;
347  rv = vnet_application_detach (a);
348  }
349 
350 done:
351  REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
352 }
353 
354 static void
356 {
357  vl_api_bind_uri_reply_t *rmp;
358  vnet_bind_args_t _a, *a = &_a;
359  application_t *app;
360  int rv;
361 
362  if (session_manager_is_enabled () == 0)
363  {
364  rv = VNET_API_ERROR_FEATURE_DISABLED;
365  goto done;
366  }
367 
368  app = application_lookup (mp->client_index);
369  if (app)
370  {
371  memset (a, 0, sizeof (*a));
372  a->uri = (char *) mp->uri;
373  a->app_index = app->index;
374  rv = vnet_bind_uri (a);
375  }
376  else
377  {
378  rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
379  }
380 
381 done:
382  REPLY_MACRO (VL_API_BIND_URI_REPLY);
383 }
384 
385 static void
387 {
388  vl_api_unbind_uri_reply_t *rmp;
389  application_t *app;
390  vnet_unbind_args_t _a, *a = &_a;
391  int rv;
392 
393  if (session_manager_is_enabled () == 0)
394  {
395  rv = VNET_API_ERROR_FEATURE_DISABLED;
396  goto done;
397  }
398 
399  app = application_lookup (mp->client_index);
400  if (app)
401  {
402  a->uri = (char *) mp->uri;
403  a->app_index = app->index;
404  rv = vnet_unbind_uri (a);
405  }
406  else
407  {
408  rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
409  }
410 
411 done:
412  REPLY_MACRO (VL_API_UNBIND_URI_REPLY);
413 }
414 
415 static void
417 {
419  vnet_connect_args_t _a, *a = &_a;
420  application_t *app;
421  int rv;
422 
423  if (session_manager_is_enabled () == 0)
424  {
425  rv = VNET_API_ERROR_FEATURE_DISABLED;
426  goto done;
427  }
428 
429  app = application_lookup (mp->client_index);
430  if (app)
431  {
432  a->uri = (char *) mp->uri;
433  a->api_context = mp->context;
434  a->app_index = app->index;
435  a->mp = mp;
436  rv = vnet_connect_uri (a);
437  }
438  else
439  {
440  rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
441  }
442 
443  if (rv == 0 || rv == VNET_CONNECT_REDIRECTED)
444  return;
445 
446  /* Got some error, relay it */
447 
448 done:
449  /* *INDENT-OFF* */
450  REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
451  /* *INDENT-ON* */
452 }
453 
454 static void
456 {
458  vnet_disconnect_args_t _a, *a = &_a;
459  application_t *app;
460  int rv = 0;
461 
462  if (session_manager_is_enabled () == 0)
463  {
464  rv = VNET_API_ERROR_FEATURE_DISABLED;
465  goto done;
466  }
467 
468  app = application_lookup (mp->client_index);
469  if (app)
470  {
471  a->handle = mp->handle;
472  a->app_index = app->index;
473  rv = vnet_disconnect_session (a);
474  }
475  else
476  {
477  rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
478  }
479 
480 done:
481  REPLY_MACRO (VL_API_DISCONNECT_SESSION_REPLY);
482 }
483 
484 static void
486  mp)
487 {
488  vnet_disconnect_args_t _a, *a = &_a;
489  application_t *app;
490 
491  /* Client objected to disconnecting the session, log and continue */
492  if (mp->retval)
493  {
494  clib_warning ("client retval %d", mp->retval);
495  return;
496  }
497 
498  /* Disconnect has been confirmed. Confirm close to transport */
499  app = application_lookup (mp->client_index);
500  if (app)
501  {
502  a->handle = mp->handle;
503  a->app_index = app->index;
505  }
506 }
507 
508 static void
510 {
511  application_t *app;
512  stream_session_t *s;
513  u32 index, thread_index;
514 
515  app = application_lookup (mp->client_index);
516  if (!app)
517  return;
518 
519  stream_session_parse_handle (mp->handle, &index, &thread_index);
520  s = stream_session_get_if_valid (index, thread_index);
521  if (s == 0 || app->index != s->app_index)
522  {
523  clib_warning ("Invalid session!");
524  return;
525  }
526 
527  /* Client objected to resetting the session, log and continue */
528  if (mp->retval)
529  {
530  clib_warning ("client retval %d", mp->retval);
531  return;
532  }
533 
534  /* This comes as a response to a reset, transport only waiting for
535  * confirmation to remove connection state, no need to disconnect */
537 }
538 
539 static void
541 {
542  stream_session_t *s;
543  u32 session_index, thread_index;
544  vnet_disconnect_args_t _a, *a = &_a;
545 
546  /* Server isn't interested, kill the session */
547  if (mp->retval)
548  {
549  a->app_index = mp->context;
550  a->handle = mp->handle;
552  }
553  else
554  {
555  stream_session_parse_handle (mp->handle, &session_index, &thread_index);
556  s = stream_session_get_if_valid (session_index, thread_index);
557  if (!s)
558  {
559  clib_warning ("session doesn't exist");
560  return;
561  }
562  if (s->app_index != mp->context)
563  {
564  clib_warning ("app doesn't own session");
565  return;
566  }
567  /* XXX volatile? */
568  s->session_state = SESSION_STATE_READY;
569  }
570 }
571 
572 static void
573 vl_api_map_another_segment_reply_t_handler (vl_api_map_another_segment_reply_t
574  * mp)
575 {
576  clib_warning ("not implemented");
577 }
578 
579 static void
581 {
583  vnet_bind_args_t _a, *a = &_a;
584  int rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
585  application_t *app;
586 
587  if (session_manager_is_enabled () == 0)
588  {
589  rv = VNET_API_ERROR_FEATURE_DISABLED;
590  goto done;
591  }
592 
593  app = application_lookup (mp->client_index);
594  if (app)
595  {
596  ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
597 
598  memset (a, 0, sizeof (*a));
599  a->tep.is_ip4 = mp->is_ip4;
600  a->tep.ip = *ip46;
601  a->tep.port = mp->port;
602  a->tep.vrf = mp->vrf;
603  a->app_index = app->index;
604 
605  rv = vnet_bind (a);
606  }
607 done:
608  /* *INDENT-OFF* */
609  REPLY_MACRO2 (VL_API_BIND_SOCK_REPLY,({
610  if (!rv)
611  rmp->handle = a->handle;
612  }));
613  /* *INDENT-ONF* */
614 }
615 
616 static void
618 {
619  vl_api_unbind_sock_reply_t *rmp;
620  vnet_unbind_args_t _a, *a = &_a;
621  application_t *app;
622  int rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
623 
624  if (session_manager_is_enabled () == 0)
625  {
626  rv = VNET_API_ERROR_FEATURE_DISABLED;
627  goto done;
628  }
629 
630  app = application_lookup (mp->client_index);
631  if (app)
632  {
633  a->app_index = mp->client_index;
634  a->handle = mp->handle;
635  rv = vnet_unbind (a);
636  }
637 
638 done:
639  REPLY_MACRO (VL_API_UNBIND_SOCK_REPLY);
640 }
641 
642 static void
644 {
646  vnet_connect_args_t _a, *a = &_a;
647  application_t *app;
648  int rv;
649 
650  if (session_manager_is_enabled () == 0)
651  {
652  rv = VNET_API_ERROR_FEATURE_DISABLED;
653  goto done;
654  }
655 
656  app = application_lookup (mp->client_index);
657  if (app)
658  {
659  unix_shared_memory_queue_t *client_q;
660  ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
661 
663  mp->client_queue_address = pointer_to_uword (client_q);
664  a->tep.is_ip4 = mp->is_ip4;
665  a->tep.ip = *ip46;
666  a->tep.port = mp->port;
667  a->tep.vrf = mp->vrf;
668  a->api_context = mp->context;
669  a->app_index = app->index;
670  a->proto = mp->proto;
671  a->mp = mp;
672  rv = vnet_connect (a);
673  }
674  else
675  {
676  rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
677  }
678 
679  if (rv == 0 || rv == VNET_CONNECT_REDIRECTED)
680  return;
681 
682  /* Got some error, relay it */
683 
684 done:
685  REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
686 }
687 
688 static clib_error_t *
690 {
691  application_t *app = application_lookup (client_index);
692  vnet_app_detach_args_t _a, *a = &_a;
693  if (app)
694  {
695  a->app_index = app->index;
697  }
698  return 0;
699 }
700 
702 
703 #define vl_msg_name_crc_list
704 #include <vnet/vnet_all_api_h.h>
705 #undef vl_msg_name_crc_list
706 
707 static void
709 {
710 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
711  foreach_vl_msg_name_crc_session;
712 #undef _
713 }
714 
715 /*
716  * session_api_hookup
717  * Add uri's API message handlers to the table.
718  * vlib has alread mapped shared memory and
719  * added the client registration handlers.
720  * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
721  */
722 static clib_error_t *
724 {
725  api_main_t *am = &api_main;
726 
727 #define _(N,n) \
728  vl_msg_api_set_handlers(VL_API_##N, #n, \
729  vl_api_##n##_t_handler, \
730  vl_noop_handler, \
731  vl_api_##n##_t_endian, \
732  vl_api_##n##_t_print, \
733  sizeof(vl_api_##n##_t), 1);
735 #undef _
736 
737  /*
738  * Messages which bounce off the data-plane to
739  * an API client. Simply tells the message handling infra not
740  * to free the message.
741  *
742  * Bounced message handlers MUST NOT block the data plane
743  */
744  am->message_bounce[VL_API_CONNECT_URI] = 1;
745  am->message_bounce[VL_API_CONNECT_SOCK] = 1;
746 
747  /*
748  * Set up the (msg_name, crc, message-id) table
749  */
751 
752  return 0;
753 }
754 
756 
757 /*
758  * fd.io coding-style-patch-verification: ON
759  *
760  * Local Variables:
761  * eval: (c-set-style "gnu")
762  * End:
763  */
static void vl_api_disconnect_session_reply_t_handler(vl_api_disconnect_session_reply_t *mp)
Definition: session_api.c:485
static clib_error_t * session_api_hookup(vlib_main_t *vm)
Definition: session_api.c:723
vpp->client reset session API
Definition: session.api:186
a
Definition: bitmap.h:516
VL_MSG_API_REAPER_FUNCTION(application_reaper_cb)
struct _transport_connection transport_connection_t
struct _vnet_connect_args vnet_connect_args_t
int vnet_bind_uri(vnet_bind_args_t *a)
#define REPLY_MACRO2(t, body)
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:221
u8 * message_bounce
Don&#39;t automatically free message buffer vetor.
Definition: api_common.h:202
static void vl_api_map_another_segment_reply_t_handler(vl_api_map_another_segment_reply_t *mp)
Definition: session_api.c:573
struct _transport_proto_vft transport_proto_vft_t
Bind to an ip:port pair for a given transport protocol.
Definition: session.api:216
client->vpp, reply to an accept message
Definition: session.api:148
application_t * application_lookup(u32 api_client_index)
Definition: application.c:66
static void vl_api_unbind_sock_t_handler(vl_api_unbind_sock_t *mp)
Definition: session_api.c:617
#define foreach_session_api_msg
Definition: session_api.c:39
static u8 session_manager_is_enabled()
Definition: session.h:423
#define VNET_CONNECT_REDIRECTED
Server can handle delegated connect requests from local clients.
static void vl_api_connect_uri_t_handler(vl_api_connect_uri_t *mp)
Definition: session_api.c:416
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:273
struct _vnet_disconnect_args_t vnet_disconnect_args_t
int vnet_bind(vnet_bind_args_t *a)
static void send_session_reset_callback(stream_session_t *s)
Definition: session_api.c:136
struct _stream_session_cb_vft session_cb_vft_t
struct _vnet_unbind_args_t vnet_unbind_args_t
vpp/server->client, connect reply – used for all connect_* messages
Definition: session.api:303
unsigned long u64
Definition: types.h:89
void stream_session_cleanup(stream_session_t *s)
Cleanup transport and session state.
Definition: session.c:776
struct _stream_session_t stream_session_t
static uword pointer_to_uword(const void *p)
Definition: types.h:131
void * vl_msg_api_alloc(int nbytes)
struct _vnet_app_attach_args_t vnet_app_attach_args_t
int unix_shared_memory_queue_add(unix_shared_memory_queue_t *q, u8 *elem, int nowait)
static session_cb_vft_t uri_session_cb_vft
Definition: session_api.c:263
static void vl_api_accept_session_reply_t_handler(vl_api_accept_session_reply_t *mp)
Definition: session_api.c:540
client->vpp, attach application to session layer
Definition: session.api:23
static void vl_api_disconnect_session_t_handler(vl_api_disconnect_session_t *mp)
Definition: session_api.c:455
void vl_msg_api_free(void *)
#define REPLY_MACRO(t)
static clib_error_t * application_reaper_cb(u32 client_index)
Definition: session_api.c:689
Unbind a given URI.
Definition: session.api:91
clib_error_t * vnet_session_enable_disable(vlib_main_t *vm, u8 is_en)
Definition: session.c:928
vpp->client, accept this session
Definition: session.api:128
int send_session_connected_callback(u32 app_index, u32 api_context, stream_session_t *s, u8 is_fail)
Definition: session_api.c:155
API main structure, used by both vpp and binary API clients.
Definition: api_common.h:182
static int send_session_accept_callback(stream_session_t *s)
Definition: session_api.c:80
static unix_shared_memory_queue_t * session_manager_get_vpp_event_queue(u32 thread_index)
Definition: session.h:345
api_main_t api_main
Definition: api_shared.c:35
vlib_main_t * vm
Definition: buffer.c:283
#define clib_warning(format, args...)
Definition: error.h:59
static int redirect_connect_callback(u32 server_api_client_index, void *mp_arg)
Redirect a connect_uri message to the indicated server.
Definition: session_api.c:196
#define clib_memcpy(a, b, c)
Definition: string.h:69
unix_shared_memory_queue_t * vl_api_client_index_to_input_queue(u32 index)
struct _application application_t
int vnet_disconnect_session(vnet_disconnect_args_t *a)
static stream_session_t * stream_session_get_if_valid(u64 si, u32 thread_index)
Definition: session.h:224
Application attach reply.
Definition: session.api:39
int vnet_application_attach(vnet_app_attach_args_t *a)
Attaches application.
void vl_msg_api_send_shmem(unix_shared_memory_queue_t *q, u8 *elem)
static void stream_session_parse_handle(u64 handle, u32 *index, u32 *thread_index)
Definition: session.h:255
unsigned int u32
Definition: types.h:88
enable/disable session layer
Definition: session.api:321
static void vl_api_connect_sock_t_handler(vl_api_connect_sock_t *mp)
Definition: session_api.c:643
client->vpp, attach application to session layer
Definition: session.api:52
static void vl_api_bind_sock_t_handler(vl_api_bind_sock_t *mp)
Definition: session_api.c:580
vpp->client, please map an additional shared memory segment
Definition: session.api:62
struct _vnet_app_detach_args_t vnet_app_detach_args_t
Connect to a remote peer.
Definition: session.api:251
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
static void vl_api_application_attach_t_handler(vl_api_application_attach_t *mp)
Definition: session_api.c:284
static void setup_message_id_table(api_main_t *am)
Definition: session_api.c:708
static u64 stream_session_handle(stream_session_t *s)
Definition: session.h:237
bidirectional disconnect API
Definition: session.api:160
transport_proto_vft_t * session_get_transport_vft(u8 session_type)
Get transport virtual function table.
double f64
Definition: types.h:142
static stream_session_t * listen_session_get(session_type_t type, u32 index)
Definition: session.h:392
unsigned char u8
Definition: types.h:56
Bind to a given URI.
Definition: session.api:77
#define STATIC_ASSERT(truth,...)
application_t * application_get(u32 index)
Definition: application.c:224
int vnet_connect(vnet_connect_args_t *a)
int vnet_unbind(vnet_unbind_args_t *a)
VLIB_API_INIT_FUNCTION(session_api_hookup)
static int send_add_segment_callback(u32 api_client_index, const u8 *segment_name, u32 segment_size)
Definition: session_api.c:56
static void send_session_disconnect_callback(stream_session_t *s)
Definition: session_api.c:117
static void vl_api_application_detach_t_handler(vl_api_application_detach_t *mp)
Definition: session_api.c:330
client->vpp reset session reply
Definition: session.api:199
Connect to a given URI.
Definition: session.api:108
bidirectional disconnect reply API
Definition: session.api:173
int vnet_connect_uri(vnet_connect_args_t *a)
int vnet_application_detach(vnet_app_detach_args_t *a)
struct _vnet_bind_args_t vnet_bind_args_t
static u64 listen_session_get_handle(stream_session_t *s)
Definition: session.h:353
static void vl_api_bind_uri_t_handler(vl_api_bind_uri_t *mp)
Definition: session_api.c:355
static void vl_api_reset_session_reply_t_handler(vl_api_reset_session_reply_t *mp)
Definition: session_api.c:509
struct _unix_shared_memory_queue unix_shared_memory_queue_t
static void vl_api_unbind_uri_t_handler(vl_api_unbind_uri_t *mp)
Definition: session_api.c:386