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 | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 26 | #define _(_type, _name) _type _name; |
| 27 | foreach_app_init_args |
| 28 | #undef _ |
| 29 | ssvm_private_t * segment; |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 30 | svm_msg_q_t *app_evt_q; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 31 | } vnet_app_attach_args_t; |
| 32 | |
| 33 | typedef struct _vnet_app_detach_args_t |
| 34 | { |
| 35 | u32 app_index; |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 36 | u32 api_client_index; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 37 | } vnet_app_detach_args_t; |
| 38 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 39 | typedef struct _vnet_bind_args_t |
| 40 | { |
| 41 | union |
| 42 | { |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 43 | session_endpoint_cfg_t sep_ext; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 44 | session_endpoint_t sep; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 45 | char *uri; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 46 | }; |
| 47 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 48 | u32 app_index; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 49 | u32 wrk_map_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 50 | |
| 51 | /* |
| 52 | * Results |
| 53 | */ |
| 54 | char *segment_name; |
| 55 | u32 segment_name_length; |
| 56 | u64 server_event_queue_address; |
| 57 | u64 handle; |
| 58 | } vnet_bind_args_t; |
| 59 | |
| 60 | typedef struct _vnet_unbind_args_t |
| 61 | { |
| 62 | union |
| 63 | { |
| 64 | char *uri; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 65 | u64 handle; /**< Session handle */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 66 | }; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 67 | u32 app_index; /**< Owning application index */ |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 68 | u32 wrk_map_index; /**< App's local pool worker index */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 69 | } vnet_unbind_args_t; |
| 70 | |
| 71 | typedef struct _vnet_connect_args |
| 72 | { |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 73 | union |
| 74 | { |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 75 | session_endpoint_cfg_t sep_ext; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 76 | session_endpoint_t sep; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 77 | char *uri; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 78 | }; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 79 | u32 app_index; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 80 | u32 wrk_map_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 81 | u32 api_context; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 82 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 83 | session_handle_t session_handle; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 84 | } vnet_connect_args_t; |
| 85 | |
| 86 | typedef struct _vnet_disconnect_args_t |
| 87 | { |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 88 | session_handle_t handle; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 89 | u32 app_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 90 | } vnet_disconnect_args_t; |
| 91 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 92 | typedef struct _vnet_application_add_tls_cert_args_t |
| 93 | { |
| 94 | u32 app_index; |
| 95 | u8 *cert; |
| 96 | } vnet_app_add_tls_cert_args_t; |
| 97 | |
| 98 | typedef struct _vnet_application_add_tls_key_args_t |
| 99 | { |
| 100 | u32 app_index; |
| 101 | u8 *key; |
| 102 | } vnet_app_add_tls_key_args_t; |
| 103 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 104 | /* Application attach options */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 105 | typedef enum |
| 106 | { |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 107 | APP_OPTIONS_FLAGS, |
Florin Coras | ff6e769 | 2017-12-11 04:59:01 -0800 | [diff] [blame] | 108 | APP_OPTIONS_EVT_QUEUE_SIZE, |
| 109 | APP_OPTIONS_SEGMENT_SIZE, |
| 110 | APP_OPTIONS_ADD_SEGMENT_SIZE, |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 111 | APP_OPTIONS_PRIVATE_SEGMENT_COUNT, |
Florin Coras | ff6e769 | 2017-12-11 04:59:01 -0800 | [diff] [blame] | 112 | APP_OPTIONS_RX_FIFO_SIZE, |
| 113 | APP_OPTIONS_TX_FIFO_SIZE, |
| 114 | APP_OPTIONS_PREALLOC_FIFO_PAIRS, |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 115 | APP_OPTIONS_NAMESPACE, |
| 116 | APP_OPTIONS_NAMESPACE_SECRET, |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 117 | APP_OPTIONS_PROXY_TRANSPORT, |
Florin Coras | ff6e769 | 2017-12-11 04:59:01 -0800 | [diff] [blame] | 118 | APP_OPTIONS_ACCEPT_COOKIE, |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 119 | APP_OPTIONS_TLS_ENGINE, |
Florin Coras | ff6e769 | 2017-12-11 04:59:01 -0800 | [diff] [blame] | 120 | APP_OPTIONS_N_OPTIONS |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 121 | } app_attach_options_index_t; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 122 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 123 | #define foreach_app_options_flags \ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 124 | _(ACCEPT_REDIRECT, "Use FIFO with redirects") \ |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 125 | _(ADD_SEGMENT, "Add segment and signal app if needed") \ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 126 | _(IS_BUILTIN, "Application is builtin") \ |
Florin Coras | da3eec1 | 2018-09-07 13:29:17 -0700 | [diff] [blame] | 127 | _(IS_TRANSPORT_APP, "Application is a transport proto") \ |
Florin Coras | 7e12d94 | 2018-06-27 14:32:43 -0700 | [diff] [blame] | 128 | _(IS_PROXY, "Application is proxying") \ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 129 | _(USE_GLOBAL_SCOPE, "App can use global session scope") \ |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 130 | _(USE_LOCAL_SCOPE, "App can use local session scope") \ |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 131 | _(USE_MQ_FOR_CTRL_MSGS, "Use message queue for ctr msgs") \ |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 132 | _(EVT_MQ_USE_EVENTFD, "Use eventfds for signaling") \ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 133 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 134 | typedef enum _app_options |
| 135 | { |
| 136 | #define _(sym, str) APP_OPTIONS_##sym, |
| 137 | foreach_app_options_flags |
| 138 | #undef _ |
| 139 | } app_options_t; |
| 140 | |
| 141 | typedef enum _app_options_flags |
| 142 | { |
| 143 | #define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym, |
| 144 | foreach_app_options_flags |
| 145 | #undef _ |
| 146 | } app_options_flags_t; |
| 147 | |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 148 | #define foreach_fd_type \ |
| 149 | _(VPP_MQ_SEGMENT, "Fd for vpp's event mq segment") \ |
| 150 | _(MEMFD_SEGMENT, "Fd for memfd segment") \ |
| 151 | _(MQ_EVENTFD, "Event fd used by message queue") \ |
| 152 | _(VPP_MQ_EVENTFD, "Event fd used by vpp's message queue") \ |
| 153 | |
| 154 | typedef enum session_fd_type_ |
| 155 | { |
| 156 | #define _(sym, str) SESSION_FD_##sym, |
| 157 | foreach_fd_type |
| 158 | #undef _ |
| 159 | SESSION_N_FD_TYPE |
| 160 | } session_fd_type_t; |
| 161 | |
| 162 | typedef enum session_fd_flag_ |
| 163 | { |
| 164 | #define _(sym, str) SESSION_FD_F_##sym = 1 << SESSION_FD_##sym, |
| 165 | foreach_fd_type |
| 166 | #undef _ |
| 167 | } session_fd_flag_t; |
| 168 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 169 | int vnet_bind_uri (vnet_bind_args_t *); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 170 | int vnet_unbind_uri (vnet_unbind_args_t * a); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 171 | clib_error_t *vnet_connect_uri (vnet_connect_args_t * a); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 172 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 173 | clib_error_t *vnet_application_attach (vnet_app_attach_args_t * a); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 174 | clib_error_t *vnet_bind (vnet_bind_args_t * a); |
| 175 | clib_error_t *vnet_connect (vnet_connect_args_t * a); |
| 176 | clib_error_t *vnet_unbind (vnet_unbind_args_t * a); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 177 | int vnet_application_detach (vnet_app_detach_args_t * a); |
| 178 | int vnet_disconnect_session (vnet_disconnect_args_t * a); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 179 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 180 | clib_error_t *vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a); |
| 181 | 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] | 182 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 183 | extern const char test_srv_crt_rsa[]; |
| 184 | extern const u32 test_srv_crt_rsa_len; |
| 185 | extern const char test_srv_key_rsa[]; |
| 186 | extern const u32 test_srv_key_rsa_len; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 187 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 188 | typedef struct app_session_transport_ |
| 189 | { |
| 190 | ip46_address_t rmt_ip; /**< remote ip */ |
| 191 | ip46_address_t lcl_ip; /**< local ip */ |
Florin Coras | 7e12d94 | 2018-06-27 14:32:43 -0700 | [diff] [blame] | 192 | u16 rmt_port; /**< remote port (network order) */ |
| 193 | u16 lcl_port; /**< local port (network order) */ |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 194 | u8 is_ip4; /**< set if uses ip4 networking */ |
| 195 | } app_session_transport_t; |
| 196 | |
Florin Coras | 7e12d94 | 2018-06-27 14:32:43 -0700 | [diff] [blame] | 197 | #define foreach_app_session_field \ |
| 198 | _(svm_fifo_t, *rx_fifo) /**< rx fifo */ \ |
| 199 | _(svm_fifo_t, *tx_fifo) /**< tx fifo */ \ |
| 200 | _(session_type_t, session_type) /**< session type */ \ |
| 201 | _(volatile u8, session_state) /**< session state */ \ |
| 202 | _(u32, session_index) /**< index in owning pool */ \ |
| 203 | _(app_session_transport_t, transport) /**< transport info */ \ |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 204 | _(svm_msg_q_t, *vpp_evt_q) /**< vpp event queue */ \ |
Florin Coras | 7e12d94 | 2018-06-27 14:32:43 -0700 | [diff] [blame] | 205 | _(u8, is_dgram) /**< flag for dgram mode */ \ |
| 206 | |
| 207 | typedef struct |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 208 | { |
Florin Coras | 7e12d94 | 2018-06-27 14:32:43 -0700 | [diff] [blame] | 209 | #define _(type, name) type name; |
| 210 | foreach_app_session_field |
| 211 | #undef _ |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 212 | } app_session_t; |
| 213 | |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 214 | typedef struct session_bound_msg_ |
| 215 | { |
| 216 | u32 context; |
| 217 | u64 handle; |
| 218 | i32 retval; |
| 219 | u8 lcl_is_ip4; |
| 220 | u8 lcl_ip[16]; |
| 221 | u16 lcl_port; |
| 222 | u64 rx_fifo; |
| 223 | u64 tx_fifo; |
| 224 | u64 vpp_evt_q; |
| 225 | u32 segment_size; |
| 226 | u8 segment_name_length; |
| 227 | u8 segment_name[128]; |
| 228 | } __clib_packed session_bound_msg_t; |
| 229 | |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 230 | typedef struct session_accepted_msg_ |
| 231 | { |
| 232 | u32 context; |
| 233 | u64 listener_handle; |
| 234 | u64 handle; |
| 235 | u64 server_rx_fifo; |
| 236 | u64 server_tx_fifo; |
| 237 | u64 vpp_event_queue_address; |
| 238 | u64 server_event_queue_address; |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 239 | u64 client_event_queue_address; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 240 | u16 port; |
| 241 | u8 is_ip4; |
| 242 | u8 ip[16]; |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 243 | } __clib_packed session_accepted_msg_t; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 244 | |
| 245 | typedef struct session_accepted_reply_msg_ |
| 246 | { |
| 247 | u32 context; |
| 248 | i32 retval; |
| 249 | u64 handle; |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 250 | } __clib_packed session_accepted_reply_msg_t; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 251 | |
| 252 | /* Make sure this is not too large, otherwise it won't fit when dequeued in |
| 253 | * the session queue node */ |
| 254 | STATIC_ASSERT (sizeof (session_accepted_reply_msg_t) <= 16, "accept reply"); |
| 255 | |
| 256 | typedef struct session_connected_msg_ |
| 257 | { |
| 258 | u32 context; |
| 259 | i32 retval; |
| 260 | u64 handle; |
| 261 | u64 server_rx_fifo; |
| 262 | u64 server_tx_fifo; |
| 263 | u64 vpp_event_queue_address; |
| 264 | u64 client_event_queue_address; |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 265 | u64 server_event_queue_address; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 266 | u32 segment_size; |
| 267 | u8 segment_name_length; |
| 268 | u8 segment_name[64]; |
| 269 | u8 lcl_ip[16]; |
| 270 | u8 is_ip4; |
| 271 | u16 lcl_port; |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 272 | } __clib_packed session_connected_msg_t; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 273 | |
| 274 | typedef struct session_disconnected_msg_ |
| 275 | { |
| 276 | u32 client_index; |
| 277 | u32 context; |
| 278 | u64 handle; |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 279 | } __clib_packed session_disconnected_msg_t; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 280 | |
| 281 | typedef struct session_disconnected_reply_msg_ |
| 282 | { |
| 283 | u32 context; |
| 284 | i32 retval; |
| 285 | u64 handle; |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 286 | } __clib_packed session_disconnected_reply_msg_t; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 287 | |
| 288 | typedef struct session_reset_msg_ |
| 289 | { |
| 290 | u32 client_index; |
| 291 | u32 context; |
| 292 | u64 handle; |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 293 | } __clib_packed session_reset_msg_t; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 294 | |
| 295 | typedef struct session_reset_reply_msg_ |
| 296 | { |
| 297 | u32 client_index; |
| 298 | u32 context; |
| 299 | i32 retval; |
| 300 | u64 handle; |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 301 | } __clib_packed session_reset_reply_msg_t; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 302 | |
| 303 | typedef struct app_session_event_ |
| 304 | { |
| 305 | svm_msg_q_msg_t msg; |
| 306 | session_event_t *evt; |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 307 | } __clib_packed app_session_evt_t; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 308 | |
| 309 | static inline void |
| 310 | app_alloc_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt, |
| 311 | u8 evt_type) |
| 312 | { |
| 313 | svm_msg_q_lock_and_alloc_msg_w_ring (mq, |
| 314 | SESSION_MQ_CTRL_EVT_RING, |
| 315 | SVM_Q_WAIT, &app_evt->msg); |
| 316 | svm_msg_q_unlock (mq); |
| 317 | app_evt->evt = svm_msg_q_msg_data (mq, &app_evt->msg); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 318 | clib_memset (app_evt->evt, 0, sizeof (*app_evt->evt)); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 319 | app_evt->evt->event_type = evt_type; |
| 320 | } |
| 321 | |
| 322 | static inline void |
| 323 | app_send_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt) |
| 324 | { |
| 325 | svm_msg_q_add (mq, &app_evt->msg, SVM_Q_WAIT); |
| 326 | } |
| 327 | |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 328 | /** |
| 329 | * Send fifo io event to vpp worker thread |
| 330 | * |
| 331 | * Because there may be multiple writers to one of vpp's queues, this |
| 332 | * protects message allocation and enqueueing. |
| 333 | * |
| 334 | * @param mq vpp message queue |
| 335 | * @param f fifo for which the event is sent |
| 336 | * @param evt_type type of event |
| 337 | * @param noblock flag to indicate is request is blocking or not |
| 338 | * @return 0 if success, negative integer otherwise |
| 339 | */ |
| 340 | static inline int |
| 341 | app_send_io_evt_to_vpp (svm_msg_q_t * mq, svm_fifo_t * f, u8 evt_type, |
| 342 | u8 noblock) |
| 343 | { |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 344 | session_event_t *evt; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 345 | svm_msg_q_msg_t msg; |
| 346 | |
| 347 | if (noblock) |
| 348 | { |
| 349 | if (svm_msg_q_try_lock (mq)) |
| 350 | return -1; |
| 351 | if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING))) |
| 352 | { |
| 353 | svm_msg_q_unlock (mq); |
| 354 | return -2; |
| 355 | } |
| 356 | msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING); |
| 357 | if (PREDICT_FALSE (svm_msg_q_msg_is_invalid (&msg))) |
| 358 | { |
| 359 | svm_msg_q_unlock (mq); |
| 360 | return -2; |
| 361 | } |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 362 | evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 363 | evt->fifo = f; |
| 364 | evt->event_type = evt_type; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 365 | svm_msg_q_add_and_unlock (mq, &msg); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 366 | return 0; |
| 367 | } |
| 368 | else |
| 369 | { |
| 370 | svm_msg_q_lock (mq); |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 371 | while (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)) |
| 372 | svm_msg_q_wait (mq); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 373 | msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 374 | evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 375 | evt->fifo = f; |
| 376 | evt->event_type = evt_type; |
| 377 | if (svm_msg_q_is_full (mq)) |
| 378 | svm_msg_q_wait (mq); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 379 | svm_msg_q_add_and_unlock (mq, &msg); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 380 | return 0; |
| 381 | } |
| 382 | } |
| 383 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 384 | always_inline int |
| 385 | app_send_dgram_raw (svm_fifo_t * f, app_session_transport_t * at, |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 386 | svm_msg_q_t * vpp_evt_q, u8 * data, u32 len, u8 evt_type, |
| 387 | u8 noblock) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 388 | { |
| 389 | u32 max_enqueue, actual_write; |
| 390 | session_dgram_hdr_t hdr; |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 391 | int rv; |
| 392 | |
| 393 | max_enqueue = svm_fifo_max_enqueue (f); |
Florin Coras | 8e43d04 | 2018-05-04 15:46:57 -0700 | [diff] [blame] | 394 | if (max_enqueue <= sizeof (session_dgram_hdr_t)) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 395 | return 0; |
| 396 | |
| 397 | max_enqueue -= sizeof (session_dgram_hdr_t); |
| 398 | actual_write = clib_min (len, max_enqueue); |
| 399 | hdr.data_length = actual_write; |
| 400 | hdr.data_offset = 0; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 401 | clib_memcpy_fast (&hdr.rmt_ip, &at->rmt_ip, sizeof (ip46_address_t)); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 402 | hdr.is_ip4 = at->is_ip4; |
| 403 | hdr.rmt_port = at->rmt_port; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 404 | clib_memcpy_fast (&hdr.lcl_ip, &at->lcl_ip, sizeof (ip46_address_t)); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 405 | hdr.lcl_port = at->lcl_port; |
| 406 | rv = svm_fifo_enqueue_nowait (f, sizeof (hdr), (u8 *) & hdr); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 407 | ASSERT (rv == sizeof (hdr)); |
| 408 | |
| 409 | if ((rv = svm_fifo_enqueue_nowait (f, actual_write, data)) > 0) |
| 410 | { |
| 411 | if (svm_fifo_set_event (f)) |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 412 | app_send_io_evt_to_vpp (vpp_evt_q, f, evt_type, noblock); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 413 | } |
Florin Coras | 8e43d04 | 2018-05-04 15:46:57 -0700 | [diff] [blame] | 414 | ASSERT (rv); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 415 | return rv; |
| 416 | } |
| 417 | |
| 418 | always_inline int |
| 419 | app_send_dgram (app_session_t * s, u8 * data, u32 len, u8 noblock) |
| 420 | { |
| 421 | return app_send_dgram_raw (s->tx_fifo, &s->transport, s->vpp_evt_q, data, |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 422 | len, FIFO_EVENT_APP_TX, noblock); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | always_inline int |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 426 | app_send_stream_raw (svm_fifo_t * f, svm_msg_q_t * vpp_evt_q, u8 * data, |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 427 | u32 len, u8 evt_type, u8 noblock) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 428 | { |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 429 | int rv; |
| 430 | |
| 431 | if ((rv = svm_fifo_enqueue_nowait (f, len, data)) > 0) |
| 432 | { |
| 433 | if (svm_fifo_set_event (f)) |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 434 | app_send_io_evt_to_vpp (vpp_evt_q, f, evt_type, noblock); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 435 | } |
| 436 | return rv; |
| 437 | } |
| 438 | |
| 439 | always_inline int |
| 440 | app_send_stream (app_session_t * s, u8 * data, u32 len, u8 noblock) |
| 441 | { |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 442 | return app_send_stream_raw (s->tx_fifo, s->vpp_evt_q, data, len, |
| 443 | FIFO_EVENT_APP_TX, noblock); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | always_inline int |
| 447 | app_send (app_session_t * s, u8 * data, u32 len, u8 noblock) |
| 448 | { |
| 449 | if (s->is_dgram) |
| 450 | return app_send_dgram (s, data, len, noblock); |
| 451 | return app_send_stream (s, data, len, noblock); |
| 452 | } |
| 453 | |
| 454 | always_inline int |
| 455 | app_recv_dgram_raw (svm_fifo_t * f, u8 * buf, u32 len, |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 456 | app_session_transport_t * at, u8 clear_evt, u8 peek) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 457 | { |
| 458 | session_dgram_pre_hdr_t ph; |
| 459 | u32 max_deq; |
| 460 | int rv; |
| 461 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 462 | max_deq = svm_fifo_max_dequeue (f); |
| 463 | if (max_deq < sizeof (session_dgram_hdr_t)) |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 464 | { |
| 465 | if (clear_evt) |
| 466 | svm_fifo_unset_event (f); |
| 467 | return 0; |
| 468 | } |
| 469 | |
| 470 | if (clear_evt) |
| 471 | svm_fifo_unset_event (f); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 472 | |
| 473 | svm_fifo_peek (f, 0, sizeof (ph), (u8 *) & ph); |
| 474 | ASSERT (ph.data_length >= ph.data_offset); |
| 475 | if (!ph.data_offset) |
| 476 | svm_fifo_peek (f, sizeof (ph), sizeof (*at), (u8 *) at); |
| 477 | len = clib_min (len, ph.data_length - ph.data_offset); |
| 478 | rv = svm_fifo_peek (f, ph.data_offset + SESSION_CONN_HDR_LEN, len, buf); |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 479 | if (peek) |
| 480 | return rv; |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 481 | ph.data_offset += rv; |
| 482 | if (ph.data_offset == ph.data_length) |
| 483 | svm_fifo_dequeue_drop (f, ph.data_length + SESSION_CONN_HDR_LEN); |
| 484 | else |
| 485 | svm_fifo_overwrite_head (f, (u8 *) & ph, sizeof (ph)); |
| 486 | return rv; |
| 487 | } |
| 488 | |
| 489 | always_inline int |
| 490 | app_recv_dgram (app_session_t * s, u8 * buf, u32 len) |
| 491 | { |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 492 | return app_recv_dgram_raw (s->rx_fifo, buf, len, &s->transport, 1, 0); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 493 | } |
| 494 | |
| 495 | always_inline int |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 496 | app_recv_stream_raw (svm_fifo_t * f, u8 * buf, u32 len, u8 clear_evt, u8 peek) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 497 | { |
| 498 | if (clear_evt) |
| 499 | svm_fifo_unset_event (f); |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 500 | |
| 501 | if (peek) |
| 502 | return svm_fifo_peek (f, 0, len, buf); |
| 503 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 504 | return svm_fifo_dequeue_nowait (f, len, buf); |
| 505 | } |
| 506 | |
| 507 | always_inline int |
| 508 | app_recv_stream (app_session_t * s, u8 * buf, u32 len) |
| 509 | { |
Florin Coras | 460dce6 | 2018-07-27 05:45:06 -0700 | [diff] [blame] | 510 | return app_recv_stream_raw (s->rx_fifo, buf, len, 1, 0); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 511 | } |
| 512 | |
| 513 | always_inline int |
| 514 | app_recv (app_session_t * s, u8 * data, u32 len) |
| 515 | { |
| 516 | if (s->is_dgram) |
| 517 | return app_recv_dgram (s, data, len); |
| 518 | return app_recv_stream (s, data, len); |
| 519 | } |
| 520 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 521 | #endif /* __included_uri_h__ */ |
| 522 | |
| 523 | /* |
| 524 | * fd.io coding-style-patch-verification: ON |
| 525 | * |
| 526 | * Local Variables: |
| 527 | * eval: (c-set-style "gnu") |
| 528 | * End: |
| 529 | */ |