1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018 Intel Corporation
7 #include <rte_common.h>
8 #include <rte_hexdump.h>
10 #include <rte_malloc.h>
11 #include <rte_memcpy.h>
12 #include <rte_cycles.h>
13 #include <rte_bus_vdev.h>
16 #include <rte_crypto.h>
17 #include <rte_cryptodev.h>
18 #include <rte_cryptodev_pmd.h>
19 #include <rte_lcore.h>
20 #include <rte_ipsec.h>
21 #include <rte_random.h>
23 #include <rte_security_driver.h>
26 #include "test_cryptodev.h"
28 #define VDEV_ARGS_SIZE 100
29 #define MAX_NB_SESSIONS 200
31 #define REPLAY_WIN_0 0
32 #define REPLAY_WIN_32 32
33 #define REPLAY_WIN_64 64
34 #define REPLAY_WIN_128 128
35 #define REPLAY_WIN_256 256
36 #define DATA_64_BYTES 64
37 #define DATA_80_BYTES 80
38 #define DATA_100_BYTES 100
40 #define ESN_DISABLED 0
42 #define OUTBOUND_SPI 17
44 #define REORDER_PKTS 1
45 #define DEQUEUE_COUNT 1000
48 enum rte_crypto_sym_xform_type auth;
49 enum rte_crypto_sym_xform_type cipher;
50 enum rte_crypto_sym_xform_type aead;
53 char cipher_algo[128];
57 struct ipsec_testsuite_params {
58 struct rte_mempool *mbuf_pool;
59 struct rte_mempool *cop_mpool;
60 struct rte_cryptodev_config conf;
61 struct rte_cryptodev_qp_conf qp_conf;
64 uint8_t valid_dev_found;
67 struct ipsec_unitest_params {
68 struct rte_crypto_sym_xform cipher_xform;
69 struct rte_crypto_sym_xform auth_xform;
70 struct rte_crypto_sym_xform aead_xform;
71 struct rte_crypto_sym_xform *crypto_xforms;
73 struct rte_security_ipsec_xform ipsec_xform;
75 struct rte_ipsec_sa_prm sa_prm;
76 struct rte_ipsec_session ss[MAX_NB_SAS];
78 struct rte_crypto_op *cop[BURST_SIZE];
80 struct rte_mbuf *obuf[BURST_SIZE], *ibuf[BURST_SIZE],
86 struct ipsec_test_cfg {
87 uint32_t replay_win_sz;
92 uint32_t reorder_pkts;
95 static const struct ipsec_test_cfg test_cfg[] = {
96 {REPLAY_WIN_0, ESN_DISABLED, 0, DATA_64_BYTES, 1, 0},
97 {REPLAY_WIN_0, ESN_DISABLED, 0, DATA_64_BYTES, BURST_SIZE, 0},
98 {REPLAY_WIN_0, ESN_DISABLED, 0, DATA_80_BYTES, BURST_SIZE,
100 {REPLAY_WIN_32, ESN_ENABLED, 0, DATA_100_BYTES, 1, 0},
101 {REPLAY_WIN_32, ESN_ENABLED, 0, DATA_100_BYTES, BURST_SIZE,
103 {REPLAY_WIN_64, ESN_ENABLED, 0, DATA_64_BYTES, 1, 0},
104 {REPLAY_WIN_128, ESN_ENABLED, RTE_IPSEC_SAFLAG_SQN_ATOM,
105 DATA_80_BYTES, 1, 0},
106 {REPLAY_WIN_256, ESN_DISABLED, 0, DATA_100_BYTES, 1, 0},
109 static const int num_cfg = RTE_DIM(test_cfg);
110 static struct ipsec_testsuite_params testsuite_params = { NULL };
111 static struct ipsec_unitest_params unittest_params;
112 static struct user_params uparams;
114 struct supported_cipher_algo {
116 enum rte_crypto_cipher_algorithm algo;
122 struct supported_auth_algo {
124 enum rte_crypto_auth_algorithm algo;
130 const struct supported_cipher_algo cipher_algos[] = {
133 .algo = RTE_CRYPTO_CIPHER_NULL,
140 const struct supported_auth_algo auth_algos[] = {
143 .algo = RTE_CRYPTO_AUTH_NULL,
151 dummy_sec_create(void *device, struct rte_security_session_conf *conf,
152 struct rte_security_session *sess, struct rte_mempool *mp)
154 RTE_SET_USED(device);
158 sess->sess_private_data = NULL;
163 dummy_sec_destroy(void *device, struct rte_security_session *sess)
165 RTE_SET_USED(device);
170 static const struct rte_security_ops dummy_sec_ops = {
171 .session_create = dummy_sec_create,
172 .session_destroy = dummy_sec_destroy,
175 static struct rte_security_ctx dummy_sec_ctx = {
176 .ops = &dummy_sec_ops,
179 static const struct supported_cipher_algo *
180 find_match_cipher_algo(const char *cipher_keyword)
184 for (i = 0; i < RTE_DIM(cipher_algos); i++) {
185 const struct supported_cipher_algo *algo =
188 if (strcmp(cipher_keyword, algo->keyword) == 0)
195 static const struct supported_auth_algo *
196 find_match_auth_algo(const char *auth_keyword)
200 for (i = 0; i < RTE_DIM(auth_algos); i++) {
201 const struct supported_auth_algo *algo =
204 if (strcmp(auth_keyword, algo->keyword) == 0)
212 fill_crypto_xform(struct ipsec_unitest_params *ut_params,
213 const struct supported_auth_algo *auth_algo,
214 const struct supported_cipher_algo *cipher_algo)
216 ut_params->cipher_xform.type = RTE_CRYPTO_SYM_XFORM_CIPHER;
217 ut_params->cipher_xform.cipher.algo = cipher_algo->algo;
218 ut_params->auth_xform.type = RTE_CRYPTO_SYM_XFORM_AUTH;
219 ut_params->auth_xform.auth.algo = auth_algo->algo;
221 if (ut_params->ipsec_xform.direction ==
222 RTE_SECURITY_IPSEC_SA_DIR_INGRESS) {
223 ut_params->cipher_xform.cipher.op =
224 RTE_CRYPTO_CIPHER_OP_DECRYPT;
225 ut_params->auth_xform.auth.op = RTE_CRYPTO_AUTH_OP_VERIFY;
226 ut_params->cipher_xform.next = NULL;
227 ut_params->auth_xform.next = &ut_params->cipher_xform;
228 ut_params->crypto_xforms = &ut_params->auth_xform;
230 ut_params->cipher_xform.cipher.op =
231 RTE_CRYPTO_CIPHER_OP_ENCRYPT;
232 ut_params->auth_xform.auth.op = RTE_CRYPTO_AUTH_OP_GENERATE;
233 ut_params->auth_xform.next = NULL;
234 ut_params->cipher_xform.next = &ut_params->auth_xform;
235 ut_params->crypto_xforms = &ut_params->cipher_xform;
240 check_cryptodev_capability(const struct ipsec_unitest_params *ut,
243 struct rte_cryptodev_sym_capability_idx cap_idx;
244 const struct rte_cryptodev_symmetric_capability *cap;
247 cap_idx.type = RTE_CRYPTO_SYM_XFORM_AUTH;
248 cap_idx.algo.auth = ut->auth_xform.auth.algo;
249 cap = rte_cryptodev_sym_capability_get(dev_id, &cap_idx);
252 rc = rte_cryptodev_sym_capability_check_auth(cap,
253 ut->auth_xform.auth.key.length,
254 ut->auth_xform.auth.digest_length, 0);
256 cap_idx.type = RTE_CRYPTO_SYM_XFORM_CIPHER;
257 cap_idx.algo.cipher = ut->cipher_xform.cipher.algo;
258 cap = rte_cryptodev_sym_capability_get(
261 rc = rte_cryptodev_sym_capability_check_cipher(
263 ut->cipher_xform.cipher.key.length,
264 ut->cipher_xform.cipher.iv.length);
272 testsuite_setup(void)
274 struct ipsec_testsuite_params *ts_params = &testsuite_params;
275 struct ipsec_unitest_params *ut_params = &unittest_params;
276 const struct supported_auth_algo *auth_algo;
277 const struct supported_cipher_algo *cipher_algo;
278 struct rte_cryptodev_info info;
279 uint32_t i, nb_devs, dev_id;
283 memset(ts_params, 0, sizeof(*ts_params));
284 memset(ut_params, 0, sizeof(*ut_params));
285 memset(&uparams, 0, sizeof(struct user_params));
287 uparams.auth = RTE_CRYPTO_SYM_XFORM_AUTH;
288 uparams.cipher = RTE_CRYPTO_SYM_XFORM_CIPHER;
289 uparams.aead = RTE_CRYPTO_SYM_XFORM_NOT_SPECIFIED;
290 strcpy(uparams.auth_algo, "null");
291 strcpy(uparams.cipher_algo, "null");
293 auth_algo = find_match_auth_algo(uparams.auth_algo);
294 cipher_algo = find_match_cipher_algo(uparams.cipher_algo);
295 fill_crypto_xform(ut_params, auth_algo, cipher_algo);
297 nb_devs = rte_cryptodev_count();
299 RTE_LOG(WARNING, USER1, "No crypto devices found?\n");
303 /* Find first valid crypto device */
304 for (i = 0; i < nb_devs; i++) {
305 rc = check_cryptodev_capability(ut_params, i);
307 ts_params->valid_dev = i;
308 ts_params->valid_dev_found = 1;
313 if (ts_params->valid_dev_found == 0)
316 ts_params->mbuf_pool = rte_pktmbuf_pool_create(
318 NUM_MBUFS, MBUF_CACHE_SIZE, 0, MBUF_SIZE,
320 if (ts_params->mbuf_pool == NULL) {
321 RTE_LOG(ERR, USER1, "Can't create CRYPTO_MBUFPOOL\n");
325 ts_params->cop_mpool = rte_crypto_op_pool_create(
326 "MBUF_CRYPTO_SYM_OP_POOL",
327 RTE_CRYPTO_OP_TYPE_SYMMETRIC,
328 NUM_MBUFS, MBUF_CACHE_SIZE,
330 sizeof(struct rte_crypto_sym_xform) +
333 if (ts_params->cop_mpool == NULL) {
334 RTE_LOG(ERR, USER1, "Can't create CRYPTO_OP_POOL\n");
338 /* Set up all the qps on the first of the valid devices found */
339 dev_id = ts_params->valid_dev;
341 rte_cryptodev_info_get(dev_id, &info);
343 ts_params->conf.nb_queue_pairs = info.max_nb_queue_pairs;
344 ts_params->conf.socket_id = SOCKET_ID_ANY;
345 ts_params->conf.ff_disable = RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO;
347 sess_sz = rte_cryptodev_sym_get_private_session_size(dev_id);
348 sess_sz = RTE_MAX(sess_sz, sizeof(struct rte_security_session));
351 * Create mempools for sessions
353 if (info.sym.max_nb_sessions != 0 &&
354 info.sym.max_nb_sessions < MAX_NB_SESSIONS) {
355 RTE_LOG(ERR, USER1, "Device does not support "
356 "at least %u sessions\n",
361 ts_params->qp_conf.mp_session_private = rte_mempool_create(
365 0, 0, NULL, NULL, NULL,
369 TEST_ASSERT_NOT_NULL(ts_params->qp_conf.mp_session_private,
370 "private session mempool allocation failed");
372 ts_params->qp_conf.mp_session =
373 rte_cryptodev_sym_session_pool_create("test_sess_mp",
374 MAX_NB_SESSIONS, 0, 0, 0, SOCKET_ID_ANY);
376 TEST_ASSERT_NOT_NULL(ts_params->qp_conf.mp_session,
377 "session mempool allocation failed");
379 TEST_ASSERT_SUCCESS(rte_cryptodev_configure(dev_id,
381 "Failed to configure cryptodev %u with %u qps",
382 dev_id, ts_params->conf.nb_queue_pairs);
384 ts_params->qp_conf.nb_descriptors = DEFAULT_NUM_OPS_INFLIGHT;
386 TEST_ASSERT_SUCCESS(rte_cryptodev_queue_pair_setup(
387 dev_id, 0, &ts_params->qp_conf,
388 rte_cryptodev_socket_id(dev_id)),
389 "Failed to setup queue pair %u on cryptodev %u",
396 testsuite_teardown(void)
398 struct ipsec_testsuite_params *ts_params = &testsuite_params;
400 if (ts_params->mbuf_pool != NULL) {
401 RTE_LOG(DEBUG, USER1, "CRYPTO_MBUFPOOL count %u\n",
402 rte_mempool_avail_count(ts_params->mbuf_pool));
403 rte_mempool_free(ts_params->mbuf_pool);
404 ts_params->mbuf_pool = NULL;
407 if (ts_params->cop_mpool != NULL) {
408 RTE_LOG(DEBUG, USER1, "CRYPTO_OP_POOL count %u\n",
409 rte_mempool_avail_count(ts_params->cop_mpool));
410 rte_mempool_free(ts_params->cop_mpool);
411 ts_params->cop_mpool = NULL;
414 /* Free session mempools */
415 if (ts_params->qp_conf.mp_session != NULL) {
416 rte_mempool_free(ts_params->qp_conf.mp_session);
417 ts_params->qp_conf.mp_session = NULL;
420 if (ts_params->qp_conf.mp_session_private != NULL) {
421 rte_mempool_free(ts_params->qp_conf.mp_session_private);
422 ts_params->qp_conf.mp_session_private = NULL;
429 struct ipsec_testsuite_params *ts_params = &testsuite_params;
430 struct ipsec_unitest_params *ut_params = &unittest_params;
432 /* Clear unit test parameters before running test */
433 memset(ut_params, 0, sizeof(*ut_params));
435 /* Reconfigure device to default parameters */
436 ts_params->conf.socket_id = SOCKET_ID_ANY;
438 /* Start the device */
439 TEST_ASSERT_SUCCESS(rte_cryptodev_start(ts_params->valid_dev),
440 "Failed to start cryptodev %u",
441 ts_params->valid_dev);
449 struct ipsec_testsuite_params *ts_params = &testsuite_params;
450 struct ipsec_unitest_params *ut_params = &unittest_params;
453 for (i = 0; i < BURST_SIZE; i++) {
454 /* free crypto operation structure */
455 if (ut_params->cop[i]) {
456 rte_crypto_op_free(ut_params->cop[i]);
457 ut_params->cop[i] = NULL;
461 * free mbuf - both obuf and ibuf are usually the same,
462 * so check if they point at the same address is necessary,
463 * to avoid freeing the mbuf twice.
465 if (ut_params->obuf[i]) {
466 rte_pktmbuf_free(ut_params->obuf[i]);
467 if (ut_params->ibuf[i] == ut_params->obuf[i])
468 ut_params->ibuf[i] = NULL;
469 ut_params->obuf[i] = NULL;
471 if (ut_params->ibuf[i]) {
472 rte_pktmbuf_free(ut_params->ibuf[i]);
473 ut_params->ibuf[i] = NULL;
476 if (ut_params->testbuf[i]) {
477 rte_pktmbuf_free(ut_params->testbuf[i]);
478 ut_params->testbuf[i] = NULL;
482 if (ts_params->mbuf_pool != NULL)
483 RTE_LOG(DEBUG, USER1, "CRYPTO_MBUFPOOL count %u\n",
484 rte_mempool_avail_count(ts_params->mbuf_pool));
486 /* Stop the device */
487 rte_cryptodev_stop(ts_params->valid_dev);
490 #define IPSEC_MAX_PAD_SIZE UINT8_MAX
492 static const uint8_t esp_pad_bytes[IPSEC_MAX_PAD_SIZE] = {
493 1, 2, 3, 4, 5, 6, 7, 8,
494 9, 10, 11, 12, 13, 14, 15, 16,
495 17, 18, 19, 20, 21, 22, 23, 24,
496 25, 26, 27, 28, 29, 30, 31, 32,
497 33, 34, 35, 36, 37, 38, 39, 40,
498 41, 42, 43, 44, 45, 46, 47, 48,
499 49, 50, 51, 52, 53, 54, 55, 56,
500 57, 58, 59, 60, 61, 62, 63, 64,
501 65, 66, 67, 68, 69, 70, 71, 72,
502 73, 74, 75, 76, 77, 78, 79, 80,
503 81, 82, 83, 84, 85, 86, 87, 88,
504 89, 90, 91, 92, 93, 94, 95, 96,
505 97, 98, 99, 100, 101, 102, 103, 104,
506 105, 106, 107, 108, 109, 110, 111, 112,
507 113, 114, 115, 116, 117, 118, 119, 120,
508 121, 122, 123, 124, 125, 126, 127, 128,
509 129, 130, 131, 132, 133, 134, 135, 136,
510 137, 138, 139, 140, 141, 142, 143, 144,
511 145, 146, 147, 148, 149, 150, 151, 152,
512 153, 154, 155, 156, 157, 158, 159, 160,
513 161, 162, 163, 164, 165, 166, 167, 168,
514 169, 170, 171, 172, 173, 174, 175, 176,
515 177, 178, 179, 180, 181, 182, 183, 184,
516 185, 186, 187, 188, 189, 190, 191, 192,
517 193, 194, 195, 196, 197, 198, 199, 200,
518 201, 202, 203, 204, 205, 206, 207, 208,
519 209, 210, 211, 212, 213, 214, 215, 216,
520 217, 218, 219, 220, 221, 222, 223, 224,
521 225, 226, 227, 228, 229, 230, 231, 232,
522 233, 234, 235, 236, 237, 238, 239, 240,
523 241, 242, 243, 244, 245, 246, 247, 248,
524 249, 250, 251, 252, 253, 254, 255,
527 /* ***** data for tests ***** */
529 const char null_plain_data[] =
530 "Network Security People Have A Strange Sense Of Humor unlike Other "
531 "People who have a normal sense of humour";
533 const char null_encrypted_data[] =
534 "Network Security People Have A Strange Sense Of Humor unlike Other "
535 "People who have a normal sense of humour";
537 struct rte_ipv4_hdr ipv4_outer = {
538 .version_ihl = IPVERSION << 4 |
539 sizeof(ipv4_outer) / RTE_IPV4_IHL_MULTIPLIER,
540 .time_to_live = IPDEFTTL,
541 .next_proto_id = IPPROTO_ESP,
542 .src_addr = RTE_IPV4(192, 168, 1, 100),
543 .dst_addr = RTE_IPV4(192, 168, 2, 100),
546 static struct rte_mbuf *
547 setup_test_string(struct rte_mempool *mpool,
548 const char *string, size_t len, uint8_t blocksize)
550 struct rte_mbuf *m = rte_pktmbuf_alloc(mpool);
551 size_t t_len = len - (blocksize ? (len % blocksize) : 0);
554 memset(m->buf_addr, 0, m->buf_len);
555 char *dst = rte_pktmbuf_append(m, t_len);
562 rte_memcpy(dst, string, t_len);
564 memset(dst, 0, t_len);
570 static struct rte_mbuf *
571 setup_test_string_tunneled(struct rte_mempool *mpool, const char *string,
572 size_t len, uint32_t spi, uint32_t seq)
574 struct rte_mbuf *m = rte_pktmbuf_alloc(mpool);
575 uint32_t hdrlen = sizeof(struct rte_ipv4_hdr) +
576 sizeof(struct rte_esp_hdr);
577 uint32_t taillen = sizeof(struct rte_esp_tail);
578 uint32_t t_len = len + hdrlen + taillen;
581 struct rte_esp_hdr esph = {
582 .spi = rte_cpu_to_be_32(spi),
583 .seq = rte_cpu_to_be_32(seq)
586 padlen = RTE_ALIGN(t_len, 4) - t_len;
589 struct rte_esp_tail espt = {
591 .next_proto = IPPROTO_IPIP,
597 memset(m->buf_addr, 0, m->buf_len);
598 char *dst = rte_pktmbuf_append(m, t_len);
604 /* copy outer IP and ESP header */
605 ipv4_outer.total_length = rte_cpu_to_be_16(t_len);
606 ipv4_outer.packet_id = rte_cpu_to_be_16(seq);
607 rte_memcpy(dst, &ipv4_outer, sizeof(ipv4_outer));
608 dst += sizeof(ipv4_outer);
609 m->l3_len = sizeof(ipv4_outer);
610 rte_memcpy(dst, &esph, sizeof(esph));
613 if (string != NULL) {
615 rte_memcpy(dst, string, len);
618 rte_memcpy(dst, esp_pad_bytes, padlen);
620 /* copy ESP tail header */
621 rte_memcpy(dst, &espt, sizeof(espt));
623 memset(dst, 0, t_len);
629 create_dummy_sec_session(struct ipsec_unitest_params *ut,
630 struct rte_cryptodev_qp_conf *qp, uint32_t j)
632 static struct rte_security_session_conf conf;
634 ut->ss[j].security.ses = rte_security_session_create(&dummy_sec_ctx,
635 &conf, qp->mp_session,
636 qp->mp_session_private);
638 if (ut->ss[j].security.ses == NULL)
641 ut->ss[j].security.ctx = &dummy_sec_ctx;
642 ut->ss[j].security.ol_flags = 0;
647 create_crypto_session(struct ipsec_unitest_params *ut,
648 struct rte_cryptodev_qp_conf *qp, uint8_t dev_id, uint32_t j)
651 struct rte_cryptodev_sym_session *s;
653 s = rte_cryptodev_sym_session_create(qp->mp_session);
657 /* initiliaze SA crypto session for device */
658 rc = rte_cryptodev_sym_session_init(dev_id, s,
659 ut->crypto_xforms, qp->mp_session_private);
661 ut->ss[j].crypto.ses = s;
664 /* failure, do cleanup */
665 rte_cryptodev_sym_session_clear(dev_id, s);
666 rte_cryptodev_sym_session_free(s);
672 create_session(struct ipsec_unitest_params *ut,
673 struct rte_cryptodev_qp_conf *qp, uint8_t crypto_dev, uint32_t j)
675 if (ut->ss[j].type == RTE_SECURITY_ACTION_TYPE_NONE)
676 return create_crypto_session(ut, qp, crypto_dev, j);
678 return create_dummy_sec_session(ut, qp, j);
682 fill_ipsec_param(uint32_t replay_win_sz, uint64_t flags)
684 struct ipsec_unitest_params *ut_params = &unittest_params;
685 struct rte_ipsec_sa_prm *prm = &ut_params->sa_prm;
686 const struct supported_auth_algo *auth_algo;
687 const struct supported_cipher_algo *cipher_algo;
689 memset(prm, 0, sizeof(*prm));
694 /* setup ipsec xform */
695 prm->ipsec_xform = ut_params->ipsec_xform;
696 prm->ipsec_xform.salt = (uint32_t)rte_rand();
697 prm->ipsec_xform.replay_win_sz = replay_win_sz;
699 /* setup tunnel related fields */
700 prm->tun.hdr_len = sizeof(ipv4_outer);
701 prm->tun.next_proto = IPPROTO_IPIP;
702 prm->tun.hdr = &ipv4_outer;
704 /* setup crypto section */
705 if (uparams.aead != 0) {
706 /* TODO: will need to fill out with other test cases */
708 if (uparams.auth == 0 && uparams.cipher == 0)
711 auth_algo = find_match_auth_algo(uparams.auth_algo);
712 cipher_algo = find_match_cipher_algo(uparams.cipher_algo);
714 fill_crypto_xform(ut_params, auth_algo, cipher_algo);
717 prm->crypto_xform = ut_params->crypto_xforms;
722 create_sa(enum rte_security_session_action_type action_type,
723 uint32_t replay_win_sz, uint64_t flags, uint32_t j)
725 struct ipsec_testsuite_params *ts = &testsuite_params;
726 struct ipsec_unitest_params *ut = &unittest_params;
730 memset(&ut->ss[j], 0, sizeof(ut->ss[j]));
732 rc = fill_ipsec_param(replay_win_sz, flags);
736 /* create rte_ipsec_sa*/
737 sz = rte_ipsec_sa_size(&ut->sa_prm);
738 TEST_ASSERT(sz > 0, "rte_ipsec_sa_size() failed\n");
740 ut->ss[j].sa = rte_zmalloc(NULL, sz, RTE_CACHE_LINE_SIZE);
741 TEST_ASSERT_NOT_NULL(ut->ss[j].sa,
742 "failed to allocate memory for rte_ipsec_sa\n");
744 ut->ss[j].type = action_type;
745 rc = create_session(ut, &ts->qp_conf, ts->valid_dev, j);
749 rc = rte_ipsec_sa_init(ut->ss[j].sa, &ut->sa_prm, sz);
750 rc = (rc > 0 && (uint32_t)rc <= sz) ? 0 : -EINVAL;
752 rc = rte_ipsec_session_prepare(&ut->ss[j]);
758 crypto_dequeue_burst(uint16_t num_pkts)
760 struct ipsec_testsuite_params *ts_params = &testsuite_params;
761 struct ipsec_unitest_params *ut_params = &unittest_params;
765 for (i = 0, pkt_cnt = 0;
766 i < DEQUEUE_COUNT && pkt_cnt != num_pkts; i++) {
767 k = rte_cryptodev_dequeue_burst(ts_params->valid_dev, 0,
768 &ut_params->cop[pkt_cnt], num_pkts - pkt_cnt);
773 if (pkt_cnt != num_pkts) {
774 RTE_LOG(ERR, USER1, "rte_cryptodev_dequeue_burst fail\n");
781 crypto_ipsec(uint16_t num_pkts)
783 struct ipsec_testsuite_params *ts_params = &testsuite_params;
784 struct ipsec_unitest_params *ut_params = &unittest_params;
786 struct rte_ipsec_group grp[1];
788 /* call crypto prepare */
789 k = rte_ipsec_pkt_crypto_prepare(&ut_params->ss[0], ut_params->ibuf,
790 ut_params->cop, num_pkts);
792 RTE_LOG(ERR, USER1, "rte_ipsec_pkt_crypto_prepare fail\n");
796 k = rte_cryptodev_enqueue_burst(ts_params->valid_dev, 0,
797 ut_params->cop, num_pkts);
799 RTE_LOG(ERR, USER1, "rte_cryptodev_enqueue_burst fail\n");
803 if (crypto_dequeue_burst(num_pkts) == TEST_FAILED)
806 ng = rte_ipsec_pkt_crypto_group(
807 (const struct rte_crypto_op **)(uintptr_t)ut_params->cop,
808 ut_params->obuf, grp, num_pkts);
810 grp[0].m[0] != ut_params->obuf[0] ||
811 grp[0].cnt != num_pkts ||
812 grp[0].id.ptr != &ut_params->ss[0]) {
813 RTE_LOG(ERR, USER1, "rte_ipsec_pkt_crypto_group fail\n");
817 /* call crypto process */
818 k = rte_ipsec_pkt_process(grp[0].id.ptr, grp[0].m, grp[0].cnt);
820 RTE_LOG(ERR, USER1, "rte_ipsec_pkt_process fail\n");
828 lksd_proto_ipsec(uint16_t num_pkts)
830 struct ipsec_unitest_params *ut_params = &unittest_params;
832 struct rte_ipsec_group grp[1];
834 /* call crypto prepare */
835 k = rte_ipsec_pkt_crypto_prepare(&ut_params->ss[0], ut_params->ibuf,
836 ut_params->cop, num_pkts);
838 RTE_LOG(ERR, USER1, "rte_ipsec_pkt_crypto_prepare fail\n");
842 /* check crypto ops */
843 for (i = 0; i != num_pkts; i++) {
844 TEST_ASSERT_EQUAL(ut_params->cop[i]->type,
845 RTE_CRYPTO_OP_TYPE_SYMMETRIC,
846 "%s: invalid crypto op type for %u-th packet\n",
848 TEST_ASSERT_EQUAL(ut_params->cop[i]->status,
849 RTE_CRYPTO_OP_STATUS_NOT_PROCESSED,
850 "%s: invalid crypto op status for %u-th packet\n",
852 TEST_ASSERT_EQUAL(ut_params->cop[i]->sess_type,
853 RTE_CRYPTO_OP_SECURITY_SESSION,
854 "%s: invalid crypto op sess_type for %u-th packet\n",
856 TEST_ASSERT_EQUAL(ut_params->cop[i]->sym->m_src,
858 "%s: invalid crypto op m_src for %u-th packet\n",
862 /* update crypto ops, pretend all finished ok */
863 for (i = 0; i != num_pkts; i++)
864 ut_params->cop[i]->status = RTE_CRYPTO_OP_STATUS_SUCCESS;
866 ng = rte_ipsec_pkt_crypto_group(
867 (const struct rte_crypto_op **)(uintptr_t)ut_params->cop,
868 ut_params->obuf, grp, num_pkts);
870 grp[0].m[0] != ut_params->obuf[0] ||
871 grp[0].cnt != num_pkts ||
872 grp[0].id.ptr != &ut_params->ss[0]) {
873 RTE_LOG(ERR, USER1, "rte_ipsec_pkt_crypto_group fail\n");
877 /* call crypto process */
878 k = rte_ipsec_pkt_process(grp[0].id.ptr, grp[0].m, grp[0].cnt);
880 RTE_LOG(ERR, USER1, "rte_ipsec_pkt_process fail\n");
888 dump_grp_pkt(uint32_t i, struct rte_ipsec_group *grp, uint32_t k)
891 "After rte_ipsec_pkt_process grp[%d].cnt=%d k=%d fail\n",
894 "After rte_ipsec_pkt_process grp[%d].m=%p grp[%d].m[%d]=%p\n",
895 i, grp[i].m, i, k, grp[i].m[k]);
897 rte_pktmbuf_dump(stdout, grp[i].m[k], grp[i].m[k]->data_len);
901 crypto_ipsec_2sa(void)
903 struct ipsec_testsuite_params *ts_params = &testsuite_params;
904 struct ipsec_unitest_params *ut_params = &unittest_params;
905 struct rte_ipsec_group grp[BURST_SIZE];
906 uint32_t k, ng, i, r;
908 for (i = 0; i < BURST_SIZE; i++) {
910 /* call crypto prepare */
911 k = rte_ipsec_pkt_crypto_prepare(&ut_params->ss[r],
912 ut_params->ibuf + i, ut_params->cop + i, 1);
915 "rte_ipsec_pkt_crypto_prepare fail\n");
918 k = rte_cryptodev_enqueue_burst(ts_params->valid_dev, 0,
919 ut_params->cop + i, 1);
922 "rte_cryptodev_enqueue_burst fail\n");
927 if (crypto_dequeue_burst(BURST_SIZE) == TEST_FAILED)
930 ng = rte_ipsec_pkt_crypto_group(
931 (const struct rte_crypto_op **)(uintptr_t)ut_params->cop,
932 ut_params->obuf, grp, BURST_SIZE);
933 if (ng != BURST_SIZE) {
934 RTE_LOG(ERR, USER1, "rte_ipsec_pkt_crypto_group fail ng=%d\n",
939 /* call crypto process */
940 for (i = 0; i < ng; i++) {
941 k = rte_ipsec_pkt_process(grp[i].id.ptr, grp[i].m, grp[i].cnt);
942 if (k != grp[i].cnt) {
943 dump_grp_pkt(i, grp, k);
955 crypto_ipsec_4grp(uint32_t pkt_num)
959 /* group packets in 4 different size groups groups, 2 per SA */
962 else if (pkt_num < PKT_12)
964 else if (pkt_num < PKT_21)
973 crypto_ipsec_4grp_check_mbufs(uint32_t grp_ind, struct rte_ipsec_group *grp)
975 struct ipsec_unitest_params *ut_params = &unittest_params;
980 for (i = 0, j = 0; i < PKT_4; i++, j++)
981 if (grp[grp_ind].m[i] != ut_params->obuf[j]) {
985 } else if (grp_ind == 1) {
986 for (i = 0, j = PKT_4; i < (PKT_12 - PKT_4); i++, j++) {
987 if (grp[grp_ind].m[i] != ut_params->obuf[j]) {
992 } else if (grp_ind == 2) {
993 for (i = 0, j = PKT_12; i < (PKT_21 - PKT_12); i++, j++)
994 if (grp[grp_ind].m[i] != ut_params->obuf[j]) {
998 } else if (grp_ind == 3) {
999 for (i = 0, j = PKT_21; i < (BURST_SIZE - PKT_21); i++, j++)
1000 if (grp[grp_ind].m[i] != ut_params->obuf[j]) {
1011 crypto_ipsec_4grp_check_cnt(uint32_t grp_ind, struct rte_ipsec_group *grp)
1016 if (grp[grp_ind].cnt != PKT_4)
1018 } else if (grp_ind == 1) {
1019 if (grp[grp_ind].cnt != PKT_12 - PKT_4)
1021 } else if (grp_ind == 2) {
1022 if (grp[grp_ind].cnt != PKT_21 - PKT_12)
1024 } else if (grp_ind == 3) {
1025 if (grp[grp_ind].cnt != BURST_SIZE - PKT_21)
1034 crypto_ipsec_2sa_4grp(void)
1036 struct ipsec_testsuite_params *ts_params = &testsuite_params;
1037 struct ipsec_unitest_params *ut_params = &unittest_params;
1038 struct rte_ipsec_group grp[BURST_SIZE];
1039 uint32_t k, ng, i, j;
1042 for (i = 0; i < BURST_SIZE; i++) {
1043 j = crypto_ipsec_4grp(i);
1045 /* call crypto prepare */
1046 k = rte_ipsec_pkt_crypto_prepare(&ut_params->ss[j],
1047 ut_params->ibuf + i, ut_params->cop + i, 1);
1050 "rte_ipsec_pkt_crypto_prepare fail\n");
1053 k = rte_cryptodev_enqueue_burst(ts_params->valid_dev, 0,
1054 ut_params->cop + i, 1);
1057 "rte_cryptodev_enqueue_burst fail\n");
1062 if (crypto_dequeue_burst(BURST_SIZE) == TEST_FAILED)
1065 ng = rte_ipsec_pkt_crypto_group(
1066 (const struct rte_crypto_op **)(uintptr_t)ut_params->cop,
1067 ut_params->obuf, grp, BURST_SIZE);
1069 RTE_LOG(ERR, USER1, "rte_ipsec_pkt_crypto_group fail ng=%d\n",
1074 /* call crypto process */
1075 for (i = 0; i < ng; i++) {
1076 k = rte_ipsec_pkt_process(grp[i].id.ptr, grp[i].m, grp[i].cnt);
1077 if (k != grp[i].cnt) {
1078 dump_grp_pkt(i, grp, k);
1081 rc = crypto_ipsec_4grp_check_cnt(i, grp);
1084 "crypto_ipsec_4grp_check_cnt fail\n");
1087 rc = crypto_ipsec_4grp_check_mbufs(i, grp);
1090 "crypto_ipsec_4grp_check_mbufs fail\n");
1094 return TEST_SUCCESS;
1098 test_ipsec_reorder_inb_pkt_burst(uint16_t num_pkts)
1100 struct ipsec_unitest_params *ut_params = &unittest_params;
1101 struct rte_mbuf *ibuf_tmp[BURST_SIZE];
1104 /* reorder packets and create gaps in sequence numbers */
1105 static const uint32_t reorder[BURST_SIZE] = {
1106 24, 25, 26, 27, 28, 29, 30, 31,
1107 16, 17, 18, 19, 20, 21, 22, 23,
1108 8, 9, 10, 11, 12, 13, 14, 15,
1109 0, 1, 2, 3, 4, 5, 6, 7,
1112 if (num_pkts != BURST_SIZE)
1115 for (j = 0; j != BURST_SIZE; j++)
1116 ibuf_tmp[j] = ut_params->ibuf[reorder[j]];
1118 memcpy(ut_params->ibuf, ibuf_tmp, sizeof(ut_params->ibuf));
1122 test_ipsec_crypto_op_alloc(uint16_t num_pkts)
1124 struct ipsec_testsuite_params *ts_params = &testsuite_params;
1125 struct ipsec_unitest_params *ut_params = &unittest_params;
1129 for (j = 0; j < num_pkts && rc == 0; j++) {
1130 ut_params->cop[j] = rte_crypto_op_alloc(ts_params->cop_mpool,
1131 RTE_CRYPTO_OP_TYPE_SYMMETRIC);
1132 if (ut_params->cop[j] == NULL) {
1134 "Failed to allocate symmetric crypto op\n");
1143 test_ipsec_dump_buffers(struct ipsec_unitest_params *ut_params, int i)
1145 uint16_t j = ut_params->pkt_index;
1147 printf("\ntest config: num %d\n", i);
1148 printf(" replay_win_sz %u\n", test_cfg[i].replay_win_sz);
1149 printf(" esn %u\n", test_cfg[i].esn);
1150 printf(" flags 0x%" PRIx64 "\n", test_cfg[i].flags);
1151 printf(" pkt_sz %zu\n", test_cfg[i].pkt_sz);
1152 printf(" num_pkts %u\n\n", test_cfg[i].num_pkts);
1154 if (ut_params->ibuf[j]) {
1155 printf("ibuf[%u] data:\n", j);
1156 rte_pktmbuf_dump(stdout, ut_params->ibuf[j],
1157 ut_params->ibuf[j]->data_len);
1159 if (ut_params->obuf[j]) {
1160 printf("obuf[%u] data:\n", j);
1161 rte_pktmbuf_dump(stdout, ut_params->obuf[j],
1162 ut_params->obuf[j]->data_len);
1164 if (ut_params->testbuf[j]) {
1165 printf("testbuf[%u] data:\n", j);
1166 rte_pktmbuf_dump(stdout, ut_params->testbuf[j],
1167 ut_params->testbuf[j]->data_len);
1172 destroy_dummy_sec_session(struct ipsec_unitest_params *ut,
1175 rte_security_session_destroy(&dummy_sec_ctx,
1176 ut->ss[j].security.ses);
1177 ut->ss[j].security.ctx = NULL;
1181 destroy_crypto_session(struct ipsec_unitest_params *ut,
1182 uint8_t crypto_dev, uint32_t j)
1184 rte_cryptodev_sym_session_clear(crypto_dev, ut->ss[j].crypto.ses);
1185 rte_cryptodev_sym_session_free(ut->ss[j].crypto.ses);
1186 memset(&ut->ss[j], 0, sizeof(ut->ss[j]));
1190 destroy_session(struct ipsec_unitest_params *ut,
1191 uint8_t crypto_dev, uint32_t j)
1193 if (ut->ss[j].type == RTE_SECURITY_ACTION_TYPE_NONE)
1194 return destroy_crypto_session(ut, crypto_dev, j);
1196 return destroy_dummy_sec_session(ut, j);
1200 destroy_sa(uint32_t j)
1202 struct ipsec_unitest_params *ut = &unittest_params;
1203 struct ipsec_testsuite_params *ts = &testsuite_params;
1205 rte_ipsec_sa_fini(ut->ss[j].sa);
1206 rte_free(ut->ss[j].sa);
1208 destroy_session(ut, ts->valid_dev, j);
1212 crypto_inb_burst_null_null_check(struct ipsec_unitest_params *ut_params, int i,
1217 for (j = 0; j < num_pkts && num_pkts <= BURST_SIZE; j++) {
1218 ut_params->pkt_index = j;
1220 /* compare the data buffers */
1221 TEST_ASSERT_BUFFERS_ARE_EQUAL(null_plain_data,
1222 rte_pktmbuf_mtod(ut_params->obuf[j], void *),
1224 "input and output data does not match\n");
1225 TEST_ASSERT_EQUAL(ut_params->obuf[j]->data_len,
1226 ut_params->obuf[j]->pkt_len,
1227 "data_len is not equal to pkt_len");
1228 TEST_ASSERT_EQUAL(ut_params->obuf[j]->data_len,
1230 "data_len is not equal to input data");
1237 test_ipsec_crypto_inb_burst_null_null(int i)
1239 struct ipsec_testsuite_params *ts_params = &testsuite_params;
1240 struct ipsec_unitest_params *ut_params = &unittest_params;
1241 uint16_t num_pkts = test_cfg[i].num_pkts;
1245 /* create rte_ipsec_sa */
1246 rc = create_sa(RTE_SECURITY_ACTION_TYPE_NONE,
1247 test_cfg[i].replay_win_sz, test_cfg[i].flags, 0);
1249 RTE_LOG(ERR, USER1, "create_sa failed, cfg %d\n", i);
1253 /* Generate test mbuf data */
1254 for (j = 0; j < num_pkts && rc == 0; j++) {
1255 /* packet with sequence number 0 is invalid */
1256 ut_params->ibuf[j] = setup_test_string_tunneled(
1257 ts_params->mbuf_pool, null_encrypted_data,
1258 test_cfg[i].pkt_sz, INBOUND_SPI, j + 1);
1259 if (ut_params->ibuf[j] == NULL)
1264 if (test_cfg[i].reorder_pkts)
1265 test_ipsec_reorder_inb_pkt_burst(num_pkts);
1266 rc = test_ipsec_crypto_op_alloc(num_pkts);
1270 /* call ipsec library api */
1271 rc = crypto_ipsec(num_pkts);
1273 rc = crypto_inb_burst_null_null_check(
1274 ut_params, i, num_pkts);
1276 RTE_LOG(ERR, USER1, "crypto_ipsec failed, cfg %d\n",
1282 if (rc == TEST_FAILED)
1283 test_ipsec_dump_buffers(ut_params, i);
1290 test_ipsec_crypto_inb_burst_null_null_wrapper(void)
1294 struct ipsec_unitest_params *ut_params = &unittest_params;
1296 ut_params->ipsec_xform.spi = INBOUND_SPI;
1297 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_INGRESS;
1298 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
1299 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
1300 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
1302 for (i = 0; i < num_cfg && rc == 0; i++) {
1303 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
1304 rc = test_ipsec_crypto_inb_burst_null_null(i);
1311 crypto_outb_burst_null_null_check(struct ipsec_unitest_params *ut_params,
1318 for (j = 0; j < num_pkts && num_pkts <= BURST_SIZE; j++) {
1319 ut_params->pkt_index = j;
1321 testbuf_data = rte_pktmbuf_mtod(ut_params->testbuf[j], void *);
1322 obuf_data = rte_pktmbuf_mtod(ut_params->obuf[j], void *);
1323 /* compare the buffer data */
1324 TEST_ASSERT_BUFFERS_ARE_EQUAL(testbuf_data, obuf_data,
1325 ut_params->obuf[j]->pkt_len,
1326 "test and output data does not match\n");
1327 TEST_ASSERT_EQUAL(ut_params->obuf[j]->data_len,
1328 ut_params->testbuf[j]->data_len,
1329 "obuf data_len is not equal to testbuf data_len");
1330 TEST_ASSERT_EQUAL(ut_params->obuf[j]->pkt_len,
1331 ut_params->testbuf[j]->pkt_len,
1332 "obuf pkt_len is not equal to testbuf pkt_len");
1339 test_ipsec_crypto_outb_burst_null_null(int i)
1341 struct ipsec_testsuite_params *ts_params = &testsuite_params;
1342 struct ipsec_unitest_params *ut_params = &unittest_params;
1343 uint16_t num_pkts = test_cfg[i].num_pkts;
1347 /* create rte_ipsec_sa*/
1348 rc = create_sa(RTE_SECURITY_ACTION_TYPE_NONE,
1349 test_cfg[i].replay_win_sz, test_cfg[i].flags, 0);
1351 RTE_LOG(ERR, USER1, "create_sa failed, cfg %d\n", i);
1355 /* Generate input mbuf data */
1356 for (j = 0; j < num_pkts && rc == 0; j++) {
1357 ut_params->ibuf[j] = setup_test_string(ts_params->mbuf_pool,
1358 null_plain_data, test_cfg[i].pkt_sz, 0);
1359 if (ut_params->ibuf[j] == NULL)
1362 /* Generate test mbuf data */
1363 /* packet with sequence number 0 is invalid */
1364 ut_params->testbuf[j] = setup_test_string_tunneled(
1365 ts_params->mbuf_pool,
1366 null_plain_data, test_cfg[i].pkt_sz,
1367 OUTBOUND_SPI, j + 1);
1368 if (ut_params->testbuf[j] == NULL)
1374 rc = test_ipsec_crypto_op_alloc(num_pkts);
1377 /* call ipsec library api */
1378 rc = crypto_ipsec(num_pkts);
1380 rc = crypto_outb_burst_null_null_check(ut_params,
1383 RTE_LOG(ERR, USER1, "crypto_ipsec failed, cfg %d\n",
1387 if (rc == TEST_FAILED)
1388 test_ipsec_dump_buffers(ut_params, i);
1395 test_ipsec_crypto_outb_burst_null_null_wrapper(void)
1399 struct ipsec_unitest_params *ut_params = &unittest_params;
1401 ut_params->ipsec_xform.spi = OUTBOUND_SPI;
1402 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_EGRESS;
1403 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
1404 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
1405 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
1407 for (i = 0; i < num_cfg && rc == 0; i++) {
1408 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
1409 rc = test_ipsec_crypto_outb_burst_null_null(i);
1416 inline_inb_burst_null_null_check(struct ipsec_unitest_params *ut_params, int i,
1423 for (j = 0; j < num_pkts && num_pkts <= BURST_SIZE; j++) {
1424 ut_params->pkt_index = j;
1426 /* compare the buffer data */
1427 ibuf_data = rte_pktmbuf_mtod(ut_params->ibuf[j], void *);
1428 obuf_data = rte_pktmbuf_mtod(ut_params->obuf[j], void *);
1430 TEST_ASSERT_BUFFERS_ARE_EQUAL(ibuf_data, obuf_data,
1431 ut_params->ibuf[j]->data_len,
1432 "input and output data does not match\n");
1433 TEST_ASSERT_EQUAL(ut_params->ibuf[j]->data_len,
1434 ut_params->obuf[j]->data_len,
1435 "ibuf data_len is not equal to obuf data_len");
1436 TEST_ASSERT_EQUAL(ut_params->ibuf[j]->pkt_len,
1437 ut_params->obuf[j]->pkt_len,
1438 "ibuf pkt_len is not equal to obuf pkt_len");
1439 TEST_ASSERT_EQUAL(ut_params->ibuf[j]->data_len,
1441 "data_len is not equal input data");
1447 test_ipsec_inline_crypto_inb_burst_null_null(int i)
1449 struct ipsec_testsuite_params *ts_params = &testsuite_params;
1450 struct ipsec_unitest_params *ut_params = &unittest_params;
1451 uint16_t num_pkts = test_cfg[i].num_pkts;
1456 /* create rte_ipsec_sa*/
1457 rc = create_sa(RTE_SECURITY_ACTION_TYPE_INLINE_CRYPTO,
1458 test_cfg[i].replay_win_sz, test_cfg[i].flags, 0);
1460 RTE_LOG(ERR, USER1, "create_sa failed, cfg %d\n", i);
1464 /* Generate inbound mbuf data */
1465 for (j = 0; j < num_pkts && rc == 0; j++) {
1466 ut_params->ibuf[j] = setup_test_string_tunneled(
1467 ts_params->mbuf_pool,
1468 null_plain_data, test_cfg[i].pkt_sz,
1469 INBOUND_SPI, j + 1);
1470 if (ut_params->ibuf[j] == NULL)
1473 /* Generate test mbuf data */
1474 ut_params->obuf[j] = setup_test_string(
1475 ts_params->mbuf_pool,
1476 null_plain_data, test_cfg[i].pkt_sz, 0);
1477 if (ut_params->obuf[j] == NULL)
1483 n = rte_ipsec_pkt_process(&ut_params->ss[0], ut_params->ibuf,
1486 rc = inline_inb_burst_null_null_check(ut_params, i,
1490 "rte_ipsec_pkt_process failed, cfg %d\n",
1496 if (rc == TEST_FAILED)
1497 test_ipsec_dump_buffers(ut_params, i);
1504 test_ipsec_inline_crypto_inb_burst_null_null_wrapper(void)
1508 struct ipsec_unitest_params *ut_params = &unittest_params;
1510 ut_params->ipsec_xform.spi = INBOUND_SPI;
1511 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_INGRESS;
1512 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
1513 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
1514 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
1516 for (i = 0; i < num_cfg && rc == 0; i++) {
1517 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
1518 rc = test_ipsec_inline_crypto_inb_burst_null_null(i);
1525 test_ipsec_inline_proto_inb_burst_null_null(int i)
1527 struct ipsec_testsuite_params *ts_params = &testsuite_params;
1528 struct ipsec_unitest_params *ut_params = &unittest_params;
1529 uint16_t num_pkts = test_cfg[i].num_pkts;
1534 /* create rte_ipsec_sa*/
1535 rc = create_sa(RTE_SECURITY_ACTION_TYPE_INLINE_PROTOCOL,
1536 test_cfg[i].replay_win_sz, test_cfg[i].flags, 0);
1538 RTE_LOG(ERR, USER1, "create_sa failed, cfg %d\n", i);
1542 /* Generate inbound mbuf data */
1543 for (j = 0; j < num_pkts && rc == 0; j++) {
1544 ut_params->ibuf[j] = setup_test_string(
1545 ts_params->mbuf_pool,
1546 null_plain_data, test_cfg[i].pkt_sz, 0);
1547 if (ut_params->ibuf[j] == NULL)
1550 /* Generate test mbuf data */
1551 ut_params->obuf[j] = setup_test_string(
1552 ts_params->mbuf_pool,
1553 null_plain_data, test_cfg[i].pkt_sz, 0);
1554 if (ut_params->obuf[j] == NULL)
1560 n = rte_ipsec_pkt_process(&ut_params->ss[0], ut_params->ibuf,
1563 rc = inline_inb_burst_null_null_check(ut_params, i,
1567 "rte_ipsec_pkt_process failed, cfg %d\n",
1573 if (rc == TEST_FAILED)
1574 test_ipsec_dump_buffers(ut_params, i);
1581 test_ipsec_inline_proto_inb_burst_null_null_wrapper(void)
1585 struct ipsec_unitest_params *ut_params = &unittest_params;
1587 ut_params->ipsec_xform.spi = INBOUND_SPI;
1588 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_INGRESS;
1589 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
1590 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
1591 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
1593 for (i = 0; i < num_cfg && rc == 0; i++) {
1594 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
1595 rc = test_ipsec_inline_proto_inb_burst_null_null(i);
1602 inline_outb_burst_null_null_check(struct ipsec_unitest_params *ut_params,
1609 for (j = 0; j < num_pkts && num_pkts <= BURST_SIZE; j++) {
1610 ut_params->pkt_index = j;
1612 /* compare the buffer data */
1613 ibuf_data = rte_pktmbuf_mtod(ut_params->ibuf[j], void *);
1614 obuf_data = rte_pktmbuf_mtod(ut_params->obuf[j], void *);
1615 TEST_ASSERT_BUFFERS_ARE_EQUAL(ibuf_data, obuf_data,
1616 ut_params->ibuf[j]->data_len,
1617 "input and output data does not match\n");
1618 TEST_ASSERT_EQUAL(ut_params->ibuf[j]->data_len,
1619 ut_params->obuf[j]->data_len,
1620 "ibuf data_len is not equal to obuf data_len");
1621 TEST_ASSERT_EQUAL(ut_params->ibuf[j]->pkt_len,
1622 ut_params->obuf[j]->pkt_len,
1623 "ibuf pkt_len is not equal to obuf pkt_len");
1625 /* check mbuf ol_flags */
1626 TEST_ASSERT(ut_params->ibuf[j]->ol_flags & PKT_TX_SEC_OFFLOAD,
1627 "ibuf PKT_TX_SEC_OFFLOAD is not set");
1633 test_ipsec_inline_crypto_outb_burst_null_null(int i)
1635 struct ipsec_testsuite_params *ts_params = &testsuite_params;
1636 struct ipsec_unitest_params *ut_params = &unittest_params;
1637 uint16_t num_pkts = test_cfg[i].num_pkts;
1642 /* create rte_ipsec_sa */
1643 rc = create_sa(RTE_SECURITY_ACTION_TYPE_INLINE_CRYPTO,
1644 test_cfg[i].replay_win_sz, test_cfg[i].flags, 0);
1646 RTE_LOG(ERR, USER1, "create_sa failed, cfg %d\n", i);
1650 /* Generate test mbuf data */
1651 for (j = 0; j < num_pkts && rc == 0; j++) {
1652 ut_params->ibuf[j] = setup_test_string(ts_params->mbuf_pool,
1653 null_plain_data, test_cfg[i].pkt_sz, 0);
1654 if (ut_params->ibuf[0] == NULL)
1658 /* Generate test tunneled mbuf data for comparison */
1659 ut_params->obuf[j] = setup_test_string_tunneled(
1660 ts_params->mbuf_pool,
1661 null_plain_data, test_cfg[i].pkt_sz,
1662 OUTBOUND_SPI, j + 1);
1663 if (ut_params->obuf[j] == NULL)
1669 n = rte_ipsec_pkt_process(&ut_params->ss[0], ut_params->ibuf,
1672 rc = inline_outb_burst_null_null_check(ut_params,
1676 "rte_ipsec_pkt_process failed, cfg %d\n",
1682 if (rc == TEST_FAILED)
1683 test_ipsec_dump_buffers(ut_params, i);
1690 test_ipsec_inline_crypto_outb_burst_null_null_wrapper(void)
1694 struct ipsec_unitest_params *ut_params = &unittest_params;
1696 ut_params->ipsec_xform.spi = OUTBOUND_SPI;
1697 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_EGRESS;
1698 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
1699 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
1700 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
1702 for (i = 0; i < num_cfg && rc == 0; i++) {
1703 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
1704 rc = test_ipsec_inline_crypto_outb_burst_null_null(i);
1711 test_ipsec_inline_proto_outb_burst_null_null(int i)
1713 struct ipsec_testsuite_params *ts_params = &testsuite_params;
1714 struct ipsec_unitest_params *ut_params = &unittest_params;
1715 uint16_t num_pkts = test_cfg[i].num_pkts;
1720 /* create rte_ipsec_sa */
1721 rc = create_sa(RTE_SECURITY_ACTION_TYPE_INLINE_PROTOCOL,
1722 test_cfg[i].replay_win_sz, test_cfg[i].flags, 0);
1724 RTE_LOG(ERR, USER1, "create_sa failed, cfg %d\n", i);
1728 /* Generate test mbuf data */
1729 for (j = 0; j < num_pkts && rc == 0; j++) {
1730 ut_params->ibuf[j] = setup_test_string(ts_params->mbuf_pool,
1731 null_plain_data, test_cfg[i].pkt_sz, 0);
1732 if (ut_params->ibuf[0] == NULL)
1736 /* Generate test tunneled mbuf data for comparison */
1737 ut_params->obuf[j] = setup_test_string(
1738 ts_params->mbuf_pool,
1739 null_plain_data, test_cfg[i].pkt_sz, 0);
1740 if (ut_params->obuf[j] == NULL)
1746 n = rte_ipsec_pkt_process(&ut_params->ss[0], ut_params->ibuf,
1749 rc = inline_outb_burst_null_null_check(ut_params,
1753 "rte_ipsec_pkt_process failed, cfg %d\n",
1759 if (rc == TEST_FAILED)
1760 test_ipsec_dump_buffers(ut_params, i);
1767 test_ipsec_inline_proto_outb_burst_null_null_wrapper(void)
1771 struct ipsec_unitest_params *ut_params = &unittest_params;
1773 ut_params->ipsec_xform.spi = OUTBOUND_SPI;
1774 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_EGRESS;
1775 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
1776 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
1777 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
1779 for (i = 0; i < num_cfg && rc == 0; i++) {
1780 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
1781 rc = test_ipsec_inline_proto_outb_burst_null_null(i);
1788 test_ipsec_lksd_proto_inb_burst_null_null(int i)
1790 struct ipsec_testsuite_params *ts_params = &testsuite_params;
1791 struct ipsec_unitest_params *ut_params = &unittest_params;
1792 uint16_t num_pkts = test_cfg[i].num_pkts;
1796 /* create rte_ipsec_sa */
1797 rc = create_sa(RTE_SECURITY_ACTION_TYPE_LOOKASIDE_PROTOCOL,
1798 test_cfg[i].replay_win_sz, test_cfg[i].flags, 0);
1800 RTE_LOG(ERR, USER1, "create_sa failed, cfg %d\n", i);
1804 /* Generate test mbuf data */
1805 for (j = 0; j < num_pkts && rc == 0; j++) {
1806 /* packet with sequence number 0 is invalid */
1807 ut_params->ibuf[j] = setup_test_string(ts_params->mbuf_pool,
1808 null_encrypted_data, test_cfg[i].pkt_sz, 0);
1809 if (ut_params->ibuf[j] == NULL)
1814 if (test_cfg[i].reorder_pkts)
1815 test_ipsec_reorder_inb_pkt_burst(num_pkts);
1816 rc = test_ipsec_crypto_op_alloc(num_pkts);
1820 /* call ipsec library api */
1821 rc = lksd_proto_ipsec(num_pkts);
1823 rc = crypto_inb_burst_null_null_check(ut_params, i,
1826 RTE_LOG(ERR, USER1, "%s failed, cfg %d\n",
1832 if (rc == TEST_FAILED)
1833 test_ipsec_dump_buffers(ut_params, i);
1840 test_ipsec_lksd_proto_inb_burst_null_null_wrapper(void)
1844 struct ipsec_unitest_params *ut_params = &unittest_params;
1846 ut_params->ipsec_xform.spi = INBOUND_SPI;
1847 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_INGRESS;
1848 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
1849 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
1850 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
1852 for (i = 0; i < num_cfg && rc == 0; i++) {
1853 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
1854 rc = test_ipsec_lksd_proto_inb_burst_null_null(i);
1861 test_ipsec_lksd_proto_outb_burst_null_null_wrapper(void)
1865 struct ipsec_unitest_params *ut_params = &unittest_params;
1867 ut_params->ipsec_xform.spi = INBOUND_SPI;
1868 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_EGRESS;
1869 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
1870 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
1871 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
1873 for (i = 0; i < num_cfg && rc == 0; i++) {
1874 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
1875 rc = test_ipsec_lksd_proto_inb_burst_null_null(i);
1882 replay_inb_null_null_check(struct ipsec_unitest_params *ut_params, int i,
1887 for (j = 0; j < num_pkts; j++) {
1888 /* compare the buffer data */
1889 TEST_ASSERT_BUFFERS_ARE_EQUAL(null_plain_data,
1890 rte_pktmbuf_mtod(ut_params->obuf[j], void *),
1892 "input and output data does not match\n");
1894 TEST_ASSERT_EQUAL(ut_params->obuf[j]->data_len,
1895 ut_params->obuf[j]->pkt_len,
1896 "data_len is not equal to pkt_len");
1903 test_ipsec_replay_inb_inside_null_null(int i)
1905 struct ipsec_testsuite_params *ts_params = &testsuite_params;
1906 struct ipsec_unitest_params *ut_params = &unittest_params;
1909 /* create rte_ipsec_sa*/
1910 rc = create_sa(RTE_SECURITY_ACTION_TYPE_NONE,
1911 test_cfg[i].replay_win_sz, test_cfg[i].flags, 0);
1913 RTE_LOG(ERR, USER1, "create_sa failed, cfg %d\n", i);
1917 /* Generate inbound mbuf data */
1918 ut_params->ibuf[0] = setup_test_string_tunneled(ts_params->mbuf_pool,
1919 null_encrypted_data, test_cfg[i].pkt_sz, INBOUND_SPI, 1);
1920 if (ut_params->ibuf[0] == NULL)
1923 rc = test_ipsec_crypto_op_alloc(1);
1926 /* call ipsec library api */
1927 rc = crypto_ipsec(1);
1929 rc = replay_inb_null_null_check(ut_params, i, 1);
1931 RTE_LOG(ERR, USER1, "crypto_ipsec failed, cfg %d\n",
1937 if ((rc == 0) && (test_cfg[i].replay_win_sz != 0)) {
1938 /* generate packet with seq number inside the replay window */
1939 if (ut_params->ibuf[0]) {
1940 rte_pktmbuf_free(ut_params->ibuf[0]);
1941 ut_params->ibuf[0] = 0;
1944 ut_params->ibuf[0] = setup_test_string_tunneled(
1945 ts_params->mbuf_pool, null_encrypted_data,
1946 test_cfg[i].pkt_sz, INBOUND_SPI,
1947 test_cfg[i].replay_win_sz);
1948 if (ut_params->ibuf[0] == NULL)
1951 rc = test_ipsec_crypto_op_alloc(1);
1954 /* call ipsec library api */
1955 rc = crypto_ipsec(1);
1957 rc = replay_inb_null_null_check(
1960 RTE_LOG(ERR, USER1, "crypto_ipsec failed\n");
1966 if (rc == TEST_FAILED)
1967 test_ipsec_dump_buffers(ut_params, i);
1975 test_ipsec_replay_inb_inside_null_null_wrapper(void)
1979 struct ipsec_unitest_params *ut_params = &unittest_params;
1981 ut_params->ipsec_xform.spi = INBOUND_SPI;
1982 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_INGRESS;
1983 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
1984 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
1985 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
1987 for (i = 0; i < num_cfg && rc == 0; i++) {
1988 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
1989 rc = test_ipsec_replay_inb_inside_null_null(i);
1996 test_ipsec_replay_inb_outside_null_null(int i)
1998 struct ipsec_testsuite_params *ts_params = &testsuite_params;
1999 struct ipsec_unitest_params *ut_params = &unittest_params;
2002 /* create rte_ipsec_sa */
2003 rc = create_sa(RTE_SECURITY_ACTION_TYPE_NONE,
2004 test_cfg[i].replay_win_sz, test_cfg[i].flags, 0);
2006 RTE_LOG(ERR, USER1, "create_sa failed, cfg %d\n", i);
2010 /* Generate test mbuf data */
2011 ut_params->ibuf[0] = setup_test_string_tunneled(ts_params->mbuf_pool,
2012 null_encrypted_data, test_cfg[i].pkt_sz, INBOUND_SPI,
2013 test_cfg[i].replay_win_sz + 2);
2014 if (ut_params->ibuf[0] == NULL)
2017 rc = test_ipsec_crypto_op_alloc(1);
2020 /* call ipsec library api */
2021 rc = crypto_ipsec(1);
2023 rc = replay_inb_null_null_check(ut_params, i, 1);
2025 RTE_LOG(ERR, USER1, "crypto_ipsec failed, cfg %d\n",
2031 if ((rc == 0) && (test_cfg[i].replay_win_sz != 0)) {
2032 /* generate packet with seq number outside the replay window */
2033 if (ut_params->ibuf[0]) {
2034 rte_pktmbuf_free(ut_params->ibuf[0]);
2035 ut_params->ibuf[0] = 0;
2037 ut_params->ibuf[0] = setup_test_string_tunneled(
2038 ts_params->mbuf_pool, null_encrypted_data,
2039 test_cfg[i].pkt_sz, INBOUND_SPI, 1);
2040 if (ut_params->ibuf[0] == NULL)
2043 rc = test_ipsec_crypto_op_alloc(1);
2046 /* call ipsec library api */
2047 rc = crypto_ipsec(1);
2049 if (test_cfg[i].esn == 0) {
2051 "packet is not outside the replay window, cfg %d pkt0_seq %u pkt1_seq %u\n",
2053 test_cfg[i].replay_win_sz + 2,
2059 "packet is outside the replay window, cfg %d pkt0_seq %u pkt1_seq %u\n",
2060 i, test_cfg[i].replay_win_sz + 2, 1);
2066 if (rc == TEST_FAILED)
2067 test_ipsec_dump_buffers(ut_params, i);
2075 test_ipsec_replay_inb_outside_null_null_wrapper(void)
2079 struct ipsec_unitest_params *ut_params = &unittest_params;
2081 ut_params->ipsec_xform.spi = INBOUND_SPI;
2082 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_INGRESS;
2083 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
2084 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
2085 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
2087 for (i = 0; i < num_cfg && rc == 0; i++) {
2088 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
2089 rc = test_ipsec_replay_inb_outside_null_null(i);
2096 test_ipsec_replay_inb_repeat_null_null(int i)
2098 struct ipsec_testsuite_params *ts_params = &testsuite_params;
2099 struct ipsec_unitest_params *ut_params = &unittest_params;
2102 /* create rte_ipsec_sa */
2103 rc = create_sa(RTE_SECURITY_ACTION_TYPE_NONE,
2104 test_cfg[i].replay_win_sz, test_cfg[i].flags, 0);
2106 RTE_LOG(ERR, USER1, "create_sa failed, cfg %d\n", i);
2110 /* Generate test mbuf data */
2111 ut_params->ibuf[0] = setup_test_string_tunneled(ts_params->mbuf_pool,
2112 null_encrypted_data, test_cfg[i].pkt_sz, INBOUND_SPI, 1);
2113 if (ut_params->ibuf[0] == NULL)
2116 rc = test_ipsec_crypto_op_alloc(1);
2119 /* call ipsec library api */
2120 rc = crypto_ipsec(1);
2122 rc = replay_inb_null_null_check(ut_params, i, 1);
2124 RTE_LOG(ERR, USER1, "crypto_ipsec failed, cfg %d\n",
2130 if ((rc == 0) && (test_cfg[i].replay_win_sz != 0)) {
2132 * generate packet with repeat seq number in the replay
2135 if (ut_params->ibuf[0]) {
2136 rte_pktmbuf_free(ut_params->ibuf[0]);
2137 ut_params->ibuf[0] = 0;
2140 ut_params->ibuf[0] = setup_test_string_tunneled(
2141 ts_params->mbuf_pool, null_encrypted_data,
2142 test_cfg[i].pkt_sz, INBOUND_SPI, 1);
2143 if (ut_params->ibuf[0] == NULL)
2146 rc = test_ipsec_crypto_op_alloc(1);
2149 /* call ipsec library api */
2150 rc = crypto_ipsec(1);
2153 "packet is not repeated in the replay window, cfg %d seq %u\n",
2158 "packet is repeated in the replay window, cfg %d seq %u\n",
2165 if (rc == TEST_FAILED)
2166 test_ipsec_dump_buffers(ut_params, i);
2174 test_ipsec_replay_inb_repeat_null_null_wrapper(void)
2178 struct ipsec_unitest_params *ut_params = &unittest_params;
2180 ut_params->ipsec_xform.spi = INBOUND_SPI;
2181 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_INGRESS;
2182 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
2183 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
2184 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
2186 for (i = 0; i < num_cfg && rc == 0; i++) {
2187 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
2188 rc = test_ipsec_replay_inb_repeat_null_null(i);
2195 test_ipsec_replay_inb_inside_burst_null_null(int i)
2197 struct ipsec_testsuite_params *ts_params = &testsuite_params;
2198 struct ipsec_unitest_params *ut_params = &unittest_params;
2199 uint16_t num_pkts = test_cfg[i].num_pkts;
2203 /* create rte_ipsec_sa*/
2204 rc = create_sa(RTE_SECURITY_ACTION_TYPE_NONE,
2205 test_cfg[i].replay_win_sz, test_cfg[i].flags, 0);
2207 RTE_LOG(ERR, USER1, "create_sa failed, cfg %d\n", i);
2211 /* Generate inbound mbuf data */
2212 ut_params->ibuf[0] = setup_test_string_tunneled(ts_params->mbuf_pool,
2213 null_encrypted_data, test_cfg[i].pkt_sz, INBOUND_SPI, 1);
2214 if (ut_params->ibuf[0] == NULL)
2217 rc = test_ipsec_crypto_op_alloc(1);
2220 /* call ipsec library api */
2221 rc = crypto_ipsec(1);
2223 rc = replay_inb_null_null_check(ut_params, i, 1);
2225 RTE_LOG(ERR, USER1, "crypto_ipsec failed, cfg %d\n",
2231 if ((rc == 0) && (test_cfg[i].replay_win_sz != 0)) {
2233 * generate packet(s) with seq number(s) inside the
2236 if (ut_params->ibuf[0]) {
2237 rte_pktmbuf_free(ut_params->ibuf[0]);
2238 ut_params->ibuf[0] = 0;
2241 for (j = 0; j < num_pkts && rc == 0; j++) {
2242 /* packet with sequence number 1 already processed */
2243 ut_params->ibuf[j] = setup_test_string_tunneled(
2244 ts_params->mbuf_pool, null_encrypted_data,
2245 test_cfg[i].pkt_sz, INBOUND_SPI, j + 2);
2246 if (ut_params->ibuf[j] == NULL)
2251 if (test_cfg[i].reorder_pkts)
2252 test_ipsec_reorder_inb_pkt_burst(num_pkts);
2253 rc = test_ipsec_crypto_op_alloc(num_pkts);
2257 /* call ipsec library api */
2258 rc = crypto_ipsec(num_pkts);
2260 rc = replay_inb_null_null_check(
2261 ut_params, i, num_pkts);
2263 RTE_LOG(ERR, USER1, "crypto_ipsec failed\n");
2269 if (rc == TEST_FAILED)
2270 test_ipsec_dump_buffers(ut_params, i);
2278 test_ipsec_replay_inb_inside_burst_null_null_wrapper(void)
2282 struct ipsec_unitest_params *ut_params = &unittest_params;
2284 ut_params->ipsec_xform.spi = INBOUND_SPI;
2285 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_INGRESS;
2286 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
2287 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
2288 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
2290 for (i = 0; i < num_cfg && rc == 0; i++) {
2291 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
2292 rc = test_ipsec_replay_inb_inside_burst_null_null(i);
2300 crypto_inb_burst_2sa_null_null_check(struct ipsec_unitest_params *ut_params,
2305 for (j = 0; j < BURST_SIZE; j++) {
2306 ut_params->pkt_index = j;
2308 /* compare the data buffers */
2309 TEST_ASSERT_BUFFERS_ARE_EQUAL(null_plain_data,
2310 rte_pktmbuf_mtod(ut_params->obuf[j], void *),
2312 "input and output data does not match\n");
2313 TEST_ASSERT_EQUAL(ut_params->obuf[j]->data_len,
2314 ut_params->obuf[j]->pkt_len,
2315 "data_len is not equal to pkt_len");
2316 TEST_ASSERT_EQUAL(ut_params->obuf[j]->data_len,
2318 "data_len is not equal to input data");
2325 test_ipsec_crypto_inb_burst_2sa_null_null(int i)
2327 struct ipsec_testsuite_params *ts_params = &testsuite_params;
2328 struct ipsec_unitest_params *ut_params = &unittest_params;
2329 uint16_t num_pkts = test_cfg[i].num_pkts;
2333 if (num_pkts != BURST_SIZE)
2336 /* create rte_ipsec_sa */
2337 rc = create_sa(RTE_SECURITY_ACTION_TYPE_NONE,
2338 test_cfg[i].replay_win_sz, test_cfg[i].flags, 0);
2340 RTE_LOG(ERR, USER1, "create_sa 0 failed, cfg %d\n", i);
2344 /* create second rte_ipsec_sa */
2345 ut_params->ipsec_xform.spi = INBOUND_SPI + 1;
2346 rc = create_sa(RTE_SECURITY_ACTION_TYPE_NONE,
2347 test_cfg[i].replay_win_sz, test_cfg[i].flags, 1);
2349 RTE_LOG(ERR, USER1, "create_sa 1 failed, cfg %d\n", i);
2354 /* Generate test mbuf data */
2355 for (j = 0; j < num_pkts && rc == 0; j++) {
2357 /* packet with sequence number 0 is invalid */
2358 ut_params->ibuf[j] = setup_test_string_tunneled(
2359 ts_params->mbuf_pool, null_encrypted_data,
2360 test_cfg[i].pkt_sz, INBOUND_SPI + r, j + 1);
2361 if (ut_params->ibuf[j] == NULL)
2366 rc = test_ipsec_crypto_op_alloc(num_pkts);
2369 /* call ipsec library api */
2370 rc = crypto_ipsec_2sa();
2372 rc = crypto_inb_burst_2sa_null_null_check(
2375 RTE_LOG(ERR, USER1, "crypto_ipsec failed, cfg %d\n",
2381 if (rc == TEST_FAILED)
2382 test_ipsec_dump_buffers(ut_params, i);
2390 test_ipsec_crypto_inb_burst_2sa_null_null_wrapper(void)
2394 struct ipsec_unitest_params *ut_params = &unittest_params;
2396 ut_params->ipsec_xform.spi = INBOUND_SPI;
2397 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_INGRESS;
2398 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
2399 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
2400 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
2402 for (i = 0; i < num_cfg && rc == 0; i++) {
2403 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
2404 rc = test_ipsec_crypto_inb_burst_2sa_null_null(i);
2411 test_ipsec_crypto_inb_burst_2sa_4grp_null_null(int i)
2413 struct ipsec_testsuite_params *ts_params = &testsuite_params;
2414 struct ipsec_unitest_params *ut_params = &unittest_params;
2415 uint16_t num_pkts = test_cfg[i].num_pkts;
2419 if (num_pkts != BURST_SIZE)
2422 /* create rte_ipsec_sa */
2423 rc = create_sa(RTE_SECURITY_ACTION_TYPE_NONE,
2424 test_cfg[i].replay_win_sz, test_cfg[i].flags, 0);
2426 RTE_LOG(ERR, USER1, "create_sa 0 failed, cfg %d\n", i);
2430 /* create second rte_ipsec_sa */
2431 ut_params->ipsec_xform.spi = INBOUND_SPI + 1;
2432 rc = create_sa(RTE_SECURITY_ACTION_TYPE_NONE,
2433 test_cfg[i].replay_win_sz, test_cfg[i].flags, 1);
2435 RTE_LOG(ERR, USER1, "create_sa 1 failed, cfg %d\n", i);
2440 /* Generate test mbuf data */
2441 for (j = 0; j < num_pkts && rc == 0; j++) {
2442 k = crypto_ipsec_4grp(j);
2444 /* packet with sequence number 0 is invalid */
2445 ut_params->ibuf[j] = setup_test_string_tunneled(
2446 ts_params->mbuf_pool, null_encrypted_data,
2447 test_cfg[i].pkt_sz, INBOUND_SPI + k, j + 1);
2448 if (ut_params->ibuf[j] == NULL)
2453 rc = test_ipsec_crypto_op_alloc(num_pkts);
2456 /* call ipsec library api */
2457 rc = crypto_ipsec_2sa_4grp();
2459 rc = crypto_inb_burst_2sa_null_null_check(
2462 RTE_LOG(ERR, USER1, "crypto_ipsec failed, cfg %d\n",
2468 if (rc == TEST_FAILED)
2469 test_ipsec_dump_buffers(ut_params, i);
2477 test_ipsec_crypto_inb_burst_2sa_4grp_null_null_wrapper(void)
2481 struct ipsec_unitest_params *ut_params = &unittest_params;
2483 ut_params->ipsec_xform.spi = INBOUND_SPI;
2484 ut_params->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_INGRESS;
2485 ut_params->ipsec_xform.proto = RTE_SECURITY_IPSEC_SA_PROTO_ESP;
2486 ut_params->ipsec_xform.mode = RTE_SECURITY_IPSEC_SA_MODE_TUNNEL;
2487 ut_params->ipsec_xform.tunnel.type = RTE_SECURITY_IPSEC_TUNNEL_IPV4;
2489 for (i = 0; i < num_cfg && rc == 0; i++) {
2490 ut_params->ipsec_xform.options.esn = test_cfg[i].esn;
2491 rc = test_ipsec_crypto_inb_burst_2sa_4grp_null_null(i);
2497 static struct unit_test_suite ipsec_testsuite = {
2498 .suite_name = "IPsec NULL Unit Test Suite",
2499 .setup = testsuite_setup,
2500 .teardown = testsuite_teardown,
2501 .unit_test_cases = {
2502 TEST_CASE_ST(ut_setup, ut_teardown,
2503 test_ipsec_crypto_inb_burst_null_null_wrapper),
2504 TEST_CASE_ST(ut_setup, ut_teardown,
2505 test_ipsec_crypto_outb_burst_null_null_wrapper),
2506 TEST_CASE_ST(ut_setup, ut_teardown,
2507 test_ipsec_inline_crypto_inb_burst_null_null_wrapper),
2508 TEST_CASE_ST(ut_setup, ut_teardown,
2509 test_ipsec_inline_crypto_outb_burst_null_null_wrapper),
2510 TEST_CASE_ST(ut_setup, ut_teardown,
2511 test_ipsec_inline_proto_inb_burst_null_null_wrapper),
2512 TEST_CASE_ST(ut_setup, ut_teardown,
2513 test_ipsec_inline_proto_outb_burst_null_null_wrapper),
2514 TEST_CASE_ST(ut_setup, ut_teardown,
2515 test_ipsec_lksd_proto_inb_burst_null_null_wrapper),
2516 TEST_CASE_ST(ut_setup, ut_teardown,
2517 test_ipsec_lksd_proto_outb_burst_null_null_wrapper),
2518 TEST_CASE_ST(ut_setup, ut_teardown,
2519 test_ipsec_replay_inb_inside_null_null_wrapper),
2520 TEST_CASE_ST(ut_setup, ut_teardown,
2521 test_ipsec_replay_inb_outside_null_null_wrapper),
2522 TEST_CASE_ST(ut_setup, ut_teardown,
2523 test_ipsec_replay_inb_repeat_null_null_wrapper),
2524 TEST_CASE_ST(ut_setup, ut_teardown,
2525 test_ipsec_replay_inb_inside_burst_null_null_wrapper),
2526 TEST_CASE_ST(ut_setup, ut_teardown,
2527 test_ipsec_crypto_inb_burst_2sa_null_null_wrapper),
2528 TEST_CASE_ST(ut_setup, ut_teardown,
2529 test_ipsec_crypto_inb_burst_2sa_4grp_null_null_wrapper),
2530 TEST_CASES_END() /**< NULL terminate unit test array */
2537 return unit_test_suite_runner(&ipsec_testsuite);
2540 REGISTER_TEST_COMMAND(ipsec_autotest, test_ipsec);