28 #define foreach_esp_encrypt_next \ 29 _(DROP, "error-drop") \ 30 _(IP4_LOOKUP, "ip4-lookup") \ 31 _(IP6_LOOKUP, "ip6-lookup") \ 32 _(INTERFACE_OUTPUT, "interface-output") 34 #define _(v, s) ESP_ENCRYPT_NEXT_##v, 42 #define foreach_esp_encrypt_error \ 43 _(RX_PKTS, "ESP pkts received") \ 44 _(SEQ_CYCLED, "Sequence number cycled") \ 45 _(ENQ_FAIL, "Enqueue failed to crypto device") \ 46 _(DISCARD, "Not enough crypto operations, discarding frame") \ 47 _(SESSION, "Failed to get crypto session") \ 48 _(NOSUP, "Cipher/Auth not supported") 53 #define _(sym,str) ESP_ENCRYPT_ERROR_##sym, 60 #define _(sym,string) string, 84 s =
format (s,
"cipher %U auth %U\n",
112 u32 n_left_from, *from, *to_next, next_index;
119 struct rte_cryptodev_sym_session *session = 0;
120 u32 ret, last_sa_index = ~0;
121 u8 numa = rte_socket_id ();
125 struct rte_crypto_op **ops = cwm->
ops;
134 ESP_ENCRYPT_ERROR_DISCARD, 1);
139 next_index = ESP_ENCRYPT_NEXT_DROP;
141 while (n_left_from > 0)
147 while (n_left_from > 0 && n_left_to_next > 0)
153 ip4_and_esp_header_t *ih0, *oh0 = 0;
154 ip6_and_esp_header_t *ih6_0, *oh6_0 = 0;
157 u8 is_ipv6, next_hdr_type;
162 struct rte_mbuf *mb0 = 0;
163 struct rte_crypto_op *op;
183 ASSERT (op->status == RTE_CRYPTO_OP_STATUS_NOT_PROCESSED);
188 sizeof (op[0]) +
sizeof (op[0].sym[0]) +
sizeof (priv[0]);
193 if (sa_index0 != last_sa_index)
201 is_aead = (cipher_alg->
type == RTE_CRYPTO_SYM_XFORM_AEAD);
204 auth_alg = cipher_alg;
214 ESP_ENCRYPT_ERROR_NOSUP, 1);
228 ESP_ENCRYPT_ERROR_SESSION, 1);
235 last_sa_index = sa_index0;
240 clib_warning (
"sequence number counter has cycled SPI %u",
243 ESP_ENCRYPT_ERROR_SEQ_CYCLED, 1);
264 is_ipv6 = (ih0->ip4.ip_version_and_header_length & 0xF0) == 0x60;
266 iv_size = cipher_alg->
iv_len;
267 trunc_size = auth_alg->trunc_size;
275 priv->
next = DPDK_CRYPTO_INPUT_NEXT_IP4_LOOKUP;
280 next_hdr_type = IP_PROTOCOL_IP_IN_IP;
287 oh0->ip4.checksum_data_64[0] =
288 clib_host_to_net_u64 (0x45ULL << 56);
293 oh0->ip4.checksum_data_32[2] =
294 clib_host_to_net_u32 (0xfe320000);
296 oh0->ip4.src_address.as_u32 =
298 oh0->ip4.dst_address.as_u32 =
301 oh0->esp.
spi = clib_host_to_net_u32 (sa0->
spi);
302 oh0->esp.seq = clib_host_to_net_u32 (sa0->
seq);
307 priv->
next = DPDK_CRYPTO_INPUT_NEXT_IP6_LOOKUP;
312 ih6_0 = (ip6_and_esp_header_t *) ih0;
315 next_hdr_type = IP_PROTOCOL_IPV6;
317 oh6_0->ip6.ip_version_traffic_class_and_flow_label =
318 ih6_0->ip6.ip_version_traffic_class_and_flow_label;
320 oh6_0->ip6.protocol = IP_PROTOCOL_IPSEC_ESP;
321 oh6_0->ip6.hop_limit = 254;
322 oh6_0->ip6.src_address.as_u64[0] =
324 oh6_0->ip6.src_address.as_u64[1] =
326 oh6_0->ip6.dst_address.as_u64[0] =
328 oh6_0->ip6.dst_address.as_u64[1] =
331 oh6_0->esp.
spi = clib_host_to_net_u32 (sa0->
spi);
332 oh6_0->esp.seq = clib_host_to_net_u32 (sa0->
seq);
338 ESP_ENCRYPT_ERROR_NOSUP, 1);
348 priv->
next = DPDK_CRYPTO_INPUT_NEXT_INTERFACE_OUTPUT;
349 rewrite_len =
vnet_buffer (b0)->ip.save_rewrite_length;
352 u8 *src = ((
u8 *) ih0) - rewrite_len;
359 ih6_0 = (ip6_and_esp_header_t *) ih0;
360 next_hdr_type = ih6_0->ip6.protocol;
361 memmove (dst, src, rewrite_len +
sizeof (
ip6_header_t));
362 oh6_0 = (ip6_and_esp_header_t *) oh0;
363 oh6_0->ip6.protocol = IP_PROTOCOL_IPSEC_ESP;
370 next_hdr_type = ih0->ip4.protocol;
371 memmove (dst, src, rewrite_len + ip_size);
372 oh0->ip4.protocol = IP_PROTOCOL_IPSEC_ESP;
375 esp0->
spi = clib_host_to_net_u32 (sa0->
spi);
376 esp0->
seq = clib_host_to_net_u32 (sa0->
seq);
381 u16 pad_payload_len = ((orig_sz + 2) + mask) & ~mask;
382 u8 pad_bytes = pad_payload_len - 2 - orig_sz;
398 oh6_0->ip6.payload_length =
399 clib_host_to_net_u16 (len - rewrite_len);
415 mb0->data_off = ((
void *) esp0) - mb0->buf_addr;
417 u32 cipher_off, cipher_len, auth_len = 0;
422 mb0->buf_physaddr + digest - ((
u8 *) mb0->buf_addr);
424 if (!is_aead && cipher_alg->
alg == RTE_CRYPTO_CIPHER_AES_CBC)
427 cipher_len = iv_size + pad_payload_len;
431 u32 *esp_iv = (
u32 *) (esp0 + 1);
432 esp_iv[0] = sa0->
seq;
436 cipher_len = pad_payload_len;
442 aad[0] = clib_host_to_net_u32 (sa0->
spi);
443 aad[1] = clib_host_to_net_u32 (sa0->
seq);
447 aad[2] = clib_host_to_net_u32 (sa0->
seq_hi);
457 u32 *_digest = (
u32 *) digest;
458 _digest[0] = clib_host_to_net_u32 (sa0->
seq_hi);
464 0, auth_len, (
u8 *) aad, digest, digest_paddr);
482 ESP_ENCRYPT_ERROR_RX_PKTS,
486 ESP_ENCRYPT_ERROR_ENQ_FAIL, numa);
496 .name =
"dpdk-esp-encrypt",
498 .vector_size =
sizeof (
u32),
505 [ESP_ENCRYPT_NEXT_DROP] =
"error-drop",
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 u8 * vlib_buffer_get_tail(vlib_buffer_t *b)
Get pointer to the end of buffer's data.
ip46_address_t tunnel_src_addr
static vlib_cli_command_t trace
(constructor) VLIB_CLI_COMMAND (trace)
static int ip4_header_bytes(ip4_header_t *i)
static_always_inline i32 crypto_alloc_ops(u8 numa, struct rte_crypto_op **ops, u32 n)
ipsec_integ_alg_t integ_alg
static u8 * format_esp_encrypt_trace(u8 *s, va_list *args)
static_always_inline void crypto_set_icb(dpdk_gcm_cnt_blk *icb, u32 salt, u32 seq, u32 seq_hi)
struct _vlib_node_registration vlib_node_registration_t
ipsec_integ_alg_t integ_alg
ipsec_crypto_alg_t crypto_alg
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 int esp_seq_advance(ipsec_sa_t *sa)
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)
dpdk_crypto_main_t dpdk_crypto_main
#define VLIB_BUFFER_TOTAL_LENGTH_VALID
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
vlib_node_registration_t dpdk_esp_encrypt_node
(constructor) VLIB_REGISTER_NODE (dpdk_esp_encrypt_node)
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.
static void * vlib_buffer_put_uninit(vlib_buffer_t *b, u8 size)
Append uninitialized data to buffer.
crypto_alg_t * cipher_algs
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
#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)
ip46_address_t tunnel_dst_addr
static_always_inline uword vlib_get_thread_index(void)
#define CLIB_PREFETCH(addr, size, type)
#define foreach_esp_encrypt_error
#define clib_warning(format, args...)
#define VLIB_BUFFER_IS_TRACED
#define clib_memcpy(a, b, c)
static char * esp_encrypt_error_strings[]
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)
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 uword is_pow2(uword x)
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)
#define VLIB_NODE_FLAG_IS_OUTPUT
template key/value backing page structure
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
struct rte_crypto_op ** ops
struct clib_bihash_value offset
template key/value backing page structure
enum rte_crypto_sym_xform_type type
static_always_inline u16 get_resource(crypto_worker_main_t *cwm, ipsec_sa_t *sa)
#define VLIB_NODE_FUNCTION_MULTIARCH(node, fn)
ipsec_crypto_alg_t crypto_alg
#define VLIB_REGISTER_NODE(x,...)
static uword dpdk_esp_encrypt_node_fn(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
#define foreach_esp_encrypt_next
#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.
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)
static_always_inline dpdk_op_priv_t * crypto_op_get_priv(struct rte_crypto_op *op)