From: Suanming Mou <suanmingm@nvidia.com>
To: <anoobj@marvell.com>, <ciara.power@intel.com>
Cc: <dev@dpdk.org>
Subject: [PATCH v2 2/2] app/test-crypto-perf: fix encrypt operation verify
Date: Fri, 5 Jan 2024 08:03:23 +0800 [thread overview]
Message-ID: <20240105000323.903764-2-suanmingm@nvidia.com> (raw)
In-Reply-To: <20240105000323.903764-1-suanmingm@nvidia.com>
AEAD uses RTE_CRYPTO_AEAD_OP_* with aead_op and CIPHER uses
RTE_CRYPTO_CIPHER_OP_* with cipher_op in current code.
This commit aligns aead_op and cipher_op operation to fix
incorrect AEAD verification.
Fixes: df52cb3b6e13 ("app/crypto-perf: move verify as single test type")
Signed-off-by: Suanming Mou <suanmingm@nvidia.com>
---
v2: align auth/cipher to bool.
---
app/test-crypto-perf/cperf_test_verify.c | 55 ++++++++++++------------
1 file changed, 27 insertions(+), 28 deletions(-)
diff --git a/app/test-crypto-perf/cperf_test_verify.c b/app/test-crypto-perf/cperf_test_verify.c
index 8aa714b969..2b0d3f142b 100644
--- a/app/test-crypto-perf/cperf_test_verify.c
+++ b/app/test-crypto-perf/cperf_test_verify.c
@@ -111,8 +111,10 @@ cperf_verify_op(struct rte_crypto_op *op,
uint32_t len;
uint16_t nb_segs;
uint8_t *data;
- uint32_t cipher_offset, auth_offset;
- uint8_t cipher, auth;
+ uint32_t cipher_offset, auth_offset = 0;
+ bool cipher = false;
+ bool digest_verify = false;
+ bool is_encrypt = false;
int res = 0;
if (op->status != RTE_CRYPTO_OP_STATUS_SUCCESS)
@@ -150,42 +152,43 @@ cperf_verify_op(struct rte_crypto_op *op,
switch (options->op_type) {
case CPERF_CIPHER_ONLY:
- cipher = 1;
+ cipher = true;
cipher_offset = 0;
- auth = 0;
- auth_offset = 0;
- break;
- case CPERF_CIPHER_THEN_AUTH:
- cipher = 1;
- cipher_offset = 0;
- auth = 1;
- auth_offset = options->test_buffer_size;
+ is_encrypt = options->cipher_op == RTE_CRYPTO_CIPHER_OP_ENCRYPT;
break;
case CPERF_AUTH_ONLY:
- cipher = 0;
cipher_offset = 0;
- auth = 1;
- auth_offset = options->test_buffer_size;
+ if (options->auth_op == RTE_CRYPTO_AUTH_OP_GENERATE) {
+ auth_offset = options->test_buffer_size;
+ digest_verify = true;
+ }
break;
+ case CPERF_CIPHER_THEN_AUTH:
case CPERF_AUTH_THEN_CIPHER:
- cipher = 1;
+ cipher = true;
cipher_offset = 0;
- auth = 1;
- auth_offset = options->test_buffer_size;
+ if (options->cipher_op == RTE_CRYPTO_CIPHER_OP_ENCRYPT) {
+ auth_offset = options->test_buffer_size;
+ digest_verify = true;
+ is_encrypt = true;
+ }
break;
case CPERF_AEAD:
- cipher = 1;
+ cipher = true;
cipher_offset = 0;
- auth = 1;
- auth_offset = options->test_buffer_size;
+ if (options->aead_op == RTE_CRYPTO_AEAD_OP_ENCRYPT) {
+ auth_offset = options->test_buffer_size;
+ digest_verify = true;
+ is_encrypt = true;
+ }
break;
default:
res = 1;
goto out;
}
- if (cipher == 1) {
- if (options->cipher_op == RTE_CRYPTO_CIPHER_OP_ENCRYPT)
+ if (cipher) {
+ if (is_encrypt)
res += !!memcmp(data + cipher_offset,
vector->ciphertext.data,
options->test_buffer_size);
@@ -195,12 +198,8 @@ cperf_verify_op(struct rte_crypto_op *op,
options->test_buffer_size);
}
- if (auth == 1) {
- if (options->auth_op == RTE_CRYPTO_AUTH_OP_GENERATE)
- res += !!memcmp(data + auth_offset,
- vector->digest.data,
- options->digest_sz);
- }
+ if (digest_verify)
+ res += !!memcmp(data + auth_offset, vector->digest.data, options->digest_sz);
out:
rte_free(data);
--
2.34.1
next prev parent reply other threads:[~2024-01-05 0:04 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-03 3:56 [PATCH 1/2] app/test-crypto-perf: fix invalid memcmp results Suanming Mou
2024-01-03 3:56 ` [PATCH 2/2] app/test-crypto-perf: fix encrypt operation verify Suanming Mou
2024-01-04 5:13 ` [EXT] " Anoob Joseph
2024-01-04 8:56 ` Suanming Mou
2024-01-03 11:33 ` [EXT] [PATCH 1/2] app/test-crypto-perf: fix invalid memcmp results Anoob Joseph
2024-01-05 0:03 ` [PATCH v2 " Suanming Mou
2024-01-05 0:03 ` Suanming Mou [this message]
2024-01-05 4:44 ` [EXT] [PATCH v2 2/2] app/test-crypto-perf: fix encrypt operation verify Anoob Joseph
2024-01-12 16:21 ` [PATCH v2 1/2] app/test-crypto-perf: fix invalid memcmp results Power, Ciara
2024-02-01 8:47 ` [EXT] " Akhil Goyal
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240105000323.903764-2-suanmingm@nvidia.com \
--to=suanmingm@nvidia.com \
--cc=anoobj@marvell.com \
--cc=ciara.power@intel.com \
--cc=dev@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).