blob: 3a1c9b55738224cf1df25ea1a72a9f05779492d4 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2016-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * 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
Florin Corasc1a42652019-02-08 18:27:29 -080018#include <vlibmemory/api.h>
19#include <svm/message_queue.h>
Florin Corasc9940fc2019-02-05 20:55:11 -080020#include <vnet/session/session_types.h>
Florin Coras54a51fd2019-02-07 15:34:52 -080021#include <vnet/tls/tls_test.h>
Florin Coras88001c62019-04-24 14:44:46 -070022#include <svm/fifo_segment.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050023
Florin Corasc1a42652019-02-08 18:27:29 -080024typedef struct _stream_session_cb_vft
25{
26 /** Notify server of new segment */
27 int (*add_segment_callback) (u32 api_client_index, u64 segment_handle);
28
29 /** Notify server of new segment */
30 int (*del_segment_callback) (u32 api_client_index, u64 segment_handle);
31
32 /** Notify server of newly accepted session */
33 int (*session_accept_callback) (session_t * new_session);
34
35 /** Connection request callback */
36 int (*session_connected_callback) (u32 app_wrk_index, u32 opaque,
37 session_t * s, u8 code);
38
39 /** Notify app that session is closing */
40 void (*session_disconnect_callback) (session_t * s);
41
Florin Coras692b9492019-07-12 15:01:53 -070042 /** Notify app that transport is closed */
43 void (*session_transport_closed_callback) (session_t * s);
44
Florin Coras70f26d52019-07-08 11:47:18 -070045 /** Notify app that session or transport are about to be removed */
46 void (*session_cleanup_callback) (session_t * s, session_cleanup_ntf_t ntf);
47
Florin Corasc1a42652019-02-08 18:27:29 -080048 /** Notify app that session was reset */
49 void (*session_reset_callback) (session_t * s);
50
51 /** Direct RX callback for built-in application */
52 int (*builtin_app_rx_callback) (session_t * session);
53
54 /** Direct TX callback for built-in application */
55 int (*builtin_app_tx_callback) (session_t * session);
56
57} session_cb_vft_t;
58
59#define foreach_app_init_args \
60 _(u32, api_client_index) \
61 _(u8 *, name) \
62 _(u64 *, options) \
63 _(u8 *, namespace_id) \
64 _(session_cb_vft_t *, session_cb_vft) \
65 _(u32, app_index) \
66
Florin Coras6cf30ad2017-04-04 23:08:23 -070067typedef struct _vnet_app_attach_args_t
68{
Florin Coras15531972018-08-12 23:50:53 -070069#define _(_type, _name) _type _name;
70 foreach_app_init_args
71#undef _
72 ssvm_private_t * segment;
Florin Coras99368312018-08-02 10:45:44 -070073 svm_msg_q_t *app_evt_q;
Florin Corasd85de682018-11-29 17:02:29 -080074 u64 segment_handle;
Florin Coras6cf30ad2017-04-04 23:08:23 -070075} vnet_app_attach_args_t;
76
77typedef struct _vnet_app_detach_args_t
78{
79 u32 app_index;
Florin Coras053a0e42018-11-13 15:52:38 -080080 u32 api_client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -070081} vnet_app_detach_args_t;
82
Dave Barach68b0fb02017-02-28 15:15:56 -050083typedef struct _vnet_bind_args_t
84{
85 union
86 {
Florin Coras5665ced2018-10-25 18:03:45 -070087 session_endpoint_cfg_t sep_ext;
Florin Coras3cbc04b2017-10-02 00:18:51 -070088 session_endpoint_t sep;
Florin Coras15531972018-08-12 23:50:53 -070089 char *uri;
Dave Barach68b0fb02017-02-28 15:15:56 -050090 };
91
Florin Coras6cf30ad2017-04-04 23:08:23 -070092 u32 app_index;
Florin Coras15531972018-08-12 23:50:53 -070093 u32 wrk_map_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050094
95 /*
96 * Results
97 */
98 char *segment_name;
99 u32 segment_name_length;
100 u64 server_event_queue_address;
101 u64 handle;
Florin Corasc9940fc2019-02-05 20:55:11 -0800102} vnet_listen_args_t;
Dave Barach68b0fb02017-02-28 15:15:56 -0500103
Florin Corasdfae9f92019-02-20 19:48:31 -0800104typedef struct _vnet_unlisten_args_t
Dave Barach68b0fb02017-02-28 15:15:56 -0500105{
106 union
107 {
108 char *uri;
Florin Coras15531972018-08-12 23:50:53 -0700109 u64 handle; /**< Session handle */
Dave Barach68b0fb02017-02-28 15:15:56 -0500110 };
Florin Coras15531972018-08-12 23:50:53 -0700111 u32 app_index; /**< Owning application index */
Florin Corasab2f6db2018-08-31 14:31:41 -0700112 u32 wrk_map_index; /**< App's local pool worker index */
Florin Corasc1a42652019-02-08 18:27:29 -0800113} vnet_unlisten_args_t;
Dave Barach68b0fb02017-02-28 15:15:56 -0500114
115typedef struct _vnet_connect_args
116{
Florin Coras371ca502018-02-21 12:07:41 -0800117 union
118 {
Florin Coras5665ced2018-10-25 18:03:45 -0700119 session_endpoint_cfg_t sep_ext;
Florin Coras15531972018-08-12 23:50:53 -0700120 session_endpoint_t sep;
Florin Coras371ca502018-02-21 12:07:41 -0800121 char *uri;
Florin Coras371ca502018-02-21 12:07:41 -0800122 };
Florin Coras6cf30ad2017-04-04 23:08:23 -0700123 u32 app_index;
Florin Coras15531972018-08-12 23:50:53 -0700124 u32 wrk_map_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500125 u32 api_context;
Dave Barach68b0fb02017-02-28 15:15:56 -0500126
Florin Corasf8f516a2018-02-08 15:10:09 -0800127 session_handle_t session_handle;
Dave Barach68b0fb02017-02-28 15:15:56 -0500128} vnet_connect_args_t;
129
130typedef struct _vnet_disconnect_args_t
131{
Florin Corasf8f516a2018-02-08 15:10:09 -0800132 session_handle_t handle;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700133 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500134} vnet_disconnect_args_t;
135
Florin Coras371ca502018-02-21 12:07:41 -0800136typedef struct _vnet_application_add_tls_cert_args_t
137{
138 u32 app_index;
139 u8 *cert;
140} vnet_app_add_tls_cert_args_t;
141
142typedef struct _vnet_application_add_tls_key_args_t
143{
144 u32 app_index;
145 u8 *key;
146} vnet_app_add_tls_key_args_t;
147
Florin Coras54a51fd2019-02-07 15:34:52 -0800148typedef enum tls_engine_type_
149{
150 TLS_ENGINE_NONE,
151 TLS_ENGINE_MBEDTLS,
152 TLS_ENGINE_OPENSSL,
153 TLS_N_ENGINES
154} tls_engine_type_t;
155
Florin Coras6cf30ad2017-04-04 23:08:23 -0700156/* Application attach options */
Dave Barach68b0fb02017-02-28 15:15:56 -0500157typedef enum
158{
Florin Corasa5464812017-04-19 13:00:05 -0700159 APP_OPTIONS_FLAGS,
Florin Corasff6e7692017-12-11 04:59:01 -0800160 APP_OPTIONS_EVT_QUEUE_SIZE,
161 APP_OPTIONS_SEGMENT_SIZE,
162 APP_OPTIONS_ADD_SEGMENT_SIZE,
Dave Barach2c25a622017-06-26 11:35:07 -0400163 APP_OPTIONS_PRIVATE_SEGMENT_COUNT,
Florin Corasff6e7692017-12-11 04:59:01 -0800164 APP_OPTIONS_RX_FIFO_SIZE,
165 APP_OPTIONS_TX_FIFO_SIZE,
166 APP_OPTIONS_PREALLOC_FIFO_PAIRS,
Florin Corascea194d2017-10-02 00:18:51 -0700167 APP_OPTIONS_NAMESPACE,
168 APP_OPTIONS_NAMESPACE_SECRET,
Florin Coras7999e832017-10-31 01:51:04 -0700169 APP_OPTIONS_PROXY_TRANSPORT,
Florin Corasff6e7692017-12-11 04:59:01 -0800170 APP_OPTIONS_ACCEPT_COOKIE,
Florin Coras58d36f02018-03-09 13:05:53 -0800171 APP_OPTIONS_TLS_ENGINE,
Florin Corasff6e7692017-12-11 04:59:01 -0800172 APP_OPTIONS_N_OPTIONS
Florin Coras6cf30ad2017-04-04 23:08:23 -0700173} app_attach_options_index_t;
Dave Barach68b0fb02017-02-28 15:15:56 -0500174
Florin Corasa5464812017-04-19 13:00:05 -0700175#define foreach_app_options_flags \
Florin Corascea194d2017-10-02 00:18:51 -0700176 _(ACCEPT_REDIRECT, "Use FIFO with redirects") \
Florin Corasa5464812017-04-19 13:00:05 -0700177 _(ADD_SEGMENT, "Add segment and signal app if needed") \
Florin Coras7999e832017-10-31 01:51:04 -0700178 _(IS_BUILTIN, "Application is builtin") \
Florin Corasda3eec12018-09-07 13:29:17 -0700179 _(IS_TRANSPORT_APP, "Application is a transport proto") \
Florin Coras7e12d942018-06-27 14:32:43 -0700180 _(IS_PROXY, "Application is proxying") \
Florin Corascea194d2017-10-02 00:18:51 -0700181 _(USE_GLOBAL_SCOPE, "App can use global session scope") \
Florin Coras3c2fed52018-07-04 04:15:05 -0700182 _(USE_LOCAL_SCOPE, "App can use local session scope") \
Florin Coras99368312018-08-02 10:45:44 -0700183 _(EVT_MQ_USE_EVENTFD, "Use eventfds for signaling") \
Dave Barach68b0fb02017-02-28 15:15:56 -0500184
Florin Corasa5464812017-04-19 13:00:05 -0700185typedef enum _app_options
186{
187#define _(sym, str) APP_OPTIONS_##sym,
188 foreach_app_options_flags
189#undef _
190} app_options_t;
191
192typedef enum _app_options_flags
193{
194#define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym,
195 foreach_app_options_flags
196#undef _
197} app_options_flags_t;
198
Florin Coras99368312018-08-02 10:45:44 -0700199#define foreach_fd_type \
200 _(VPP_MQ_SEGMENT, "Fd for vpp's event mq segment") \
201 _(MEMFD_SEGMENT, "Fd for memfd segment") \
202 _(MQ_EVENTFD, "Event fd used by message queue") \
203 _(VPP_MQ_EVENTFD, "Event fd used by vpp's message queue") \
204
205typedef enum session_fd_type_
206{
207#define _(sym, str) SESSION_FD_##sym,
208 foreach_fd_type
209#undef _
210 SESSION_N_FD_TYPE
211} session_fd_type_t;
212
213typedef enum session_fd_flag_
214{
215#define _(sym, str) SESSION_FD_F_##sym = 1 << SESSION_FD_##sym,
216 foreach_fd_type
217#undef _
218} session_fd_flag_t;
219
Aloys Augustin502785b2019-04-09 11:40:57 +0200220int parse_uri (char *uri, session_endpoint_cfg_t * sep);
Florin Corasc9940fc2019-02-05 20:55:11 -0800221int vnet_bind_uri (vnet_listen_args_t *);
Florin Corasc1a42652019-02-08 18:27:29 -0800222int vnet_unbind_uri (vnet_unlisten_args_t * a);
223int vnet_connect_uri (vnet_connect_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500224
Florin Corasc1a42652019-02-08 18:27:29 -0800225int vnet_application_attach (vnet_app_attach_args_t * a);
Florin Coras371ca502018-02-21 12:07:41 -0800226int vnet_application_detach (vnet_app_detach_args_t * a);
Florin Corasc1a42652019-02-08 18:27:29 -0800227int vnet_listen (vnet_listen_args_t * a);
228int vnet_connect (vnet_connect_args_t * a);
229int vnet_unlisten (vnet_unlisten_args_t * a);
Florin Coras371ca502018-02-21 12:07:41 -0800230int vnet_disconnect_session (vnet_disconnect_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500231
Florin Coras371ca502018-02-21 12:07:41 -0800232clib_error_t *vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a);
233clib_error_t *vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500234
Florin Coras7fb0fe12018-04-09 09:24:52 -0700235typedef struct app_session_transport_
236{
237 ip46_address_t rmt_ip; /**< remote ip */
238 ip46_address_t lcl_ip; /**< local ip */
Florin Coras7e12d942018-06-27 14:32:43 -0700239 u16 rmt_port; /**< remote port (network order) */
240 u16 lcl_port; /**< local port (network order) */
Florin Coras7fb0fe12018-04-09 09:24:52 -0700241 u8 is_ip4; /**< set if uses ip4 networking */
242} app_session_transport_t;
243
Florin Coras7e12d942018-06-27 14:32:43 -0700244#define foreach_app_session_field \
245 _(svm_fifo_t, *rx_fifo) /**< rx fifo */ \
246 _(svm_fifo_t, *tx_fifo) /**< tx fifo */ \
247 _(session_type_t, session_type) /**< session type */ \
248 _(volatile u8, session_state) /**< session state */ \
249 _(u32, session_index) /**< index in owning pool */ \
250 _(app_session_transport_t, transport) /**< transport info */ \
Florin Coras3c2fed52018-07-04 04:15:05 -0700251 _(svm_msg_q_t, *vpp_evt_q) /**< vpp event queue */ \
Florin Coras7e12d942018-06-27 14:32:43 -0700252 _(u8, is_dgram) /**< flag for dgram mode */ \
253
254typedef struct
Florin Coras7fb0fe12018-04-09 09:24:52 -0700255{
Florin Coras7e12d942018-06-27 14:32:43 -0700256#define _(type, name) type name;
257 foreach_app_session_field
258#undef _
Florin Coras7fb0fe12018-04-09 09:24:52 -0700259} app_session_t;
260
Florin Coras60116992018-08-27 09:52:18 -0700261typedef struct session_bound_msg_
262{
263 u32 context;
264 u64 handle;
265 i32 retval;
266 u8 lcl_is_ip4;
267 u8 lcl_ip[16];
268 u16 lcl_port;
Florin Coras30e79c22019-01-02 19:31:22 -0800269 uword rx_fifo;
270 uword tx_fifo;
271 uword vpp_evt_q;
Florin Coras60116992018-08-27 09:52:18 -0700272 u32 segment_size;
273 u8 segment_name_length;
274 u8 segment_name[128];
275} __clib_packed session_bound_msg_t;
276
Florin Corasdfae9f92019-02-20 19:48:31 -0800277typedef struct session_unlisten_reply_msg_
278{
279 u32 context;
280 u64 handle;
281 i32 retval;
282} __clib_packed session_unlisten_reply_msg_t;
283
Florin Coras52207f12018-07-12 14:48:06 -0700284typedef struct session_accepted_msg_
285{
286 u32 context;
287 u64 listener_handle;
288 u64 handle;
Florin Coras30e79c22019-01-02 19:31:22 -0800289 uword server_rx_fifo;
290 uword server_tx_fifo;
Florin Corasfa76a762018-11-29 12:40:10 -0800291 u64 segment_handle;
Florin Coras30e79c22019-01-02 19:31:22 -0800292 uword vpp_event_queue_address;
Florin Coras09d18c22019-04-24 11:10:02 -0700293 transport_endpoint_t rmt;
Florin Coras54693d22018-07-17 10:46:29 -0700294} __clib_packed session_accepted_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700295
296typedef struct session_accepted_reply_msg_
297{
298 u32 context;
299 i32 retval;
300 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700301} __clib_packed session_accepted_reply_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700302
303/* Make sure this is not too large, otherwise it won't fit when dequeued in
304 * the session queue node */
305STATIC_ASSERT (sizeof (session_accepted_reply_msg_t) <= 16, "accept reply");
306
307typedef struct session_connected_msg_
308{
309 u32 context;
310 i32 retval;
311 u64 handle;
Florin Coras30e79c22019-01-02 19:31:22 -0800312 uword server_rx_fifo;
313 uword server_tx_fifo;
Florin Corasfa76a762018-11-29 12:40:10 -0800314 u64 segment_handle;
Florin Coras653e43f2019-03-04 10:56:23 -0800315 uword ct_rx_fifo;
316 uword ct_tx_fifo;
317 u64 ct_segment_handle;
Florin Coras30e79c22019-01-02 19:31:22 -0800318 uword vpp_event_queue_address;
Florin Coras52207f12018-07-12 14:48:06 -0700319 u32 segment_size;
320 u8 segment_name_length;
321 u8 segment_name[64];
Florin Coras09d18c22019-04-24 11:10:02 -0700322 transport_endpoint_t lcl;
Florin Coras54693d22018-07-17 10:46:29 -0700323} __clib_packed session_connected_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700324
325typedef struct session_disconnected_msg_
326{
327 u32 client_index;
328 u32 context;
329 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700330} __clib_packed session_disconnected_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700331
332typedef struct session_disconnected_reply_msg_
333{
334 u32 context;
335 i32 retval;
336 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700337} __clib_packed session_disconnected_reply_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700338
339typedef struct session_reset_msg_
340{
341 u32 client_index;
342 u32 context;
343 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700344} __clib_packed session_reset_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700345
346typedef struct session_reset_reply_msg_
347{
Florin Coras52207f12018-07-12 14:48:06 -0700348 u32 context;
349 i32 retval;
350 u64 handle;
Florin Coras54693d22018-07-17 10:46:29 -0700351} __clib_packed session_reset_reply_msg_t;
Florin Coras52207f12018-07-12 14:48:06 -0700352
Florin Coras30e79c22019-01-02 19:31:22 -0800353typedef struct session_req_worker_update_msg_
354{
355 u64 session_handle;
356} __clib_packed session_req_worker_update_msg_t;
357
358/* NOTE: using u16 for wrk indices because message needs to fit in 18B */
359typedef struct session_worker_update_msg_
360{
361 u32 client_index;
362 u16 wrk_index;
363 u16 req_wrk_index;
364 u64 handle;
365} __clib_packed session_worker_update_msg_t;
366
367typedef struct session_worker_update_reply_msg_
368{
369 u64 handle;
370 uword rx_fifo;
371 uword tx_fifo;
372 u64 segment_handle;
373} __clib_packed session_worker_update_reply_msg_t;
374
Florin Coras52207f12018-07-12 14:48:06 -0700375typedef struct app_session_event_
376{
377 svm_msg_q_msg_t msg;
378 session_event_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -0700379} __clib_packed app_session_evt_t;
Florin Coras52207f12018-07-12 14:48:06 -0700380
381static inline void
382app_alloc_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt,
383 u8 evt_type)
384{
385 svm_msg_q_lock_and_alloc_msg_w_ring (mq,
386 SESSION_MQ_CTRL_EVT_RING,
387 SVM_Q_WAIT, &app_evt->msg);
Florin Coras52207f12018-07-12 14:48:06 -0700388 app_evt->evt = svm_msg_q_msg_data (mq, &app_evt->msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400389 clib_memset (app_evt->evt, 0, sizeof (*app_evt->evt));
Florin Coras52207f12018-07-12 14:48:06 -0700390 app_evt->evt->event_type = evt_type;
391}
392
393static inline void
394app_send_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt)
395{
Florin Coras0dfbce62019-07-15 07:48:27 -0700396 svm_msg_q_add_and_unlock (mq, &app_evt->msg);
Florin Coras52207f12018-07-12 14:48:06 -0700397}
398
Florin Coras3c2fed52018-07-04 04:15:05 -0700399/**
400 * Send fifo io event to vpp worker thread
401 *
402 * Because there may be multiple writers to one of vpp's queues, this
403 * protects message allocation and enqueueing.
404 *
405 * @param mq vpp message queue
406 * @param f fifo for which the event is sent
407 * @param evt_type type of event
408 * @param noblock flag to indicate is request is blocking or not
409 * @return 0 if success, negative integer otherwise
410 */
411static inline int
Florin Corasc0737e92019-03-04 14:19:39 -0800412app_send_io_evt_to_vpp (svm_msg_q_t * mq, u32 session_index, u8 evt_type,
Florin Coras3c2fed52018-07-04 04:15:05 -0700413 u8 noblock)
414{
Florin Coras52207f12018-07-12 14:48:06 -0700415 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -0700416 svm_msg_q_msg_t msg;
417
418 if (noblock)
419 {
420 if (svm_msg_q_try_lock (mq))
421 return -1;
422 if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
423 {
424 svm_msg_q_unlock (mq);
425 return -2;
426 }
427 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
428 if (PREDICT_FALSE (svm_msg_q_msg_is_invalid (&msg)))
429 {
430 svm_msg_q_unlock (mq);
431 return -2;
432 }
Florin Coras52207f12018-07-12 14:48:06 -0700433 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Corasc0737e92019-03-04 14:19:39 -0800434 evt->session_index = session_index;
Florin Coras3c2fed52018-07-04 04:15:05 -0700435 evt->event_type = evt_type;
Florin Coras52207f12018-07-12 14:48:06 -0700436 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700437 return 0;
438 }
439 else
440 {
441 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -0700442 while (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING))
443 svm_msg_q_wait (mq);
Florin Coras3c2fed52018-07-04 04:15:05 -0700444 msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
Florin Coras52207f12018-07-12 14:48:06 -0700445 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Corasc0737e92019-03-04 14:19:39 -0800446 evt->session_index = session_index;
Florin Coras3c2fed52018-07-04 04:15:05 -0700447 evt->event_type = evt_type;
448 if (svm_msg_q_is_full (mq))
449 svm_msg_q_wait (mq);
Florin Coras52207f12018-07-12 14:48:06 -0700450 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -0700451 return 0;
452 }
453}
454
Florin Coras7fb0fe12018-04-09 09:24:52 -0700455always_inline int
456app_send_dgram_raw (svm_fifo_t * f, app_session_transport_t * at,
Florin Coras460dce62018-07-27 05:45:06 -0700457 svm_msg_q_t * vpp_evt_q, u8 * data, u32 len, u8 evt_type,
Florin Coras653e43f2019-03-04 10:56:23 -0800458 u8 do_evt, u8 noblock)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700459{
460 u32 max_enqueue, actual_write;
461 session_dgram_hdr_t hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700462 int rv;
463
Sirshak Das28aa5392019-02-05 01:33:33 -0600464 max_enqueue = svm_fifo_max_enqueue_prod (f);
Florin Coras8e43d042018-05-04 15:46:57 -0700465 if (max_enqueue <= sizeof (session_dgram_hdr_t))
Florin Coras7fb0fe12018-04-09 09:24:52 -0700466 return 0;
467
468 max_enqueue -= sizeof (session_dgram_hdr_t);
469 actual_write = clib_min (len, max_enqueue);
470 hdr.data_length = actual_write;
471 hdr.data_offset = 0;
Dave Barach178cf492018-11-13 16:34:13 -0500472 clib_memcpy_fast (&hdr.rmt_ip, &at->rmt_ip, sizeof (ip46_address_t));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700473 hdr.is_ip4 = at->is_ip4;
474 hdr.rmt_port = at->rmt_port;
Dave Barach178cf492018-11-13 16:34:13 -0500475 clib_memcpy_fast (&hdr.lcl_ip, &at->lcl_ip, sizeof (ip46_address_t));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700476 hdr.lcl_port = at->lcl_port;
Florin Coras87b15ce2019-04-28 21:16:30 -0700477 rv = svm_fifo_enqueue (f, sizeof (hdr), (u8 *) & hdr);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700478 ASSERT (rv == sizeof (hdr));
479
Florin Coras87b15ce2019-04-28 21:16:30 -0700480 rv = svm_fifo_enqueue (f, actual_write, data);
Florin Coras4b761122019-03-21 13:54:53 -0700481 if (do_evt)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700482 {
Florin Coras4b761122019-03-21 13:54:53 -0700483 if (rv > 0 && svm_fifo_set_event (f))
Florin Corasc0737e92019-03-04 14:19:39 -0800484 app_send_io_evt_to_vpp (vpp_evt_q, f->master_session_index, evt_type,
485 noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700486 }
Florin Coras8e43d042018-05-04 15:46:57 -0700487 ASSERT (rv);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700488 return rv;
489}
490
491always_inline int
492app_send_dgram (app_session_t * s, u8 * data, u32 len, u8 noblock)
493{
494 return app_send_dgram_raw (s->tx_fifo, &s->transport, s->vpp_evt_q, data,
Florin Coras653e43f2019-03-04 10:56:23 -0800495 len, SESSION_IO_EVT_TX, 1 /* do_evt */ ,
496 noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700497}
498
499always_inline int
Florin Coras3c2fed52018-07-04 04:15:05 -0700500app_send_stream_raw (svm_fifo_t * f, svm_msg_q_t * vpp_evt_q, u8 * data,
Florin Coras653e43f2019-03-04 10:56:23 -0800501 u32 len, u8 evt_type, u8 do_evt, u8 noblock)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700502{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700503 int rv;
504
Florin Coras87b15ce2019-04-28 21:16:30 -0700505 rv = svm_fifo_enqueue (f, len, data);
Florin Coras4b761122019-03-21 13:54:53 -0700506 if (do_evt)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700507 {
Florin Coras4b761122019-03-21 13:54:53 -0700508 if (rv > 0 && svm_fifo_set_event (f))
Florin Corasc0737e92019-03-04 14:19:39 -0800509 app_send_io_evt_to_vpp (vpp_evt_q, f->master_session_index, evt_type,
510 noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700511 }
512 return rv;
513}
514
515always_inline int
516app_send_stream (app_session_t * s, u8 * data, u32 len, u8 noblock)
517{
Florin Coras460dce62018-07-27 05:45:06 -0700518 return app_send_stream_raw (s->tx_fifo, s->vpp_evt_q, data, len,
Florin Coras653e43f2019-03-04 10:56:23 -0800519 SESSION_IO_EVT_TX, 1 /* do_evt */ , noblock);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700520}
521
522always_inline int
523app_send (app_session_t * s, u8 * data, u32 len, u8 noblock)
524{
525 if (s->is_dgram)
526 return app_send_dgram (s, data, len, noblock);
527 return app_send_stream (s, data, len, noblock);
528}
529
530always_inline int
531app_recv_dgram_raw (svm_fifo_t * f, u8 * buf, u32 len,
Florin Coras460dce62018-07-27 05:45:06 -0700532 app_session_transport_t * at, u8 clear_evt, u8 peek)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700533{
534 session_dgram_pre_hdr_t ph;
535 u32 max_deq;
536 int rv;
537
Sirshak Das28aa5392019-02-05 01:33:33 -0600538 max_deq = svm_fifo_max_dequeue_cons (f);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700539 if (max_deq < sizeof (session_dgram_hdr_t))
Florin Coras460dce62018-07-27 05:45:06 -0700540 {
541 if (clear_evt)
542 svm_fifo_unset_event (f);
543 return 0;
544 }
545
546 if (clear_evt)
547 svm_fifo_unset_event (f);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700548
549 svm_fifo_peek (f, 0, sizeof (ph), (u8 *) & ph);
550 ASSERT (ph.data_length >= ph.data_offset);
551 if (!ph.data_offset)
552 svm_fifo_peek (f, sizeof (ph), sizeof (*at), (u8 *) at);
553 len = clib_min (len, ph.data_length - ph.data_offset);
554 rv = svm_fifo_peek (f, ph.data_offset + SESSION_CONN_HDR_LEN, len, buf);
Florin Coras460dce62018-07-27 05:45:06 -0700555 if (peek)
556 return rv;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700557 ph.data_offset += rv;
558 if (ph.data_offset == ph.data_length)
559 svm_fifo_dequeue_drop (f, ph.data_length + SESSION_CONN_HDR_LEN);
560 else
561 svm_fifo_overwrite_head (f, (u8 *) & ph, sizeof (ph));
562 return rv;
563}
564
565always_inline int
566app_recv_dgram (app_session_t * s, u8 * buf, u32 len)
567{
Florin Coras460dce62018-07-27 05:45:06 -0700568 return app_recv_dgram_raw (s->rx_fifo, buf, len, &s->transport, 1, 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700569}
570
571always_inline int
Florin Coras460dce62018-07-27 05:45:06 -0700572app_recv_stream_raw (svm_fifo_t * f, u8 * buf, u32 len, u8 clear_evt, u8 peek)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700573{
574 if (clear_evt)
575 svm_fifo_unset_event (f);
Florin Coras460dce62018-07-27 05:45:06 -0700576
577 if (peek)
578 return svm_fifo_peek (f, 0, len, buf);
579
Florin Coras87b15ce2019-04-28 21:16:30 -0700580 return svm_fifo_dequeue (f, len, buf);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700581}
582
583always_inline int
584app_recv_stream (app_session_t * s, u8 * buf, u32 len)
585{
Florin Coras460dce62018-07-27 05:45:06 -0700586 return app_recv_stream_raw (s->rx_fifo, buf, len, 1, 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700587}
588
589always_inline int
590app_recv (app_session_t * s, u8 * data, u32 len)
591{
592 if (s->is_dgram)
593 return app_recv_dgram (s, data, len);
594 return app_recv_stream (s, data, len);
595}
596
Dave Barach68b0fb02017-02-28 15:15:56 -0500597#endif /* __included_uri_h__ */
598
599/*
600 * fd.io coding-style-patch-verification: ON
601 *
602 * Local Variables:
603 * eval: (c-set-style "gnu")
604 * End:
605 */