Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
| 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 Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 18 | #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 Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 22 | #include <vnet/tls/tls.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 23 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 24 | typedef struct _vnet_app_attach_args_t |
| 25 | { |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 26 | /** Binary API client index */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 27 | u32 api_client_index; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 28 | |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 29 | /** Application name. Used by builtin apps */ |
| 30 | u8 *name; |
| 31 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 32 | /** Application and segment manager options */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 33 | u64 *options; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 34 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 35 | /** ID of the namespace the app has access to */ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 36 | u8 *namespace_id; |
| 37 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 38 | /** Session to application callback functions */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 39 | session_cb_vft_t *session_cb_vft; |
| 40 | |
| 41 | /* |
| 42 | * Results |
| 43 | */ |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 44 | ssvm_private_t *segment; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 45 | u64 app_event_queue_address; |
| 46 | u32 app_index; |
| 47 | } vnet_app_attach_args_t; |
| 48 | |
| 49 | typedef struct _vnet_app_detach_args_t |
| 50 | { |
| 51 | u32 app_index; |
| 52 | } vnet_app_detach_args_t; |
| 53 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 54 | typedef struct _vnet_bind_args_t |
| 55 | { |
| 56 | union |
| 57 | { |
| 58 | char *uri; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 59 | session_endpoint_t sep; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 60 | }; |
| 61 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 62 | u32 app_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 63 | |
| 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 | |
| 73 | typedef struct _vnet_unbind_args_t |
| 74 | { |
| 75 | union |
| 76 | { |
| 77 | char *uri; |
| 78 | u64 handle; |
| 79 | }; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 80 | u32 app_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 81 | } vnet_unbind_args_t; |
| 82 | |
| 83 | typedef struct _vnet_connect_args |
| 84 | { |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 85 | union |
| 86 | { |
| 87 | char *uri; |
Florin Coras | 8f89dd0 | 2018-03-05 16:53:07 -0800 | [diff] [blame] | 88 | session_endpoint_extended_t sep; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 89 | }; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 90 | u32 app_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 91 | u32 api_context; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 92 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 93 | session_handle_t session_handle; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 94 | } vnet_connect_args_t; |
| 95 | |
| 96 | typedef struct _vnet_disconnect_args_t |
| 97 | { |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 98 | session_handle_t handle; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 99 | u32 app_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 100 | } vnet_disconnect_args_t; |
| 101 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 102 | typedef 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 | |
| 108 | typedef 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 Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 114 | /* Application attach options */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 115 | typedef enum |
| 116 | { |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 117 | APP_OPTIONS_FLAGS, |
Florin Coras | ff6e769 | 2017-12-11 04:59:01 -0800 | [diff] [blame] | 118 | APP_OPTIONS_EVT_QUEUE_SIZE, |
| 119 | APP_OPTIONS_SEGMENT_SIZE, |
| 120 | APP_OPTIONS_ADD_SEGMENT_SIZE, |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 121 | APP_OPTIONS_PRIVATE_SEGMENT_COUNT, |
Florin Coras | ff6e769 | 2017-12-11 04:59:01 -0800 | [diff] [blame] | 122 | APP_OPTIONS_RX_FIFO_SIZE, |
| 123 | APP_OPTIONS_TX_FIFO_SIZE, |
| 124 | APP_OPTIONS_PREALLOC_FIFO_PAIRS, |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 125 | APP_OPTIONS_NAMESPACE, |
| 126 | APP_OPTIONS_NAMESPACE_SECRET, |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 127 | APP_OPTIONS_PROXY_TRANSPORT, |
Florin Coras | ff6e769 | 2017-12-11 04:59:01 -0800 | [diff] [blame] | 128 | APP_OPTIONS_ACCEPT_COOKIE, |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 129 | APP_OPTIONS_TLS_ENGINE, |
Florin Coras | ff6e769 | 2017-12-11 04:59:01 -0800 | [diff] [blame] | 130 | APP_OPTIONS_N_OPTIONS |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 131 | } app_attach_options_index_t; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 132 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 133 | #define foreach_app_options_flags \ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 134 | _(ACCEPT_REDIRECT, "Use FIFO with redirects") \ |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 135 | _(ADD_SEGMENT, "Add segment and signal app if needed") \ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 136 | _(IS_BUILTIN, "Application is builtin") \ |
Florin Coras | 7e12d94 | 2018-06-27 14:32:43 -0700 | [diff] [blame] | 137 | _(IS_PROXY, "Application is proxying") \ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 138 | _(USE_GLOBAL_SCOPE, "App can use global session scope") \ |
| 139 | _(USE_LOCAL_SCOPE, "App can use local session scope") |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 140 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 141 | typedef enum _app_options |
| 142 | { |
| 143 | #define _(sym, str) APP_OPTIONS_##sym, |
| 144 | foreach_app_options_flags |
| 145 | #undef _ |
| 146 | } app_options_t; |
| 147 | |
| 148 | typedef enum _app_options_flags |
| 149 | { |
| 150 | #define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym, |
| 151 | foreach_app_options_flags |
| 152 | #undef _ |
| 153 | } app_options_flags_t; |
| 154 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 155 | int vnet_bind_uri (vnet_bind_args_t *); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 156 | int vnet_unbind_uri (vnet_unbind_args_t * a); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 157 | clib_error_t *vnet_connect_uri (vnet_connect_args_t * a); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 158 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 159 | clib_error_t *vnet_application_attach (vnet_app_attach_args_t * a); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 160 | clib_error_t *vnet_bind (vnet_bind_args_t * a); |
| 161 | clib_error_t *vnet_connect (vnet_connect_args_t * a); |
| 162 | clib_error_t *vnet_unbind (vnet_unbind_args_t * a); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 163 | int vnet_application_detach (vnet_app_detach_args_t * a); |
| 164 | int vnet_disconnect_session (vnet_disconnect_args_t * a); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 165 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 166 | clib_error_t *vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a); |
| 167 | clib_error_t *vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 168 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 169 | extern const char test_srv_crt_rsa[]; |
| 170 | extern const u32 test_srv_crt_rsa_len; |
| 171 | extern const char test_srv_key_rsa[]; |
| 172 | extern const u32 test_srv_key_rsa_len; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 173 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 174 | typedef struct app_session_transport_ |
| 175 | { |
| 176 | ip46_address_t rmt_ip; /**< remote ip */ |
| 177 | ip46_address_t lcl_ip; /**< local ip */ |
Florin Coras | 7e12d94 | 2018-06-27 14:32:43 -0700 | [diff] [blame] | 178 | u16 rmt_port; /**< remote port (network order) */ |
| 179 | u16 lcl_port; /**< local port (network order) */ |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 180 | u8 is_ip4; /**< set if uses ip4 networking */ |
| 181 | } app_session_transport_t; |
| 182 | |
Florin Coras | 7e12d94 | 2018-06-27 14:32:43 -0700 | [diff] [blame] | 183 | #define foreach_app_session_field \ |
| 184 | _(svm_fifo_t, *rx_fifo) /**< rx fifo */ \ |
| 185 | _(svm_fifo_t, *tx_fifo) /**< tx fifo */ \ |
| 186 | _(session_type_t, session_type) /**< session type */ \ |
| 187 | _(volatile u8, session_state) /**< session state */ \ |
| 188 | _(u32, session_index) /**< index in owning pool */ \ |
| 189 | _(app_session_transport_t, transport) /**< transport info */ \ |
| 190 | _(svm_queue_t, *vpp_evt_q) /**< vpp event queue */ \ |
| 191 | _(u8, is_dgram) /**< flag for dgram mode */ \ |
| 192 | |
| 193 | typedef struct |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 194 | { |
Florin Coras | 7e12d94 | 2018-06-27 14:32:43 -0700 | [diff] [blame] | 195 | #define _(type, name) type name; |
| 196 | foreach_app_session_field |
| 197 | #undef _ |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 198 | } app_session_t; |
| 199 | |
| 200 | always_inline int |
| 201 | app_send_dgram_raw (svm_fifo_t * f, app_session_transport_t * at, |
| 202 | svm_queue_t * vpp_evt_q, u8 * data, u32 len, u8 noblock) |
| 203 | { |
| 204 | u32 max_enqueue, actual_write; |
| 205 | session_dgram_hdr_t hdr; |
| 206 | session_fifo_event_t evt; |
| 207 | int rv; |
| 208 | |
| 209 | max_enqueue = svm_fifo_max_enqueue (f); |
Florin Coras | 8e43d04 | 2018-05-04 15:46:57 -0700 | [diff] [blame] | 210 | if (max_enqueue <= sizeof (session_dgram_hdr_t)) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 211 | return 0; |
| 212 | |
| 213 | max_enqueue -= sizeof (session_dgram_hdr_t); |
| 214 | actual_write = clib_min (len, max_enqueue); |
| 215 | hdr.data_length = actual_write; |
| 216 | hdr.data_offset = 0; |
| 217 | clib_memcpy (&hdr.rmt_ip, &at->rmt_ip, sizeof (ip46_address_t)); |
| 218 | hdr.is_ip4 = at->is_ip4; |
| 219 | hdr.rmt_port = at->rmt_port; |
| 220 | clib_memcpy (&hdr.lcl_ip, &at->lcl_ip, sizeof (ip46_address_t)); |
| 221 | hdr.lcl_port = at->lcl_port; |
| 222 | rv = svm_fifo_enqueue_nowait (f, sizeof (hdr), (u8 *) & hdr); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 223 | ASSERT (rv == sizeof (hdr)); |
| 224 | |
| 225 | if ((rv = svm_fifo_enqueue_nowait (f, actual_write, data)) > 0) |
| 226 | { |
| 227 | if (svm_fifo_set_event (f)) |
| 228 | { |
| 229 | evt.fifo = f; |
| 230 | evt.event_type = FIFO_EVENT_APP_TX; |
| 231 | svm_queue_add (vpp_evt_q, (u8 *) & evt, noblock); |
| 232 | } |
| 233 | } |
Florin Coras | 8e43d04 | 2018-05-04 15:46:57 -0700 | [diff] [blame] | 234 | ASSERT (rv); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 235 | return rv; |
| 236 | } |
| 237 | |
| 238 | always_inline int |
| 239 | app_send_dgram (app_session_t * s, u8 * data, u32 len, u8 noblock) |
| 240 | { |
| 241 | return app_send_dgram_raw (s->tx_fifo, &s->transport, s->vpp_evt_q, data, |
| 242 | len, noblock); |
| 243 | } |
| 244 | |
| 245 | always_inline int |
| 246 | app_send_stream_raw (svm_fifo_t * f, svm_queue_t * vpp_evt_q, u8 * data, |
| 247 | u32 len, u8 noblock) |
| 248 | { |
| 249 | session_fifo_event_t evt; |
| 250 | int rv; |
| 251 | |
| 252 | if ((rv = svm_fifo_enqueue_nowait (f, len, data)) > 0) |
| 253 | { |
| 254 | if (svm_fifo_set_event (f)) |
| 255 | { |
| 256 | evt.fifo = f; |
| 257 | evt.event_type = FIFO_EVENT_APP_TX; |
| 258 | svm_queue_add (vpp_evt_q, (u8 *) & evt, noblock); |
| 259 | } |
| 260 | } |
| 261 | return rv; |
| 262 | } |
| 263 | |
| 264 | always_inline int |
| 265 | app_send_stream (app_session_t * s, u8 * data, u32 len, u8 noblock) |
| 266 | { |
| 267 | return app_send_stream_raw (s->tx_fifo, s->vpp_evt_q, data, len, noblock); |
| 268 | } |
| 269 | |
| 270 | always_inline int |
| 271 | app_send (app_session_t * s, u8 * data, u32 len, u8 noblock) |
| 272 | { |
| 273 | if (s->is_dgram) |
| 274 | return app_send_dgram (s, data, len, noblock); |
| 275 | return app_send_stream (s, data, len, noblock); |
| 276 | } |
| 277 | |
| 278 | always_inline int |
| 279 | app_recv_dgram_raw (svm_fifo_t * f, u8 * buf, u32 len, |
| 280 | app_session_transport_t * at, u8 clear_evt) |
| 281 | { |
| 282 | session_dgram_pre_hdr_t ph; |
| 283 | u32 max_deq; |
| 284 | int rv; |
| 285 | |
| 286 | if (clear_evt) |
| 287 | svm_fifo_unset_event (f); |
| 288 | max_deq = svm_fifo_max_dequeue (f); |
| 289 | if (max_deq < sizeof (session_dgram_hdr_t)) |
| 290 | return 0; |
| 291 | |
| 292 | svm_fifo_peek (f, 0, sizeof (ph), (u8 *) & ph); |
| 293 | ASSERT (ph.data_length >= ph.data_offset); |
| 294 | if (!ph.data_offset) |
| 295 | svm_fifo_peek (f, sizeof (ph), sizeof (*at), (u8 *) at); |
| 296 | len = clib_min (len, ph.data_length - ph.data_offset); |
| 297 | rv = svm_fifo_peek (f, ph.data_offset + SESSION_CONN_HDR_LEN, len, buf); |
| 298 | ph.data_offset += rv; |
| 299 | if (ph.data_offset == ph.data_length) |
| 300 | svm_fifo_dequeue_drop (f, ph.data_length + SESSION_CONN_HDR_LEN); |
| 301 | else |
| 302 | svm_fifo_overwrite_head (f, (u8 *) & ph, sizeof (ph)); |
| 303 | return rv; |
| 304 | } |
| 305 | |
| 306 | always_inline int |
| 307 | app_recv_dgram (app_session_t * s, u8 * buf, u32 len) |
| 308 | { |
| 309 | return app_recv_dgram_raw (s->rx_fifo, buf, len, &s->transport, 1); |
| 310 | } |
| 311 | |
| 312 | always_inline int |
| 313 | app_recv_stream_raw (svm_fifo_t * f, u8 * buf, u32 len, u8 clear_evt) |
| 314 | { |
| 315 | if (clear_evt) |
| 316 | svm_fifo_unset_event (f); |
| 317 | return svm_fifo_dequeue_nowait (f, len, buf); |
| 318 | } |
| 319 | |
| 320 | always_inline int |
| 321 | app_recv_stream (app_session_t * s, u8 * buf, u32 len) |
| 322 | { |
| 323 | return app_recv_stream_raw (s->rx_fifo, buf, len, 1); |
| 324 | } |
| 325 | |
| 326 | always_inline int |
| 327 | app_recv (app_session_t * s, u8 * data, u32 len) |
| 328 | { |
| 329 | if (s->is_dgram) |
| 330 | return app_recv_dgram (s, data, len); |
| 331 | return app_recv_stream (s, data, len); |
| 332 | } |
| 333 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 334 | #endif /* __included_uri_h__ */ |
| 335 | |
| 336 | /* |
| 337 | * fd.io coding-style-patch-verification: ON |
| 338 | * |
| 339 | * Local Variables: |
| 340 | * eval: (c-set-style "gnu") |
| 341 | * End: |
| 342 | */ |