Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1 | /* |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 2 | * Copyright (c) 2018-2019 Cisco and/or its affiliates. |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 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 |
jxm | 975fde8 | 2021-06-17 04:44:40 +0000 | [diff] [blame] | 25 | #define TLS_ENGINE_TYPE_SHIFT 28 |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 26 | |
| 27 | void tls_disconnect (u32 ctx_handle, u32 thread_index); |
| 28 | |
Florin Coras | 06a6a30 | 2019-04-17 14:19:12 -0700 | [diff] [blame] | 29 | void |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 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 | |
Nathan Skrzypczak | 82fc5fd | 2019-09-13 10:20:15 +0200 | [diff] [blame] | 41 | crypto_engine_type_t |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 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 | } |
Nathan Skrzypczak | 82fc5fd | 2019-09-13 10:20:15 +0200 | [diff] [blame] | 50 | return CRYPTO_ENGINE_NONE; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 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 | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 54 | tls_add_vpp_q_rx_evt (session_t * s) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 55 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 56 | if (svm_fifo_set_event (s->rx_fifo)) |
Florin Coras | fe97da3 | 2019-03-06 10:09:04 -0800 | [diff] [blame] | 57 | session_send_io_evt_to_thread (s->rx_fifo, SESSION_IO_EVT_RX); |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 58 | return 0; |
| 59 | } |
| 60 | |
| 61 | int |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 62 | tls_add_vpp_q_builtin_rx_evt (session_t * s) |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 63 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 64 | if (svm_fifo_set_event (s->rx_fifo)) |
Florin Coras | fe97da3 | 2019-03-06 10:09:04 -0800 | [diff] [blame] | 65 | session_send_io_evt_to_thread (s->rx_fifo, SESSION_IO_EVT_BUILTIN_RX); |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 66 | return 0; |
| 67 | } |
| 68 | |
| 69 | int |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 70 | tls_add_vpp_q_tx_evt (session_t * s) |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 71 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 72 | if (svm_fifo_set_event (s->tx_fifo)) |
Florin Coras | fe97da3 | 2019-03-06 10:09:04 -0800 | [diff] [blame] | 73 | session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX); |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 74 | return 0; |
| 75 | } |
| 76 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 77 | static inline int |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 78 | tls_add_app_q_evt (app_worker_t * app, session_t * app_session) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 79 | { |
Florin Coras | fe97da3 | 2019-03-06 10:09:04 -0800 | [diff] [blame] | 80 | return app_worker_lock_and_send_event (app, app_session, SESSION_IO_EVT_RX); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | u32 |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 84 | tls_listener_ctx_alloc (void) |
| 85 | { |
| 86 | tls_main_t *tm = &tls_main; |
| 87 | tls_ctx_t *ctx; |
| 88 | |
| 89 | pool_get (tm->listener_ctx_pool, ctx); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 90 | clib_memset (ctx, 0, sizeof (*ctx)); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 91 | return ctx - tm->listener_ctx_pool; |
| 92 | } |
| 93 | |
| 94 | void |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 95 | tls_listener_ctx_free (tls_ctx_t * ctx) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 96 | { |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 97 | if (CLIB_DEBUG) |
| 98 | memset (ctx, 0xfb, sizeof (*ctx)); |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 99 | pool_put (tls_main.listener_ctx_pool, ctx); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | tls_ctx_t * |
| 103 | tls_listener_ctx_get (u32 ctx_index) |
| 104 | { |
| 105 | return pool_elt_at_index (tls_main.listener_ctx_pool, ctx_index); |
| 106 | } |
| 107 | |
| 108 | u32 |
| 109 | tls_listener_ctx_index (tls_ctx_t * ctx) |
| 110 | { |
| 111 | return (ctx - tls_main.listener_ctx_pool); |
| 112 | } |
| 113 | |
| 114 | u32 |
| 115 | tls_ctx_half_open_alloc (void) |
| 116 | { |
| 117 | tls_main_t *tm = &tls_main; |
Damjan Marion | 66d4cb5 | 2022-03-17 18:59:46 +0100 | [diff] [blame] | 118 | u8 will_expand = pool_get_will_expand (tm->half_open_ctx_pool); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 119 | tls_ctx_t *ctx; |
| 120 | u32 ctx_index; |
| 121 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 122 | if (PREDICT_FALSE (will_expand && vlib_num_workers ())) |
| 123 | { |
| 124 | clib_rwlock_writer_lock (&tm->half_open_rwlock); |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 125 | pool_get_zero (tm->half_open_ctx_pool, ctx); |
| 126 | ctx->c_c_index = ctx - tm->half_open_ctx_pool; |
| 127 | ctx_index = ctx->c_c_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 128 | clib_rwlock_writer_unlock (&tm->half_open_rwlock); |
| 129 | } |
| 130 | else |
| 131 | { |
Ping Yu | e6446a3 | 2018-08-28 18:56:27 -0400 | [diff] [blame] | 132 | /* reader lock assumption: only main thread will call pool_get */ |
| 133 | clib_rwlock_reader_lock (&tm->half_open_rwlock); |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 134 | pool_get_zero (tm->half_open_ctx_pool, ctx); |
| 135 | ctx->c_c_index = ctx - tm->half_open_ctx_pool; |
| 136 | ctx_index = ctx->c_c_index; |
Ping Yu | e6446a3 | 2018-08-28 18:56:27 -0400 | [diff] [blame] | 137 | clib_rwlock_reader_unlock (&tm->half_open_rwlock); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 138 | } |
| 139 | return ctx_index; |
| 140 | } |
| 141 | |
| 142 | void |
| 143 | tls_ctx_half_open_free (u32 ho_index) |
| 144 | { |
| 145 | tls_main_t *tm = &tls_main; |
| 146 | clib_rwlock_writer_lock (&tm->half_open_rwlock); |
| 147 | pool_put_index (tls_main.half_open_ctx_pool, ho_index); |
| 148 | clib_rwlock_writer_unlock (&tm->half_open_rwlock); |
| 149 | } |
| 150 | |
| 151 | tls_ctx_t * |
| 152 | tls_ctx_half_open_get (u32 ctx_index) |
| 153 | { |
| 154 | tls_main_t *tm = &tls_main; |
| 155 | clib_rwlock_reader_lock (&tm->half_open_rwlock); |
| 156 | return pool_elt_at_index (tm->half_open_ctx_pool, ctx_index); |
| 157 | } |
| 158 | |
| 159 | void |
| 160 | tls_ctx_half_open_reader_unlock () |
| 161 | { |
| 162 | clib_rwlock_reader_unlock (&tls_main.half_open_rwlock); |
| 163 | } |
| 164 | |
| 165 | u32 |
| 166 | tls_ctx_half_open_index (tls_ctx_t * ctx) |
| 167 | { |
| 168 | return (ctx - tls_main.half_open_ctx_pool); |
| 169 | } |
| 170 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 171 | void |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 172 | tls_notify_app_enqueue (tls_ctx_t * ctx, session_t * app_session) |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 173 | { |
Florin Coras | bf7ce2c | 2019-03-06 14:44:42 -0800 | [diff] [blame] | 174 | app_worker_t *app_wrk; |
| 175 | app_wrk = app_worker_get_if_valid (app_session->app_wrk_index); |
| 176 | if (PREDICT_TRUE (app_wrk != 0)) |
| 177 | tls_add_app_q_evt (app_wrk, app_session); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | int |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 181 | tls_notify_app_accept (tls_ctx_t * ctx) |
| 182 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 183 | session_t *app_listener, *app_session; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 184 | app_worker_t *app_wrk; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 185 | tls_ctx_t *lctx; |
| 186 | int rv; |
| 187 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 188 | lctx = tls_listener_ctx_get (ctx->listener_ctx_index); |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 189 | app_listener = listen_session_get_from_handle (lctx->app_session_handle); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 190 | |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame] | 191 | app_session = session_get (ctx->c_s_index, ctx->c_thread_index); |
Florin Coras | df57ea0 | 2019-02-18 20:14:20 -0800 | [diff] [blame] | 192 | app_session->app_wrk_index = ctx->parent_app_wrk_index; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 193 | app_session->connection_index = ctx->tls_ctx_handle; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 194 | app_session->session_type = app_listener->session_type; |
Nathan Skrzypczak | 2f0f96b | 2019-06-13 10:14:28 +0200 | [diff] [blame] | 195 | app_session->listener_handle = listen_session_get_handle (app_listener); |
Florin Coras | 8a14061 | 2019-02-18 22:39:39 -0800 | [diff] [blame] | 196 | app_session->session_state = SESSION_STATE_ACCEPTING; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 197 | |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 198 | if ((rv = app_worker_init_accepted (app_session))) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 199 | { |
| 200 | TLS_DBG (1, "failed to allocate fifos"); |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 201 | session_free (app_session); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 202 | return rv; |
| 203 | } |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 204 | ctx->app_session_handle = session_handle (app_session); |
Florin Coras | df57ea0 | 2019-02-18 20:14:20 -0800 | [diff] [blame] | 205 | ctx->parent_app_wrk_index = app_session->app_wrk_index; |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 206 | app_wrk = app_worker_get (app_session->app_wrk_index); |
| 207 | return app_worker_accept_notify (app_wrk, app_session); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 208 | } |
| 209 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 210 | int |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 211 | tls_notify_app_connected (tls_ctx_t * ctx, session_error_t err) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 212 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 213 | session_t *app_session; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 214 | app_worker_t *app_wrk; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 215 | |
Florin Coras | df57ea0 | 2019-02-18 20:14:20 -0800 | [diff] [blame] | 216 | app_wrk = app_worker_get_if_valid (ctx->parent_app_wrk_index); |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 217 | if (!app_wrk) |
| 218 | { |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 219 | tls_disconnect_transport (ctx); |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 220 | return -1; |
| 221 | } |
| 222 | |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 223 | if (err) |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 224 | { |
| 225 | /* Free app session pre-allocated when transport was established */ |
| 226 | if (ctx->tls_type == TRANSPORT_PROTO_TLS) |
| 227 | session_free (session_get (ctx->c_s_index, ctx->c_thread_index)); |
Florin Coras | e3c6a54 | 2021-05-19 19:28:40 -0700 | [diff] [blame] | 228 | ctx->no_app_session = 1; |
| 229 | goto send_reply; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 230 | } |
Florin Coras | 8f89dd0 | 2018-03-05 16:53:07 -0800 | [diff] [blame] | 231 | |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 232 | /* For DTLS the app session is not preallocated because the underlying udp |
| 233 | * session might migrate to a different worker during the handshake */ |
| 234 | if (ctx->tls_type == TRANSPORT_PROTO_DTLS) |
| 235 | { |
| 236 | session_type_t st; |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 237 | /* Cleanup half-open session as we don't get notification from udp */ |
| 238 | session_half_open_delete_notify (&ctx->connection); |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 239 | app_session = session_alloc (ctx->c_thread_index); |
| 240 | app_session->session_state = SESSION_STATE_CREATED; |
| 241 | ctx->c_s_index = app_session->session_index; |
| 242 | st = |
| 243 | session_type_from_proto_and_ip (TRANSPORT_PROTO_DTLS, ctx->tcp_is_ip4); |
| 244 | app_session->session_type = st; |
| 245 | app_session->connection_index = ctx->tls_ctx_handle; |
| 246 | } |
| 247 | else |
| 248 | { |
| 249 | app_session = session_get (ctx->c_s_index, ctx->c_thread_index); |
| 250 | } |
| 251 | |
Florin Coras | df57ea0 | 2019-02-18 20:14:20 -0800 | [diff] [blame] | 252 | app_session->app_wrk_index = ctx->parent_app_wrk_index; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 253 | |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 254 | if ((err = app_worker_init_connected (app_wrk, app_session))) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 255 | goto failed; |
| 256 | |
jiangxiaoming | 5b7ea91 | 2020-09-23 10:29:21 +0800 | [diff] [blame] | 257 | app_session->session_state = SESSION_STATE_READY; |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 258 | if (app_worker_connect_notify (app_wrk, app_session, |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 259 | SESSION_E_NONE, ctx->parent_app_api_context)) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 260 | { |
| 261 | TLS_DBG (1, "failed to notify app"); |
jiangxiaoming | 5b7ea91 | 2020-09-23 10:29:21 +0800 | [diff] [blame] | 262 | app_session->session_state = SESSION_STATE_CONNECTING; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 263 | tls_disconnect (ctx->tls_ctx_handle, vlib_get_thread_index ()); |
Florin Coras | eb97e5f | 2018-10-15 21:35:42 -0700 | [diff] [blame] | 264 | return -1; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 265 | } |
| 266 | |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame] | 267 | ctx->app_session_handle = session_handle (app_session); |
Florin Coras | b5e94e3 | 2018-09-14 14:46:39 -0700 | [diff] [blame] | 268 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 269 | return 0; |
| 270 | |
| 271 | failed: |
Florin Coras | ef2b335 | 2019-08-07 11:14:56 -0700 | [diff] [blame] | 272 | ctx->no_app_session = 1; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 273 | tls_disconnect (ctx->tls_ctx_handle, vlib_get_thread_index ()); |
Florin Coras | e3c6a54 | 2021-05-19 19:28:40 -0700 | [diff] [blame] | 274 | send_reply: |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 275 | return app_worker_connect_notify (app_wrk, 0, err, |
| 276 | ctx->parent_app_api_context); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 277 | } |
| 278 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 279 | static inline void |
| 280 | 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] | 281 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 282 | *ctx_index = ctx_handle & TLS_IDX_MASK; |
| 283 | *engine_type = ctx_handle >> TLS_ENGINE_TYPE_SHIFT; |
| 284 | } |
| 285 | |
Nathan Skrzypczak | 82fc5fd | 2019-09-13 10:20:15 +0200 | [diff] [blame] | 286 | static inline crypto_engine_type_t |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 287 | tls_get_engine_type (crypto_engine_type_t requested, |
| 288 | crypto_engine_type_t preferred) |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 289 | { |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 290 | if (requested != CRYPTO_ENGINE_NONE) |
| 291 | { |
| 292 | if (tls_vfts[requested].ctx_alloc) |
| 293 | return requested; |
| 294 | return CRYPTO_ENGINE_NONE; |
| 295 | } |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 296 | if (!tls_vfts[preferred].ctx_alloc) |
| 297 | return tls_get_available_engine (); |
| 298 | return preferred; |
| 299 | } |
| 300 | |
| 301 | static inline u32 |
Nathan Skrzypczak | 82fc5fd | 2019-09-13 10:20:15 +0200 | [diff] [blame] | 302 | tls_ctx_alloc (crypto_engine_type_t engine_type) |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 303 | { |
| 304 | u32 ctx_index; |
| 305 | ctx_index = tls_vfts[engine_type].ctx_alloc (); |
| 306 | return (((u32) engine_type << TLS_ENGINE_TYPE_SHIFT) | ctx_index); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 307 | } |
| 308 | |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 309 | static inline u32 |
| 310 | tls_ctx_alloc_w_thread (crypto_engine_type_t engine_type, u32 thread_index) |
| 311 | { |
| 312 | u32 ctx_index; |
| 313 | ctx_index = tls_vfts[engine_type].ctx_alloc_w_thread (thread_index); |
| 314 | return (((u32) engine_type << TLS_ENGINE_TYPE_SHIFT) | ctx_index); |
| 315 | } |
| 316 | |
| 317 | static inline u32 |
| 318 | tls_ctx_attach (crypto_engine_type_t engine_type, u32 thread_index, void *ctx) |
| 319 | { |
| 320 | u32 ctx_index; |
| 321 | ctx_index = tls_vfts[engine_type].ctx_attach (thread_index, ctx); |
| 322 | return (((u32) engine_type << TLS_ENGINE_TYPE_SHIFT) | ctx_index); |
| 323 | } |
| 324 | |
| 325 | static inline void * |
| 326 | tls_ctx_detach (tls_ctx_t *ctx) |
| 327 | { |
| 328 | return tls_vfts[ctx->tls_ctx_engine].ctx_detach (ctx); |
| 329 | } |
| 330 | |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 331 | static inline tls_ctx_t * |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 332 | tls_ctx_get (u32 ctx_handle) |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 333 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 334 | u32 ctx_index, engine_type; |
| 335 | tls_ctx_parse_handle (ctx_handle, &ctx_index, &engine_type); |
| 336 | return tls_vfts[engine_type].ctx_get (ctx_index); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | static inline tls_ctx_t * |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 340 | tls_ctx_get_w_thread (u32 ctx_handle, u8 thread_index) |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 341 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 342 | u32 ctx_index, engine_type; |
| 343 | tls_ctx_parse_handle (ctx_handle, &ctx_index, &engine_type); |
| 344 | 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] | 345 | } |
| 346 | |
| 347 | static inline int |
| 348 | tls_ctx_init_server (tls_ctx_t * ctx) |
| 349 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 350 | return tls_vfts[ctx->tls_ctx_engine].ctx_init_server (ctx); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 351 | } |
| 352 | |
| 353 | static inline int |
| 354 | tls_ctx_init_client (tls_ctx_t * ctx) |
| 355 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 356 | return tls_vfts[ctx->tls_ctx_engine].ctx_init_client (ctx); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | static inline int |
Florin Coras | 9f86d22 | 2020-03-23 15:34:22 +0000 | [diff] [blame] | 360 | tls_ctx_write (tls_ctx_t * ctx, session_t * app_session, |
| 361 | transport_send_params_t * sp) |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 362 | { |
Florin Coras | 9f86d22 | 2020-03-23 15:34:22 +0000 | [diff] [blame] | 363 | u32 n_wrote; |
Florin Coras | ed8db52 | 2020-02-27 04:32:51 +0000 | [diff] [blame] | 364 | |
Florin Coras | 9f86d22 | 2020-03-23 15:34:22 +0000 | [diff] [blame] | 365 | sp->max_burst_size = sp->max_burst_size * TRANSPORT_PACER_MIN_MSS; |
| 366 | n_wrote = tls_vfts[ctx->tls_ctx_engine].ctx_write (ctx, app_session, sp); |
Florin Coras | 3e15710 | 2022-02-04 13:31:25 -0800 | [diff] [blame] | 367 | sp->bytes_dequeued = n_wrote; |
Florin Coras | ed8db52 | 2020-02-27 04:32:51 +0000 | [diff] [blame] | 368 | return n_wrote > 0 ? clib_max (n_wrote / TRANSPORT_PACER_MIN_MSS, 1) : 0; |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | static inline int |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 372 | tls_ctx_read (tls_ctx_t * ctx, session_t * tls_session) |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 373 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 374 | return tls_vfts[ctx->tls_ctx_engine].ctx_read (ctx, tls_session); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 375 | } |
| 376 | |
Florin Coras | 06a6a30 | 2019-04-17 14:19:12 -0700 | [diff] [blame] | 377 | static inline int |
| 378 | tls_ctx_transport_close (tls_ctx_t * ctx) |
| 379 | { |
| 380 | return tls_vfts[ctx->tls_ctx_engine].ctx_transport_close (ctx); |
| 381 | } |
| 382 | |
| 383 | static inline int |
| 384 | tls_ctx_app_close (tls_ctx_t * ctx) |
| 385 | { |
| 386 | return tls_vfts[ctx->tls_ctx_engine].ctx_app_close (ctx); |
| 387 | } |
| 388 | |
| 389 | void |
| 390 | tls_ctx_free (tls_ctx_t * ctx) |
| 391 | { |
Florin Coras | 06a6a30 | 2019-04-17 14:19:12 -0700 | [diff] [blame] | 392 | tls_vfts[ctx->tls_ctx_engine].ctx_free (ctx); |
| 393 | } |
| 394 | |
| 395 | u8 |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 396 | tls_ctx_handshake_is_over (tls_ctx_t * ctx) |
| 397 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 398 | return tls_vfts[ctx->tls_ctx_engine].ctx_handshake_is_over (ctx); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 399 | } |
| 400 | |
Saravanan Murugesan | d918cc5 | 2022-02-28 19:54:11 +0530 | [diff] [blame] | 401 | int |
| 402 | tls_reinit_ca_chain (crypto_engine_type_t tls_engine_id) |
| 403 | { |
| 404 | return tls_vfts[tls_engine_id].ctx_reinit_cachain (); |
| 405 | } |
| 406 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 407 | void |
Florin Coras | 8c5e5f6 | 2022-02-24 16:35:26 -0800 | [diff] [blame] | 408 | tls_notify_app_io_error (tls_ctx_t *ctx) |
| 409 | { |
| 410 | ASSERT (tls_ctx_handshake_is_over (ctx)); |
| 411 | |
| 412 | session_transport_reset_notify (&ctx->connection); |
| 413 | session_transport_closed_notify (&ctx->connection); |
| 414 | tls_disconnect_transport (ctx); |
| 415 | } |
| 416 | |
| 417 | void |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 418 | tls_session_reset_callback (session_t * s) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 419 | { |
Florin Coras | f03c494 | 2019-08-07 21:39:27 -0700 | [diff] [blame] | 420 | tls_ctx_t *ctx; |
Zeyu Zhang | cbbc4a2 | 2019-10-12 14:21:59 +0800 | [diff] [blame] | 421 | transport_connection_t *tc; |
| 422 | session_t *app_session; |
Florin Coras | f03c494 | 2019-08-07 21:39:27 -0700 | [diff] [blame] | 423 | |
| 424 | ctx = tls_ctx_get (s->opaque); |
Yu Ping | 8378261 | 2020-02-19 02:31:22 +0800 | [diff] [blame] | 425 | ctx->is_passive_close = 1; |
Zeyu Zhang | cbbc4a2 | 2019-10-12 14:21:59 +0800 | [diff] [blame] | 426 | tc = &ctx->connection; |
| 427 | if (tls_ctx_handshake_is_over (ctx)) |
| 428 | { |
| 429 | session_transport_reset_notify (tc); |
| 430 | session_transport_closed_notify (tc); |
Yu Ping | 8378261 | 2020-02-19 02:31:22 +0800 | [diff] [blame] | 431 | tls_disconnect_transport (ctx); |
Zeyu Zhang | cbbc4a2 | 2019-10-12 14:21:59 +0800 | [diff] [blame] | 432 | } |
Yu Ping | 8378261 | 2020-02-19 02:31:22 +0800 | [diff] [blame] | 433 | else |
| 434 | if ((app_session = |
| 435 | session_get_if_valid (ctx->c_s_index, ctx->c_thread_index))) |
| 436 | { |
| 437 | session_free (app_session); |
| 438 | ctx->c_s_index = SESSION_INVALID_INDEX; |
| 439 | tls_disconnect_transport (ctx); |
| 440 | } |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 441 | } |
| 442 | |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 443 | static void |
| 444 | tls_session_cleanup_ho (session_t *s) |
| 445 | { |
| 446 | tls_ctx_t *ctx; |
| 447 | u32 ho_index; |
| 448 | |
| 449 | /* session opaque stores the opaque passed on connect */ |
| 450 | ho_index = s->opaque; |
| 451 | ctx = tls_ctx_half_open_get (ho_index); |
| 452 | session_half_open_delete_notify (&ctx->connection); |
| 453 | tls_ctx_half_open_reader_unlock (); |
| 454 | tls_ctx_half_open_free (ho_index); |
| 455 | } |
| 456 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 457 | int |
Florin Coras | fa76a76 | 2018-11-29 12:40:10 -0800 | [diff] [blame] | 458 | tls_add_segment_callback (u32 client_index, u64 segment_handle) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 459 | { |
| 460 | /* No-op for builtin */ |
| 461 | return 0; |
| 462 | } |
| 463 | |
| 464 | int |
Florin Coras | fa76a76 | 2018-11-29 12:40:10 -0800 | [diff] [blame] | 465 | tls_del_segment_callback (u32 client_index, u64 segment_handle) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 466 | { |
| 467 | return 0; |
| 468 | } |
| 469 | |
| 470 | void |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 471 | tls_session_disconnect_callback (session_t * tls_session) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 472 | { |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 473 | tls_ctx_t *ctx; |
Florin Coras | bf7ce2c | 2019-03-06 14:44:42 -0800 | [diff] [blame] | 474 | |
| 475 | TLS_DBG (1, "TCP disconnecting handle %x session %u", tls_session->opaque, |
| 476 | tls_session->session_index); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 477 | |
Florin Coras | 6faac16 | 2019-10-11 08:00:43 -0700 | [diff] [blame] | 478 | ASSERT (tls_session->thread_index == vlib_get_thread_index () |
| 479 | || vlib_thread_is_main_w_barrier ()); |
| 480 | |
| 481 | ctx = tls_ctx_get_w_thread (tls_session->opaque, tls_session->thread_index); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 482 | ctx->is_passive_close = 1; |
Florin Coras | 06a6a30 | 2019-04-17 14:19:12 -0700 | [diff] [blame] | 483 | tls_ctx_transport_close (ctx); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 484 | } |
| 485 | |
| 486 | int |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 487 | tls_session_accept_callback (session_t * tls_session) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 488 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 489 | session_t *tls_listener, *app_session; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 490 | tls_ctx_t *lctx, *ctx; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 491 | u32 ctx_handle; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 492 | |
Nathan Skrzypczak | 2f0f96b | 2019-06-13 10:14:28 +0200 | [diff] [blame] | 493 | tls_listener = |
| 494 | listen_session_get_from_handle (tls_session->listener_handle); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 495 | lctx = tls_listener_ctx_get (tls_listener->opaque); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 496 | |
| 497 | ctx_handle = tls_ctx_alloc (lctx->tls_ctx_engine); |
| 498 | ctx = tls_ctx_get (ctx_handle); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 499 | memcpy (ctx, lctx, sizeof (*lctx)); |
| 500 | ctx->c_thread_index = vlib_get_thread_index (); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 501 | ctx->tls_ctx_handle = ctx_handle; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 502 | tls_session->session_state = SESSION_STATE_READY; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 503 | tls_session->opaque = ctx_handle; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 504 | ctx->tls_session_handle = session_handle (tls_session); |
| 505 | ctx->listener_ctx_index = tls_listener->opaque; |
Florin Coras | d09236d | 2019-08-08 17:38:26 -0700 | [diff] [blame] | 506 | ctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP; |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 507 | ctx->ckpair_index = lctx->ckpair_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 508 | |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame] | 509 | /* Preallocate app session. Avoids allocating a session post handshake |
| 510 | * on tls_session rx and potentially invalidating the session pool */ |
| 511 | app_session = session_alloc (ctx->c_thread_index); |
Srikanth Akula | e140d5d | 2019-11-18 11:49:58 -0800 | [diff] [blame] | 512 | app_session->session_state = SESSION_STATE_CREATED; |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame] | 513 | ctx->c_s_index = app_session->session_index; |
| 514 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 515 | TLS_DBG (1, "Accept on listener %u new connection [%u]%x", |
| 516 | tls_listener->opaque, vlib_get_thread_index (), ctx_handle); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 517 | |
| 518 | return tls_ctx_init_server (ctx); |
| 519 | } |
| 520 | |
| 521 | int |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 522 | tls_app_rx_callback (session_t * tls_session) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 523 | { |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 524 | tls_ctx_t *ctx; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 525 | |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 526 | /* DTLS session migrating, wait for next notification */ |
| 527 | if (PREDICT_FALSE (tls_session->flags & SESSION_F_IS_MIGRATING)) |
| 528 | return 0; |
| 529 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 530 | ctx = tls_ctx_get (tls_session->opaque); |
Saravanan Murugesan | 3683d1b | 2022-02-28 10:55:26 +0530 | [diff] [blame] | 531 | if (PREDICT_FALSE (ctx->no_app_session)) |
| 532 | { |
| 533 | TLS_DBG (1, "Local App closed"); |
| 534 | return 0; |
| 535 | } |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 536 | tls_ctx_read (ctx, tls_session); |
| 537 | return 0; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 538 | } |
| 539 | |
| 540 | int |
Florin Coras | 9f86d22 | 2020-03-23 15:34:22 +0000 | [diff] [blame] | 541 | tls_app_tx_callback (session_t * tls_session) |
| 542 | { |
| 543 | tls_ctx_t *ctx; |
| 544 | |
| 545 | ctx = tls_ctx_get (tls_session->opaque); |
| 546 | transport_connection_reschedule (&ctx->connection); |
| 547 | |
| 548 | return 0; |
| 549 | } |
| 550 | |
| 551 | int |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 552 | tls_session_connected_cb (u32 tls_app_index, u32 ho_ctx_index, |
| 553 | session_t *tls_session, session_error_t err) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 554 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 555 | session_t *app_session; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 556 | tls_ctx_t *ho_ctx, *ctx; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 557 | session_type_t st; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 558 | u32 ctx_handle; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 559 | |
| 560 | ho_ctx = tls_ctx_half_open_get (ho_ctx_index); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 561 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 562 | ctx_handle = tls_ctx_alloc (ho_ctx->tls_ctx_engine); |
| 563 | ctx = tls_ctx_get (ctx_handle); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 564 | clib_memcpy_fast (ctx, ho_ctx, sizeof (*ctx)); |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 565 | /* Half-open freed on tcp half-open cleanup notification */ |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 566 | tls_ctx_half_open_reader_unlock (); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 567 | |
Florin Coras | dcde927 | 2018-03-02 09:23:42 -0800 | [diff] [blame] | 568 | ctx->c_thread_index = vlib_get_thread_index (); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 569 | ctx->tls_ctx_handle = ctx_handle; |
Florin Coras | d09236d | 2019-08-08 17:38:26 -0700 | [diff] [blame] | 570 | ctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP; |
Florin Coras | dcde927 | 2018-03-02 09:23:42 -0800 | [diff] [blame] | 571 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 572 | TLS_DBG (1, "TCP connect for %u returned %u. New connection [%u]%x", |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 573 | ho_ctx_index, err, vlib_get_thread_index (), |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 574 | (ctx) ? ctx_handle : ~0); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 575 | |
| 576 | ctx->tls_session_handle = session_handle (tls_session); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 577 | tls_session->opaque = ctx_handle; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 578 | tls_session->session_state = SESSION_STATE_READY; |
| 579 | |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame] | 580 | /* Preallocate app session. Avoids allocating a session post handshake |
| 581 | * on tls_session rx and potentially invalidating the session pool */ |
| 582 | app_session = session_alloc (ctx->c_thread_index); |
Srikanth Akula | e140d5d | 2019-11-18 11:49:58 -0800 | [diff] [blame] | 583 | app_session->session_state = SESSION_STATE_CREATED; |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame] | 584 | ctx->c_s_index = app_session->session_index; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 585 | st = session_type_from_proto_and_ip (TRANSPORT_PROTO_TLS, ctx->tcp_is_ip4); |
| 586 | app_session->session_type = st; |
| 587 | app_session->connection_index = ctx->tls_ctx_handle; |
Florin Coras | 58a93e8 | 2019-01-14 23:33:46 -0800 | [diff] [blame] | 588 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 589 | return tls_ctx_init_client (ctx); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 590 | } |
| 591 | |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 592 | int |
| 593 | dtls_session_connected_cb (u32 app_wrk_index, u32 ctx_handle, session_t *us, |
| 594 | session_error_t err) |
| 595 | { |
| 596 | tls_ctx_t *ctx; |
| 597 | |
Florin Coras | fb50bc3 | 2021-05-18 00:28:59 -0700 | [diff] [blame] | 598 | ctx = tls_ctx_get_w_thread (ctx_handle, transport_cl_thread ()); |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 599 | |
| 600 | ctx->tls_session_handle = session_handle (us); |
| 601 | ctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP; |
| 602 | us->opaque = ctx_handle; |
| 603 | |
| 604 | /* We don't preallocate the app session because the udp session might |
| 605 | * actually migrate to a different worker at the end of the handshake */ |
| 606 | |
| 607 | return tls_ctx_init_client (ctx); |
| 608 | } |
| 609 | |
| 610 | int |
| 611 | tls_session_connected_callback (u32 tls_app_index, u32 ho_ctx_index, |
| 612 | session_t *tls_session, session_error_t err) |
| 613 | { |
Florin Coras | 71ee375 | 2021-05-28 18:29:08 -0700 | [diff] [blame] | 614 | if (err) |
| 615 | { |
| 616 | app_worker_t *app_wrk; |
| 617 | tls_ctx_t *ho_ctx; |
| 618 | u32 api_context; |
| 619 | |
| 620 | ho_ctx = tls_ctx_half_open_get (ho_ctx_index); |
| 621 | app_wrk = app_worker_get_if_valid (ho_ctx->parent_app_wrk_index); |
| 622 | if (app_wrk) |
| 623 | { |
| 624 | api_context = ho_ctx->parent_app_api_context; |
| 625 | app_worker_connect_notify (app_wrk, 0, err, api_context); |
| 626 | } |
| 627 | tls_ctx_half_open_reader_unlock (); |
| 628 | |
| 629 | return 0; |
| 630 | } |
| 631 | |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 632 | if (session_get_transport_proto (tls_session) == TRANSPORT_PROTO_TCP) |
| 633 | return tls_session_connected_cb (tls_app_index, ho_ctx_index, tls_session, |
| 634 | err); |
| 635 | else |
| 636 | return dtls_session_connected_cb (tls_app_index, ho_ctx_index, tls_session, |
| 637 | err); |
| 638 | } |
| 639 | |
Florin Coras | ef2b335 | 2019-08-07 11:14:56 -0700 | [diff] [blame] | 640 | static void |
| 641 | tls_app_session_cleanup (session_t * s, session_cleanup_ntf_t ntf) |
| 642 | { |
| 643 | tls_ctx_t *ctx; |
| 644 | |
| 645 | if (ntf == SESSION_CLEANUP_TRANSPORT) |
Florin Coras | 36d4939 | 2020-04-24 23:00:11 +0000 | [diff] [blame] | 646 | { |
| 647 | /* Allow cleanup of tcp session */ |
| 648 | if (s->session_state == SESSION_STATE_TRANSPORT_DELETED) |
| 649 | session_close (s); |
| 650 | return; |
| 651 | } |
Florin Coras | ef2b335 | 2019-08-07 11:14:56 -0700 | [diff] [blame] | 652 | |
| 653 | ctx = tls_ctx_get (s->opaque); |
| 654 | if (!ctx->no_app_session) |
| 655 | session_transport_delete_notify (&ctx->connection); |
| 656 | tls_ctx_free (ctx); |
| 657 | } |
| 658 | |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 659 | static void |
Florin Coras | 88dd3cf | 2021-05-01 19:01:42 -0700 | [diff] [blame] | 660 | dtls_migrate_ctx (void *arg) |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 661 | { |
| 662 | tls_ctx_t *ctx = (tls_ctx_t *) arg; |
| 663 | u32 ctx_handle, thread_index; |
| 664 | session_t *us; |
| 665 | |
| 666 | thread_index = session_thread_from_handle (ctx->tls_session_handle); |
| 667 | ASSERT (thread_index == vlib_get_thread_index ()); |
| 668 | |
| 669 | ctx_handle = tls_ctx_attach (ctx->tls_ctx_engine, thread_index, ctx); |
| 670 | ctx = tls_ctx_get_w_thread (ctx_handle, thread_index); |
| 671 | ctx->tls_ctx_handle = ctx_handle; |
| 672 | |
| 673 | us = session_get_from_handle (ctx->tls_session_handle); |
| 674 | us->opaque = ctx_handle; |
| 675 | us->flags &= ~SESSION_F_IS_MIGRATING; |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 676 | |
| 677 | /* Probably the app detached while the session was migrating. Cleanup */ |
| 678 | if (session_half_open_migrated_notify (&ctx->connection)) |
| 679 | { |
| 680 | ctx->no_app_session = 1; |
| 681 | tls_disconnect (ctx->tls_ctx_handle, vlib_get_thread_index ()); |
| 682 | return; |
| 683 | } |
| 684 | |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 685 | if (svm_fifo_max_dequeue (us->tx_fifo)) |
| 686 | session_send_io_evt_to_thread (us->tx_fifo, SESSION_IO_EVT_TX); |
| 687 | } |
| 688 | |
| 689 | static void |
| 690 | dtls_session_migrate_callback (session_t *us, session_handle_t new_sh) |
| 691 | { |
| 692 | u32 new_thread = session_thread_from_handle (new_sh); |
Florin Coras | 88dd3cf | 2021-05-01 19:01:42 -0700 | [diff] [blame] | 693 | tls_ctx_t *ctx, *cloned_ctx; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 694 | |
| 695 | /* Migrate dtls context to new thread */ |
| 696 | ctx = tls_ctx_get_w_thread (us->opaque, us->thread_index); |
| 697 | ctx->tls_session_handle = new_sh; |
Florin Coras | 88dd3cf | 2021-05-01 19:01:42 -0700 | [diff] [blame] | 698 | cloned_ctx = tls_ctx_detach (ctx); |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 699 | ctx->is_migrated = 1; |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 700 | session_half_open_migrate_notify (&ctx->connection); |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 701 | |
Florin Coras | 88dd3cf | 2021-05-01 19:01:42 -0700 | [diff] [blame] | 702 | session_send_rpc_evt_to_thread (new_thread, dtls_migrate_ctx, |
| 703 | (void *) cloned_ctx); |
| 704 | |
| 705 | tls_ctx_free (ctx); |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 706 | } |
| 707 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 708 | static session_cb_vft_t tls_app_cb_vft = { |
| 709 | .session_accept_callback = tls_session_accept_callback, |
| 710 | .session_disconnect_callback = tls_session_disconnect_callback, |
| 711 | .session_connected_callback = tls_session_connected_callback, |
| 712 | .session_reset_callback = tls_session_reset_callback, |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 713 | .half_open_cleanup_callback = tls_session_cleanup_ho, |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 714 | .add_segment_callback = tls_add_segment_callback, |
| 715 | .del_segment_callback = tls_del_segment_callback, |
| 716 | .builtin_app_rx_callback = tls_app_rx_callback, |
Florin Coras | 9f86d22 | 2020-03-23 15:34:22 +0000 | [diff] [blame] | 717 | .builtin_app_tx_callback = tls_app_tx_callback, |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 718 | .session_migrate_callback = dtls_session_migrate_callback, |
Florin Coras | ef2b335 | 2019-08-07 11:14:56 -0700 | [diff] [blame] | 719 | .session_cleanup_callback = tls_app_session_cleanup, |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 720 | }; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 721 | |
| 722 | int |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 723 | tls_connect (transport_endpoint_cfg_t * tep) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 724 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 725 | vnet_connect_args_t _cargs = { {}, }, *cargs = &_cargs; |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 726 | transport_endpt_crypto_cfg_t *ccfg; |
Nathan Skrzypczak | 82fc5fd | 2019-09-13 10:20:15 +0200 | [diff] [blame] | 727 | crypto_engine_type_t engine_type; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 728 | session_endpoint_cfg_t *sep; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 729 | tls_main_t *tm = &tls_main; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 730 | app_worker_t *app_wrk; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 731 | application_t *app; |
| 732 | tls_ctx_t *ctx; |
| 733 | u32 ctx_index; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 734 | int rv; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 735 | |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 736 | sep = (session_endpoint_cfg_t *) tep; |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 737 | if (!sep->ext_cfg) |
Florin Coras | e5f1833 | 2021-04-22 11:48:35 -0700 | [diff] [blame] | 738 | return SESSION_E_NOEXTCFG; |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 739 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 740 | app_wrk = app_worker_get (sep->app_wrk_index); |
| 741 | app = application_get (app_wrk->app_index); |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 742 | |
| 743 | ccfg = &sep->ext_cfg->crypto; |
| 744 | engine_type = tls_get_engine_type (ccfg->crypto_engine, app->tls_engine); |
Nathan Skrzypczak | 82fc5fd | 2019-09-13 10:20:15 +0200 | [diff] [blame] | 745 | if (engine_type == CRYPTO_ENGINE_NONE) |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 746 | { |
| 747 | clib_warning ("No tls engine_type available"); |
Florin Coras | e5f1833 | 2021-04-22 11:48:35 -0700 | [diff] [blame] | 748 | return SESSION_E_NOCRYPTOENG; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 749 | } |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 750 | |
| 751 | ctx_index = tls_ctx_half_open_alloc (); |
| 752 | ctx = tls_ctx_half_open_get (ctx_index); |
Florin Coras | df57ea0 | 2019-02-18 20:14:20 -0800 | [diff] [blame] | 753 | ctx->parent_app_wrk_index = sep->app_wrk_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 754 | ctx->parent_app_api_context = sep->opaque; |
| 755 | ctx->tcp_is_ip4 = sep->is_ip4; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 756 | ctx->tls_type = sep->transport_proto; |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 757 | ctx->ckpair_index = ccfg->ckpair_index; |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 758 | ctx->c_proto = TRANSPORT_PROTO_TLS; |
| 759 | ctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP; |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 760 | if (ccfg->hostname[0]) |
Florin Coras | 8f89dd0 | 2018-03-05 16:53:07 -0800 | [diff] [blame] | 761 | { |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 762 | ctx->srv_hostname = format (0, "%s", ccfg->hostname); |
Florin Coras | 8f89dd0 | 2018-03-05 16:53:07 -0800 | [diff] [blame] | 763 | vec_terminate_c_string (ctx->srv_hostname); |
| 764 | } |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 765 | tls_ctx_half_open_reader_unlock (); |
| 766 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 767 | ctx->tls_ctx_engine = engine_type; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 768 | |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 769 | clib_memcpy_fast (&cargs->sep, sep, sizeof (session_endpoint_t)); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 770 | cargs->sep.transport_proto = TRANSPORT_PROTO_TCP; |
| 771 | cargs->app_index = tm->app_index; |
| 772 | cargs->api_context = ctx_index; |
Florin Coras | 8a14061 | 2019-02-18 22:39:39 -0800 | [diff] [blame] | 773 | cargs->sep_ext.ns_index = app->ns_index; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 774 | if ((rv = vnet_connect (cargs))) |
| 775 | return rv; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 776 | |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 777 | /* Track half-open tcp session in case we need to clean it up */ |
| 778 | ctx->tls_session_handle = cargs->sh; |
| 779 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 780 | TLS_DBG (1, "New connect request %u engine %d", ctx_index, engine_type); |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 781 | return ctx_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | void |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 785 | tls_disconnect (u32 ctx_handle, u32 thread_index) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 786 | { |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 787 | tls_ctx_t *ctx; |
| 788 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 789 | TLS_DBG (1, "Disconnecting %x", ctx_handle); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 790 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 791 | ctx = tls_ctx_get (ctx_handle); |
Florin Coras | 06a6a30 | 2019-04-17 14:19:12 -0700 | [diff] [blame] | 792 | tls_ctx_app_close (ctx); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 793 | } |
| 794 | |
| 795 | u32 |
Florin Coras | 0bce71e | 2022-02-10 11:57:06 -0800 | [diff] [blame] | 796 | tls_start_listen (u32 app_listener_index, transport_endpoint_cfg_t *tep) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 797 | { |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 798 | vnet_listen_args_t _bargs, *args = &_bargs; |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 799 | transport_endpt_crypto_cfg_t *ccfg; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 800 | app_worker_t *app_wrk; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 801 | tls_main_t *tm = &tls_main; |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 802 | session_handle_t tls_al_handle; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 803 | session_endpoint_cfg_t *sep; |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 804 | session_t *tls_listener; |
| 805 | session_t *app_listener; |
Nathan Skrzypczak | 82fc5fd | 2019-09-13 10:20:15 +0200 | [diff] [blame] | 806 | crypto_engine_type_t engine_type; |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 807 | application_t *app; |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 808 | app_listener_t *al; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 809 | tls_ctx_t *lctx; |
| 810 | u32 lctx_index; |
Florin Coras | e5f1833 | 2021-04-22 11:48:35 -0700 | [diff] [blame] | 811 | int rv; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 812 | |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 813 | sep = (session_endpoint_cfg_t *) tep; |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 814 | if (!sep->ext_cfg) |
Florin Coras | e5f1833 | 2021-04-22 11:48:35 -0700 | [diff] [blame] | 815 | return SESSION_E_NOEXTCFG; |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 816 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 817 | app_wrk = app_worker_get (sep->app_wrk_index); |
| 818 | app = application_get (app_wrk->app_index); |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 819 | |
| 820 | ccfg = &sep->ext_cfg->crypto; |
| 821 | engine_type = tls_get_engine_type (ccfg->crypto_engine, app->tls_engine); |
Nathan Skrzypczak | 82fc5fd | 2019-09-13 10:20:15 +0200 | [diff] [blame] | 822 | if (engine_type == CRYPTO_ENGINE_NONE) |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 823 | { |
| 824 | clib_warning ("No tls engine_type available"); |
Florin Coras | e5f1833 | 2021-04-22 11:48:35 -0700 | [diff] [blame] | 825 | return SESSION_E_NOCRYPTOENG; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 826 | } |
| 827 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 828 | clib_memset (args, 0, sizeof (*args)); |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 829 | args->app_index = tm->app_index; |
| 830 | args->sep_ext = *sep; |
Florin Coras | 8a14061 | 2019-02-18 22:39:39 -0800 | [diff] [blame] | 831 | args->sep_ext.ns_index = app->ns_index; |
Florin Coras | 95cd864 | 2019-12-30 21:53:19 -0800 | [diff] [blame] | 832 | args->sep_ext.transport_proto = TRANSPORT_PROTO_TCP; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 833 | if (sep->transport_proto == TRANSPORT_PROTO_DTLS) |
| 834 | { |
| 835 | args->sep_ext.transport_proto = TRANSPORT_PROTO_UDP; |
| 836 | args->sep_ext.transport_flags = TRANSPORT_CFG_F_CONNECTED; |
| 837 | } |
Florin Coras | e5f1833 | 2021-04-22 11:48:35 -0700 | [diff] [blame] | 838 | if ((rv = vnet_listen (args))) |
| 839 | return rv; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 840 | |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 841 | lctx_index = tls_listener_ctx_alloc (); |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 842 | tls_al_handle = args->handle; |
| 843 | al = app_listener_get_w_handle (tls_al_handle); |
| 844 | tls_listener = app_listener_get_session (al); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 845 | tls_listener->opaque = lctx_index; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 846 | |
Florin Coras | 5c9083d | 2018-04-13 06:39:07 -0700 | [diff] [blame] | 847 | app_listener = listen_session_get (app_listener_index); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 848 | |
| 849 | lctx = tls_listener_ctx_get (lctx_index); |
Florin Coras | df57ea0 | 2019-02-18 20:14:20 -0800 | [diff] [blame] | 850 | lctx->parent_app_wrk_index = sep->app_wrk_index; |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 851 | lctx->tls_session_handle = tls_al_handle; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 852 | lctx->app_session_handle = listen_session_get_handle (app_listener); |
| 853 | lctx->tcp_is_ip4 = sep->is_ip4; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 854 | lctx->tls_ctx_engine = engine_type; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 855 | lctx->tls_type = sep->transport_proto; |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 856 | lctx->ckpair_index = ccfg->ckpair_index; |
Florin Coras | 7705b49 | 2022-02-16 17:12:01 -0800 | [diff] [blame] | 857 | lctx->c_s_index = app_listener_index; |
Filip Tehlar | 61e26be | 2021-12-20 14:40:59 +0000 | [diff] [blame] | 858 | lctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 859 | |
Florin Coras | ae3eaac | 2019-07-23 22:38:16 -0700 | [diff] [blame] | 860 | if (tls_vfts[engine_type].ctx_start_listen (lctx)) |
| 861 | { |
| 862 | vnet_unlisten_args_t a = { |
| 863 | .handle = lctx->tls_session_handle, |
| 864 | .app_index = tls_main.app_index, |
| 865 | .wrk_map_index = 0 |
| 866 | }; |
| 867 | if ((vnet_unlisten (&a))) |
| 868 | clib_warning ("unlisten returned"); |
| 869 | tls_listener_ctx_free (lctx); |
| 870 | lctx_index = SESSION_INVALID_INDEX; |
| 871 | } |
Ping Yu | decda5b | 2018-08-13 06:20:00 -0400 | [diff] [blame] | 872 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 873 | TLS_DBG (1, "Started listening %d, engine type %d", lctx_index, |
| 874 | engine_type); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 875 | return lctx_index; |
| 876 | } |
| 877 | |
| 878 | u32 |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 879 | tls_stop_listen (u32 lctx_index) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 880 | { |
Florin Coras | aab0604 | 2020-02-26 02:56:14 +0000 | [diff] [blame] | 881 | session_endpoint_t sep = SESSION_ENDPOINT_NULL; |
Nathan Skrzypczak | 82fc5fd | 2019-09-13 10:20:15 +0200 | [diff] [blame] | 882 | crypto_engine_type_t engine_type; |
Florin Coras | aab0604 | 2020-02-26 02:56:14 +0000 | [diff] [blame] | 883 | transport_connection_t *lc; |
Florin Coras | b5e94e3 | 2018-09-14 14:46:39 -0700 | [diff] [blame] | 884 | tls_ctx_t *lctx; |
Florin Coras | aab0604 | 2020-02-26 02:56:14 +0000 | [diff] [blame] | 885 | session_t *ls; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 886 | int rv; |
Ping Yu | decda5b | 2018-08-13 06:20:00 -0400 | [diff] [blame] | 887 | |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 888 | lctx = tls_listener_ctx_get (lctx_index); |
Florin Coras | aab0604 | 2020-02-26 02:56:14 +0000 | [diff] [blame] | 889 | |
| 890 | /* Cleanup listener from session lookup table */ |
| 891 | ls = session_get_from_handle (lctx->tls_session_handle); |
| 892 | lc = session_get_transport (ls); |
| 893 | |
| 894 | sep.fib_index = lc->fib_index; |
| 895 | sep.port = lc->lcl_port; |
| 896 | sep.is_ip4 = lc->is_ip4; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 897 | sep.transport_proto = lctx->tls_type; |
Florin Coras | aab0604 | 2020-02-26 02:56:14 +0000 | [diff] [blame] | 898 | clib_memcpy (&sep.ip, &lc->lcl_ip, sizeof (lc->lcl_ip)); |
| 899 | session_lookup_del_session_endpoint2 (&sep); |
| 900 | |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 901 | vnet_unlisten_args_t a = { |
Florin Coras | b5e94e3 | 2018-09-14 14:46:39 -0700 | [diff] [blame] | 902 | .handle = lctx->tls_session_handle, |
| 903 | .app_index = tls_main.app_index, |
| 904 | .wrk_map_index = 0 /* default wrk */ |
| 905 | }; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 906 | if ((rv = vnet_unlisten (&a))) |
| 907 | clib_warning ("unlisten returned %d", rv); |
Florin Coras | b5e94e3 | 2018-09-14 14:46:39 -0700 | [diff] [blame] | 908 | |
Ping Yu | decda5b | 2018-08-13 06:20:00 -0400 | [diff] [blame] | 909 | engine_type = lctx->tls_ctx_engine; |
| 910 | tls_vfts[engine_type].ctx_stop_listen (lctx); |
| 911 | |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 912 | tls_listener_ctx_free (lctx); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 913 | return 0; |
| 914 | } |
| 915 | |
| 916 | transport_connection_t * |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 917 | tls_connection_get (u32 ctx_index, u32 thread_index) |
| 918 | { |
| 919 | tls_ctx_t *ctx; |
| 920 | ctx = tls_ctx_get_w_thread (ctx_index, thread_index); |
| 921 | return &ctx->connection; |
| 922 | } |
| 923 | |
| 924 | transport_connection_t * |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 925 | tls_listener_get (u32 listener_index) |
| 926 | { |
| 927 | tls_ctx_t *ctx; |
| 928 | ctx = tls_listener_ctx_get (listener_index); |
| 929 | return &ctx->connection; |
| 930 | } |
| 931 | |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 932 | static transport_connection_t * |
| 933 | tls_half_open_get (u32 ho_index) |
| 934 | { |
| 935 | tls_main_t *tm = &tls_main; |
| 936 | tls_ctx_t *ctx; |
| 937 | ctx = tls_ctx_half_open_get (ho_index); |
| 938 | clib_rwlock_reader_unlock (&tm->half_open_rwlock); |
| 939 | return &ctx->connection; |
| 940 | } |
| 941 | |
| 942 | static void |
| 943 | tls_cleanup_ho (u32 ho_index) |
| 944 | { |
| 945 | tls_main_t *tm = &tls_main; |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 946 | session_handle_t tcp_sh; |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 947 | tls_ctx_t *ctx; |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 948 | |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 949 | ctx = tls_ctx_half_open_get (ho_index); |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 950 | tcp_sh = ctx->tls_session_handle; |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 951 | clib_rwlock_reader_unlock (&tm->half_open_rwlock); |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 952 | session_cleanup_half_open (tcp_sh); |
| 953 | tls_ctx_half_open_free (ho_index); |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 954 | } |
| 955 | |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 956 | int |
Florin Coras | 9f86d22 | 2020-03-23 15:34:22 +0000 | [diff] [blame] | 957 | tls_custom_tx_callback (void *session, transport_send_params_t * sp) |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 958 | { |
| 959 | session_t *app_session = (session_t *) session; |
| 960 | tls_ctx_t *ctx; |
Florin Coras | bf7ce2c | 2019-03-06 14:44:42 -0800 | [diff] [blame] | 961 | |
| 962 | if (PREDICT_FALSE (app_session->session_state |
| 963 | >= SESSION_STATE_TRANSPORT_CLOSED)) |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 964 | return 0; |
Florin Coras | bf7ce2c | 2019-03-06 14:44:42 -0800 | [diff] [blame] | 965 | |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 966 | ctx = tls_ctx_get (app_session->connection_index); |
Florin Coras | 9f86d22 | 2020-03-23 15:34:22 +0000 | [diff] [blame] | 967 | return tls_ctx_write (ctx, app_session, sp); |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 968 | } |
| 969 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 970 | u8 * |
| 971 | format_tls_ctx (u8 * s, va_list * args) |
| 972 | { |
jiangxiaoming | 5b7ea91 | 2020-09-23 10:29:21 +0800 | [diff] [blame] | 973 | u32 tcp_si, tcp_ti, ctx_index, ctx_engine; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 974 | tls_ctx_t *ctx = va_arg (*args, tls_ctx_t *); |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 975 | char *proto; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 976 | |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 977 | proto = ctx->tls_type == TRANSPORT_PROTO_TLS ? "TLS" : "DTLS"; |
Florin Coras | bf7ce2c | 2019-03-06 14:44:42 -0800 | [diff] [blame] | 978 | session_parse_handle (ctx->tls_session_handle, &tcp_si, &tcp_ti); |
| 979 | tls_ctx_parse_handle (ctx->tls_ctx_handle, &ctx_index, &ctx_engine); |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 980 | s = |
| 981 | format (s, "[%d:%d][%s] app_wrk %u index %u engine %u ts %d:%d", |
| 982 | ctx->c_thread_index, ctx->c_s_index, proto, |
| 983 | ctx->parent_app_wrk_index, ctx_index, ctx_engine, tcp_ti, tcp_si); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 984 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 985 | return s; |
| 986 | } |
| 987 | |
Florin Coras | 0d74dd1 | 2020-01-07 19:01:26 +0000 | [diff] [blame] | 988 | static u8 * |
| 989 | format_tls_listener_ctx (u8 * s, va_list * args) |
| 990 | { |
| 991 | session_t *tls_listener; |
| 992 | app_listener_t *al; |
Florin Coras | 0d74dd1 | 2020-01-07 19:01:26 +0000 | [diff] [blame] | 993 | tls_ctx_t *ctx; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 994 | char *proto; |
Florin Coras | 0d74dd1 | 2020-01-07 19:01:26 +0000 | [diff] [blame] | 995 | |
| 996 | ctx = va_arg (*args, tls_ctx_t *); |
| 997 | |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 998 | proto = ctx->tls_type == TRANSPORT_PROTO_TLS ? "TLS" : "DTLS"; |
Florin Coras | 0d74dd1 | 2020-01-07 19:01:26 +0000 | [diff] [blame] | 999 | al = app_listener_get_w_handle (ctx->tls_session_handle); |
| 1000 | tls_listener = app_listener_get_session (al); |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1001 | s = format (s, "[%d:%d][%s] app_wrk %u engine %u ts %d:%d", |
| 1002 | ctx->c_thread_index, ctx->c_s_index, proto, |
jiangxiaoming | 5b7ea91 | 2020-09-23 10:29:21 +0800 | [diff] [blame] | 1003 | ctx->parent_app_wrk_index, ctx->tls_ctx_engine, |
Florin Coras | 0d74dd1 | 2020-01-07 19:01:26 +0000 | [diff] [blame] | 1004 | tls_listener->thread_index, tls_listener->session_index); |
| 1005 | |
| 1006 | return s; |
| 1007 | } |
| 1008 | |
| 1009 | static u8 * |
| 1010 | format_tls_ctx_state (u8 * s, va_list * args) |
| 1011 | { |
| 1012 | tls_ctx_t *ctx; |
| 1013 | session_t *ts; |
| 1014 | |
| 1015 | ctx = va_arg (*args, tls_ctx_t *); |
jiangxiaoming | 5b7ea91 | 2020-09-23 10:29:21 +0800 | [diff] [blame] | 1016 | ts = session_get (ctx->c_s_index, ctx->c_thread_index); |
Florin Coras | 0d74dd1 | 2020-01-07 19:01:26 +0000 | [diff] [blame] | 1017 | if (ts->session_state == SESSION_STATE_LISTENING) |
| 1018 | s = format (s, "%s", "LISTEN"); |
Florin Coras | 0d74dd1 | 2020-01-07 19:01:26 +0000 | [diff] [blame] | 1019 | else |
Florin Coras | 681ea6d | 2020-04-24 16:59:49 +0000 | [diff] [blame] | 1020 | { |
| 1021 | if (ts->session_state >= SESSION_STATE_TRANSPORT_CLOSED) |
| 1022 | s = format (s, "%s", "CLOSED"); |
| 1023 | else if (ts->session_state == SESSION_STATE_APP_CLOSED) |
| 1024 | s = format (s, "%s", "APP-CLOSED"); |
| 1025 | else if (ts->session_state >= SESSION_STATE_TRANSPORT_CLOSING) |
| 1026 | s = format (s, "%s", "CLOSING"); |
| 1027 | else if (tls_ctx_handshake_is_over (ctx)) |
| 1028 | s = format (s, "%s", "ESTABLISHED"); |
| 1029 | else |
| 1030 | s = format (s, "%s", "HANDSHAKE"); |
| 1031 | } |
Florin Coras | 0d74dd1 | 2020-01-07 19:01:26 +0000 | [diff] [blame] | 1032 | |
| 1033 | return s; |
| 1034 | } |
| 1035 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1036 | u8 * |
| 1037 | format_tls_connection (u8 * s, va_list * args) |
| 1038 | { |
| 1039 | u32 ctx_index = va_arg (*args, u32); |
| 1040 | u32 thread_index = va_arg (*args, u32); |
| 1041 | u32 verbose = va_arg (*args, u32); |
| 1042 | tls_ctx_t *ctx; |
| 1043 | |
| 1044 | ctx = tls_ctx_get_w_thread (ctx_index, thread_index); |
| 1045 | if (!ctx) |
| 1046 | return s; |
| 1047 | |
Florin Coras | 7bf6ed6 | 2020-09-23 12:02:08 -0700 | [diff] [blame] | 1048 | s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_tls_ctx, ctx); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1049 | if (verbose) |
| 1050 | { |
Florin Coras | 7bf6ed6 | 2020-09-23 12:02:08 -0700 | [diff] [blame] | 1051 | s = format (s, "%-" SESSION_CLI_STATE_LEN "U", format_tls_ctx_state, |
| 1052 | ctx); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1053 | if (verbose > 1) |
| 1054 | s = format (s, "\n"); |
| 1055 | } |
| 1056 | return s; |
| 1057 | } |
| 1058 | |
| 1059 | u8 * |
| 1060 | format_tls_listener (u8 * s, va_list * args) |
| 1061 | { |
| 1062 | u32 tc_index = va_arg (*args, u32); |
Aloys Augustin | a0abbff | 2019-07-12 12:16:16 +0200 | [diff] [blame] | 1063 | u32 __clib_unused thread_index = va_arg (*args, u32); |
Florin Coras | 0d74dd1 | 2020-01-07 19:01:26 +0000 | [diff] [blame] | 1064 | u32 verbose = va_arg (*args, u32); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1065 | tls_ctx_t *ctx = tls_listener_ctx_get (tc_index); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1066 | |
Florin Coras | 7bf6ed6 | 2020-09-23 12:02:08 -0700 | [diff] [blame] | 1067 | s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_tls_listener_ctx, ctx); |
Florin Coras | 0d74dd1 | 2020-01-07 19:01:26 +0000 | [diff] [blame] | 1068 | if (verbose) |
Florin Coras | 7bf6ed6 | 2020-09-23 12:02:08 -0700 | [diff] [blame] | 1069 | s = format (s, "%-" SESSION_CLI_STATE_LEN "U", format_tls_ctx_state, ctx); |
Florin Coras | bf7ce2c | 2019-03-06 14:44:42 -0800 | [diff] [blame] | 1070 | return s; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1071 | } |
| 1072 | |
| 1073 | u8 * |
| 1074 | format_tls_half_open (u8 * s, va_list * args) |
| 1075 | { |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 1076 | u32 ho_index = va_arg (*args, u32); |
Aloys Augustin | a0abbff | 2019-07-12 12:16:16 +0200 | [diff] [blame] | 1077 | u32 __clib_unused thread_index = va_arg (*args, u32); |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 1078 | session_t *tcp_ho; |
| 1079 | tls_ctx_t *ho_ctx; |
| 1080 | |
| 1081 | ho_ctx = tls_ctx_half_open_get (ho_index); |
| 1082 | |
| 1083 | tcp_ho = session_get_from_handle (ho_ctx->tls_session_handle); |
| 1084 | s = format (s, "[%d:%d][%s] half-open app_wrk %u engine %u ts %d:%d", |
| 1085 | ho_ctx->c_thread_index, ho_ctx->c_s_index, "TLS", |
| 1086 | ho_ctx->parent_app_wrk_index, ho_ctx->tls_ctx_engine, |
| 1087 | tcp_ho->thread_index, tcp_ho->session_index); |
| 1088 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1089 | tls_ctx_half_open_reader_unlock (); |
| 1090 | return s; |
| 1091 | } |
| 1092 | |
Yu Ping | 0b81915 | 2019-05-07 02:24:30 +0800 | [diff] [blame] | 1093 | static void |
| 1094 | tls_transport_endpoint_get (u32 ctx_handle, u32 thread_index, |
| 1095 | transport_endpoint_t * tep, u8 is_lcl) |
| 1096 | { |
| 1097 | tls_ctx_t *ctx = tls_ctx_get_w_thread (ctx_handle, thread_index); |
| 1098 | session_t *tcp_session; |
| 1099 | |
| 1100 | tcp_session = session_get_from_handle (ctx->tls_session_handle); |
| 1101 | session_get_endpoint (tcp_session, tep, is_lcl); |
| 1102 | } |
| 1103 | |
| 1104 | static void |
| 1105 | tls_transport_listener_endpoint_get (u32 ctx_handle, |
| 1106 | transport_endpoint_t * tep, u8 is_lcl) |
| 1107 | { |
| 1108 | session_t *tls_listener; |
| 1109 | app_listener_t *al; |
| 1110 | tls_ctx_t *ctx = tls_listener_ctx_get (ctx_handle); |
| 1111 | |
| 1112 | al = app_listener_get_w_handle (ctx->tls_session_handle); |
| 1113 | tls_listener = app_listener_get_session (al); |
| 1114 | session_get_endpoint (tls_listener, tep, is_lcl); |
| 1115 | } |
| 1116 | |
Florin Coras | 0a9ab82 | 2020-10-25 14:01:37 -0700 | [diff] [blame] | 1117 | static clib_error_t * |
| 1118 | tls_enable (vlib_main_t * vm, u8 is_en) |
| 1119 | { |
Florin Coras | 0a9ab82 | 2020-10-25 14:01:37 -0700 | [diff] [blame] | 1120 | vnet_app_detach_args_t _da, *da = &_da; |
| 1121 | vnet_app_attach_args_t _a, *a = &_a; |
| 1122 | u64 options[APP_OPTIONS_N_OPTIONS]; |
| 1123 | tls_main_t *tm = &tls_main; |
| 1124 | u32 fifo_size = 128 << 12; |
| 1125 | |
| 1126 | if (!is_en) |
| 1127 | { |
| 1128 | da->app_index = tm->app_index; |
| 1129 | da->api_client_index = APP_INVALID_INDEX; |
| 1130 | vnet_application_detach (da); |
| 1131 | return 0; |
| 1132 | } |
| 1133 | |
Florin Coras | 0a9ab82 | 2020-10-25 14:01:37 -0700 | [diff] [blame] | 1134 | fifo_size = tm->fifo_size ? tm->fifo_size : fifo_size; |
| 1135 | |
| 1136 | clib_memset (a, 0, sizeof (*a)); |
| 1137 | clib_memset (options, 0, sizeof (options)); |
| 1138 | |
| 1139 | a->session_cb_vft = &tls_app_cb_vft; |
| 1140 | a->api_client_index = APP_INVALID_INDEX; |
| 1141 | a->options = options; |
| 1142 | a->name = format (0, "tls"); |
Florin Coras | a3767bd | 2021-11-18 15:25:31 -0800 | [diff] [blame] | 1143 | a->options[APP_OPTIONS_SEGMENT_SIZE] = tm->first_seg_size; |
| 1144 | a->options[APP_OPTIONS_ADD_SEGMENT_SIZE] = tm->add_seg_size; |
Florin Coras | 0a9ab82 | 2020-10-25 14:01:37 -0700 | [diff] [blame] | 1145 | a->options[APP_OPTIONS_RX_FIFO_SIZE] = fifo_size; |
| 1146 | a->options[APP_OPTIONS_TX_FIFO_SIZE] = fifo_size; |
| 1147 | a->options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN; |
| 1148 | a->options[APP_OPTIONS_FLAGS] |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE; |
| 1149 | a->options[APP_OPTIONS_FLAGS] |= APP_OPTIONS_FLAGS_IS_TRANSPORT_APP; |
| 1150 | |
| 1151 | if (vnet_application_attach (a)) |
| 1152 | { |
| 1153 | clib_warning ("failed to attach tls app"); |
| 1154 | return clib_error_return (0, "failed to attach tls app"); |
| 1155 | } |
| 1156 | |
| 1157 | tm->app_index = a->app_index; |
| 1158 | vec_free (a->name); |
| 1159 | |
| 1160 | return 0; |
| 1161 | } |
| 1162 | |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 1163 | static const transport_proto_vft_t tls_proto = { |
Florin Coras | 0a9ab82 | 2020-10-25 14:01:37 -0700 | [diff] [blame] | 1164 | .enable = tls_enable, |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1165 | .connect = tls_connect, |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1166 | .close = tls_disconnect, |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1167 | .start_listen = tls_start_listen, |
| 1168 | .stop_listen = tls_stop_listen, |
Florin Coras | e3e2f07 | 2018-03-04 07:24:30 -0800 | [diff] [blame] | 1169 | .get_connection = tls_connection_get, |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1170 | .get_listener = tls_listener_get, |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 1171 | .get_half_open = tls_half_open_get, |
| 1172 | .cleanup_ho = tls_cleanup_ho, |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 1173 | .custom_tx = tls_custom_tx_callback, |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1174 | .format_connection = format_tls_connection, |
| 1175 | .format_half_open = format_tls_half_open, |
| 1176 | .format_listener = format_tls_listener, |
Yu Ping | 0b81915 | 2019-05-07 02:24:30 +0800 | [diff] [blame] | 1177 | .get_transport_endpoint = tls_transport_endpoint_get, |
| 1178 | .get_transport_listener_endpoint = tls_transport_listener_endpoint_get, |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 1179 | .transport_options = { |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 1180 | .name = "tls", |
| 1181 | .short_name = "J", |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 1182 | .tx_type = TRANSPORT_TX_INTERNAL, |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 1183 | .service_type = TRANSPORT_SERVICE_VC, |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 1184 | }, |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1185 | }; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1186 | |
| 1187 | int |
| 1188 | dtls_connect (transport_endpoint_cfg_t *tep) |
| 1189 | { |
| 1190 | vnet_connect_args_t _cargs = { {}, }, *cargs = &_cargs; |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 1191 | transport_endpt_crypto_cfg_t *ccfg; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1192 | crypto_engine_type_t engine_type; |
| 1193 | session_endpoint_cfg_t *sep; |
| 1194 | tls_main_t *tm = &tls_main; |
| 1195 | app_worker_t *app_wrk; |
| 1196 | application_t *app; |
| 1197 | tls_ctx_t *ctx; |
| 1198 | u32 ctx_handle; |
| 1199 | int rv; |
| 1200 | |
| 1201 | sep = (session_endpoint_cfg_t *) tep; |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 1202 | if (!sep->ext_cfg) |
| 1203 | return -1; |
| 1204 | |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1205 | app_wrk = app_worker_get (sep->app_wrk_index); |
| 1206 | app = application_get (app_wrk->app_index); |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 1207 | |
| 1208 | ccfg = &sep->ext_cfg->crypto; |
| 1209 | engine_type = tls_get_engine_type (ccfg->crypto_engine, app->tls_engine); |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1210 | if (engine_type == CRYPTO_ENGINE_NONE) |
| 1211 | { |
| 1212 | clib_warning ("No tls engine_type available"); |
| 1213 | return -1; |
| 1214 | } |
| 1215 | |
Florin Coras | fb50bc3 | 2021-05-18 00:28:59 -0700 | [diff] [blame] | 1216 | ctx_handle = tls_ctx_alloc_w_thread (engine_type, transport_cl_thread ()); |
| 1217 | ctx = tls_ctx_get_w_thread (ctx_handle, transport_cl_thread ()); |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1218 | ctx->parent_app_wrk_index = sep->app_wrk_index; |
| 1219 | ctx->parent_app_api_context = sep->opaque; |
| 1220 | ctx->tcp_is_ip4 = sep->is_ip4; |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 1221 | ctx->ckpair_index = ccfg->ckpair_index; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1222 | ctx->tls_type = sep->transport_proto; |
| 1223 | ctx->tls_ctx_handle = ctx_handle; |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 1224 | ctx->c_proto = TRANSPORT_PROTO_DTLS; |
| 1225 | ctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP; |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 1226 | if (ccfg->hostname[0]) |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1227 | { |
Florin Coras | a54b62d | 2021-04-21 09:05:56 -0700 | [diff] [blame] | 1228 | ctx->srv_hostname = format (0, "%s", ccfg->hostname); |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1229 | vec_terminate_c_string (ctx->srv_hostname); |
| 1230 | } |
| 1231 | |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1232 | ctx->tls_ctx_engine = engine_type; |
| 1233 | |
| 1234 | clib_memcpy_fast (&cargs->sep, sep, sizeof (session_endpoint_t)); |
| 1235 | cargs->sep.transport_proto = TRANSPORT_PROTO_UDP; |
| 1236 | cargs->app_index = tm->app_index; |
| 1237 | cargs->api_context = ctx_handle; |
| 1238 | cargs->sep_ext.ns_index = app->ns_index; |
| 1239 | cargs->sep_ext.transport_flags = TRANSPORT_CFG_F_CONNECTED; |
| 1240 | if ((rv = vnet_connect (cargs))) |
| 1241 | return rv; |
| 1242 | |
| 1243 | TLS_DBG (1, "New DTLS connect request %x engine %d", ctx_handle, |
| 1244 | engine_type); |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 1245 | return ctx_handle; |
| 1246 | } |
| 1247 | |
| 1248 | static transport_connection_t * |
| 1249 | dtls_half_open_get (u32 ho_index) |
| 1250 | { |
| 1251 | tls_ctx_t *ho_ctx; |
Florin Coras | fb50bc3 | 2021-05-18 00:28:59 -0700 | [diff] [blame] | 1252 | ho_ctx = tls_ctx_get_w_thread (ho_index, transport_cl_thread ()); |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 1253 | return &ho_ctx->connection; |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1254 | } |
| 1255 | |
| 1256 | static void |
| 1257 | dtls_cleanup_callback (u32 ctx_index, u32 thread_index) |
| 1258 | { |
| 1259 | /* No op */ |
| 1260 | } |
| 1261 | |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 1262 | static void |
| 1263 | dtls_cleanup_ho (u32 ho_index) |
| 1264 | { |
| 1265 | tls_ctx_t *ctx; |
Florin Coras | fb50bc3 | 2021-05-18 00:28:59 -0700 | [diff] [blame] | 1266 | ctx = tls_ctx_get_w_thread (ho_index, transport_cl_thread ()); |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 1267 | tls_ctx_free (ctx); |
| 1268 | } |
| 1269 | |
| 1270 | u8 * |
| 1271 | format_dtls_half_open (u8 *s, va_list *args) |
| 1272 | { |
| 1273 | u32 ho_index = va_arg (*args, u32); |
| 1274 | u32 __clib_unused thread_index = va_arg (*args, u32); |
| 1275 | tls_ctx_t *ho_ctx; |
| 1276 | session_t *us; |
| 1277 | |
Florin Coras | fb50bc3 | 2021-05-18 00:28:59 -0700 | [diff] [blame] | 1278 | ho_ctx = tls_ctx_get_w_thread (ho_index, transport_cl_thread ()); |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 1279 | |
| 1280 | us = session_get_from_handle (ho_ctx->tls_session_handle); |
| 1281 | s = format (s, "[%d:%d][%s] half-open app_wrk %u engine %u us %d:%d", |
| 1282 | ho_ctx->c_thread_index, ho_ctx->c_s_index, "DTLS", |
| 1283 | ho_ctx->parent_app_wrk_index, ho_ctx->tls_ctx_engine, |
| 1284 | us->thread_index, us->session_index); |
| 1285 | |
| 1286 | return s; |
| 1287 | } |
| 1288 | |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1289 | static const transport_proto_vft_t dtls_proto = { |
| 1290 | .enable = 0, |
| 1291 | .connect = dtls_connect, |
| 1292 | .close = tls_disconnect, |
| 1293 | .start_listen = tls_start_listen, |
| 1294 | .stop_listen = tls_stop_listen, |
| 1295 | .get_connection = tls_connection_get, |
| 1296 | .get_listener = tls_listener_get, |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 1297 | .get_half_open = dtls_half_open_get, |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1298 | .custom_tx = tls_custom_tx_callback, |
| 1299 | .cleanup = dtls_cleanup_callback, |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 1300 | .cleanup_ho = dtls_cleanup_ho, |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1301 | .format_connection = format_tls_connection, |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 1302 | .format_half_open = format_dtls_half_open, |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1303 | .format_listener = format_tls_listener, |
| 1304 | .get_transport_endpoint = tls_transport_endpoint_get, |
| 1305 | .get_transport_listener_endpoint = tls_transport_listener_endpoint_get, |
| 1306 | .transport_options = { |
| 1307 | .name = "dtls", |
| 1308 | .short_name = "D", |
| 1309 | .tx_type = TRANSPORT_TX_INTERNAL, |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 1310 | .service_type = TRANSPORT_SERVICE_VC, |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1311 | }, |
| 1312 | }; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1313 | |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 1314 | void |
Nathan Skrzypczak | 82fc5fd | 2019-09-13 10:20:15 +0200 | [diff] [blame] | 1315 | tls_register_engine (const tls_engine_vft_t * vft, crypto_engine_type_t type) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1316 | { |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 1317 | vec_validate (tls_vfts, type); |
| 1318 | tls_vfts[type] = *vft; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1319 | } |
| 1320 | |
Dave Barach | cc5677b | 2018-03-28 19:08:45 -0400 | [diff] [blame] | 1321 | static clib_error_t * |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1322 | tls_init (vlib_main_t * vm) |
| 1323 | { |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 1324 | vlib_thread_main_t *vtm = vlib_get_thread_main (); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1325 | tls_main_t *tm = &tls_main; |
Florin Coras | 0a9ab82 | 2020-10-25 14:01:37 -0700 | [diff] [blame] | 1326 | u32 num_threads; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 1327 | |
| 1328 | num_threads = 1 /* main thread */ + vtm->n_threads; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1329 | |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 1330 | if (!tm->ca_cert_path) |
| 1331 | tm->ca_cert_path = TLS_CA_CERT_PATH; |
| 1332 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1333 | clib_rwlock_init (&tm->half_open_rwlock); |
| 1334 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 1335 | vec_validate (tm->rx_bufs, num_threads - 1); |
| 1336 | vec_validate (tm->tx_bufs, num_threads - 1); |
| 1337 | |
Florin Coras | a3767bd | 2021-11-18 15:25:31 -0800 | [diff] [blame] | 1338 | tm->first_seg_size = 32 << 20; |
| 1339 | tm->add_seg_size = 256 << 20; |
| 1340 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1341 | transport_register_protocol (TRANSPORT_PROTO_TLS, &tls_proto, |
| 1342 | FIB_PROTOCOL_IP4, ~0); |
| 1343 | transport_register_protocol (TRANSPORT_PROTO_TLS, &tls_proto, |
| 1344 | FIB_PROTOCOL_IP6, ~0); |
Florin Coras | 4b47ee2 | 2020-11-19 13:38:26 -0800 | [diff] [blame] | 1345 | |
| 1346 | transport_register_protocol (TRANSPORT_PROTO_DTLS, &dtls_proto, |
| 1347 | FIB_PROTOCOL_IP4, ~0); |
| 1348 | transport_register_protocol (TRANSPORT_PROTO_DTLS, &dtls_proto, |
| 1349 | FIB_PROTOCOL_IP6, ~0); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1350 | return 0; |
| 1351 | } |
| 1352 | |
| 1353 | VLIB_INIT_FUNCTION (tls_init); |
| 1354 | |
Florin Coras | 8f89dd0 | 2018-03-05 16:53:07 -0800 | [diff] [blame] | 1355 | static clib_error_t * |
| 1356 | tls_config_fn (vlib_main_t * vm, unformat_input_t * input) |
| 1357 | { |
| 1358 | tls_main_t *tm = &tls_main; |
Dave Wallace | b1a81aa | 2019-10-30 17:53:56 +0000 | [diff] [blame] | 1359 | uword tmp; |
Florin Coras | 8f89dd0 | 2018-03-05 16:53:07 -0800 | [diff] [blame] | 1360 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 1361 | { |
| 1362 | if (unformat (input, "use-test-cert-in-ca")) |
| 1363 | tm->use_test_cert_in_ca = 1; |
| 1364 | else if (unformat (input, "ca-cert-path %s", &tm->ca_cert_path)) |
| 1365 | ; |
Florin Coras | ddd98f3 | 2019-03-25 08:30:53 -0700 | [diff] [blame] | 1366 | else if (unformat (input, "first-segment-size %U", unformat_memory_size, |
| 1367 | &tm->first_seg_size)) |
| 1368 | ; |
Florin Coras | a3767bd | 2021-11-18 15:25:31 -0800 | [diff] [blame] | 1369 | else if (unformat (input, "add-segment-size %U", unformat_memory_size, |
| 1370 | &tm->add_seg_size)) |
| 1371 | ; |
Dave Wallace | b1a81aa | 2019-10-30 17:53:56 +0000 | [diff] [blame] | 1372 | else if (unformat (input, "fifo-size %U", unformat_memory_size, &tmp)) |
| 1373 | { |
| 1374 | if (tmp >= 0x100000000ULL) |
| 1375 | { |
| 1376 | return clib_error_return |
| 1377 | (0, "fifo-size %llu (0x%llx) too large", tmp, tmp); |
| 1378 | } |
| 1379 | tm->fifo_size = tmp; |
| 1380 | } |
Florin Coras | 8f89dd0 | 2018-03-05 16:53:07 -0800 | [diff] [blame] | 1381 | else |
| 1382 | return clib_error_return (0, "unknown input `%U'", |
| 1383 | format_unformat_error, input); |
| 1384 | } |
| 1385 | return 0; |
| 1386 | } |
| 1387 | |
| 1388 | VLIB_EARLY_CONFIG_FUNCTION (tls_config_fn, "tls"); |
Florin Coras | d77eee6 | 2018-03-07 08:49:27 -0800 | [diff] [blame] | 1389 | |
| 1390 | tls_main_t * |
| 1391 | vnet_tls_get_main (void) |
| 1392 | { |
| 1393 | return &tls_main; |
| 1394 | } |
| 1395 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1396 | /* |
| 1397 | * fd.io coding-style-patch-verification: ON |
| 1398 | * |
| 1399 | * Local Variables: |
| 1400 | * eval: (c-set-style "gnu") |
| 1401 | * End: |
| 1402 | */ |