session svm: tracking segment memory usage
[vpp.git] / src / vnet / session / application_interface.h
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>
20 #include <vnet/session/session_types.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;
30 } app_cert_key_pair_t;
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
71 } session_cb_vft_t;
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;
84   foreach_app_init_args
85 #undef _
86   ssvm_private_t * segment;
87   svm_msg_q_t *app_evt_q;
88   u64 segment_handle;
89 } vnet_app_attach_args_t;
90
91 typedef struct _vnet_app_detach_args_t
92 {
93   u32 app_index;
94   u32 api_client_index;
95 } vnet_app_detach_args_t;
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;
116 } vnet_listen_args_t;
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 */
127 } vnet_unlisten_args_t;
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
141   session_handle_t session_handle;
142 } vnet_connect_args_t;
143
144 typedef struct _vnet_disconnect_args_t
145 {
146   session_handle_t handle;
147   u32 app_index;
148 } vnet_disconnect_args_t;
149
150 typedef struct _vnet_application_add_tls_cert_args_t
151 {
152   u32 app_index;
153   u8 *cert;
154 } vnet_app_add_tls_cert_args_t;
155
156 typedef struct _vnet_application_add_tls_key_args_t
157 {
158   u32 app_index;
159   u8 *key;
160 } vnet_app_add_tls_key_args_t;
161
162 typedef enum crypto_engine_type_
163 {
164   CRYPTO_ENGINE_NONE,
165   CRYPTO_ENGINE_OPENSSL,
166   CRYPTO_ENGINE_MBEDTLS,
167   CRYPTO_ENGINE_VPP,
168   CRYPTO_ENGINE_PICOTLS,
169   CRYPTO_ENGINE_LAST = CRYPTO_ENGINE_PICOTLS,
170 } crypto_engine_type_t;
171
172 typedef struct _vnet_app_add_cert_key_pair_args_
173 {
174   u8 *cert;
175   u8 *key;
176   u32 index;
177 } vnet_app_add_cert_key_pair_args_t;
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 */
184   u8 crypto_engine;
185   void *data;                   /**< protocol specific data */
186 } crypto_context_t;
187
188 /* Application attach options */
189 typedef enum
190 {
191   APP_OPTIONS_FLAGS,
192   APP_OPTIONS_EVT_QUEUE_SIZE,
193   APP_OPTIONS_SEGMENT_SIZE,
194   APP_OPTIONS_ADD_SEGMENT_SIZE,
195   APP_OPTIONS_PRIVATE_SEGMENT_COUNT,
196   APP_OPTIONS_RX_FIFO_SIZE,
197   APP_OPTIONS_TX_FIFO_SIZE,
198   APP_OPTIONS_PREALLOC_FIFO_PAIRS,
199   APP_OPTIONS_NAMESPACE,
200   APP_OPTIONS_NAMESPACE_SECRET,
201   APP_OPTIONS_PROXY_TRANSPORT,
202   APP_OPTIONS_ACCEPT_COOKIE,
203   APP_OPTIONS_TLS_ENGINE,
204   APP_OPTIONS_HIGH_WATERMARK,
205   APP_OPTIONS_LOW_WATERMARK,
206   APP_OPTIONS_N_OPTIONS
207 } app_attach_options_index_t;
208
209 #define foreach_app_options_flags                               \
210   _(ACCEPT_REDIRECT, "Use FIFO with redirects")                 \
211   _(ADD_SEGMENT, "Add segment and signal app if needed")        \
212   _(IS_BUILTIN, "Application is builtin")                       \
213   _(IS_TRANSPORT_APP, "Application is a transport proto")       \
214   _(IS_PROXY, "Application is proxying")                        \
215   _(USE_GLOBAL_SCOPE, "App can use global session scope")       \
216   _(USE_LOCAL_SCOPE, "App can use local session scope")         \
217   _(EVT_MQ_USE_EVENTFD, "Use eventfds for signaling")           \
218
219 typedef enum _app_options
220 {
221 #define _(sym, str) APP_OPTIONS_##sym,
222   foreach_app_options_flags
223 #undef _
224 } app_options_t;
225
226 typedef enum _app_options_flags
227 {
228 #define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym,
229   foreach_app_options_flags
230 #undef _
231 } app_options_flags_t;
232
233 #define foreach_fd_type                                         \
234   _(VPP_MQ_SEGMENT, "Fd for vpp's event mq segment")            \
235   _(MEMFD_SEGMENT, "Fd for memfd segment")                      \
236   _(MQ_EVENTFD, "Event fd used by message queue")               \
237   _(VPP_MQ_EVENTFD, "Event fd used by vpp's message queue")     \
238
239 typedef enum session_fd_type_
240 {
241 #define _(sym, str) SESSION_FD_##sym,
242   foreach_fd_type
243 #undef _
244   SESSION_N_FD_TYPE
245 } session_fd_type_t;
246
247 typedef enum session_fd_flag_
248 {
249 #define _(sym, str) SESSION_FD_F_##sym = 1 << SESSION_FD_##sym,
250   foreach_fd_type
251 #undef _
252 } session_fd_flag_t;
253
254 int parse_uri (char *uri, session_endpoint_cfg_t * sep);
255 int vnet_bind_uri (vnet_listen_args_t *);
256 int vnet_unbind_uri (vnet_unlisten_args_t * a);
257 int vnet_connect_uri (vnet_connect_args_t * a);
258
259 int vnet_application_attach (vnet_app_attach_args_t * a);
260 int vnet_application_detach (vnet_app_detach_args_t * a);
261 int vnet_listen (vnet_listen_args_t * a);
262 int vnet_connect (vnet_connect_args_t * a);
263 int vnet_unlisten (vnet_unlisten_args_t * a);
264 int vnet_disconnect_session (vnet_disconnect_args_t * a);
265
266 clib_error_t *vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a);
267 clib_error_t *vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a);
268 int vnet_app_add_cert_key_pair (vnet_app_add_cert_key_pair_args_t * a);
269 int vnet_app_del_cert_key_pair (u32 index);
270 /** Ask for app cb on pair deletion */
271 int vnet_app_add_cert_key_interest (u32 index, u32 app_index);
272
273 typedef struct app_session_transport_
274 {
275   ip46_address_t rmt_ip;        /**< remote ip */
276   ip46_address_t lcl_ip;        /**< local ip */
277   u16 rmt_port;                 /**< remote port (network order) */
278   u16 lcl_port;                 /**< local port (network order) */
279   u8 is_ip4;                    /**< set if uses ip4 networking */
280 } app_session_transport_t;
281
282 #define foreach_app_session_field                                       \
283   _(svm_fifo_t, *rx_fifo)               /**< rx fifo */                 \
284   _(svm_fifo_t, *tx_fifo)               /**< tx fifo */                 \
285   _(session_type_t, session_type)       /**< session type */            \
286   _(volatile u8, session_state)         /**< session state */           \
287   _(u32, session_index)                 /**< index in owning pool */    \
288   _(app_session_transport_t, transport) /**< transport info */          \
289   _(svm_msg_q_t, *vpp_evt_q)            /**< vpp event queue  */        \
290   _(u8, is_dgram)                       /**< flag for dgram mode */     \
291
292 typedef struct
293 {
294 #define _(type, name) type name;
295   foreach_app_session_field
296 #undef _
297 } app_session_t;
298
299 typedef struct session_listen_msg_
300 {
301   u32 client_index;
302   u32 context;                  /* Not needed but keeping it for compatibility with bapi */
303   u32 wrk_index;
304   u32 vrf;
305   u16 port;
306   u8 proto;
307   u8 is_ip4;
308   ip46_address_t ip;
309   u32 ckpair_index;
310   u8 crypto_engine;
311 } __clib_packed session_listen_msg_t;
312
313 STATIC_ASSERT (sizeof (session_listen_msg_t) <= SESSION_CTRL_MSG_MAX_SIZE,
314                "msg too large");
315
316 typedef struct session_listen_uri_msg_
317 {
318   u32 client_index;
319   u32 context;
320   u8 uri[56];
321 } __clib_packed session_listen_uri_msg_t;
322
323 STATIC_ASSERT (sizeof (session_listen_uri_msg_t) <= SESSION_CTRL_MSG_MAX_SIZE,
324                "msg too large");
325
326 typedef struct session_bound_msg_
327 {
328   u32 context;
329   u64 handle;
330   i32 retval;
331   u8 lcl_is_ip4;
332   u8 lcl_ip[16];
333   u16 lcl_port;
334   uword rx_fifo;
335   uword tx_fifo;
336   uword vpp_evt_q;
337   u32 segment_size;
338   u8 segment_name_length;
339   u8 segment_name[128];
340 } __clib_packed session_bound_msg_t;
341
342 typedef struct session_unlisten_msg_
343 {
344   u32 client_index;
345   u32 context;
346   u32 wrk_index;
347   session_handle_t handle;
348 } __clib_packed session_unlisten_msg_t;
349
350 typedef struct session_unlisten_reply_msg_
351 {
352   u32 context;
353   u64 handle;
354   i32 retval;
355 } __clib_packed session_unlisten_reply_msg_t;
356
357 typedef struct session_accepted_msg_
358 {
359   u32 context;
360   u64 listener_handle;
361   u64 handle;
362   uword server_rx_fifo;
363   uword server_tx_fifo;
364   u64 segment_handle;
365   uword vpp_event_queue_address;
366   transport_endpoint_t rmt;
367   u8 flags;
368 } __clib_packed session_accepted_msg_t;
369
370 typedef struct session_accepted_reply_msg_
371 {
372   u32 context;
373   i32 retval;
374   u64 handle;
375 } __clib_packed session_accepted_reply_msg_t;
376
377 typedef struct session_connect_msg_
378 {
379   u32 client_index;
380   u32 context;
381   u32 wrk_index;
382   u32 vrf;
383   u16 port;
384   u8 proto;
385   u8 is_ip4;
386   ip46_address_t ip;
387   ip46_address_t lcl_ip;
388   u8 hostname_len;
389   u8 hostname[16];
390   u64 parent_handle;
391   u32 ckpair_index;
392   u8 crypto_engine;
393   u8 flags;
394 } __clib_packed session_connect_msg_t;
395
396 STATIC_ASSERT (sizeof (session_connect_msg_t) <= SESSION_CTRL_MSG_MAX_SIZE,
397                "msg too large");
398
399 typedef struct session_connect_uri_msg_
400 {
401   u32 client_index;
402   u32 context;
403   u8 uri[56];
404 } __clib_packed session_connect_uri_msg_t;
405
406 STATIC_ASSERT (sizeof (session_connect_uri_msg_t) <=
407                SESSION_CTRL_MSG_MAX_SIZE, "msg too large");
408
409 typedef struct session_connected_msg_
410 {
411   u32 context;
412   i32 retval;
413   u64 handle;
414   uword server_rx_fifo;
415   uword server_tx_fifo;
416   u64 segment_handle;
417   uword ct_rx_fifo;
418   uword ct_tx_fifo;
419   u64 ct_segment_handle;
420   uword vpp_event_queue_address;
421   u32 segment_size;
422   u8 segment_name_length;
423   u8 segment_name[64];
424   transport_endpoint_t lcl;
425 } __clib_packed session_connected_msg_t;
426
427 typedef struct session_disconnect_msg_
428 {
429   u32 client_index;
430   u32 context;
431   session_handle_t handle;
432 } __clib_packed session_disconnect_msg_t;
433
434 typedef struct session_disconnected_msg_
435 {
436   u32 client_index;
437   u32 context;
438   u64 handle;
439 } __clib_packed session_disconnected_msg_t;
440
441 typedef struct session_disconnected_reply_msg_
442 {
443   u32 context;
444   i32 retval;
445   u64 handle;
446 } __clib_packed session_disconnected_reply_msg_t;
447
448 typedef struct session_reset_msg_
449 {
450   u32 client_index;
451   u32 context;
452   u64 handle;
453 } __clib_packed session_reset_msg_t;
454
455 typedef struct session_reset_reply_msg_
456 {
457   u32 context;
458   i32 retval;
459   u64 handle;
460 } __clib_packed session_reset_reply_msg_t;
461
462 typedef struct session_req_worker_update_msg_
463 {
464   u64 session_handle;
465 } __clib_packed session_req_worker_update_msg_t;
466
467 /* NOTE: using u16 for wrk indices because message needs to fit in 18B */
468 typedef struct session_worker_update_msg_
469 {
470   u32 client_index;
471   u16 wrk_index;
472   u16 req_wrk_index;
473   u64 handle;
474 } __clib_packed session_worker_update_msg_t;
475
476 typedef struct session_worker_update_reply_msg_
477 {
478   u64 handle;
479   uword rx_fifo;
480   uword tx_fifo;
481   u64 segment_handle;
482 } __clib_packed session_worker_update_reply_msg_t;
483
484 typedef struct session_app_detach_msg_
485 {
486   u32 client_index;
487   u32 context;
488 } session_app_detach_msg_t;
489
490 typedef struct app_map_another_segment_msg_
491 {
492   u32 client_index;
493   u32 context;
494   u8 fd_flags;
495   u32 segment_size;
496   u8 segment_name[128];
497   u64 segment_handle;
498 } session_app_add_segment_msg_t;
499
500 typedef struct app_unmap_segment_msg_
501 {
502   u32 client_index;
503   u32 context;
504   u64 segment_handle;
505 } session_app_del_segment_msg_t;
506
507 typedef struct session_migrate_msg_
508 {
509   uword vpp_evt_q;
510   session_handle_t handle;
511   session_handle_t new_handle;
512   u32 vpp_thread_index;
513 } __clib_packed session_migrated_msg_t;
514
515 typedef struct session_cleanup_msg_
516 {
517   session_handle_t handle;
518 } __clib_packed session_cleanup_msg_t;
519
520 typedef struct app_session_event_
521 {
522   svm_msg_q_msg_t msg;
523   session_event_t *evt;
524 } __clib_packed app_session_evt_t;
525
526 static inline void
527 app_alloc_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt,
528                            u8 evt_type)
529 {
530   svm_msg_q_lock_and_alloc_msg_w_ring (mq,
531                                        SESSION_MQ_CTRL_EVT_RING,
532                                        SVM_Q_WAIT, &app_evt->msg);
533   app_evt->evt = svm_msg_q_msg_data (mq, &app_evt->msg);
534   clib_memset (app_evt->evt, 0, sizeof (*app_evt->evt));
535   app_evt->evt->event_type = evt_type;
536 }
537
538 static inline void
539 app_send_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt)
540 {
541   svm_msg_q_add_and_unlock (mq, &app_evt->msg);
542 }
543
544 /**
545  * Send fifo io event to vpp worker thread
546  *
547  * Because there may be multiple writers to one of vpp's queues, this
548  * protects message allocation and enqueueing.
549  *
550  * @param mq            vpp message queue
551  * @param f             fifo for which the event is sent
552  * @param evt_type      type of event
553  * @param noblock       flag to indicate is request is blocking or not
554  * @return              0 if success, negative integer otherwise
555  */
556 static inline int
557 app_send_io_evt_to_vpp (svm_msg_q_t * mq, u32 session_index, u8 evt_type,
558                         u8 noblock)
559 {
560   session_event_t *evt;
561   svm_msg_q_msg_t msg;
562
563   if (noblock)
564     {
565       if (svm_msg_q_try_lock (mq))
566         return -1;
567       if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
568         {
569           svm_msg_q_unlock (mq);
570           return -2;
571         }
572       msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
573       evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
574       evt->session_index = session_index;
575       evt->event_type = evt_type;
576       svm_msg_q_add_and_unlock (mq, &msg);
577       return 0;
578     }
579   else
580     {
581       svm_msg_q_lock (mq);
582       while (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)
583              || svm_msg_q_is_full (mq))
584         svm_msg_q_wait (mq);
585       msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
586       evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
587       evt->session_index = session_index;
588       evt->event_type = evt_type;
589       svm_msg_q_add_and_unlock (mq, &msg);
590       return 0;
591     }
592 }
593
594 always_inline int
595 app_send_dgram_raw (svm_fifo_t * f, app_session_transport_t * at,
596                     svm_msg_q_t * vpp_evt_q, u8 * data, u32 len, u8 evt_type,
597                     u8 do_evt, u8 noblock)
598 {
599   u32 max_enqueue, actual_write;
600   session_dgram_hdr_t hdr;
601   int rv;
602
603   max_enqueue = svm_fifo_max_enqueue_prod (f);
604   if (max_enqueue <= sizeof (session_dgram_hdr_t))
605     return 0;
606
607   max_enqueue -= sizeof (session_dgram_hdr_t);
608   actual_write = clib_min (len, max_enqueue);
609   hdr.data_length = actual_write;
610   hdr.data_offset = 0;
611   clib_memcpy_fast (&hdr.rmt_ip, &at->rmt_ip, sizeof (ip46_address_t));
612   hdr.is_ip4 = at->is_ip4;
613   hdr.rmt_port = at->rmt_port;
614   clib_memcpy_fast (&hdr.lcl_ip, &at->lcl_ip, sizeof (ip46_address_t));
615   hdr.lcl_port = at->lcl_port;
616   rv = svm_fifo_enqueue (f, sizeof (hdr), (u8 *) & hdr);
617   ASSERT (rv == sizeof (hdr));
618
619   rv = svm_fifo_enqueue (f, actual_write, data);
620   if (do_evt)
621     {
622       if (rv > 0 && svm_fifo_set_event (f))
623         app_send_io_evt_to_vpp (vpp_evt_q, f->master_session_index, evt_type,
624                                 noblock);
625     }
626   ASSERT (rv);
627   return rv;
628 }
629
630 always_inline int
631 app_send_dgram (app_session_t * s, u8 * data, u32 len, u8 noblock)
632 {
633   return app_send_dgram_raw (s->tx_fifo, &s->transport, s->vpp_evt_q, data,
634                              len, SESSION_IO_EVT_TX, 1 /* do_evt */ ,
635                              noblock);
636 }
637
638 always_inline int
639 app_send_stream_raw (svm_fifo_t * f, svm_msg_q_t * vpp_evt_q, u8 * data,
640                      u32 len, u8 evt_type, u8 do_evt, u8 noblock)
641 {
642   int rv;
643
644   rv = svm_fifo_enqueue (f, len, data);
645   if (do_evt)
646     {
647       if (rv > 0 && svm_fifo_set_event (f))
648         app_send_io_evt_to_vpp (vpp_evt_q, f->master_session_index, evt_type,
649                                 noblock);
650     }
651   return rv;
652 }
653
654 always_inline int
655 app_send_stream (app_session_t * s, u8 * data, u32 len, u8 noblock)
656 {
657   return app_send_stream_raw (s->tx_fifo, s->vpp_evt_q, data, len,
658                               SESSION_IO_EVT_TX, 1 /* do_evt */ , noblock);
659 }
660
661 always_inline int
662 app_send (app_session_t * s, u8 * data, u32 len, u8 noblock)
663 {
664   if (s->is_dgram)
665     return app_send_dgram (s, data, len, noblock);
666   return app_send_stream (s, data, len, noblock);
667 }
668
669 always_inline int
670 app_recv_dgram_raw (svm_fifo_t * f, u8 * buf, u32 len,
671                     app_session_transport_t * at, u8 clear_evt, u8 peek)
672 {
673   session_dgram_pre_hdr_t ph;
674   u32 max_deq;
675   int rv;
676
677   max_deq = svm_fifo_max_dequeue_cons (f);
678   if (max_deq < sizeof (session_dgram_hdr_t))
679     {
680       if (clear_evt)
681         svm_fifo_unset_event (f);
682       return 0;
683     }
684
685   if (clear_evt)
686     svm_fifo_unset_event (f);
687
688   svm_fifo_peek (f, 0, sizeof (ph), (u8 *) & ph);
689   ASSERT (ph.data_length >= ph.data_offset);
690   if (!ph.data_offset)
691     svm_fifo_peek (f, sizeof (ph), sizeof (*at), (u8 *) at);
692   len = clib_min (len, ph.data_length - ph.data_offset);
693   rv = svm_fifo_peek (f, ph.data_offset + SESSION_CONN_HDR_LEN, len, buf);
694   if (peek)
695     return rv;
696   ph.data_offset += rv;
697   if (ph.data_offset == ph.data_length)
698     svm_fifo_dequeue_drop (f, ph.data_length + SESSION_CONN_HDR_LEN);
699   else
700     svm_fifo_overwrite_head (f, (u8 *) & ph, sizeof (ph));
701   return rv;
702 }
703
704 always_inline int
705 app_recv_dgram (app_session_t * s, u8 * buf, u32 len)
706 {
707   return app_recv_dgram_raw (s->rx_fifo, buf, len, &s->transport, 1, 0);
708 }
709
710 always_inline int
711 app_recv_stream_raw (svm_fifo_t * f, u8 * buf, u32 len, u8 clear_evt, u8 peek)
712 {
713   if (clear_evt)
714     svm_fifo_unset_event (f);
715
716   if (peek)
717     return svm_fifo_peek (f, 0, len, buf);
718
719   return svm_fifo_dequeue (f, len, buf);
720 }
721
722 always_inline int
723 app_recv_stream (app_session_t * s, u8 * buf, u32 len)
724 {
725   return app_recv_stream_raw (s->rx_fifo, buf, len, 1, 0);
726 }
727
728 always_inline int
729 app_recv (app_session_t * s, u8 * data, u32 len)
730 {
731   if (s->is_dgram)
732     return app_recv_dgram (s, data, len);
733   return app_recv_stream (s, data, len);
734 }
735
736 #endif /* __included_uri_h__ */
737
738 /*
739  * fd.io coding-style-patch-verification: ON
740  *
741  * Local Variables:
742  * eval: (c-set-style "gnu")
743  * End:
744  */