blob: daba169a2975afd1e38bf30c764fb92956cbe23d [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 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#ifndef __included_uri_h__
16#define __included_uri_h__
17
Dave Barach68b0fb02017-02-28 15:15:56 -050018#include <svm/svm_fifo_segment.h>
19#include <vnet/session/session.h>
20#include <vnet/session/application.h>
21#include <vnet/session/transport.h>
Florin Coras58d36f02018-03-09 13:05:53 -080022#include <vnet/tls/tls.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050023
Florin Coras6cf30ad2017-04-04 23:08:23 -070024typedef struct _vnet_app_attach_args_t
25{
Florin Corasa5464812017-04-19 13:00:05 -070026 /** Binary API client index */
Florin Coras6cf30ad2017-04-04 23:08:23 -070027 u32 api_client_index;
Florin Corasa5464812017-04-19 13:00:05 -070028
Florin Coras0bee9ce2018-03-22 21:24:31 -070029 /** Application name. Used by builtin apps */
30 u8 *name;
31
Florin Corasa5464812017-04-19 13:00:05 -070032 /** Application and segment manager options */
Florin Coras6cf30ad2017-04-04 23:08:23 -070033 u64 *options;
Florin Corasa5464812017-04-19 13:00:05 -070034
Florin Coras371ca502018-02-21 12:07:41 -080035 /** ID of the namespace the app has access to */
Florin Corascea194d2017-10-02 00:18:51 -070036 u8 *namespace_id;
37
Florin Corasa5464812017-04-19 13:00:05 -070038 /** Session to application callback functions */
Florin Coras6cf30ad2017-04-04 23:08:23 -070039 session_cb_vft_t *session_cb_vft;
40
41 /*
42 * Results
43 */
Florin Corasb384b542018-01-15 01:08:33 -080044 ssvm_private_t *segment;
Florin Coras6cf30ad2017-04-04 23:08:23 -070045 u64 app_event_queue_address;
46 u32 app_index;
47} vnet_app_attach_args_t;
48
49typedef struct _vnet_app_detach_args_t
50{
51 u32 app_index;
52} vnet_app_detach_args_t;
53
Dave Barach68b0fb02017-02-28 15:15:56 -050054typedef struct _vnet_bind_args_t
55{
56 union
57 {
58 char *uri;
Florin Coras3cbc04b2017-10-02 00:18:51 -070059 session_endpoint_t sep;
Dave Barach68b0fb02017-02-28 15:15:56 -050060 };
61
Florin Coras6cf30ad2017-04-04 23:08:23 -070062 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050063
64 /*
65 * Results
66 */
67 char *segment_name;
68 u32 segment_name_length;
69 u64 server_event_queue_address;
70 u64 handle;
71} vnet_bind_args_t;
72
73typedef struct _vnet_unbind_args_t
74{
75 union
76 {
77 char *uri;
78 u64 handle;
79 };
Florin Coras6cf30ad2017-04-04 23:08:23 -070080 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050081} vnet_unbind_args_t;
82
83typedef struct _vnet_connect_args
84{
Florin Coras371ca502018-02-21 12:07:41 -080085 union
86 {
87 char *uri;
Florin Coras8f89dd02018-03-05 16:53:07 -080088 session_endpoint_extended_t sep;
Florin Coras371ca502018-02-21 12:07:41 -080089 };
Florin Coras6cf30ad2017-04-04 23:08:23 -070090 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050091 u32 api_context;
Dave Barach68b0fb02017-02-28 15:15:56 -050092
Florin Corasf8f516a2018-02-08 15:10:09 -080093 session_handle_t session_handle;
Dave Barach68b0fb02017-02-28 15:15:56 -050094} vnet_connect_args_t;
95
96typedef struct _vnet_disconnect_args_t
97{
Florin Corasf8f516a2018-02-08 15:10:09 -080098 session_handle_t handle;
Florin Coras6cf30ad2017-04-04 23:08:23 -070099 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500100} vnet_disconnect_args_t;
101
Florin Coras371ca502018-02-21 12:07:41 -0800102typedef struct _vnet_application_add_tls_cert_args_t
103{
104 u32 app_index;
105 u8 *cert;
106} vnet_app_add_tls_cert_args_t;
107
108typedef struct _vnet_application_add_tls_key_args_t
109{
110 u32 app_index;
111 u8 *key;
112} vnet_app_add_tls_key_args_t;
113
Florin Coras6cf30ad2017-04-04 23:08:23 -0700114/* Application attach options */
Dave Barach68b0fb02017-02-28 15:15:56 -0500115typedef enum
116{
Florin Corasa5464812017-04-19 13:00:05 -0700117 APP_OPTIONS_FLAGS,
Florin Corasff6e7692017-12-11 04:59:01 -0800118 APP_OPTIONS_EVT_QUEUE_SIZE,
119 APP_OPTIONS_SEGMENT_SIZE,
120 APP_OPTIONS_ADD_SEGMENT_SIZE,
Dave Barach2c25a622017-06-26 11:35:07 -0400121 APP_OPTIONS_PRIVATE_SEGMENT_COUNT,
Florin Corasff6e7692017-12-11 04:59:01 -0800122 APP_OPTIONS_RX_FIFO_SIZE,
123 APP_OPTIONS_TX_FIFO_SIZE,
124 APP_OPTIONS_PREALLOC_FIFO_PAIRS,
Florin Corascea194d2017-10-02 00:18:51 -0700125 APP_OPTIONS_NAMESPACE,
126 APP_OPTIONS_NAMESPACE_SECRET,
Florin Coras7999e832017-10-31 01:51:04 -0700127 APP_OPTIONS_PROXY_TRANSPORT,
Florin Corasff6e7692017-12-11 04:59:01 -0800128 APP_OPTIONS_ACCEPT_COOKIE,
Florin Coras58d36f02018-03-09 13:05:53 -0800129 APP_OPTIONS_TLS_ENGINE,
Florin Corasff6e7692017-12-11 04:59:01 -0800130 APP_OPTIONS_N_OPTIONS
Florin Coras6cf30ad2017-04-04 23:08:23 -0700131} app_attach_options_index_t;
Dave Barach68b0fb02017-02-28 15:15:56 -0500132
Florin Corasa5464812017-04-19 13:00:05 -0700133#define foreach_app_options_flags \
Florin Corascea194d2017-10-02 00:18:51 -0700134 _(ACCEPT_REDIRECT, "Use FIFO with redirects") \
Florin Corasa5464812017-04-19 13:00:05 -0700135 _(ADD_SEGMENT, "Add segment and signal app if needed") \
Florin Coras7999e832017-10-31 01:51:04 -0700136 _(IS_BUILTIN, "Application is builtin") \
Florin Coras7e12d942018-06-27 14:32:43 -0700137 _(IS_PROXY, "Application is proxying") \
Florin Corascea194d2017-10-02 00:18:51 -0700138 _(USE_GLOBAL_SCOPE, "App can use global session scope") \
Florin Coras3c2fed52018-07-04 04:15:05 -0700139 _(USE_LOCAL_SCOPE, "App can use local session scope") \
Florin Coras52207f12018-07-12 14:48:06 -0700140 _(USE_MQ_FOR_CTRL_MSGS, "Use message queue for ctr msgs") \
Dave Barach68b0fb02017-02-28 15:15:56 -0500141
Florin Corasa5464812017-04-19 13:00:05 -0700142typedef enum _app_options
143{
144#define _(sym, str) APP_OPTIONS_##sym,
145 foreach_app_options_flags
146#undef _
147} app_options_t;
148
149typedef enum _app_options_flags
150{
151#define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym,
152 foreach_app_options_flags
153#undef _
154} app_options_flags_t;
155
Dave Barach68b0fb02017-02-28 15:15:56 -0500156int vnet_bind_uri (vnet_bind_args_t *);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700157int vnet_unbind_uri (vnet_unbind_args_t * a);
Florin Corascea194d2017-10-02 00:18:51 -0700158clib_error_t *vnet_connect_uri (vnet_connect_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500159
Florin Coras371ca502018-02-21 12:07:41 -0800160clib_error_t *vnet_application_attach (vnet_app_attach_args_t * a);
Florin Corascea194d2017-10-02 00:18:51 -0700161clib_error_t *vnet_bind (vnet_bind_args_t * a);
162clib_error_t *vnet_connect (vnet_connect_args_t * a);
163clib_error_t *vnet_unbind (vnet_unbind_args_t * a);
Florin Coras371ca502018-02-21 12:07:41 -0800164int vnet_application_detach (vnet_app_detach_args_t * a);
165int vnet_disconnect_session (vnet_disconnect_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500166
Florin Coras371ca502018-02-21 12:07:41 -0800167clib_error_t *vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a);
168clib_error_t *vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500169
Florin Coras371ca502018-02-21 12:07:41 -0800170extern const char test_srv_crt_rsa[];
171extern const u32 test_srv_crt_rsa_len;
172extern const char test_srv_key_rsa[];
173extern const u32 test_srv_key_rsa_len;
Florin Corasf8f516a2018-02-08 15:10:09 -0800174
Florin Coras7fb0fe12018-04-09 09:24:52 -0700175typedef struct app_session_transport_
176{
177 ip46_address_t rmt_ip; /**< remote ip */
178 ip46_address_t lcl_ip; /**< local ip */
Florin Coras7e12d942018-06-27 14:32:43 -0700179 u16 rmt_port; /**< remote port (network order) */
180 u16 lcl_port; /**< local port (network order) */
Florin Coras7fb0fe12018-04-09 09:24:52 -0700181 u8 is_ip4; /**< set if uses ip4 networking */
182} app_session_transport_t;
183
Florin Coras7e12d942018-06-27 14:32:43 -0700184#define foreach_app_session_field \
185 _(svm_fifo_t, *rx_fifo) /**< rx fifo */ \
186 _(svm_fifo_t, *tx_fifo) /**< tx fifo */ \
187 _(session_type_t, session_type) /**< session type */ \
188 _(volatile u8, session_state) /**< session state */ \
189 _(u32, session_index) /**< index in owning pool */ \
190 _(app_session_transport_t, transport) /**< transport info */ \
Florin Coras3c2fed52018-07-04 04:15:05 -0700191 _(svm_msg_q_t, *vpp_evt_q) /**< vpp event queue */ \
Florin Coras7e12d942018-06-27 14:32:43 -0700192 _(u8, is_dgram) /**< flag for dgram mode */ \
193
194typedef struct
Florin Coras7fb0fe12018-04-09 09:24:52 -0700195{
Florin Coras7e12d942018-06-27 14:32:43 -0700196#define _(type, name) type name;
197 foreach_app_session_field
198#undef _
Florin Coras7fb0fe12018-04-09 09:24:52 -0700199} app_session_t;
200
Florin Coras52207f12018-07-12 14:48:06 -0700201typedef struct session_accepted_msg_
202{
203 u32 context;
204 u64 listener_handle;
205 u64 handle;
206 u64 server_rx_fifo;
207 u64 server_tx_fifo;
208 u64 vpp_event_queue_address;
209 u64 server_event_queue_address;
Florin Coras54693d22018-07-17 10:46:29 -0700210 u64 client_event_queue_address;
Florin Coras52207f12018-07-12 14:48:06 -0700211 u16 port;
212 u8 is_ip4;
213 u8 ip[16];
Florin Coras54693d22018-07-17 10:46:29 -0700214} __clib_packed session_accepted_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700215
216typedef struct session_accepted_reply_msg_
217{
218 u32 context;
219 i32 retval;
220 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700221} __clib_packed session_accepted_reply_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700222
223/* Make sure this is not too large, otherwise it won't fit when dequeued in
224 * the session queue node */
225STATIC_ASSERT (sizeof (session_accepted_reply_msg_t) <= 16, "accept reply");
226
227typedef struct session_connected_msg_
228{
229 u32 context;
230 i32 retval;
231 u64 handle;
232 u64 server_rx_fifo;
233 u64 server_tx_fifo;
234 u64 vpp_event_queue_address;
235 u64 client_event_queue_address;
Florin Coras54693d22018-07-17 10:46:29 -0700236 u64 server_event_queue_address;
Florin Coras52207f12018-07-12 14:48:06 -0700237 u32 segment_size;
238 u8 segment_name_length;
239 u8 segment_name[64];
240 u8 lcl_ip[16];
241 u8 is_ip4;
242 u16 lcl_port;
Florin Coras54693d22018-07-17 10:46:29 -0700243} __clib_packed session_connected_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700244
245typedef struct session_disconnected_msg_
246{
247 u32 client_index;
248 u32 context;
249 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700250} __clib_packed session_disconnected_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700251
252typedef struct session_disconnected_reply_msg_
253{
254 u32 context;
255 i32 retval;
256 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700257} __clib_packed session_disconnected_reply_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700258
259typedef struct session_reset_msg_
260{
261 u32 client_index;
262 u32 context;
263 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700264} __clib_packed session_reset_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700265
266typedef struct session_reset_reply_msg_
267{
268 u32 client_index;
269 u32 context;
270 i32 retval;
271 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700272} __clib_packed session_reset_reply_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700273
274typedef struct app_session_event_
275{
276 svm_msg_q_msg_t msg;
277 session_event_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -0700278} __clib_packed app_session_evt_t;
Florin Coras52207f12018-07-12 14:48:06 -0700279
280static inline void
281app_alloc_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt,
282 u8 evt_type)
283{
284 svm_msg_q_lock_and_alloc_msg_w_ring (mq,
285 SESSION_MQ_CTRL_EVT_RING,
286 SVM_Q_WAIT, &app_evt->msg);
287 svm_msg_q_unlock (mq);
288 app_evt->evt = svm_msg_q_msg_data (mq, &app_evt->msg);
289 memset (app_evt->evt, 0, sizeof (*app_evt->evt));
290 app_evt->evt->event_type = evt_type;
291}
292
293static inline void
294app_send_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt)
295{
296 svm_msg_q_add (mq, &app_evt->msg, SVM_Q_WAIT);
297}
298
Florin Coras3c2fed52018-07-04 04:15:05 -0700299/**
300 * Send fifo io event to vpp worker thread
301 *
302 * Because there may be multiple writers to one of vpp's queues, this
303 * protects message allocation and enqueueing.
304 *
305 * @param mq vpp message queue
306 * @param f fifo for which the event is sent
307 * @param evt_type type of event
308 * @param noblock flag to indicate is request is blocking or not
309 * @return 0 if success, negative integer otherwise
310 */
311static inline int
312app_send_io_evt_to_vpp (svm_msg_q_t * mq, svm_fifo_t * f, u8 evt_type,
313 u8 noblock)
314{
Florin Coras52207f12018-07-12 14:48:06 -0700315 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -0700316 svm_msg_q_msg_t msg;
317
318 if (noblock)
319 {
320 if (svm_msg_q_try_lock (mq))
321 return -1;
322 if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
323 {
324 svm_msg_q_unlock (mq);
325 return -2;
326 }
327 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
328 if (PREDICT_FALSE (svm_msg_q_msg_is_invalid (&msg)))
329 {
330 svm_msg_q_unlock (mq);
331 return -2;
332 }
Florin Coras52207f12018-07-12 14:48:06 -0700333 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700334 evt->fifo = f;
335 evt->event_type = evt_type;
Florin Coras52207f12018-07-12 14:48:06 -0700336 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700337 return 0;
338 }
339 else
340 {
341 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -0700342 while (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING))
343 svm_msg_q_wait (mq);
Florin Coras3c2fed52018-07-04 04:15:05 -0700344 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
Florin Coras52207f12018-07-12 14:48:06 -0700345 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700346 evt->fifo = f;
347 evt->event_type = evt_type;
348 if (svm_msg_q_is_full (mq))
349 svm_msg_q_wait (mq);
Florin Coras52207f12018-07-12 14:48:06 -0700350 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700351 return 0;
352 }
353}
354
Florin Coras7fb0fe12018-04-09 09:24:52 -0700355always_inline int
356app_send_dgram_raw (svm_fifo_t * f, app_session_transport_t * at,
Florin Coras460dce62018-07-27 05:45:06 -0700357 svm_msg_q_t * vpp_evt_q, u8 * data, u32 len, u8 evt_type,
358 u8 noblock)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700359{
360 u32 max_enqueue, actual_write;
361 session_dgram_hdr_t hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700362 int rv;
363
364 max_enqueue = svm_fifo_max_enqueue (f);
Florin Coras8e43d042018-05-04 15:46:57 -0700365 if (max_enqueue <= sizeof (session_dgram_hdr_t))
Florin Coras7fb0fe12018-04-09 09:24:52 -0700366 return 0;
367
368 max_enqueue -= sizeof (session_dgram_hdr_t);
369 actual_write = clib_min (len, max_enqueue);
370 hdr.data_length = actual_write;
371 hdr.data_offset = 0;
372 clib_memcpy (&hdr.rmt_ip, &at->rmt_ip, sizeof (ip46_address_t));
373 hdr.is_ip4 = at->is_ip4;
374 hdr.rmt_port = at->rmt_port;
375 clib_memcpy (&hdr.lcl_ip, &at->lcl_ip, sizeof (ip46_address_t));
376 hdr.lcl_port = at->lcl_port;
377 rv = svm_fifo_enqueue_nowait (f, sizeof (hdr), (u8 *) & hdr);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700378 ASSERT (rv == sizeof (hdr));
379
380 if ((rv = svm_fifo_enqueue_nowait (f, actual_write, data)) > 0)
381 {
382 if (svm_fifo_set_event (f))
Florin Coras460dce62018-07-27 05:45:06 -0700383 app_send_io_evt_to_vpp (vpp_evt_q, f, evt_type, noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700384 }
Florin Coras8e43d042018-05-04 15:46:57 -0700385 ASSERT (rv);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700386 return rv;
387}
388
389always_inline int
390app_send_dgram (app_session_t * s, u8 * data, u32 len, u8 noblock)
391{
392 return app_send_dgram_raw (s->tx_fifo, &s->transport, s->vpp_evt_q, data,
Florin Coras460dce62018-07-27 05:45:06 -0700393 len, FIFO_EVENT_APP_TX, noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700394}
395
396always_inline int
Florin Coras3c2fed52018-07-04 04:15:05 -0700397app_send_stream_raw (svm_fifo_t * f, svm_msg_q_t * vpp_evt_q, u8 * data,
Florin Coras460dce62018-07-27 05:45:06 -0700398 u32 len, u8 evt_type, u8 noblock)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700399{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700400 int rv;
401
402 if ((rv = svm_fifo_enqueue_nowait (f, len, data)) > 0)
403 {
404 if (svm_fifo_set_event (f))
Florin Coras460dce62018-07-27 05:45:06 -0700405 app_send_io_evt_to_vpp (vpp_evt_q, f, evt_type, noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700406 }
407 return rv;
408}
409
410always_inline int
411app_send_stream (app_session_t * s, u8 * data, u32 len, u8 noblock)
412{
Florin Coras460dce62018-07-27 05:45:06 -0700413 return app_send_stream_raw (s->tx_fifo, s->vpp_evt_q, data, len,
414 FIFO_EVENT_APP_TX, noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700415}
416
417always_inline int
418app_send (app_session_t * s, u8 * data, u32 len, u8 noblock)
419{
420 if (s->is_dgram)
421 return app_send_dgram (s, data, len, noblock);
422 return app_send_stream (s, data, len, noblock);
423}
424
425always_inline int
426app_recv_dgram_raw (svm_fifo_t * f, u8 * buf, u32 len,
Florin Coras460dce62018-07-27 05:45:06 -0700427 app_session_transport_t * at, u8 clear_evt, u8 peek)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700428{
429 session_dgram_pre_hdr_t ph;
430 u32 max_deq;
431 int rv;
432
Florin Coras7fb0fe12018-04-09 09:24:52 -0700433 max_deq = svm_fifo_max_dequeue (f);
434 if (max_deq < sizeof (session_dgram_hdr_t))
Florin Coras460dce62018-07-27 05:45:06 -0700435 {
436 if (clear_evt)
437 svm_fifo_unset_event (f);
438 return 0;
439 }
440
441 if (clear_evt)
442 svm_fifo_unset_event (f);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700443
444 svm_fifo_peek (f, 0, sizeof (ph), (u8 *) & ph);
445 ASSERT (ph.data_length >= ph.data_offset);
446 if (!ph.data_offset)
447 svm_fifo_peek (f, sizeof (ph), sizeof (*at), (u8 *) at);
448 len = clib_min (len, ph.data_length - ph.data_offset);
449 rv = svm_fifo_peek (f, ph.data_offset + SESSION_CONN_HDR_LEN, len, buf);
Florin Coras460dce62018-07-27 05:45:06 -0700450 if (peek)
451 return rv;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700452 ph.data_offset += rv;
453 if (ph.data_offset == ph.data_length)
454 svm_fifo_dequeue_drop (f, ph.data_length + SESSION_CONN_HDR_LEN);
455 else
456 svm_fifo_overwrite_head (f, (u8 *) & ph, sizeof (ph));
457 return rv;
458}
459
460always_inline int
461app_recv_dgram (app_session_t * s, u8 * buf, u32 len)
462{
Florin Coras460dce62018-07-27 05:45:06 -0700463 return app_recv_dgram_raw (s->rx_fifo, buf, len, &s->transport, 1, 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700464}
465
466always_inline int
Florin Coras460dce62018-07-27 05:45:06 -0700467app_recv_stream_raw (svm_fifo_t * f, u8 * buf, u32 len, u8 clear_evt, u8 peek)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700468{
469 if (clear_evt)
470 svm_fifo_unset_event (f);
Florin Coras460dce62018-07-27 05:45:06 -0700471
472 if (peek)
473 return svm_fifo_peek (f, 0, len, buf);
474
Florin Coras7fb0fe12018-04-09 09:24:52 -0700475 return svm_fifo_dequeue_nowait (f, len, buf);
476}
477
478always_inline int
479app_recv_stream (app_session_t * s, u8 * buf, u32 len)
480{
Florin Coras460dce62018-07-27 05:45:06 -0700481 return app_recv_stream_raw (s->rx_fifo, buf, len, 1, 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700482}
483
484always_inline int
485app_recv (app_session_t * s, u8 * data, u32 len)
486{
487 if (s->is_dgram)
488 return app_recv_dgram (s, data, len);
489 return app_recv_stream (s, data, len);
490}
491
Dave Barach68b0fb02017-02-28 15:15:56 -0500492#endif /* __included_uri_h__ */
493
494/*
495 * fd.io coding-style-patch-verification: ON
496 *
497 * Local Variables:
498 * eval: (c-set-style "gnu")
499 * End:
500 */