netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net v3] net: ravb: Fix possible UAF bug in ravb_remove
@ 2023-03-11 18:06 Zheng Wang
  2023-03-12 20:26 ` Sergey Shtylyov
                   ` (4 more replies)
  0 siblings, 5 replies; 23+ messages in thread
From: Zheng Wang @ 2023-03-11 18:06 UTC (permalink / raw)
  To: s.shtylyov
  Cc: davem, linyunsheng, edumazet, kuba, pabeni, netdev, linux-kernel,
	hackerzheng666, 1395428693sheep, alex000young, Zheng Wang

In ravb_probe, priv->work was bound with ravb_tx_timeout_work.
If timeout occurs, it will start the work. And if we call
ravb_remove without finishing the work, there may be a
use-after-free bug on ndev.

Fix it by finishing the job before cleanup in ravb_remove.

Fixes: c156633f1353 ("Renesas Ethernet AVB driver proper")
Signed-off-by: Zheng Wang <zyytlz.wz@163.com>
Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru>
---
v3:
- fix typo in commit message
v2:
- stop dev_watchdog so that handle no more timeout work suggested by Yunsheng Lin,
add an empty line to make code clear suggested by Sergey Shtylyov
---
 drivers/net/ethernet/renesas/ravb_main.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/net/ethernet/renesas/ravb_main.c b/drivers/net/ethernet/renesas/ravb_main.c
index 0f54849a3823..eb63ea788e19 100644
--- a/drivers/net/ethernet/renesas/ravb_main.c
+++ b/drivers/net/ethernet/renesas/ravb_main.c
@@ -2892,6 +2892,10 @@ static int ravb_remove(struct platform_device *pdev)
 	struct ravb_private *priv = netdev_priv(ndev);
 	const struct ravb_hw_info *info = priv->info;
 
+	netif_carrier_off(ndev);
+	netif_tx_disable(ndev);
+	cancel_work_sync(&priv->work);
+	
 	/* Stop PTP Clock driver */
 	if (info->ccc_gac)
 		ravb_ptp_stop(ndev);
-- 
2.25.1


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

end of thread, other threads:[~2023-07-25  2:26 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-11 18:06 [PATCH net v3] net: ravb: Fix possible UAF bug in ravb_remove Zheng Wang
2023-03-12 20:26 ` Sergey Shtylyov
2023-03-13  3:00   ` Zheng Hacker
2023-03-13  1:15 ` Yunsheng Lin
2023-03-13  3:02   ` Zheng Hacker
2023-03-13  3:32     ` Yunsheng Lin
2023-03-13  9:34       ` Zheng Hacker
2023-07-19 21:04       ` Sergey Shtylyov
2023-03-13 22:39 ` Jakub Kicinski
2023-03-14  1:24   ` Zheng Hacker
2023-07-05  8:05 ` Lee Jones
2023-07-10 11:42 ` Lee Jones
2023-07-10 16:15   ` Jakub Kicinski
2023-07-11 21:20     ` Sergey Shtylyov
2023-07-12 11:56     ` Lee Jones
2023-07-15 16:07       ` Zheng Hacker
2023-07-15 20:48         ` Sergey Shtylyov
2023-07-16  2:11           ` Zheng Hacker
2023-07-16  3:14             ` Zheng Hacker
2023-07-17 13:04               ` Lee Jones
2023-07-17 13:21                 ` Zheng Hacker
2023-07-24  9:20                 ` Lee Jones
2023-07-25  2:26                   ` Zheng Hacker

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).