From: Praveen Shetty <praveen.shetty@intel.com>
To: bruce.richardson@intel.com
Cc: dev@dpdk.org, stable@dpdk.org
Subject: [PATCH v1] common/idpf: fix heap use after free error
Date: Mon, 13 Jan 2025 08:54:04 +0000 [thread overview]
Message-ID: <20250113085404.1447006-1-praveen.shetty@intel.com> (raw)
Heap use after free error is detected in AddressSanitizer while quitting
the testpmd application.Issue is due to accessing the empty control
queue in the idpf_ctlq_deinit function.idpf_ctlq_deinit function is called
during the rte_eal_cleanup routine.
This patch will fix this issue.
Fixes: fb4ac04e9bfa ("common/idpf: introduce common library")
Cc: stable@dpdk.org
Signed-off-by: Praveen Shetty <praveen.shetty@intel.com>
---
drivers/common/idpf/base/idpf_controlq.c | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/drivers/common/idpf/base/idpf_controlq.c b/drivers/common/idpf/base/idpf_controlq.c
index 4f47759a4f..8f404d3083 100644
--- a/drivers/common/idpf/base/idpf_controlq.c
+++ b/drivers/common/idpf/base/idpf_controlq.c
@@ -248,9 +248,10 @@ int idpf_ctlq_init(struct idpf_hw *hw, u8 num_q,
return 0;
init_destroy_qs:
- LIST_FOR_EACH_ENTRY_SAFE(cq, tmp, &hw->cq_list_head,
- idpf_ctlq_info, cq_list)
+ while (!LIST_EMPTY(&hw->cq_list_head)) {
+ cq = LIST_FIRST(&hw->cq_list_head);
idpf_ctlq_remove(hw, cq);
+ }
return err;
}
@@ -263,9 +264,10 @@ void idpf_ctlq_deinit(struct idpf_hw *hw)
{
struct idpf_ctlq_info *cq = NULL, *tmp = NULL;
- LIST_FOR_EACH_ENTRY_SAFE(cq, tmp, &hw->cq_list_head,
- idpf_ctlq_info, cq_list)
+ while (!LIST_EMPTY(&hw->cq_list_head)) {
+ cq = LIST_FIRST(&hw->cq_list_head);
idpf_ctlq_remove(hw, cq);
+ }
}
/**
--
2.34.1
next reply other threads:[~2025-01-13 8:54 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-13 8:54 Praveen Shetty [this message]
2025-01-13 16:30 ` [PATCH v1] common/idpf: fix heap use after free error Stephen Hemminger
2025-01-20 14:32 ` Bruce Richardson
2025-01-23 11:17 ` Bruce Richardson
2025-01-23 11:43 ` David Marchand
2025-01-23 12:53 ` Bruce Richardson
2025-01-23 16:12 ` Stephen Hemminger
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=20250113085404.1447006-1-praveen.shetty@intel.com \
--to=praveen.shetty@intel.com \
--cc=bruce.richardson@intel.com \
--cc=dev@dpdk.org \
--cc=stable@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.