netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net v2] net: davicom: fix UAF in dm9000_drv_remove
@ 2025-01-23 21:42 Chenyuan Yang
  2025-01-27 23:10 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 2+ messages in thread
From: Chenyuan Yang @ 2025-01-23 21:42 UTC (permalink / raw)
  To: andrew+netdev, davem, edumazet, kuba, pabeni, u.kleine-koenig,
	paul
  Cc: netdev, linux-kernel, zijie98, Chenyuan Yang

This bug is detected by our static analysis tool.

dm is netdev private data and it cannot be
used after free_netdev() call. Using dm after free_netdev()
can cause UAF bug. Fix it by moving free_netdev() at the end of the
function.

This is similar to the issue fixed in commit
ad297cd2db89 ("net: qcom/emac: fix UAF in emac_remove").

Fixes: cf9e60aa69ae ("net: davicom: Fix regulator not turned off on driver removal")
Signed-off-by: Chenyuan Yang <chenyuan0y@gmail.com>
CC: Paolo Abeni <pabeni@redhat.com>
CC: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
---
 drivers/net/ethernet/davicom/dm9000.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/davicom/dm9000.c b/drivers/net/ethernet/davicom/dm9000.c
index 8735e333034c..b87eaf0c250c 100644
--- a/drivers/net/ethernet/davicom/dm9000.c
+++ b/drivers/net/ethernet/davicom/dm9000.c
@@ -1777,10 +1777,11 @@ static void dm9000_drv_remove(struct platform_device *pdev)
 
 	unregister_netdev(ndev);
 	dm9000_release_board(pdev, dm);
-	free_netdev(ndev);		/* free device structure */
 	if (dm->power_supply)
 		regulator_disable(dm->power_supply);
 
+	free_netdev(ndev);		/* free device structure */
+
 	dev_dbg(&pdev->dev, "released and freed device\n");
 }
 
-- 
2.34.1


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

* Re: [PATCH net v2] net: davicom: fix UAF in dm9000_drv_remove
  2025-01-23 21:42 [PATCH net v2] net: davicom: fix UAF in dm9000_drv_remove Chenyuan Yang
@ 2025-01-27 23:10 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-01-27 23:10 UTC (permalink / raw)
  To: yangchenyuan
  Cc: andrew+netdev, davem, edumazet, kuba, pabeni, u.kleine-koenig,
	paul, netdev, linux-kernel, zijie98

Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Thu, 23 Jan 2025 15:42:13 -0600 you wrote:
> This bug is detected by our static analysis tool.
> 
> dm is netdev private data and it cannot be
> used after free_netdev() call. Using dm after free_netdev()
> can cause UAF bug. Fix it by moving free_netdev() at the end of the
> function.
> 
> [...]

Here is the summary with links:
  - [net,v2] net: davicom: fix UAF in dm9000_drv_remove
    https://git.kernel.org/netdev/net/c/19e65c45a150

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] 2+ messages in thread

end of thread, other threads:[~2025-01-27 23:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-23 21:42 [PATCH net v2] net: davicom: fix UAF in dm9000_drv_remove Chenyuan Yang
2025-01-27 23:10 ` 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;
as well as URLs for NNTP newsgroup(s).