[PATCH] crypto/qat: fix incorrect placement of oop offset

Dooley, Brian brian.dooley at intel.com
Mon Jul 8 14:25:15 CEST 2024


Hi Arek,

> -----Original Message-----
> From: Kusztal, ArkadiuszX <arkadiuszx.kusztal at intel.com>
> Sent: Thursday, July 4, 2024 11:27 AM
> To: dev at dpdk.org
> Cc: gakhil at marvell.com; Dooley, Brian <brian.dooley at intel.com>; Kusztal,
> ArkadiuszX <arkadiuszx.kusztal at intel.com>; stable at dpdk.org
> Subject: [PATCH] crypto/qat: fix incorrect placement of oop offset
> 
> This patch fixes incorrect placement of OOP offset.
> Data preceding crypto operation is not copied to the output buffer, which is
> conformant to the API.
> 
> Fixes: a815a04cea05 ("crypto/qat: support symmetric build op request")
> Cc: stable at dpdk.org
> 
> Signed-off-by: Arkadiusz Kusztal <arkadiuszx.kusztal at intel.com>
> ---
>  drivers/crypto/qat/dev/qat_crypto_pmd_gens.h | 18 +++++++++++++-----
>  1 file changed, 13 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/crypto/qat/dev/qat_crypto_pmd_gens.h
> b/drivers/crypto/qat/dev/qat_crypto_pmd_gens.h
> index 1f5d2583c4..83d5870cae 100644
> --- a/drivers/crypto/qat/dev/qat_crypto_pmd_gens.h
> +++ b/drivers/crypto/qat/dev/qat_crypto_pmd_gens.h
> @@ -399,7 +399,7 @@ qat_sym_convert_op_to_vec_chain(struct
> rte_crypto_op *op,
>  		struct qat_sym_op_cookie *cookie)
>  {
>  	union rte_crypto_sym_ofs ofs;
> -	uint32_t max_len = 0;
> +	uint32_t max_len = 0, oop_offset = 0;
>  	uint32_t cipher_len = 0, cipher_ofs = 0;
>  	uint32_t auth_len = 0, auth_ofs = 0;
>  	int is_oop = (op->sym->m_dst != NULL) && @@ -473,6 +473,16 @@
> qat_sym_convert_op_to_vec_chain(struct rte_crypto_op *op,
> 
>  	max_len = RTE_MAX(cipher_ofs + cipher_len, auth_ofs + auth_len);
> 
> +	/* If OOP, we need to keep in mind that offset needs to start where
> +	 * cipher/auth starts, namely no offset on the smaller one
> +	 */
> +	if (is_oop) {
> +		oop_offset = RTE_MIN(auth_ofs, cipher_ofs);
> +		auth_ofs -= oop_offset;
> +		cipher_ofs -= oop_offset;
> +		max_len -= oop_offset;
> +	}
> +
>  	/* digest in buffer check. Needed only for wireless algos
>  	 * or combined cipher-crc operations
>  	 */
> @@ -513,9 +523,7 @@ qat_sym_convert_op_to_vec_chain(struct
> rte_crypto_op *op,
>  			max_len = RTE_MAX(max_len, auth_ofs + auth_len +
>  					ctx->digest_length);
>  	}
> -
> -	/* Passing 0 as cipher & auth offsets are assigned into ofs later */
> -	n_src = rte_crypto_mbuf_to_vec(op->sym->m_src, 0, max_len,
> +	n_src = rte_crypto_mbuf_to_vec(op->sym->m_src, oop_offset,
> max_len,
>  			in_sgl->vec, QAT_SYM_SGL_MAX_NUMBER);
>  	if (unlikely(n_src < 0 || n_src > op->sym->m_src->nb_segs)) {
>  		op->status = RTE_CRYPTO_OP_STATUS_ERROR; @@ -525,7
> +533,7 @@ qat_sym_convert_op_to_vec_chain(struct rte_crypto_op *op,
> 
>  	if (unlikely((op->sym->m_dst != NULL) &&
>  			(op->sym->m_dst != op->sym->m_src))) {
> -		int n_dst = rte_crypto_mbuf_to_vec(op->sym->m_dst, 0,
> +		int n_dst = rte_crypto_mbuf_to_vec(op->sym->m_dst,
> oop_offset,
>  				max_len, out_sgl->vec,
> QAT_SYM_SGL_MAX_NUMBER);
> 
>  		if (n_dst < 0 || n_dst > op->sym->m_dst->nb_segs) {
> --
> 2.13.6

Acked-by: Brian Dooley <brian.dooley at intel.com>



More information about the dev mailing list