Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017 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 | |
| 16 | #ifndef SRC_VNET_SESSION_APPLICATION_H_ |
| 17 | #define SRC_VNET_SESSION_APPLICATION_H_ |
| 18 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 19 | #include <vnet/session/session.h> |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 20 | #include <vnet/session/segment_manager.h> |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 21 | #include <vnet/session/application_namespace.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 22 | |
| 23 | typedef struct _stream_session_cb_vft |
| 24 | { |
| 25 | /** Notify server of new segment */ |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 26 | int (*add_segment_callback) (u32 api_client_index, |
| 27 | const ssvm_private_t * ssvm_seg); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 28 | /** Notify server of new segment */ |
| 29 | int (*del_segment_callback) (u32 api_client_index, |
| 30 | const ssvm_private_t * ssvm_seg); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 31 | |
| 32 | /** Notify server of newly accepted session */ |
| 33 | int (*session_accept_callback) (stream_session_t * new_session); |
| 34 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 35 | /** Connection request callback */ |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 36 | int (*session_connected_callback) (u32 app_index, u32 opaque, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 37 | stream_session_t * s, u8 code); |
| 38 | |
| 39 | /** Notify app that session is closing */ |
| 40 | void (*session_disconnect_callback) (stream_session_t * s); |
| 41 | |
| 42 | /** Notify app that session was reset */ |
| 43 | void (*session_reset_callback) (stream_session_t * s); |
| 44 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 45 | /** Direct RX callback for built-in application */ |
| 46 | int (*builtin_app_rx_callback) (stream_session_t * session); |
| 47 | |
| 48 | /** Direct TX callback for built-in application */ |
| 49 | int (*builtin_app_tx_callback) (stream_session_t * session); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 50 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 51 | } session_cb_vft_t; |
| 52 | |
| 53 | typedef struct _application |
| 54 | { |
| 55 | /** Index in server pool */ |
| 56 | u32 index; |
| 57 | |
| 58 | /** Flags */ |
| 59 | u32 flags; |
| 60 | |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 61 | /** Name registered by builtin apps */ |
| 62 | u8 *name; |
| 63 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 64 | /* |
| 65 | * Binary API interface to external app |
| 66 | */ |
| 67 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 68 | /** Binary API connection index, ~0 if internal */ |
| 69 | u32 api_client_index; |
| 70 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 71 | /** Namespace the application belongs to */ |
| 72 | u32 ns_index; |
| 73 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 74 | /** Application listens for events on this svm queue */ |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 75 | svm_msg_q_t *event_queue; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 76 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 77 | /* |
| 78 | * Callbacks: shoulder-taps for the server/client |
| 79 | */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 80 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 81 | session_cb_vft_t cb_fns; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 82 | |
| 83 | /* |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 84 | * ssvm (fifo) segment management |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 85 | */ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 86 | /** Segment manager used for outgoing connects issued by the app */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 87 | u32 connects_seg_manager; |
| 88 | |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 89 | /** Lookup tables for listeners. Value is segment manager index */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 90 | uword *listeners_table; |
| 91 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 92 | /** |
| 93 | * First segment manager has in the the first segment the application's |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 94 | * event fifo. Depending on what the app does, it may be either used for |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 95 | * a listener or for connects. |
| 96 | */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 97 | u32 first_segment_manager; |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 98 | u8 first_segment_manager_in_use; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 99 | |
| 100 | /** Segment manager properties. Shared by all segment managers */ |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 101 | segment_manager_properties_t sm_properties; |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 102 | |
| 103 | u16 proxied_transports; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 104 | |
| 105 | /* |
| 106 | * Local "cut through" connections specific |
| 107 | */ |
| 108 | |
| 109 | /** Segment manager used for incoming "cut through" connects */ |
| 110 | u32 local_segment_manager; |
| 111 | |
| 112 | /** Pool of local listen sessions */ |
| 113 | local_session_t *local_listen_sessions; |
| 114 | |
| 115 | /** Pool of local sessions the app owns (as a server) */ |
| 116 | local_session_t *local_sessions; |
| 117 | |
| 118 | /** Hash table of the app's local connects */ |
| 119 | uword *local_connects; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 120 | |
| 121 | /* |
| 122 | * TLS Specific |
| 123 | */ |
| 124 | |
| 125 | /** Certificate to be used for listen sessions */ |
| 126 | u8 *tls_cert; |
| 127 | |
| 128 | /** PEM encoded key */ |
| 129 | u8 *tls_key; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 130 | |
| 131 | /** Preferred tls engine */ |
| 132 | u8 tls_engine; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 133 | } application_t; |
| 134 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 135 | #define APP_INVALID_INDEX ((u32)~0) |
| 136 | #define APP_NS_INVALID_INDEX ((u32)~0) |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 137 | #define APP_INVALID_SEGMENT_MANAGER_INDEX ((u32) ~0) |
| 138 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 139 | application_t *application_new (); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 140 | int application_init (application_t * app, u32 api_client_index, |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 141 | u8 * name, u64 * options, session_cb_vft_t * cb_fns); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 142 | void application_del (application_t * app); |
| 143 | application_t *application_get (u32 index); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 144 | application_t *application_get_if_valid (u32 index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 145 | application_t *application_lookup (u32 api_client_index); |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 146 | application_t *application_lookup_name (const u8 * name); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 147 | u32 application_get_index (application_t * app); |
| 148 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 149 | int application_start_listen (application_t * app, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 150 | session_endpoint_t * tep, |
| 151 | session_handle_t * handle); |
| 152 | int application_start_local_listen (application_t * server, |
| 153 | session_endpoint_t * sep, |
| 154 | session_handle_t * handle); |
| 155 | int application_stop_listen (application_t * srv, session_handle_t handle); |
| 156 | int application_stop_local_listen (application_t * server, |
| 157 | session_handle_t listener_handle); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 158 | int application_open_session (application_t * app, session_endpoint_t * tep, |
| 159 | u32 api_context); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 160 | int application_api_queue_is_full (application_t * app); |
| 161 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 162 | segment_manager_t *application_get_listen_segment_manager (application_t * |
| 163 | app, |
| 164 | stream_session_t * |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 165 | ls); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 166 | segment_manager_t *application_get_connect_segment_manager (application_t * |
| 167 | app); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 168 | int application_alloc_connects_segment_manager (application_t * app); |
| 169 | |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 170 | int application_is_proxy (application_t * app); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 171 | int application_is_builtin (application_t * app); |
| 172 | int application_is_builtin_proxy (application_t * app); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 173 | int application_add_segment_notify (u32 app_index, ssvm_private_t * fs); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 174 | u32 application_session_table (application_t * app, u8 fib_proto); |
| 175 | u32 application_local_session_table (application_t * app); |
| 176 | u8 *application_name_from_index (u32 app_index); |
| 177 | |
| 178 | u8 application_has_local_scope (application_t * app); |
| 179 | u8 application_has_global_scope (application_t * app); |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 180 | u32 application_n_listeners (application_t * app); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 181 | stream_session_t *application_first_listener (application_t * app, |
| 182 | u8 fib_proto, |
| 183 | u8 transport_proto); |
| 184 | void application_setup_proxy (application_t * app); |
| 185 | void application_remove_proxy (application_t * app); |
| 186 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 187 | segment_manager_properties_t *application_get_segment_manager_properties (u32 |
| 188 | app_index); |
| 189 | segment_manager_properties_t |
| 190 | * application_segment_manager_properties (application_t * app); |
| 191 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 192 | local_session_t *application_alloc_local_session (application_t * app); |
| 193 | void application_free_local_session (application_t * app, |
| 194 | local_session_t * ls); |
| 195 | local_session_t *application_get_local_session (application_t * app, |
| 196 | u32 session_index); |
| 197 | local_session_t *application_get_local_session_from_handle (session_handle_t |
| 198 | handle); |
| 199 | int application_local_session_connect (u32 table_index, |
| 200 | application_t * client, |
| 201 | application_t * server, |
| 202 | local_session_t * ll, u32 opaque); |
| 203 | int application_local_session_connect_notify (local_session_t * ls); |
| 204 | int application_local_session_disconnect (u32 app_index, |
| 205 | local_session_t * ls); |
Florin Coras | f6647e0 | 2018-03-23 22:56:43 -0700 | [diff] [blame] | 206 | int application_local_session_disconnect_w_index (u32 app_index, |
| 207 | u32 ls_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 208 | void application_local_sessions_del (application_t * app); |
| 209 | |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 210 | int application_send_event (application_t * app, stream_session_t * s, |
| 211 | u8 evt); |
| 212 | int application_lock_and_send_event (application_t * app, |
| 213 | stream_session_t * s, u8 evt_type); |
| 214 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 215 | always_inline u32 |
| 216 | local_session_id (local_session_t * ll) |
| 217 | { |
| 218 | ASSERT (ll->app_index < (2 << 16) && ll->session_index < (2 << 16)); |
| 219 | return ((u32) ll->app_index << 16 | (u32) ll->session_index); |
| 220 | } |
| 221 | |
| 222 | always_inline void |
| 223 | local_session_parse_id (u32 ls_id, u32 * app_index, u32 * session_index) |
| 224 | { |
| 225 | *app_index = ls_id >> 16; |
| 226 | *session_index = ls_id & 0xFFF; |
| 227 | } |
| 228 | |
| 229 | always_inline void |
| 230 | local_session_parse_handle (session_handle_t handle, u32 * server_index, |
| 231 | u32 * session_index) |
| 232 | { |
| 233 | u32 bottom; |
Florin Coras | 5fda7a3 | 2018-02-14 08:04:31 -0800 | [diff] [blame] | 234 | ASSERT ((handle >> 32) == SESSION_LOCAL_HANDLE_PREFIX); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 235 | bottom = (handle & 0xFFFFFFFF); |
| 236 | local_session_parse_id (bottom, server_index, session_index); |
| 237 | } |
| 238 | |
| 239 | always_inline session_handle_t |
| 240 | application_local_session_handle (local_session_t * ls) |
| 241 | { |
Florin Coras | 5fda7a3 | 2018-02-14 08:04:31 -0800 | [diff] [blame] | 242 | return ((u64) SESSION_LOCAL_HANDLE_PREFIX << 32) |
| 243 | | (u64) local_session_id (ls); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | always_inline local_session_t * |
| 247 | application_get_local_listen_session (application_t * app, u32 session_index) |
| 248 | { |
| 249 | return pool_elt_at_index (app->local_listen_sessions, session_index); |
| 250 | } |
| 251 | |
Florin Coras | 5fda7a3 | 2018-02-14 08:04:31 -0800 | [diff] [blame] | 252 | always_inline local_session_t * |
| 253 | application_get_local_listener_w_handle (session_handle_t handle) |
| 254 | { |
| 255 | u32 server_index, session_index; |
| 256 | application_t *app; |
| 257 | local_session_parse_handle (handle, &server_index, &session_index); |
| 258 | app = application_get (server_index); |
| 259 | return application_get_local_listen_session (app, session_index); |
| 260 | } |
| 261 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 262 | always_inline u8 |
| 263 | application_local_session_listener_has_transport (local_session_t * ls) |
| 264 | { |
| 265 | transport_proto_t tp; |
| 266 | tp = session_type_transport_proto (ls->listener_session_type); |
| 267 | return (tp != TRANSPORT_PROTO_NONE); |
| 268 | } |
| 269 | |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame^] | 270 | void mq_send_local_session_disconnected_cb (u32 app_index, |
| 271 | local_session_t * ls); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 272 | |
| 273 | int application_connect (u32 client_index, u32 api_context, |
| 274 | session_endpoint_t * sep); |
| 275 | |
| 276 | uword unformat_application_proto (unformat_input_t * input, va_list * args); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 277 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 278 | #endif /* SRC_VNET_SESSION_APPLICATION_H_ */ |
| 279 | |
| 280 | /* |
| 281 | * fd.io coding-style-patch-verification: ON |
| 282 | * |
| 283 | * Local Variables: |
| 284 | * eval: (c-set-style "gnu") |
| 285 | * End: |
| 286 | */ |