DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH v1] drivers/crypto: cipher buffer alignment check
@ 2023-08-22 10:46 Sivaramakrishnan VenkatX
  2023-09-05 11:21 ` [PATCH v2] " Sivaramakrishnan VenkatX
  0 siblings, 1 reply; 4+ messages in thread
From: Sivaramakrishnan VenkatX @ 2023-08-22 10:46 UTC (permalink / raw)
  To: Kai Ji; +Cc: dev, stable, gakhil, ciara.power, Sivaramakrishnan VenkatX

Cipher length alignment checked for 3DES-CBC and AES-CBC to avoid slice
hang error in QAT CPM1.8

Signed-off-by: Sivaramakrishnan VenkatX <venkatx.sivaramakrishnan@intel.com>
---
 drivers/crypto/qat/dev/qat_crypto_pmd_gens.h | 21 ++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/drivers/crypto/qat/dev/qat_crypto_pmd_gens.h b/drivers/crypto/qat/dev/qat_crypto_pmd_gens.h
index cab7e214c0..98504d925f 100644
--- a/drivers/crypto/qat/dev/qat_crypto_pmd_gens.h
+++ b/drivers/crypto/qat/dev/qat_crypto_pmd_gens.h
@@ -10,6 +10,13 @@
 #include "qat_sym_session.h"
 #include "qat_sym.h"
 
+#define AES_OR_3DES_MISALIGNED (ctx->qat_mode == ICP_QAT_HW_CIPHER_CBC_MODE && \
+			((((ctx->qat_cipher_alg == ICP_QAT_HW_CIPHER_ALGO_AES128) || \
+			(ctx->qat_cipher_alg == ICP_QAT_HW_CIPHER_ALGO_AES192) || \
+			(ctx->qat_cipher_alg == ICP_QAT_HW_CIPHER_ALGO_AES256)) && \
+			(cipher_param->cipher_length % ICP_QAT_HW_AES_BLK_SZ)) || \
+			((ctx->qat_cipher_alg == ICP_QAT_HW_CIPHER_ALGO_3DES) && \
+			(cipher_param->cipher_length % ICP_QAT_HW_3DES_BLK_SZ))))
 #define QAT_SYM_DP_GET_MAX_ENQ(q, c, n) \
 	RTE_MIN((q->max_inflights - q->enqueued + q->dequeued - c), n)
 
@@ -699,6 +706,20 @@ enqueue_one_chain_job_gen1(struct qat_sym_session *ctx,
 
 	cipher_param->cipher_offset = ofs.ofs.cipher.head;
 	cipher_param->cipher_length = cipher_len;
+	/* Input cipher length alignment requirement for 3DES-CBC and AES-CBC.
+	 * For 3DES-CBC cipher algo, ESP Payload size requires 8 Byte aligned.
+	 * For AES-CBC cipher algo, ESP Payload size requires 16 Byte aligned.
+	 * The alignment should be guaranteed by the ESP package padding field
+	 * according to the RFC4303. Under this condition, QAT will pass through
+	 * chain job as NULL cipher and NULL auth operation and report misalignment
+	 * error detected.
+	 */
+	if (AES_OR_3DES_MISALIGNED) {
+		QAT_LOG(ERR, "Input cipher length alignment error detected.\n");
+		ctx->qat_cipher_alg = ICP_QAT_HW_CIPHER_ALGO_NULL;
+		ctx->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_NULL;
+		cipher_param->cipher_length = 0;
+	}
 	qat_set_cipher_iv(cipher_param, cipher_iv, ctx->cipher_iv.length, req);
 
 	auth_param->auth_off = ofs.ofs.auth.head;
-- 
2.25.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v2] drivers/crypto: cipher buffer alignment check
  2023-08-22 10:46 [PATCH v1] drivers/crypto: cipher buffer alignment check Sivaramakrishnan VenkatX
@ 2023-09-05 11:21 ` Sivaramakrishnan VenkatX
  2023-09-19 14:41   ` Power, Ciara
  0 siblings, 1 reply; 4+ messages in thread
From: Sivaramakrishnan VenkatX @ 2023-09-05 11:21 UTC (permalink / raw)
  To: Kai Ji; +Cc: dev, Sivaramakrishnan VenkatX

Cipher length alignment checked for 3DES-CBC and AES-CBC to avoid slice
hang error in QAT CPM1.8

Signed-off-by: Sivaramakrishnan VenkatX <venkatx.sivaramakrishnan@intel.com>
--
V2:
Set auth_length = 0 for NULL CIPHER NULL AUTH operation.
---
 drivers/crypto/qat/dev/qat_crypto_pmd_gens.h | 22 ++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/drivers/crypto/qat/dev/qat_crypto_pmd_gens.h b/drivers/crypto/qat/dev/qat_crypto_pmd_gens.h
index cab7e214c0..37647374d5 100644
--- a/drivers/crypto/qat/dev/qat_crypto_pmd_gens.h
+++ b/drivers/crypto/qat/dev/qat_crypto_pmd_gens.h
@@ -10,6 +10,13 @@
 #include "qat_sym_session.h"
 #include "qat_sym.h"
 
+#define AES_OR_3DES_MISALIGNED (ctx->qat_mode == ICP_QAT_HW_CIPHER_CBC_MODE && \
+			((((ctx->qat_cipher_alg == ICP_QAT_HW_CIPHER_ALGO_AES128) || \
+			(ctx->qat_cipher_alg == ICP_QAT_HW_CIPHER_ALGO_AES192) || \
+			(ctx->qat_cipher_alg == ICP_QAT_HW_CIPHER_ALGO_AES256)) && \
+			(cipher_param->cipher_length % ICP_QAT_HW_AES_BLK_SZ)) || \
+			((ctx->qat_cipher_alg == ICP_QAT_HW_CIPHER_ALGO_3DES) && \
+			(cipher_param->cipher_length % ICP_QAT_HW_3DES_BLK_SZ))))
 #define QAT_SYM_DP_GET_MAX_ENQ(q, c, n) \
 	RTE_MIN((q->max_inflights - q->enqueued + q->dequeued - c), n)
 
@@ -704,6 +711,21 @@ enqueue_one_chain_job_gen1(struct qat_sym_session *ctx,
 	auth_param->auth_off = ofs.ofs.auth.head;
 	auth_param->auth_len = auth_len;
 	auth_param->auth_res_addr = digest->iova;
+	/* Input cipher length alignment requirement for 3DES-CBC and AES-CBC.
+	 * For 3DES-CBC cipher algo, ESP Payload size requires 8 Byte aligned.
+	 * For AES-CBC cipher algo, ESP Payload size requires 16 Byte aligned.
+	 * The alignment should be guaranteed by the ESP package padding field
+	 * according to the RFC4303. Under this condition, QAT will pass through
+	 * chain job as NULL cipher and NULL auth operation and report misalignment
+	 * error detected.
+	 */
+	if (AES_OR_3DES_MISALIGNED) {
+		QAT_LOG(ERR, "Input cipher length alignment error detected.\n");
+		ctx->qat_cipher_alg = ICP_QAT_HW_CIPHER_ALGO_NULL;
+		ctx->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_NULL;
+		cipher_param->cipher_length = 0;
+		auth_param->auth_len = 0;
+	}
 
 	switch (ctx->qat_hash_alg) {
 	case ICP_QAT_HW_AUTH_ALGO_SNOW_3G_UIA2:
-- 
2.25.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH v2] drivers/crypto: cipher buffer alignment check
  2023-09-05 11:21 ` [PATCH v2] " Sivaramakrishnan VenkatX
@ 2023-09-19 14:41   ` Power, Ciara
  2023-09-19 19:46     ` Akhil Goyal
  0 siblings, 1 reply; 4+ messages in thread
From: Power, Ciara @ 2023-09-19 14:41 UTC (permalink / raw)
  To: Sivaramakrishnan, VenkatX, Ji, Kai
  Cc: dev, Sivaramakrishnan, VenkatX, Akhil Goyal

Hi Venkat,

> -----Original Message-----
> From: Sivaramakrishnan VenkatX <venkatx.sivaramakrishnan@intel.com>
> Sent: Tuesday, September 5, 2023 12:21 PM
> To: Ji, Kai <kai.ji@intel.com>
> Cc: dev@dpdk.org; Sivaramakrishnan, VenkatX
> <venkatx.sivaramakrishnan@intel.com>
> Subject: [PATCH v2] drivers/crypto: cipher buffer alignment check
> 
> Cipher length alignment checked for 3DES-CBC and AES-CBC to avoid slice
> hang error in QAT CPM1.8
> 
> Signed-off-by: Sivaramakrishnan VenkatX
> <venkatx.sivaramakrishnan@intel.com>
> --
> V2:
> Set auth_length = 0 for NULL CIPHER NULL AUTH operation.

Acked-by: Ciara Power <ciara.power@intel.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH v2] drivers/crypto: cipher buffer alignment check
  2023-09-19 14:41   ` Power, Ciara
@ 2023-09-19 19:46     ` Akhil Goyal
  0 siblings, 0 replies; 4+ messages in thread
From: Akhil Goyal @ 2023-09-19 19:46 UTC (permalink / raw)
  To: Power, Ciara, Sivaramakrishnan, VenkatX, Ji, Kai
  Cc: dev, Sivaramakrishnan, VenkatX

> Subject: [EXT] RE: [PATCH v2] drivers/crypto: cipher buffer alignment check
> 
Title should be " crypto/qat: check cipher buffer alignment "

> 
> > -----Original Message-----
> > From: Sivaramakrishnan VenkatX <venkatx.sivaramakrishnan@intel.com>
> > Sent: Tuesday, September 5, 2023 12:21 PM
> > To: Ji, Kai <kai.ji@intel.com>
> > Cc: dev@dpdk.org; Sivaramakrishnan, VenkatX
> > <venkatx.sivaramakrishnan@intel.com>
> > Subject: [PATCH v2] drivers/crypto: cipher buffer alignment check
> >
> > Cipher length alignment checked for 3DES-CBC and AES-CBC to avoid slice
> > hang error in QAT CPM1.8
> >
> > Signed-off-by: Sivaramakrishnan VenkatX
> > <venkatx.sivaramakrishnan@intel.com>

Also change your signoff to 
Signed-off-by: Sivaramakrishnan Venkat <venkatx.sivaramakrishnan@intel.com>

> > --
> > V2:
> > Set auth_length = 0 for NULL CIPHER NULL AUTH operation.
> 
> Acked-by: Ciara Power <ciara.power@intel.com>

With above changes,
Applied to dpdk-next-crypto


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-09-19 19:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-22 10:46 [PATCH v1] drivers/crypto: cipher buffer alignment check Sivaramakrishnan VenkatX
2023-09-05 11:21 ` [PATCH v2] " Sivaramakrishnan VenkatX
2023-09-19 14:41   ` Power, Ciara
2023-09-19 19:46     ` 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).