From: Alexandru Elisei <alexandru.elisei@arm.com>
To: Will Deacon <will@kernel.org>
Cc: leixiang <leixiang@kylinos.cn>,
julien.thierry.kdev@gmail.com, kvm@vger.kernel.org,
xieming@kylinos.cn
Subject: Re: [PATCH] kvm tools:Fix memory leakage in open all disks
Date: Tue, 6 Aug 2024 13:48:20 +0100 [thread overview]
Message-ID: <ZrIblC5csf73sWvi@arm.com> (raw)
In-Reply-To: <20240805122749.GA9326@willie-the-truck>
Hi Will,
On Mon, Aug 05, 2024 at 01:27:49PM +0100, Will Deacon wrote:
> On Wed, Jul 10, 2024 at 06:00:53PM +0800, leixiang wrote:
> > From 56b60cf70a0c5f7cdafe6804dabbe7112c10f7a1 Mon Sep 17 00:00:00 2001
> > From: leixiang <leixiang@kylinos.cn>
> > Date: Wed, 10 Jul 2024 17:45:51 +0800
> > Subject: [PATCH v3] kvmtool:disk/core:Fix memory leakage in open all disks
> >
> > Fix memory leakage in disk/core disk_image__open_all when malloc disk failed,
> > should free the disks that already malloced.
> > And to avoid fields not being initialized in struct disk_image,
> > replace malloc with calloc.
> >
> > Signed-off-by: Lei Xiang <leixiang@kylinos.cn>
> > Suggested-by: Xie Ming <xieming@kylinos.cn>
> > ---
> > disk/core.c | 8 +++++---
> > 1 file changed, 5 insertions(+), 3 deletions(-)
> >
> > diff --git a/disk/core.c b/disk/core.c
> > index b00b0c0..a084cd4 100644
> > --- a/disk/core.c
> > +++ b/disk/core.c
> > @@ -170,9 +170,11 @@ static struct disk_image **disk_image__open_all(struct kvm *kvm)
> > wwpn = params[i].wwpn;
> >
> > if (wwpn) {
> > - disks[i] = malloc(sizeof(struct disk_image));
> > - if (!disks[i])
> > - return ERR_PTR(-ENOMEM);
> > + disks[i] = calloc(1, sizeof(struct disk_image));
> > + if (!disks[i]) {
> > + err = ERR_PTR(-ENOMEM);
> > + goto error;
> > + }
> > disks[i]->wwpn = wwpn;
> > continue;
>
> Hmm, I'm still not sure about this. I don't think we should call
> disk_image__close() for disks that weren't allocated via
> disk_image__open(). Using calloc() might work, but it feels fragile.
>
> Instead, can we change the error handling to do something like below?
>
> Will
>
> --->8
>
> diff --git a/disk/core.c b/disk/core.c
> index b00b0c0..b543d44 100644
> --- a/disk/core.c
> +++ b/disk/core.c
> @@ -171,8 +171,11 @@ static struct disk_image **disk_image__open_all(struct kvm *kvm)
>
> if (wwpn) {
> disks[i] = malloc(sizeof(struct disk_image));
> - if (!disks[i])
> - return ERR_PTR(-ENOMEM);
> + if (!disks[i]) {
> + err = ERR_PTR(-ENOMEM);
> + goto error;
> + }
> +
> disks[i]->wwpn = wwpn;
> continue;
> }
> @@ -191,9 +194,15 @@ static struct disk_image **disk_image__open_all(struct kvm *kvm)
>
> return disks;
> error:
> - for (i = 0; i < count; i++)
> - if (!IS_ERR_OR_NULL(disks[i]))
> + for (i = 0; i < count; i++) {
> + if (IS_ERR_OR_NULL(disks[i]))
> + continue;
> +
> + if (disks[i]->wwpn)
> + free(disks[i]);
> + else
> disk_image__close(disks[i]);
> + }
>
> free(disks);
> return err;
>
>
> > }
This looks much better than my suggestion.
Thanks,
Alex
next prev parent reply other threads:[~2024-08-06 12:48 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-18 7:52 [PATCH] kvm tools:Fix memory leakage in open all disks leixiang
2024-07-09 10:12 ` Alexandru Elisei
[not found] ` <1720577870543075.69.seg@mailgw.kylinos.cn>
2024-07-10 8:12 ` leixiang
2024-07-10 8:27 ` Alexandru Elisei
2024-07-10 10:00 ` leixiang
2024-07-10 10:03 ` Alexandru Elisei
2024-08-05 12:27 ` Will Deacon
2024-08-06 12:48 ` Alexandru Elisei [this message]
2024-08-08 7:07 ` leixiang
-- strict thread matches above, loose matches on Subject: below --
2024-08-07 6:18 雷翔
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=ZrIblC5csf73sWvi@arm.com \
--to=alexandru.elisei@arm.com \
--cc=julien.thierry.kdev@gmail.com \
--cc=kvm@vger.kernel.org \
--cc=leixiang@kylinos.cn \
--cc=will@kernel.org \
--cc=xieming@kylinos.cn \
/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