tls: add custom openssl bio
[vpp.git] / src / plugins / tlsopenssl / tls_openssl.h
1 /*
2  * Copyright (c) 2018 Intel 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 #include <openssl/engine.h>
20 #include <vnet/plugin/plugin.h>
21 #include <vpp/app/version.h>
22 #include <vnet/tls/tls.h>
23
24 #define TLSO_CTRL_BYTES 1000
25 #define TLSO_MIN_ENQ_SPACE (1 << 16)
26
27 typedef struct tls_ctx_openssl_
28 {
29   tls_ctx_t ctx;                        /**< First */
30   u32 openssl_ctx_index;
31   SSL_CTX *ssl_ctx;
32   SSL *ssl;
33   BIO *rbio;
34   BIO *wbio;
35 } openssl_ctx_t;
36
37 typedef struct tls_listen_ctx_opensl_
38 {
39   u32 openssl_lctx_index;
40   SSL_CTX *ssl_ctx;
41   SSL *ssl;
42   X509 *srvcert;
43   EVP_PKEY *pkey;
44 } openssl_listen_ctx_t;
45
46 typedef struct openssl_main_
47 {
48   openssl_ctx_t ***ctx_pool;
49   openssl_listen_ctx_t *lctx_pool;
50
51   /* API message ID base */
52   u16 msg_id_base;
53
54   X509_STORE *cert_store;
55   u8 *ciphers;
56   int engine_init;
57   int async;
58 } openssl_main_t;
59
60 typedef int openssl_resume_handler (tls_ctx_t * ctx, session_t * tls_session);
61
62 tls_ctx_t *openssl_ctx_get_w_thread (u32 ctx_index, u8 thread_index);
63 int vpp_tls_async_init_event (tls_ctx_t * ctx,
64                               openssl_resume_handler * handler,
65                               session_t * session);
66 int vpp_tls_async_update_event (tls_ctx_t * ctx, int eagain);
67 int tls_async_openssl_callback (SSL * s, void *evt);
68 int openssl_evt_free (int event_idx, u8 thread_index);
69 void openssl_polling_start (ENGINE * engine);
70 int openssl_engine_register (char *engine, char *alg, int async);
71 void openssl_async_node_enable_disable (u8 is_en);
72 clib_error_t *tls_openssl_api_init (vlib_main_t * vm);
73 int tls_openssl_set_ciphers (char *ciphers);
74 int vpp_openssl_is_inflight (tls_ctx_t * ctx);
75
76 /*
77  * fd.io coding-style-patch-verification: ON
78  *
79  * Local Variables:
80  * eval: (c-set-style "gnu")
81  * End:
82  */