session: cleanup part 1
[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 #ifdef HAVE_OPENSSL_ASYNC
20 #include <openssl/async.h>
21 #endif
22 #include <dlfcn.h>
23 #include <vnet/plugin/plugin.h>
24 #include <vpp/app/version.h>
25 #include <vnet/tls/tls.h>
26 #include <ctype.h>
27 #include <tlsopenssl/tls_openssl.h>
28
29 #define MAX_CRYPTO_LEN 16
30
31 static openssl_main_t openssl_main;
32 static u32
33 openssl_ctx_alloc (void)
34 {
35   u8 thread_index = vlib_get_thread_index ();
36   openssl_main_t *tm = &openssl_main;
37   openssl_ctx_t **ctx;
38
39   pool_get (tm->ctx_pool[thread_index], ctx);
40   if (!(*ctx))
41     *ctx = clib_mem_alloc (sizeof (openssl_ctx_t));
42
43   clib_memset (*ctx, 0, sizeof (openssl_ctx_t));
44   (*ctx)->ctx.c_thread_index = thread_index;
45   (*ctx)->ctx.tls_ctx_engine = TLS_ENGINE_OPENSSL;
46   (*ctx)->ctx.app_session_handle = SESSION_INVALID_HANDLE;
47   (*ctx)->openssl_ctx_index = ctx - tm->ctx_pool[thread_index];
48   return ((*ctx)->openssl_ctx_index);
49 }
50
51 static void
52 openssl_ctx_free (tls_ctx_t * ctx)
53 {
54   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
55
56   if (SSL_is_init_finished (oc->ssl) && !ctx->is_passive_close)
57     SSL_shutdown (oc->ssl);
58
59   SSL_free (oc->ssl);
60
61   pool_put_index (openssl_main.ctx_pool[ctx->c_thread_index],
62                   oc->openssl_ctx_index);
63 }
64
65 tls_ctx_t *
66 openssl_ctx_get (u32 ctx_index)
67 {
68   openssl_ctx_t **ctx;
69   ctx = pool_elt_at_index (openssl_main.ctx_pool[vlib_get_thread_index ()],
70                            ctx_index);
71   return &(*ctx)->ctx;
72 }
73
74 tls_ctx_t *
75 openssl_ctx_get_w_thread (u32 ctx_index, u8 thread_index)
76 {
77   openssl_ctx_t **ctx;
78   ctx = pool_elt_at_index (openssl_main.ctx_pool[thread_index], ctx_index);
79   return &(*ctx)->ctx;
80 }
81
82 static u32
83 openssl_listen_ctx_alloc (void)
84 {
85   openssl_main_t *om = &openssl_main;
86   openssl_listen_ctx_t *lctx;
87
88   pool_get (om->lctx_pool, lctx);
89
90   clib_memset (lctx, 0, sizeof (openssl_listen_ctx_t));
91   lctx->openssl_lctx_index = lctx - om->lctx_pool;
92   return lctx->openssl_lctx_index;
93 }
94
95 static void
96 openssl_listen_ctx_free (openssl_listen_ctx_t * lctx)
97 {
98   pool_put_index (openssl_main.lctx_pool, lctx->openssl_lctx_index);
99 }
100
101 openssl_listen_ctx_t *
102 openssl_lctx_get (u32 lctx_index)
103 {
104   return pool_elt_at_index (openssl_main.lctx_pool, lctx_index);
105 }
106
107 static int
108 openssl_try_handshake_read (openssl_ctx_t * oc, session_t * tls_session)
109 {
110   u32 deq_max, deq_now;
111   svm_fifo_t *f;
112   int wrote, rv;
113
114   f = tls_session->rx_fifo;
115   deq_max = svm_fifo_max_dequeue (f);
116   if (!deq_max)
117     return 0;
118
119   deq_now = clib_min (svm_fifo_max_read_chunk (f), deq_max);
120   wrote = BIO_write (oc->wbio, svm_fifo_head (f), deq_now);
121   if (wrote <= 0)
122     return 0;
123
124   svm_fifo_dequeue_drop (f, wrote);
125   if (wrote < deq_max)
126     {
127       deq_now = clib_min (svm_fifo_max_read_chunk (f), deq_max - wrote);
128       rv = BIO_write (oc->wbio, svm_fifo_head (f), deq_now);
129       if (rv > 0)
130         {
131           svm_fifo_dequeue_drop (f, rv);
132           wrote += rv;
133         }
134     }
135   return wrote;
136 }
137
138 static int
139 openssl_try_handshake_write (openssl_ctx_t * oc, session_t * tls_session)
140 {
141   u32 enq_max, deq_now;
142   svm_fifo_t *f;
143   int read, rv;
144
145   if (BIO_ctrl_pending (oc->rbio) <= 0)
146     return 0;
147
148   f = tls_session->tx_fifo;
149   enq_max = svm_fifo_max_enqueue (f);
150   if (!enq_max)
151     return 0;
152
153   deq_now = clib_min (svm_fifo_max_write_chunk (f), enq_max);
154   read = BIO_read (oc->rbio, svm_fifo_tail (f), deq_now);
155   if (read <= 0)
156     return 0;
157
158   svm_fifo_enqueue_nocopy (f, read);
159   tls_add_vpp_q_tx_evt (tls_session);
160
161   if (read < enq_max)
162     {
163       deq_now = clib_min (svm_fifo_max_write_chunk (f), enq_max - read);
164       rv = BIO_read (oc->rbio, svm_fifo_tail (f), deq_now);
165       if (rv > 0)
166         {
167           svm_fifo_enqueue_nocopy (f, rv);
168           read += rv;
169         }
170     }
171
172   return read;
173 }
174
175 #ifdef HAVE_OPENSSL_ASYNC
176 static int
177 vpp_ssl_async_process_event (tls_ctx_t * ctx,
178                              openssl_resume_handler * handler)
179 {
180   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
181   openssl_tls_callback_t *engine_cb;
182
183   engine_cb = vpp_add_async_pending_event (ctx, handler);
184   if (engine_cb)
185     {
186       SSL_set_async_callback_arg (oc->ssl, (void *) engine_cb->arg);
187       TLS_DBG (2, "set callback to engine %p\n", engine_cb->callback);
188     }
189   return 0;
190
191 }
192
193 /* Due to engine busy stat, VPP need to retry later */
194 static int
195 vpp_ssl_async_retry_func (tls_ctx_t * ctx, openssl_resume_handler * handler)
196 {
197
198   if (vpp_add_async_run_event (ctx, handler))
199     return 1;
200
201   return 0;
202
203 }
204
205 #endif
206
207 int
208 openssl_ctx_handshake_rx (tls_ctx_t * ctx, session_t * tls_session)
209 {
210   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
211   int rv = 0, err;
212 #ifdef HAVE_OPENSSL_ASYNC
213   int estatus;
214   openssl_resume_handler *myself;
215 #endif
216
217   while (SSL_in_init (oc->ssl))
218     {
219       if (ctx->resume)
220         {
221           ctx->resume = 0;
222         }
223       else if (!openssl_try_handshake_read (oc, tls_session))
224         {
225           break;
226         }
227
228 #ifdef HAVE_OPENSSL_ASYNC
229       myself = openssl_ctx_handshake_rx;
230       vpp_ssl_async_process_event (ctx, myself);
231 #endif
232
233       rv = SSL_do_handshake (oc->ssl);
234       err = SSL_get_error (oc->ssl, rv);
235       openssl_try_handshake_write (oc, tls_session);
236 #ifdef HAVE_OPENSSL_ASYNC
237       if (err == SSL_ERROR_WANT_ASYNC)
238         {
239           SSL_get_async_status (oc->ssl, &estatus);
240
241           if (estatus == ASYNC_STATUS_EAGAIN)
242             {
243               vpp_ssl_async_retry_func (ctx, myself);
244             }
245         }
246 #endif
247
248       if (err != SSL_ERROR_WANT_WRITE)
249         {
250           if (err == SSL_ERROR_SSL)
251             {
252               char buf[512];
253               ERR_error_string (ERR_get_error (), buf);
254               clib_warning ("Err: %s", buf);
255             }
256           break;
257         }
258     }
259   TLS_DBG (2, "tls state for %u is %s", oc->openssl_ctx_index,
260            SSL_state_string_long (oc->ssl));
261
262   if (SSL_in_init (oc->ssl))
263     return 0;
264
265   /*
266    * Handshake complete
267    */
268   if (!SSL_is_server (oc->ssl))
269     {
270       /*
271        * Verify server certificate
272        */
273       if ((rv = SSL_get_verify_result (oc->ssl)) != X509_V_OK)
274         {
275           TLS_DBG (1, " failed verify: %s\n",
276                    X509_verify_cert_error_string (rv));
277
278           /*
279            * Presence of hostname enforces strict certificate verification
280            */
281           if (ctx->srv_hostname)
282             {
283               tls_notify_app_connected (ctx, /* is failed */ 0);
284               return -1;
285             }
286         }
287       tls_notify_app_connected (ctx, /* is failed */ 0);
288     }
289   else
290     {
291       tls_notify_app_accept (ctx);
292     }
293
294   TLS_DBG (1, "Handshake for %u complete. TLS cipher is %s",
295            oc->openssl_ctx_index, SSL_get_cipher (oc->ssl));
296   return rv;
297 }
298
299 static inline int
300 openssl_ctx_write (tls_ctx_t * ctx, session_t * app_session)
301 {
302   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
303   int wrote = 0, rv, read, max_buf = 100 * TLS_CHUNK_SIZE, max_space;
304   u32 enq_max, deq_max, deq_now, to_write;
305   session_t *tls_session;
306   svm_fifo_t *f;
307
308   f = app_session->tx_fifo;
309   deq_max = svm_fifo_max_dequeue (f);
310   if (!deq_max)
311     goto check_tls_fifo;
312
313   max_space = max_buf - BIO_ctrl_pending (oc->rbio);
314   max_space = (max_space < 0) ? 0 : max_space;
315   deq_now = clib_min (deq_max, (u32) max_space);
316   to_write = clib_min (svm_fifo_max_read_chunk (f), deq_now);
317   wrote = SSL_write (oc->ssl, svm_fifo_head (f), to_write);
318   if (wrote <= 0)
319     {
320       tls_add_vpp_q_builtin_tx_evt (app_session);
321       goto check_tls_fifo;
322     }
323   svm_fifo_dequeue_drop (app_session->tx_fifo, wrote);
324   if (wrote < deq_now)
325     {
326       to_write = clib_min (svm_fifo_max_read_chunk (f), deq_now - wrote);
327       rv = SSL_write (oc->ssl, svm_fifo_head (f), to_write);
328       if (rv > 0)
329         {
330           svm_fifo_dequeue_drop (app_session->tx_fifo, rv);
331           wrote += rv;
332         }
333     }
334
335   if (wrote < deq_max)
336     tls_add_vpp_q_builtin_tx_evt (app_session);
337
338 check_tls_fifo:
339
340   if (BIO_ctrl_pending (oc->rbio) <= 0)
341     return wrote;
342
343   tls_session = session_get_from_handle (ctx->tls_session_handle);
344   f = tls_session->tx_fifo;
345   enq_max = svm_fifo_max_enqueue (f);
346   if (!enq_max)
347     {
348       tls_add_vpp_q_builtin_tx_evt (app_session);
349       return wrote;
350     }
351
352   deq_now = clib_min (svm_fifo_max_write_chunk (f), enq_max);
353   read = BIO_read (oc->rbio, svm_fifo_tail (f), deq_now);
354   if (read <= 0)
355     {
356       tls_add_vpp_q_builtin_tx_evt (app_session);
357       return wrote;
358     }
359
360   svm_fifo_enqueue_nocopy (f, read);
361   tls_add_vpp_q_tx_evt (tls_session);
362
363   if (read < enq_max && BIO_ctrl_pending (oc->rbio) > 0)
364     {
365       deq_now = clib_min (svm_fifo_max_write_chunk (f), enq_max - read);
366       read = BIO_read (oc->rbio, svm_fifo_tail (f), deq_now);
367       if (read > 0)
368         svm_fifo_enqueue_nocopy (f, read);
369     }
370
371   if (BIO_ctrl_pending (oc->rbio) > 0)
372     tls_add_vpp_q_builtin_tx_evt (app_session);
373
374   return wrote;
375 }
376
377 static inline int
378 openssl_ctx_read (tls_ctx_t * ctx, session_t * tls_session)
379 {
380   int read, wrote = 0, max_space, max_buf = 100 * TLS_CHUNK_SIZE, rv;
381   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
382   u32 deq_max, enq_max, deq_now, to_read;
383   session_t *app_session;
384   svm_fifo_t *f;
385
386   if (PREDICT_FALSE (SSL_in_init (oc->ssl)))
387     {
388       openssl_ctx_handshake_rx (ctx, tls_session);
389       return 0;
390     }
391
392   f = tls_session->rx_fifo;
393   deq_max = svm_fifo_max_dequeue (f);
394   max_space = max_buf - BIO_ctrl_pending (oc->wbio);
395   max_space = max_space < 0 ? 0 : max_space;
396   deq_now = clib_min (deq_max, max_space);
397   if (!deq_now)
398     goto check_app_fifo;
399
400   to_read = clib_min (svm_fifo_max_read_chunk (f), deq_now);
401   wrote = BIO_write (oc->wbio, svm_fifo_head (f), to_read);
402   if (wrote <= 0)
403     {
404       tls_add_vpp_q_builtin_rx_evt (tls_session);
405       goto check_app_fifo;
406     }
407   svm_fifo_dequeue_drop (f, wrote);
408   if (wrote < deq_now)
409     {
410       to_read = clib_min (svm_fifo_max_read_chunk (f), deq_now - wrote);
411       rv = BIO_write (oc->wbio, svm_fifo_head (f), to_read);
412       if (rv > 0)
413         {
414           svm_fifo_dequeue_drop (f, rv);
415           wrote += rv;
416         }
417     }
418   if (svm_fifo_max_dequeue (f))
419     tls_add_vpp_q_builtin_rx_evt (tls_session);
420
421 check_app_fifo:
422
423   if (BIO_ctrl_pending (oc->wbio) <= 0)
424     return wrote;
425
426   app_session = session_get_from_handle (ctx->app_session_handle);
427   f = app_session->rx_fifo;
428   enq_max = svm_fifo_max_enqueue (f);
429   if (!enq_max)
430     {
431       tls_add_vpp_q_builtin_rx_evt (tls_session);
432       return wrote;
433     }
434
435   deq_now = clib_min (svm_fifo_max_write_chunk (f), enq_max);
436   read = SSL_read (oc->ssl, svm_fifo_tail (f), deq_now);
437   if (read <= 0)
438     {
439       tls_add_vpp_q_builtin_rx_evt (tls_session);
440       return wrote;
441     }
442   svm_fifo_enqueue_nocopy (f, read);
443   if (read < enq_max && BIO_ctrl_pending (oc->wbio) > 0)
444     {
445       deq_now = clib_min (svm_fifo_max_write_chunk (f), enq_max - read);
446       read = SSL_read (oc->ssl, svm_fifo_tail (f), deq_now);
447       if (read > 0)
448         svm_fifo_enqueue_nocopy (f, read);
449     }
450
451   tls_notify_app_enqueue (ctx, app_session);
452   if (BIO_ctrl_pending (oc->wbio) > 0)
453     tls_add_vpp_q_builtin_rx_evt (tls_session);
454
455   return wrote;
456 }
457
458 static int
459 openssl_ctx_init_client (tls_ctx_t * ctx)
460 {
461   long flags = SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | SSL_OP_NO_COMPRESSION;
462   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
463   openssl_main_t *om = &openssl_main;
464   session_t *tls_session;
465   const SSL_METHOD *method;
466   int rv, err;
467 #ifdef HAVE_OPENSSL_ASYNC
468   openssl_resume_handler *handler;
469 #endif
470
471   method = SSLv23_client_method ();
472   if (method == NULL)
473     {
474       TLS_DBG (1, "SSLv23_method returned null");
475       return -1;
476     }
477
478   oc->ssl_ctx = SSL_CTX_new (method);
479   if (oc->ssl_ctx == NULL)
480     {
481       TLS_DBG (1, "SSL_CTX_new returned null");
482       return -1;
483     }
484
485   SSL_CTX_set_ecdh_auto (oc->ssl_ctx, 1);
486   SSL_CTX_set_mode (oc->ssl_ctx, SSL_MODE_ENABLE_PARTIAL_WRITE);
487 #ifdef HAVE_OPENSSL_ASYNC
488   if (om->async)
489     SSL_CTX_set_mode (oc->ssl_ctx, SSL_MODE_ASYNC);
490 #endif
491   rv = SSL_CTX_set_cipher_list (oc->ssl_ctx, (const char *) om->ciphers);
492   if (rv != 1)
493     {
494       TLS_DBG (1, "Couldn't set cipher");
495       return -1;
496     }
497
498   SSL_CTX_set_options (oc->ssl_ctx, flags);
499   SSL_CTX_set_cert_store (oc->ssl_ctx, om->cert_store);
500
501   oc->ssl = SSL_new (oc->ssl_ctx);
502   if (oc->ssl == NULL)
503     {
504       TLS_DBG (1, "Couldn't initialize ssl struct");
505       return -1;
506     }
507
508   oc->rbio = BIO_new (BIO_s_mem ());
509   oc->wbio = BIO_new (BIO_s_mem ());
510
511   BIO_set_mem_eof_return (oc->rbio, -1);
512   BIO_set_mem_eof_return (oc->wbio, -1);
513
514   SSL_set_bio (oc->ssl, oc->wbio, oc->rbio);
515   SSL_set_connect_state (oc->ssl);
516
517   rv = SSL_set_tlsext_host_name (oc->ssl, ctx->srv_hostname);
518   if (rv != 1)
519     {
520       TLS_DBG (1, "Couldn't set hostname");
521       return -1;
522     }
523
524   /*
525    * 2. Do the first steps in the handshake.
526    */
527   TLS_DBG (1, "Initiating handshake for [%u]%u", ctx->c_thread_index,
528            oc->openssl_ctx_index);
529
530   tls_session = session_get_from_handle (ctx->tls_session_handle);
531   while (1)
532     {
533       rv = SSL_do_handshake (oc->ssl);
534       err = SSL_get_error (oc->ssl, rv);
535       openssl_try_handshake_write (oc, tls_session);
536 #ifdef HAVE_OPENSSL_ASYNC
537       if (err == SSL_ERROR_WANT_ASYNC)
538         {
539           handler = (openssl_resume_handler *) openssl_ctx_handshake_rx;
540           vpp_ssl_async_process_event (ctx, handler);
541           break;
542         }
543 #endif
544       if (err != SSL_ERROR_WANT_WRITE)
545         break;
546     }
547
548   TLS_DBG (2, "tls state for [%u]%u is su", ctx->c_thread_index,
549            oc->openssl_ctx_index, SSL_state_string_long (oc->ssl));
550   return 0;
551 }
552
553 static int
554 openssl_start_listen (tls_ctx_t * lctx)
555 {
556   application_t *app;
557   const SSL_METHOD *method;
558   SSL_CTX *ssl_ctx;
559   int rv;
560   BIO *cert_bio;
561   X509 *srvcert;
562   EVP_PKEY *pkey;
563   u32 olc_index;
564   openssl_listen_ctx_t *olc;
565
566   long flags = SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | SSL_OP_NO_COMPRESSION;
567   openssl_main_t *om = &openssl_main;
568
569   app = application_get (lctx->parent_app_index);
570   if (!app->tls_cert || !app->tls_key)
571     {
572       TLS_DBG (1, "tls cert and/or key not configured %d",
573                lctx->parent_app_index);
574       return -1;
575     }
576
577   method = SSLv23_method ();
578   ssl_ctx = SSL_CTX_new (method);
579   if (!ssl_ctx)
580     {
581       clib_warning ("Unable to create SSL context");
582       return -1;
583     }
584
585   SSL_CTX_set_mode (ssl_ctx, SSL_MODE_ENABLE_PARTIAL_WRITE);
586 #ifdef HAVE_OPENSSL_ASYNC
587   if (om->async)
588     SSL_CTX_set_mode (ssl_ctx, SSL_MODE_ASYNC);
589   SSL_CTX_set_async_callback (ssl_ctx, tls_async_openssl_callback);
590 #endif
591   SSL_CTX_set_options (ssl_ctx, flags);
592   SSL_CTX_set_ecdh_auto (ssl_ctx, 1);
593
594   rv = SSL_CTX_set_cipher_list (ssl_ctx, (const char *) om->ciphers);
595   if (rv != 1)
596     {
597       TLS_DBG (1, "Couldn't set cipher");
598       return -1;
599     }
600
601   /*
602    * Set the key and cert
603    */
604   cert_bio = BIO_new (BIO_s_mem ());
605   BIO_write (cert_bio, app->tls_cert, vec_len (app->tls_cert));
606   srvcert = PEM_read_bio_X509 (cert_bio, NULL, NULL, NULL);
607   if (!srvcert)
608     {
609       clib_warning ("unable to parse certificate");
610       return -1;
611     }
612   SSL_CTX_use_certificate (ssl_ctx, srvcert);
613   BIO_free (cert_bio);
614
615   cert_bio = BIO_new (BIO_s_mem ());
616   BIO_write (cert_bio, app->tls_key, vec_len (app->tls_key));
617   pkey = PEM_read_bio_PrivateKey (cert_bio, NULL, NULL, NULL);
618   if (!pkey)
619     {
620       clib_warning ("unable to parse pkey");
621       return -1;
622     }
623   SSL_CTX_use_PrivateKey (ssl_ctx, pkey);
624   BIO_free (cert_bio);
625
626   olc_index = openssl_listen_ctx_alloc ();
627   olc = openssl_lctx_get (olc_index);
628   olc->ssl_ctx = ssl_ctx;
629   olc->srvcert = srvcert;
630   olc->pkey = pkey;
631
632   /* store SSL_CTX into TLS level structure */
633   lctx->tls_ssl_ctx = olc_index;
634
635   return 0;
636
637 }
638
639 static int
640 openssl_stop_listen (tls_ctx_t * lctx)
641 {
642   u32 olc_index;
643   openssl_listen_ctx_t *olc;
644
645   olc_index = lctx->tls_ssl_ctx;
646   olc = openssl_lctx_get (olc_index);
647
648   X509_free (olc->srvcert);
649   EVP_PKEY_free (olc->pkey);
650
651   SSL_CTX_free (olc->ssl_ctx);
652   openssl_listen_ctx_free (olc);
653
654   return 0;
655 }
656
657 static int
658 openssl_ctx_init_server (tls_ctx_t * ctx)
659 {
660   openssl_ctx_t *oc = (openssl_ctx_t *) ctx;
661   u32 olc_index = ctx->tls_ssl_ctx;
662   openssl_listen_ctx_t *olc;
663   session_t *tls_session;
664   int rv, err;
665 #ifdef HAVE_OPENSSL_ASYNC
666   openssl_resume_handler *handler;
667 #endif
668
669   /* Start a new connection */
670
671   olc = openssl_lctx_get (olc_index);
672   oc->ssl = SSL_new (olc->ssl_ctx);
673   if (oc->ssl == NULL)
674     {
675       TLS_DBG (1, "Couldn't initialize ssl struct");
676       return -1;
677     }
678
679   oc->rbio = BIO_new (BIO_s_mem ());
680   oc->wbio = BIO_new (BIO_s_mem ());
681
682   BIO_set_mem_eof_return (oc->rbio, -1);
683   BIO_set_mem_eof_return (oc->wbio, -1);
684
685   SSL_set_bio (oc->ssl, oc->wbio, oc->rbio);
686   SSL_set_accept_state (oc->ssl);
687
688   TLS_DBG (1, "Initiating handshake for [%u]%u", ctx->c_thread_index,
689            oc->openssl_ctx_index);
690
691   tls_session = session_get_from_handle (ctx->tls_session_handle);
692   while (1)
693     {
694       rv = SSL_do_handshake (oc->ssl);
695       err = SSL_get_error (oc->ssl, rv);
696       openssl_try_handshake_write (oc, tls_session);
697 #ifdef HAVE_OPENSSL_ASYNC
698       if (err == SSL_ERROR_WANT_ASYNC)
699         {
700           handler = (openssl_resume_handler *) openssl_ctx_handshake_rx;
701           vpp_ssl_async_process_event (ctx, handler);
702           break;
703         }
704 #endif
705       if (err != SSL_ERROR_WANT_WRITE)
706         break;
707     }
708
709   TLS_DBG (2, "tls state for [%u]%u is su", ctx->c_thread_index,
710            oc->openssl_ctx_index, SSL_state_string_long (oc->ssl));
711   return 0;
712 }
713
714 static u8
715 openssl_handshake_is_over (tls_ctx_t * ctx)
716 {
717   openssl_ctx_t *mc = (openssl_ctx_t *) ctx;
718   if (!mc->ssl)
719     return 0;
720   return SSL_is_init_finished (mc->ssl);
721 }
722
723 const static tls_engine_vft_t openssl_engine = {
724   .ctx_alloc = openssl_ctx_alloc,
725   .ctx_free = openssl_ctx_free,
726   .ctx_get = openssl_ctx_get,
727   .ctx_get_w_thread = openssl_ctx_get_w_thread,
728   .ctx_init_server = openssl_ctx_init_server,
729   .ctx_init_client = openssl_ctx_init_client,
730   .ctx_write = openssl_ctx_write,
731   .ctx_read = openssl_ctx_read,
732   .ctx_handshake_is_over = openssl_handshake_is_over,
733   .ctx_start_listen = openssl_start_listen,
734   .ctx_stop_listen = openssl_stop_listen,
735 };
736
737 int
738 tls_init_ca_chain (void)
739 {
740   openssl_main_t *om = &openssl_main;
741   tls_main_t *tm = vnet_tls_get_main ();
742   BIO *cert_bio;
743   X509 *testcert;
744   int rv;
745
746   if (access (tm->ca_cert_path, F_OK | R_OK) == -1)
747     {
748       clib_warning ("Could not initialize TLS CA certificates");
749       return -1;
750     }
751
752   if (!(om->cert_store = X509_STORE_new ()))
753     {
754       clib_warning ("failed to create cert store");
755       return -1;
756     }
757
758   rv = X509_STORE_load_locations (om->cert_store, tm->ca_cert_path, 0);
759   if (rv < 0)
760     {
761       clib_warning ("failed to load ca certificate");
762     }
763
764   if (tm->use_test_cert_in_ca)
765     {
766       cert_bio = BIO_new (BIO_s_mem ());
767       BIO_write (cert_bio, test_srv_crt_rsa, test_srv_crt_rsa_len);
768       testcert = PEM_read_bio_X509 (cert_bio, NULL, NULL, NULL);
769       if (!testcert)
770         {
771           clib_warning ("unable to parse certificate");
772           return -1;
773         }
774       X509_STORE_add_cert (om->cert_store, testcert);
775       rv = 0;
776     }
777   return (rv < 0 ? -1 : 0);
778 }
779
780 static int
781 tls_openssl_set_ciphers (char *ciphers)
782 {
783   openssl_main_t *om = &openssl_main;
784   int i;
785
786   if (!ciphers)
787     {
788       return -1;
789     }
790
791   vec_validate (om->ciphers, strlen (ciphers) - 1);
792   for (i = 0; i < vec_len (om->ciphers); i++)
793     {
794       om->ciphers[i] = toupper (ciphers[i]);
795     }
796
797   return 0;
798
799 }
800
801 static clib_error_t *
802 tls_openssl_init (vlib_main_t * vm)
803 {
804   vlib_thread_main_t *vtm = vlib_get_thread_main ();
805   openssl_main_t *om = &openssl_main;
806   clib_error_t *error;
807   u32 num_threads;
808
809   num_threads = 1 /* main thread */  + vtm->n_threads;
810
811   if ((error = vlib_call_init_function (vm, tls_init)))
812     return error;
813
814   SSL_library_init ();
815   SSL_load_error_strings ();
816
817   if (tls_init_ca_chain ())
818     {
819       clib_warning ("failed to initialize TLS CA chain");
820       return 0;
821     }
822
823   vec_validate (om->ctx_pool, num_threads - 1);
824
825   tls_register_engine (&openssl_engine, TLS_ENGINE_OPENSSL);
826
827   om->engine_init = 0;
828
829   /* default ciphers */
830   tls_openssl_set_ciphers
831     ("ALL:!ADH:!LOW:!EXP:!MD5:!RC4-SHA:!DES-CBC3-SHA:@STRENGTH");
832
833   return 0;
834 }
835
836 #ifdef HAVE_OPENSSL_ASYNC
837 static clib_error_t *
838 tls_openssl_set_command_fn (vlib_main_t * vm, unformat_input_t * input,
839                             vlib_cli_command_t * cmd)
840 {
841   openssl_main_t *om = &openssl_main;
842   char *engine_name = NULL;
843   char *engine_alg = NULL;
844   char *ciphers = NULL;
845   u8 engine_name_set = 0;
846   int i;
847
848   /* By present, it is not allowed to configure engine again after running */
849   if (om->engine_init)
850     {
851       clib_warning ("engine has started!\n");
852       return clib_error_return
853         (0, "engine has started, and no config is accepted");
854     }
855
856   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
857     {
858       if (unformat (input, "engine %s", &engine_name))
859         {
860           engine_name_set = 1;
861         }
862       else if (unformat (input, "async"))
863         {
864           om->async = 1;
865           openssl_async_node_enable_disable (1);
866         }
867       else if (unformat (input, "alg %s", &engine_alg))
868         {
869           for (i = 0; i < strnlen (engine_alg, MAX_CRYPTO_LEN); i++)
870             engine_alg[i] = toupper (engine_alg[i]);
871         }
872       else if (unformat (input, "ciphers %s", &ciphers))
873         {
874           tls_openssl_set_ciphers (ciphers);
875         }
876       else
877         return clib_error_return (0, "failed: unknown input `%U'",
878                                   format_unformat_error, input);
879     }
880
881   /* reset parameters if engine is not configured */
882   if (!engine_name_set)
883     {
884       clib_warning ("No engine provided! \n");
885       om->async = 0;
886     }
887   else
888     {
889       if (!openssl_engine_register (engine_name, engine_alg))
890         {
891           return clib_error_return (0, "failed to register %s polling",
892                                     engine_name);
893         }
894     }
895
896   return 0;
897 }
898
899 /* *INDENT-OFF* */
900 VLIB_CLI_COMMAND (tls_openssl_set_command, static) =
901 {
902   .path = "tls openssl set",
903   .short_help = "tls openssl set [engine <engine name>] [alg [algorithm] [async]",
904   .function = tls_openssl_set_command_fn,
905 };
906 /* *INDENT-ON* */
907 #endif
908
909
910 VLIB_INIT_FUNCTION (tls_openssl_init);
911
912 /* *INDENT-OFF* */
913 VLIB_PLUGIN_REGISTER () = {
914     .version = VPP_BUILD_VER,
915     .description = "openssl based TLS Engine",
916 };
917 /* *INDENT-ON* */
918
919 /*
920  * fd.io coding-style-patch-verification: ON
921  *
922  * Local Variables:
923  * eval: (c-set-style "gnu")
924  * End:
925  */