lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Thu, 6 Jul 2023 03:40:43 +0000
From: 王明-软件底层技术部 <machel@...o.com>
To: Benjamin Poirier <benjamin.poirier@...il.com>
CC: Sunil Goutham <sgoutham@...vell.com>, "David S. Miller"
	<davem@...emloft.net>, Eric Dumazet <edumazet@...gle.com>, Jakub Kicinski
	<kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>,
	"linux-arm-kernel@...ts.infradead.org"
	<linux-arm-kernel@...ts.infradead.org>, "netdev@...r.kernel.org"
	<netdev@...r.kernel.org>, LKML <linux-kernel@...r.kernel.org>,
	opensource.kernel <opensource.kernel@...o.com>
Subject:
 回复: [PATCH net v2] net:thunderx:Fix resource leaks in device_for_each_child_node() loops

Hi
They all come from device for each child node().

-----邮件原件-----
发件人: Benjamin Poirier <benjamin.poirier@...il.com> 
发送时间: 2023年7月6日 3:29
收件人: 王明-软件底层技术部 <machel@...o.com>
抄送: Sunil Goutham <sgoutham@...vell.com>; David S. Miller <davem@...emloft.net>; Eric Dumazet <edumazet@...gle.com>; Jakub Kicinski <kuba@...nel.org>; Paolo Abeni <pabeni@...hat.com>; linux-arm-kernel@...ts.infradead.org; netdev@...r.kernel.org; linux-kernel@...r.kernel.org; opensource.kernel <opensource.kernel@...o.com>
主题: Re: [PATCH net v2] net:thunderx:Fix resource leaks in device_for_each_child_node() loops

[Some people who received this message don't often get email from benjamin.poirier@...il.com. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ]

On 2023-07-05 22:34 +0800, Wang Ming wrote:
> The device_for_each_child_node() loop in
> bgx_init_of_phy() function should have
> wnode_handle_put() before break
 ^
 fwnode_handle_put()

> which could avoid resource leaks.
> This patch could fix this bug.
>
> Signed-off-by: Wang Ming <machel@...o.com>
> ---
>  drivers/net/ethernet/cavium/thunder/thunder_bgx.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/cavium/thunder/thunder_bgx.c 
> b/drivers/net/ethernet/cavium/thunder/thunder_bgx.c
> index a317feb8decb..dad32d36a015 100644
> --- a/drivers/net/ethernet/cavium/thunder/thunder_bgx.c
> +++ b/drivers/net/ethernet/cavium/thunder/thunder_bgx.c
> @@ -1478,8 +1478,10 @@ static int bgx_init_of_phy(struct bgx *bgx)
>                * cannot handle it, so exit the loop.
>                */
>               node = to_of_node(fwn);
> -             if (!node)
> +             if (!node) {
> +                     fwnode_handle_put(fwn);
>                       break;
> +             }

Fixes: eee326fd8334 ("net: thunderx: bgx: Use standard firmware node infrastructure.") ?

>
>               of_get_mac_address(node, bgx->lmac[lmac].mac);
>
> @@ -1503,6 +1505,7 @@ static int bgx_init_of_phy(struct bgx *bgx)
>               lmac++;
>               if (lmac == bgx->max_lmac) {
>                       of_node_put(node);
> +                     fwnode_handle_put(fwn);

\ fwnode_handle_put
        \ of_fwnode_put
                of_node_put(to_of_node(fwnode));

With your patch, there are now two references released on 'node' (two
of_node_put(node) calls).
One reference is from device_for_each_child_node(), where was the other reference taken?

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ