patches for DPDK stable branches
 help / color / mirror / Atom feed
* [PATCH] crypto/openssl: fix memory free issue
@ 2023-05-11 13:59 Ciara Power
  2023-05-11 14:26 ` Ji, Kai
  0 siblings, 1 reply; 3+ messages in thread
From: Ciara Power @ 2023-05-11 13:59 UTC (permalink / raw)
  To: Kai Ji; +Cc: dev, Saoirse O'Donovan, stable, Ciara Power

From: Saoirse O'Donovan <saoirse.odonovan@intel.com>

Allocated memory was being freed using 'free' when it should have been
freed using 'OPENSSL_free'. This has now been modified so that the
correct method is used to free allocated memory.

Coverity issue: 384415
Fixes: 4c7ae22f1f83 ("crypto/openssl: update DSA routine with 3.0 EVP API")
Cc: kai.ji@intel.com
Cc: stable@dpdk.org

Signed-off-by: Saoirse O'Donovan <saoirse.odonovan@intel.com>
Signed-off-by: Ciara Power <ciara.power@intel.com>
---
 drivers/crypto/openssl/rte_openssl_pmd.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/crypto/openssl/rte_openssl_pmd.c b/drivers/crypto/openssl/rte_openssl_pmd.c
index 384d262621..f65fbca300 100644
--- a/drivers/crypto/openssl/rte_openssl_pmd.c
+++ b/drivers/crypto/openssl/rte_openssl_pmd.c
@@ -1927,7 +1927,7 @@ process_openssl_dsa_sign_op_evp(struct rte_crypto_op *cop,
 
 	if (EVP_PKEY_sign(dsa_ctx, dsa_sign_data, &outlen, op->message.data,
 						op->message.length) <= 0) {
-		free(dsa_sign_data);
+		OPENSSL_free(dsa_sign_data);
 		goto err_dsa_sign;
 	}
 
@@ -1935,7 +1935,7 @@ process_openssl_dsa_sign_op_evp(struct rte_crypto_op *cop,
 	DSA_SIG *sign = d2i_DSA_SIG(NULL, &dsa_sign_data_p, outlen);
 	if (!sign) {
 		OPENSSL_LOG(ERR, "%s:%d\n", __func__, __LINE__);
-		free(dsa_sign_data);
+		OPENSSL_free(dsa_sign_data);
 		goto err_dsa_sign;
 	} else {
 		const BIGNUM *r = NULL, *s = NULL;
@@ -1947,7 +1947,7 @@ process_openssl_dsa_sign_op_evp(struct rte_crypto_op *cop,
 	}
 
 	DSA_SIG_free(sign);
-	free(dsa_sign_data);
+	OPENSSL_free(dsa_sign_data);
 	return 0;
 
 err_dsa_sign:
-- 
2.25.1


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

* RE: [PATCH] crypto/openssl: fix memory free issue
  2023-05-11 13:59 [PATCH] crypto/openssl: fix memory free issue Ciara Power
@ 2023-05-11 14:26 ` Ji, Kai
  2023-05-24 12:11   ` Akhil Goyal
  0 siblings, 1 reply; 3+ messages in thread
From: Ji, Kai @ 2023-05-11 14:26 UTC (permalink / raw)
  To: Power, Ciara; +Cc: dev, O'Donovan, Saoirse, stable

Acked-by: Kai Ji <kai.ji@intel.com>

> -----Original Message-----
> From: Power, Ciara <ciara.power@intel.com>
> Sent: Thursday, May 11, 2023 3:00 PM
> To: Ji, Kai <kai.ji@intel.com>
> Cc: dev@dpdk.org; O'Donovan, Saoirse <saoirse.odonovan@intel.com>;
> stable@dpdk.org; Power, Ciara <ciara.power@intel.com>
> Subject: [PATCH] crypto/openssl: fix memory free issue
> 
> From: Saoirse O'Donovan <saoirse.odonovan@intel.com>
> 
> Allocated memory was being freed using 'free' when it should have been
> freed using 'OPENSSL_free'. This has now been modified so that the correct
> method is used to free allocated memory.
> 
> Coverity issue: 384415
> Fixes: 4c7ae22f1f83 ("crypto/openssl: update DSA routine with 3.0 EVP API")
> Cc: kai.ji@intel.com
> Cc: stable@dpdk.org
> 
> Signed-off-by: Saoirse O'Donovan <saoirse.odonovan@intel.com>
> Signed-off-by: Ciara Power <ciara.power@intel.com>
> ---

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

* RE: [PATCH] crypto/openssl: fix memory free issue
  2023-05-11 14:26 ` Ji, Kai
@ 2023-05-24 12:11   ` Akhil Goyal
  0 siblings, 0 replies; 3+ messages in thread
From: Akhil Goyal @ 2023-05-24 12:11 UTC (permalink / raw)
  To: Ji, Kai, Power, Ciara
  Cc: dev, O'Donovan, Saoirse, stable, Gowrishankar Muthukrishnan

> Acked-by: Kai Ji <kai.ji@intel.com>
> 
> > Subject: [PATCH] crypto/openssl: fix memory free issue
> >
> > From: Saoirse O'Donovan <saoirse.odonovan@intel.com>
> >
> > Allocated memory was being freed using 'free' when it should have been
> > freed using 'OPENSSL_free'. This has now been modified so that the correct
> > method is used to free allocated memory.
> >
> > Coverity issue: 384415
> > Fixes: 4c7ae22f1f83 ("crypto/openssl: update DSA routine with 3.0 EVP API")
> > Cc: kai.ji@intel.com
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Saoirse O'Donovan <saoirse.odonovan@intel.com>
> > Signed-off-by: Ciara Power <ciara.power@intel.com>
> > ---

Applied to dpdk-next-crypto

Thanks.

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

end of thread, other threads:[~2023-05-24 12:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-11 13:59 [PATCH] crypto/openssl: fix memory free issue Ciara Power
2023-05-11 14:26 ` Ji, Kai
2023-05-24 12:11   ` 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).