16 #ifndef included_vnet_crypto_crypto_h 17 #define included_vnet_crypto_crypto_h 21 #define VNET_CRYPTO_FRAME_SIZE 64 24 #define foreach_crypto_cipher_alg \ 25 _(DES_CBC, "des-cbc", 7) \ 26 _(3DES_CBC, "3des-cbc", 24) \ 27 _(AES_128_CBC, "aes-128-cbc", 16) \ 28 _(AES_192_CBC, "aes-192-cbc", 24) \ 29 _(AES_256_CBC, "aes-256-cbc", 32) \ 30 _(AES_128_CTR, "aes-128-ctr", 16) \ 31 _(AES_192_CTR, "aes-192-ctr", 24) \ 32 _(AES_256_CTR, "aes-256-ctr", 32) 35 #define foreach_crypto_aead_alg \ 36 _(AES_128_GCM, "aes-128-gcm", 16) \ 37 _(AES_192_GCM, "aes-192-gcm", 24) \ 38 _(AES_256_GCM, "aes-256-gcm", 32) \ 39 _(CHACHA20_POLY1305, "chacha20-poly1305", 32) 41 #define foreach_crypto_hmac_alg \ 44 _(SHA224, "sha-224") \ 45 _(SHA256, "sha-256") \ 46 _(SHA384, "sha-384") \ 49 #define foreach_crypto_op_type \ 50 _(ENCRYPT, "encrypt") \ 51 _(DECRYPT, "decrypt") \ 52 _(AEAD_ENCRYPT, "aead-encrypt") \ 53 _(AEAD_DECRYPT, "aead-decrypt") \ 58 #define _(n, s) VNET_CRYPTO_OP_TYPE_##n, 64 #define foreach_crypto_op_status \ 66 _(PENDING, "pending") \ 67 _(WORK_IN_PROGRESS, "work-in-progress") \ 68 _(COMPLETED, "completed") \ 69 _(FAIL_NO_HANDLER, "no-handler") \ 70 _(FAIL_BAD_HMAC, "bad-hmac") \ 71 _(FAIL_ENGINE_ERR, "engine-error") 76 #define foreach_crypto_aead_async_alg \ 77 _(AES_128_GCM, "aes-128-gcm-aad8", 16, 16, 8) \ 78 _(AES_128_GCM, "aes-128-gcm-aad12", 16, 16, 12) \ 79 _(AES_192_GCM, "aes-192-gcm-aad8", 24, 16, 8) \ 80 _(AES_192_GCM, "aes-192-gcm-aad12", 24, 16, 12) \ 81 _(AES_256_GCM, "aes-256-gcm-aad8", 32, 16, 8) \ 82 _(AES_256_GCM, "aes-256-gcm-aad12", 32, 16, 12) \ 83 _(CHACHA20_POLY1305, "chacha20-poly1305-aad8", 32, 16, 8) \ 84 _(CHACHA20_POLY1305, "chacha20-poly1305-aad12", 32, 16, 12) 87 #define foreach_crypto_link_async_alg \ 88 _ (AES_128_CBC, SHA1, "aes-128-cbc-hmac-sha-1", 16, 12) \ 89 _ (AES_192_CBC, SHA1, "aes-192-cbc-hmac-sha-1", 24, 12) \ 90 _ (AES_256_CBC, SHA1, "aes-256-cbc-hmac-sha-1", 32, 12) \ 91 _ (AES_128_CBC, SHA224, "aes-128-cbc-hmac-sha-224", 16, 14) \ 92 _ (AES_192_CBC, SHA224, "aes-192-cbc-hmac-sha-224", 24, 14) \ 93 _ (AES_256_CBC, SHA224, "aes-256-cbc-hmac-sha-224", 32, 14) \ 94 _ (AES_128_CBC, SHA256, "aes-128-cbc-hmac-sha-256", 16, 16) \ 95 _ (AES_192_CBC, SHA256, "aes-192-cbc-hmac-sha-256", 24, 16) \ 96 _ (AES_256_CBC, SHA256, "aes-256-cbc-hmac-sha-256", 32, 16) \ 97 _ (AES_128_CBC, SHA384, "aes-128-cbc-hmac-sha-384", 16, 24) \ 98 _ (AES_192_CBC, SHA384, "aes-192-cbc-hmac-sha-384", 24, 24) \ 99 _ (AES_256_CBC, SHA384, "aes-256-cbc-hmac-sha-384", 32, 24) \ 100 _ (AES_128_CBC, SHA512, "aes-128-cbc-hmac-sha-512", 16, 32) \ 101 _ (AES_192_CBC, SHA512, "aes-192-cbc-hmac-sha-512", 24, 32) \ 102 _ (AES_256_CBC, SHA512, "aes-256-cbc-hmac-sha-512", 32, 32) 104 #define foreach_crypto_async_op_type \ 105 _(ENCRYPT, "async-encrypt") \ 106 _(DECRYPT, "async-decrypt") 117 #define _(n, s) VNET_CRYPTO_OP_STATUS_##n, 127 #define _(n, s, l) VNET_CRYPTO_ALG_##n, 131 #define _(n, s) VNET_CRYPTO_ALG_HMAC_##n, 139 #define _(n, s) VNET_CRYPTO_ASYNC_OP_TYPE_##n, 148 #define _(n, s, k, t, a) \ 149 VNET_CRYPTO_ALG_##n##_TAG##t##_AAD##a, 152 #define _(c, h, s, k ,d) \ 153 VNET_CRYPTO_ALG_##c##_##h##_TAG##d, 162 #define _(n, s, k, t, a) \ 163 VNET_CRYPTO_OP_##n##_TAG##t##_AAD##a##_ENC, \ 164 VNET_CRYPTO_OP_##n##_TAG##t##_AAD##a##_DEC, 167 #define _(c, h, s, k ,d) \ 168 VNET_CRYPTO_OP_##c##_##h##_TAG##d##_ENC, \ 169 VNET_CRYPTO_OP_##c##_##h##_TAG##d##_DEC, 191 #define VNET_CRYPTO_KEY_TYPE_DATA 0 192 #define VNET_CRYPTO_KEY_TYPE_LINK 1 199 #define _(n, s, l) VNET_CRYPTO_OP_##n##_ENC, VNET_CRYPTO_OP_##n##_DEC, 203 #define _(n, s) VNET_CRYPTO_OP_##n##_HMAC, 234 vnet_crypto_op_id_t
op:16;
237 #define VNET_CRYPTO_OP_FLAG_INIT_IV (1 << 0) 238 #define VNET_CRYPTO_OP_FLAG_HMAC_CHECK (1 << 1) 239 #define VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS (1 << 2) 290 vnet_crypto_async_op_type_t
type;
291 vnet_crypto_async_alg_t
alg;
323 #define VNET_CRYPTO_FRAME_STATE_NOT_PROCESSED 0 324 #define VNET_CRYPTO_FRAME_STATE_PENDING 1 325 #define VNET_CRYPTO_FRAME_STATE_WORK_IN_PROGRESS 2 326 #define VNET_CRYPTO_FRAME_STATE_SUCCESS 3 327 #define VNET_CRYPTO_FRAME_STATE_ELT_ERROR 4 329 vnet_crypto_async_op_id_t
op:8;
357 vnet_crypto_key_op_t kop,
358 vnet_crypto_key_index_t idx);
366 u32 * enqueue_thread_idx);
373 vnet_crypto_op_id_t opt,
378 vnet_crypto_op_id_t opt,
383 vnet_crypto_op_id_t opt,
395 vnet_crypto_async_op_id_t opt,
439 #define VNET_CRYPTO_ASYNC_DISPATCH_POLLING 0 440 #define VNET_CRYPTO_ASYNC_DISPATCH_INTERRUPT 1 454 crypto_op_class_type_t oct);
466 vnet_crypto_key_index_t index_crypto,
467 vnet_crypto_key_index_t index_integ);
566 vnet_crypto_async_op_id_t opt = frame->
op;
600 u32 crypto_len,
i16 integ_len_adj,
601 i16 crypto_start_offset,
602 u16 integ_start_offset,
613 vnet_crypto_async_op_id_t opt = f->
op;
643 vnet_crypto_async_op_id_t opt;
int() vnet_crypto_frame_enqueue_t(vlib_main_t *vm, vnet_crypto_async_frame_t *frame)
async crypto function handlers
#define foreach_crypto_op_status
format_function_t format_vnet_crypto_op_type
static_always_inline int vnet_crypto_async_add_to_frame(vlib_main_t *vm, vnet_crypto_async_frame_t **frame, u32 key_index, u32 crypto_len, i16 integ_len_adj, i16 crypto_start_offset, u16 integ_start_offset, u32 buffer_index, u16 next_node, u8 *iv, u8 *tag, u8 *aad, u8 flags)
uword * async_alg_index_by_name
vnet_crypto_engine_t * engines
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
uword * alg_index_by_name
vnet_crypto_thread_t * threads
#define foreach_crypto_link_async_alg
static_always_inline void vnet_crypto_async_reset_frame(vnet_crypto_async_frame_t *f)
#define VNET_CRYPTO_FRAME_STATE_NOT_PROCESSED
static_always_inline int vnet_crypto_set_handler(char *alg_name, char *engine)
vl_api_wireguard_peer_flags_t flags
vnet_crypto_op_data_t opt_data[VNET_CRYPTO_N_OP_IDS]
u32() vnet_crypto_chained_ops_handler_t(vlib_main_t *vm, vnet_crypto_op_t *ops[], vnet_crypto_op_chunk_t *chunks, u32 n_ops)
vnet_crypto_alg_data_t * algs
vnet_crypto_frame_enqueue_t ** enqueue_handlers
format_function_t format_vnet_crypto_op
static void vlib_node_set_interrupt_pending(vlib_main_t *vm, u32 node_index)
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
vnet_crypto_async_alg_data_t * async_algs
format_function_t format_vnet_crypto_alg
#define VNET_CRYPTO_FRAME_STATE_PENDING
vnet_crypto_async_op_type_t type
u32 vnet_crypto_process_chained_ops(vlib_main_t *vm, vnet_crypto_op_t ops[], vnet_crypto_op_chunk_t *chunks, u32 n_ops)
int vnet_crypto_is_set_handler(vnet_crypto_alg_t alg)
void vnet_crypto_register_key_handler(vlib_main_t *vm, u32 engine_index, vnet_crypto_key_handler_t *keyh)
void vnet_crypto_register_ops_handler(vlib_main_t *vm, u32 engine_index, vnet_crypto_op_id_t opt, vnet_crypto_ops_handler_t *oph)
#define foreach_crypto_async_op_type
void vnet_crypto_register_ops_handlers(vlib_main_t *vm, u32 engine_index, vnet_crypto_op_id_t opt, vnet_crypto_ops_handler_t *fn, vnet_crypto_chained_ops_handler_t *cfn)
vlib_main_t ** vlib_mains
void vnet_crypto_request_async_mode(int is_enable)
format_function_t format_vnet_crypto_async_op
static uword clib_bitmap_set_no_check(uword *a, uword i, uword new_value)
Sets the ith bit of a bitmap to new_value.
u32 vnet_crypto_key_add(vlib_main_t *vm, vnet_crypto_alg_t alg, u8 *data, u16 length)
#define static_always_inline
void vnet_crypto_key_del(vlib_main_t *vm, vnet_crypto_key_index_t index)
#define foreach_crypto_aead_alg
u32 active_engine_index_chained
int vnet_crypto_set_async_handler2(char *alg_name, char *engine)
static_always_inline void vnet_crypto_op_init(vnet_crypto_op_t *op, vnet_crypto_op_id_t type)
void vnet_crypto_register_chained_ops_handler(vlib_main_t *vm, u32 engine_index, vnet_crypto_op_id_t opt, vnet_crypto_chained_ops_handler_t *oph)
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
u32 vnet_crypto_process_ops(vlib_main_t *vm, vnet_crypto_op_t ops[], u32 n_ops)
int vnet_crypto_is_set_async_handler(vnet_crypto_async_op_id_t opt)
#define foreach_crypto_hmac_alg
vnet_crypto_async_frame_t * frames[VNET_CRYPTO_ASYNC_OP_N_IDS]
vnet_crypto_chained_ops_handler_t ** chained_ops_handlers
#define VNET_CRYPTO_FRAME_SIZE
vl_api_fib_path_type_t type
vnet_crypto_async_alg_t vnet_crypto_link_algs(vnet_crypto_alg_t crypto_alg, vnet_crypto_alg_t integ_alg)
u32 active_engine_index_async
#define VNET_CRYPTO_ASYNC_DISPATCH_INTERRUPT
void() vnet_crypto_key_handler_t(vlib_main_t *vm, vnet_crypto_key_op_t kop, vnet_crypto_key_index_t idx)
vnet_crypto_key_handler_t * key_op_handler
vnet_crypto_async_next_node_t * next_nodes
void vnet_crypto_register_async_handler(vlib_main_t *vm, u32 engine_index, vnet_crypto_async_op_id_t opt, vnet_crypto_frame_enqueue_t *enq_fn, vnet_crypto_frame_dequeue_t *deq_fn)
u16 next_node_index[VNET_CRYPTO_FRAME_SIZE]
#define pool_put(P, E)
Free an object E in pool P.
u32 active_engine_index_simple
static_always_inline void vnet_crypto_async_free_frame(vlib_main_t *vm, vnet_crypto_async_frame_t *frame)
vnet_crypto_async_frame_t * frame_pool
vl_api_tunnel_mode_t mode
static_always_inline vnet_crypto_async_frame_t * vnet_crypto_async_get_frame(vlib_main_t *vm, vnet_crypto_async_op_id_t opt)
async crypto inline functions
vnet_crypto_async_alg_t async_alg
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P with alignment A.
u32 buffer_indices[VNET_CRYPTO_FRAME_SIZE]
format_function_t format_vnet_crypto_async_op_type
sll srl srl sll sra u16x4 i
format_function_t format_vnet_crypto_async_alg
vnet_crypto_frame_dequeue_t ** dequeue_handlers
vnet_crypto_async_op_type_t
clib_error_t * crypto_dispatch_enable_disable(int is_enable)
unformat_function_t unformat_vnet_crypto_alg
u32() vnet_crypto_ops_handler_t(vlib_main_t *vm, vnet_crypto_op_t *ops[], u32 n_ops)
vnet_crypto_async_alg_t alg
format_function_t format_vnet_crypto_op_status
uword * engine_index_by_name
static_always_inline vnet_crypto_op_type_t vnet_crypto_get_op_type(vnet_crypto_op_id_t id)
clib_bitmap_t * async_active_ids
u8 flags
share same VNET_CRYPTO_OP_FLAG_* values
u32 vnet_crypto_key_index_t
#define foreach_crypto_aead_async_alg
async crypto
vnet_crypto_async_op_id_t
static_always_inline int vnet_crypto_async_submit_open_frame(vlib_main_t *vm, vnet_crypto_async_frame_t *frame)
vnet_crypto_async_op_id_t op
static_always_inline vnet_crypto_key_t * vnet_crypto_get_key(vnet_crypto_key_index_t index)
vnet_crypto_async_frame_t *() vnet_crypto_frame_dequeue_t(vlib_main_t *vm, u32 *nb_elts_processed, u32 *enqueue_thread_idx)
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
format_function_t format_vnet_crypto_engine
u32 vnet_crypto_register_engine(vlib_main_t *vm, char *name, int prio, char *desc)
#define foreach_crypto_op_type
vnet_crypto_op_type_t type
vnet_crypto_op_status_t status
static vlib_thread_main_t * vlib_get_thread_main()
static u32 vlib_num_workers()
void vnet_crypto_set_async_dispatch_mode(u8 mode)
STATIC_ASSERT_SIZEOF(vnet_crypto_op_t, CLIB_CACHE_LINE_BYTES)
u32 vnet_crypto_key_add_linked(vlib_main_t *vm, vnet_crypto_key_index_t index_crypto, vnet_crypto_key_index_t index_integ)
Use 2 created keys to generate new key for linked algs (cipher + integ) The returned key index is to ...
vnet_crypto_main_t crypto_main
int vnet_crypto_set_handler2(char *ops_handler_name, char *engine, crypto_op_class_type_t oct)
vnet_crypto_ops_handler_t ** ops_handlers
#define CLIB_CACHE_LINE_BYTES
u32 vnet_crypto_register_post_node(vlib_main_t *vm, char *post_node_name)
async crypto register functions
#define foreach_crypto_cipher_alg
vnet_crypto_op_status_t status
vnet_crypto_async_frame_elt_t elts[VNET_CRYPTO_FRAME_SIZE]