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