28 #define foreach_esp_decrypt_next \ 29 _(DROP, "error-drop") \ 30 _(IP4_INPUT, "ip4-input-no-checksum") \ 31 _(IP6_INPUT, "ip6-input") 33 #define _(v, s) ESP_DECRYPT_NEXT_##v, 41 #define foreach_esp_decrypt_error \ 42 _(RX_PKTS, "ESP pkts received") \ 43 _(DECRYPTION_FAILED, "ESP decryption failed") \ 44 _(REPLAY, "SA replayed packet") \ 45 _(NOT_IP, "Not IP packet (dropped)") \ 46 _(ENQ_FAIL, "Enqueue failed (buffer full)") \ 47 _(DISCARD, "Not enough crypto operations, discarding frame") \ 48 _(BAD_LEN, "Invalid ciphertext length") \ 49 _(SESSION, "Failed to get crypto session") \ 50 _(NOSUP, "Cipher/Auth not supported") 55 #define _(sym,str) ESP_DECRYPT_ERROR_##sym, 62 #define _(sym,string) string, 86 s =
format (s,
"cipher %U auth %U\n",
99 u32 n_left_from, *from, *to_next, next_index;
106 struct rte_cryptodev_sym_session *session = 0;
107 u32 ret, last_sa_index = ~0;
108 u8 numa = rte_socket_id ();
112 struct rte_crypto_op **ops = cwm->
ops;
122 ESP_DECRYPT_ERROR_DISCARD, 1);
125 ESP_DECRYPT_ERROR_DISCARD, 1);
130 next_index = ESP_DECRYPT_NEXT_DROP;
132 while (n_left_from > 0)
138 while (n_left_from > 0 && n_left_to_next > 0)
141 u32 bi0, sa_index0, seq, iv_size;
145 struct rte_mbuf *mb0;
146 struct rte_crypto_op *op;
164 ASSERT (op->status == RTE_CRYPTO_OP_STATUS_NOT_PROCESSED);
169 sizeof (op[0]) +
sizeof (op[0].sym[0]) +
sizeof (priv[0]);
174 if (sa_index0 != last_sa_index)
182 is_aead = (cipher_alg->
type == RTE_CRYPTO_SYM_XFORM_AEAD);
184 auth_alg = cipher_alg;
195 ESP_DECRYPT_ERROR_NOSUP, 1);
199 ESP_DECRYPT_ERROR_NOSUP, 1);
214 ESP_DECRYPT_ERROR_SESSION,
219 ESP_DECRYPT_ERROR_SESSION,
227 last_sa_index = sa_index0;
235 seq = clib_net_to_host_u32 (esp0->
seq);
248 ESP_DECRYPT_ERROR_REPLAY, 1);
252 ESP_DECRYPT_ERROR_REPLAY, 1);
261 priv->
next = DPDK_CRYPTO_INPUT_NEXT_DECRYPT6_POST;
263 priv->
next = DPDK_CRYPTO_INPUT_NEXT_DECRYPT4_POST;
275 mb0->data_off = RTE_PKTMBUF_HEADROOM + b0->
current_data;
277 trunc_size = auth_alg->trunc_size;
278 iv_size = cipher_alg->
iv_len;
284 ASSERT (payload_len >= 4);
286 if (payload_len & (cipher_alg->
boundary - 1))
292 ESP_DECRYPT_ERROR_BAD_LEN, 1);
295 ESP_DECRYPT_ERROR_BAD_LEN, 1);
303 u32 cipher_off, cipher_len;
307 u8 *iv = (
u8 *) (esp0 + 1);
312 cipher_len = payload_len;
316 mb0->buf_physaddr + digest - ((
u8 *) mb0->buf_addr);
318 if (!is_aead && cipher_alg->
alg == RTE_CRYPTO_CIPHER_AES_CBC)
335 _aad[2] = clib_host_to_net_u32 (sa0->
seq_hi);
341 auth_len =
sizeof (
esp_header_t) + iv_size + payload_len;
346 u32 *_digest = (
u32 *) digest;
347 _digest[0] = clib_host_to_net_u32 (sa0->
seq_hi);
348 auth_len +=
sizeof (sa0->
seq_hi);
352 op->phys_addr + (uintptr_t) priv->
icv - (uintptr_t) op;
357 0, auth_len, aad, digest, digest_paddr);
375 ESP_DECRYPT_ERROR_RX_PKTS,
379 ESP_DECRYPT_ERROR_ENQ_FAIL, numa);
384 ESP_DECRYPT_ERROR_RX_PKTS,
388 ESP_DECRYPT_ERROR_ENQ_FAIL, numa);
405 .name =
"dpdk-esp4-decrypt",
406 .vector_size =
sizeof (
u32),
415 #define _(s,n) [ESP_DECRYPT_NEXT_##s] = n, 431 .name =
"dpdk-esp6-decrypt",
432 .vector_size =
sizeof (
u32),
441 #define _(s,n) [ESP_DECRYPT_NEXT_##s] = n, 452 #define foreach_esp_decrypt_post_error \ 453 _(PKTS, "ESP post pkts") 457 #define _(sym,str) ESP_DECRYPT_POST_ERROR_##sym, 464 #define _(sym,string) string, 480 s =
format (s,
"cipher %U auth %U\n",
500 u32 n_left_from, *from, *to_next = 0, next_index;
511 while (n_left_from > 0)
517 while (n_left_from > 0 && n_left_to_next > 0)
520 u32 bi0, iv_size, next0;
526 u8 trunc_size, is_aead;
527 u16 udp_encap_adv = 0;
529 next0 = ESP_DECRYPT_NEXT_DROP;
547 is_aead = cipher_alg->
type == RTE_CRYPTO_SYM_XFORM_AEAD;
549 auth_alg = cipher_alg;
553 iv_size = cipher_alg->
iv_len;
558 seq = clib_host_to_net_u32 (esp0->
seq);
571 if (b0->
flags & VNET_BUFFER_F_IS_IP4)
579 b0->
flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
589 ESP_DECRYPT_ERROR_DECRYPTION_FAILED,
597 next0 = ESP_DECRYPT_NEXT_IP4_INPUT;
600 next0 = ESP_DECRYPT_NEXT_IP6_INPUT;
607 ESP_DECRYPT_ERROR_DECRYPTION_FAILED,
612 ESP_DECRYPT_ERROR_DECRYPTION_FAILED,
623 next0 = ESP_DECRYPT_NEXT_IP4_INPUT;
627 memmove (oh4, ih4, ih4_len);
640 next0 = ESP_DECRYPT_NEXT_IP6_INPUT;
643 oh6->payload_length = clib_host_to_net_u16 (len);
651 ESP_DECRYPT_ERROR_DECRYPTION_FAILED,
656 ESP_DECRYPT_ERROR_DECRYPTION_FAILED,
676 to_next, n_left_to_next, bi0,
684 ESP_DECRYPT_POST_ERROR_PKTS,
688 ESP_DECRYPT_POST_ERROR_PKTS,
703 .name =
"dpdk-esp4-decrypt-post",
704 .vector_size =
sizeof (
u32),
713 #define _(s,n) [ESP_DECRYPT_NEXT_##s] = n, 729 .name =
"dpdk-esp6-decrypt-post",
730 .vector_size =
sizeof (
u32),
739 #define _(s,n) [ESP_DECRYPT_NEXT_##s] = n,
static_always_inline void crypto_op_setup(u8 is_aead, struct rte_mbuf *mb0, struct rte_crypto_op *op, void *session, u32 cipher_off, u32 cipher_len, u32 auth_off, u32 auth_len, u8 *aad, u8 *digest, u64 digest_paddr)
static vlib_cli_command_t trace
(constructor) VLIB_CLI_COMMAND (trace)
static u8 * vlib_buffer_get_tail(vlib_buffer_t *b)
Get pointer to the end of buffer's data.
static char * esp_decrypt_post_error_strings[]
static u8 * format_esp_decrypt_post_trace(u8 *s, va_list *args)
static void esp_replay_advance(ipsec_sa_t *sa, u32 seq)
#define clib_memcpy_fast(a, b, c)
static_always_inline i32 crypto_alloc_ops(u8 numa, struct rte_crypto_op **ops, u32 n)
ipsec_integ_alg_t integ_alg
static_always_inline void crypto_set_icb(dpdk_gcm_cnt_blk *icb, u32 salt, u32 seq, u32 seq_hi)
ipsec_crypto_alg_t crypto_alg
#define VLIB_NODE_FN(node)
static_always_inline void crypto_enqueue_ops(vlib_main_t *vm, crypto_worker_main_t *cwm, u8 outbound, u32 node_index, u32 error, u8 numa)
static char * esp_decrypt_error_strings[]
static_always_inline clib_error_t * crypto_get_session(struct rte_cryptodev_sym_session **session, u32 sa_idx, crypto_resource_t *res, crypto_worker_main_t *cwm, u8 is_outbound)
static_always_inline void crypto_free_ops(u8 numa, struct rte_crypto_op **ops, u32 n)
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
vlib_node_registration_t dpdk_esp4_decrypt_post_node
(constructor) VLIB_REGISTER_NODE (dpdk_esp4_decrypt_post_node)
#define foreach_esp_decrypt_next
dpdk_crypto_main_t dpdk_crypto_main
static void esp_replay_advance_esn(ipsec_sa_t *sa, u32 seq)
#define foreach_esp_decrypt_post_error
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
static const u8 pad_data[]
u8 * format_ipsec_crypto_alg(u8 *s, va_list *args)
#define rte_mbuf_from_vlib_buffer(x)
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
u16 current_length
Nbytes between current data and the end of this buffer.
crypto_alg_t * cipher_algs
static int esp_replay_check_esn(ipsec_sa_t *sa, u32 seq)
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
vlib_node_registration_t dpdk_esp4_decrypt_node
(constructor) VLIB_REGISTER_NODE (dpdk_esp4_decrypt_node)
vlib_node_registration_t dpdk_esp6_decrypt_post_node
(constructor) VLIB_REGISTER_NODE (dpdk_esp6_decrypt_post_node)
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
#define VLIB_REGISTER_NODE(x,...)
static_always_inline uword vlib_get_thread_index(void)
#define CLIB_PREFETCH(addr, size, type)
static uword dpdk_esp_decrypt_post_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame, int is_ip6)
#define clib_warning(format, args...)
static uword dpdk_esp_decrypt_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame, int is_ip6)
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
u8 * format_esp_header(u8 *s, va_list *args)
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
static int esp_replay_check(ipsec_sa_t *sa, u32 seq)
crypto_worker_main_t * workers_main
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
crypto_resource_t * resource
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
u8 * format_ipsec_integ_alg(u8 *s, va_list *args)
struct _vlib_node_registration vlib_node_registration_t
vlib_node_registration_t dpdk_esp6_decrypt_node
(constructor) VLIB_REGISTER_NODE (dpdk_esp6_decrypt_node)
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
struct rte_crypto_op ** ops
static u8 * format_esp_decrypt_trace(u8 *s, va_list *args)
enum rte_crypto_sym_xform_type type
static_always_inline u16 get_resource(crypto_worker_main_t *cwm, ipsec_sa_t *sa)
ipsec_crypto_alg_t crypto_alg
static int ip4_header_bytes(const ip4_header_t *i)
#define CLIB_CACHE_LINE_BYTES
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
#define foreach_esp_decrypt_error
struct rte_crypto_op * ops[VLIB_FRAME_SIZE]
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
static u16 ip4_header_checksum(ip4_header_t *i)
ipsec_integ_alg_t integ_alg
static_always_inline dpdk_op_priv_t * crypto_op_get_priv(struct rte_crypto_op *op)