blob: 49c2862ac4521f4df059846bce498ee7f09d38f6 [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
18#include <vlib/vlib.h>
19#include <vnet/vnet.h>
20#include <svm/svm_fifo_segment.h>
21#include <vnet/session/session.h>
22#include <vnet/session/application.h>
23#include <vnet/session/transport.h>
Florin Coras58d36f02018-03-09 13:05:53 -080024#include <vnet/tls/tls.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050025
Florin Coras6cf30ad2017-04-04 23:08:23 -070026typedef struct _vnet_app_attach_args_t
27{
Florin Corasa5464812017-04-19 13:00:05 -070028 /** Binary API client index */
Florin Coras6cf30ad2017-04-04 23:08:23 -070029 u32 api_client_index;
Florin Corasa5464812017-04-19 13:00:05 -070030
Florin Coras0bee9ce2018-03-22 21:24:31 -070031 /** Application name. Used by builtin apps */
32 u8 *name;
33
Florin Corasa5464812017-04-19 13:00:05 -070034 /** Application and segment manager options */
Florin Coras6cf30ad2017-04-04 23:08:23 -070035 u64 *options;
Florin Corasa5464812017-04-19 13:00:05 -070036
Florin Coras371ca502018-02-21 12:07:41 -080037 /** ID of the namespace the app has access to */
Florin Corascea194d2017-10-02 00:18:51 -070038 u8 *namespace_id;
39
Florin Corasa5464812017-04-19 13:00:05 -070040 /** Session to application callback functions */
Florin Coras6cf30ad2017-04-04 23:08:23 -070041 session_cb_vft_t *session_cb_vft;
42
43 /*
44 * Results
45 */
Florin Corasb384b542018-01-15 01:08:33 -080046 ssvm_private_t *segment;
Florin Coras6cf30ad2017-04-04 23:08:23 -070047 u64 app_event_queue_address;
48 u32 app_index;
49} vnet_app_attach_args_t;
50
51typedef struct _vnet_app_detach_args_t
52{
53 u32 app_index;
54} vnet_app_detach_args_t;
55
Dave Barach68b0fb02017-02-28 15:15:56 -050056typedef struct _vnet_bind_args_t
57{
58 union
59 {
60 char *uri;
Florin Coras3cbc04b2017-10-02 00:18:51 -070061 session_endpoint_t sep;
Dave Barach68b0fb02017-02-28 15:15:56 -050062 };
63
Florin Coras6cf30ad2017-04-04 23:08:23 -070064 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050065
66 /*
67 * Results
68 */
69 char *segment_name;
70 u32 segment_name_length;
71 u64 server_event_queue_address;
72 u64 handle;
73} vnet_bind_args_t;
74
75typedef struct _vnet_unbind_args_t
76{
77 union
78 {
79 char *uri;
80 u64 handle;
81 };
Florin Coras6cf30ad2017-04-04 23:08:23 -070082 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050083} vnet_unbind_args_t;
84
85typedef struct _vnet_connect_args
86{
Florin Coras371ca502018-02-21 12:07:41 -080087 union
88 {
89 char *uri;
Florin Coras8f89dd02018-03-05 16:53:07 -080090 session_endpoint_extended_t sep;
Florin Coras371ca502018-02-21 12:07:41 -080091 };
Florin Coras6cf30ad2017-04-04 23:08:23 -070092 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050093 u32 api_context;
Dave Barach68b0fb02017-02-28 15:15:56 -050094
Florin Corasf8f516a2018-02-08 15:10:09 -080095 session_handle_t session_handle;
Dave Barach68b0fb02017-02-28 15:15:56 -050096} vnet_connect_args_t;
97
98typedef struct _vnet_disconnect_args_t
99{
Florin Corasf8f516a2018-02-08 15:10:09 -0800100 session_handle_t handle;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700101 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500102} vnet_disconnect_args_t;
103
Florin Coras371ca502018-02-21 12:07:41 -0800104typedef struct _vnet_application_add_tls_cert_args_t
105{
106 u32 app_index;
107 u8 *cert;
108} vnet_app_add_tls_cert_args_t;
109
110typedef struct _vnet_application_add_tls_key_args_t
111{
112 u32 app_index;
113 u8 *key;
114} vnet_app_add_tls_key_args_t;
115
Florin Coras6cf30ad2017-04-04 23:08:23 -0700116/* Application attach options */
Dave Barach68b0fb02017-02-28 15:15:56 -0500117typedef enum
118{
Florin Corasa5464812017-04-19 13:00:05 -0700119 APP_OPTIONS_FLAGS,
Florin Corasff6e7692017-12-11 04:59:01 -0800120 APP_OPTIONS_EVT_QUEUE_SIZE,
121 APP_OPTIONS_SEGMENT_SIZE,
122 APP_OPTIONS_ADD_SEGMENT_SIZE,
Dave Barach2c25a622017-06-26 11:35:07 -0400123 APP_OPTIONS_PRIVATE_SEGMENT_COUNT,
Florin Corasff6e7692017-12-11 04:59:01 -0800124 APP_OPTIONS_RX_FIFO_SIZE,
125 APP_OPTIONS_TX_FIFO_SIZE,
126 APP_OPTIONS_PREALLOC_FIFO_PAIRS,
Florin Corascea194d2017-10-02 00:18:51 -0700127 APP_OPTIONS_NAMESPACE,
128 APP_OPTIONS_NAMESPACE_SECRET,
Florin Coras7999e832017-10-31 01:51:04 -0700129 APP_OPTIONS_PROXY_TRANSPORT,
Florin Corasff6e7692017-12-11 04:59:01 -0800130 APP_OPTIONS_ACCEPT_COOKIE,
Florin Coras58d36f02018-03-09 13:05:53 -0800131 APP_OPTIONS_TLS_ENGINE,
Florin Corasff6e7692017-12-11 04:59:01 -0800132 APP_OPTIONS_N_OPTIONS
Florin Coras6cf30ad2017-04-04 23:08:23 -0700133} app_attach_options_index_t;
Dave Barach68b0fb02017-02-28 15:15:56 -0500134
Florin Corasa5464812017-04-19 13:00:05 -0700135#define foreach_app_options_flags \
Florin Corascea194d2017-10-02 00:18:51 -0700136 _(ACCEPT_REDIRECT, "Use FIFO with redirects") \
Florin Corasa5464812017-04-19 13:00:05 -0700137 _(ADD_SEGMENT, "Add segment and signal app if needed") \
Florin Coras7999e832017-10-31 01:51:04 -0700138 _(IS_BUILTIN, "Application is builtin") \
Florin Corascea194d2017-10-02 00:18:51 -0700139 _(IS_PROXY, "Application is proxying") \
140 _(USE_GLOBAL_SCOPE, "App can use global session scope") \
141 _(USE_LOCAL_SCOPE, "App can use local session scope")
Dave Barach68b0fb02017-02-28 15:15:56 -0500142
Florin Corasa5464812017-04-19 13:00:05 -0700143typedef enum _app_options
144{
145#define _(sym, str) APP_OPTIONS_##sym,
146 foreach_app_options_flags
147#undef _
148} app_options_t;
149
150typedef enum _app_options_flags
151{
152#define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym,
153 foreach_app_options_flags
154#undef _
155} app_options_flags_t;
156
Dave Barach68b0fb02017-02-28 15:15:56 -0500157int vnet_bind_uri (vnet_bind_args_t *);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700158int vnet_unbind_uri (vnet_unbind_args_t * a);
Florin Corascea194d2017-10-02 00:18:51 -0700159clib_error_t *vnet_connect_uri (vnet_connect_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500160
Florin Coras371ca502018-02-21 12:07:41 -0800161clib_error_t *vnet_application_attach (vnet_app_attach_args_t * a);
Florin Corascea194d2017-10-02 00:18:51 -0700162clib_error_t *vnet_bind (vnet_bind_args_t * a);
163clib_error_t *vnet_connect (vnet_connect_args_t * a);
164clib_error_t *vnet_unbind (vnet_unbind_args_t * a);
Florin Coras371ca502018-02-21 12:07:41 -0800165int vnet_application_detach (vnet_app_detach_args_t * a);
166int vnet_disconnect_session (vnet_disconnect_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500167
Florin Coras371ca502018-02-21 12:07:41 -0800168clib_error_t *vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a);
169clib_error_t *vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500170
Florin Coras371ca502018-02-21 12:07:41 -0800171extern const char test_srv_crt_rsa[];
172extern const u32 test_srv_crt_rsa_len;
173extern const char test_srv_key_rsa[];
174extern const u32 test_srv_key_rsa_len;
Florin Corasf8f516a2018-02-08 15:10:09 -0800175
Florin Coras7fb0fe12018-04-09 09:24:52 -0700176typedef struct app_session_transport_
177{
178 ip46_address_t rmt_ip; /**< remote ip */
179 ip46_address_t lcl_ip; /**< local ip */
180 u16 rmt_port; /**< remote port */
181 u16 lcl_port; /**< local port */
182 u8 is_ip4; /**< set if uses ip4 networking */
183} app_session_transport_t;
184
185typedef struct app_session_
186{
187 svm_fifo_t *rx_fifo; /**< rx fifo */
188 svm_fifo_t *tx_fifo; /**< tx fifo */
189 session_type_t session_type; /**< session type */
190 volatile u8 session_state; /**< session state */
191 u32 session_index; /**< index in owning pool */
192 app_session_transport_t transport; /**< transport info */
193 svm_queue_t *vpp_evt_q; /**< vpp event queue for session */
194 u8 is_dgram; /**< set if it works in dgram mode */
195} app_session_t;
196
197always_inline int
198app_send_dgram_raw (svm_fifo_t * f, app_session_transport_t * at,
199 svm_queue_t * vpp_evt_q, u8 * data, u32 len, u8 noblock)
200{
201 u32 max_enqueue, actual_write;
202 session_dgram_hdr_t hdr;
203 session_fifo_event_t evt;
204 int rv;
205
206 max_enqueue = svm_fifo_max_enqueue (f);
Florin Coras8e43d042018-05-04 15:46:57 -0700207 if (max_enqueue <= sizeof (session_dgram_hdr_t))
Florin Coras7fb0fe12018-04-09 09:24:52 -0700208 return 0;
209
210 max_enqueue -= sizeof (session_dgram_hdr_t);
211 actual_write = clib_min (len, max_enqueue);
212 hdr.data_length = actual_write;
213 hdr.data_offset = 0;
214 clib_memcpy (&hdr.rmt_ip, &at->rmt_ip, sizeof (ip46_address_t));
215 hdr.is_ip4 = at->is_ip4;
216 hdr.rmt_port = at->rmt_port;
217 clib_memcpy (&hdr.lcl_ip, &at->lcl_ip, sizeof (ip46_address_t));
218 hdr.lcl_port = at->lcl_port;
219 rv = svm_fifo_enqueue_nowait (f, sizeof (hdr), (u8 *) & hdr);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700220 ASSERT (rv == sizeof (hdr));
221
222 if ((rv = svm_fifo_enqueue_nowait (f, actual_write, data)) > 0)
223 {
224 if (svm_fifo_set_event (f))
225 {
226 evt.fifo = f;
227 evt.event_type = FIFO_EVENT_APP_TX;
228 svm_queue_add (vpp_evt_q, (u8 *) & evt, noblock);
229 }
230 }
Florin Coras8e43d042018-05-04 15:46:57 -0700231 ASSERT (rv);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700232 return rv;
233}
234
235always_inline int
236app_send_dgram (app_session_t * s, u8 * data, u32 len, u8 noblock)
237{
238 return app_send_dgram_raw (s->tx_fifo, &s->transport, s->vpp_evt_q, data,
239 len, noblock);
240}
241
242always_inline int
243app_send_stream_raw (svm_fifo_t * f, svm_queue_t * vpp_evt_q, u8 * data,
244 u32 len, u8 noblock)
245{
246 session_fifo_event_t evt;
247 int rv;
248
249 if ((rv = svm_fifo_enqueue_nowait (f, len, data)) > 0)
250 {
251 if (svm_fifo_set_event (f))
252 {
253 evt.fifo = f;
254 evt.event_type = FIFO_EVENT_APP_TX;
255 svm_queue_add (vpp_evt_q, (u8 *) & evt, noblock);
256 }
257 }
258 return rv;
259}
260
261always_inline int
262app_send_stream (app_session_t * s, u8 * data, u32 len, u8 noblock)
263{
264 return app_send_stream_raw (s->tx_fifo, s->vpp_evt_q, data, len, noblock);
265}
266
267always_inline int
268app_send (app_session_t * s, u8 * data, u32 len, u8 noblock)
269{
270 if (s->is_dgram)
271 return app_send_dgram (s, data, len, noblock);
272 return app_send_stream (s, data, len, noblock);
273}
274
275always_inline int
276app_recv_dgram_raw (svm_fifo_t * f, u8 * buf, u32 len,
277 app_session_transport_t * at, u8 clear_evt)
278{
279 session_dgram_pre_hdr_t ph;
280 u32 max_deq;
281 int rv;
282
283 if (clear_evt)
284 svm_fifo_unset_event (f);
285 max_deq = svm_fifo_max_dequeue (f);
286 if (max_deq < sizeof (session_dgram_hdr_t))
287 return 0;
288
289 svm_fifo_peek (f, 0, sizeof (ph), (u8 *) & ph);
290 ASSERT (ph.data_length >= ph.data_offset);
291 if (!ph.data_offset)
292 svm_fifo_peek (f, sizeof (ph), sizeof (*at), (u8 *) at);
293 len = clib_min (len, ph.data_length - ph.data_offset);
294 rv = svm_fifo_peek (f, ph.data_offset + SESSION_CONN_HDR_LEN, len, buf);
295 ph.data_offset += rv;
296 if (ph.data_offset == ph.data_length)
297 svm_fifo_dequeue_drop (f, ph.data_length + SESSION_CONN_HDR_LEN);
298 else
299 svm_fifo_overwrite_head (f, (u8 *) & ph, sizeof (ph));
300 return rv;
301}
302
303always_inline int
304app_recv_dgram (app_session_t * s, u8 * buf, u32 len)
305{
306 return app_recv_dgram_raw (s->rx_fifo, buf, len, &s->transport, 1);
307}
308
309always_inline int
310app_recv_stream_raw (svm_fifo_t * f, u8 * buf, u32 len, u8 clear_evt)
311{
312 if (clear_evt)
313 svm_fifo_unset_event (f);
314 return svm_fifo_dequeue_nowait (f, len, buf);
315}
316
317always_inline int
318app_recv_stream (app_session_t * s, u8 * buf, u32 len)
319{
320 return app_recv_stream_raw (s->rx_fifo, buf, len, 1);
321}
322
323always_inline int
324app_recv (app_session_t * s, u8 * data, u32 len)
325{
326 if (s->is_dgram)
327 return app_recv_dgram (s, data, len);
328 return app_recv_stream (s, data, len);
329}
330
Dave Barach68b0fb02017-02-28 15:15:56 -0500331#endif /* __included_uri_h__ */
332
333/*
334 * fd.io coding-style-patch-verification: ON
335 *
336 * Local Variables:
337 * eval: (c-set-style "gnu")
338 * End:
339 */