tls http: run config fns after init ones
[vpp.git] / src / vnet / tls / tls.c
1 /*
2  * Copyright (c) 2018-2019 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>
18 #include <vnet/tls/tls.h>
19
20 static tls_main_t tls_main;
21 static tls_engine_vft_t *tls_vfts;
22
23 #define TLS_INVALID_HANDLE      ~0
24 #define TLS_IDX_MASK            0x00FFFFFF
25 #define TLS_ENGINE_TYPE_SHIFT   28
26
27 void tls_disconnect (u32 ctx_handle, u32 thread_index);
28
29 void
30 tls_disconnect_transport (tls_ctx_t * ctx)
31 {
32   vnet_disconnect_args_t a = {
33     .handle = ctx->tls_session_handle,
34     .app_index = tls_main.app_index,
35   };
36
37   if (vnet_disconnect_session (&a))
38     clib_warning ("disconnect returned");
39 }
40
41 crypto_engine_type_t
42 tls_get_available_engine (void)
43 {
44   int i;
45   for (i = 0; i < vec_len (tls_vfts); i++)
46     {
47       if (tls_vfts[i].ctx_alloc)
48         return i;
49     }
50   return CRYPTO_ENGINE_NONE;
51 }
52
53 int
54 tls_add_vpp_q_rx_evt (session_t * s)
55 {
56   if (svm_fifo_set_event (s->rx_fifo))
57     session_send_io_evt_to_thread (s->rx_fifo, SESSION_IO_EVT_RX);
58   return 0;
59 }
60
61 int
62 tls_add_vpp_q_builtin_rx_evt (session_t * s)
63 {
64   if (svm_fifo_set_event (s->rx_fifo))
65     session_send_io_evt_to_thread (s->rx_fifo, SESSION_IO_EVT_BUILTIN_RX);
66   return 0;
67 }
68
69 int
70 tls_add_vpp_q_tx_evt (session_t * s)
71 {
72   if (svm_fifo_set_event (s->tx_fifo))
73     session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
74   return 0;
75 }
76
77 static inline int
78 tls_add_app_q_evt (app_worker_t * app, session_t * app_session)
79 {
80   return app_worker_lock_and_send_event (app, app_session, SESSION_IO_EVT_RX);
81 }
82
83 u32
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);
90   clib_memset (ctx, 0, sizeof (*ctx));
91   return ctx - tm->listener_ctx_pool;
92 }
93
94 void
95 tls_listener_ctx_free (tls_ctx_t * ctx)
96 {
97   if (CLIB_DEBUG)
98     memset (ctx, 0xfb, sizeof (*ctx));
99   pool_put (tls_main.listener_ctx_pool, ctx);
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;
118   u8 will_expand = pool_get_will_expand (tm->half_open_ctx_pool);
119   tls_ctx_t *ctx;
120   u32 ctx_index;
121
122   if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
123     {
124       clib_rwlock_writer_lock (&tm->half_open_rwlock);
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;
128       clib_rwlock_writer_unlock (&tm->half_open_rwlock);
129     }
130   else
131     {
132       /* reader lock assumption: only main thread will call pool_get */
133       clib_rwlock_reader_lock (&tm->half_open_rwlock);
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;
137       clib_rwlock_reader_unlock (&tm->half_open_rwlock);
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
171 void
172 tls_notify_app_enqueue (tls_ctx_t * ctx, session_t * app_session)
173 {
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);
178 }
179
180 int
181 tls_notify_app_accept (tls_ctx_t * ctx)
182 {
183   session_t *app_listener, *app_session;
184   app_worker_t *app_wrk;
185   tls_ctx_t *lctx;
186   int rv;
187
188   lctx = tls_listener_ctx_get (ctx->listener_ctx_index);
189   app_listener = listen_session_get_from_handle (lctx->app_session_handle);
190
191   app_session = session_get (ctx->c_s_index, ctx->c_thread_index);
192   app_session->app_wrk_index = ctx->parent_app_wrk_index;
193   app_session->connection_index = ctx->tls_ctx_handle;
194   app_session->session_type = app_listener->session_type;
195   app_session->listener_handle = listen_session_get_handle (app_listener);
196   app_session->session_state = SESSION_STATE_ACCEPTING;
197
198   if ((rv = app_worker_init_accepted (app_session)))
199     {
200       TLS_DBG (1, "failed to allocate fifos");
201       session_free (app_session);
202       return rv;
203     }
204   ctx->app_session_handle = session_handle (app_session);
205   ctx->parent_app_wrk_index = app_session->app_wrk_index;
206   app_wrk = app_worker_get (app_session->app_wrk_index);
207   return app_worker_accept_notify (app_wrk, app_session);
208 }
209
210 int
211 tls_notify_app_connected (tls_ctx_t * ctx, session_error_t err)
212 {
213   session_t *app_session;
214   app_worker_t *app_wrk;
215
216   app_wrk = app_worker_get_if_valid (ctx->parent_app_wrk_index);
217   if (!app_wrk)
218     {
219       tls_disconnect_transport (ctx);
220       return -1;
221     }
222
223   if (err)
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));
228       ctx->no_app_session = 1;
229       goto send_reply;
230     }
231
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;
237       /* Cleanup half-open session as we don't get notification from udp */
238       session_half_open_delete_notify (&ctx->connection);
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
252   app_session->app_wrk_index = ctx->parent_app_wrk_index;
253
254   if ((err = app_worker_init_connected (app_wrk, app_session)))
255     goto failed;
256
257   app_session->session_state = SESSION_STATE_READY;
258   if (app_worker_connect_notify (app_wrk, app_session,
259                                  SESSION_E_NONE, ctx->parent_app_api_context))
260     {
261       TLS_DBG (1, "failed to notify app");
262       app_session->session_state = SESSION_STATE_CONNECTING;
263       tls_disconnect (ctx->tls_ctx_handle, vlib_get_thread_index ());
264       return -1;
265     }
266
267   ctx->app_session_handle = session_handle (app_session);
268
269   return 0;
270
271 failed:
272   ctx->no_app_session = 1;
273   tls_disconnect (ctx->tls_ctx_handle, vlib_get_thread_index ());
274 send_reply:
275   return app_worker_connect_notify (app_wrk, 0, err,
276                                     ctx->parent_app_api_context);
277 }
278
279 static inline void
280 tls_ctx_parse_handle (u32 ctx_handle, u32 * ctx_index, u32 * engine_type)
281 {
282   *ctx_index = ctx_handle & TLS_IDX_MASK;
283   *engine_type = ctx_handle >> TLS_ENGINE_TYPE_SHIFT;
284 }
285
286 static inline crypto_engine_type_t
287 tls_get_engine_type (crypto_engine_type_t requested,
288                      crypto_engine_type_t preferred)
289 {
290   if (requested != CRYPTO_ENGINE_NONE)
291     {
292       if (tls_vfts[requested].ctx_alloc)
293         return requested;
294       return CRYPTO_ENGINE_NONE;
295     }
296   if (!tls_vfts[preferred].ctx_alloc)
297     return tls_get_available_engine ();
298   return preferred;
299 }
300
301 static inline u32
302 tls_ctx_alloc (crypto_engine_type_t engine_type)
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);
307 }
308
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
331 static inline tls_ctx_t *
332 tls_ctx_get (u32 ctx_handle)
333 {
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);
337 }
338
339 static inline tls_ctx_t *
340 tls_ctx_get_w_thread (u32 ctx_handle, u8 thread_index)
341 {
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);
345 }
346
347 static inline int
348 tls_ctx_init_server (tls_ctx_t * ctx)
349 {
350   return tls_vfts[ctx->tls_ctx_engine].ctx_init_server (ctx);
351 }
352
353 static inline int
354 tls_ctx_init_client (tls_ctx_t * ctx)
355 {
356   return tls_vfts[ctx->tls_ctx_engine].ctx_init_client (ctx);
357 }
358
359 static inline int
360 tls_ctx_write (tls_ctx_t * ctx, session_t * app_session,
361                transport_send_params_t * sp)
362 {
363   u32 n_wrote;
364
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);
367   sp->bytes_dequeued = n_wrote;
368   return n_wrote > 0 ? clib_max (n_wrote / TRANSPORT_PACER_MIN_MSS, 1) : 0;
369 }
370
371 static inline int
372 tls_ctx_read (tls_ctx_t * ctx, session_t * tls_session)
373 {
374   return tls_vfts[ctx->tls_ctx_engine].ctx_read (ctx, tls_session);
375 }
376
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 {
392   tls_vfts[ctx->tls_ctx_engine].ctx_free (ctx);
393 }
394
395 u8
396 tls_ctx_handshake_is_over (tls_ctx_t * ctx)
397 {
398   return tls_vfts[ctx->tls_ctx_engine].ctx_handshake_is_over (ctx);
399 }
400
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
407 void
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
418 tls_session_reset_callback (session_t * s)
419 {
420   tls_ctx_t *ctx;
421   transport_connection_t *tc;
422   session_t *app_session;
423
424   ctx = tls_ctx_get (s->opaque);
425   ctx->is_passive_close = 1;
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);
431       tls_disconnect_transport (ctx);
432     }
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     }
441 }
442
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
457 int
458 tls_add_segment_callback (u32 client_index, u64 segment_handle)
459 {
460   /* No-op for builtin */
461   return 0;
462 }
463
464 int
465 tls_del_segment_callback (u32 client_index, u64 segment_handle)
466 {
467   return 0;
468 }
469
470 void
471 tls_session_disconnect_callback (session_t * tls_session)
472 {
473   tls_ctx_t *ctx;
474
475   TLS_DBG (1, "TCP disconnecting handle %x session %u", tls_session->opaque,
476            tls_session->session_index);
477
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);
482   ctx->is_passive_close = 1;
483   tls_ctx_transport_close (ctx);
484 }
485
486 int
487 tls_session_accept_callback (session_t * tls_session)
488 {
489   session_t *tls_listener, *app_session;
490   tls_ctx_t *lctx, *ctx;
491   u32 ctx_handle;
492
493   tls_listener =
494     listen_session_get_from_handle (tls_session->listener_handle);
495   lctx = tls_listener_ctx_get (tls_listener->opaque);
496
497   ctx_handle = tls_ctx_alloc (lctx->tls_ctx_engine);
498   ctx = tls_ctx_get (ctx_handle);
499   memcpy (ctx, lctx, sizeof (*lctx));
500   ctx->c_thread_index = vlib_get_thread_index ();
501   ctx->tls_ctx_handle = ctx_handle;
502   tls_session->session_state = SESSION_STATE_READY;
503   tls_session->opaque = ctx_handle;
504   ctx->tls_session_handle = session_handle (tls_session);
505   ctx->listener_ctx_index = tls_listener->opaque;
506   ctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
507   ctx->ckpair_index = lctx->ckpair_index;
508
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);
512   app_session->session_state = SESSION_STATE_CREATED;
513   ctx->c_s_index = app_session->session_index;
514
515   TLS_DBG (1, "Accept on listener %u new connection [%u]%x",
516            tls_listener->opaque, vlib_get_thread_index (), ctx_handle);
517
518   return tls_ctx_init_server (ctx);
519 }
520
521 int
522 tls_app_rx_callback (session_t * tls_session)
523 {
524   tls_ctx_t *ctx;
525
526   /* DTLS session migrating, wait for next notification */
527   if (PREDICT_FALSE (tls_session->flags & SESSION_F_IS_MIGRATING))
528     return 0;
529
530   ctx = tls_ctx_get (tls_session->opaque);
531   if (PREDICT_FALSE (ctx->no_app_session))
532     {
533       TLS_DBG (1, "Local App closed");
534       return 0;
535     }
536   tls_ctx_read (ctx, tls_session);
537   return 0;
538 }
539
540 int
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
552 tls_session_connected_cb (u32 tls_app_index, u32 ho_ctx_index,
553                           session_t *tls_session, session_error_t err)
554 {
555   session_t *app_session;
556   tls_ctx_t *ho_ctx, *ctx;
557   session_type_t st;
558   u32 ctx_handle;
559
560   ho_ctx = tls_ctx_half_open_get (ho_ctx_index);
561
562   ctx_handle = tls_ctx_alloc (ho_ctx->tls_ctx_engine);
563   ctx = tls_ctx_get (ctx_handle);
564   clib_memcpy_fast (ctx, ho_ctx, sizeof (*ctx));
565   /* Half-open freed on tcp half-open cleanup notification */
566   tls_ctx_half_open_reader_unlock ();
567
568   ctx->c_thread_index = vlib_get_thread_index ();
569   ctx->tls_ctx_handle = ctx_handle;
570   ctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
571
572   TLS_DBG (1, "TCP connect for %u returned %u. New connection [%u]%x",
573            ho_ctx_index, err, vlib_get_thread_index (),
574            (ctx) ? ctx_handle : ~0);
575
576   ctx->tls_session_handle = session_handle (tls_session);
577   tls_session->opaque = ctx_handle;
578   tls_session->session_state = SESSION_STATE_READY;
579
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);
583   app_session->session_state = SESSION_STATE_CREATED;
584   ctx->c_s_index = app_session->session_index;
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;
588
589   return tls_ctx_init_client (ctx);
590 }
591
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
598   ctx = tls_ctx_get_w_thread (ctx_handle, transport_cl_thread ());
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 {
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
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
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)
646     {
647       /* Allow cleanup of tcp session */
648       if (s->session_state == SESSION_STATE_TRANSPORT_DELETED)
649         session_close (s);
650       return;
651     }
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
659 static void
660 dtls_migrate_ctx (void *arg)
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;
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
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);
693   tls_ctx_t *ctx, *cloned_ctx;
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;
698   cloned_ctx = tls_ctx_detach (ctx);
699   ctx->is_migrated = 1;
700   session_half_open_migrate_notify (&ctx->connection);
701
702   session_send_rpc_evt_to_thread (new_thread, dtls_migrate_ctx,
703                                   (void *) cloned_ctx);
704
705   tls_ctx_free (ctx);
706 }
707
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,
713   .half_open_cleanup_callback = tls_session_cleanup_ho,
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,
717   .builtin_app_tx_callback = tls_app_tx_callback,
718   .session_migrate_callback = dtls_session_migrate_callback,
719   .session_cleanup_callback = tls_app_session_cleanup,
720 };
721
722 int
723 tls_connect (transport_endpoint_cfg_t * tep)
724 {
725   vnet_connect_args_t _cargs = { {}, }, *cargs = &_cargs;
726   transport_endpt_crypto_cfg_t *ccfg;
727   crypto_engine_type_t engine_type;
728   session_endpoint_cfg_t *sep;
729   tls_main_t *tm = &tls_main;
730   app_worker_t *app_wrk;
731   application_t *app;
732   tls_ctx_t *ctx;
733   u32 ctx_index;
734   int rv;
735
736   sep = (session_endpoint_cfg_t *) tep;
737   if (!sep->ext_cfg)
738     return SESSION_E_NOEXTCFG;
739
740   app_wrk = app_worker_get (sep->app_wrk_index);
741   app = application_get (app_wrk->app_index);
742
743   ccfg = &sep->ext_cfg->crypto;
744   engine_type = tls_get_engine_type (ccfg->crypto_engine, app->tls_engine);
745   if (engine_type == CRYPTO_ENGINE_NONE)
746     {
747       clib_warning ("No tls engine_type available");
748       return SESSION_E_NOCRYPTOENG;
749     }
750
751   ctx_index = tls_ctx_half_open_alloc ();
752   ctx = tls_ctx_half_open_get (ctx_index);
753   ctx->parent_app_wrk_index = sep->app_wrk_index;
754   ctx->parent_app_api_context = sep->opaque;
755   ctx->tcp_is_ip4 = sep->is_ip4;
756   ctx->tls_type = sep->transport_proto;
757   ctx->ckpair_index = ccfg->ckpair_index;
758   ctx->c_proto = TRANSPORT_PROTO_TLS;
759   ctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
760   if (ccfg->hostname[0])
761     {
762       ctx->srv_hostname = format (0, "%s", ccfg->hostname);
763       vec_terminate_c_string (ctx->srv_hostname);
764     }
765   tls_ctx_half_open_reader_unlock ();
766
767   ctx->tls_ctx_engine = engine_type;
768
769   clib_memcpy_fast (&cargs->sep, sep, sizeof (session_endpoint_t));
770   cargs->sep.transport_proto = TRANSPORT_PROTO_TCP;
771   cargs->app_index = tm->app_index;
772   cargs->api_context = ctx_index;
773   cargs->sep_ext.ns_index = app->ns_index;
774   if ((rv = vnet_connect (cargs)))
775     return rv;
776
777   /* Track half-open tcp session in case we need to clean it up */
778   ctx->tls_session_handle = cargs->sh;
779
780   TLS_DBG (1, "New connect request %u engine %d", ctx_index, engine_type);
781   return ctx_index;
782 }
783
784 void
785 tls_disconnect (u32 ctx_handle, u32 thread_index)
786 {
787   tls_ctx_t *ctx;
788
789   TLS_DBG (1, "Disconnecting %x", ctx_handle);
790
791   ctx = tls_ctx_get (ctx_handle);
792   tls_ctx_app_close (ctx);
793 }
794
795 u32
796 tls_start_listen (u32 app_listener_index, transport_endpoint_cfg_t *tep)
797 {
798   vnet_listen_args_t _bargs, *args = &_bargs;
799   transport_endpt_crypto_cfg_t *ccfg;
800   app_worker_t *app_wrk;
801   tls_main_t *tm = &tls_main;
802   session_handle_t tls_al_handle;
803   session_endpoint_cfg_t *sep;
804   session_t *tls_listener;
805   session_t *app_listener;
806   crypto_engine_type_t engine_type;
807   application_t *app;
808   app_listener_t *al;
809   tls_ctx_t *lctx;
810   u32 lctx_index;
811   int rv;
812
813   sep = (session_endpoint_cfg_t *) tep;
814   if (!sep->ext_cfg)
815     return SESSION_E_NOEXTCFG;
816
817   app_wrk = app_worker_get (sep->app_wrk_index);
818   app = application_get (app_wrk->app_index);
819
820   ccfg = &sep->ext_cfg->crypto;
821   engine_type = tls_get_engine_type (ccfg->crypto_engine, app->tls_engine);
822   if (engine_type == CRYPTO_ENGINE_NONE)
823     {
824       clib_warning ("No tls engine_type available");
825       return SESSION_E_NOCRYPTOENG;
826     }
827
828   clib_memset (args, 0, sizeof (*args));
829   args->app_index = tm->app_index;
830   args->sep_ext = *sep;
831   args->sep_ext.ns_index = app->ns_index;
832   args->sep_ext.transport_proto = TRANSPORT_PROTO_TCP;
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     }
838   if ((rv = vnet_listen (args)))
839     return rv;
840
841   lctx_index = tls_listener_ctx_alloc ();
842   tls_al_handle = args->handle;
843   al = app_listener_get_w_handle (tls_al_handle);
844   tls_listener = app_listener_get_session (al);
845   tls_listener->opaque = lctx_index;
846
847   app_listener = listen_session_get (app_listener_index);
848
849   lctx = tls_listener_ctx_get (lctx_index);
850   lctx->parent_app_wrk_index = sep->app_wrk_index;
851   lctx->tls_session_handle = tls_al_handle;
852   lctx->app_session_handle = listen_session_get_handle (app_listener);
853   lctx->tcp_is_ip4 = sep->is_ip4;
854   lctx->tls_ctx_engine = engine_type;
855   lctx->tls_type = sep->transport_proto;
856   lctx->ckpair_index = ccfg->ckpair_index;
857   lctx->c_s_index = app_listener_index;
858   lctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
859
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     }
872
873   TLS_DBG (1, "Started listening %d, engine type %d", lctx_index,
874            engine_type);
875   return lctx_index;
876 }
877
878 u32
879 tls_stop_listen (u32 lctx_index)
880 {
881   session_endpoint_t sep = SESSION_ENDPOINT_NULL;
882   crypto_engine_type_t engine_type;
883   transport_connection_t *lc;
884   tls_ctx_t *lctx;
885   session_t *ls;
886   int rv;
887
888   lctx = tls_listener_ctx_get (lctx_index);
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;
897   sep.transport_proto = lctx->tls_type;
898   clib_memcpy (&sep.ip, &lc->lcl_ip, sizeof (lc->lcl_ip));
899   session_lookup_del_session_endpoint2 (&sep);
900
901   vnet_unlisten_args_t a = {
902     .handle = lctx->tls_session_handle,
903     .app_index = tls_main.app_index,
904     .wrk_map_index = 0          /* default wrk */
905   };
906   if ((rv = vnet_unlisten (&a)))
907     clib_warning ("unlisten returned %d", rv);
908
909   engine_type = lctx->tls_ctx_engine;
910   tls_vfts[engine_type].ctx_stop_listen (lctx);
911
912   tls_listener_ctx_free (lctx);
913   return 0;
914 }
915
916 transport_connection_t *
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 *
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
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;
946   session_handle_t tcp_sh;
947   tls_ctx_t *ctx;
948
949   ctx = tls_ctx_half_open_get (ho_index);
950   tcp_sh = ctx->tls_session_handle;
951   clib_rwlock_reader_unlock (&tm->half_open_rwlock);
952   session_cleanup_half_open (tcp_sh);
953   tls_ctx_half_open_free (ho_index);
954 }
955
956 int
957 tls_custom_tx_callback (void *session, transport_send_params_t * sp)
958 {
959   session_t *app_session = (session_t *) session;
960   tls_ctx_t *ctx;
961
962   if (PREDICT_FALSE (app_session->session_state
963                      >= SESSION_STATE_TRANSPORT_CLOSED))
964     return 0;
965
966   ctx = tls_ctx_get (app_session->connection_index);
967   return tls_ctx_write (ctx, app_session, sp);
968 }
969
970 u8 *
971 format_tls_ctx (u8 * s, va_list * args)
972 {
973   u32 tcp_si, tcp_ti, ctx_index, ctx_engine;
974   tls_ctx_t *ctx = va_arg (*args, tls_ctx_t *);
975   char *proto;
976
977   proto = ctx->tls_type == TRANSPORT_PROTO_TLS ? "TLS" : "DTLS";
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);
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);
984
985   return s;
986 }
987
988 static u8 *
989 format_tls_listener_ctx (u8 * s, va_list * args)
990 {
991   session_t *tls_listener;
992   app_listener_t *al;
993   tls_ctx_t *ctx;
994   char *proto;
995
996   ctx = va_arg (*args, tls_ctx_t *);
997
998   proto = ctx->tls_type == TRANSPORT_PROTO_TLS ? "TLS" : "DTLS";
999   al = app_listener_get_w_handle (ctx->tls_session_handle);
1000   tls_listener = app_listener_get_session (al);
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,
1003               ctx->parent_app_wrk_index, ctx->tls_ctx_engine,
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 *);
1016   ts = session_get (ctx->c_s_index, ctx->c_thread_index);
1017   if (ts->session_state == SESSION_STATE_LISTENING)
1018     s = format (s, "%s", "LISTEN");
1019   else
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     }
1032
1033   return s;
1034 }
1035
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
1048   s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_tls_ctx, ctx);
1049   if (verbose)
1050     {
1051       s = format (s, "%-" SESSION_CLI_STATE_LEN "U", format_tls_ctx_state,
1052                   ctx);
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);
1063   u32 __clib_unused thread_index = va_arg (*args, u32);
1064   u32 verbose = va_arg (*args, u32);
1065   tls_ctx_t *ctx = tls_listener_ctx_get (tc_index);
1066
1067   s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_tls_listener_ctx, ctx);
1068   if (verbose)
1069     s = format (s, "%-" SESSION_CLI_STATE_LEN "U", format_tls_ctx_state, ctx);
1070   return s;
1071 }
1072
1073 u8 *
1074 format_tls_half_open (u8 * s, va_list * args)
1075 {
1076   u32 ho_index = va_arg (*args, u32);
1077   u32 __clib_unused thread_index = va_arg (*args, u32);
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
1089   tls_ctx_half_open_reader_unlock ();
1090   return s;
1091 }
1092
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
1117 static clib_error_t *
1118 tls_enable (vlib_main_t * vm, u8 is_en)
1119 {
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
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");
1143   a->options[APP_OPTIONS_SEGMENT_SIZE] = tm->first_seg_size;
1144   a->options[APP_OPTIONS_ADD_SEGMENT_SIZE] = tm->add_seg_size;
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
1163 static const transport_proto_vft_t tls_proto = {
1164   .enable = tls_enable,
1165   .connect = tls_connect,
1166   .close = tls_disconnect,
1167   .start_listen = tls_start_listen,
1168   .stop_listen = tls_stop_listen,
1169   .get_connection = tls_connection_get,
1170   .get_listener = tls_listener_get,
1171   .get_half_open = tls_half_open_get,
1172   .cleanup_ho = tls_cleanup_ho,
1173   .custom_tx = tls_custom_tx_callback,
1174   .format_connection = format_tls_connection,
1175   .format_half_open = format_tls_half_open,
1176   .format_listener = format_tls_listener,
1177   .get_transport_endpoint = tls_transport_endpoint_get,
1178   .get_transport_listener_endpoint = tls_transport_listener_endpoint_get,
1179   .transport_options = {
1180     .name = "tls",
1181     .short_name = "J",
1182     .tx_type = TRANSPORT_TX_INTERNAL,
1183     .service_type = TRANSPORT_SERVICE_VC,
1184   },
1185 };
1186
1187 int
1188 dtls_connect (transport_endpoint_cfg_t *tep)
1189 {
1190   vnet_connect_args_t _cargs = { {}, }, *cargs = &_cargs;
1191   transport_endpt_crypto_cfg_t *ccfg;
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;
1202   if (!sep->ext_cfg)
1203     return -1;
1204
1205   app_wrk = app_worker_get (sep->app_wrk_index);
1206   app = application_get (app_wrk->app_index);
1207
1208   ccfg = &sep->ext_cfg->crypto;
1209   engine_type = tls_get_engine_type (ccfg->crypto_engine, app->tls_engine);
1210   if (engine_type == CRYPTO_ENGINE_NONE)
1211     {
1212       clib_warning ("No tls engine_type available");
1213       return -1;
1214     }
1215
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 ());
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;
1221   ctx->ckpair_index = ccfg->ckpair_index;
1222   ctx->tls_type = sep->transport_proto;
1223   ctx->tls_ctx_handle = ctx_handle;
1224   ctx->c_proto = TRANSPORT_PROTO_DTLS;
1225   ctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
1226   if (ccfg->hostname[0])
1227     {
1228       ctx->srv_hostname = format (0, "%s", ccfg->hostname);
1229       vec_terminate_c_string (ctx->srv_hostname);
1230     }
1231
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);
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;
1252   ho_ctx = tls_ctx_get_w_thread (ho_index, transport_cl_thread ());
1253   return &ho_ctx->connection;
1254 }
1255
1256 static void
1257 dtls_cleanup_callback (u32 ctx_index, u32 thread_index)
1258 {
1259   /* No op */
1260 }
1261
1262 static void
1263 dtls_cleanup_ho (u32 ho_index)
1264 {
1265   tls_ctx_t *ctx;
1266   ctx = tls_ctx_get_w_thread (ho_index, transport_cl_thread ());
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
1278   ho_ctx = tls_ctx_get_w_thread (ho_index, transport_cl_thread ());
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
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,
1297   .get_half_open = dtls_half_open_get,
1298   .custom_tx = tls_custom_tx_callback,
1299   .cleanup = dtls_cleanup_callback,
1300   .cleanup_ho = dtls_cleanup_ho,
1301   .format_connection = format_tls_connection,
1302   .format_half_open = format_dtls_half_open,
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,
1310     .service_type = TRANSPORT_SERVICE_VC,
1311   },
1312 };
1313
1314 void
1315 tls_register_engine (const tls_engine_vft_t * vft, crypto_engine_type_t type)
1316 {
1317   vec_validate (tls_vfts, type);
1318   tls_vfts[type] = *vft;
1319 }
1320
1321 static clib_error_t *
1322 tls_init (vlib_main_t * vm)
1323 {
1324   vlib_thread_main_t *vtm = vlib_get_thread_main ();
1325   tls_main_t *tm = &tls_main;
1326   u32 num_threads;
1327
1328   num_threads = 1 /* main thread */  + vtm->n_threads;
1329
1330   if (!tm->ca_cert_path)
1331     tm->ca_cert_path = TLS_CA_CERT_PATH;
1332
1333   clib_rwlock_init (&tm->half_open_rwlock);
1334
1335   vec_validate (tm->rx_bufs, num_threads - 1);
1336   vec_validate (tm->tx_bufs, num_threads - 1);
1337
1338   tm->first_seg_size = 32 << 20;
1339   tm->add_seg_size = 256 << 20;
1340
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);
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);
1350   return 0;
1351 }
1352
1353 VLIB_INIT_FUNCTION (tls_init);
1354
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;
1359   uword tmp;
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         ;
1366       else if (unformat (input, "first-segment-size %U", unformat_memory_size,
1367                          &tm->first_seg_size))
1368         ;
1369       else if (unformat (input, "add-segment-size %U", unformat_memory_size,
1370                          &tm->add_seg_size))
1371         ;
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         }
1381       else
1382         return clib_error_return (0, "unknown input `%U'",
1383                                   format_unformat_error, input);
1384     }
1385   return 0;
1386 }
1387
1388 VLIB_CONFIG_FUNCTION (tls_config_fn, "tls");
1389
1390 tls_main_t *
1391 vnet_tls_get_main (void)
1392 {
1393   return &tls_main;
1394 }
1395
1396 /*
1397  * fd.io coding-style-patch-verification: ON
1398  *
1399  * Local Variables:
1400  * eval: (c-set-style "gnu")
1401  * End:
1402  */