* [dpdk-dev] [PATCH] crypto/qat: fix uncleared cookies after operation
@ 2021-10-21 10:06 Arek Kusztal
2021-10-21 13:14 ` Zhang, Roy Fan
0 siblings, 1 reply; 3+ messages in thread
From: Arek Kusztal @ 2021-10-21 10:06 UTC (permalink / raw)
To: dev; +Cc: gakhil, roy.fan.zhang, Arek Kusztal, stable
This commit fixes uncleared cookies issue when using
RSA algorithm.
Fixes: e2c5f4ea994c ("crypto/qat: support RSA in asym")
Cc: stable@dpdk.org
Signed-off-by: Arek Kusztal <arkadiuszx.kusztal@intel.com>
---
drivers/crypto/qat/qat_asym.c | 41 +++++++++++++++++++++++++----------
1 file changed, 29 insertions(+), 12 deletions(-)
diff --git a/drivers/crypto/qat/qat_asym.c b/drivers/crypto/qat/qat_asym.c
index 983c639d68..f893508030 100644
--- a/drivers/crypto/qat/qat_asym.c
+++ b/drivers/crypto/qat/qat_asym.c
@@ -65,27 +65,45 @@ static size_t max_of(int n, ...)
}
static void qat_clear_arrays(struct qat_asym_op_cookie *cookie,
- int in_count, int out_count, int in_size, int out_size)
+ int in_count, int out_count, int alg_size)
{
int i;
for (i = 0; i < in_count; i++)
- memset(cookie->input_array[i], 0x0, in_size);
+ memset(cookie->input_array[i], 0x0, alg_size);
for (i = 0; i < out_count; i++)
- memset(cookie->output_array[i], 0x0, out_size);
+ memset(cookie->output_array[i], 0x0, alg_size);
+}
+
+static void qat_clear_arrays_crt(struct qat_asym_op_cookie *cookie,
+ int alg_size)
+{
+ int i;
+
+ memset(cookie->input_array[0], 0x0, alg_size);
+ for (i = 1; i < QAT_ASYM_RSA_QT_NUM_IN_PARAMS; i++)
+ memset(cookie->input_array[i], 0x0, alg_size / 2);
+ for (i = 0; i < QAT_ASYM_RSA_NUM_OUT_PARAMS; i++)
+ memset(cookie->output_array[i], 0x0, alg_size);
}
static void qat_clear_arrays_by_alg(struct qat_asym_op_cookie *cookie,
- enum rte_crypto_asym_xform_type alg, int in_size, int out_size)
+ struct rte_crypto_asym_xform *xform, int alg_size)
{
- if (alg == RTE_CRYPTO_ASYM_XFORM_MODEX)
+ if (xform->xform_type == RTE_CRYPTO_ASYM_XFORM_MODEX)
qat_clear_arrays(cookie, QAT_ASYM_MODEXP_NUM_IN_PARAMS,
- QAT_ASYM_MODEXP_NUM_OUT_PARAMS, in_size,
- out_size);
- else if (alg == RTE_CRYPTO_ASYM_XFORM_MODINV)
+ QAT_ASYM_MODEXP_NUM_OUT_PARAMS, alg_size);
+ else if (xform->xform_type == RTE_CRYPTO_ASYM_XFORM_MODINV)
qat_clear_arrays(cookie, QAT_ASYM_MODINV_NUM_IN_PARAMS,
- QAT_ASYM_MODINV_NUM_OUT_PARAMS, in_size,
- out_size);
+ QAT_ASYM_MODINV_NUM_OUT_PARAMS, alg_size);
+ else if (xform->xform_type == RTE_CRYPTO_ASYM_XFORM_RSA) {
+ if (xform->rsa.key_type == RTE_RSA_KET_TYPE_QT)
+ qat_clear_arrays_crt(cookie, alg_size);
+ else {
+ qat_clear_arrays(cookie, QAT_ASYM_RSA_NUM_IN_PARAMS,
+ QAT_ASYM_RSA_NUM_OUT_PARAMS, alg_size);
+ }
+ }
}
static int qat_asym_check_nonzero(rte_crypto_param n)
@@ -657,8 +675,7 @@ static void qat_asym_collect_response(struct rte_crypto_op *rx_op,
}
}
}
- qat_clear_arrays_by_alg(cookie, xform->xform_type, alg_size_in_bytes,
- alg_size_in_bytes);
+ qat_clear_arrays_by_alg(cookie, xform, alg_size_in_bytes);
}
void
--
2.21.3
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] crypto/qat: fix uncleared cookies after operation
2021-10-21 10:06 [dpdk-dev] [PATCH] crypto/qat: fix uncleared cookies after operation Arek Kusztal
@ 2021-10-21 13:14 ` Zhang, Roy Fan
2021-10-31 19:33 ` Akhil Goyal
0 siblings, 1 reply; 3+ messages in thread
From: Zhang, Roy Fan @ 2021-10-21 13:14 UTC (permalink / raw)
To: Kusztal, ArkadiuszX, dev; +Cc: gakhil, stable
> -----Original Message-----
> From: Kusztal, ArkadiuszX <arkadiuszx.kusztal@intel.com>
> Sent: Thursday, October 21, 2021 11:06 AM
> To: dev@dpdk.org
> Cc: gakhil@marvell.com; Zhang, Roy Fan <roy.fan.zhang@intel.com>; Kusztal,
> ArkadiuszX <arkadiuszx.kusztal@intel.com>; stable@dpdk.org
> Subject: [PATCH] crypto/qat: fix uncleared cookies after operation
>
> This commit fixes uncleared cookies issue when using
> RSA algorithm.
>
> Fixes: e2c5f4ea994c ("crypto/qat: support RSA in asym")
> Cc: stable@dpdk.org
>
> Signed-off-by: Arek Kusztal <arkadiuszx.kusztal@intel.com>
> ---
Acked-by: Fan Zhang <roy.fan.zhang@intel.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] crypto/qat: fix uncleared cookies after operation
2021-10-21 13:14 ` Zhang, Roy Fan
@ 2021-10-31 19:33 ` Akhil Goyal
0 siblings, 0 replies; 3+ messages in thread
From: Akhil Goyal @ 2021-10-31 19:33 UTC (permalink / raw)
To: Zhang, Roy Fan, Kusztal, ArkadiuszX, dev; +Cc: stable
> > This commit fixes uncleared cookies issue when using
> > RSA algorithm.
> >
> > Fixes: e2c5f4ea994c ("crypto/qat: support RSA in asym")
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Arek Kusztal <arkadiuszx.kusztal@intel.com>
> > ---
> Acked-by: Fan Zhang <roy.fan.zhang@intel.com>
Applied to dpdk-next-crypto
Thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-10-31 19:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-21 10:06 [dpdk-dev] [PATCH] crypto/qat: fix uncleared cookies after operation Arek Kusztal
2021-10-21 13:14 ` Zhang, Roy Fan
2021-10-31 19:33 ` Akhil Goyal
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).