1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(C) 2021 Marvell.
5 #ifndef _TEST_CRYPTODEV_SECURITY_IPSEC_H_
6 #define _TEST_CRYPTODEV_SECURITY_IPSEC_H_
8 #include <rte_cryptodev.h>
9 #include <rte_security.h>
11 #define IPSEC_TEST_PACKETS_MAX 32
13 struct ipsec_test_data {
37 struct rte_security_ipsec_xform ipsec_xform;
43 struct rte_crypto_sym_xform cipher;
44 struct rte_crypto_sym_xform auth;
46 struct rte_crypto_sym_xform aead;
50 struct ipsec_test_flags {
52 bool sa_expiry_pkts_soft;
53 bool sa_expiry_pkts_hard;
56 uint32_t tunnel_hdr_verify;
58 bool udp_ports_verify;
64 enum rte_crypto_sym_xform_type type;
66 enum rte_crypto_cipher_algorithm cipher;
67 enum rte_crypto_auth_algorithm auth;
68 enum rte_crypto_aead_algorithm aead;
73 static const struct crypto_param aead_list[] = {
75 .type = RTE_CRYPTO_SYM_XFORM_AEAD,
76 .alg.aead = RTE_CRYPTO_AEAD_AES_GCM,
80 .type = RTE_CRYPTO_SYM_XFORM_AEAD,
81 .alg.aead = RTE_CRYPTO_AEAD_AES_GCM,
85 .type = RTE_CRYPTO_SYM_XFORM_AEAD,
86 .alg.aead = RTE_CRYPTO_AEAD_AES_GCM,
91 int test_ipsec_sec_caps_verify(struct rte_security_ipsec_xform *ipsec_xform,
92 const struct rte_security_capability *sec_cap,
95 int test_ipsec_crypto_caps_aead_verify(
96 const struct rte_security_capability *sec_cap,
97 struct rte_crypto_sym_xform *aead);
99 void test_ipsec_td_in_from_out(const struct ipsec_test_data *td_out,
100 struct ipsec_test_data *td_in);
102 void test_ipsec_td_prepare(const struct crypto_param *param1,
103 const struct crypto_param *param2,
104 const struct ipsec_test_flags *flags,
105 struct ipsec_test_data *td_array,
108 void test_ipsec_td_update(struct ipsec_test_data td_inb[],
109 const struct ipsec_test_data td_outb[],
111 const struct ipsec_test_flags *flags);
113 void test_ipsec_display_alg(const struct crypto_param *param1,
114 const struct crypto_param *param2);
116 int test_ipsec_post_process(struct rte_mbuf *m,
117 const struct ipsec_test_data *td,
118 struct ipsec_test_data *res_d, bool silent,
119 const struct ipsec_test_flags *flags);
121 int test_ipsec_status_check(struct rte_crypto_op *op,
122 const struct ipsec_test_flags *flags,
123 enum rte_security_ipsec_sa_direction dir,