* [PATCH] bnx2x: fix double free in bnx2x_init_firmware() error path
@ 2026-08-15 12:21 Jiangshan Yi
2026-08-18 19:06 ` Simon Horman
2026-08-20 19:50 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Jiangshan Yi @ 2026-08-15 12:21 UTC (permalink / raw)
To: skalluru, manishc, andrew+netdev, davem, edumazet, kuba, pabeni
Cc: vladz, eilong, netdev, linux-kernel, 13667453960, Jiangshan Yi,
stable
bnx2x_init_firmware() frees bp->init_ops, bp->init_data and
bp->init_ops_offsets in its error path without setting them to NULL.
The cleanup function bnx2x_release_firmware() frees the same three
pointers unconditionally, so if init_firmware fails and
release_firmware is later called (e.g. from __bnx2x_remove or through
the function state machine), all three are freed a second time.
Set each pointer to NULL after kfree() in the error path so that the
subsequent kfree(NULL) in bnx2x_release_firmware() is a safe no-op.
Fixes: 94a78b79cb5f ("bnx2x: Separated FW from the source.")
Cc: stable@vger.kernel.org
Signed-off-by: Jiangshan Yi <yijiangshan@kylinos.cn>
---
drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
index 208a894d6190..39eb6ab5f805 100644
--- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
+++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
@@ -13473,10 +13473,13 @@ static int bnx2x_init_firmware(struct bnx2x *bp)
iro_alloc_err:
kfree(bp->init_ops_offsets);
+ bp->init_ops_offsets = NULL;
init_offsets_alloc_err:
kfree(bp->init_ops);
+ bp->init_ops = NULL;
init_ops_alloc_err:
kfree(bp->init_data);
+ bp->init_data = NULL;
request_firmware_exit:
release_firmware(bp->firmware);
bp->firmware = NULL;
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] bnx2x: fix double free in bnx2x_init_firmware() error path
2026-08-15 12:21 [PATCH] bnx2x: fix double free in bnx2x_init_firmware() error path Jiangshan Yi
@ 2026-08-18 19:06 ` Simon Horman
2026-08-20 19:50 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2026-08-18 19:06 UTC (permalink / raw)
To: Jiangshan Yi
Cc: skalluru, manishc, andrew+netdev, davem, edumazet, kuba, pabeni,
vladz, eilong, netdev, linux-kernel, 13667453960, stable
On Sat, Aug 15, 2026 at 08:21:49PM +0800, Jiangshan Yi wrote:
> bnx2x_init_firmware() frees bp->init_ops, bp->init_data and
> bp->init_ops_offsets in its error path without setting them to NULL.
> The cleanup function bnx2x_release_firmware() frees the same three
> pointers unconditionally, so if init_firmware fails and
> release_firmware is later called (e.g. from __bnx2x_remove or through
> the function state machine), all three are freed a second time.
>
> Set each pointer to NULL after kfree() in the error path so that the
> subsequent kfree(NULL) in bnx2x_release_firmware() is a safe no-op.
>
> Fixes: 94a78b79cb5f ("bnx2x: Separated FW from the source.")
> Cc: stable@vger.kernel.org
> Signed-off-by: Jiangshan Yi <yijiangshan@kylinos.cn>
Reviewed-by: Simon Horman <horms@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] bnx2x: fix double free in bnx2x_init_firmware() error path
2026-08-15 12:21 [PATCH] bnx2x: fix double free in bnx2x_init_firmware() error path Jiangshan Yi
2026-08-18 19:06 ` Simon Horman
@ 2026-08-20 19:50 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-08-20 19:50 UTC (permalink / raw)
To: Jiangshan Yi
Cc: skalluru, manishc, andrew+netdev, davem, edumazet, kuba, pabeni,
vladz, eilong, netdev, linux-kernel, 13667453960, stable
Hello:
This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Sat, 15 Aug 2026 20:21:49 +0800 you wrote:
> bnx2x_init_firmware() frees bp->init_ops, bp->init_data and
> bp->init_ops_offsets in its error path without setting them to NULL.
> The cleanup function bnx2x_release_firmware() frees the same three
> pointers unconditionally, so if init_firmware fails and
> release_firmware is later called (e.g. from __bnx2x_remove or through
> the function state machine), all three are freed a second time.
>
> [...]
Here is the summary with links:
- bnx2x: fix double free in bnx2x_init_firmware() error path
https://git.kernel.org/netdev/net/c/d2796ffe38cb
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-08-20 19:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-15 12:21 [PATCH] bnx2x: fix double free in bnx2x_init_firmware() error path Jiangshan Yi
2026-08-18 19:06 ` Simon Horman
2026-08-20 19:50 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox