FD.io VPP  v21.06
Vector Packet Processing
tls.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018-2019 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 
18 #include <vnet/session/session.h>
19 #include <vppinfra/lock.h>
20 
21 #ifndef SRC_VNET_TLS_TLS_H_
22 #define SRC_VNET_TLS_TLS_H_
23 
24 #define TLS_DEBUG 0
25 #define TLS_DEBUG_LEVEL_CLIENT 0
26 #define TLS_DEBUG_LEVEL_SERVER 0
27 
28 #define TLS_CHUNK_SIZE (1 << 14)
29 #define TLS_CA_CERT_PATH "/etc/ssl/certs/ca-certificates.crt"
30 
31 #if TLS_DEBUG
32 #define TLS_DBG(_lvl, _fmt, _args...) \
33  if (_lvl <= TLS_DEBUG) \
34  clib_warning (_fmt, ##_args)
35 #else
36 #define TLS_DBG(_lvl, _fmt, _args...)
37 #endif
38 
39 /* *INDENT-OFF* */
40 typedef struct tls_cxt_id_
41 {
42  union {
45  };
47  void *migrate_ctx;
53 } tls_ctx_id_t;
54 /* *INDENT-ON* */
55 
57  "ctx id must be less than TRANSPORT_CONN_ID_LEN");
58 
59 typedef struct tls_ctx_
60 {
61  union
62  {
65  };
66 #define parent_app_wrk_index c_tls_ctx_id.parent_app_wrk_index
67 #define app_session_handle c_tls_ctx_id.app_session_handle
68 #define tls_session_handle c_tls_ctx_id.tls_session_handle
69 #define listener_ctx_index c_tls_ctx_id.listener_ctx_index
70 #define tcp_is_ip4 c_tls_ctx_id.tcp_is_ip4
71 #define tls_ctx_engine c_tls_ctx_id.tls_engine_id
72 #define tls_ssl_ctx c_tls_ctx_id.ssl_ctx
73 #define tls_ctx_handle c_c_index
74  /* Temporary storage for session open opaque. Overwritten once
75  * underlying tcp connection is established */
76 #define parent_app_api_context c_tls_ctx_id.parent_app_api_ctx
77 #define migration_ctx c_tls_ctx_id.migrate_ctx
78 
88 } tls_ctx_t;
89 
90 typedef struct tls_main_
91 {
98 
99  /*
100  * Config
101  */
106 } tls_main_t;
107 
108 typedef struct tls_engine_vft_
109 {
110  u32 (*ctx_alloc) (void);
111  u32 (*ctx_alloc_w_thread) (u32 thread_index);
112  void (*ctx_free) (tls_ctx_t * ctx);
113  void *(*ctx_detach) (tls_ctx_t *ctx);
114  u32 (*ctx_attach) (u32 thread_index, void *ctx);
115  tls_ctx_t *(*ctx_get) (u32 ctx_index);
116  tls_ctx_t *(*ctx_get_w_thread) (u32 ctx_index, u8 thread_index);
117  int (*ctx_init_client) (tls_ctx_t * ctx);
118  int (*ctx_init_server) (tls_ctx_t * ctx);
119  int (*ctx_read) (tls_ctx_t * ctx, session_t * tls_session);
120  int (*ctx_write) (tls_ctx_t * ctx, session_t * app_session,
122  u8 (*ctx_handshake_is_over) (tls_ctx_t * ctx);
123  int (*ctx_start_listen) (tls_ctx_t * ctx);
124  int (*ctx_stop_listen) (tls_ctx_t * ctx);
125  int (*ctx_transport_close) (tls_ctx_t * ctx);
126  int (*ctx_app_close) (tls_ctx_t * ctx);
128 
130 void tls_register_engine (const tls_engine_vft_t * vft,
138 void tls_notify_app_enqueue (tls_ctx_t * ctx, session_t * app_session);
140 #endif /* SRC_VNET_TLS_TLS_H_ */
141 
142 /*
143  * fd.io coding-style-patch-verification: ON
144  *
145  * Local Variables:
146  * eval: (c-set-style "gnu")
147  * End:
148  */
STATIC_ASSERT(sizeof(tls_ctx_id_t)<=TRANSPORT_CONN_ID_LEN, "ctx id must be less than TRANSPORT_CONN_ID_LEN")
struct tls_cxt_id_ tls_ctx_id_t
u8 no_app_session
Definition: tls.h:82
u32 thread_index
clib_rwlock_t half_open_rwlock
Definition: tls.h:95
u32 ssl_ctx
Definition: tls.h:49
unsigned long u64
Definition: types.h:89
char * ca_cert_path
Definition: tls.h:103
void * migrate_ctx
Definition: tls.h:47
struct tls_main_ tls_main_t
int tls_notify_app_accept(tls_ctx_t *ctx)
Definition: tls.c:182
u32 parent_app_api_ctx
Definition: tls.h:44
u32 listener_ctx_index
Definition: tls.h:50
u8 tcp_is_ip4
Definition: tls.h:51
struct tls_engine_vft_ tls_engine_vft_t
u8 use_test_cert_in_ca
Definition: tls.h:102
u32 parent_app_wrk_index
Definition: tls.h:48
unsigned char u8
Definition: types.h:56
session_handle_t tls_session_handle
Definition: tls.h:46
transport_proto_t tls_type
Definition: tls.h:87
unsigned int u32
Definition: types.h:88
int tls_notify_app_connected(tls_ctx_t *ctx, session_error_t err)
Definition: tls.c:212
u32 app_index
Definition: tls.h:92
void tls_disconnect_transport(tls_ctx_t *ctx)
Definition: tls.c:30
u8 is_passive_close
Definition: tls.h:79
void tls_notify_app_enqueue(tls_ctx_t *ctx, session_t *app_session)
Definition: tls.c:173
u8 tls_engine_id
Definition: tls.h:52
int tls_add_vpp_q_builtin_rx_evt(session_t *s)
Definition: tls.c:62
vl_api_fib_path_type_t type
Definition: fib_types.api:123
long ctx[MAX_CONNS]
Definition: main.c:144
Definition: tls.h:90
tls_ctx_id_t c_tls_ctx_id
Definition: tls.h:64
u64 first_seg_size
Definition: tls.h:104
Definition: tls.h:59
u32 ckpair_index
Definition: tls.h:86
int tls_add_vpp_q_rx_evt(session_t *s)
Definition: tls.c:54
u32 fifo_size
Definition: tls.h:105
struct tls_ctx_ tls_ctx_t
u8 ** rx_bufs
Definition: tls.h:96
u32 evt_index
Definition: tls.h:85
struct _transport_connection transport_connection_t
transport_connection_t connection
Definition: tls.h:63
#define TRANSPORT_CONN_ID_LEN
int tls_add_vpp_q_builtin_tx_evt(session_t *s)
tls_main_t * vnet_tls_get_main(void)
Definition: tls.c:1364
enum _transport_proto transport_proto_t
u8 is_migrated
Definition: tls.h:83
session_handle_t app_session_handle
Definition: tls.h:43
tls_ctx_t * half_open_ctx_pool
Definition: tls.h:94
u8 ** tx_bufs
Definition: tls.h:97
u8 app_closed
Definition: tls.h:81
u64 session_handle_t
u8 * srv_hostname
Definition: tls.h:84
u8 resume
Definition: tls.h:80
enum session_error_ session_error_t
enum crypto_engine_type_ crypto_engine_type_t
int tls_add_vpp_q_tx_evt(session_t *s)
Definition: tls.c:70
void tls_register_engine(const tls_engine_vft_t *vft, crypto_engine_type_t type)
Definition: tls.c:1294
tls_ctx_t * listener_ctx_pool
Definition: tls.h:93
#define u8
Padding.
Definition: clib.h:121