blob: 1f481dcf85ed177c361ba5b07a5b7c589df12d40 [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 Coras15531972018-08-12 23:50:53 -070026#define _(_type, _name) _type _name;
27 foreach_app_init_args
28#undef _
29 ssvm_private_t * segment;
Florin Coras99368312018-08-02 10:45:44 -070030 svm_msg_q_t *app_evt_q;
Florin Coras6cf30ad2017-04-04 23:08:23 -070031} vnet_app_attach_args_t;
32
33typedef struct _vnet_app_detach_args_t
34{
35 u32 app_index;
36} vnet_app_detach_args_t;
37
Dave Barach68b0fb02017-02-28 15:15:56 -050038typedef struct _vnet_bind_args_t
39{
40 union
41 {
Florin Coras15531972018-08-12 23:50:53 -070042 session_endpoint_extended_t sep_ext;
Florin Coras3cbc04b2017-10-02 00:18:51 -070043 session_endpoint_t sep;
Florin Coras15531972018-08-12 23:50:53 -070044 char *uri;
Dave Barach68b0fb02017-02-28 15:15:56 -050045 };
46
Florin Coras6cf30ad2017-04-04 23:08:23 -070047 u32 app_index;
Florin Coras15531972018-08-12 23:50:53 -070048 u32 wrk_map_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050049
50 /*
51 * Results
52 */
53 char *segment_name;
54 u32 segment_name_length;
55 u64 server_event_queue_address;
56 u64 handle;
57} vnet_bind_args_t;
58
59typedef struct _vnet_unbind_args_t
60{
61 union
62 {
63 char *uri;
Florin Coras15531972018-08-12 23:50:53 -070064 u64 handle; /**< Session handle */
Dave Barach68b0fb02017-02-28 15:15:56 -050065 };
Florin Coras15531972018-08-12 23:50:53 -070066 u32 app_index; /**< Owning application index */
67 u32 app_wrk_index; /**< App's local pool worker index */
Dave Barach68b0fb02017-02-28 15:15:56 -050068} vnet_unbind_args_t;
69
70typedef struct _vnet_connect_args
71{
Florin Coras371ca502018-02-21 12:07:41 -080072 union
73 {
Florin Coras15531972018-08-12 23:50:53 -070074 session_endpoint_extended_t sep_ext;
75 session_endpoint_t sep;
Florin Coras371ca502018-02-21 12:07:41 -080076 char *uri;
Florin Coras371ca502018-02-21 12:07:41 -080077 };
Florin Coras6cf30ad2017-04-04 23:08:23 -070078 u32 app_index;
Florin Coras15531972018-08-12 23:50:53 -070079 u32 wrk_map_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050080 u32 api_context;
Dave Barach68b0fb02017-02-28 15:15:56 -050081
Florin Corasf8f516a2018-02-08 15:10:09 -080082 session_handle_t session_handle;
Dave Barach68b0fb02017-02-28 15:15:56 -050083} vnet_connect_args_t;
84
85typedef struct _vnet_disconnect_args_t
86{
Florin Corasf8f516a2018-02-08 15:10:09 -080087 session_handle_t handle;
Florin Coras6cf30ad2017-04-04 23:08:23 -070088 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050089} vnet_disconnect_args_t;
90
Florin Coras371ca502018-02-21 12:07:41 -080091typedef struct _vnet_application_add_tls_cert_args_t
92{
93 u32 app_index;
94 u8 *cert;
95} vnet_app_add_tls_cert_args_t;
96
97typedef struct _vnet_application_add_tls_key_args_t
98{
99 u32 app_index;
100 u8 *key;
101} vnet_app_add_tls_key_args_t;
102
Florin Coras6cf30ad2017-04-04 23:08:23 -0700103/* Application attach options */
Dave Barach68b0fb02017-02-28 15:15:56 -0500104typedef enum
105{
Florin Corasa5464812017-04-19 13:00:05 -0700106 APP_OPTIONS_FLAGS,
Florin Corasff6e7692017-12-11 04:59:01 -0800107 APP_OPTIONS_EVT_QUEUE_SIZE,
108 APP_OPTIONS_SEGMENT_SIZE,
109 APP_OPTIONS_ADD_SEGMENT_SIZE,
Dave Barach2c25a622017-06-26 11:35:07 -0400110 APP_OPTIONS_PRIVATE_SEGMENT_COUNT,
Florin Corasff6e7692017-12-11 04:59:01 -0800111 APP_OPTIONS_RX_FIFO_SIZE,
112 APP_OPTIONS_TX_FIFO_SIZE,
113 APP_OPTIONS_PREALLOC_FIFO_PAIRS,
Florin Corascea194d2017-10-02 00:18:51 -0700114 APP_OPTIONS_NAMESPACE,
115 APP_OPTIONS_NAMESPACE_SECRET,
Florin Coras7999e832017-10-31 01:51:04 -0700116 APP_OPTIONS_PROXY_TRANSPORT,
Florin Corasff6e7692017-12-11 04:59:01 -0800117 APP_OPTIONS_ACCEPT_COOKIE,
Florin Coras58d36f02018-03-09 13:05:53 -0800118 APP_OPTIONS_TLS_ENGINE,
Florin Corasff6e7692017-12-11 04:59:01 -0800119 APP_OPTIONS_N_OPTIONS
Florin Coras6cf30ad2017-04-04 23:08:23 -0700120} app_attach_options_index_t;
Dave Barach68b0fb02017-02-28 15:15:56 -0500121
Florin Corasa5464812017-04-19 13:00:05 -0700122#define foreach_app_options_flags \
Florin Corascea194d2017-10-02 00:18:51 -0700123 _(ACCEPT_REDIRECT, "Use FIFO with redirects") \
Florin Corasa5464812017-04-19 13:00:05 -0700124 _(ADD_SEGMENT, "Add segment and signal app if needed") \
Florin Coras7999e832017-10-31 01:51:04 -0700125 _(IS_BUILTIN, "Application is builtin") \
Florin Coras7e12d942018-06-27 14:32:43 -0700126 _(IS_PROXY, "Application is proxying") \
Florin Corascea194d2017-10-02 00:18:51 -0700127 _(USE_GLOBAL_SCOPE, "App can use global session scope") \
Florin Coras3c2fed52018-07-04 04:15:05 -0700128 _(USE_LOCAL_SCOPE, "App can use local session scope") \
Florin Coras52207f12018-07-12 14:48:06 -0700129 _(USE_MQ_FOR_CTRL_MSGS, "Use message queue for ctr msgs") \
Florin Coras99368312018-08-02 10:45:44 -0700130 _(EVT_MQ_USE_EVENTFD, "Use eventfds for signaling") \
Dave Barach68b0fb02017-02-28 15:15:56 -0500131
Florin Corasa5464812017-04-19 13:00:05 -0700132typedef enum _app_options
133{
134#define _(sym, str) APP_OPTIONS_##sym,
135 foreach_app_options_flags
136#undef _
137} app_options_t;
138
139typedef enum _app_options_flags
140{
141#define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym,
142 foreach_app_options_flags
143#undef _
144} app_options_flags_t;
145
Florin Coras99368312018-08-02 10:45:44 -0700146#define foreach_fd_type \
147 _(VPP_MQ_SEGMENT, "Fd for vpp's event mq segment") \
148 _(MEMFD_SEGMENT, "Fd for memfd segment") \
149 _(MQ_EVENTFD, "Event fd used by message queue") \
150 _(VPP_MQ_EVENTFD, "Event fd used by vpp's message queue") \
151
152typedef enum session_fd_type_
153{
154#define _(sym, str) SESSION_FD_##sym,
155 foreach_fd_type
156#undef _
157 SESSION_N_FD_TYPE
158} session_fd_type_t;
159
160typedef enum session_fd_flag_
161{
162#define _(sym, str) SESSION_FD_F_##sym = 1 << SESSION_FD_##sym,
163 foreach_fd_type
164#undef _
165} session_fd_flag_t;
166
Dave Barach68b0fb02017-02-28 15:15:56 -0500167int vnet_bind_uri (vnet_bind_args_t *);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700168int vnet_unbind_uri (vnet_unbind_args_t * a);
Florin Corascea194d2017-10-02 00:18:51 -0700169clib_error_t *vnet_connect_uri (vnet_connect_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500170
Florin Coras371ca502018-02-21 12:07:41 -0800171clib_error_t *vnet_application_attach (vnet_app_attach_args_t * a);
Florin Corascea194d2017-10-02 00:18:51 -0700172clib_error_t *vnet_bind (vnet_bind_args_t * a);
173clib_error_t *vnet_connect (vnet_connect_args_t * a);
174clib_error_t *vnet_unbind (vnet_unbind_args_t * a);
Florin Coras371ca502018-02-21 12:07:41 -0800175int vnet_application_detach (vnet_app_detach_args_t * a);
176int vnet_disconnect_session (vnet_disconnect_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500177
Florin Coras371ca502018-02-21 12:07:41 -0800178clib_error_t *vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a);
179clib_error_t *vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500180
Florin Coras371ca502018-02-21 12:07:41 -0800181extern const char test_srv_crt_rsa[];
182extern const u32 test_srv_crt_rsa_len;
183extern const char test_srv_key_rsa[];
184extern const u32 test_srv_key_rsa_len;
Florin Corasf8f516a2018-02-08 15:10:09 -0800185
Florin Coras7fb0fe12018-04-09 09:24:52 -0700186typedef struct app_session_transport_
187{
188 ip46_address_t rmt_ip; /**< remote ip */
189 ip46_address_t lcl_ip; /**< local ip */
Florin Coras7e12d942018-06-27 14:32:43 -0700190 u16 rmt_port; /**< remote port (network order) */
191 u16 lcl_port; /**< local port (network order) */
Florin Coras7fb0fe12018-04-09 09:24:52 -0700192 u8 is_ip4; /**< set if uses ip4 networking */
193} app_session_transport_t;
194
Florin Coras7e12d942018-06-27 14:32:43 -0700195#define foreach_app_session_field \
196 _(svm_fifo_t, *rx_fifo) /**< rx fifo */ \
197 _(svm_fifo_t, *tx_fifo) /**< tx fifo */ \
198 _(session_type_t, session_type) /**< session type */ \
199 _(volatile u8, session_state) /**< session state */ \
200 _(u32, session_index) /**< index in owning pool */ \
201 _(app_session_transport_t, transport) /**< transport info */ \
Florin Coras3c2fed52018-07-04 04:15:05 -0700202 _(svm_msg_q_t, *vpp_evt_q) /**< vpp event queue */ \
Florin Coras7e12d942018-06-27 14:32:43 -0700203 _(u8, is_dgram) /**< flag for dgram mode */ \
204
205typedef struct
Florin Coras7fb0fe12018-04-09 09:24:52 -0700206{
Florin Coras7e12d942018-06-27 14:32:43 -0700207#define _(type, name) type name;
208 foreach_app_session_field
209#undef _
Florin Coras7fb0fe12018-04-09 09:24:52 -0700210} app_session_t;
211
Florin Coras60116992018-08-27 09:52:18 -0700212typedef struct session_bound_msg_
213{
214 u32 context;
215 u64 handle;
216 i32 retval;
217 u8 lcl_is_ip4;
218 u8 lcl_ip[16];
219 u16 lcl_port;
220 u64 rx_fifo;
221 u64 tx_fifo;
222 u64 vpp_evt_q;
223 u32 segment_size;
224 u8 segment_name_length;
225 u8 segment_name[128];
226} __clib_packed session_bound_msg_t;
227
Florin Coras52207f12018-07-12 14:48:06 -0700228typedef struct session_accepted_msg_
229{
230 u32 context;
231 u64 listener_handle;
232 u64 handle;
233 u64 server_rx_fifo;
234 u64 server_tx_fifo;
235 u64 vpp_event_queue_address;
236 u64 server_event_queue_address;
Florin Coras54693d22018-07-17 10:46:29 -0700237 u64 client_event_queue_address;
Florin Coras52207f12018-07-12 14:48:06 -0700238 u16 port;
239 u8 is_ip4;
240 u8 ip[16];
Florin Coras54693d22018-07-17 10:46:29 -0700241} __clib_packed session_accepted_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700242
243typedef struct session_accepted_reply_msg_
244{
245 u32 context;
246 i32 retval;
247 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700248} __clib_packed session_accepted_reply_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700249
250/* Make sure this is not too large, otherwise it won't fit when dequeued in
251 * the session queue node */
252STATIC_ASSERT (sizeof (session_accepted_reply_msg_t) <= 16, "accept reply");
253
254typedef struct session_connected_msg_
255{
256 u32 context;
257 i32 retval;
258 u64 handle;
259 u64 server_rx_fifo;
260 u64 server_tx_fifo;
261 u64 vpp_event_queue_address;
262 u64 client_event_queue_address;
Florin Coras54693d22018-07-17 10:46:29 -0700263 u64 server_event_queue_address;
Florin Coras52207f12018-07-12 14:48:06 -0700264 u32 segment_size;
265 u8 segment_name_length;
266 u8 segment_name[64];
267 u8 lcl_ip[16];
268 u8 is_ip4;
269 u16 lcl_port;
Florin Coras54693d22018-07-17 10:46:29 -0700270} __clib_packed session_connected_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700271
272typedef struct session_disconnected_msg_
273{
274 u32 client_index;
275 u32 context;
276 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700277} __clib_packed session_disconnected_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700278
279typedef struct session_disconnected_reply_msg_
280{
281 u32 context;
282 i32 retval;
283 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700284} __clib_packed session_disconnected_reply_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700285
286typedef struct session_reset_msg_
287{
288 u32 client_index;
289 u32 context;
290 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700291} __clib_packed session_reset_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700292
293typedef struct session_reset_reply_msg_
294{
295 u32 client_index;
296 u32 context;
297 i32 retval;
298 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700299} __clib_packed session_reset_reply_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700300
301typedef struct app_session_event_
302{
303 svm_msg_q_msg_t msg;
304 session_event_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -0700305} __clib_packed app_session_evt_t;
Florin Coras52207f12018-07-12 14:48:06 -0700306
307static inline void
308app_alloc_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt,
309 u8 evt_type)
310{
311 svm_msg_q_lock_and_alloc_msg_w_ring (mq,
312 SESSION_MQ_CTRL_EVT_RING,
313 SVM_Q_WAIT, &app_evt->msg);
314 svm_msg_q_unlock (mq);
315 app_evt->evt = svm_msg_q_msg_data (mq, &app_evt->msg);
316 memset (app_evt->evt, 0, sizeof (*app_evt->evt));
317 app_evt->evt->event_type = evt_type;
318}
319
320static inline void
321app_send_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt)
322{
323 svm_msg_q_add (mq, &app_evt->msg, SVM_Q_WAIT);
324}
325
Florin Coras3c2fed52018-07-04 04:15:05 -0700326/**
327 * Send fifo io event to vpp worker thread
328 *
329 * Because there may be multiple writers to one of vpp's queues, this
330 * protects message allocation and enqueueing.
331 *
332 * @param mq vpp message queue
333 * @param f fifo for which the event is sent
334 * @param evt_type type of event
335 * @param noblock flag to indicate is request is blocking or not
336 * @return 0 if success, negative integer otherwise
337 */
338static inline int
339app_send_io_evt_to_vpp (svm_msg_q_t * mq, svm_fifo_t * f, u8 evt_type,
340 u8 noblock)
341{
Florin Coras52207f12018-07-12 14:48:06 -0700342 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -0700343 svm_msg_q_msg_t msg;
344
345 if (noblock)
346 {
347 if (svm_msg_q_try_lock (mq))
348 return -1;
349 if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
350 {
351 svm_msg_q_unlock (mq);
352 return -2;
353 }
354 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
355 if (PREDICT_FALSE (svm_msg_q_msg_is_invalid (&msg)))
356 {
357 svm_msg_q_unlock (mq);
358 return -2;
359 }
Florin Coras52207f12018-07-12 14:48:06 -0700360 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700361 evt->fifo = f;
362 evt->event_type = evt_type;
Florin Coras52207f12018-07-12 14:48:06 -0700363 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700364 return 0;
365 }
366 else
367 {
368 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -0700369 while (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING))
370 svm_msg_q_wait (mq);
Florin Coras3c2fed52018-07-04 04:15:05 -0700371 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
Florin Coras52207f12018-07-12 14:48:06 -0700372 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700373 evt->fifo = f;
374 evt->event_type = evt_type;
375 if (svm_msg_q_is_full (mq))
376 svm_msg_q_wait (mq);
Florin Coras52207f12018-07-12 14:48:06 -0700377 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700378 return 0;
379 }
380}
381
Florin Coras7fb0fe12018-04-09 09:24:52 -0700382always_inline int
383app_send_dgram_raw (svm_fifo_t * f, app_session_transport_t * at,
Florin Coras460dce62018-07-27 05:45:06 -0700384 svm_msg_q_t * vpp_evt_q, u8 * data, u32 len, u8 evt_type,
385 u8 noblock)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700386{
387 u32 max_enqueue, actual_write;
388 session_dgram_hdr_t hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700389 int rv;
390
391 max_enqueue = svm_fifo_max_enqueue (f);
Florin Coras8e43d042018-05-04 15:46:57 -0700392 if (max_enqueue <= sizeof (session_dgram_hdr_t))
Florin Coras7fb0fe12018-04-09 09:24:52 -0700393 return 0;
394
395 max_enqueue -= sizeof (session_dgram_hdr_t);
396 actual_write = clib_min (len, max_enqueue);
397 hdr.data_length = actual_write;
398 hdr.data_offset = 0;
399 clib_memcpy (&hdr.rmt_ip, &at->rmt_ip, sizeof (ip46_address_t));
400 hdr.is_ip4 = at->is_ip4;
401 hdr.rmt_port = at->rmt_port;
402 clib_memcpy (&hdr.lcl_ip, &at->lcl_ip, sizeof (ip46_address_t));
403 hdr.lcl_port = at->lcl_port;
404 rv = svm_fifo_enqueue_nowait (f, sizeof (hdr), (u8 *) & hdr);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700405 ASSERT (rv == sizeof (hdr));
406
407 if ((rv = svm_fifo_enqueue_nowait (f, actual_write, data)) > 0)
408 {
409 if (svm_fifo_set_event (f))
Florin Coras460dce62018-07-27 05:45:06 -0700410 app_send_io_evt_to_vpp (vpp_evt_q, f, evt_type, noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700411 }
Florin Coras8e43d042018-05-04 15:46:57 -0700412 ASSERT (rv);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700413 return rv;
414}
415
416always_inline int
417app_send_dgram (app_session_t * s, u8 * data, u32 len, u8 noblock)
418{
419 return app_send_dgram_raw (s->tx_fifo, &s->transport, s->vpp_evt_q, data,
Florin Coras460dce62018-07-27 05:45:06 -0700420 len, FIFO_EVENT_APP_TX, noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700421}
422
423always_inline int
Florin Coras3c2fed52018-07-04 04:15:05 -0700424app_send_stream_raw (svm_fifo_t * f, svm_msg_q_t * vpp_evt_q, u8 * data,
Florin Coras460dce62018-07-27 05:45:06 -0700425 u32 len, u8 evt_type, u8 noblock)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700426{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700427 int rv;
428
429 if ((rv = svm_fifo_enqueue_nowait (f, len, data)) > 0)
430 {
431 if (svm_fifo_set_event (f))
Florin Coras460dce62018-07-27 05:45:06 -0700432 app_send_io_evt_to_vpp (vpp_evt_q, f, evt_type, noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700433 }
434 return rv;
435}
436
437always_inline int
438app_send_stream (app_session_t * s, u8 * data, u32 len, u8 noblock)
439{
Florin Coras460dce62018-07-27 05:45:06 -0700440 return app_send_stream_raw (s->tx_fifo, s->vpp_evt_q, data, len,
441 FIFO_EVENT_APP_TX, noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700442}
443
444always_inline int
445app_send (app_session_t * s, u8 * data, u32 len, u8 noblock)
446{
447 if (s->is_dgram)
448 return app_send_dgram (s, data, len, noblock);
449 return app_send_stream (s, data, len, noblock);
450}
451
452always_inline int
453app_recv_dgram_raw (svm_fifo_t * f, u8 * buf, u32 len,
Florin Coras460dce62018-07-27 05:45:06 -0700454 app_session_transport_t * at, u8 clear_evt, u8 peek)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700455{
456 session_dgram_pre_hdr_t ph;
457 u32 max_deq;
458 int rv;
459
Florin Coras7fb0fe12018-04-09 09:24:52 -0700460 max_deq = svm_fifo_max_dequeue (f);
461 if (max_deq < sizeof (session_dgram_hdr_t))
Florin Coras460dce62018-07-27 05:45:06 -0700462 {
463 if (clear_evt)
464 svm_fifo_unset_event (f);
465 return 0;
466 }
467
468 if (clear_evt)
469 svm_fifo_unset_event (f);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700470
471 svm_fifo_peek (f, 0, sizeof (ph), (u8 *) & ph);
472 ASSERT (ph.data_length >= ph.data_offset);
473 if (!ph.data_offset)
474 svm_fifo_peek (f, sizeof (ph), sizeof (*at), (u8 *) at);
475 len = clib_min (len, ph.data_length - ph.data_offset);
476 rv = svm_fifo_peek (f, ph.data_offset + SESSION_CONN_HDR_LEN, len, buf);
Florin Coras460dce62018-07-27 05:45:06 -0700477 if (peek)
478 return rv;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700479 ph.data_offset += rv;
480 if (ph.data_offset == ph.data_length)
481 svm_fifo_dequeue_drop (f, ph.data_length + SESSION_CONN_HDR_LEN);
482 else
483 svm_fifo_overwrite_head (f, (u8 *) & ph, sizeof (ph));
484 return rv;
485}
486
487always_inline int
488app_recv_dgram (app_session_t * s, u8 * buf, u32 len)
489{
Florin Coras460dce62018-07-27 05:45:06 -0700490 return app_recv_dgram_raw (s->rx_fifo, buf, len, &s->transport, 1, 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700491}
492
493always_inline int
Florin Coras460dce62018-07-27 05:45:06 -0700494app_recv_stream_raw (svm_fifo_t * f, u8 * buf, u32 len, u8 clear_evt, u8 peek)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700495{
496 if (clear_evt)
497 svm_fifo_unset_event (f);
Florin Coras460dce62018-07-27 05:45:06 -0700498
499 if (peek)
500 return svm_fifo_peek (f, 0, len, buf);
501
Florin Coras7fb0fe12018-04-09 09:24:52 -0700502 return svm_fifo_dequeue_nowait (f, len, buf);
503}
504
505always_inline int
506app_recv_stream (app_session_t * s, u8 * buf, u32 len)
507{
Florin Coras460dce62018-07-27 05:45:06 -0700508 return app_recv_stream_raw (s->rx_fifo, buf, len, 1, 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700509}
510
511always_inline int
512app_recv (app_session_t * s, u8 * data, u32 len)
513{
514 if (s->is_dgram)
515 return app_recv_dgram (s, data, len);
516 return app_recv_stream (s, data, len);
517}
518
Dave Barach68b0fb02017-02-28 15:15:56 -0500519#endif /* __included_uri_h__ */
520
521/*
522 * fd.io coding-style-patch-verification: ON
523 *
524 * Local Variables:
525 * eval: (c-set-style "gnu")
526 * End:
527 */