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