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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <99fd22ab-1b14-55bc-8bb7-dc26f1f454af@huawei.com>
Date:   Mon, 26 Sep 2022 17:14:05 +0800
From:   "linyujun (C)" <linyujun809@...wei.com>
To:     <benh@...nel.crashing.org>, <mpe@...erman.id.au>,
        <npiggin@...il.com>, <christophe.leroy@...roup.eu>,
        <Julia.Lawall@...ia.fr>, <joel@....id.au>, <paulus@...ba.org>
CC:     <linuxppc-dev@...ts.ozlabs.org>, <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH -next] powerpc: Avoid platform device Leak in the event of
 platform_device_add() fails

kindly ping

在 2022/9/14 11:26, Lin Yujun 写道:
> Use platform_device_put() to free the platform device and return
> directly in the event platform_device_add() fails.
>
> Fixes: a28d3af2a26c ("[PATCH] 2/5 powerpc: Rework PowerMac i2c part 2")
> Signed-off-by: Lin Yujun <linyujun809@...wei.com>
> ---
>   arch/powerpc/platforms/powermac/low_i2c.c | 7 ++++++-
>   1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/arch/powerpc/platforms/powermac/low_i2c.c b/arch/powerpc/platforms/powermac/low_i2c.c
> index c1c430c66dc9..5171635c3450 100644
> --- a/arch/powerpc/platforms/powermac/low_i2c.c
> +++ b/arch/powerpc/platforms/powermac/low_i2c.c
> @@ -1487,6 +1487,7 @@ static int __init pmac_i2c_create_platform_devices(void)
>   {
>   	struct pmac_i2c_bus *bus;
>   	int i = 0;
> +	int ret;
>   
>   	/* In the case where we are initialized from smp_init(), we must
>   	 * not use the timer (and thus the irq). It's safe from now on
> @@ -1502,7 +1503,11 @@ static int __init pmac_i2c_create_platform_devices(void)
>   			return -ENOMEM;
>   		bus->platform_dev->dev.platform_data = bus;
>   		bus->platform_dev->dev.of_node = bus->busnode;
> -		platform_device_add(bus->platform_dev);
> +		ret = platform_device_add(bus->platform_dev);
> +		if (ret) {
> +			platform_device_put(bus->platform_dev);
> +			return ret;
> +		}
>   	}
>   
>   	/* Now call platform "init" functions */

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ