blob: d51d5dbaa389698ba3f039be4d9f4e578a36897a [file] [log] [blame]
Florin Coras371ca502018-02-21 12:07:41 -08001/*
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 Corasd77eee62018-03-07 08:49:27 -080018#include <vnet/tls/tls.h>
Florin Coras371ca502018-02-21 12:07:41 -080019
20static tls_main_t tls_main;
Florin Corasd77eee62018-03-07 08:49:27 -080021static tls_engine_vft_t *tls_vfts;
Florin Coras371ca502018-02-21 12:07:41 -080022
Florin Coras58d36f02018-03-09 13:05:53 -080023#define TLS_INVALID_HANDLE ~0
24#define TLS_IDX_MASK 0x00FFFFFF
25#define TLS_ENGINE_TYPE_SHIFT 29
26
27void tls_disconnect (u32 ctx_handle, u32 thread_index);
28
Florin Corasc01d5782018-10-17 14:53:11 -070029static void
30tls_disconnect_transport (tls_ctx_t * ctx)
31{
32 vnet_disconnect_args_t a = {
33 .handle = ctx->tls_session_handle,
34 .app_index = tls_main.app_index,
35 };
36
37 if (vnet_disconnect_session (&a))
38 clib_warning ("disconnect returned");
39}
40
Florin Coras58d36f02018-03-09 13:05:53 -080041tls_engine_type_t
42tls_get_available_engine (void)
43{
44 int i;
45 for (i = 0; i < vec_len (tls_vfts); i++)
46 {
47 if (tls_vfts[i].ctx_alloc)
48 return i;
49 }
50 return TLS_ENGINE_NONE;
51}
Florin Coras371ca502018-02-21 12:07:41 -080052
Florin Corasd77eee62018-03-07 08:49:27 -080053int
Florin Corasef915342018-09-29 10:23:06 -070054tls_add_vpp_q_rx_evt (stream_session_t * s)
Florin Coras371ca502018-02-21 12:07:41 -080055{
Florin Corasef915342018-09-29 10:23:06 -070056 if (svm_fifo_set_event (s->server_rx_fifo))
57 session_send_io_evt_to_thread (s->server_rx_fifo, FIFO_EVENT_APP_RX);
58 return 0;
59}
60
61int
62tls_add_vpp_q_builtin_rx_evt (stream_session_t * s)
63{
64 if (svm_fifo_set_event (s->server_rx_fifo))
65 session_send_io_evt_to_thread (s->server_rx_fifo, FIFO_EVENT_BUILTIN_RX);
66 return 0;
67}
68
69int
70tls_add_vpp_q_tx_evt (stream_session_t * s)
71{
72 if (svm_fifo_set_event (s->server_tx_fifo))
73 session_send_io_evt_to_thread (s->server_tx_fifo, FIFO_EVENT_APP_TX);
74 return 0;
75}
76
77int
78tls_add_vpp_q_builtin_tx_evt (stream_session_t * s)
79{
80 if (svm_fifo_set_event (s->server_tx_fifo))
81 session_send_io_evt_to_thread_custom (s, s->thread_index,
82 FIFO_EVENT_BUILTIN_TX);
Florin Coras371ca502018-02-21 12:07:41 -080083 return 0;
84}
85
86static inline int
Florin Coras15531972018-08-12 23:50:53 -070087tls_add_app_q_evt (app_worker_t * app, stream_session_t * app_session)
Florin Coras371ca502018-02-21 12:07:41 -080088{
Florin Coras21795132018-09-09 09:40:51 -070089 return app_worker_lock_and_send_event (app, app_session, FIFO_EVENT_APP_RX);
Florin Coras371ca502018-02-21 12:07:41 -080090}
91
92u32
Florin Coras371ca502018-02-21 12:07:41 -080093tls_listener_ctx_alloc (void)
94{
95 tls_main_t *tm = &tls_main;
96 tls_ctx_t *ctx;
97
98 pool_get (tm->listener_ctx_pool, ctx);
Dave Barachb7b92992018-10-17 10:38:51 -040099 clib_memset (ctx, 0, sizeof (*ctx));
Florin Coras371ca502018-02-21 12:07:41 -0800100 return ctx - tm->listener_ctx_pool;
101}
102
103void
Florin Corase3e2f072018-03-04 07:24:30 -0800104tls_listener_ctx_free (tls_ctx_t * ctx)
Florin Coras371ca502018-02-21 12:07:41 -0800105{
Florin Corasc01d5782018-10-17 14:53:11 -0700106 if (CLIB_DEBUG)
107 memset (ctx, 0xfb, sizeof (*ctx));
Florin Corase3e2f072018-03-04 07:24:30 -0800108 pool_put (tls_main.listener_ctx_pool, ctx);
Florin Coras371ca502018-02-21 12:07:41 -0800109}
110
111tls_ctx_t *
112tls_listener_ctx_get (u32 ctx_index)
113{
114 return pool_elt_at_index (tls_main.listener_ctx_pool, ctx_index);
115}
116
117u32
118tls_listener_ctx_index (tls_ctx_t * ctx)
119{
120 return (ctx - tls_main.listener_ctx_pool);
121}
122
123u32
124tls_ctx_half_open_alloc (void)
125{
126 tls_main_t *tm = &tls_main;
127 u8 will_expand = 0;
128 tls_ctx_t *ctx;
129 u32 ctx_index;
130
131 pool_get_aligned_will_expand (tm->half_open_ctx_pool, will_expand, 0);
132 if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
133 {
134 clib_rwlock_writer_lock (&tm->half_open_rwlock);
135 pool_get (tm->half_open_ctx_pool, ctx);
Florin Coraseb97e5f2018-10-15 21:35:42 -0700136 ctx_index = ctx - tm->half_open_ctx_pool;
Florin Coras371ca502018-02-21 12:07:41 -0800137 clib_rwlock_writer_unlock (&tm->half_open_rwlock);
138 }
139 else
140 {
Ping Yue6446a32018-08-28 18:56:27 -0400141 /* reader lock assumption: only main thread will call pool_get */
142 clib_rwlock_reader_lock (&tm->half_open_rwlock);
Florin Coras371ca502018-02-21 12:07:41 -0800143 pool_get (tm->half_open_ctx_pool, ctx);
Florin Coraseb97e5f2018-10-15 21:35:42 -0700144 ctx_index = ctx - tm->half_open_ctx_pool;
Ping Yue6446a32018-08-28 18:56:27 -0400145 clib_rwlock_reader_unlock (&tm->half_open_rwlock);
Florin Coras371ca502018-02-21 12:07:41 -0800146 }
Dave Barachb7b92992018-10-17 10:38:51 -0400147 clib_memset (ctx, 0, sizeof (*ctx));
Florin Coras371ca502018-02-21 12:07:41 -0800148 return ctx_index;
149}
150
151void
152tls_ctx_half_open_free (u32 ho_index)
153{
154 tls_main_t *tm = &tls_main;
155 clib_rwlock_writer_lock (&tm->half_open_rwlock);
156 pool_put_index (tls_main.half_open_ctx_pool, ho_index);
157 clib_rwlock_writer_unlock (&tm->half_open_rwlock);
158}
159
160tls_ctx_t *
161tls_ctx_half_open_get (u32 ctx_index)
162{
163 tls_main_t *tm = &tls_main;
164 clib_rwlock_reader_lock (&tm->half_open_rwlock);
165 return pool_elt_at_index (tm->half_open_ctx_pool, ctx_index);
166}
167
168void
169tls_ctx_half_open_reader_unlock ()
170{
171 clib_rwlock_reader_unlock (&tls_main.half_open_rwlock);
172}
173
174u32
175tls_ctx_half_open_index (tls_ctx_t * ctx)
176{
177 return (ctx - tls_main.half_open_ctx_pool);
178}
179
Florin Coras58d36f02018-03-09 13:05:53 -0800180void
181tls_notify_app_enqueue (tls_ctx_t * ctx, stream_session_t * app_session)
182{
Florin Coras15531972018-08-12 23:50:53 -0700183 app_worker_t *app;
184 app = app_worker_get_if_valid (app_session->app_wrk_index);
Florin Coras5090c572018-03-18 08:22:17 -0700185 if (PREDICT_TRUE (app != 0))
186 tls_add_app_q_evt (app, app_session);
Florin Coras58d36f02018-03-09 13:05:53 -0800187}
188
189int
Florin Coras371ca502018-02-21 12:07:41 -0800190tls_notify_app_accept (tls_ctx_t * ctx)
191{
192 stream_session_t *app_listener, *app_session;
193 segment_manager_t *sm;
Florin Coras15531972018-08-12 23:50:53 -0700194 app_worker_t *app_wrk;
Florin Coras371ca502018-02-21 12:07:41 -0800195 application_t *app;
196 tls_ctx_t *lctx;
197 int rv;
198
Florin Corasef915342018-09-29 10:23:06 -0700199 app_wrk = app_worker_get_if_valid (ctx->parent_app_index);
200 if (!app_wrk)
201 {
202 tls_disconnect (ctx->tls_ctx_handle, vlib_get_thread_index ());
203 return -1;
204 }
205
Florin Coras15531972018-08-12 23:50:53 -0700206 app = application_get (app_wrk->app_index);
Florin Coras371ca502018-02-21 12:07:41 -0800207 lctx = tls_listener_ctx_get (ctx->listener_ctx_index);
Florin Coras371ca502018-02-21 12:07:41 -0800208
Florin Coras58a93e82019-01-14 23:33:46 -0800209 app_session = session_get (ctx->c_s_index, ctx->c_thread_index);
Florin Coras15531972018-08-12 23:50:53 -0700210 app_session->app_wrk_index = ctx->parent_app_index;
Florin Coras58d36f02018-03-09 13:05:53 -0800211 app_session->connection_index = ctx->tls_ctx_handle;
Ping Yua0c29a92018-08-16 19:11:05 -0400212
213 app_listener = listen_session_get_from_handle (lctx->app_session_handle);
Florin Coras371ca502018-02-21 12:07:41 -0800214 app_session->session_type = app_listener->session_type;
215 app_session->listener_index = app_listener->session_index;
Florin Coras15531972018-08-12 23:50:53 -0700216 sm = app_worker_get_listen_segment_manager (app_wrk, app_listener);
Florin Corasab2f6db2018-08-31 14:31:41 -0700217 app_session->t_app_index = tls_main.app_index;
Florin Coras15531972018-08-12 23:50:53 -0700218
Florin Coras371ca502018-02-21 12:07:41 -0800219 if ((rv = session_alloc_fifos (sm, app_session)))
220 {
221 TLS_DBG (1, "failed to allocate fifos");
222 return rv;
223 }
Florin Coras371ca502018-02-21 12:07:41 -0800224 ctx->app_session_handle = session_handle (app_session);
Florin Corasb5e94e32018-09-14 14:46:39 -0700225 session_lookup_add_connection (&ctx->connection,
226 session_handle (app_session));
Florin Coras371ca502018-02-21 12:07:41 -0800227 return app->cb_fns.session_accept_callback (app_session);
228}
229
Florin Coras58d36f02018-03-09 13:05:53 -0800230int
Florin Coras8f89dd02018-03-05 16:53:07 -0800231tls_notify_app_connected (tls_ctx_t * ctx, u8 is_failed)
Florin Coras371ca502018-02-21 12:07:41 -0800232{
233 int (*cb_fn) (u32, u32, stream_session_t *, u8);
234 stream_session_t *app_session;
235 segment_manager_t *sm;
Florin Coras15531972018-08-12 23:50:53 -0700236 app_worker_t *app_wrk;
Florin Coras371ca502018-02-21 12:07:41 -0800237 application_t *app;
238
Florin Corasef915342018-09-29 10:23:06 -0700239 app_wrk = app_worker_get_if_valid (ctx->parent_app_index);
240 if (!app_wrk)
241 {
Florin Corasc01d5782018-10-17 14:53:11 -0700242 tls_disconnect_transport (ctx);
Florin Corasef915342018-09-29 10:23:06 -0700243 return -1;
244 }
245
Florin Coras15531972018-08-12 23:50:53 -0700246 app = application_get (app_wrk->app_index);
Florin Coras371ca502018-02-21 12:07:41 -0800247 cb_fn = app->cb_fns.session_connected_callback;
248
Florin Coras8f89dd02018-03-05 16:53:07 -0800249 if (is_failed)
250 goto failed;
251
Florin Coras15531972018-08-12 23:50:53 -0700252 sm = app_worker_get_connect_segment_manager (app_wrk);
Florin Coras58a93e82019-01-14 23:33:46 -0800253 app_session = session_get (ctx->c_s_index, ctx->c_thread_index);
Florin Coras15531972018-08-12 23:50:53 -0700254 app_session->app_wrk_index = ctx->parent_app_index;
Florin Coras58d36f02018-03-09 13:05:53 -0800255 app_session->connection_index = ctx->tls_ctx_handle;
Florin Coras371ca502018-02-21 12:07:41 -0800256 app_session->session_type =
257 session_type_from_proto_and_ip (TRANSPORT_PROTO_TLS, ctx->tcp_is_ip4);
Florin Corasab2f6db2018-08-31 14:31:41 -0700258 app_session->t_app_index = tls_main.app_index;
Florin Coras15531972018-08-12 23:50:53 -0700259
Florin Coras371ca502018-02-21 12:07:41 -0800260 if (session_alloc_fifos (sm, app_session))
261 goto failed;
262
Florin Corasc01d5782018-10-17 14:53:11 -0700263 app_session->session_state = SESSION_STATE_CONNECTING;
Florin Coras371ca502018-02-21 12:07:41 -0800264 if (cb_fn (ctx->parent_app_index, ctx->parent_app_api_context,
265 app_session, 0 /* not failed */ ))
266 {
267 TLS_DBG (1, "failed to notify app");
Florin Coras58d36f02018-03-09 13:05:53 -0800268 tls_disconnect (ctx->tls_ctx_handle, vlib_get_thread_index ());
Florin Coraseb97e5f2018-10-15 21:35:42 -0700269 return -1;
Florin Coras371ca502018-02-21 12:07:41 -0800270 }
271
Florin Coras58a93e82019-01-14 23:33:46 -0800272 ctx->app_session_handle = session_handle (app_session);
Florin Corasc01d5782018-10-17 14:53:11 -0700273 app_session->session_state = SESSION_STATE_READY;
Florin Corasb5e94e32018-09-14 14:46:39 -0700274 session_lookup_add_connection (&ctx->connection,
275 session_handle (app_session));
276
Florin Coras371ca502018-02-21 12:07:41 -0800277 return 0;
278
279failed:
Florin Coras58d36f02018-03-09 13:05:53 -0800280 tls_disconnect (ctx->tls_ctx_handle, vlib_get_thread_index ());
Florin Coras371ca502018-02-21 12:07:41 -0800281 return cb_fn (ctx->parent_app_index, ctx->parent_app_api_context, 0,
282 1 /* failed */ );
283}
284
Florin Coras58d36f02018-03-09 13:05:53 -0800285static inline void
286tls_ctx_parse_handle (u32 ctx_handle, u32 * ctx_index, u32 * engine_type)
Florin Corasd77eee62018-03-07 08:49:27 -0800287{
Florin Coras58d36f02018-03-09 13:05:53 -0800288 *ctx_index = ctx_handle & TLS_IDX_MASK;
289 *engine_type = ctx_handle >> TLS_ENGINE_TYPE_SHIFT;
290}
291
292static inline tls_engine_type_t
293tls_get_engine_type (tls_engine_type_t preferred)
294{
295 if (!tls_vfts[preferred].ctx_alloc)
296 return tls_get_available_engine ();
297 return preferred;
298}
299
300static inline u32
301tls_ctx_alloc (tls_engine_type_t engine_type)
302{
303 u32 ctx_index;
304 ctx_index = tls_vfts[engine_type].ctx_alloc ();
305 return (((u32) engine_type << TLS_ENGINE_TYPE_SHIFT) | ctx_index);
Florin Corasd77eee62018-03-07 08:49:27 -0800306}
307
308static inline void
309tls_ctx_free (tls_ctx_t * ctx)
310{
311 vec_free (ctx->srv_hostname);
Florin Coras58d36f02018-03-09 13:05:53 -0800312 tls_vfts[ctx->tls_ctx_engine].ctx_free (ctx);
Florin Corasd77eee62018-03-07 08:49:27 -0800313}
314
315static inline tls_ctx_t *
Florin Coras58d36f02018-03-09 13:05:53 -0800316tls_ctx_get (u32 ctx_handle)
Florin Corasd77eee62018-03-07 08:49:27 -0800317{
Florin Coras58d36f02018-03-09 13:05:53 -0800318 u32 ctx_index, engine_type;
319 tls_ctx_parse_handle (ctx_handle, &ctx_index, &engine_type);
320 return tls_vfts[engine_type].ctx_get (ctx_index);
Florin Corasd77eee62018-03-07 08:49:27 -0800321}
322
323static inline tls_ctx_t *
Florin Coras58d36f02018-03-09 13:05:53 -0800324tls_ctx_get_w_thread (u32 ctx_handle, u8 thread_index)
Florin Corasd77eee62018-03-07 08:49:27 -0800325{
Florin Coras58d36f02018-03-09 13:05:53 -0800326 u32 ctx_index, engine_type;
327 tls_ctx_parse_handle (ctx_handle, &ctx_index, &engine_type);
328 return tls_vfts[engine_type].ctx_get_w_thread (ctx_index, thread_index);
Florin Corasd77eee62018-03-07 08:49:27 -0800329}
330
331static inline int
332tls_ctx_init_server (tls_ctx_t * ctx)
333{
Florin Coras58d36f02018-03-09 13:05:53 -0800334 return tls_vfts[ctx->tls_ctx_engine].ctx_init_server (ctx);
Florin Corasd77eee62018-03-07 08:49:27 -0800335}
336
337static inline int
338tls_ctx_init_client (tls_ctx_t * ctx)
339{
Florin Coras58d36f02018-03-09 13:05:53 -0800340 return tls_vfts[ctx->tls_ctx_engine].ctx_init_client (ctx);
Florin Corasd77eee62018-03-07 08:49:27 -0800341}
342
343static inline int
Florin Coras58d36f02018-03-09 13:05:53 -0800344tls_ctx_write (tls_ctx_t * ctx, stream_session_t * app_session)
Florin Corasd77eee62018-03-07 08:49:27 -0800345{
Florin Coras58d36f02018-03-09 13:05:53 -0800346 return tls_vfts[ctx->tls_ctx_engine].ctx_write (ctx, app_session);
Florin Corasd77eee62018-03-07 08:49:27 -0800347}
348
349static inline int
Florin Coras58d36f02018-03-09 13:05:53 -0800350tls_ctx_read (tls_ctx_t * ctx, stream_session_t * tls_session)
Florin Corasd77eee62018-03-07 08:49:27 -0800351{
Florin Coras58d36f02018-03-09 13:05:53 -0800352 return tls_vfts[ctx->tls_ctx_engine].ctx_read (ctx, tls_session);
Florin Corasd77eee62018-03-07 08:49:27 -0800353}
354
355static inline u8
356tls_ctx_handshake_is_over (tls_ctx_t * ctx)
357{
Florin Coras58d36f02018-03-09 13:05:53 -0800358 return tls_vfts[ctx->tls_ctx_engine].ctx_handshake_is_over (ctx);
Florin Coras371ca502018-02-21 12:07:41 -0800359}
360
361void
362tls_session_reset_callback (stream_session_t * s)
363{
364 clib_warning ("called...");
365}
366
367int
Florin Corasfa76a762018-11-29 12:40:10 -0800368tls_add_segment_callback (u32 client_index, u64 segment_handle)
Florin Coras371ca502018-02-21 12:07:41 -0800369{
370 /* No-op for builtin */
371 return 0;
372}
373
374int
Florin Corasfa76a762018-11-29 12:40:10 -0800375tls_del_segment_callback (u32 client_index, u64 segment_handle)
Florin Coras371ca502018-02-21 12:07:41 -0800376{
377 return 0;
378}
379
380void
381tls_session_disconnect_callback (stream_session_t * tls_session)
382{
383 stream_session_t *app_session;
384 tls_ctx_t *ctx;
Florin Coras15531972018-08-12 23:50:53 -0700385 app_worker_t *app_wrk;
Florin Coras371ca502018-02-21 12:07:41 -0800386 application_t *app;
387
388 ctx = tls_ctx_get (tls_session->opaque);
Florin Corasd77eee62018-03-07 08:49:27 -0800389 if (!tls_ctx_handshake_is_over (ctx))
Florin Coras371ca502018-02-21 12:07:41 -0800390 {
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800391 session_close (tls_session);
Florin Coras371ca502018-02-21 12:07:41 -0800392 return;
393 }
394 ctx->is_passive_close = 1;
Florin Coras15531972018-08-12 23:50:53 -0700395 app_wrk = app_worker_get (ctx->parent_app_index);
396 app = application_get (app_wrk->app_index);
Florin Coras371ca502018-02-21 12:07:41 -0800397 app_session = session_get_from_handle (ctx->app_session_handle);
398 app->cb_fns.session_disconnect_callback (app_session);
399}
400
401int
402tls_session_accept_callback (stream_session_t * tls_session)
403{
Florin Coras58a93e82019-01-14 23:33:46 -0800404 stream_session_t *tls_listener, *app_session;
Florin Coras371ca502018-02-21 12:07:41 -0800405 tls_ctx_t *lctx, *ctx;
Florin Coras58d36f02018-03-09 13:05:53 -0800406 u32 ctx_handle;
Florin Coras371ca502018-02-21 12:07:41 -0800407
Florin Coras5c9083d2018-04-13 06:39:07 -0700408 tls_listener = listen_session_get (tls_session->listener_index);
Florin Coras371ca502018-02-21 12:07:41 -0800409 lctx = tls_listener_ctx_get (tls_listener->opaque);
Florin Coras58d36f02018-03-09 13:05:53 -0800410
411 ctx_handle = tls_ctx_alloc (lctx->tls_ctx_engine);
412 ctx = tls_ctx_get (ctx_handle);
Florin Coras371ca502018-02-21 12:07:41 -0800413 memcpy (ctx, lctx, sizeof (*lctx));
414 ctx->c_thread_index = vlib_get_thread_index ();
Florin Coras58d36f02018-03-09 13:05:53 -0800415 ctx->tls_ctx_handle = ctx_handle;
Florin Coras371ca502018-02-21 12:07:41 -0800416 tls_session->session_state = SESSION_STATE_READY;
Florin Coras58d36f02018-03-09 13:05:53 -0800417 tls_session->opaque = ctx_handle;
Florin Coras371ca502018-02-21 12:07:41 -0800418 ctx->tls_session_handle = session_handle (tls_session);
419 ctx->listener_ctx_index = tls_listener->opaque;
420
Florin Coras58a93e82019-01-14 23:33:46 -0800421 /* Preallocate app session. Avoids allocating a session post handshake
422 * on tls_session rx and potentially invalidating the session pool */
423 app_session = session_alloc (ctx->c_thread_index);
424 app_session->session_state = SESSION_STATE_CLOSED;
425 ctx->c_s_index = app_session->session_index;
426
Florin Coras58d36f02018-03-09 13:05:53 -0800427 TLS_DBG (1, "Accept on listener %u new connection [%u]%x",
428 tls_listener->opaque, vlib_get_thread_index (), ctx_handle);
Florin Coras371ca502018-02-21 12:07:41 -0800429
430 return tls_ctx_init_server (ctx);
431}
432
433int
434tls_app_tx_callback (stream_session_t * app_session)
435{
Florin Coras371ca502018-02-21 12:07:41 -0800436 tls_ctx_t *ctx;
Florin Coras58d36f02018-03-09 13:05:53 -0800437 if (PREDICT_FALSE (app_session->session_state == SESSION_STATE_CLOSED))
Florin Coras371ca502018-02-21 12:07:41 -0800438 return 0;
Florin Coras58d36f02018-03-09 13:05:53 -0800439 ctx = tls_ctx_get (app_session->connection_index);
440 tls_ctx_write (ctx, app_session);
Florin Coras371ca502018-02-21 12:07:41 -0800441 return 0;
442}
443
444int
445tls_app_rx_callback (stream_session_t * tls_session)
446{
Florin Coras371ca502018-02-21 12:07:41 -0800447 tls_ctx_t *ctx;
Florin Coras371ca502018-02-21 12:07:41 -0800448
449 ctx = tls_ctx_get (tls_session->opaque);
Florin Coras58d36f02018-03-09 13:05:53 -0800450 tls_ctx_read (ctx, tls_session);
451 return 0;
Florin Coras371ca502018-02-21 12:07:41 -0800452}
453
454int
455tls_session_connected_callback (u32 tls_app_index, u32 ho_ctx_index,
456 stream_session_t * tls_session, u8 is_fail)
457{
Florin Coras58a93e82019-01-14 23:33:46 -0800458 stream_session_t *app_session;
Florin Coras371ca502018-02-21 12:07:41 -0800459 tls_ctx_t *ho_ctx, *ctx;
Florin Coras58d36f02018-03-09 13:05:53 -0800460 u32 ctx_handle;
Florin Coras371ca502018-02-21 12:07:41 -0800461
462 ho_ctx = tls_ctx_half_open_get (ho_ctx_index);
Florin Coras371ca502018-02-21 12:07:41 -0800463
464 if (is_fail)
Florin Corasdcde9272018-03-02 09:23:42 -0800465 {
Florin Corasef915342018-09-29 10:23:06 -0700466 int (*cb_fn) (u32, u32, stream_session_t *, u8), rv = 0;
Florin Coras57791ad2018-08-27 10:07:40 -0700467 u32 wrk_index, api_context;
468 app_worker_t *app_wrk;
469 application_t *app;
470
471 wrk_index = ho_ctx->parent_app_index;
Florin Corasef915342018-09-29 10:23:06 -0700472 app_wrk = app_worker_get_if_valid (ho_ctx->parent_app_index);
473 if (app_wrk)
474 {
475 api_context = ho_ctx->c_s_index;
476 app = application_get (app_wrk->app_index);
477 cb_fn = app->cb_fns.session_connected_callback;
478 rv = cb_fn (wrk_index, api_context, 0, 1 /* failed */ );
479 }
Florin Corasdcde9272018-03-02 09:23:42 -0800480 tls_ctx_half_open_reader_unlock ();
481 tls_ctx_half_open_free (ho_ctx_index);
Florin Corasef915342018-09-29 10:23:06 -0700482 return rv;
Florin Corasdcde9272018-03-02 09:23:42 -0800483 }
Florin Coras371ca502018-02-21 12:07:41 -0800484
Florin Coras58d36f02018-03-09 13:05:53 -0800485 ctx_handle = tls_ctx_alloc (ho_ctx->tls_ctx_engine);
486 ctx = tls_ctx_get (ctx_handle);
Dave Barach178cf492018-11-13 16:34:13 -0500487 clib_memcpy_fast (ctx, ho_ctx, sizeof (*ctx));
Florin Coras371ca502018-02-21 12:07:41 -0800488 tls_ctx_half_open_reader_unlock ();
489 tls_ctx_half_open_free (ho_ctx_index);
490
Florin Corasdcde9272018-03-02 09:23:42 -0800491 ctx->c_thread_index = vlib_get_thread_index ();
Florin Coras58d36f02018-03-09 13:05:53 -0800492 ctx->tls_ctx_handle = ctx_handle;
Florin Corasdcde9272018-03-02 09:23:42 -0800493
Florin Coras58d36f02018-03-09 13:05:53 -0800494 TLS_DBG (1, "TCP connect for %u returned %u. New connection [%u]%x",
Florin Coras371ca502018-02-21 12:07:41 -0800495 ho_ctx_index, is_fail, vlib_get_thread_index (),
Florin Coras58d36f02018-03-09 13:05:53 -0800496 (ctx) ? ctx_handle : ~0);
Florin Coras371ca502018-02-21 12:07:41 -0800497
498 ctx->tls_session_handle = session_handle (tls_session);
Florin Coras58d36f02018-03-09 13:05:53 -0800499 tls_session->opaque = ctx_handle;
Florin Coras371ca502018-02-21 12:07:41 -0800500 tls_session->session_state = SESSION_STATE_READY;
501
Florin Coras58a93e82019-01-14 23:33:46 -0800502 /* Preallocate app session. Avoids allocating a session post handshake
503 * on tls_session rx and potentially invalidating the session pool */
504 app_session = session_alloc (ctx->c_thread_index);
505 app_session->session_state = SESSION_STATE_CLOSED;
506 ctx->c_s_index = app_session->session_index;
507
Florin Coras371ca502018-02-21 12:07:41 -0800508 return tls_ctx_init_client (ctx);
Florin Coras371ca502018-02-21 12:07:41 -0800509}
510
511/* *INDENT-OFF* */
512static session_cb_vft_t tls_app_cb_vft = {
513 .session_accept_callback = tls_session_accept_callback,
514 .session_disconnect_callback = tls_session_disconnect_callback,
515 .session_connected_callback = tls_session_connected_callback,
516 .session_reset_callback = tls_session_reset_callback,
517 .add_segment_callback = tls_add_segment_callback,
518 .del_segment_callback = tls_del_segment_callback,
519 .builtin_app_rx_callback = tls_app_rx_callback,
520 .builtin_app_tx_callback = tls_app_tx_callback,
521};
522/* *INDENT-ON* */
523
524int
Florin Coras5665ced2018-10-25 18:03:45 -0700525tls_connect (transport_endpoint_cfg_t * tep)
Florin Coras371ca502018-02-21 12:07:41 -0800526{
Florin Coras15531972018-08-12 23:50:53 -0700527 vnet_connect_args_t _cargs = { {}, }, *cargs = &_cargs;
Florin Coras5665ced2018-10-25 18:03:45 -0700528 session_endpoint_cfg_t *sep;
Florin Coras58d36f02018-03-09 13:05:53 -0800529 tls_engine_type_t engine_type;
Florin Coras371ca502018-02-21 12:07:41 -0800530 tls_main_t *tm = &tls_main;
Florin Coras15531972018-08-12 23:50:53 -0700531 app_worker_t *app_wrk;
532 clib_error_t *error;
Florin Coras371ca502018-02-21 12:07:41 -0800533 application_t *app;
534 tls_ctx_t *ctx;
535 u32 ctx_index;
Florin Coras371ca502018-02-21 12:07:41 -0800536
Florin Coras5665ced2018-10-25 18:03:45 -0700537 sep = (session_endpoint_cfg_t *) tep;
Florin Coras15531972018-08-12 23:50:53 -0700538 app_wrk = app_worker_get (sep->app_wrk_index);
539 app = application_get (app_wrk->app_index);
Florin Coras58d36f02018-03-09 13:05:53 -0800540 engine_type = tls_get_engine_type (app->tls_engine);
541 if (engine_type == TLS_ENGINE_NONE)
542 {
543 clib_warning ("No tls engine_type available");
544 return -1;
545 }
Florin Coras371ca502018-02-21 12:07:41 -0800546
547 ctx_index = tls_ctx_half_open_alloc ();
548 ctx = tls_ctx_half_open_get (ctx_index);
Florin Coras15531972018-08-12 23:50:53 -0700549 ctx->parent_app_index = sep->app_wrk_index;
Florin Coras371ca502018-02-21 12:07:41 -0800550 ctx->parent_app_api_context = sep->opaque;
551 ctx->tcp_is_ip4 = sep->is_ip4;
Florin Coras8f89dd02018-03-05 16:53:07 -0800552 if (sep->hostname)
553 {
554 ctx->srv_hostname = format (0, "%v", sep->hostname);
555 vec_terminate_c_string (ctx->srv_hostname);
556 }
Florin Coras371ca502018-02-21 12:07:41 -0800557 tls_ctx_half_open_reader_unlock ();
558
Florin Coras15531972018-08-12 23:50:53 -0700559 app_worker_alloc_connects_segment_manager (app_wrk);
Florin Coras58d36f02018-03-09 13:05:53 -0800560 ctx->tls_ctx_engine = engine_type;
Florin Coras371ca502018-02-21 12:07:41 -0800561
Dave Barach178cf492018-11-13 16:34:13 -0500562 clib_memcpy_fast (&cargs->sep, sep, sizeof (session_endpoint_t));
Florin Coras15531972018-08-12 23:50:53 -0700563 cargs->sep.transport_proto = TRANSPORT_PROTO_TCP;
564 cargs->app_index = tm->app_index;
565 cargs->api_context = ctx_index;
566 if ((error = vnet_connect (cargs)))
567 return clib_error_get_code (error);
Florin Coras371ca502018-02-21 12:07:41 -0800568
Florin Coras58d36f02018-03-09 13:05:53 -0800569 TLS_DBG (1, "New connect request %u engine %d", ctx_index, engine_type);
Florin Coras371ca502018-02-21 12:07:41 -0800570 return 0;
571}
572
573void
Florin Coras58d36f02018-03-09 13:05:53 -0800574tls_disconnect (u32 ctx_handle, u32 thread_index)
Florin Coras371ca502018-02-21 12:07:41 -0800575{
Florin Coras371ca502018-02-21 12:07:41 -0800576 tls_ctx_t *ctx;
577
Florin Coras58d36f02018-03-09 13:05:53 -0800578 TLS_DBG (1, "Disconnecting %x", ctx_handle);
Florin Coras371ca502018-02-21 12:07:41 -0800579
Florin Coras58d36f02018-03-09 13:05:53 -0800580 ctx = tls_ctx_get (ctx_handle);
Florin Corasc01d5782018-10-17 14:53:11 -0700581 tls_disconnect_transport (ctx);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800582 session_transport_delete_notify (&ctx->connection);
Florin Coras371ca502018-02-21 12:07:41 -0800583 tls_ctx_free (ctx);
584}
585
586u32
587tls_start_listen (u32 app_listener_index, transport_endpoint_t * tep)
588{
Florin Coras74cac882018-09-07 09:13:15 -0700589 vnet_bind_args_t _bargs, *args = &_bargs;
Florin Corasab2f6db2018-08-31 14:31:41 -0700590 app_worker_t *app_wrk;
Florin Coras371ca502018-02-21 12:07:41 -0800591 tls_main_t *tm = &tls_main;
Florin Coras371ca502018-02-21 12:07:41 -0800592 session_handle_t tls_handle;
Florin Coras5665ced2018-10-25 18:03:45 -0700593 session_endpoint_cfg_t *sep;
Florin Coras371ca502018-02-21 12:07:41 -0800594 stream_session_t *tls_listener;
Florin Coras371ca502018-02-21 12:07:41 -0800595 stream_session_t *app_listener;
Florin Coras58d36f02018-03-09 13:05:53 -0800596 tls_engine_type_t engine_type;
Florin Coras74cac882018-09-07 09:13:15 -0700597 application_t *app;
Florin Coras15531972018-08-12 23:50:53 -0700598 tls_ctx_t *lctx;
599 u32 lctx_index;
Florin Coras371ca502018-02-21 12:07:41 -0800600
Florin Coras5665ced2018-10-25 18:03:45 -0700601 sep = (session_endpoint_cfg_t *) tep;
Florin Coras15531972018-08-12 23:50:53 -0700602 app_wrk = app_worker_get (sep->app_wrk_index);
603 app = application_get (app_wrk->app_index);
Florin Coras58d36f02018-03-09 13:05:53 -0800604 engine_type = tls_get_engine_type (app->tls_engine);
605 if (engine_type == TLS_ENGINE_NONE)
606 {
607 clib_warning ("No tls engine_type available");
608 return -1;
609 }
610
Florin Coras371ca502018-02-21 12:07:41 -0800611 sep->transport_proto = TRANSPORT_PROTO_TCP;
Dave Barachb7b92992018-10-17 10:38:51 -0400612 clib_memset (args, 0, sizeof (*args));
Florin Coras74cac882018-09-07 09:13:15 -0700613 args->app_index = tm->app_index;
614 args->sep_ext = *sep;
615 if (vnet_bind (args))
616 return -1;
Florin Coras371ca502018-02-21 12:07:41 -0800617
Florin Coras74cac882018-09-07 09:13:15 -0700618 tls_handle = args->handle;
619 lctx_index = tls_listener_ctx_alloc ();
Florin Coras371ca502018-02-21 12:07:41 -0800620 tls_listener = listen_session_get_from_handle (tls_handle);
621 tls_listener->opaque = lctx_index;
Florin Coras58d36f02018-03-09 13:05:53 -0800622
Florin Coras5c9083d2018-04-13 06:39:07 -0700623 app_listener = listen_session_get (app_listener_index);
Florin Coras58d36f02018-03-09 13:05:53 -0800624
625 lctx = tls_listener_ctx_get (lctx_index);
Florin Coras15531972018-08-12 23:50:53 -0700626 lctx->parent_app_index = sep->app_wrk_index;
Florin Coras371ca502018-02-21 12:07:41 -0800627 lctx->tls_session_handle = tls_handle;
628 lctx->app_session_handle = listen_session_get_handle (app_listener);
629 lctx->tcp_is_ip4 = sep->is_ip4;
Florin Coras58d36f02018-03-09 13:05:53 -0800630 lctx->tls_ctx_engine = engine_type;
631
Ping Yudecda5b2018-08-13 06:20:00 -0400632 tls_vfts[engine_type].ctx_start_listen (lctx);
633
Florin Coras58d36f02018-03-09 13:05:53 -0800634 TLS_DBG (1, "Started listening %d, engine type %d", lctx_index,
635 engine_type);
Florin Coras371ca502018-02-21 12:07:41 -0800636 return lctx_index;
637}
638
639u32
Florin Corase3e2f072018-03-04 07:24:30 -0800640tls_stop_listen (u32 lctx_index)
Florin Coras371ca502018-02-21 12:07:41 -0800641{
Ping Yudecda5b2018-08-13 06:20:00 -0400642 tls_engine_type_t engine_type;
Florin Corasb5e94e32018-09-14 14:46:39 -0700643 tls_ctx_t *lctx;
Ping Yudecda5b2018-08-13 06:20:00 -0400644
Florin Corase3e2f072018-03-04 07:24:30 -0800645 lctx = tls_listener_ctx_get (lctx_index);
Florin Corasb5e94e32018-09-14 14:46:39 -0700646 vnet_unbind_args_t a = {
647 .handle = lctx->tls_session_handle,
648 .app_index = tls_main.app_index,
649 .wrk_map_index = 0 /* default wrk */
650 };
651 if (vnet_unbind (&a))
652 clib_warning ("unbind returned");
653
Ping Yudecda5b2018-08-13 06:20:00 -0400654 engine_type = lctx->tls_ctx_engine;
655 tls_vfts[engine_type].ctx_stop_listen (lctx);
656
Florin Corase3e2f072018-03-04 07:24:30 -0800657 tls_listener_ctx_free (lctx);
Florin Coras371ca502018-02-21 12:07:41 -0800658 return 0;
659}
660
661transport_connection_t *
Florin Corase3e2f072018-03-04 07:24:30 -0800662tls_connection_get (u32 ctx_index, u32 thread_index)
663{
664 tls_ctx_t *ctx;
665 ctx = tls_ctx_get_w_thread (ctx_index, thread_index);
666 return &ctx->connection;
667}
668
669transport_connection_t *
Florin Coras371ca502018-02-21 12:07:41 -0800670tls_listener_get (u32 listener_index)
671{
672 tls_ctx_t *ctx;
673 ctx = tls_listener_ctx_get (listener_index);
674 return &ctx->connection;
675}
676
677u8 *
678format_tls_ctx (u8 * s, va_list * args)
679{
680 tls_ctx_t *ctx = va_arg (*args, tls_ctx_t *);
681 u32 thread_index = va_arg (*args, u32);
682 u32 child_si, child_ti;
683
684 session_parse_handle (ctx->tls_session_handle, &child_si, &child_ti);
685 if (thread_index != child_ti)
686 clib_warning ("app and tls sessions are on different threads!");
687
Florin Corase3e2f072018-03-04 07:24:30 -0800688 s = format (s, "[#%d][TLS] app %u child %u", child_ti,
689 ctx->parent_app_index, child_si);
Florin Coras371ca502018-02-21 12:07:41 -0800690 return s;
691}
692
693u8 *
694format_tls_connection (u8 * s, va_list * args)
695{
696 u32 ctx_index = va_arg (*args, u32);
697 u32 thread_index = va_arg (*args, u32);
698 u32 verbose = va_arg (*args, u32);
699 tls_ctx_t *ctx;
700
701 ctx = tls_ctx_get_w_thread (ctx_index, thread_index);
702 if (!ctx)
703 return s;
704
705 s = format (s, "%-50U", format_tls_ctx, ctx, thread_index);
706 if (verbose)
707 {
Florin Corasef915342018-09-29 10:23:06 -0700708 stream_session_t *ts;
709 ts = session_get_from_handle (ctx->app_session_handle);
710 s = format (s, "state: %-7u", ts->session_state);
Florin Coras371ca502018-02-21 12:07:41 -0800711 if (verbose > 1)
712 s = format (s, "\n");
713 }
714 return s;
715}
716
717u8 *
718format_tls_listener (u8 * s, va_list * args)
719{
720 u32 tc_index = va_arg (*args, u32);
721 tls_ctx_t *ctx = tls_listener_ctx_get (tc_index);
Florin Coras5c9083d2018-04-13 06:39:07 -0700722 u32 listener_index, thread_index;
Florin Coras371ca502018-02-21 12:07:41 -0800723
Florin Coras5c9083d2018-04-13 06:39:07 -0700724 listen_session_parse_handle (ctx->tls_session_handle, &listener_index,
725 &thread_index);
Florin Coras371ca502018-02-21 12:07:41 -0800726 return format (s, "[TLS] listener app %u child %u", ctx->parent_app_index,
727 listener_index);
728}
729
730u8 *
731format_tls_half_open (u8 * s, va_list * args)
732{
733 u32 tc_index = va_arg (*args, u32);
734 tls_ctx_t *ctx = tls_ctx_half_open_get (tc_index);
735 s = format (s, "[TLS] half-open app %u", ctx->parent_app_index);
736 tls_ctx_half_open_reader_unlock ();
737 return s;
738}
739
740/* *INDENT-OFF* */
741const static transport_proto_vft_t tls_proto = {
742 .open = tls_connect,
743 .close = tls_disconnect,
744 .bind = tls_start_listen,
Florin Corase3e2f072018-03-04 07:24:30 -0800745 .get_connection = tls_connection_get,
Florin Coras371ca502018-02-21 12:07:41 -0800746 .get_listener = tls_listener_get,
747 .unbind = tls_stop_listen,
748 .tx_type = TRANSPORT_TX_INTERNAL,
749 .service_type = TRANSPORT_SERVICE_APP,
750 .format_connection = format_tls_connection,
751 .format_half_open = format_tls_half_open,
752 .format_listener = format_tls_listener,
753};
754/* *INDENT-ON* */
755
Florin Corasd77eee62018-03-07 08:49:27 -0800756void
757tls_register_engine (const tls_engine_vft_t * vft, tls_engine_type_t type)
Florin Coras371ca502018-02-21 12:07:41 -0800758{
Florin Corasd77eee62018-03-07 08:49:27 -0800759 vec_validate (tls_vfts, type);
760 tls_vfts[type] = *vft;
Florin Coras371ca502018-02-21 12:07:41 -0800761}
762
Dave Barachcc5677b2018-03-28 19:08:45 -0400763static clib_error_t *
Florin Coras371ca502018-02-21 12:07:41 -0800764tls_init (vlib_main_t * vm)
765{
Florin Coras58d36f02018-03-09 13:05:53 -0800766 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras371ca502018-02-21 12:07:41 -0800767 vnet_app_attach_args_t _a, *a = &_a;
768 u64 options[APP_OPTIONS_N_OPTIONS];
769 u32 segment_size = 512 << 20;
770 tls_main_t *tm = &tls_main;
Florin Corasd77eee62018-03-07 08:49:27 -0800771 u32 fifo_size = 64 << 10;
Florin Coras58d36f02018-03-09 13:05:53 -0800772 u32 num_threads;
773
774 num_threads = 1 /* main thread */ + vtm->n_threads;
Florin Coras371ca502018-02-21 12:07:41 -0800775
Dave Barachb7b92992018-10-17 10:38:51 -0400776 clib_memset (a, 0, sizeof (*a));
777 clib_memset (options, 0, sizeof (options));
Florin Coras371ca502018-02-21 12:07:41 -0800778
779 a->session_cb_vft = &tls_app_cb_vft;
Florin Coras0bee9ce2018-03-22 21:24:31 -0700780 a->api_client_index = APP_INVALID_INDEX;
Florin Coras371ca502018-02-21 12:07:41 -0800781 a->options = options;
Florin Coras0bee9ce2018-03-22 21:24:31 -0700782 a->name = format (0, "tls");
Florin Coras371ca502018-02-21 12:07:41 -0800783 a->options[APP_OPTIONS_SEGMENT_SIZE] = segment_size;
784 a->options[APP_OPTIONS_RX_FIFO_SIZE] = fifo_size;
785 a->options[APP_OPTIONS_TX_FIFO_SIZE] = fifo_size;
786 a->options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN;
787 a->options[APP_OPTIONS_FLAGS] |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
Florin Corasda3eec12018-09-07 13:29:17 -0700788 a->options[APP_OPTIONS_FLAGS] |= APP_OPTIONS_FLAGS_IS_TRANSPORT_APP;
Florin Coras371ca502018-02-21 12:07:41 -0800789
790 if (vnet_application_attach (a))
791 {
792 clib_warning ("failed to attach tls app");
793 return clib_error_return (0, "failed to attach tls app");
794 }
795
Florin Corasd77eee62018-03-07 08:49:27 -0800796 if (!tm->ca_cert_path)
797 tm->ca_cert_path = TLS_CA_CERT_PATH;
798
Florin Coras371ca502018-02-21 12:07:41 -0800799 tm->app_index = a->app_index;
Florin Coras371ca502018-02-21 12:07:41 -0800800 clib_rwlock_init (&tm->half_open_rwlock);
801
Florin Coras58d36f02018-03-09 13:05:53 -0800802 vec_validate (tm->rx_bufs, num_threads - 1);
803 vec_validate (tm->tx_bufs, num_threads - 1);
804
Florin Coras371ca502018-02-21 12:07:41 -0800805 transport_register_protocol (TRANSPORT_PROTO_TLS, &tls_proto,
806 FIB_PROTOCOL_IP4, ~0);
807 transport_register_protocol (TRANSPORT_PROTO_TLS, &tls_proto,
808 FIB_PROTOCOL_IP6, ~0);
Florin Coras0bee9ce2018-03-22 21:24:31 -0700809 vec_free (a->name);
Florin Coras371ca502018-02-21 12:07:41 -0800810 return 0;
811}
812
813VLIB_INIT_FUNCTION (tls_init);
814
Florin Coras8f89dd02018-03-05 16:53:07 -0800815static clib_error_t *
816tls_config_fn (vlib_main_t * vm, unformat_input_t * input)
817{
818 tls_main_t *tm = &tls_main;
819 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
820 {
821 if (unformat (input, "use-test-cert-in-ca"))
822 tm->use_test_cert_in_ca = 1;
823 else if (unformat (input, "ca-cert-path %s", &tm->ca_cert_path))
824 ;
825 else
826 return clib_error_return (0, "unknown input `%U'",
827 format_unformat_error, input);
828 }
829 return 0;
830}
831
832VLIB_EARLY_CONFIG_FUNCTION (tls_config_fn, "tls");
Florin Corasd77eee62018-03-07 08:49:27 -0800833
834tls_main_t *
835vnet_tls_get_main (void)
836{
837 return &tls_main;
838}
839
Florin Coras371ca502018-02-21 12:07:41 -0800840/*
841 * fd.io coding-style-patch-verification: ON
842 *
843 * Local Variables:
844 * eval: (c-set-style "gnu")
845 * End:
846 */