tls: set client ckpair only for non-test ckp
[vpp.git] / src / plugins / tlsopenssl / tls_openssl.c
1 /*
2  * Copyright (c) 2018 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include <openssl/ssl.h>
17 #include <openssl/conf.h>
18 #include <openssl/err.h>
19
20 #ifdef HAVE_OPENSSL_ASYNC
21 #include <openssl/async.h>
22 #endif
23 #include <dlfcn.h>
24 #include <vnet/plugin/plugin.h>
25 #include <vpp/app/version.h>
26 #include <vnet/tls/tls.h>
27 #include <ctype.h>
28 #include <tlsopenssl/tls_openssl.h>
29 #include <tlsopenssl/tls_bios.h>
30 #include <openssl/x509_vfy.h>
31 #include <openssl/x509v3.h>
32
33 #define MAX_CRYPTO_LEN 64
34
35 openssl_main_t openssl_main;
36
37 static u32
38 openssl_ctx_alloc_w_thread (u32 thread_index)
39 {
40   openssl_main_t *om = &openssl_main;
41   openssl_ctx_t **ctx;
42
43   pool_get (om->ctx_pool[thread_index], ctx);
44   if (!(*ctx))
45     *ctx = clib_mem_alloc (sizeof (openssl_ctx_t));
46
47   clib_memset (*ctx, 0, sizeof (openssl_ctx_t));
48   (*ctx)->ctx.c_thread_index = thread_index;
49   (*ctx)->ctx.tls_ctx_engine = CRYPTO_ENGINE_OPENSSL;
50   (*ctx)->ctx.app_session_handle = SESSION_INVALID_HANDLE;
51   (*ctx)->openssl_ctx_index = ctx - om->ctx_pool[thread_index];
52   return ((*ctx)->openssl_ctx_index);
53 }
54
55 static u32
56 openssl_ctx_alloc (void)
57 {
58   return openssl_ctx_alloc_w_thread (vlib_get_thread_index ());
59 }
60
61 static void
62 openssl_ctx_free (tls_ctx_t * ctx)
63 {
64   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
65
66   /* Cleanup ssl ctx unless migrated */
67   if (!ctx->is_migrated)
68     {
69       if (SSL_is_init_finished (oc->ssl) && !ctx->is_passive_close)
70         SSL_shutdown (oc->ssl);
71
72       SSL_free (oc->ssl);
73       vec_free (ctx->srv_hostname);
74
75 #ifdef HAVE_OPENSSL_ASYNC
76   openssl_evt_free (ctx->evt_index, ctx->c_thread_index);
77 #endif
78     }
79
80   pool_put_index (openssl_main.ctx_pool[ctx->c_thread_index],
81                   oc->openssl_ctx_index);
82 }
83
84 static void *
85 openssl_ctx_detach (tls_ctx_t *ctx)
86 {
87   openssl_ctx_t *oc = (openssl_ctx_t *) ctx, *oc_copy;
88
89   oc_copy = clib_mem_alloc (sizeof (*oc_copy));
90   clib_memcpy (oc_copy, oc, sizeof (*oc));
91
92   return oc_copy;
93 }
94
95 static u32
96 openssl_ctx_attach (u32 thread_index, void *ctx_ptr)
97 {
98   openssl_main_t *om = &openssl_main;
99   session_handle_t sh;
100   openssl_ctx_t **oc;
101
102   pool_get (om->ctx_pool[thread_index], oc);
103   /* Free the old instance instead of looking for an empty spot */
104   if (*oc)
105     clib_mem_free (*oc);
106
107   *oc = ctx_ptr;
108   (*oc)->openssl_ctx_index = oc - om->ctx_pool[thread_index];
109   (*oc)->ctx.c_thread_index = thread_index;
110
111   sh = (*oc)->ctx.tls_session_handle;
112   BIO_set_data ((*oc)->rbio, uword_to_pointer (sh, void *));
113   BIO_set_data ((*oc)->wbio, uword_to_pointer (sh, void *));
114
115   return ((*oc)->openssl_ctx_index);
116 }
117
118 tls_ctx_t *
119 openssl_ctx_get (u32 ctx_index)
120 {
121   openssl_ctx_t **ctx;
122   ctx = pool_elt_at_index (openssl_main.ctx_pool[vlib_get_thread_index ()],
123                            ctx_index);
124   return &(*ctx)->ctx;
125 }
126
127 tls_ctx_t *
128 openssl_ctx_get_w_thread (u32 ctx_index, u8 thread_index)
129 {
130   openssl_ctx_t **ctx;
131   ctx = pool_elt_at_index (openssl_main.ctx_pool[thread_index], ctx_index);
132   return &(*ctx)->ctx;
133 }
134
135 static u32
136 openssl_listen_ctx_alloc (void)
137 {
138   openssl_main_t *om = &openssl_main;
139   openssl_listen_ctx_t *lctx;
140
141   pool_get (om->lctx_pool, lctx);
142
143   clib_memset (lctx, 0, sizeof (openssl_listen_ctx_t));
144   lctx->openssl_lctx_index = lctx - om->lctx_pool;
145   return lctx->openssl_lctx_index;
146 }
147
148 static void
149 openssl_listen_ctx_free (openssl_listen_ctx_t * lctx)
150 {
151   pool_put_index (openssl_main.lctx_pool, lctx->openssl_lctx_index);
152 }
153
154 openssl_listen_ctx_t *
155 openssl_lctx_get (u32 lctx_index)
156 {
157   return pool_elt_at_index (openssl_main.lctx_pool, lctx_index);
158 }
159
160 #define ossl_check_err_is_fatal(_ssl, _rv)                                    \
161   if (PREDICT_FALSE (_rv < 0 && SSL_get_error (_ssl, _rv) == SSL_ERROR_SSL))  \
162     return -1;
163
164 static int
165 openssl_read_from_ssl_into_fifo (svm_fifo_t * f, SSL * ssl)
166 {
167   int read, rv, n_fs, i;
168   const int n_segs = 2;
169   svm_fifo_seg_t fs[n_segs];
170   u32 max_enq;
171
172   max_enq = svm_fifo_max_enqueue_prod (f);
173   if (!max_enq)
174     return 0;
175
176   n_fs = svm_fifo_provision_chunks (f, fs, n_segs, max_enq);
177   if (n_fs < 0)
178     return 0;
179
180   /* Return early if we can't read anything */
181   read = SSL_read (ssl, fs[0].data, fs[0].len);
182   if (read <= 0)
183     {
184       ossl_check_err_is_fatal (ssl, read);
185       return 0;
186     }
187
188   for (i = 1; i < n_fs; i++)
189     {
190       rv = SSL_read (ssl, fs[i].data, fs[i].len);
191       read += rv > 0 ? rv : 0;
192
193       if (rv < (int) fs[i].len)
194         {
195           ossl_check_err_is_fatal (ssl, rv);
196           break;
197         }
198     }
199
200   svm_fifo_enqueue_nocopy (f, read);
201
202   return read;
203 }
204
205 static int
206 openssl_write_from_fifo_into_ssl (svm_fifo_t *f, SSL *ssl, u32 max_len)
207 {
208   int wrote = 0, rv, i = 0, len;
209   u32 n_segs = 2;
210   svm_fifo_seg_t fs[n_segs];
211
212   len = svm_fifo_segments (f, 0, fs, &n_segs, max_len);
213   if (len <= 0)
214     return 0;
215
216   while (wrote < len && i < n_segs)
217     {
218       rv = SSL_write (ssl, fs[i].data, fs[i].len);
219       wrote += (rv > 0) ? rv : 0;
220       if (rv < (int) fs[i].len)
221         {
222           ossl_check_err_is_fatal (ssl, rv);
223           break;
224         }
225       i++;
226     }
227
228   if (wrote)
229     svm_fifo_dequeue_drop (f, wrote);
230
231   return wrote;
232 }
233
234 #ifdef HAVE_OPENSSL_ASYNC
235 static int
236 openssl_check_async_status (tls_ctx_t * ctx, openssl_resume_handler * handler,
237                             session_t * session)
238 {
239   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
240   int estatus;
241
242   SSL_get_async_status (oc->ssl, &estatus);
243   if (estatus == ASYNC_STATUS_EAGAIN)
244     {
245       vpp_tls_async_update_event (ctx, 1);
246     }
247   else
248     {
249       vpp_tls_async_update_event (ctx, 0);
250     }
251
252   return 1;
253
254 }
255
256 #endif
257
258 static void
259 openssl_handle_handshake_failure (tls_ctx_t * ctx)
260 {
261   session_t *app_session;
262
263   if (SSL_is_server (((openssl_ctx_t *) ctx)->ssl))
264     {
265       /*
266        * Cleanup pre-allocated app session and close transport
267        */
268       app_session =
269         session_get_if_valid (ctx->c_s_index, ctx->c_thread_index);
270       if (app_session)
271         {
272           session_free (app_session);
273           ctx->no_app_session = 1;
274           ctx->c_s_index = SESSION_INVALID_INDEX;
275           tls_disconnect_transport (ctx);
276         }
277     }
278   else
279     {
280       /*
281        * Also handles cleanup of the pre-allocated session
282        */
283       tls_notify_app_connected (ctx, SESSION_E_TLS_HANDSHAKE);
284       tls_disconnect_transport (ctx);
285     }
286 }
287
288 int
289 openssl_ctx_handshake_rx (tls_ctx_t * ctx, session_t * tls_session)
290 {
291   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
292   int rv = 0, err;
293
294   while (SSL_in_init (oc->ssl))
295     {
296       if (ctx->resume)
297         {
298           ctx->resume = 0;
299         }
300       else if (!svm_fifo_max_dequeue_cons (tls_session->rx_fifo))
301         break;
302
303       rv = SSL_do_handshake (oc->ssl);
304       err = SSL_get_error (oc->ssl, rv);
305
306 #ifdef HAVE_OPENSSL_ASYNC
307       if (err == SSL_ERROR_WANT_ASYNC)
308         {
309           openssl_check_async_status (ctx, openssl_ctx_handshake_rx,
310                                       tls_session);
311         }
312 #endif
313       if (err == SSL_ERROR_SSL)
314         {
315           char buf[512];
316           ERR_error_string (ERR_get_error (), buf);
317           clib_warning ("Err: %s", buf);
318
319           openssl_handle_handshake_failure (ctx);
320           return -1;
321         }
322
323       if (err != SSL_ERROR_WANT_WRITE && err != SSL_ERROR_WANT_READ)
324         break;
325     }
326   TLS_DBG (2, "tls state for %u is %s", oc->openssl_ctx_index,
327            SSL_state_string_long (oc->ssl));
328
329   if (SSL_in_init (oc->ssl))
330     return -1;
331
332   /*
333    * Handshake complete
334    */
335   if (!SSL_is_server (oc->ssl))
336     {
337       /*
338        * Verify server certificate
339        */
340       if ((rv = SSL_get_verify_result (oc->ssl)) != X509_V_OK)
341         {
342           TLS_DBG (1, " failed verify: %s\n",
343                    X509_verify_cert_error_string (rv));
344
345           /*
346            * Presence of hostname enforces strict certificate verification
347            */
348           if (ctx->srv_hostname)
349             {
350               openssl_handle_handshake_failure (ctx);
351               return -1;
352             }
353         }
354       tls_notify_app_connected (ctx, SESSION_E_NONE);
355     }
356   else
357     {
358       /* Need to check transport status */
359       if (ctx->is_passive_close)
360         {
361           openssl_handle_handshake_failure (ctx);
362           return -1;
363         }
364
365       /* Accept failed, cleanup */
366       if (tls_notify_app_accept (ctx))
367         {
368           ctx->c_s_index = SESSION_INVALID_INDEX;
369           tls_disconnect_transport (ctx);
370           return -1;
371         }
372     }
373
374   TLS_DBG (1, "Handshake for %u complete. TLS cipher is %s",
375            oc->openssl_ctx_index, SSL_get_cipher (oc->ssl));
376   return rv;
377 }
378
379 static void
380 openssl_confirm_app_close (tls_ctx_t * ctx)
381 {
382   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
383   SSL_shutdown (oc->ssl);
384   tls_disconnect_transport (ctx);
385   session_transport_closed_notify (&ctx->connection);
386 }
387
388 static int
389 openssl_ctx_write_tls (tls_ctx_t *ctx, session_t *app_session,
390                        transport_send_params_t *sp)
391 {
392   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
393   u32 deq_max, space, enq_buf;
394   session_t *ts;
395   int wrote = 0;
396   svm_fifo_t *f;
397
398   ts = session_get_from_handle (ctx->tls_session_handle);
399   space = svm_fifo_max_enqueue_prod (ts->tx_fifo);
400   /* Leave a bit of extra space for tls ctrl data, if any needed */
401   space = clib_max ((int) space - TLSO_CTRL_BYTES, 0);
402
403   f = app_session->tx_fifo;
404
405   deq_max = svm_fifo_max_dequeue_cons (f);
406   deq_max = clib_min (deq_max, space);
407   if (!deq_max)
408     goto check_tls_fifo;
409
410   deq_max = clib_min (deq_max, sp->max_burst_size);
411
412   /* Make sure tcp's tx fifo can actually buffer all bytes to be dequeued.
413    * If under memory pressure, tls's fifo segment might not be able to
414    * allocate the chunks needed. This also avoids errors from the underlying
415    * custom bio to the ssl infra which at times can get stuck. */
416   if (svm_fifo_provision_chunks (ts->tx_fifo, 0, 0, deq_max + TLSO_CTRL_BYTES))
417     goto check_tls_fifo;
418
419   wrote = openssl_write_from_fifo_into_ssl (f, oc->ssl, deq_max);
420
421   /* Unrecoverable protocol error. Reset connection */
422   if (PREDICT_FALSE (wrote < 0))
423     {
424       tls_notify_app_io_error (ctx);
425       return 0;
426     }
427
428   if (!wrote)
429     goto check_tls_fifo;
430
431   if (svm_fifo_needs_deq_ntf (f, wrote))
432     session_dequeue_notify (app_session);
433
434 check_tls_fifo:
435
436   if (PREDICT_FALSE (ctx->app_closed && BIO_ctrl_pending (oc->rbio) <= 0))
437     openssl_confirm_app_close (ctx);
438
439   /* Deschedule and wait for deq notification if fifo is almost full */
440   enq_buf = clib_min (svm_fifo_size (ts->tx_fifo) / 2, TLSO_MIN_ENQ_SPACE);
441   if (space < wrote + enq_buf)
442     {
443       svm_fifo_add_want_deq_ntf (ts->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
444       transport_connection_deschedule (&ctx->connection);
445       sp->flags |= TRANSPORT_SND_F_DESCHED;
446     }
447   else
448     /* Request tx reschedule of the app session */
449     app_session->flags |= SESSION_F_CUSTOM_TX;
450
451   return wrote;
452 }
453
454 static int
455 openssl_ctx_write_dtls (tls_ctx_t *ctx, session_t *app_session,
456                         transport_send_params_t *sp)
457 {
458   openssl_main_t *om = &openssl_main;
459   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
460   u32 read = 0, to_deq, dgram_sz, enq_max;
461   session_dgram_pre_hdr_t hdr;
462   session_t *us;
463   int wrote, rv;
464   u8 *buf;
465
466   us = session_get_from_handle (ctx->tls_session_handle);
467   to_deq = svm_fifo_max_dequeue_cons (app_session->tx_fifo);
468   buf = om->tx_bufs[ctx->c_thread_index];
469
470   while (to_deq > 0)
471     {
472       /* Peeking only pre-header dgram because the session is connected */
473       rv = svm_fifo_peek (app_session->tx_fifo, 0, sizeof (hdr), (u8 *) &hdr);
474       ASSERT (rv == sizeof (hdr) && hdr.data_length < vec_len (buf));
475       ASSERT (to_deq >= hdr.data_length + SESSION_CONN_HDR_LEN);
476
477       dgram_sz = hdr.data_length + SESSION_CONN_HDR_LEN;
478       enq_max = dgram_sz + TLSO_CTRL_BYTES;
479       if (svm_fifo_max_enqueue_prod (us->tx_fifo) < enq_max ||
480           svm_fifo_provision_chunks (us->tx_fifo, 0, 0, enq_max))
481         {
482           svm_fifo_add_want_deq_ntf (us->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
483           transport_connection_deschedule (&ctx->connection);
484           sp->flags |= TRANSPORT_SND_F_DESCHED;
485           goto done;
486         }
487
488       rv = svm_fifo_peek (app_session->tx_fifo, SESSION_CONN_HDR_LEN,
489                           hdr.data_length, buf);
490       ASSERT (rv == hdr.data_length);
491       svm_fifo_dequeue_drop (app_session->tx_fifo, dgram_sz);
492
493       wrote = SSL_write (oc->ssl, buf, rv);
494       ASSERT (wrote > 0);
495
496       read += rv;
497       to_deq -= dgram_sz;
498     }
499
500 done:
501
502   if (svm_fifo_needs_deq_ntf (app_session->tx_fifo, read))
503     session_dequeue_notify (app_session);
504
505   if (read)
506     tls_add_vpp_q_tx_evt (us);
507
508   if (PREDICT_FALSE (ctx->app_closed &&
509                      !svm_fifo_max_enqueue_prod (us->rx_fifo)))
510     openssl_confirm_app_close (ctx);
511
512   return read;
513 }
514
515 static inline int
516 openssl_ctx_write (tls_ctx_t *ctx, session_t *app_session,
517                    transport_send_params_t *sp)
518 {
519   if (ctx->tls_type == TRANSPORT_PROTO_TLS)
520     return openssl_ctx_write_tls (ctx, app_session, sp);
521   else
522     return openssl_ctx_write_dtls (ctx, app_session, sp);
523 }
524
525 static inline int
526 openssl_ctx_read_tls (tls_ctx_t *ctx, session_t *tls_session)
527 {
528   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
529   session_t *app_session;
530   int read;
531   svm_fifo_t *f;
532
533   if (PREDICT_FALSE (SSL_in_init (oc->ssl)))
534     {
535       if (openssl_ctx_handshake_rx (ctx, tls_session) < 0)
536         return 0;
537     }
538
539   app_session = session_get_from_handle (ctx->app_session_handle);
540   f = app_session->rx_fifo;
541
542   read = openssl_read_from_ssl_into_fifo (f, oc->ssl);
543
544   /* Unrecoverable protocol error. Reset connection */
545   if (PREDICT_FALSE (read < 0))
546     {
547       tls_notify_app_io_error (ctx);
548       return 0;
549     }
550
551   /* If handshake just completed, session may still be in accepting state */
552   if (read && app_session->session_state >= SESSION_STATE_READY)
553     tls_notify_app_enqueue (ctx, app_session);
554
555   if ((SSL_pending (oc->ssl) > 0) ||
556       svm_fifo_max_dequeue_cons (tls_session->rx_fifo))
557     tls_add_vpp_q_builtin_rx_evt (tls_session);
558
559   return read;
560 }
561
562 static inline int
563 openssl_ctx_read_dtls (tls_ctx_t *ctx, session_t *us)
564 {
565   openssl_main_t *om = &openssl_main;
566   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
567   session_dgram_hdr_t hdr;
568   session_t *app_session;
569   u32 wrote = 0;
570   int read, rv;
571   u8 *buf;
572
573   if (PREDICT_FALSE (SSL_in_init (oc->ssl)))
574     {
575       u32 us_index = us->session_index;
576       if (openssl_ctx_handshake_rx (ctx, us) < 0)
577         return 0;
578       /* Session pool might grow when allocating the app's session */
579       us = session_get (us_index, ctx->c_thread_index);
580     }
581
582   buf = om->rx_bufs[ctx->c_thread_index];
583   app_session = session_get_from_handle (ctx->app_session_handle);
584   svm_fifo_fill_chunk_list (app_session->rx_fifo);
585
586   while (svm_fifo_max_dequeue_cons (us->rx_fifo) > 0)
587     {
588       if (svm_fifo_max_enqueue_prod (app_session->rx_fifo) < DTLSO_MAX_DGRAM)
589         {
590           tls_add_vpp_q_builtin_rx_evt (us);
591           goto done;
592         }
593
594       read = SSL_read (oc->ssl, buf, vec_len (buf));
595       if (PREDICT_FALSE (read <= 0))
596         {
597           if (read < 0)
598             tls_add_vpp_q_builtin_rx_evt (us);
599           goto done;
600         }
601       wrote += read;
602
603       hdr.data_length = read;
604       hdr.data_offset = 0;
605
606       svm_fifo_seg_t segs[2] = { { (u8 *) &hdr, sizeof (hdr) },
607                                  { buf, read } };
608
609       rv = svm_fifo_enqueue_segments (app_session->rx_fifo, segs, 2,
610                                       0 /* allow partial */);
611       ASSERT (rv > 0);
612     }
613
614 done:
615
616   /* If handshake just completed, session may still be in accepting state */
617   if (app_session->session_state >= SESSION_STATE_READY)
618     tls_notify_app_enqueue (ctx, app_session);
619
620   return wrote;
621 }
622
623 static inline int
624 openssl_ctx_read (tls_ctx_t *ctx, session_t *ts)
625 {
626   if (ctx->tls_type == TRANSPORT_PROTO_TLS)
627     return openssl_ctx_read_tls (ctx, ts);
628   else
629     return openssl_ctx_read_dtls (ctx, ts);
630 }
631
632 static int
633 openssl_set_ckpair (SSL *ssl, u32 ckpair_index)
634 {
635   app_cert_key_pair_t *ckpair;
636   BIO *cert_bio;
637   EVP_PKEY *pkey;
638   X509 *srvcert;
639
640   /* Configure a ckpair index only if non-default/test provided */
641   if (ckpair_index == 0)
642     return 0;
643
644   ckpair = app_cert_key_pair_get_if_valid (ckpair_index);
645   if (!ckpair)
646     return -1;
647
648   if (!ckpair->cert || !ckpair->key)
649     {
650       TLS_DBG (1, "tls cert and/or key not configured");
651       return -1;
652     }
653   /*
654    * Set the key and cert
655    */
656   cert_bio = BIO_new (BIO_s_mem ());
657   BIO_write (cert_bio, ckpair->cert, vec_len (ckpair->cert));
658   srvcert = PEM_read_bio_X509 (cert_bio, NULL, NULL, NULL);
659   if (!srvcert)
660     {
661       clib_warning ("unable to parse certificate");
662       return -1;
663     }
664   SSL_use_certificate (ssl, srvcert);
665   BIO_free (cert_bio);
666
667   cert_bio = BIO_new (BIO_s_mem ());
668   BIO_write (cert_bio, ckpair->key, vec_len (ckpair->key));
669   pkey = PEM_read_bio_PrivateKey (cert_bio, NULL, NULL, NULL);
670   if (!pkey)
671     {
672       clib_warning ("unable to parse pkey");
673       return -1;
674     }
675   SSL_use_PrivateKey (ssl, pkey);
676   BIO_free (cert_bio);
677   TLS_DBG (1, "TLS client using ckpair index: %d", ckpair_index);
678   return 0;
679 }
680
681 static int
682 openssl_client_init_verify (SSL *ssl, const char *srv_hostname,
683                             int set_hostname_verification,
684                             int set_hostname_strict_check)
685 {
686   if (set_hostname_verification)
687     {
688       X509_VERIFY_PARAM *param = SSL_get0_param (ssl);
689       if (!param)
690         {
691           TLS_DBG (1, "Couldn't fetch SSL param");
692           return -1;
693         }
694
695       if (set_hostname_strict_check)
696         X509_VERIFY_PARAM_set_hostflags (param,
697                                          X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS);
698
699       if (!X509_VERIFY_PARAM_set1_host (param, srv_hostname, 0))
700         {
701           TLS_DBG (1, "Couldn't set hostname for verification");
702           return -1;
703         }
704       SSL_set_verify (ssl, SSL_VERIFY_PEER, 0);
705     }
706   if (!SSL_set_tlsext_host_name (ssl, srv_hostname))
707     {
708       TLS_DBG (1, "Couldn't set hostname");
709       return -1;
710     }
711   return 0;
712 }
713
714 static int
715 openssl_ctx_init_client (tls_ctx_t * ctx)
716 {
717   long flags = SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | SSL_OP_NO_COMPRESSION;
718   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
719   openssl_main_t *om = &openssl_main;
720   const SSL_METHOD *method;
721   int rv, err;
722
723   method = ctx->tls_type == TRANSPORT_PROTO_TLS ? SSLv23_client_method () :
724                                                   DTLS_client_method ();
725   if (method == NULL)
726     {
727       TLS_DBG (1, "(D)TLS_method returned null");
728       return -1;
729     }
730
731   oc->ssl_ctx = SSL_CTX_new (method);
732   if (oc->ssl_ctx == NULL)
733     {
734       TLS_DBG (1, "SSL_CTX_new returned null");
735       return -1;
736     }
737
738   SSL_CTX_set_ecdh_auto (oc->ssl_ctx, 1);
739   SSL_CTX_set_mode (oc->ssl_ctx, SSL_MODE_ENABLE_PARTIAL_WRITE);
740 #ifdef HAVE_OPENSSL_ASYNC
741   if (om->async)
742     SSL_CTX_set_mode (oc->ssl_ctx, SSL_MODE_ASYNC);
743 #endif
744   rv = SSL_CTX_set_cipher_list (oc->ssl_ctx, (const char *) om->ciphers);
745   if (rv != 1)
746     {
747       TLS_DBG (1, "Couldn't set cipher");
748       return -1;
749     }
750
751   SSL_CTX_set_options (oc->ssl_ctx, flags);
752   SSL_CTX_set_cert_store (oc->ssl_ctx, om->cert_store);
753
754   oc->ssl = SSL_new (oc->ssl_ctx);
755   if (oc->ssl == NULL)
756     {
757       TLS_DBG (1, "Couldn't initialize ssl struct");
758       return -1;
759     }
760
761   if (ctx->tls_type == TRANSPORT_PROTO_TLS)
762     {
763       oc->rbio = BIO_new_tls (ctx->tls_session_handle);
764       oc->wbio = BIO_new_tls (ctx->tls_session_handle);
765     }
766   else
767     {
768       oc->rbio = BIO_new_dtls (ctx->tls_session_handle);
769       oc->wbio = BIO_new_dtls (ctx->tls_session_handle);
770     }
771
772   SSL_set_bio (oc->ssl, oc->wbio, oc->rbio);
773   SSL_set_connect_state (oc->ssl);
774
775   /* Hostname validation and strict check by name are disabled by default */
776   rv = openssl_client_init_verify (oc->ssl, (const char *) ctx->srv_hostname,
777                                    0, 0);
778   if (rv)
779     {
780       TLS_DBG (1, "ERROR:verify init failed:%d", rv);
781       return -1;
782     }
783   if (openssl_set_ckpair (oc->ssl, ctx->ckpair_index))
784     {
785       TLS_DBG (1, "Couldn't set client certificate-key pair");
786     }
787
788   /*
789    * 2. Do the first steps in the handshake.
790    */
791   TLS_DBG (1, "Initiating handshake for [%u]%u", ctx->c_thread_index,
792            oc->openssl_ctx_index);
793
794 #ifdef HAVE_OPENSSL_ASYNC
795   session_t *tls_session = session_get_from_handle (ctx->tls_session_handle);
796   vpp_tls_async_init_event (ctx, openssl_ctx_handshake_rx, tls_session);
797 #endif
798   while (1)
799     {
800       rv = SSL_do_handshake (oc->ssl);
801       err = SSL_get_error (oc->ssl, rv);
802 #ifdef HAVE_OPENSSL_ASYNC
803       if (err == SSL_ERROR_WANT_ASYNC)
804         {
805           openssl_check_async_status (ctx, openssl_ctx_handshake_rx,
806                                       tls_session);
807           break;
808         }
809 #endif
810       if (err != SSL_ERROR_WANT_WRITE)
811         break;
812     }
813
814   TLS_DBG (2, "tls state for [%u]%u is su", ctx->c_thread_index,
815            oc->openssl_ctx_index, SSL_state_string_long (oc->ssl));
816   return 0;
817 }
818
819 static int
820 openssl_start_listen (tls_ctx_t * lctx)
821 {
822   const SSL_METHOD *method;
823   SSL_CTX *ssl_ctx;
824   int rv;
825   BIO *cert_bio;
826   X509 *srvcert;
827   EVP_PKEY *pkey;
828   u32 olc_index;
829   openssl_listen_ctx_t *olc;
830   app_cert_key_pair_t *ckpair;
831
832   long flags = SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | SSL_OP_NO_COMPRESSION;
833   openssl_main_t *om = &openssl_main;
834
835   ckpair = app_cert_key_pair_get_if_valid (lctx->ckpair_index);
836   if (!ckpair)
837     return -1;
838
839   if (!ckpair->cert || !ckpair->key)
840     {
841       TLS_DBG (1, "tls cert and/or key not configured %d",
842                lctx->parent_app_wrk_index);
843       return -1;
844     }
845
846   method = lctx->tls_type == TRANSPORT_PROTO_TLS ? SSLv23_server_method () :
847                                                    DTLS_server_method ();
848   ssl_ctx = SSL_CTX_new (method);
849   if (!ssl_ctx)
850     {
851       clib_warning ("Unable to create SSL context");
852       return -1;
853     }
854
855   SSL_CTX_set_mode (ssl_ctx, SSL_MODE_ENABLE_PARTIAL_WRITE);
856 #ifdef HAVE_OPENSSL_ASYNC
857   if (om->async)
858     {
859       SSL_CTX_set_mode (ssl_ctx, SSL_MODE_ASYNC);
860       SSL_CTX_set_async_callback (ssl_ctx, tls_async_openssl_callback);
861     }
862 #endif
863   SSL_CTX_set_options (ssl_ctx, flags);
864   SSL_CTX_set_ecdh_auto (ssl_ctx, 1);
865
866   rv = SSL_CTX_set_cipher_list (ssl_ctx, (const char *) om->ciphers);
867   if (rv != 1)
868     {
869       TLS_DBG (1, "Couldn't set cipher");
870       return -1;
871     }
872
873   /* use the default OpenSSL built-in DH parameters */
874   rv = SSL_CTX_set_dh_auto (ssl_ctx, 1);
875   if (rv != 1)
876     {
877       TLS_DBG (1, "Couldn't set temp DH parameters");
878       return -1;
879     }
880
881   /*
882    * Set the key and cert
883    */
884   cert_bio = BIO_new (BIO_s_mem ());
885   if (!cert_bio)
886     {
887       clib_warning ("unable to allocate memory");
888       return -1;
889     }
890   BIO_write (cert_bio, ckpair->cert, vec_len (ckpair->cert));
891   srvcert = PEM_read_bio_X509 (cert_bio, NULL, NULL, NULL);
892   if (!srvcert)
893     {
894       clib_warning ("unable to parse certificate");
895       goto err;
896     }
897   rv = SSL_CTX_use_certificate (ssl_ctx, srvcert);
898   if (rv != 1)
899     {
900       clib_warning ("unable to use SSL certificate");
901       goto err;
902     }
903
904   BIO_free (cert_bio);
905
906   cert_bio = BIO_new (BIO_s_mem ());
907   if (!cert_bio)
908     {
909       clib_warning ("unable to allocate memory");
910       return -1;
911     }
912   BIO_write (cert_bio, ckpair->key, vec_len (ckpair->key));
913   pkey = PEM_read_bio_PrivateKey (cert_bio, NULL, NULL, NULL);
914   if (!pkey)
915     {
916       clib_warning ("unable to parse pkey");
917       goto err;
918     }
919   rv = SSL_CTX_use_PrivateKey (ssl_ctx, pkey);
920   if (rv != 1)
921     {
922       clib_warning ("unable to use SSL PrivateKey");
923       goto err;
924     }
925
926   BIO_free (cert_bio);
927
928   olc_index = openssl_listen_ctx_alloc ();
929   olc = openssl_lctx_get (olc_index);
930   olc->ssl_ctx = ssl_ctx;
931   olc->srvcert = srvcert;
932   olc->pkey = pkey;
933
934   /* store SSL_CTX into TLS level structure */
935   lctx->tls_ssl_ctx = olc_index;
936
937   return 0;
938
939 err:
940   if (cert_bio)
941     BIO_free (cert_bio);
942   return -1;
943 }
944
945 static int
946 openssl_stop_listen (tls_ctx_t * lctx)
947 {
948   u32 olc_index;
949   openssl_listen_ctx_t *olc;
950
951   olc_index = lctx->tls_ssl_ctx;
952   olc = openssl_lctx_get (olc_index);
953
954   X509_free (olc->srvcert);
955   EVP_PKEY_free (olc->pkey);
956
957   SSL_CTX_free (olc->ssl_ctx);
958   openssl_listen_ctx_free (olc);
959
960   return 0;
961 }
962
963 static int
964 openssl_ctx_init_server (tls_ctx_t * ctx)
965 {
966   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
967   u32 olc_index = ctx->tls_ssl_ctx;
968   openssl_listen_ctx_t *olc;
969   int rv, err;
970
971   /* Start a new connection */
972
973   olc = openssl_lctx_get (olc_index);
974   oc->ssl = SSL_new (olc->ssl_ctx);
975   if (oc->ssl == NULL)
976     {
977       TLS_DBG (1, "Couldn't initialize ssl struct");
978       return -1;
979     }
980
981   if (ctx->tls_type == TRANSPORT_PROTO_TLS)
982     {
983       oc->rbio = BIO_new_tls (ctx->tls_session_handle);
984       oc->wbio = BIO_new_tls (ctx->tls_session_handle);
985     }
986   else
987     {
988       oc->rbio = BIO_new_dtls (ctx->tls_session_handle);
989       oc->wbio = BIO_new_dtls (ctx->tls_session_handle);
990     }
991
992   SSL_set_bio (oc->ssl, oc->wbio, oc->rbio);
993   SSL_set_accept_state (oc->ssl);
994
995   TLS_DBG (1, "Initiating handshake for [%u]%u", ctx->c_thread_index,
996            oc->openssl_ctx_index);
997
998 #ifdef HAVE_OPENSSL_ASYNC
999   session_t *tls_session = session_get_from_handle (ctx->tls_session_handle);
1000   vpp_tls_async_init_event (ctx, openssl_ctx_handshake_rx, tls_session);
1001 #endif
1002   while (1)
1003     {
1004       rv = SSL_do_handshake (oc->ssl);
1005       err = SSL_get_error (oc->ssl, rv);
1006 #ifdef HAVE_OPENSSL_ASYNC
1007       if (err == SSL_ERROR_WANT_ASYNC)
1008         {
1009           openssl_check_async_status (ctx, openssl_ctx_handshake_rx,
1010                                       tls_session);
1011           break;
1012         }
1013 #endif
1014       if (err != SSL_ERROR_WANT_WRITE)
1015         break;
1016     }
1017
1018   TLS_DBG (2, "tls state for [%u]%u is su", ctx->c_thread_index,
1019            oc->openssl_ctx_index, SSL_state_string_long (oc->ssl));
1020   return 0;
1021 }
1022
1023 static u8
1024 openssl_handshake_is_over (tls_ctx_t * ctx)
1025 {
1026   openssl_ctx_t *mc = (openssl_ctx_t *) ctx;
1027   if (!mc->ssl)
1028     return 0;
1029   return SSL_is_init_finished (mc->ssl);
1030 }
1031
1032 static int
1033 openssl_transport_close (tls_ctx_t * ctx)
1034 {
1035 #ifdef HAVE_OPENSSL_ASYNC
1036   if (vpp_openssl_is_inflight (ctx))
1037     return 0;
1038 #endif
1039
1040   if (!openssl_handshake_is_over (ctx))
1041     {
1042       openssl_handle_handshake_failure (ctx);
1043       return 0;
1044     }
1045   session_transport_closing_notify (&ctx->connection);
1046   return 0;
1047 }
1048
1049 static int
1050 openssl_app_close (tls_ctx_t * ctx)
1051 {
1052   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
1053   session_t *app_session;
1054
1055   /* Wait for all data to be written to tcp */
1056   app_session = session_get_from_handle (ctx->app_session_handle);
1057   if (BIO_ctrl_pending (oc->rbio) <= 0
1058       && !svm_fifo_max_dequeue_cons (app_session->tx_fifo))
1059     openssl_confirm_app_close (ctx);
1060   else
1061     ctx->app_closed = 1;
1062   return 0;
1063 }
1064
1065 int
1066 tls_init_ca_chain (void)
1067 {
1068   openssl_main_t *om = &openssl_main;
1069   tls_main_t *tm = vnet_tls_get_main ();
1070   BIO *cert_bio;
1071   X509 *testcert;
1072   int rv;
1073
1074   if (access (tm->ca_cert_path, F_OK | R_OK) == -1)
1075     {
1076       clib_warning ("Could not initialize TLS CA certificates");
1077       return -1;
1078     }
1079
1080   if (!(om->cert_store = X509_STORE_new ()))
1081     {
1082       clib_warning ("failed to create cert store");
1083       return -1;
1084     }
1085
1086 #if OPENSSL_VERSION_NUMBER >= 0x30000000L
1087   rv = X509_STORE_load_file (om->cert_store, tm->ca_cert_path);
1088 #else
1089   rv = X509_STORE_load_locations (om->cert_store, tm->ca_cert_path, 0);
1090 #endif
1091
1092   if (rv < 0)
1093     {
1094       clib_warning ("failed to load ca certificate");
1095     }
1096
1097   if (tm->use_test_cert_in_ca)
1098     {
1099       cert_bio = BIO_new (BIO_s_mem ());
1100       BIO_write (cert_bio, test_srv_crt_rsa, test_srv_crt_rsa_len);
1101       testcert = PEM_read_bio_X509 (cert_bio, NULL, NULL, NULL);
1102       if (!testcert)
1103         {
1104           clib_warning ("unable to parse certificate");
1105           return -1;
1106         }
1107       X509_STORE_add_cert (om->cert_store, testcert);
1108       rv = 0;
1109     }
1110   return (rv < 0 ? -1 : 0);
1111 }
1112
1113 int
1114 openssl_reinit_ca_chain (void)
1115 {
1116   openssl_main_t *om = &openssl_main;
1117
1118   /* Remove/free existing x509_store */
1119   if (om->cert_store)
1120     {
1121       X509_STORE_free (om->cert_store);
1122     }
1123   return tls_init_ca_chain ();
1124 }
1125
1126 const static tls_engine_vft_t openssl_engine = {
1127   .ctx_alloc = openssl_ctx_alloc,
1128   .ctx_alloc_w_thread = openssl_ctx_alloc_w_thread,
1129   .ctx_free = openssl_ctx_free,
1130   .ctx_attach = openssl_ctx_attach,
1131   .ctx_detach = openssl_ctx_detach,
1132   .ctx_get = openssl_ctx_get,
1133   .ctx_get_w_thread = openssl_ctx_get_w_thread,
1134   .ctx_init_server = openssl_ctx_init_server,
1135   .ctx_init_client = openssl_ctx_init_client,
1136   .ctx_write = openssl_ctx_write,
1137   .ctx_read = openssl_ctx_read,
1138   .ctx_handshake_is_over = openssl_handshake_is_over,
1139   .ctx_start_listen = openssl_start_listen,
1140   .ctx_stop_listen = openssl_stop_listen,
1141   .ctx_transport_close = openssl_transport_close,
1142   .ctx_app_close = openssl_app_close,
1143   .ctx_reinit_cachain = openssl_reinit_ca_chain,
1144 };
1145
1146 int
1147 tls_openssl_set_ciphers (char *ciphers)
1148 {
1149   openssl_main_t *om = &openssl_main;
1150   int i;
1151
1152   if (!ciphers)
1153     {
1154       return -1;
1155     }
1156
1157   vec_validate (om->ciphers, strlen (ciphers));
1158   for (i = 0; i < vec_len (om->ciphers) - 1; i++)
1159     {
1160       om->ciphers[i] = toupper (ciphers[i]);
1161     }
1162
1163   return 0;
1164
1165 }
1166
1167 static clib_error_t *
1168 tls_openssl_init (vlib_main_t * vm)
1169 {
1170   vlib_thread_main_t *vtm = vlib_get_thread_main ();
1171   openssl_main_t *om = &openssl_main;
1172   clib_error_t *error = 0;
1173   u32 num_threads, i;
1174
1175   error = tls_openssl_api_init (vm);
1176   num_threads = 1 /* main thread */  + vtm->n_threads;
1177
1178   SSL_library_init ();
1179   SSL_load_error_strings ();
1180
1181   vec_validate (om->ctx_pool, num_threads - 1);
1182   vec_validate (om->rx_bufs, num_threads - 1);
1183   vec_validate (om->tx_bufs, num_threads - 1);
1184   for (i = 0; i < num_threads; i++)
1185     {
1186       vec_validate (om->rx_bufs[i], DTLSO_MAX_DGRAM);
1187       vec_validate (om->tx_bufs[i], DTLSO_MAX_DGRAM);
1188     }
1189   tls_register_engine (&openssl_engine, CRYPTO_ENGINE_OPENSSL);
1190
1191   om->engine_init = 0;
1192
1193   /* default ciphers */
1194   tls_openssl_set_ciphers
1195     ("ALL:!ADH:!LOW:!EXP:!MD5:!RC4-SHA:!DES-CBC3-SHA:@STRENGTH");
1196
1197   if (tls_init_ca_chain ())
1198     {
1199       clib_warning ("failed to initialize TLS CA chain");
1200       return 0;
1201     }
1202
1203   return error;
1204 }
1205 /* *INDENT-OFF* */
1206 VLIB_INIT_FUNCTION (tls_openssl_init) =
1207 {
1208   .runs_after = VLIB_INITS("tls_init"),
1209 };
1210 /* *INDENT-ON* */
1211
1212 #ifdef HAVE_OPENSSL_ASYNC
1213 static clib_error_t *
1214 tls_openssl_set_command_fn (vlib_main_t * vm, unformat_input_t * input,
1215                             vlib_cli_command_t * cmd)
1216 {
1217   openssl_main_t *om = &openssl_main;
1218   char *engine_name = NULL;
1219   char *engine_alg = NULL;
1220   char *ciphers = NULL;
1221   u8 engine_name_set = 0;
1222   int i, async = 0;
1223
1224   /* By present, it is not allowed to configure engine again after running */
1225   if (om->engine_init)
1226     {
1227       clib_warning ("engine has started!\n");
1228       return clib_error_return
1229         (0, "engine has started, and no config is accepted");
1230     }
1231
1232   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1233     {
1234       if (unformat (input, "engine %s", &engine_name))
1235         {
1236           engine_name_set = 1;
1237         }
1238       else if (unformat (input, "async"))
1239         {
1240           async = 1;
1241         }
1242       else if (unformat (input, "alg %s", &engine_alg))
1243         {
1244           for (i = 0; i < strnlen (engine_alg, MAX_CRYPTO_LEN); i++)
1245             engine_alg[i] = toupper (engine_alg[i]);
1246         }
1247       else if (unformat (input, "ciphers %s", &ciphers))
1248         {
1249           tls_openssl_set_ciphers (ciphers);
1250         }
1251       else
1252         return clib_error_return (0, "failed: unknown input `%U'",
1253                                   format_unformat_error, input);
1254     }
1255
1256   /* reset parameters if engine is not configured */
1257   if (!engine_name_set)
1258     {
1259       clib_warning ("No engine provided! \n");
1260       async = 0;
1261     }
1262   else
1263     {
1264       vnet_session_enable_disable (vm, 1);
1265       if (openssl_engine_register (engine_name, engine_alg, async) < 0)
1266         {
1267           return clib_error_return (0, "Failed to register %s polling",
1268                                     engine_name);
1269         }
1270       else
1271         {
1272           vlib_cli_output (vm, "Successfully register engine %s\n",
1273                            engine_name);
1274         }
1275     }
1276   om->async = async;
1277
1278   return 0;
1279 }
1280
1281 /* *INDENT-OFF* */
1282 VLIB_CLI_COMMAND (tls_openssl_set_command, static) =
1283 {
1284   .path = "tls openssl set",
1285   .short_help = "tls openssl set [engine <engine name>] [alg [algorithm] [async]",
1286   .function = tls_openssl_set_command_fn,
1287 };
1288 /* *INDENT-ON* */
1289 #endif
1290
1291 /* *INDENT-OFF* */
1292 VLIB_PLUGIN_REGISTER () = {
1293     .version = VPP_BUILD_VER,
1294     .description = "Transport Layer Security (TLS) Engine, OpenSSL Based",
1295 };
1296 /* *INDENT-ON* */
1297
1298 /*
1299  * fd.io coding-style-patch-verification: ON
1300  *
1301  * Local Variables:
1302  * eval: (c-set-style "gnu")
1303  * End:
1304  */