Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018 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 | #include <vnet/session/application_interface.h> |
| 17 | #include <vppinfra/lock.h> |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 18 | #include <vnet/tls/tls.h> |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 19 | |
| 20 | static tls_main_t tls_main; |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 21 | static tls_engine_vft_t *tls_vfts; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 22 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 23 | #define TLS_INVALID_HANDLE ~0 |
| 24 | #define TLS_IDX_MASK 0x00FFFFFF |
| 25 | #define TLS_ENGINE_TYPE_SHIFT 29 |
| 26 | |
| 27 | void tls_disconnect (u32 ctx_handle, u32 thread_index); |
| 28 | |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 29 | static void |
| 30 | tls_disconnect_transport (tls_ctx_t * ctx) |
| 31 | { |
| 32 | vnet_disconnect_args_t a = { |
| 33 | .handle = ctx->tls_session_handle, |
| 34 | .app_index = tls_main.app_index, |
| 35 | }; |
| 36 | |
| 37 | if (vnet_disconnect_session (&a)) |
| 38 | clib_warning ("disconnect returned"); |
| 39 | } |
| 40 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 41 | tls_engine_type_t |
| 42 | tls_get_available_engine (void) |
| 43 | { |
| 44 | int i; |
| 45 | for (i = 0; i < vec_len (tls_vfts); i++) |
| 46 | { |
| 47 | if (tls_vfts[i].ctx_alloc) |
| 48 | return i; |
| 49 | } |
| 50 | return TLS_ENGINE_NONE; |
| 51 | } |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 52 | |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 53 | int |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 54 | tls_add_vpp_q_rx_evt (stream_session_t * s) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 55 | { |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 56 | if (svm_fifo_set_event (s->server_rx_fifo)) |
| 57 | session_send_io_evt_to_thread (s->server_rx_fifo, FIFO_EVENT_APP_RX); |
| 58 | return 0; |
| 59 | } |
| 60 | |
| 61 | int |
| 62 | tls_add_vpp_q_builtin_rx_evt (stream_session_t * s) |
| 63 | { |
| 64 | if (svm_fifo_set_event (s->server_rx_fifo)) |
| 65 | session_send_io_evt_to_thread (s->server_rx_fifo, FIFO_EVENT_BUILTIN_RX); |
| 66 | return 0; |
| 67 | } |
| 68 | |
| 69 | int |
| 70 | tls_add_vpp_q_tx_evt (stream_session_t * s) |
| 71 | { |
| 72 | if (svm_fifo_set_event (s->server_tx_fifo)) |
| 73 | session_send_io_evt_to_thread (s->server_tx_fifo, FIFO_EVENT_APP_TX); |
| 74 | return 0; |
| 75 | } |
| 76 | |
| 77 | int |
| 78 | tls_add_vpp_q_builtin_tx_evt (stream_session_t * s) |
| 79 | { |
| 80 | if (svm_fifo_set_event (s->server_tx_fifo)) |
| 81 | session_send_io_evt_to_thread_custom (s, s->thread_index, |
| 82 | FIFO_EVENT_BUILTIN_TX); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 83 | return 0; |
| 84 | } |
| 85 | |
| 86 | static inline int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 87 | tls_add_app_q_evt (app_worker_t * app, stream_session_t * app_session) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 88 | { |
Florin Coras | 2179513 | 2018-09-09 09:40:51 -0700 | [diff] [blame] | 89 | return app_worker_lock_and_send_event (app, app_session, FIFO_EVENT_APP_RX); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | u32 |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 93 | tls_listener_ctx_alloc (void) |
| 94 | { |
| 95 | tls_main_t *tm = &tls_main; |
| 96 | tls_ctx_t *ctx; |
| 97 | |
| 98 | pool_get (tm->listener_ctx_pool, ctx); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 99 | clib_memset (ctx, 0, sizeof (*ctx)); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 100 | return ctx - tm->listener_ctx_pool; |
| 101 | } |
| 102 | |
| 103 | void |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 104 | tls_listener_ctx_free (tls_ctx_t * ctx) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 105 | { |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 106 | if (CLIB_DEBUG) |
| 107 | memset (ctx, 0xfb, sizeof (*ctx)); |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 108 | pool_put (tls_main.listener_ctx_pool, ctx); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | tls_ctx_t * |
| 112 | tls_listener_ctx_get (u32 ctx_index) |
| 113 | { |
| 114 | return pool_elt_at_index (tls_main.listener_ctx_pool, ctx_index); |
| 115 | } |
| 116 | |
| 117 | u32 |
| 118 | tls_listener_ctx_index (tls_ctx_t * ctx) |
| 119 | { |
| 120 | return (ctx - tls_main.listener_ctx_pool); |
| 121 | } |
| 122 | |
| 123 | u32 |
| 124 | tls_ctx_half_open_alloc (void) |
| 125 | { |
| 126 | tls_main_t *tm = &tls_main; |
| 127 | u8 will_expand = 0; |
| 128 | tls_ctx_t *ctx; |
| 129 | u32 ctx_index; |
| 130 | |
| 131 | pool_get_aligned_will_expand (tm->half_open_ctx_pool, will_expand, 0); |
| 132 | if (PREDICT_FALSE (will_expand && vlib_num_workers ())) |
| 133 | { |
| 134 | clib_rwlock_writer_lock (&tm->half_open_rwlock); |
| 135 | pool_get (tm->half_open_ctx_pool, ctx); |
Florin Coras | eb97e5f | 2018-10-15 21:35:42 -0700 | [diff] [blame] | 136 | ctx_index = ctx - tm->half_open_ctx_pool; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 137 | clib_rwlock_writer_unlock (&tm->half_open_rwlock); |
| 138 | } |
| 139 | else |
| 140 | { |
Ping Yu | e6446a3 | 2018-08-28 18:56:27 -0400 | [diff] [blame] | 141 | /* reader lock assumption: only main thread will call pool_get */ |
| 142 | clib_rwlock_reader_lock (&tm->half_open_rwlock); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 143 | pool_get (tm->half_open_ctx_pool, ctx); |
Florin Coras | eb97e5f | 2018-10-15 21:35:42 -0700 | [diff] [blame] | 144 | ctx_index = ctx - tm->half_open_ctx_pool; |
Ping Yu | e6446a3 | 2018-08-28 18:56:27 -0400 | [diff] [blame] | 145 | clib_rwlock_reader_unlock (&tm->half_open_rwlock); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 146 | } |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 147 | clib_memset (ctx, 0, sizeof (*ctx)); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 148 | return ctx_index; |
| 149 | } |
| 150 | |
| 151 | void |
| 152 | tls_ctx_half_open_free (u32 ho_index) |
| 153 | { |
| 154 | tls_main_t *tm = &tls_main; |
| 155 | clib_rwlock_writer_lock (&tm->half_open_rwlock); |
| 156 | pool_put_index (tls_main.half_open_ctx_pool, ho_index); |
| 157 | clib_rwlock_writer_unlock (&tm->half_open_rwlock); |
| 158 | } |
| 159 | |
| 160 | tls_ctx_t * |
| 161 | tls_ctx_half_open_get (u32 ctx_index) |
| 162 | { |
| 163 | tls_main_t *tm = &tls_main; |
| 164 | clib_rwlock_reader_lock (&tm->half_open_rwlock); |
| 165 | return pool_elt_at_index (tm->half_open_ctx_pool, ctx_index); |
| 166 | } |
| 167 | |
| 168 | void |
| 169 | tls_ctx_half_open_reader_unlock () |
| 170 | { |
| 171 | clib_rwlock_reader_unlock (&tls_main.half_open_rwlock); |
| 172 | } |
| 173 | |
| 174 | u32 |
| 175 | tls_ctx_half_open_index (tls_ctx_t * ctx) |
| 176 | { |
| 177 | return (ctx - tls_main.half_open_ctx_pool); |
| 178 | } |
| 179 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 180 | void |
| 181 | tls_notify_app_enqueue (tls_ctx_t * ctx, stream_session_t * app_session) |
| 182 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 183 | app_worker_t *app; |
| 184 | app = app_worker_get_if_valid (app_session->app_wrk_index); |
Florin Coras | 5090c57 | 2018-03-18 08:22:17 -0700 | [diff] [blame] | 185 | if (PREDICT_TRUE (app != 0)) |
| 186 | tls_add_app_q_evt (app, app_session); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | int |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 190 | tls_notify_app_accept (tls_ctx_t * ctx) |
| 191 | { |
| 192 | stream_session_t *app_listener, *app_session; |
| 193 | segment_manager_t *sm; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 194 | app_worker_t *app_wrk; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 195 | application_t *app; |
| 196 | tls_ctx_t *lctx; |
| 197 | int rv; |
| 198 | |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 199 | app_wrk = app_worker_get_if_valid (ctx->parent_app_index); |
| 200 | if (!app_wrk) |
| 201 | { |
| 202 | tls_disconnect (ctx->tls_ctx_handle, vlib_get_thread_index ()); |
| 203 | return -1; |
| 204 | } |
| 205 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 206 | app = application_get (app_wrk->app_index); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 207 | lctx = tls_listener_ctx_get (ctx->listener_ctx_index); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 208 | |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame^] | 209 | app_session = session_get (ctx->c_s_index, ctx->c_thread_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 210 | app_session->app_wrk_index = ctx->parent_app_index; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 211 | app_session->connection_index = ctx->tls_ctx_handle; |
Ping Yu | a0c29a9 | 2018-08-16 19:11:05 -0400 | [diff] [blame] | 212 | |
| 213 | app_listener = listen_session_get_from_handle (lctx->app_session_handle); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 214 | app_session->session_type = app_listener->session_type; |
| 215 | app_session->listener_index = app_listener->session_index; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 216 | sm = app_worker_get_listen_segment_manager (app_wrk, app_listener); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 217 | app_session->t_app_index = tls_main.app_index; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 218 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 219 | if ((rv = session_alloc_fifos (sm, app_session))) |
| 220 | { |
| 221 | TLS_DBG (1, "failed to allocate fifos"); |
| 222 | return rv; |
| 223 | } |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 224 | ctx->app_session_handle = session_handle (app_session); |
Florin Coras | b5e94e3 | 2018-09-14 14:46:39 -0700 | [diff] [blame] | 225 | session_lookup_add_connection (&ctx->connection, |
| 226 | session_handle (app_session)); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 227 | return app->cb_fns.session_accept_callback (app_session); |
| 228 | } |
| 229 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 230 | int |
Florin Coras | 8f89dd0 | 2018-03-05 16:53:07 -0800 | [diff] [blame] | 231 | tls_notify_app_connected (tls_ctx_t * ctx, u8 is_failed) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 232 | { |
| 233 | int (*cb_fn) (u32, u32, stream_session_t *, u8); |
| 234 | stream_session_t *app_session; |
| 235 | segment_manager_t *sm; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 236 | app_worker_t *app_wrk; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 237 | application_t *app; |
| 238 | |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 239 | app_wrk = app_worker_get_if_valid (ctx->parent_app_index); |
| 240 | if (!app_wrk) |
| 241 | { |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 242 | tls_disconnect_transport (ctx); |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 243 | return -1; |
| 244 | } |
| 245 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 246 | app = application_get (app_wrk->app_index); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 247 | cb_fn = app->cb_fns.session_connected_callback; |
| 248 | |
Florin Coras | 8f89dd0 | 2018-03-05 16:53:07 -0800 | [diff] [blame] | 249 | if (is_failed) |
| 250 | goto failed; |
| 251 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 252 | sm = app_worker_get_connect_segment_manager (app_wrk); |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame^] | 253 | app_session = session_get (ctx->c_s_index, ctx->c_thread_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 254 | app_session->app_wrk_index = ctx->parent_app_index; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 255 | app_session->connection_index = ctx->tls_ctx_handle; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 256 | app_session->session_type = |
| 257 | session_type_from_proto_and_ip (TRANSPORT_PROTO_TLS, ctx->tcp_is_ip4); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 258 | app_session->t_app_index = tls_main.app_index; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 259 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 260 | if (session_alloc_fifos (sm, app_session)) |
| 261 | goto failed; |
| 262 | |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 263 | app_session->session_state = SESSION_STATE_CONNECTING; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 264 | if (cb_fn (ctx->parent_app_index, ctx->parent_app_api_context, |
| 265 | app_session, 0 /* not failed */ )) |
| 266 | { |
| 267 | TLS_DBG (1, "failed to notify app"); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 268 | tls_disconnect (ctx->tls_ctx_handle, vlib_get_thread_index ()); |
Florin Coras | eb97e5f | 2018-10-15 21:35:42 -0700 | [diff] [blame] | 269 | return -1; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 270 | } |
| 271 | |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame^] | 272 | ctx->app_session_handle = session_handle (app_session); |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 273 | app_session->session_state = SESSION_STATE_READY; |
Florin Coras | b5e94e3 | 2018-09-14 14:46:39 -0700 | [diff] [blame] | 274 | session_lookup_add_connection (&ctx->connection, |
| 275 | session_handle (app_session)); |
| 276 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 277 | return 0; |
| 278 | |
| 279 | failed: |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 280 | tls_disconnect (ctx->tls_ctx_handle, vlib_get_thread_index ()); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 281 | return cb_fn (ctx->parent_app_index, ctx->parent_app_api_context, 0, |
| 282 | 1 /* failed */ ); |
| 283 | } |
| 284 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 285 | static inline void |
| 286 | tls_ctx_parse_handle (u32 ctx_handle, u32 * ctx_index, u32 * engine_type) |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 287 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 288 | *ctx_index = ctx_handle & TLS_IDX_MASK; |
| 289 | *engine_type = ctx_handle >> TLS_ENGINE_TYPE_SHIFT; |
| 290 | } |
| 291 | |
| 292 | static inline tls_engine_type_t |
| 293 | tls_get_engine_type (tls_engine_type_t preferred) |
| 294 | { |
| 295 | if (!tls_vfts[preferred].ctx_alloc) |
| 296 | return tls_get_available_engine (); |
| 297 | return preferred; |
| 298 | } |
| 299 | |
| 300 | static inline u32 |
| 301 | tls_ctx_alloc (tls_engine_type_t engine_type) |
| 302 | { |
| 303 | u32 ctx_index; |
| 304 | ctx_index = tls_vfts[engine_type].ctx_alloc (); |
| 305 | return (((u32) engine_type << TLS_ENGINE_TYPE_SHIFT) | ctx_index); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | static inline void |
| 309 | tls_ctx_free (tls_ctx_t * ctx) |
| 310 | { |
| 311 | vec_free (ctx->srv_hostname); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 312 | tls_vfts[ctx->tls_ctx_engine].ctx_free (ctx); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | static inline tls_ctx_t * |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 316 | tls_ctx_get (u32 ctx_handle) |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 317 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 318 | u32 ctx_index, engine_type; |
| 319 | tls_ctx_parse_handle (ctx_handle, &ctx_index, &engine_type); |
| 320 | return tls_vfts[engine_type].ctx_get (ctx_index); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | static inline tls_ctx_t * |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 324 | tls_ctx_get_w_thread (u32 ctx_handle, u8 thread_index) |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 325 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 326 | u32 ctx_index, engine_type; |
| 327 | tls_ctx_parse_handle (ctx_handle, &ctx_index, &engine_type); |
| 328 | return tls_vfts[engine_type].ctx_get_w_thread (ctx_index, thread_index); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | static inline int |
| 332 | tls_ctx_init_server (tls_ctx_t * ctx) |
| 333 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 334 | return tls_vfts[ctx->tls_ctx_engine].ctx_init_server (ctx); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | static inline int |
| 338 | tls_ctx_init_client (tls_ctx_t * ctx) |
| 339 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 340 | return tls_vfts[ctx->tls_ctx_engine].ctx_init_client (ctx); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | static inline int |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 344 | tls_ctx_write (tls_ctx_t * ctx, stream_session_t * app_session) |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 345 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 346 | return tls_vfts[ctx->tls_ctx_engine].ctx_write (ctx, app_session); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | static inline int |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 350 | tls_ctx_read (tls_ctx_t * ctx, stream_session_t * tls_session) |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 351 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 352 | return tls_vfts[ctx->tls_ctx_engine].ctx_read (ctx, tls_session); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | static inline u8 |
| 356 | tls_ctx_handshake_is_over (tls_ctx_t * ctx) |
| 357 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 358 | return tls_vfts[ctx->tls_ctx_engine].ctx_handshake_is_over (ctx); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | void |
| 362 | tls_session_reset_callback (stream_session_t * s) |
| 363 | { |
| 364 | clib_warning ("called..."); |
| 365 | } |
| 366 | |
| 367 | int |
Florin Coras | fa76a76 | 2018-11-29 12:40:10 -0800 | [diff] [blame] | 368 | tls_add_segment_callback (u32 client_index, u64 segment_handle) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 369 | { |
| 370 | /* No-op for builtin */ |
| 371 | return 0; |
| 372 | } |
| 373 | |
| 374 | int |
Florin Coras | fa76a76 | 2018-11-29 12:40:10 -0800 | [diff] [blame] | 375 | tls_del_segment_callback (u32 client_index, u64 segment_handle) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 376 | { |
| 377 | return 0; |
| 378 | } |
| 379 | |
| 380 | void |
| 381 | tls_session_disconnect_callback (stream_session_t * tls_session) |
| 382 | { |
| 383 | stream_session_t *app_session; |
| 384 | tls_ctx_t *ctx; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 385 | app_worker_t *app_wrk; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 386 | application_t *app; |
| 387 | |
| 388 | ctx = tls_ctx_get (tls_session->opaque); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 389 | if (!tls_ctx_handshake_is_over (ctx)) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 390 | { |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 391 | session_close (tls_session); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 392 | return; |
| 393 | } |
| 394 | ctx->is_passive_close = 1; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 395 | app_wrk = app_worker_get (ctx->parent_app_index); |
| 396 | app = application_get (app_wrk->app_index); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 397 | app_session = session_get_from_handle (ctx->app_session_handle); |
| 398 | app->cb_fns.session_disconnect_callback (app_session); |
| 399 | } |
| 400 | |
| 401 | int |
| 402 | tls_session_accept_callback (stream_session_t * tls_session) |
| 403 | { |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame^] | 404 | stream_session_t *tls_listener, *app_session; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 405 | tls_ctx_t *lctx, *ctx; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 406 | u32 ctx_handle; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 407 | |
Florin Coras | 5c9083d | 2018-04-13 06:39:07 -0700 | [diff] [blame] | 408 | tls_listener = listen_session_get (tls_session->listener_index); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 409 | lctx = tls_listener_ctx_get (tls_listener->opaque); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 410 | |
| 411 | ctx_handle = tls_ctx_alloc (lctx->tls_ctx_engine); |
| 412 | ctx = tls_ctx_get (ctx_handle); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 413 | memcpy (ctx, lctx, sizeof (*lctx)); |
| 414 | ctx->c_thread_index = vlib_get_thread_index (); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 415 | ctx->tls_ctx_handle = ctx_handle; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 416 | tls_session->session_state = SESSION_STATE_READY; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 417 | tls_session->opaque = ctx_handle; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 418 | ctx->tls_session_handle = session_handle (tls_session); |
| 419 | ctx->listener_ctx_index = tls_listener->opaque; |
| 420 | |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame^] | 421 | /* Preallocate app session. Avoids allocating a session post handshake |
| 422 | * on tls_session rx and potentially invalidating the session pool */ |
| 423 | app_session = session_alloc (ctx->c_thread_index); |
| 424 | app_session->session_state = SESSION_STATE_CLOSED; |
| 425 | ctx->c_s_index = app_session->session_index; |
| 426 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 427 | TLS_DBG (1, "Accept on listener %u new connection [%u]%x", |
| 428 | tls_listener->opaque, vlib_get_thread_index (), ctx_handle); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 429 | |
| 430 | return tls_ctx_init_server (ctx); |
| 431 | } |
| 432 | |
| 433 | int |
| 434 | tls_app_tx_callback (stream_session_t * app_session) |
| 435 | { |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 436 | tls_ctx_t *ctx; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 437 | if (PREDICT_FALSE (app_session->session_state == SESSION_STATE_CLOSED)) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 438 | return 0; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 439 | ctx = tls_ctx_get (app_session->connection_index); |
| 440 | tls_ctx_write (ctx, app_session); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 441 | return 0; |
| 442 | } |
| 443 | |
| 444 | int |
| 445 | tls_app_rx_callback (stream_session_t * tls_session) |
| 446 | { |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 447 | tls_ctx_t *ctx; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 448 | |
| 449 | ctx = tls_ctx_get (tls_session->opaque); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 450 | tls_ctx_read (ctx, tls_session); |
| 451 | return 0; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | int |
| 455 | tls_session_connected_callback (u32 tls_app_index, u32 ho_ctx_index, |
| 456 | stream_session_t * tls_session, u8 is_fail) |
| 457 | { |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame^] | 458 | stream_session_t *app_session; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 459 | tls_ctx_t *ho_ctx, *ctx; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 460 | u32 ctx_handle; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 461 | |
| 462 | ho_ctx = tls_ctx_half_open_get (ho_ctx_index); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 463 | |
| 464 | if (is_fail) |
Florin Coras | dcde927 | 2018-03-02 09:23:42 -0800 | [diff] [blame] | 465 | { |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 466 | int (*cb_fn) (u32, u32, stream_session_t *, u8), rv = 0; |
Florin Coras | 57791ad | 2018-08-27 10:07:40 -0700 | [diff] [blame] | 467 | u32 wrk_index, api_context; |
| 468 | app_worker_t *app_wrk; |
| 469 | application_t *app; |
| 470 | |
| 471 | wrk_index = ho_ctx->parent_app_index; |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 472 | app_wrk = app_worker_get_if_valid (ho_ctx->parent_app_index); |
| 473 | if (app_wrk) |
| 474 | { |
| 475 | api_context = ho_ctx->c_s_index; |
| 476 | app = application_get (app_wrk->app_index); |
| 477 | cb_fn = app->cb_fns.session_connected_callback; |
| 478 | rv = cb_fn (wrk_index, api_context, 0, 1 /* failed */ ); |
| 479 | } |
Florin Coras | dcde927 | 2018-03-02 09:23:42 -0800 | [diff] [blame] | 480 | tls_ctx_half_open_reader_unlock (); |
| 481 | tls_ctx_half_open_free (ho_ctx_index); |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 482 | return rv; |
Florin Coras | dcde927 | 2018-03-02 09:23:42 -0800 | [diff] [blame] | 483 | } |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 484 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 485 | ctx_handle = tls_ctx_alloc (ho_ctx->tls_ctx_engine); |
| 486 | ctx = tls_ctx_get (ctx_handle); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 487 | clib_memcpy_fast (ctx, ho_ctx, sizeof (*ctx)); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 488 | tls_ctx_half_open_reader_unlock (); |
| 489 | tls_ctx_half_open_free (ho_ctx_index); |
| 490 | |
Florin Coras | dcde927 | 2018-03-02 09:23:42 -0800 | [diff] [blame] | 491 | ctx->c_thread_index = vlib_get_thread_index (); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 492 | ctx->tls_ctx_handle = ctx_handle; |
Florin Coras | dcde927 | 2018-03-02 09:23:42 -0800 | [diff] [blame] | 493 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 494 | TLS_DBG (1, "TCP connect for %u returned %u. New connection [%u]%x", |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 495 | ho_ctx_index, is_fail, vlib_get_thread_index (), |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 496 | (ctx) ? ctx_handle : ~0); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 497 | |
| 498 | ctx->tls_session_handle = session_handle (tls_session); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 499 | tls_session->opaque = ctx_handle; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 500 | tls_session->session_state = SESSION_STATE_READY; |
| 501 | |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame^] | 502 | /* Preallocate app session. Avoids allocating a session post handshake |
| 503 | * on tls_session rx and potentially invalidating the session pool */ |
| 504 | app_session = session_alloc (ctx->c_thread_index); |
| 505 | app_session->session_state = SESSION_STATE_CLOSED; |
| 506 | ctx->c_s_index = app_session->session_index; |
| 507 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 508 | return tls_ctx_init_client (ctx); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 509 | } |
| 510 | |
| 511 | /* *INDENT-OFF* */ |
| 512 | static session_cb_vft_t tls_app_cb_vft = { |
| 513 | .session_accept_callback = tls_session_accept_callback, |
| 514 | .session_disconnect_callback = tls_session_disconnect_callback, |
| 515 | .session_connected_callback = tls_session_connected_callback, |
| 516 | .session_reset_callback = tls_session_reset_callback, |
| 517 | .add_segment_callback = tls_add_segment_callback, |
| 518 | .del_segment_callback = tls_del_segment_callback, |
| 519 | .builtin_app_rx_callback = tls_app_rx_callback, |
| 520 | .builtin_app_tx_callback = tls_app_tx_callback, |
| 521 | }; |
| 522 | /* *INDENT-ON* */ |
| 523 | |
| 524 | int |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 525 | tls_connect (transport_endpoint_cfg_t * tep) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 526 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 527 | vnet_connect_args_t _cargs = { {}, }, *cargs = &_cargs; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 528 | session_endpoint_cfg_t *sep; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 529 | tls_engine_type_t engine_type; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 530 | tls_main_t *tm = &tls_main; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 531 | app_worker_t *app_wrk; |
| 532 | clib_error_t *error; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 533 | application_t *app; |
| 534 | tls_ctx_t *ctx; |
| 535 | u32 ctx_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 536 | |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 537 | sep = (session_endpoint_cfg_t *) tep; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 538 | app_wrk = app_worker_get (sep->app_wrk_index); |
| 539 | app = application_get (app_wrk->app_index); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 540 | engine_type = tls_get_engine_type (app->tls_engine); |
| 541 | if (engine_type == TLS_ENGINE_NONE) |
| 542 | { |
| 543 | clib_warning ("No tls engine_type available"); |
| 544 | return -1; |
| 545 | } |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 546 | |
| 547 | ctx_index = tls_ctx_half_open_alloc (); |
| 548 | ctx = tls_ctx_half_open_get (ctx_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 549 | ctx->parent_app_index = sep->app_wrk_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 550 | ctx->parent_app_api_context = sep->opaque; |
| 551 | ctx->tcp_is_ip4 = sep->is_ip4; |
Florin Coras | 8f89dd0 | 2018-03-05 16:53:07 -0800 | [diff] [blame] | 552 | if (sep->hostname) |
| 553 | { |
| 554 | ctx->srv_hostname = format (0, "%v", sep->hostname); |
| 555 | vec_terminate_c_string (ctx->srv_hostname); |
| 556 | } |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 557 | tls_ctx_half_open_reader_unlock (); |
| 558 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 559 | app_worker_alloc_connects_segment_manager (app_wrk); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 560 | ctx->tls_ctx_engine = engine_type; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 561 | |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 562 | clib_memcpy_fast (&cargs->sep, sep, sizeof (session_endpoint_t)); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 563 | cargs->sep.transport_proto = TRANSPORT_PROTO_TCP; |
| 564 | cargs->app_index = tm->app_index; |
| 565 | cargs->api_context = ctx_index; |
| 566 | if ((error = vnet_connect (cargs))) |
| 567 | return clib_error_get_code (error); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 568 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 569 | TLS_DBG (1, "New connect request %u engine %d", ctx_index, engine_type); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 570 | return 0; |
| 571 | } |
| 572 | |
| 573 | void |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 574 | tls_disconnect (u32 ctx_handle, u32 thread_index) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 575 | { |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 576 | tls_ctx_t *ctx; |
| 577 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 578 | TLS_DBG (1, "Disconnecting %x", ctx_handle); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 579 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 580 | ctx = tls_ctx_get (ctx_handle); |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 581 | tls_disconnect_transport (ctx); |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 582 | session_transport_delete_notify (&ctx->connection); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 583 | tls_ctx_free (ctx); |
| 584 | } |
| 585 | |
| 586 | u32 |
| 587 | tls_start_listen (u32 app_listener_index, transport_endpoint_t * tep) |
| 588 | { |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 589 | vnet_bind_args_t _bargs, *args = &_bargs; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 590 | app_worker_t *app_wrk; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 591 | tls_main_t *tm = &tls_main; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 592 | session_handle_t tls_handle; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 593 | session_endpoint_cfg_t *sep; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 594 | stream_session_t *tls_listener; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 595 | stream_session_t *app_listener; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 596 | tls_engine_type_t engine_type; |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 597 | application_t *app; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 598 | tls_ctx_t *lctx; |
| 599 | u32 lctx_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 600 | |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 601 | sep = (session_endpoint_cfg_t *) tep; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 602 | app_wrk = app_worker_get (sep->app_wrk_index); |
| 603 | app = application_get (app_wrk->app_index); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 604 | engine_type = tls_get_engine_type (app->tls_engine); |
| 605 | if (engine_type == TLS_ENGINE_NONE) |
| 606 | { |
| 607 | clib_warning ("No tls engine_type available"); |
| 608 | return -1; |
| 609 | } |
| 610 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 611 | sep->transport_proto = TRANSPORT_PROTO_TCP; |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 612 | clib_memset (args, 0, sizeof (*args)); |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 613 | args->app_index = tm->app_index; |
| 614 | args->sep_ext = *sep; |
| 615 | if (vnet_bind (args)) |
| 616 | return -1; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 617 | |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 618 | tls_handle = args->handle; |
| 619 | lctx_index = tls_listener_ctx_alloc (); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 620 | tls_listener = listen_session_get_from_handle (tls_handle); |
| 621 | tls_listener->opaque = lctx_index; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 622 | |
Florin Coras | 5c9083d | 2018-04-13 06:39:07 -0700 | [diff] [blame] | 623 | app_listener = listen_session_get (app_listener_index); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 624 | |
| 625 | lctx = tls_listener_ctx_get (lctx_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 626 | lctx->parent_app_index = sep->app_wrk_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 627 | lctx->tls_session_handle = tls_handle; |
| 628 | lctx->app_session_handle = listen_session_get_handle (app_listener); |
| 629 | lctx->tcp_is_ip4 = sep->is_ip4; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 630 | lctx->tls_ctx_engine = engine_type; |
| 631 | |
Ping Yu | decda5b | 2018-08-13 06:20:00 -0400 | [diff] [blame] | 632 | tls_vfts[engine_type].ctx_start_listen (lctx); |
| 633 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 634 | TLS_DBG (1, "Started listening %d, engine type %d", lctx_index, |
| 635 | engine_type); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 636 | return lctx_index; |
| 637 | } |
| 638 | |
| 639 | u32 |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 640 | tls_stop_listen (u32 lctx_index) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 641 | { |
Ping Yu | decda5b | 2018-08-13 06:20:00 -0400 | [diff] [blame] | 642 | tls_engine_type_t engine_type; |
Florin Coras | b5e94e3 | 2018-09-14 14:46:39 -0700 | [diff] [blame] | 643 | tls_ctx_t *lctx; |
Ping Yu | decda5b | 2018-08-13 06:20:00 -0400 | [diff] [blame] | 644 | |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 645 | lctx = tls_listener_ctx_get (lctx_index); |
Florin Coras | b5e94e3 | 2018-09-14 14:46:39 -0700 | [diff] [blame] | 646 | vnet_unbind_args_t a = { |
| 647 | .handle = lctx->tls_session_handle, |
| 648 | .app_index = tls_main.app_index, |
| 649 | .wrk_map_index = 0 /* default wrk */ |
| 650 | }; |
| 651 | if (vnet_unbind (&a)) |
| 652 | clib_warning ("unbind returned"); |
| 653 | |
Ping Yu | decda5b | 2018-08-13 06:20:00 -0400 | [diff] [blame] | 654 | engine_type = lctx->tls_ctx_engine; |
| 655 | tls_vfts[engine_type].ctx_stop_listen (lctx); |
| 656 | |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 657 | tls_listener_ctx_free (lctx); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 658 | return 0; |
| 659 | } |
| 660 | |
| 661 | transport_connection_t * |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 662 | tls_connection_get (u32 ctx_index, u32 thread_index) |
| 663 | { |
| 664 | tls_ctx_t *ctx; |
| 665 | ctx = tls_ctx_get_w_thread (ctx_index, thread_index); |
| 666 | return &ctx->connection; |
| 667 | } |
| 668 | |
| 669 | transport_connection_t * |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 670 | tls_listener_get (u32 listener_index) |
| 671 | { |
| 672 | tls_ctx_t *ctx; |
| 673 | ctx = tls_listener_ctx_get (listener_index); |
| 674 | return &ctx->connection; |
| 675 | } |
| 676 | |
| 677 | u8 * |
| 678 | format_tls_ctx (u8 * s, va_list * args) |
| 679 | { |
| 680 | tls_ctx_t *ctx = va_arg (*args, tls_ctx_t *); |
| 681 | u32 thread_index = va_arg (*args, u32); |
| 682 | u32 child_si, child_ti; |
| 683 | |
| 684 | session_parse_handle (ctx->tls_session_handle, &child_si, &child_ti); |
| 685 | if (thread_index != child_ti) |
| 686 | clib_warning ("app and tls sessions are on different threads!"); |
| 687 | |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 688 | s = format (s, "[#%d][TLS] app %u child %u", child_ti, |
| 689 | ctx->parent_app_index, child_si); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 690 | return s; |
| 691 | } |
| 692 | |
| 693 | u8 * |
| 694 | format_tls_connection (u8 * s, va_list * args) |
| 695 | { |
| 696 | u32 ctx_index = va_arg (*args, u32); |
| 697 | u32 thread_index = va_arg (*args, u32); |
| 698 | u32 verbose = va_arg (*args, u32); |
| 699 | tls_ctx_t *ctx; |
| 700 | |
| 701 | ctx = tls_ctx_get_w_thread (ctx_index, thread_index); |
| 702 | if (!ctx) |
| 703 | return s; |
| 704 | |
| 705 | s = format (s, "%-50U", format_tls_ctx, ctx, thread_index); |
| 706 | if (verbose) |
| 707 | { |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 708 | stream_session_t *ts; |
| 709 | ts = session_get_from_handle (ctx->app_session_handle); |
| 710 | s = format (s, "state: %-7u", ts->session_state); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 711 | if (verbose > 1) |
| 712 | s = format (s, "\n"); |
| 713 | } |
| 714 | return s; |
| 715 | } |
| 716 | |
| 717 | u8 * |
| 718 | format_tls_listener (u8 * s, va_list * args) |
| 719 | { |
| 720 | u32 tc_index = va_arg (*args, u32); |
| 721 | tls_ctx_t *ctx = tls_listener_ctx_get (tc_index); |
Florin Coras | 5c9083d | 2018-04-13 06:39:07 -0700 | [diff] [blame] | 722 | u32 listener_index, thread_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 723 | |
Florin Coras | 5c9083d | 2018-04-13 06:39:07 -0700 | [diff] [blame] | 724 | listen_session_parse_handle (ctx->tls_session_handle, &listener_index, |
| 725 | &thread_index); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 726 | return format (s, "[TLS] listener app %u child %u", ctx->parent_app_index, |
| 727 | listener_index); |
| 728 | } |
| 729 | |
| 730 | u8 * |
| 731 | format_tls_half_open (u8 * s, va_list * args) |
| 732 | { |
| 733 | u32 tc_index = va_arg (*args, u32); |
| 734 | tls_ctx_t *ctx = tls_ctx_half_open_get (tc_index); |
| 735 | s = format (s, "[TLS] half-open app %u", ctx->parent_app_index); |
| 736 | tls_ctx_half_open_reader_unlock (); |
| 737 | return s; |
| 738 | } |
| 739 | |
| 740 | /* *INDENT-OFF* */ |
| 741 | const static transport_proto_vft_t tls_proto = { |
| 742 | .open = tls_connect, |
| 743 | .close = tls_disconnect, |
| 744 | .bind = tls_start_listen, |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 745 | .get_connection = tls_connection_get, |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 746 | .get_listener = tls_listener_get, |
| 747 | .unbind = tls_stop_listen, |
| 748 | .tx_type = TRANSPORT_TX_INTERNAL, |
| 749 | .service_type = TRANSPORT_SERVICE_APP, |
| 750 | .format_connection = format_tls_connection, |
| 751 | .format_half_open = format_tls_half_open, |
| 752 | .format_listener = format_tls_listener, |
| 753 | }; |
| 754 | /* *INDENT-ON* */ |
| 755 | |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 756 | void |
| 757 | tls_register_engine (const tls_engine_vft_t * vft, tls_engine_type_t type) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 758 | { |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 759 | vec_validate (tls_vfts, type); |
| 760 | tls_vfts[type] = *vft; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 761 | } |
| 762 | |
Dave Barach | cc5677b | 2018-03-28 19:08:45 -0400 | [diff] [blame] | 763 | static clib_error_t * |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 764 | tls_init (vlib_main_t * vm) |
| 765 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 766 | vlib_thread_main_t *vtm = vlib_get_thread_main (); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 767 | vnet_app_attach_args_t _a, *a = &_a; |
| 768 | u64 options[APP_OPTIONS_N_OPTIONS]; |
| 769 | u32 segment_size = 512 << 20; |
| 770 | tls_main_t *tm = &tls_main; |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 771 | u32 fifo_size = 64 << 10; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 772 | u32 num_threads; |
| 773 | |
| 774 | num_threads = 1 /* main thread */ + vtm->n_threads; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 775 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 776 | clib_memset (a, 0, sizeof (*a)); |
| 777 | clib_memset (options, 0, sizeof (options)); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 778 | |
| 779 | a->session_cb_vft = &tls_app_cb_vft; |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 780 | a->api_client_index = APP_INVALID_INDEX; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 781 | a->options = options; |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 782 | a->name = format (0, "tls"); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 783 | a->options[APP_OPTIONS_SEGMENT_SIZE] = segment_size; |
| 784 | a->options[APP_OPTIONS_RX_FIFO_SIZE] = fifo_size; |
| 785 | a->options[APP_OPTIONS_TX_FIFO_SIZE] = fifo_size; |
| 786 | a->options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN; |
| 787 | a->options[APP_OPTIONS_FLAGS] |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE; |
Florin Coras | da3eec1 | 2018-09-07 13:29:17 -0700 | [diff] [blame] | 788 | a->options[APP_OPTIONS_FLAGS] |= APP_OPTIONS_FLAGS_IS_TRANSPORT_APP; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 789 | |
| 790 | if (vnet_application_attach (a)) |
| 791 | { |
| 792 | clib_warning ("failed to attach tls app"); |
| 793 | return clib_error_return (0, "failed to attach tls app"); |
| 794 | } |
| 795 | |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 796 | if (!tm->ca_cert_path) |
| 797 | tm->ca_cert_path = TLS_CA_CERT_PATH; |
| 798 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 799 | tm->app_index = a->app_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 800 | clib_rwlock_init (&tm->half_open_rwlock); |
| 801 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 802 | vec_validate (tm->rx_bufs, num_threads - 1); |
| 803 | vec_validate (tm->tx_bufs, num_threads - 1); |
| 804 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 805 | transport_register_protocol (TRANSPORT_PROTO_TLS, &tls_proto, |
| 806 | FIB_PROTOCOL_IP4, ~0); |
| 807 | transport_register_protocol (TRANSPORT_PROTO_TLS, &tls_proto, |
| 808 | FIB_PROTOCOL_IP6, ~0); |
Florin Coras | 0bee9ce | 2018-03-22 21:24:31 -0700 | [diff] [blame] | 809 | vec_free (a->name); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 810 | return 0; |
| 811 | } |
| 812 | |
| 813 | VLIB_INIT_FUNCTION (tls_init); |
| 814 | |
Florin Coras | 8f89dd0 | 2018-03-05 16:53:07 -0800 | [diff] [blame] | 815 | static clib_error_t * |
| 816 | tls_config_fn (vlib_main_t * vm, unformat_input_t * input) |
| 817 | { |
| 818 | tls_main_t *tm = &tls_main; |
| 819 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 820 | { |
| 821 | if (unformat (input, "use-test-cert-in-ca")) |
| 822 | tm->use_test_cert_in_ca = 1; |
| 823 | else if (unformat (input, "ca-cert-path %s", &tm->ca_cert_path)) |
| 824 | ; |
| 825 | else |
| 826 | return clib_error_return (0, "unknown input `%U'", |
| 827 | format_unformat_error, input); |
| 828 | } |
| 829 | return 0; |
| 830 | } |
| 831 | |
| 832 | VLIB_EARLY_CONFIG_FUNCTION (tls_config_fn, "tls"); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 833 | |
| 834 | tls_main_t * |
| 835 | vnet_tls_get_main (void) |
| 836 | { |
| 837 | return &tls_main; |
| 838 | } |
| 839 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 840 | /* |
| 841 | * fd.io coding-style-patch-verification: ON |
| 842 | * |
| 843 | * Local Variables: |
| 844 | * eval: (c-set-style "gnu") |
| 845 | * End: |
| 846 | */ |