blob: 9c48faa8abc022075ce2949493e7c3c36d32bd91 [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 Corasd85de682018-11-29 17:02:29 -080031 u64 segment_handle;
Florin Coras6cf30ad2017-04-04 23:08:23 -070032} vnet_app_attach_args_t;
33
34typedef struct _vnet_app_detach_args_t
35{
36 u32 app_index;
Florin Coras053a0e42018-11-13 15:52:38 -080037 u32 api_client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -070038} vnet_app_detach_args_t;
39
Dave Barach68b0fb02017-02-28 15:15:56 -050040typedef struct _vnet_bind_args_t
41{
42 union
43 {
Florin Coras5665ced2018-10-25 18:03:45 -070044 session_endpoint_cfg_t sep_ext;
Florin Coras3cbc04b2017-10-02 00:18:51 -070045 session_endpoint_t sep;
Florin Coras15531972018-08-12 23:50:53 -070046 char *uri;
Dave Barach68b0fb02017-02-28 15:15:56 -050047 };
48
Florin Coras6cf30ad2017-04-04 23:08:23 -070049 u32 app_index;
Florin Coras15531972018-08-12 23:50:53 -070050 u32 wrk_map_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050051
52 /*
53 * Results
54 */
55 char *segment_name;
56 u32 segment_name_length;
57 u64 server_event_queue_address;
58 u64 handle;
59} vnet_bind_args_t;
60
61typedef struct _vnet_unbind_args_t
62{
63 union
64 {
65 char *uri;
Florin Coras15531972018-08-12 23:50:53 -070066 u64 handle; /**< Session handle */
Dave Barach68b0fb02017-02-28 15:15:56 -050067 };
Florin Coras15531972018-08-12 23:50:53 -070068 u32 app_index; /**< Owning application index */
Florin Corasab2f6db2018-08-31 14:31:41 -070069 u32 wrk_map_index; /**< App's local pool worker index */
Dave Barach68b0fb02017-02-28 15:15:56 -050070} vnet_unbind_args_t;
71
72typedef struct _vnet_connect_args
73{
Florin Coras371ca502018-02-21 12:07:41 -080074 union
75 {
Florin Coras5665ced2018-10-25 18:03:45 -070076 session_endpoint_cfg_t sep_ext;
Florin Coras15531972018-08-12 23:50:53 -070077 session_endpoint_t sep;
Florin Coras371ca502018-02-21 12:07:41 -080078 char *uri;
Florin Coras371ca502018-02-21 12:07:41 -080079 };
Florin Coras6cf30ad2017-04-04 23:08:23 -070080 u32 app_index;
Florin Coras15531972018-08-12 23:50:53 -070081 u32 wrk_map_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050082 u32 api_context;
Dave Barach68b0fb02017-02-28 15:15:56 -050083
Florin Corasf8f516a2018-02-08 15:10:09 -080084 session_handle_t session_handle;
Dave Barach68b0fb02017-02-28 15:15:56 -050085} vnet_connect_args_t;
86
87typedef struct _vnet_disconnect_args_t
88{
Florin Corasf8f516a2018-02-08 15:10:09 -080089 session_handle_t handle;
Florin Coras6cf30ad2017-04-04 23:08:23 -070090 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050091} vnet_disconnect_args_t;
92
Florin Coras371ca502018-02-21 12:07:41 -080093typedef struct _vnet_application_add_tls_cert_args_t
94{
95 u32 app_index;
96 u8 *cert;
97} vnet_app_add_tls_cert_args_t;
98
99typedef struct _vnet_application_add_tls_key_args_t
100{
101 u32 app_index;
102 u8 *key;
103} vnet_app_add_tls_key_args_t;
104
Florin Coras6cf30ad2017-04-04 23:08:23 -0700105/* Application attach options */
Dave Barach68b0fb02017-02-28 15:15:56 -0500106typedef enum
107{
Florin Corasa5464812017-04-19 13:00:05 -0700108 APP_OPTIONS_FLAGS,
Florin Corasff6e7692017-12-11 04:59:01 -0800109 APP_OPTIONS_EVT_QUEUE_SIZE,
110 APP_OPTIONS_SEGMENT_SIZE,
111 APP_OPTIONS_ADD_SEGMENT_SIZE,
Dave Barach2c25a622017-06-26 11:35:07 -0400112 APP_OPTIONS_PRIVATE_SEGMENT_COUNT,
Florin Corasff6e7692017-12-11 04:59:01 -0800113 APP_OPTIONS_RX_FIFO_SIZE,
114 APP_OPTIONS_TX_FIFO_SIZE,
115 APP_OPTIONS_PREALLOC_FIFO_PAIRS,
Florin Corascea194d2017-10-02 00:18:51 -0700116 APP_OPTIONS_NAMESPACE,
117 APP_OPTIONS_NAMESPACE_SECRET,
Florin Coras7999e832017-10-31 01:51:04 -0700118 APP_OPTIONS_PROXY_TRANSPORT,
Florin Corasff6e7692017-12-11 04:59:01 -0800119 APP_OPTIONS_ACCEPT_COOKIE,
Florin Coras58d36f02018-03-09 13:05:53 -0800120 APP_OPTIONS_TLS_ENGINE,
Florin Corasff6e7692017-12-11 04:59:01 -0800121 APP_OPTIONS_N_OPTIONS
Florin Coras6cf30ad2017-04-04 23:08:23 -0700122} app_attach_options_index_t;
Dave Barach68b0fb02017-02-28 15:15:56 -0500123
Florin Corasa5464812017-04-19 13:00:05 -0700124#define foreach_app_options_flags \
Florin Corascea194d2017-10-02 00:18:51 -0700125 _(ACCEPT_REDIRECT, "Use FIFO with redirects") \
Florin Corasa5464812017-04-19 13:00:05 -0700126 _(ADD_SEGMENT, "Add segment and signal app if needed") \
Florin Coras7999e832017-10-31 01:51:04 -0700127 _(IS_BUILTIN, "Application is builtin") \
Florin Corasda3eec12018-09-07 13:29:17 -0700128 _(IS_TRANSPORT_APP, "Application is a transport proto") \
Florin Coras7e12d942018-06-27 14:32:43 -0700129 _(IS_PROXY, "Application is proxying") \
Florin Corascea194d2017-10-02 00:18:51 -0700130 _(USE_GLOBAL_SCOPE, "App can use global session scope") \
Florin Coras3c2fed52018-07-04 04:15:05 -0700131 _(USE_LOCAL_SCOPE, "App can use local session scope") \
Florin Coras52207f12018-07-12 14:48:06 -0700132 _(USE_MQ_FOR_CTRL_MSGS, "Use message queue for ctr msgs") \
Florin Coras99368312018-08-02 10:45:44 -0700133 _(EVT_MQ_USE_EVENTFD, "Use eventfds for signaling") \
Dave Barach68b0fb02017-02-28 15:15:56 -0500134
Florin Corasa5464812017-04-19 13:00:05 -0700135typedef enum _app_options
136{
137#define _(sym, str) APP_OPTIONS_##sym,
138 foreach_app_options_flags
139#undef _
140} app_options_t;
141
142typedef enum _app_options_flags
143{
144#define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym,
145 foreach_app_options_flags
146#undef _
147} app_options_flags_t;
148
Florin Coras99368312018-08-02 10:45:44 -0700149#define foreach_fd_type \
150 _(VPP_MQ_SEGMENT, "Fd for vpp's event mq segment") \
151 _(MEMFD_SEGMENT, "Fd for memfd segment") \
152 _(MQ_EVENTFD, "Event fd used by message queue") \
153 _(VPP_MQ_EVENTFD, "Event fd used by vpp's message queue") \
154
155typedef enum session_fd_type_
156{
157#define _(sym, str) SESSION_FD_##sym,
158 foreach_fd_type
159#undef _
160 SESSION_N_FD_TYPE
161} session_fd_type_t;
162
163typedef enum session_fd_flag_
164{
165#define _(sym, str) SESSION_FD_F_##sym = 1 << SESSION_FD_##sym,
166 foreach_fd_type
167#undef _
168} session_fd_flag_t;
169
Dave Barach68b0fb02017-02-28 15:15:56 -0500170int vnet_bind_uri (vnet_bind_args_t *);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700171int vnet_unbind_uri (vnet_unbind_args_t * a);
Florin Corascea194d2017-10-02 00:18:51 -0700172clib_error_t *vnet_connect_uri (vnet_connect_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500173
Florin Coras371ca502018-02-21 12:07:41 -0800174clib_error_t *vnet_application_attach (vnet_app_attach_args_t * a);
Florin Corascea194d2017-10-02 00:18:51 -0700175clib_error_t *vnet_bind (vnet_bind_args_t * a);
176clib_error_t *vnet_connect (vnet_connect_args_t * a);
177clib_error_t *vnet_unbind (vnet_unbind_args_t * a);
Florin Coras371ca502018-02-21 12:07:41 -0800178int vnet_application_detach (vnet_app_detach_args_t * a);
179int vnet_disconnect_session (vnet_disconnect_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500180
Florin Coras371ca502018-02-21 12:07:41 -0800181clib_error_t *vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a);
182clib_error_t *vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500183
Florin Coras371ca502018-02-21 12:07:41 -0800184extern const char test_srv_crt_rsa[];
185extern const u32 test_srv_crt_rsa_len;
186extern const char test_srv_key_rsa[];
187extern const u32 test_srv_key_rsa_len;
Florin Corasf8f516a2018-02-08 15:10:09 -0800188
Florin Coras7fb0fe12018-04-09 09:24:52 -0700189typedef struct app_session_transport_
190{
191 ip46_address_t rmt_ip; /**< remote ip */
192 ip46_address_t lcl_ip; /**< local ip */
Florin Coras7e12d942018-06-27 14:32:43 -0700193 u16 rmt_port; /**< remote port (network order) */
194 u16 lcl_port; /**< local port (network order) */
Florin Coras7fb0fe12018-04-09 09:24:52 -0700195 u8 is_ip4; /**< set if uses ip4 networking */
196} app_session_transport_t;
197
Florin Coras7e12d942018-06-27 14:32:43 -0700198#define foreach_app_session_field \
199 _(svm_fifo_t, *rx_fifo) /**< rx fifo */ \
200 _(svm_fifo_t, *tx_fifo) /**< tx fifo */ \
201 _(session_type_t, session_type) /**< session type */ \
202 _(volatile u8, session_state) /**< session state */ \
203 _(u32, session_index) /**< index in owning pool */ \
204 _(app_session_transport_t, transport) /**< transport info */ \
Florin Coras3c2fed52018-07-04 04:15:05 -0700205 _(svm_msg_q_t, *vpp_evt_q) /**< vpp event queue */ \
Florin Coras7e12d942018-06-27 14:32:43 -0700206 _(u8, is_dgram) /**< flag for dgram mode */ \
207
208typedef struct
Florin Coras7fb0fe12018-04-09 09:24:52 -0700209{
Florin Coras7e12d942018-06-27 14:32:43 -0700210#define _(type, name) type name;
211 foreach_app_session_field
212#undef _
Florin Coras7fb0fe12018-04-09 09:24:52 -0700213} app_session_t;
214
Florin Coras60116992018-08-27 09:52:18 -0700215typedef struct session_bound_msg_
216{
217 u32 context;
218 u64 handle;
219 i32 retval;
220 u8 lcl_is_ip4;
221 u8 lcl_ip[16];
222 u16 lcl_port;
Florin Coras30e79c22019-01-02 19:31:22 -0800223 uword rx_fifo;
224 uword tx_fifo;
225 uword vpp_evt_q;
Florin Coras60116992018-08-27 09:52:18 -0700226 u32 segment_size;
227 u8 segment_name_length;
228 u8 segment_name[128];
229} __clib_packed session_bound_msg_t;
230
Florin Coras52207f12018-07-12 14:48:06 -0700231typedef struct session_accepted_msg_
232{
233 u32 context;
234 u64 listener_handle;
235 u64 handle;
Florin Coras30e79c22019-01-02 19:31:22 -0800236 uword server_rx_fifo;
237 uword server_tx_fifo;
Florin Corasfa76a762018-11-29 12:40:10 -0800238 u64 segment_handle;
Florin Coras30e79c22019-01-02 19:31:22 -0800239 uword vpp_event_queue_address;
240 uword server_event_queue_address;
241 uword client_event_queue_address;
Florin Coras52207f12018-07-12 14:48:06 -0700242 u16 port;
243 u8 is_ip4;
244 u8 ip[16];
Florin Coras54693d22018-07-17 10:46:29 -0700245} __clib_packed session_accepted_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700246
247typedef struct session_accepted_reply_msg_
248{
249 u32 context;
250 i32 retval;
251 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700252} __clib_packed session_accepted_reply_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700253
254/* Make sure this is not too large, otherwise it won't fit when dequeued in
255 * the session queue node */
256STATIC_ASSERT (sizeof (session_accepted_reply_msg_t) <= 16, "accept reply");
257
258typedef struct session_connected_msg_
259{
260 u32 context;
261 i32 retval;
262 u64 handle;
Florin Coras30e79c22019-01-02 19:31:22 -0800263 uword server_rx_fifo;
264 uword server_tx_fifo;
Florin Corasfa76a762018-11-29 12:40:10 -0800265 u64 segment_handle;
Florin Coras30e79c22019-01-02 19:31:22 -0800266 uword vpp_event_queue_address;
267 uword client_event_queue_address;
268 uword server_event_queue_address;
Florin Coras52207f12018-07-12 14:48:06 -0700269 u32 segment_size;
270 u8 segment_name_length;
271 u8 segment_name[64];
272 u8 lcl_ip[16];
273 u8 is_ip4;
274 u16 lcl_port;
Florin Coras54693d22018-07-17 10:46:29 -0700275} __clib_packed session_connected_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700276
277typedef struct session_disconnected_msg_
278{
279 u32 client_index;
280 u32 context;
281 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700282} __clib_packed session_disconnected_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700283
284typedef struct session_disconnected_reply_msg_
285{
286 u32 context;
287 i32 retval;
288 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700289} __clib_packed session_disconnected_reply_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700290
291typedef struct session_reset_msg_
292{
293 u32 client_index;
294 u32 context;
295 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700296} __clib_packed session_reset_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700297
298typedef struct session_reset_reply_msg_
299{
Florin Coras52207f12018-07-12 14:48:06 -0700300 u32 context;
301 i32 retval;
302 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700303} __clib_packed session_reset_reply_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700304
Florin Coras30e79c22019-01-02 19:31:22 -0800305typedef struct session_req_worker_update_msg_
306{
307 u64 session_handle;
308} __clib_packed session_req_worker_update_msg_t;
309
310/* NOTE: using u16 for wrk indices because message needs to fit in 18B */
311typedef struct session_worker_update_msg_
312{
313 u32 client_index;
314 u16 wrk_index;
315 u16 req_wrk_index;
316 u64 handle;
317} __clib_packed session_worker_update_msg_t;
318
319typedef struct session_worker_update_reply_msg_
320{
321 u64 handle;
322 uword rx_fifo;
323 uword tx_fifo;
324 u64 segment_handle;
325} __clib_packed session_worker_update_reply_msg_t;
326
Florin Coras52207f12018-07-12 14:48:06 -0700327typedef struct app_session_event_
328{
329 svm_msg_q_msg_t msg;
330 session_event_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -0700331} __clib_packed app_session_evt_t;
Florin Coras52207f12018-07-12 14:48:06 -0700332
333static inline void
334app_alloc_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt,
335 u8 evt_type)
336{
337 svm_msg_q_lock_and_alloc_msg_w_ring (mq,
338 SESSION_MQ_CTRL_EVT_RING,
339 SVM_Q_WAIT, &app_evt->msg);
340 svm_msg_q_unlock (mq);
341 app_evt->evt = svm_msg_q_msg_data (mq, &app_evt->msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400342 clib_memset (app_evt->evt, 0, sizeof (*app_evt->evt));
Florin Coras52207f12018-07-12 14:48:06 -0700343 app_evt->evt->event_type = evt_type;
344}
345
346static inline void
347app_send_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt)
348{
349 svm_msg_q_add (mq, &app_evt->msg, SVM_Q_WAIT);
350}
351
Florin Coras3c2fed52018-07-04 04:15:05 -0700352/**
353 * Send fifo io event to vpp worker thread
354 *
355 * Because there may be multiple writers to one of vpp's queues, this
356 * protects message allocation and enqueueing.
357 *
358 * @param mq vpp message queue
359 * @param f fifo for which the event is sent
360 * @param evt_type type of event
361 * @param noblock flag to indicate is request is blocking or not
362 * @return 0 if success, negative integer otherwise
363 */
364static inline int
365app_send_io_evt_to_vpp (svm_msg_q_t * mq, svm_fifo_t * f, u8 evt_type,
366 u8 noblock)
367{
Florin Coras52207f12018-07-12 14:48:06 -0700368 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -0700369 svm_msg_q_msg_t msg;
370
371 if (noblock)
372 {
373 if (svm_msg_q_try_lock (mq))
374 return -1;
375 if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
376 {
377 svm_msg_q_unlock (mq);
378 return -2;
379 }
380 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
381 if (PREDICT_FALSE (svm_msg_q_msg_is_invalid (&msg)))
382 {
383 svm_msg_q_unlock (mq);
384 return -2;
385 }
Florin Coras52207f12018-07-12 14:48:06 -0700386 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700387 evt->fifo = f;
388 evt->event_type = evt_type;
Florin Coras52207f12018-07-12 14:48:06 -0700389 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700390 return 0;
391 }
392 else
393 {
394 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -0700395 while (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING))
396 svm_msg_q_wait (mq);
Florin Coras3c2fed52018-07-04 04:15:05 -0700397 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
Florin Coras52207f12018-07-12 14:48:06 -0700398 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700399 evt->fifo = f;
400 evt->event_type = evt_type;
401 if (svm_msg_q_is_full (mq))
402 svm_msg_q_wait (mq);
Florin Coras52207f12018-07-12 14:48:06 -0700403 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700404 return 0;
405 }
406}
407
Florin Coras7fb0fe12018-04-09 09:24:52 -0700408always_inline int
409app_send_dgram_raw (svm_fifo_t * f, app_session_transport_t * at,
Florin Coras460dce62018-07-27 05:45:06 -0700410 svm_msg_q_t * vpp_evt_q, u8 * data, u32 len, u8 evt_type,
411 u8 noblock)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700412{
413 u32 max_enqueue, actual_write;
414 session_dgram_hdr_t hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700415 int rv;
416
417 max_enqueue = svm_fifo_max_enqueue (f);
Florin Coras8e43d042018-05-04 15:46:57 -0700418 if (max_enqueue <= sizeof (session_dgram_hdr_t))
Florin Coras7fb0fe12018-04-09 09:24:52 -0700419 return 0;
420
421 max_enqueue -= sizeof (session_dgram_hdr_t);
422 actual_write = clib_min (len, max_enqueue);
423 hdr.data_length = actual_write;
424 hdr.data_offset = 0;
Dave Barach178cf492018-11-13 16:34:13 -0500425 clib_memcpy_fast (&hdr.rmt_ip, &at->rmt_ip, sizeof (ip46_address_t));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700426 hdr.is_ip4 = at->is_ip4;
427 hdr.rmt_port = at->rmt_port;
Dave Barach178cf492018-11-13 16:34:13 -0500428 clib_memcpy_fast (&hdr.lcl_ip, &at->lcl_ip, sizeof (ip46_address_t));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700429 hdr.lcl_port = at->lcl_port;
430 rv = svm_fifo_enqueue_nowait (f, sizeof (hdr), (u8 *) & hdr);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700431 ASSERT (rv == sizeof (hdr));
432
433 if ((rv = svm_fifo_enqueue_nowait (f, actual_write, data)) > 0)
434 {
435 if (svm_fifo_set_event (f))
Florin Coras460dce62018-07-27 05:45:06 -0700436 app_send_io_evt_to_vpp (vpp_evt_q, f, evt_type, noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700437 }
Florin Coras8e43d042018-05-04 15:46:57 -0700438 ASSERT (rv);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700439 return rv;
440}
441
442always_inline int
443app_send_dgram (app_session_t * s, u8 * data, u32 len, u8 noblock)
444{
445 return app_send_dgram_raw (s->tx_fifo, &s->transport, s->vpp_evt_q, data,
Florin Coras460dce62018-07-27 05:45:06 -0700446 len, FIFO_EVENT_APP_TX, noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700447}
448
449always_inline int
Florin Coras3c2fed52018-07-04 04:15:05 -0700450app_send_stream_raw (svm_fifo_t * f, svm_msg_q_t * vpp_evt_q, u8 * data,
Florin Coras460dce62018-07-27 05:45:06 -0700451 u32 len, u8 evt_type, u8 noblock)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700452{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700453 int rv;
454
455 if ((rv = svm_fifo_enqueue_nowait (f, len, data)) > 0)
456 {
457 if (svm_fifo_set_event (f))
Florin Coras460dce62018-07-27 05:45:06 -0700458 app_send_io_evt_to_vpp (vpp_evt_q, f, evt_type, noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700459 }
460 return rv;
461}
462
463always_inline int
464app_send_stream (app_session_t * s, u8 * data, u32 len, u8 noblock)
465{
Florin Coras460dce62018-07-27 05:45:06 -0700466 return app_send_stream_raw (s->tx_fifo, s->vpp_evt_q, data, len,
467 FIFO_EVENT_APP_TX, noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700468}
469
470always_inline int
471app_send (app_session_t * s, u8 * data, u32 len, u8 noblock)
472{
473 if (s->is_dgram)
474 return app_send_dgram (s, data, len, noblock);
475 return app_send_stream (s, data, len, noblock);
476}
477
478always_inline int
479app_recv_dgram_raw (svm_fifo_t * f, u8 * buf, u32 len,
Florin Coras460dce62018-07-27 05:45:06 -0700480 app_session_transport_t * at, u8 clear_evt, u8 peek)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700481{
482 session_dgram_pre_hdr_t ph;
483 u32 max_deq;
484 int rv;
485
Florin Coras7fb0fe12018-04-09 09:24:52 -0700486 max_deq = svm_fifo_max_dequeue (f);
487 if (max_deq < sizeof (session_dgram_hdr_t))
Florin Coras460dce62018-07-27 05:45:06 -0700488 {
489 if (clear_evt)
490 svm_fifo_unset_event (f);
491 return 0;
492 }
493
494 if (clear_evt)
495 svm_fifo_unset_event (f);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700496
497 svm_fifo_peek (f, 0, sizeof (ph), (u8 *) & ph);
498 ASSERT (ph.data_length >= ph.data_offset);
499 if (!ph.data_offset)
500 svm_fifo_peek (f, sizeof (ph), sizeof (*at), (u8 *) at);
501 len = clib_min (len, ph.data_length - ph.data_offset);
502 rv = svm_fifo_peek (f, ph.data_offset + SESSION_CONN_HDR_LEN, len, buf);
Florin Coras460dce62018-07-27 05:45:06 -0700503 if (peek)
504 return rv;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700505 ph.data_offset += rv;
506 if (ph.data_offset == ph.data_length)
507 svm_fifo_dequeue_drop (f, ph.data_length + SESSION_CONN_HDR_LEN);
508 else
509 svm_fifo_overwrite_head (f, (u8 *) & ph, sizeof (ph));
510 return rv;
511}
512
513always_inline int
514app_recv_dgram (app_session_t * s, u8 * buf, u32 len)
515{
Florin Coras460dce62018-07-27 05:45:06 -0700516 return app_recv_dgram_raw (s->rx_fifo, buf, len, &s->transport, 1, 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700517}
518
519always_inline int
Florin Coras460dce62018-07-27 05:45:06 -0700520app_recv_stream_raw (svm_fifo_t * f, u8 * buf, u32 len, u8 clear_evt, u8 peek)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700521{
522 if (clear_evt)
523 svm_fifo_unset_event (f);
Florin Coras460dce62018-07-27 05:45:06 -0700524
525 if (peek)
526 return svm_fifo_peek (f, 0, len, buf);
527
Florin Coras7fb0fe12018-04-09 09:24:52 -0700528 return svm_fifo_dequeue_nowait (f, len, buf);
529}
530
531always_inline int
532app_recv_stream (app_session_t * s, u8 * buf, u32 len)
533{
Florin Coras460dce62018-07-27 05:45:06 -0700534 return app_recv_stream_raw (s->rx_fifo, buf, len, 1, 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700535}
536
537always_inline int
538app_recv (app_session_t * s, u8 * data, u32 len)
539{
540 if (s->is_dgram)
541 return app_recv_dgram (s, data, len);
542 return app_recv_stream (s, data, len);
543}
544
Dave Barach68b0fb02017-02-28 15:15:56 -0500545#endif /* __included_uri_h__ */
546
547/*
548 * fd.io coding-style-patch-verification: ON
549 *
550 * Local Variables:
551 * eval: (c-set-style "gnu")
552 * End:
553 */