FD.io VPP  v18.07-rc0-415-g6c78436
Vector Packet Processing
tls_openssl.h
Go to the documentation of this file.
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 typedef struct tls_ctx_openssl_
25 {
26  tls_ctx_t ctx; /**< First */
28  SSL_CTX *ssl_ctx;
29  SSL *ssl;
30  BIO *rbio;
31  BIO *wbio;
32  X509 *srvcert;
33  EVP_PKEY *pkey;
35 
36 typedef struct openssl_main_
37 {
39 
40  X509_STORE *cert_store;
42  int async;
44 
45 typedef struct openssl_tls_callback_
46 {
47  int (*callback) (void *arg);
48  void *arg;
50 
52  stream_session_t * tls_session);
53 
54 tls_ctx_t *openssl_ctx_get_w_thread (u32 ctx_index, u8 thread_index);
57  handler);
58 void openssl_polling_start (ENGINE * engine);
59 int openssl_engine_register (char *engine, char *alg);
61 
62 /*
63  * fd.io coding-style-patch-verification: ON
64  *
65  * Local Variables:
66  * eval: (c-set-style "gnu")
67  * End:
68  */
struct openssl_main_ openssl_main_t
X509_STORE * cert_store
Definition: tls_openssl.h:40
tls_ctx_t * openssl_ctx_get_w_thread(u32 ctx_index, u8 thread_index)
Definition: tls_openssl.c:80
unsigned char u8
Definition: types.h:56
SSL_CTX * ssl_ctx
Definition: tls_openssl.h:28
unsigned int u32
Definition: types.h:88
struct _stream_session_t stream_session_t
int openssl_resume_handler(tls_ctx_t *ctx, stream_session_t *tls_session)
Definition: tls_openssl.h:51
void openssl_polling_start(ENGINE *engine)
Definition: tls.h:52
struct tls_ctx_openssl_ openssl_ctx_t
int openssl_engine_register(char *engine, char *alg)
Definition: tls_async.c:125
openssl_ctx_t *** ctx_pool
Definition: tls_openssl.h:38
openssl_tls_callback_t * vpp_add_async_pending_event(tls_ctx_t *ctx, openssl_resume_handler *handler)
Definition: tls_async.c:280
EVP_PKEY * pkey
Definition: tls_openssl.h:33
struct openssl_tls_callback_ openssl_tls_callback_t
void openssl_async_node_enable_disable(u8 is_en)
Definition: tls_async.c:419
tls_ctx_t ctx
First.
Definition: tls_openssl.h:26