[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20241214081546.183159-1-joe@pf.is.s.u-tokyo.ac.jp>
Date: Sat, 14 Dec 2024 17:15:46 +0900
From: Joe Hattori <joe@...is.s.u-tokyo.ac.jp>
To: andrew@...n.ch,
hkallweit1@...il.com,
linux@...linux.org.uk,
davem@...emloft.net,
edumazet@...gle.com,
kuba@...nel.org,
pabeni@...hat.com
Cc: netdev@...r.kernel.org,
Joe Hattori <joe@...is.s.u-tokyo.ac.jp>
Subject: [PATCH] net: mdiobus: fix an OF node reference leak
fwnode_find_mii_timestamper() calls of_parse_phandle_with_fixed_args()
but does not decrement the refcount of the obtained OF node. Add an
of_node_put() call before returning from the function.
This bug was detected by an experimental static analysis tool that I am
developing.
Fixes: bc1bee3b87ee ("net: mdiobus: Introduce fwnode_mdiobus_register_phy()")
Signed-off-by: Joe Hattori <joe@...is.s.u-tokyo.ac.jp>
---
drivers/net/mdio/fwnode_mdio.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/mdio/fwnode_mdio.c b/drivers/net/mdio/fwnode_mdio.c
index b156493d7084..83c8bd333117 100644
--- a/drivers/net/mdio/fwnode_mdio.c
+++ b/drivers/net/mdio/fwnode_mdio.c
@@ -56,6 +56,7 @@ fwnode_find_mii_timestamper(struct fwnode_handle *fwnode)
if (arg.args_count != 1)
return ERR_PTR(-EINVAL);
+ of_node_put(arg.np);
return register_mii_timestamper(arg.np, arg.args[0]);
}
--
2.34.1
Powered by blists - more mailing lists