a0fbab0495c534784987dc0d97f22ac0e91d1453
[vpp.git] / src / plugins / tlspicotls / tls_picotls.c
1 #include <math.h>
2
3 #include <tlspicotls/certs.h>
4 #include <tlspicotls/tls_picotls.h>
5 #include <tlspicotls/pico_vpp_crypto.h>
6
7 picotls_main_t picotls_main;
8
9 #define MAX_QUEUE 12000
10 #define PTLS_MAX_PLAINTEXT_RECORD_SIZE 16384
11
12 static ptls_key_exchange_algorithm_t *default_key_exchange[] = {
13 #ifdef PTLS_OPENSSL_HAVE_X25519
14   &ptls_openssl_x25519,
15 #endif
16 #ifdef PTLS_OPENSSL_HAVE_SECP256R1
17   &ptls_openssl_secp256r1,
18 #endif
19 #ifdef PTLS_OPENSSL_HAVE_SECP384R1
20   &ptls_openssl_secp384r1,
21 #endif
22 #ifdef PTLS_OPENSSL_HAVE_SECP521R1
23   &ptls_openssl_secp521r1
24 #endif
25 };
26
27 static u32
28 picotls_ctx_alloc (void)
29 {
30   u8 thread_id = vlib_get_thread_index ();
31   picotls_main_t *pm = &picotls_main;
32   picotls_ctx_t **ctx;
33
34   pool_get (pm->ctx_pool[thread_id], ctx);
35   if (!(*ctx))
36     *ctx = clib_mem_alloc (sizeof (picotls_ctx_t));
37
38   clib_memset (*ctx, 0, sizeof (picotls_ctx_t));
39   (*ctx)->ctx.c_thread_index = thread_id;
40   (*ctx)->ctx.tls_ctx_engine = CRYPTO_ENGINE_PICOTLS;
41   (*ctx)->ctx.app_session_handle = SESSION_INVALID_HANDLE;
42   (*ctx)->ptls_ctx_idx = ctx - pm->ctx_pool[thread_id];
43   return (*ctx)->ptls_ctx_idx;
44 }
45
46 static void
47 picotls_ctx_free (tls_ctx_t * ctx)
48 {
49   picotls_ctx_t *ptls_ctx = (picotls_ctx_t *) ctx;
50   vec_free (ptls_ctx->rx_content);
51   vec_free (ptls_ctx->write_content);
52   pool_put_index (picotls_main.ctx_pool[ctx->c_thread_index],
53                   ptls_ctx->ptls_ctx_idx);
54 }
55
56 static u32
57 picotls_listen_ctx_alloc (void)
58 {
59   picotls_main_t *pm = &picotls_main;
60   picotls_listen_ctx_t *ptls_lctx;
61
62   pool_get (pm->lctx_pool, ptls_lctx);
63
64   clib_memset (ptls_lctx, 0, sizeof (picotls_listen_ctx_t));
65   ptls_lctx->ptls_lctx_index = ptls_lctx - pm->lctx_pool;
66   return ptls_lctx->ptls_lctx_index;
67 }
68
69 static void
70 picotls_listen_ctx_free (picotls_listen_ctx_t * lctx)
71 {
72   pool_put_index (picotls_main.lctx_pool, lctx->ptls_lctx_index);
73 }
74
75 tls_ctx_t *
76 picotls_ctx_get (u32 ctx_index)
77 {
78   picotls_ctx_t **ctx;
79   ctx =
80     pool_elt_at_index (picotls_main.ctx_pool[vlib_get_thread_index ()],
81                        ctx_index);
82   return &(*ctx)->ctx;
83 }
84
85 picotls_listen_ctx_t *
86 picotls_lctx_get (u32 lctx_index)
87 {
88   return pool_elt_at_index (picotls_main.lctx_pool, lctx_index);
89 }
90
91 static u8
92 picotls_handshake_is_over (tls_ctx_t * ctx)
93 {
94   picotls_ctx_t *ptls_ctx = (picotls_ctx_t *) ctx;
95   assert (ptls_ctx->tls);
96   return ptls_handshake_is_complete (ptls_ctx->tls);
97 }
98
99 static int
100 picotls_try_handshake_write (picotls_ctx_t * ptls_ctx,
101                              session_t * tls_session, ptls_buffer_t * buf)
102 {
103   u32 enq_max, enq_now;
104   svm_fifo_t *f;
105   int write, buf_left;
106
107   if (buf->off <= 0)
108     return 0;
109
110   f = tls_session->tx_fifo;
111   buf_left = buf->off;
112   enq_max = svm_fifo_max_enqueue_prod (f);
113   if (!enq_max)
114     return 0;
115
116   enq_now = clib_min (svm_fifo_max_write_chunk (f), enq_max);
117   enq_now = clib_min (enq_now, buf_left);
118   write = svm_fifo_enqueue (f, enq_now, buf->base);
119   buf_left -= write;
120   tls_add_vpp_q_tx_evt (tls_session);
121   return write;
122 }
123
124 static int
125 picotls_start_listen (tls_ctx_t * lctx)
126 {
127   picotls_listen_ctx_t *ptls_lctx;
128   ptls_context_t *ptls_ctx;
129   u32 ptls_lctx_idx;
130   app_cert_key_pair_t *ckpair;
131
132   ckpair = app_cert_key_pair_get_if_valid (lctx->ckpair_index);
133   if (!ckpair || !ckpair->cert || !ckpair->key)
134     {
135       TLS_DBG (1, "tls cert and/or key not configured %d",
136                lctx->parent_app_wrk_index);
137       return -1;
138     }
139
140   ptls_lctx_idx = picotls_listen_ctx_alloc ();
141   ptls_lctx = picotls_lctx_get (ptls_lctx_idx);
142   ptls_ctx = malloc (sizeof (ptls_context_t));
143   ptls_lctx->ptls_ctx = ptls_ctx;
144
145   memset (ptls_ctx, 0, sizeof (ptls_context_t));
146   ptls_ctx->update_open_count = NULL;
147
148   /*
149    * Process certificate & private key.
150    */
151   load_bio_certificate_chain (ptls_ctx, (char *) ckpair->cert);
152   load_bio_private_key (ptls_ctx, (char *) ckpair->key);
153
154   /* setup protocol related functions */
155   ptls_ctx->key_exchanges = default_key_exchange;
156   ptls_ctx->random_bytes = ptls_openssl_random_bytes;
157   ptls_ctx->cipher_suites = ptls_vpp_crypto_cipher_suites;
158   ptls_ctx->get_time = &ptls_get_time;
159
160   lctx->tls_ssl_ctx = ptls_lctx_idx;
161
162   return 0;
163 }
164
165 static int
166 picotls_stop_listen (tls_ctx_t * lctx)
167 {
168   u32 ptls_lctx_index;
169   picotls_listen_ctx_t *ptls_lctx;
170
171   ptls_lctx_index = lctx->tls_ssl_ctx;
172   ptls_lctx = picotls_lctx_get (ptls_lctx_index);
173
174   picotls_listen_ctx_free (ptls_lctx);
175
176   return 0;
177 }
178
179 static void
180 picotls_handle_handshake_failure (tls_ctx_t * ctx)
181 {
182   session_free (session_get (ctx->c_s_index, ctx->c_thread_index));
183   ctx->no_app_session = 1;
184   ctx->c_s_index = SESSION_INVALID_INDEX;
185   tls_disconnect_transport (ctx);
186 }
187
188 static void
189 picotls_confirm_app_close (tls_ctx_t * ctx)
190 {
191   tls_disconnect_transport (ctx);
192   session_transport_closed_notify (&ctx->connection);
193 }
194
195 static int
196 picotls_transport_close (tls_ctx_t * ctx)
197 {
198   if (!picotls_handshake_is_over (ctx))
199     {
200       picotls_handle_handshake_failure (ctx);
201       return 0;
202     }
203   picotls_ctx_t *ptls_ctx = (picotls_ctx_t *) ctx;
204   ptls_free (ptls_ctx->tls);
205   session_transport_closing_notify (&ctx->connection);
206   return 0;
207 }
208
209 static int
210 picotls_app_close (tls_ctx_t * ctx)
211 {
212   session_t *app_session;
213
214   app_session = session_get_from_handle (ctx->app_session_handle);
215   if (!svm_fifo_max_dequeue_cons (app_session->tx_fifo))
216     picotls_confirm_app_close (ctx);
217   else
218     ctx->app_closed = 1;
219
220   return 0;
221 }
222
223 static inline int
224 picotls_do_handshake (picotls_ctx_t *ptls_ctx, session_t *tcp_session)
225 {
226   int rv = PTLS_ERROR_IN_PROGRESS, write = 0, i = 0, read = 0, len;
227   svm_fifo_t *tcp_rx_fifo = tcp_session->rx_fifo;
228   ptls_buffer_t *buf = &ptls_ctx->read_buffer;
229   const int n_segs = 2, max_len = 16384;
230   ptls_t *tls = ptls_ctx->tls;
231   svm_fifo_seg_t fs[n_segs];
232   uword deq_now;
233
234   ptls_buffer_init (buf, "", 0);
235
236   len = svm_fifo_segments (tcp_rx_fifo, 0, fs, n_segs, max_len);
237   if (len <= 0)
238     return 0;
239
240   while (read < len && i < n_segs)
241     {
242       deq_now = fs[i].len;
243       rv = ptls_handshake (tls, buf, fs[i].data, &deq_now, NULL);
244
245       write += picotls_try_handshake_write (ptls_ctx, tcp_session, buf);
246       read += deq_now;
247
248       if (!(rv == 0 || rv == PTLS_ERROR_IN_PROGRESS))
249         {
250           clib_error ("unexpected error %u", rv);
251           break;
252         }
253
254       if (!rv)
255         break;
256
257       if (deq_now < fs[i].len)
258         {
259           fs[i].data += deq_now;
260           fs[i].len -= deq_now;
261         }
262       else
263         i++;
264     }
265
266   if (read)
267     svm_fifo_dequeue_drop (tcp_rx_fifo, read);
268
269   ptls_buffer_dispose (buf);
270
271   return write;
272 }
273
274 static inline int
275 picotls_ctx_read (tls_ctx_t *ctx, session_t *tcp_session)
276 {
277   picotls_ctx_t *ptls_ctx = (picotls_ctx_t *) ctx;
278   ptls_buffer_t *buf = &ptls_ctx->read_buffer;
279   int off = 0, ret, i = 0, read = 0, len;
280   const int n_segs = 4, max_len = 32768;
281   svm_fifo_t *tcp_rx_fifo, *app_rx_fifo;
282   svm_fifo_seg_t fs[n_segs];
283   session_t *app_session;
284   uword deq_now;
285
286   if (PREDICT_FALSE (!ptls_handshake_is_complete (ptls_ctx->tls)))
287     {
288       picotls_do_handshake (ptls_ctx, tcp_session);
289       if (picotls_handshake_is_over (ctx))
290         ret = ptls_is_server (ptls_ctx->tls) ?
291                 tls_notify_app_accept (ctx) :
292                 tls_notify_app_connected (ctx, SESSION_E_NONE);
293
294       if (!svm_fifo_max_dequeue (tcp_session->rx_fifo))
295         return 0;
296     }
297
298   tcp_rx_fifo = tcp_session->rx_fifo;
299   app_session = session_get_from_handle (ctx->app_session_handle);
300   app_rx_fifo = app_session->rx_fifo;
301
302   if (TLS_READ_IS_LEFT (ptls_ctx))
303     goto do_enq;
304
305   len = svm_fifo_segments (tcp_rx_fifo, 0, fs, n_segs, max_len);
306   if (len <= 0)
307     goto final_checks;
308
309   ptls_buffer_init (buf, "", 0);
310   ptls_ctx->read_buffer_offset = 0;
311
312   while (read < len && i < n_segs)
313     {
314       deq_now = fs[i].len;
315       ret = ptls_receive (ptls_ctx->tls, buf, fs[i].data, &deq_now);
316       ASSERT (ret == 0 || ret == PTLS_ERROR_IN_PROGRESS);
317       read += deq_now;
318       if (deq_now < fs[i].len)
319         {
320           fs[i].data += deq_now;
321           fs[i].len -= deq_now;
322         }
323       else
324         i++;
325     }
326
327   if (read)
328     svm_fifo_dequeue_drop (tcp_rx_fifo, read);
329
330   if (!TLS_READ_LEFT_LEN (ptls_ctx))
331     {
332       ptls_buffer_dispose (buf);
333       goto final_checks;
334     }
335
336 do_enq:
337
338   len = TLS_READ_LEFT_LEN (ptls_ctx);
339   off = svm_fifo_enqueue (app_rx_fifo, len, TLS_READ_OFFSET (ptls_ctx));
340   if (off != len)
341     {
342       if (off < 0)
343         {
344           off = 0;
345           goto final_checks;
346         }
347       ptls_ctx->read_buffer_offset += off;
348     }
349   else
350     {
351       ptls_buffer_dispose (buf);
352     }
353
354   if (app_session->session_state >= SESSION_STATE_READY)
355     tls_notify_app_enqueue (ctx, app_session);
356
357 final_checks:
358
359   if (TLS_READ_IS_LEFT (ptls_ctx) || svm_fifo_max_dequeue (tcp_rx_fifo))
360     tls_add_vpp_q_builtin_rx_evt (tcp_session);
361
362   return off;
363 }
364
365 static inline int
366 picotls_content_process (picotls_ctx_t * ptls_ctx, svm_fifo_t * src_fifo,
367                          svm_fifo_t * dst_fifo, int content_len,
368                          int total_record_overhead, int is_no_copy)
369 {
370   ptls_buffer_t *buf = &ptls_ctx->write_buffer;
371   int total_length = content_len + total_record_overhead;
372   int to_dst_len;
373   if (is_no_copy)
374     {
375       ptls_buffer_init (buf, svm_fifo_tail (dst_fifo), total_length);
376       ptls_send (ptls_ctx->tls, buf, svm_fifo_head (src_fifo), content_len);
377
378       assert (!buf->is_allocated);
379       assert (buf->base == svm_fifo_tail (dst_fifo));
380
381       svm_fifo_dequeue_drop (src_fifo, content_len);
382       svm_fifo_enqueue_nocopy (dst_fifo, buf->off);
383       to_dst_len = buf->off;
384     }
385   else
386     {
387       assert (!TLS_WRITE_IS_LEFT (ptls_ctx));
388       vec_validate (ptls_ctx->write_content, total_length);
389       ptls_buffer_init (buf, ptls_ctx->write_content, total_length);
390
391       ptls_send (ptls_ctx->tls, buf, svm_fifo_head (src_fifo), content_len);
392       svm_fifo_dequeue_drop (src_fifo, content_len);
393
394       to_dst_len = svm_fifo_enqueue (dst_fifo, buf->off, buf->base);
395     }
396   ptls_ctx->write_buffer_offset += to_dst_len;
397   return to_dst_len;
398 }
399
400 static inline int
401 picotls_ctx_write (tls_ctx_t * ctx, session_t * app_session,
402                    transport_send_params_t * sp)
403 {
404   picotls_ctx_t *ptls_ctx = (picotls_ctx_t *) ctx;
405   u32 deq_max, deq_now;
406   u32 enq_max, enq_now;
407   int from_app_len = 0, to_tls_len = 0, is_nocopy = 0;
408   svm_fifo_t *tls_tx_fifo, *app_tx_fifo;
409   session_t *tls_session;
410
411   int record_overhead = ptls_get_record_overhead (ptls_ctx->tls);
412   int num_records, total_overhead;
413
414   tls_session = session_get_from_handle (ctx->tls_session_handle);
415   tls_tx_fifo = tls_session->tx_fifo;
416   app_tx_fifo = app_session->tx_fifo;
417
418   if (PREDICT_FALSE (TLS_WRITE_IS_LEFT (ptls_ctx)))
419     {
420       enq_max = svm_fifo_max_enqueue_prod (tls_tx_fifo);
421       int to_write = clib_min (enq_max,
422                                ptls_ctx->write_buffer.off -
423                                ptls_ctx->write_buffer_offset);
424       to_tls_len =
425         svm_fifo_enqueue (tls_tx_fifo, to_write, TLS_WRITE_OFFSET (ptls_ctx));
426       if (to_tls_len < 0)
427         {
428           app_session->flags |= SESSION_F_CUSTOM_TX;
429           return 0;
430         }
431       ptls_ctx->write_buffer_offset += to_tls_len;
432
433       if (TLS_WRITE_IS_LEFT (ptls_ctx))
434         {
435           app_session->flags |= SESSION_F_CUSTOM_TX;
436           return to_tls_len;
437         }
438       else
439         {
440           ptls_buffer_init (&ptls_ctx->write_buffer, "", 0);
441           ptls_ctx->write_buffer_offset = 0;
442         }
443     }
444
445   deq_max = svm_fifo_max_dequeue_cons (app_tx_fifo);
446   if (!deq_max)
447     return deq_max;
448
449   deq_now = clib_min (deq_max, sp->max_burst_size);
450   deq_now = clib_min (deq_now, svm_fifo_max_read_chunk (app_tx_fifo));
451
452   enq_max = svm_fifo_max_enqueue_prod (tls_tx_fifo);
453     /** There is no engough enqueue space for one record **/
454   if (enq_max <= record_overhead)
455     {
456       app_session->flags |= SESSION_F_CUSTOM_TX;
457       return 0;
458     }
459
460   enq_now = clib_min (enq_max, svm_fifo_max_write_chunk (tls_tx_fifo));
461
462     /** Allowed to execute no-copy crypto operation **/
463   if (enq_now > record_overhead)
464     {
465       is_nocopy = 1;
466       from_app_len = clib_min (deq_now, enq_now);
467       num_records =
468         ceil ((f64) from_app_len / PTLS_MAX_PLAINTEXT_RECORD_SIZE);
469       total_overhead = num_records * record_overhead;
470       if (from_app_len + total_overhead > enq_now)
471         from_app_len = enq_now - total_overhead;
472     }
473   else
474     {
475       from_app_len = clib_min (deq_now, enq_max);
476       num_records =
477         ceil ((f64) from_app_len / PTLS_MAX_PLAINTEXT_RECORD_SIZE);
478       total_overhead = num_records * record_overhead;
479       if (from_app_len + total_overhead > enq_max)
480         from_app_len = enq_max - total_overhead;
481     }
482
483   to_tls_len =
484     picotls_content_process (ptls_ctx, app_tx_fifo, tls_tx_fifo,
485                              from_app_len, total_overhead, is_nocopy);
486   if (!TLS_WRITE_IS_LEFT (ptls_ctx))
487     {
488       ptls_ctx->write_buffer_offset = 0;
489       ptls_buffer_init (&ptls_ctx->write_buffer, "", 0);
490     }
491
492   if (svm_fifo_needs_deq_ntf (app_tx_fifo, from_app_len))
493     session_dequeue_notify (app_session);
494
495   if (to_tls_len)
496     tls_add_vpp_q_tx_evt (tls_session);
497
498   if (from_app_len < deq_max || TLS_WRITE_IS_LEFT (ptls_ctx))
499     app_session->flags |= SESSION_F_CUSTOM_TX;
500
501   if (ctx->app_closed)
502     picotls_app_close (ctx);
503
504   return to_tls_len;
505 }
506
507 static int
508 picotls_ctx_init_server (tls_ctx_t * ctx)
509 {
510   picotls_ctx_t *ptls_ctx = (picotls_ctx_t *) ctx;
511   u32 ptls_lctx_idx = ctx->tls_ssl_ctx;
512   picotls_listen_ctx_t *ptls_lctx;
513
514   ptls_lctx = picotls_lctx_get (ptls_lctx_idx);
515   ptls_ctx->tls = ptls_new (ptls_lctx->ptls_ctx, 1);
516   if (ptls_ctx->tls == NULL)
517     {
518       TLS_DBG (1, "Failed to initialize ptls_ssl structure");
519       return -1;
520     }
521
522   ptls_ctx->rx_len = 0;
523   ptls_ctx->rx_offset = 0;
524
525   ptls_ctx->write_buffer_offset = 0;
526   return 0;
527 }
528
529 static int
530 picotls_ctx_init_client (tls_ctx_t *ctx)
531 {
532   picotls_ctx_t *ptls_ctx = (picotls_ctx_t *) ctx;
533   picotls_main_t *pm = &picotls_main;
534   ptls_context_t *client_ptls_ctx = pm->client_ptls_ctx;
535   ptls_handshake_properties_t hsprop = { { { { NULL } } } };
536
537   session_t *tls_session = session_get_from_handle (ctx->tls_session_handle);
538   ptls_buffer_t hs_buf;
539
540   ptls_ctx->tls = ptls_new (client_ptls_ctx, 0);
541   if (ptls_ctx->tls == NULL)
542     {
543       TLS_DBG (1, "Failed to initialize ptls_ssl structure");
544       return -1;
545     }
546
547   ptls_ctx->rx_len = 0;
548   ptls_ctx->rx_offset = 0;
549   ptls_ctx->write_buffer_offset = 0;
550
551   ptls_buffer_init (&hs_buf, "", 0);
552   if (ptls_handshake (ptls_ctx->tls, &hs_buf, NULL, NULL, &hsprop) !=
553       PTLS_ERROR_IN_PROGRESS)
554     {
555       TLS_DBG (1, "Failed to initialize tls connection");
556     }
557
558   picotls_try_handshake_write (ptls_ctx, tls_session, &hs_buf);
559
560   ptls_buffer_dispose (&hs_buf);
561
562   return 0;
563 }
564
565 tls_ctx_t *
566 picotls_ctx_get_w_thread (u32 ctx_index, u8 thread_index)
567 {
568   picotls_ctx_t **ctx;
569   ctx = pool_elt_at_index (picotls_main.ctx_pool[thread_index], ctx_index);
570   return &(*ctx)->ctx;
571 }
572
573 int
574 picotls_init_client_ptls_ctx (ptls_context_t **client_ptls_ctx)
575 {
576   *client_ptls_ctx = clib_mem_alloc (sizeof (ptls_context_t));
577   memset (*client_ptls_ctx, 0, sizeof (ptls_context_t));
578
579   (*client_ptls_ctx)->update_open_count = NULL;
580   (*client_ptls_ctx)->key_exchanges = default_key_exchange;
581   (*client_ptls_ctx)->random_bytes = ptls_openssl_random_bytes;
582   (*client_ptls_ctx)->cipher_suites = ptls_vpp_crypto_cipher_suites;
583   (*client_ptls_ctx)->get_time = &ptls_get_time;
584
585   return 0;
586 }
587
588 const static tls_engine_vft_t picotls_engine = {
589   .ctx_alloc = picotls_ctx_alloc,
590   .ctx_free = picotls_ctx_free,
591   .ctx_get = picotls_ctx_get,
592   .ctx_get_w_thread = picotls_ctx_get_w_thread,
593   .ctx_handshake_is_over = picotls_handshake_is_over,
594   .ctx_start_listen = picotls_start_listen,
595   .ctx_stop_listen = picotls_stop_listen,
596   .ctx_init_server = picotls_ctx_init_server,
597   .ctx_init_client = picotls_ctx_init_client,
598   .ctx_read = picotls_ctx_read,
599   .ctx_write = picotls_ctx_write,
600   .ctx_transport_close = picotls_transport_close,
601   .ctx_app_close = picotls_app_close,
602 };
603
604 static clib_error_t *
605 tls_picotls_init (vlib_main_t * vm)
606 {
607   vlib_thread_main_t *vtm = vlib_get_thread_main ();
608   picotls_main_t *pm = &picotls_main;
609   clib_error_t *error = 0;
610   u32 num_threads;
611
612   num_threads = 1 + vtm->n_threads;
613
614   vec_validate (pm->ctx_pool, num_threads - 1);
615
616   clib_rwlock_init (&picotls_main.crypto_keys_rw_lock);
617
618   tls_register_engine (&picotls_engine, CRYPTO_ENGINE_PICOTLS);
619
620   picotls_init_client_ptls_ctx (&pm->client_ptls_ctx);
621
622   return error;
623 }
624
625 /* *INDENT-OFF* */
626 VLIB_INIT_FUNCTION (tls_picotls_init) = {
627   .runs_after = VLIB_INITS ("tls_init"),
628 };
629 /* *INDENT-ON* */
630
631 /* *INDENT-OFF* */
632 VLIB_PLUGIN_REGISTER () = {
633   .version = VPP_BUILD_VER,
634   .description = "Transport Layer Security (TLS) Engine, Picotls Based",
635 };
636 /* *INDENT-ON* */
637
638 /*
639  * fd.io coding-style-patch-verification: ON
640  *
641  * Local Variables:
642  * eval: (c-set-style "gnu")
643  * End:
644  */