FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
tls_picotls.c File Reference
+ Include dependency graph for tls_picotls.c:

Go to the source code of this file.

Macros

#define MAX_QUEUE   12000
 
#define PTLS_MAX_PLAINTEXT_RECORD_SIZE   16384
 

Functions

static u32 picotls_ctx_alloc (void)
 
static void picotls_ctx_free (tls_ctx_t *ctx)
 
static u32 picotls_listen_ctx_alloc (void)
 
static void picotls_listen_ctx_free (picotls_listen_ctx_t *lctx)
 
tls_ctx_tpicotls_ctx_get (u32 ctx_index)
 
picotls_listen_ctx_tpicotls_lctx_get (u32 lctx_index)
 
static u8 picotls_handshake_is_over (tls_ctx_t *ctx)
 
static int picotls_try_handshake_write (picotls_ctx_t *ptls_ctx, session_t *tls_session, ptls_buffer_t *buf)
 
static int picotls_start_listen (tls_ctx_t *lctx)
 
static int picotls_stop_listen (tls_ctx_t *lctx)
 
static void picotls_handle_handshake_failure (tls_ctx_t *ctx)
 
static void picotls_confirm_app_close (tls_ctx_t *ctx)
 
static int picotls_transport_close (tls_ctx_t *ctx)
 
static int picotls_app_close (tls_ctx_t *ctx)
 
static int picotls_do_handshake (picotls_ctx_t *ptls_ctx, session_t *tls_session, u8 *input, int input_len)
 
static int picotls_ctx_read (tls_ctx_t *ctx, session_t *tls_session)
 
static int picotls_content_process (picotls_ctx_t *ptls_ctx, svm_fifo_t *src_fifo, svm_fifo_t *dst_fifo, int content_len, int total_record_overhead, int is_no_copy)
 
static int picotls_ctx_write (tls_ctx_t *ctx, session_t *app_session, transport_send_params_t *sp)
 
static int picotls_ctx_init_server (tls_ctx_t *ctx)
 
tls_ctx_tpicotls_ctx_get_w_thread (u32 ctx_index, u8 thread_index)
 
static clib_error_ttls_picotls_init (vlib_main_t *vm)
 
 VLIB_PLUGIN_REGISTER ()
 

Variables

picotls_main_t picotls_main
 
static const tls_engine_vft_t picotls_engine
 

Macro Definition Documentation

◆ MAX_QUEUE

#define MAX_QUEUE   12000

Definition at line 9 of file tls_picotls.c.

◆ PTLS_MAX_PLAINTEXT_RECORD_SIZE

#define PTLS_MAX_PLAINTEXT_RECORD_SIZE   16384

Definition at line 10 of file tls_picotls.c.

Function Documentation

◆ picotls_app_close()

static int picotls_app_close ( tls_ctx_t ctx)
static

Definition at line 209 of file tls_picotls.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ picotls_confirm_app_close()

static void picotls_confirm_app_close ( tls_ctx_t ctx)
static

Definition at line 188 of file tls_picotls.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ picotls_content_process()

static int picotls_content_process ( picotls_ctx_t ptls_ctx,
svm_fifo_t src_fifo,
svm_fifo_t dst_fifo,
int  content_len,
int  total_record_overhead,
int  is_no_copy 
)
inlinestatic

Definition at line 378 of file tls_picotls.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ picotls_ctx_alloc()

static u32 picotls_ctx_alloc ( void  )
static

Definition at line 13 of file tls_picotls.c.

+ Here is the call graph for this function:

◆ picotls_ctx_free()

static void picotls_ctx_free ( tls_ctx_t ctx)
static

Definition at line 32 of file tls_picotls.c.

◆ picotls_ctx_get()

tls_ctx_t* picotls_ctx_get ( u32  ctx_index)

Definition at line 61 of file tls_picotls.c.

+ Here is the call graph for this function:

◆ picotls_ctx_get_w_thread()

tls_ctx_t* picotls_ctx_get_w_thread ( u32  ctx_index,
u8  thread_index 
)

Definition at line 543 of file tls_picotls.c.

◆ picotls_ctx_init_server()

static int picotls_ctx_init_server ( tls_ctx_t ctx)
static

Definition at line 521 of file tls_picotls.c.

+ Here is the call graph for this function:

◆ picotls_ctx_read()

static int picotls_ctx_read ( tls_ctx_t ctx,
session_t tls_session 
)
inlinestatic

Definition at line 256 of file tls_picotls.c.

+ Here is the call graph for this function:

◆ picotls_ctx_write()

static int picotls_ctx_write ( tls_ctx_t ctx,
session_t app_session,
transport_send_params_t sp 
)
inlinestatic

There is no engough enqueue space for one record

Allowed to execute no-copy crypto operation

Definition at line 413 of file tls_picotls.c.

+ Here is the call graph for this function:

◆ picotls_do_handshake()

static int picotls_do_handshake ( picotls_ctx_t ptls_ctx,
session_t tls_session,
u8 input,
int  input_len 
)
inlinestatic

Definition at line 223 of file tls_picotls.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ picotls_handle_handshake_failure()

static void picotls_handle_handshake_failure ( tls_ctx_t ctx)
static

Definition at line 179 of file tls_picotls.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ picotls_handshake_is_over()

static u8 picotls_handshake_is_over ( tls_ctx_t ctx)
static

Definition at line 77 of file tls_picotls.c.

+ Here is the caller graph for this function:

◆ picotls_lctx_get()

picotls_listen_ctx_t* picotls_lctx_get ( u32  lctx_index)

Definition at line 71 of file tls_picotls.c.

+ Here is the caller graph for this function:

◆ picotls_listen_ctx_alloc()

static u32 picotls_listen_ctx_alloc ( void  )
static

Definition at line 42 of file tls_picotls.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ picotls_listen_ctx_free()

static void picotls_listen_ctx_free ( picotls_listen_ctx_t lctx)
static

Definition at line 55 of file tls_picotls.c.

+ Here is the caller graph for this function:

◆ picotls_start_listen()

static int picotls_start_listen ( tls_ctx_t lctx)
static

Definition at line 110 of file tls_picotls.c.

+ Here is the call graph for this function:

◆ picotls_stop_listen()

static int picotls_stop_listen ( tls_ctx_t lctx)
static

Definition at line 165 of file tls_picotls.c.

+ Here is the call graph for this function:

◆ picotls_transport_close()

static int picotls_transport_close ( tls_ctx_t ctx)
static

Definition at line 195 of file tls_picotls.c.

+ Here is the call graph for this function:

◆ picotls_try_handshake_write()

static int picotls_try_handshake_write ( picotls_ctx_t ptls_ctx,
session_t tls_session,
ptls_buffer_t *  buf 
)
static

Definition at line 85 of file tls_picotls.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ tls_picotls_init()

static clib_error_t* tls_picotls_init ( vlib_main_t vm)
static

Definition at line 566 of file tls_picotls.c.

+ Here is the call graph for this function:

◆ VLIB_PLUGIN_REGISTER()

VLIB_PLUGIN_REGISTER ( )

Variable Documentation

◆ picotls_engine

const tls_engine_vft_t picotls_engine
static
Initial value:
= {
.ctx_alloc = picotls_ctx_alloc,
.ctx_free = picotls_ctx_free,
.ctx_get = picotls_ctx_get,
.ctx_get_w_thread = picotls_ctx_get_w_thread,
.ctx_handshake_is_over = picotls_handshake_is_over,
.ctx_start_listen = picotls_start_listen,
.ctx_stop_listen = picotls_stop_listen,
.ctx_init_server = picotls_ctx_init_server,
.ctx_read = picotls_ctx_read,
.ctx_write = picotls_ctx_write,
.ctx_transport_close = picotls_transport_close,
.ctx_app_close = picotls_app_close,
}
static int picotls_ctx_write(tls_ctx_t *ctx, session_t *app_session, transport_send_params_t *sp)
Definition: tls_picotls.c:413
tls_ctx_t * picotls_ctx_get_w_thread(u32 ctx_index, u8 thread_index)
Definition: tls_picotls.c:543
static int picotls_transport_close(tls_ctx_t *ctx)
Definition: tls_picotls.c:195
static u8 picotls_handshake_is_over(tls_ctx_t *ctx)
Definition: tls_picotls.c:77
static void picotls_ctx_free(tls_ctx_t *ctx)
Definition: tls_picotls.c:32
static int picotls_ctx_read(tls_ctx_t *ctx, session_t *tls_session)
Definition: tls_picotls.c:256
tls_ctx_t * picotls_ctx_get(u32 ctx_index)
Definition: tls_picotls.c:61
static int picotls_app_close(tls_ctx_t *ctx)
Definition: tls_picotls.c:209
static int picotls_stop_listen(tls_ctx_t *lctx)
Definition: tls_picotls.c:165
static int picotls_start_listen(tls_ctx_t *lctx)
Definition: tls_picotls.c:110
static int picotls_ctx_init_server(tls_ctx_t *ctx)
Definition: tls_picotls.c:521
static u32 picotls_ctx_alloc(void)
Definition: tls_picotls.c:13

Definition at line 550 of file tls_picotls.c.

◆ picotls_main

picotls_main_t picotls_main

Definition at line 7 of file tls_picotls.c.