29 #define foreach_esp_encrypt_next \ 30 _(DROP, "error-drop") \ 31 _(IP4_LOOKUP, "ip4-lookup") \ 32 _(IP6_LOOKUP, "ip6-lookup") \ 33 _(INTERFACE_OUTPUT, "interface-output") 35 #define _(v, s) ESP_ENCRYPT_NEXT_##v, 43 #define foreach_esp_encrypt_error \ 44 _(RX_PKTS, "ESP pkts received") \ 45 _(SEQ_CYCLED, "Sequence number cycled") \ 46 _(ENQ_FAIL, "Enqueue failed to crypto device") \ 47 _(DISCARD, "Not enough crypto operations, discarding frame") \ 48 _(SESSION, "Failed to get crypto session") \ 49 _(NOSUP, "Cipher/Auth not supported") 54 #define _(sym,str) ESP_ENCRYPT_ERROR_##sym, 61 #define _(sym,string) string, 85 s =
format (s,
"cipher %U auth %U\n",
113 u32 n_left_from, *from, *to_next, next_index;
120 struct rte_cryptodev_sym_session *session = 0;
121 u32 ret, last_sa_index = ~0;
122 u8 numa = rte_socket_id ();
126 struct rte_crypto_op **ops = cwm->
ops;
135 ESP_ENCRYPT_ERROR_DISCARD, 1);
140 next_index = ESP_ENCRYPT_NEXT_DROP;
142 while (n_left_from > 0)
148 while (n_left_from > 0 && n_left_to_next > 0)
154 ip4_and_esp_header_t *ih0, *oh0 = 0;
155 ip6_and_esp_header_t *ih6_0, *oh6_0 = 0;
156 ip4_and_udp_and_esp_header_t *ouh0 = 0;
159 u8 is_ipv6, next_hdr_type;
164 u16 udp_encap_adv = 0;
165 struct rte_mbuf *mb0 = 0;
166 struct rte_crypto_op *op;
186 ASSERT (op->status == RTE_CRYPTO_OP_STATUS_NOT_PROCESSED);
191 sizeof (op[0]) +
sizeof (op[0].sym[0]) +
sizeof (priv[0]);
196 if (sa_index0 != last_sa_index)
204 is_aead = (cipher_alg->
type == RTE_CRYPTO_SYM_XFORM_AEAD);
207 auth_alg = cipher_alg;
217 ESP_ENCRYPT_ERROR_NOSUP, 1);
231 ESP_ENCRYPT_ERROR_SESSION, 1);
238 last_sa_index = sa_index0;
243 clib_warning (
"sequence number counter has cycled SPI %u",
246 ESP_ENCRYPT_ERROR_SEQ_CYCLED, 1);
267 is_ipv6 = (ih0->ip4.ip_version_and_header_length & 0xF0) == 0x60;
269 iv_size = cipher_alg->
iv_len;
270 trunc_size = auth_alg->trunc_size;
282 priv->
next = DPDK_CRYPTO_INPUT_NEXT_IP4_LOOKUP;
288 next_hdr_type = IP_PROTOCOL_IP_IN_IP;
295 oh0->ip4.checksum_data_64[0] =
296 clib_host_to_net_u64 (0x45ULL << 56);
301 oh0->ip4.checksum_data_32[2] =
302 clib_host_to_net_u32 (0xfe320000);
304 oh0->ip4.src_address.as_u32 =
306 oh0->ip4.dst_address.as_u32 =
311 oh0->ip4.protocol = IP_PROTOCOL_UDP;
316 esp0->
spi = clib_host_to_net_u32 (sa0->
spi);
317 esp0->
seq = clib_host_to_net_u32 (sa0->
seq);
322 priv->
next = DPDK_CRYPTO_INPUT_NEXT_IP6_LOOKUP;
327 ih6_0 = (ip6_and_esp_header_t *) ih0;
330 next_hdr_type = IP_PROTOCOL_IPV6;
332 oh6_0->ip6.ip_version_traffic_class_and_flow_label =
333 ih6_0->ip6.ip_version_traffic_class_and_flow_label;
335 oh6_0->ip6.protocol = IP_PROTOCOL_IPSEC_ESP;
336 oh6_0->ip6.hop_limit = 254;
337 oh6_0->ip6.src_address.as_u64[0] =
339 oh6_0->ip6.src_address.as_u64[1] =
341 oh6_0->ip6.dst_address.as_u64[0] =
343 oh6_0->ip6.dst_address.as_u64[1] =
346 oh6_0->esp.
spi = clib_host_to_net_u32 (sa0->
spi);
347 oh6_0->esp.seq = clib_host_to_net_u32 (sa0->
seq);
353 ESP_ENCRYPT_ERROR_NOSUP, 1);
363 priv->
next = DPDK_CRYPTO_INPUT_NEXT_INTERFACE_OUTPUT;
364 rewrite_len =
vnet_buffer (b0)->ip.save_rewrite_length;
367 u8 *src = ((
u8 *) ih0) - rewrite_len;
374 ih6_0 = (ip6_and_esp_header_t *) ih0;
375 next_hdr_type = ih6_0->ip6.protocol;
376 memmove (dst, src, rewrite_len +
sizeof (
ip6_header_t));
377 oh6_0 = (ip6_and_esp_header_t *) oh0;
378 oh6_0->ip6.protocol = IP_PROTOCOL_IPSEC_ESP;
385 next_hdr_type = ih0->ip4.protocol;
386 memmove (dst, src, rewrite_len + ip_size);
387 oh0->ip4.protocol = IP_PROTOCOL_IPSEC_ESP;
391 oh0->ip4.protocol = IP_PROTOCOL_UDP;
393 (((
u8 *) oh0) + ip_size + udp_encap_adv);
397 oh0->ip4.protocol = IP_PROTOCOL_IPSEC_ESP;
401 esp0->
spi = clib_host_to_net_u32 (sa0->
spi);
402 esp0->
seq = clib_host_to_net_u32 (sa0->
seq);
407 ouh0->udp.src_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
408 ouh0->udp.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
409 ouh0->udp.checksum = 0;
413 u16 pad_payload_len = ((orig_sz + 2) + mask) & ~mask;
414 u8 pad_bytes = pad_payload_len - 2 - orig_sz;
430 oh6_0->ip6.payload_length =
431 clib_host_to_net_u16 (len - rewrite_len);
441 clib_host_to_net_u16 (clib_net_to_host_u16
449 b0->
flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
454 mb0->data_off = ((
void *) esp0) - mb0->buf_addr;
456 u32 cipher_off, cipher_len, auth_len = 0;
461 mb0->buf_physaddr + digest - ((
u8 *) mb0->buf_addr);
463 if (!is_aead && cipher_alg->
alg == RTE_CRYPTO_CIPHER_AES_CBC)
466 cipher_len = iv_size + pad_payload_len;
470 u32 *esp_iv = (
u32 *) (esp0 + 1);
471 esp_iv[0] = sa0->
seq;
475 cipher_len = pad_payload_len;
481 aad[0] = clib_host_to_net_u32 (sa0->
spi);
482 aad[1] = clib_host_to_net_u32 (sa0->
seq);
486 aad[2] = clib_host_to_net_u32 (sa0->
seq_hi);
496 u32 *_digest = (
u32 *) digest;
497 _digest[0] = clib_host_to_net_u32 (sa0->
seq_hi);
503 0, auth_len, (
u8 *) aad, digest, digest_paddr);
521 ESP_ENCRYPT_ERROR_RX_PKTS,
525 ESP_ENCRYPT_ERROR_ENQ_FAIL, numa);
535 .name =
"dpdk-esp-encrypt",
537 .vector_size =
sizeof (
u32),
544 [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 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.
ip46_address_t tunnel_src_addr
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)
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 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 VLIB_NODE_FUNCTION_MULTIARCH(node, fn)
#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
#define VLIB_REGISTER_NODE(x,...)
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 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)
struct _vlib_node_registration vlib_node_registration_t
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)
ipsec_crypto_alg_t crypto_alg
#define VLIB_NODE_FLAG_IS_OUTPUT
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)