FD.io VPP  v20.01-48-g3e0dafb74
Vector Packet Processing
application_interface.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016-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 #ifndef __included_uri_h__
16 #define __included_uri_h__
17 
18 #include <vlibmemory/api.h>
19 #include <svm/message_queue.h>
21 #include <vnet/tls/tls_test.h>
22 #include <svm/fifo_segment.h>
23 
24 typedef struct certificate_
25 {
26  u32 *app_interests; /* vec of application index asking for deletion cb */
27  u32 cert_key_index; /* index in cert & key pool */
28  u8 *key;
29  u8 *cert;
31 
32 typedef struct session_cb_vft_
33 {
34  /** Notify server of new segment */
35  int (*add_segment_callback) (u32 app_wrk_index, u64 segment_handle);
36 
37  /** Notify server of new segment */
38  int (*del_segment_callback) (u32 app_wrk_index, u64 segment_handle);
39 
40  /** Notify server of newly accepted session */
41  int (*session_accept_callback) (session_t * new_session);
42 
43  /** Connection request callback */
44  int (*session_connected_callback) (u32 app_wrk_index, u32 opaque,
45  session_t * s, u8 code);
46 
47  /** Notify app that session is closing */
48  void (*session_disconnect_callback) (session_t * s);
49 
50  /** Notify app that transport is closed */
51  void (*session_transport_closed_callback) (session_t * s);
52 
53  /** Notify app that session or transport are about to be removed */
54  void (*session_cleanup_callback) (session_t * s, session_cleanup_ntf_t ntf);
55 
56  /** Notify app that session was reset */
57  void (*session_reset_callback) (session_t * s);
58 
59  /** Notify app that session pool migration happened */
60  void (*session_migrate_callback) (session_t * s, session_handle_t new_sh);
61 
62  /** Direct RX callback for built-in application */
63  int (*builtin_app_rx_callback) (session_t * session);
64 
65  /** Direct TX callback for built-in application */
66  int (*builtin_app_tx_callback) (session_t * session);
67 
68  /** Cert and key pair delete notification */
69  int (*app_cert_key_pair_delete_callback) (app_cert_key_pair_t * ckpair);
70 
72 
73 #define foreach_app_init_args \
74  _(u32, api_client_index) \
75  _(u8 *, name) \
76  _(u64 *, options) \
77  _(u8 *, namespace_id) \
78  _(session_cb_vft_t *, session_cb_vft) \
79  _(u32, app_index) \
80 
81 typedef struct _vnet_app_attach_args_t
82 {
83 #define _(_type, _name) _type _name;
85 #undef _
86  ssvm_private_t * segment;
87  svm_msg_q_t *app_evt_q;
88  u64 segment_handle;
90 
91 typedef struct _vnet_app_detach_args_t
92 {
93  u32 app_index;
94  u32 api_client_index;
96 
97 typedef struct _vnet_bind_args_t
98 {
99  union
100  {
101  session_endpoint_cfg_t sep_ext;
102  session_endpoint_t sep;
103  char *uri;
104  };
105 
106  u32 app_index;
107  u32 wrk_map_index;
108 
109  /*
110  * Results
111  */
112  char *segment_name;
113  u32 segment_name_length;
114  u64 server_event_queue_address;
115  u64 handle;
117 
118 typedef struct _vnet_unlisten_args_t
119 {
120  union
121  {
122  char *uri;
123  u64 handle; /**< Session handle */
124  };
125  u32 app_index; /**< Owning application index */
126  u32 wrk_map_index; /**< App's local pool worker index */
128 
129 typedef struct _vnet_connect_args
130 {
131  union
132  {
133  session_endpoint_cfg_t sep_ext;
134  session_endpoint_t sep;
135  char *uri;
136  };
137  u32 app_index;
138  u32 wrk_map_index;
139  u32 api_context;
140 
143 
144 typedef struct _vnet_disconnect_args_t
145 {
146  session_handle_t handle;
147  u32 app_index;
149 
150 typedef struct _vnet_application_add_tls_cert_args_t
151 {
152  u32 app_index;
153  u8 *cert;
155 
156 typedef struct _vnet_application_add_tls_key_args_t
157 {
158  u32 app_index;
159  u8 *key;
161 
163 {
171 
172 typedef struct _vnet_app_add_cert_key_pair_args_
173 {
174  u8 *cert;
175  u8 *key;
176  u32 index;
178 
179 typedef struct crypto_ctx_
180 {
181  u32 ctx_index; /**< index in crypto context pool */
182  u32 n_subscribers; /**< refcount of sessions using said context */
183  u32 ckpair_index; /**< certificate & key */
185  void *data; /**< protocol specific data */
187 
188 /* Application attach options */
189 typedef enum
190 {
206 
207 #define foreach_app_options_flags \
208  _(ACCEPT_REDIRECT, "Use FIFO with redirects") \
209  _(ADD_SEGMENT, "Add segment and signal app if needed") \
210  _(IS_BUILTIN, "Application is builtin") \
211  _(IS_TRANSPORT_APP, "Application is a transport proto") \
212  _(IS_PROXY, "Application is proxying") \
213  _(USE_GLOBAL_SCOPE, "App can use global session scope") \
214  _(USE_LOCAL_SCOPE, "App can use local session scope") \
215  _(EVT_MQ_USE_EVENTFD, "Use eventfds for signaling") \
216 
217 typedef enum _app_options
218 {
219 #define _(sym, str) APP_OPTIONS_##sym,
221 #undef _
222 } app_options_t;
223 
224 typedef enum _app_options_flags
225 {
226 #define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym,
228 #undef _
230 
231 #define foreach_fd_type \
232  _(VPP_MQ_SEGMENT, "Fd for vpp's event mq segment") \
233  _(MEMFD_SEGMENT, "Fd for memfd segment") \
234  _(MQ_EVENTFD, "Event fd used by message queue") \
235  _(VPP_MQ_EVENTFD, "Event fd used by vpp's message queue") \
236 
237 typedef enum session_fd_type_
238 {
239 #define _(sym, str) SESSION_FD_##sym,
241 #undef _
244 
245 typedef enum session_fd_flag_
246 {
247 #define _(sym, str) SESSION_FD_F_##sym = 1 << SESSION_FD_##sym,
249 #undef _
251 
252 int parse_uri (char *uri, session_endpoint_cfg_t * sep);
256 
263 
267 int vnet_app_del_cert_key_pair (u32 index);
268 /** Ask for app cb on pair deletion */
269 int vnet_app_add_cert_key_interest (u32 index, u32 app_index);
270 
272 {
273  ip46_address_t rmt_ip; /**< remote ip */
274  ip46_address_t lcl_ip; /**< local ip */
275  u16 rmt_port; /**< remote port (network order) */
276  u16 lcl_port; /**< local port (network order) */
277  u8 is_ip4; /**< set if uses ip4 networking */
279 
280 #define foreach_app_session_field \
281  _(svm_fifo_t, *rx_fifo) /**< rx fifo */ \
282  _(svm_fifo_t, *tx_fifo) /**< tx fifo */ \
283  _(session_type_t, session_type) /**< session type */ \
284  _(volatile u8, session_state) /**< session state */ \
285  _(u32, session_index) /**< index in owning pool */ \
286  _(app_session_transport_t, transport) /**< transport info */ \
287  _(svm_msg_q_t, *vpp_evt_q) /**< vpp event queue */ \
288  _(u8, is_dgram) /**< flag for dgram mode */ \
289 
290 typedef struct
291 {
292 #define _(type, name) type name;
294 #undef _
295 } app_session_t;
296 
297 typedef struct session_listen_msg_
298 {
299  u32 client_index;
300  u32 context; /* Not needed but keeping it for compatibility with bapi */
301  u32 wrk_index;
302  u32 vrf;
306  ip46_address_t ip;
307  u32 ckpair_index;
308  u8 crypto_engine;
309 } __clib_packed session_listen_msg_t;
310 
312  "msg too large");
313 
314 typedef struct session_listen_uri_msg_
315 {
316  u32 client_index;
317  u32 context;
318  u8 uri[56];
319 } __clib_packed session_listen_uri_msg_t;
320 
321 STATIC_ASSERT (sizeof (session_listen_uri_msg_t) <= SESSION_CTRL_MSG_MAX_SIZE,
322  "msg too large");
323 
324 typedef struct session_bound_msg_
325 {
326  u32 context;
327  u64 handle;
328  i32 retval;
329  u8 lcl_is_ip4;
330  u8 lcl_ip[16];
331  u16 lcl_port;
332  uword rx_fifo;
333  uword tx_fifo;
334  uword vpp_evt_q;
335  u32 segment_size;
336  u8 segment_name_length;
337  u8 segment_name[128];
338 } __clib_packed session_bound_msg_t;
339 
340 typedef struct session_unlisten_msg_
341 {
342  u32 client_index;
343  u32 context;
344  u32 wrk_index;
346 } __clib_packed session_unlisten_msg_t;
347 
348 typedef struct session_unlisten_reply_msg_
349 {
350  u32 context;
351  u64 handle;
352  i32 retval;
354 
355 typedef struct session_accepted_msg_
356 {
357  u32 context;
358  u64 listener_handle;
359  u64 handle;
360  uword server_rx_fifo;
361  uword server_tx_fifo;
362  u64 segment_handle;
363  uword vpp_event_queue_address;
366 } __clib_packed session_accepted_msg_t;
367 
368 typedef struct session_accepted_reply_msg_
369 {
370  u32 context;
371  i32 retval;
372  u64 handle;
374 
375 typedef struct session_connect_msg_
376 {
377  u32 client_index;
378  u32 context;
379  u32 wrk_index;
380  u32 vrf;
384  ip46_address_t ip;
385  ip46_address_t lcl_ip;
386  u8 hostname_len;
388  u64 parent_handle;
389  u32 ckpair_index;
390  u8 crypto_engine;
392 } __clib_packed session_connect_msg_t;
393 
394 STATIC_ASSERT (sizeof (session_connect_msg_t) <= SESSION_CTRL_MSG_MAX_SIZE,
395  "msg too large");
396 
397 typedef struct session_connect_uri_msg_
398 {
399  u32 client_index;
400  u32 context;
401  u8 uri[56];
403 
404 STATIC_ASSERT (sizeof (session_connect_uri_msg_t) <=
405  SESSION_CTRL_MSG_MAX_SIZE, "msg too large");
406 
407 typedef struct session_connected_msg_
408 {
409  u32 context;
410  i32 retval;
411  u64 handle;
412  uword server_rx_fifo;
413  uword server_tx_fifo;
414  u64 segment_handle;
415  uword ct_rx_fifo;
416  uword ct_tx_fifo;
417  u64 ct_segment_handle;
418  uword vpp_event_queue_address;
419  u32 segment_size;
420  u8 segment_name_length;
421  u8 segment_name[64];
423 } __clib_packed session_connected_msg_t;
424 
425 typedef struct session_disconnect_msg_
426 {
427  u32 client_index;
428  u32 context;
430 } __clib_packed session_disconnect_msg_t;
431 
432 typedef struct session_disconnected_msg_
433 {
434  u32 client_index;
435  u32 context;
436  u64 handle;
438 
439 typedef struct session_disconnected_reply_msg_
440 {
441  u32 context;
442  i32 retval;
443  u64 handle;
445 
446 typedef struct session_reset_msg_
447 {
448  u32 client_index;
449  u32 context;
450  u64 handle;
451 } __clib_packed session_reset_msg_t;
452 
453 typedef struct session_reset_reply_msg_
454 {
455  u32 context;
456  i32 retval;
457  u64 handle;
459 
460 typedef struct session_req_worker_update_msg_
461 {
464 
465 /* NOTE: using u16 for wrk indices because message needs to fit in 18B */
466 typedef struct session_worker_update_msg_
467 {
468  u32 client_index;
469  u16 wrk_index;
470  u16 req_wrk_index;
471  u64 handle;
473 
475 {
476  u64 handle;
477  uword rx_fifo;
478  uword tx_fifo;
479  u64 segment_handle;
481 
482 typedef struct session_app_detach_msg_
483 {
484  u32 client_index;
485  u32 context;
487 
488 typedef struct app_map_another_segment_msg_
489 {
490  u32 client_index;
491  u32 context;
492  u8 fd_flags;
493  u32 segment_size;
494  u8 segment_name[128];
495  u64 segment_handle;
497 
498 typedef struct app_unmap_segment_msg_
499 {
500  u32 client_index;
501  u32 context;
502  u64 segment_handle;
504 
505 typedef struct app_session_event_
506 {
507  svm_msg_q_msg_t msg;
508  session_event_t *evt;
509 } __clib_packed app_session_evt_t;
510 
511 static inline void
512 app_alloc_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt,
513  u8 evt_type)
514 {
517  SVM_Q_WAIT, &app_evt->msg);
518  app_evt->evt = svm_msg_q_msg_data (mq, &app_evt->msg);
519  clib_memset (app_evt->evt, 0, sizeof (*app_evt->evt));
520  app_evt->evt->event_type = evt_type;
521 }
522 
523 static inline void
524 app_send_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt)
525 {
526  svm_msg_q_add_and_unlock (mq, &app_evt->msg);
527 }
528 
529 /**
530  * Send fifo io event to vpp worker thread
531  *
532  * Because there may be multiple writers to one of vpp's queues, this
533  * protects message allocation and enqueueing.
534  *
535  * @param mq vpp message queue
536  * @param f fifo for which the event is sent
537  * @param evt_type type of event
538  * @param noblock flag to indicate is request is blocking or not
539  * @return 0 if success, negative integer otherwise
540  */
541 static inline int
542 app_send_io_evt_to_vpp (svm_msg_q_t * mq, u32 session_index, u8 evt_type,
543  u8 noblock)
544 {
545  session_event_t *evt;
546  svm_msg_q_msg_t msg;
547 
548  if (noblock)
549  {
550  if (svm_msg_q_try_lock (mq))
551  return -1;
553  {
554  svm_msg_q_unlock (mq);
555  return -2;
556  }
558  evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
559  evt->session_index = session_index;
560  evt->event_type = evt_type;
561  svm_msg_q_add_and_unlock (mq, &msg);
562  return 0;
563  }
564  else
565  {
566  svm_msg_q_lock (mq);
568  || svm_msg_q_is_full (mq))
569  svm_msg_q_wait (mq);
571  evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
572  evt->session_index = session_index;
573  evt->event_type = evt_type;
574  svm_msg_q_add_and_unlock (mq, &msg);
575  return 0;
576  }
577 }
578 
579 always_inline int
581  svm_msg_q_t * vpp_evt_q, u8 * data, u32 len, u8 evt_type,
582  u8 do_evt, u8 noblock)
583 {
584  u32 max_enqueue, actual_write;
586  int rv;
587 
588  max_enqueue = svm_fifo_max_enqueue_prod (f);
589  if (max_enqueue <= sizeof (session_dgram_hdr_t))
590  return 0;
591 
592  max_enqueue -= sizeof (session_dgram_hdr_t);
593  actual_write = clib_min (len, max_enqueue);
594  hdr.data_length = actual_write;
595  hdr.data_offset = 0;
596  clib_memcpy_fast (&hdr.rmt_ip, &at->rmt_ip, sizeof (ip46_address_t));
597  hdr.is_ip4 = at->is_ip4;
598  hdr.rmt_port = at->rmt_port;
599  clib_memcpy_fast (&hdr.lcl_ip, &at->lcl_ip, sizeof (ip46_address_t));
600  hdr.lcl_port = at->lcl_port;
601  rv = svm_fifo_enqueue (f, sizeof (hdr), (u8 *) & hdr);
602  ASSERT (rv == sizeof (hdr));
603 
604  rv = svm_fifo_enqueue (f, actual_write, data);
605  if (do_evt)
606  {
607  if (rv > 0 && svm_fifo_set_event (f))
608  app_send_io_evt_to_vpp (vpp_evt_q, f->master_session_index, evt_type,
609  noblock);
610  }
611  ASSERT (rv);
612  return rv;
613 }
614 
615 always_inline int
616 app_send_dgram (app_session_t * s, u8 * data, u32 len, u8 noblock)
617 {
618  return app_send_dgram_raw (s->tx_fifo, &s->transport, s->vpp_evt_q, data,
619  len, SESSION_IO_EVT_TX, 1 /* do_evt */ ,
620  noblock);
621 }
622 
623 always_inline int
624 app_send_stream_raw (svm_fifo_t * f, svm_msg_q_t * vpp_evt_q, u8 * data,
625  u32 len, u8 evt_type, u8 do_evt, u8 noblock)
626 {
627  int rv;
628 
629  rv = svm_fifo_enqueue (f, len, data);
630  if (do_evt)
631  {
632  if (rv > 0 && svm_fifo_set_event (f))
633  app_send_io_evt_to_vpp (vpp_evt_q, f->master_session_index, evt_type,
634  noblock);
635  }
636  return rv;
637 }
638 
639 always_inline int
640 app_send_stream (app_session_t * s, u8 * data, u32 len, u8 noblock)
641 {
642  return app_send_stream_raw (s->tx_fifo, s->vpp_evt_q, data, len,
643  SESSION_IO_EVT_TX, 1 /* do_evt */ , noblock);
644 }
645 
646 always_inline int
647 app_send (app_session_t * s, u8 * data, u32 len, u8 noblock)
648 {
649  if (s->is_dgram)
650  return app_send_dgram (s, data, len, noblock);
651  return app_send_stream (s, data, len, noblock);
652 }
653 
654 always_inline int
655 app_recv_dgram_raw (svm_fifo_t * f, u8 * buf, u32 len,
656  app_session_transport_t * at, u8 clear_evt, u8 peek)
657 {
659  u32 max_deq;
660  int rv;
661 
662  max_deq = svm_fifo_max_dequeue_cons (f);
663  if (max_deq < sizeof (session_dgram_hdr_t))
664  {
665  if (clear_evt)
667  return 0;
668  }
669 
670  if (clear_evt)
672 
673  svm_fifo_peek (f, 0, sizeof (ph), (u8 *) & ph);
674  ASSERT (ph.data_length >= ph.data_offset);
675  if (!ph.data_offset)
676  svm_fifo_peek (f, sizeof (ph), sizeof (*at), (u8 *) at);
677  len = clib_min (len, ph.data_length - ph.data_offset);
678  rv = svm_fifo_peek (f, ph.data_offset + SESSION_CONN_HDR_LEN, len, buf);
679  if (peek)
680  return rv;
681  ph.data_offset += rv;
682  if (ph.data_offset == ph.data_length)
683  svm_fifo_dequeue_drop (f, ph.data_length + SESSION_CONN_HDR_LEN);
684  else
685  svm_fifo_overwrite_head (f, (u8 *) & ph, sizeof (ph));
686  return rv;
687 }
688 
689 always_inline int
690 app_recv_dgram (app_session_t * s, u8 * buf, u32 len)
691 {
692  return app_recv_dgram_raw (s->rx_fifo, buf, len, &s->transport, 1, 0);
693 }
694 
695 always_inline int
696 app_recv_stream_raw (svm_fifo_t * f, u8 * buf, u32 len, u8 clear_evt, u8 peek)
697 {
698  if (clear_evt)
700 
701  if (peek)
702  return svm_fifo_peek (f, 0, len, buf);
703 
704  return svm_fifo_dequeue (f, len, buf);
705 }
706 
707 always_inline int
708 app_recv_stream (app_session_t * s, u8 * buf, u32 len)
709 {
710  return app_recv_stream_raw (s->rx_fifo, buf, len, 1, 0);
711 }
712 
713 always_inline int
715 {
716  if (s->is_dgram)
717  return app_recv_dgram (s, data, len);
718  return app_recv_stream (s, data, len);
719 }
720 
721 #endif /* __included_uri_h__ */
722 
723 /*
724  * fd.io coding-style-patch-verification: ON
725  *
726  * Local Variables:
727  * eval: (c-set-style "gnu")
728  * End:
729  */
#define foreach_app_session_field
flag for dgram mode
string hostname[64]
Definition: dhcp.api:159
struct session_unlisten_msg_ session_unlisten_msg_t
static int app_recv_stream_raw(svm_fifo_t *f, u8 *buf, u32 len, u8 clear_evt, u8 peek)
struct app_session_event_ app_session_evt_t
u8 proto
Definition: acl_types.api:47
void * svm_msg_q_msg_data(svm_msg_q_t *mq, svm_msg_q_msg_t *msg)
Get data for message in queue.
static u8 svm_msg_q_ring_is_full(svm_msg_q_t *mq, u32 ring_index)
#define clib_min(x, y)
Definition: clib.h:295
struct session_accepted_msg_ session_accepted_msg_t
u8 is_ip4
set if uses ip4 networking
static u32 svm_fifo_max_enqueue_prod(svm_fifo_t *f)
Maximum number of bytes that can be enqueued into fifo.
Definition: svm_fifo.h:619
a
Definition: bitmap.h:538
struct _vnet_connect_args vnet_connect_args_t
int vnet_listen(vnet_listen_args_t *a)
Definition: application.c:953
int vnet_app_add_cert_key_interest(u32 index, u32 app_index)
Ask for app cb on pair deletion.
Definition: application.c:1704
struct _vnet_unlisten_args_t vnet_unlisten_args_t
unsigned long u64
Definition: types.h:89
#define clib_memcpy_fast(a, b, c)
Definition: string.h:81
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
struct session_req_worker_update_msg_ session_req_worker_update_msg_t
static int app_send_stream(app_session_t *s, u8 *data, u32 len, u8 noblock)
int svm_fifo_peek(svm_fifo_t *f, u32 offset, u32 len, u8 *dst)
Peek data from fifo.
Definition: svm_fifo.c:1007
struct session_listen_msg_ session_listen_msg_t
struct session_disconnected_reply_msg_ session_disconnected_reply_msg_t
void svm_fifo_overwrite_head(svm_fifo_t *f, u8 *src, u32 len)
Overwrite fifo head with new data.
Definition: svm_fifo.c:866
struct session_reset_msg_ session_reset_msg_t
struct _vnet_application_add_tls_cert_args_t vnet_app_add_tls_cert_args_t
struct session_worker_update_reply_msg_ session_worker_update_reply_msg_t
unsigned char u8
Definition: types.h:56
struct _vnet_bind_args_t vnet_listen_args_t
int vnet_bind_uri(vnet_listen_args_t *)
static session_handle_t session_handle(session_t *s)
struct _svm_fifo svm_fifo_t
u32 ctx_index
index in crypto context pool
int svm_msg_q_lock_and_alloc_msg_w_ring(svm_msg_q_t *mq, u32 ring_index, u8 noblock, svm_msg_q_msg_t *msg)
Lock message queue and allocate message buffer on ring.
struct session_reset_reply_msg_ session_reset_reply_msg_t
struct session_accepted_reply_msg_ session_accepted_reply_msg_t
static void app_alloc_ctrl_evt_to_vpp(svm_msg_q_t *mq, app_session_evt_t *app_evt, u8 evt_type)
static int app_send(app_session_t *s, u8 *data, u32 len, u8 noblock)
void * data
protocol specific data
int vnet_app_del_cert_key_pair(u32 index)
Definition: application.c:1715
struct _vnet_disconnect_args_t vnet_disconnect_args_t
struct app_unmap_segment_msg_ session_app_del_segment_msg_t
struct session_disconnect_msg_ session_disconnect_msg_t
enum session_fd_type_ session_fd_type_t
static u32 svm_fifo_max_dequeue_cons(svm_fifo_t *f)
Fifo max bytes to dequeue optimized for consumer.
Definition: svm_fifo.h:499
static int app_send_io_evt_to_vpp(svm_msg_q_t *mq, u32 session_index, u8 evt_type, u8 noblock)
Send fifo io event to vpp worker thread.
#define foreach_fd_type
ip46_address_t lcl_ip
unsigned int u32
Definition: types.h:88
int svm_fifo_dequeue(svm_fifo_t *f, u32 len, u8 *dst)
Dequeue data from fifo.
Definition: svm_fifo.c:981
struct session_connect_uri_msg_ session_connect_uri_msg_t
static int app_recv_dgram_raw(svm_fifo_t *f, u8 *buf, u32 len, app_session_transport_t *at, u8 clear_evt, u8 peek)
struct _vnet_app_attach_args_t vnet_app_attach_args_t
clib_error_t * vnet_app_add_tls_key(vnet_app_add_tls_key_args_t *a)
Definition: application.c:1322
struct _session_endpoint_cfg session_endpoint_cfg_t
static int app_recv(app_session_t *s, u8 *data, u32 len)
struct app_map_another_segment_msg_ session_app_add_segment_msg_t
#define foreach_app_init_args
struct certificate_ app_cert_key_pair_t
unsigned short u16
Definition: types.h:57
#define SESSION_CTRL_MSG_MAX_SIZE
Definition: session_types.h:24
int svm_fifo_enqueue(svm_fifo_t *f, u32 len, const u8 *src)
Enqueue data to fifo.
Definition: svm_fifo.c:888
#define PREDICT_FALSE(x)
Definition: clib.h:111
ip46_address_t rmt_ip
remote ip
#define always_inline
Definition: ipsec.h:28
static void svm_fifo_unset_event(svm_fifo_t *f)
Unset fifo event flag.
Definition: svm_fifo.h:762
struct session_cb_vft_ session_cb_vft_t
int vnet_app_add_cert_key_pair(vnet_app_add_cert_key_pair_args_t *a)
Definition: application.c:1694
static void svm_msg_q_wait(svm_msg_q_t *mq)
Wait for message queue event.
struct session_connected_msg_ session_connected_msg_t
int vnet_unbind_uri(vnet_unlisten_args_t *a)
u32 n_subscribers
refcount of sessions using said context
static int app_send_dgram_raw(svm_fifo_t *f, app_session_transport_t *at, svm_msg_q_t *vpp_evt_q, u8 *data, u32 len, u8 evt_type, u8 do_evt, u8 noblock)
int vnet_application_attach(vnet_app_attach_args_t *a)
Attach application to vpp.
Definition: application.c:815
u8 len
Definition: ip_types.api:91
enum session_fd_flag_ session_fd_flag_t
static void app_send_ctrl_evt_to_vpp(svm_msg_q_t *mq, app_session_evt_t *app_evt)
static u8 svm_fifo_set_event(svm_fifo_t *f)
Set fifo event flag.
Definition: svm_fifo.h:749
u8 is_ip4
Definition: lisp_gpe.api:232
u32 ckpair_index
certificate & key
u32 flags
Definition: vhost_user.h:141
Unidirectional shared-memory multi-ring message queue.
static void svm_msg_q_unlock(svm_msg_q_t *mq)
Unlock message queue.
#define SESSION_CONN_HDR_LEN
struct app_session_transport_ app_session_transport_t
int vnet_unlisten(vnet_unlisten_args_t *a)
Definition: application.c:1045
blocking call - best used in combination with condvars, for eventfds we don&#39;t yield the cpu ...
Definition: queue.h:42
static int app_recv_stream(app_session_t *s, u8 *buf, u32 len)
static int svm_msg_q_try_lock(svm_msg_q_t *mq)
Try locking message queue.
enum _app_options_flags app_options_flags_t
int parse_uri(char *uri, session_endpoint_cfg_t *sep)
struct session_worker_update_msg_ session_worker_update_msg_t
signed int i32
Definition: types.h:77
clib_error_t * vnet_app_add_tls_cert(vnet_app_add_tls_cert_args_t *a)
Definition: application.c:1312
int vnet_disconnect_session(vnet_disconnect_args_t *a)
Definition: application.c:1076
#define ASSERT(truth)
void svm_msg_q_add_and_unlock(svm_msg_q_t *mq, svm_msg_q_msg_t *msg)
Producer enqueue one message to queue with mutex held.
enum _app_options app_options_t
app_attach_options_index_t
u8 data[128]
Definition: ipsec_types.api:87
static int app_send_dgram(app_session_t *s, u8 *data, u32 len, u8 noblock)
struct _vnet_application_add_tls_key_args_t vnet_app_add_tls_key_args_t
int vnet_application_detach(vnet_app_detach_args_t *a)
Detach application from vpp.
Definition: application.c:875
struct _vnet_app_add_cert_key_pair_args_ vnet_app_add_cert_key_pair_args_t
ip46_address_t rmt_ip
u16 lcl_port
local port (network order)
struct _vnet_app_detach_args_t vnet_app_detach_args_t
ip46_address_t lcl_ip
local ip
int vnet_connect(vnet_connect_args_t *a)
Definition: application.c:1007
struct session_disconnected_msg_ session_disconnected_msg_t
struct session_bound_msg_ session_bound_msg_t
vl_api_address_t ip
Definition: l2.api:490
int vnet_connect_uri(vnet_connect_args_t *a)
u64 session_handle_t
struct session_app_detach_msg_ session_app_detach_msg_t
u64 uword
Definition: types.h:112
static int app_send_stream_raw(svm_fifo_t *f, svm_msg_q_t *vpp_evt_q, u8 *data, u32 len, u8 evt_type, u8 do_evt, u8 noblock)
struct session_unlisten_reply_msg_ session_unlisten_reply_msg_t
u16 port
Definition: lb_types.api:72
struct session_connect_msg_ session_connect_msg_t
session_cleanup_ntf_t
struct crypto_ctx_ crypto_context_t
enum crypto_engine_type_ crypto_engine_type_t
struct _session_endpoint session_endpoint_t
#define foreach_app_options_flags
int svm_fifo_dequeue_drop(svm_fifo_t *f, u32 len)
Dequeue and drop bytes from fifo.
Definition: svm_fifo.c:1029
static int svm_msg_q_lock(svm_msg_q_t *mq)
Lock, or block trying, the message queue.
crypto_engine_type_
static u8 svm_msg_q_is_full(svm_msg_q_t *mq)
Check if message queue is full.
struct session_dgram_header_ session_dgram_hdr_t
svm_msg_q_msg_t svm_msg_q_alloc_msg_w_ring(svm_msg_q_t *mq, u32 ring_index)
Allocate message buffer on ring.
static int app_recv_dgram(app_session_t *s, u8 *buf, u32 len)
u16 rmt_port
remote port (network order)
STATIC_ASSERT(sizeof(session_listen_msg_t)<=SESSION_CTRL_MSG_MAX_SIZE, "msg too large")
struct session_listen_uri_msg_ session_listen_uri_msg_t