From: Niklas Cassel <cassel@kernel.org>
To: Zheng Qixing <zhengqixing@huaweicloud.com>
Cc: dlemoal@kernel.org, linux-ide@vger.kernel.org,
linux-kernel@vger.kernel.org, yukuai3@huawei.com,
yi.zhang@huawei.com, yangerkun@huawei.com,
zhengqixing@huawei.com
Subject: Re: [PATCH v2] ata: libata: Fix memory leak for error path in ata_host_alloc()
Date: Fri, 23 Aug 2024 12:12:25 +0200 [thread overview]
Message-ID: <ZshgieaM0VaMkjBj@ryzen.lan> (raw)
In-Reply-To: <20240822033050.2909195-1-zhengqixing@huaweicloud.com>
On Thu, Aug 22, 2024 at 11:30:50AM +0800, Zheng Qixing wrote:
> From: Zheng Qixing <zhengqixing@huawei.com>
>
> In ata_host_alloc(), if ata_port_alloc(host) fails to allocate memory
> for a port, the allocated 'host' structure is not freed before returning
> from the function. This results in a potential memory leak.
This sentence is wrong.
If ata_port_alloc() fails, we must have already called
devres_alloc(ata_devres_release, ...);
which means that when:
ap = ata_port_alloc(host);
if (!ap)
goto err_out;
...
err_out:
devres_release_group(dev, NULL);
return NULL;
devres_release_group() will trigger a call to ata_host_release().
ata_host_release() calls kfree(host).
So we will not leak "host" if ata_port_alloc() fails.
>
> This patch adds a kfree(host) before the error handling code is executed
> to ensure that the 'host' structure is properly freed in case of an
> allocation failure.
>
> Signed-off-by: Zheng Qixing <zhengqixing@huawei.com>
> ---
> Changes in v2:
> - error path is wrong in v1
>
> drivers/ata/libata-core.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
> index e4023fc288ac..f27a18990c38 100644
> --- a/drivers/ata/libata-core.c
> +++ b/drivers/ata/libata-core.c
> @@ -5663,8 +5663,10 @@ struct ata_host *ata_host_alloc(struct device *dev, int n_ports)
> }
>
> dr = devres_alloc(ata_devres_release, 0, GFP_KERNEL);
> - if (!dr)
> + if (!dr) {
> + kfree(host);
> goto err_out;
This code does free "host" if devres_alloc() fails, which looks correct,
as "host" will currently be leaked if devres_alloc() fails.
However, that is not what the commit log above claims :P
Please update the commit message to reflect reality.
Kind regards,
Niklas
prev parent reply other threads:[~2024-08-23 10:12 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-22 3:30 [PATCH v2] ata: libata: Fix memory leak for error path in ata_host_alloc() Zheng Qixing
2024-08-22 3:37 ` Yu Kuai
2024-08-23 1:10 ` Damien Le Moal
2024-08-26 2:49 ` Zheng Qixing
2024-08-26 4:02 ` Damien Le Moal
2024-08-27 1:46 ` Zheng Qixing
2024-08-23 10:12 ` Niklas Cassel [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZshgieaM0VaMkjBj@ryzen.lan \
--to=cassel@kernel.org \
--cc=dlemoal@kernel.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=yangerkun@huawei.com \
--cc=yi.zhang@huawei.com \
--cc=yukuai3@huawei.com \
--cc=zhengqixing@huawei.com \
--cc=zhengqixing@huaweicloud.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox