From: Greg KH <gregkh@linuxfoundation.org>
To: Gaosheng Cui <cuigaosheng1@huawei.com>
Cc: srinivas.kandagatla@linaro.org, linux-kernel@vger.kernel.org,
gongruiqi1@huawei.com, wangweiyang2@huawei.com
Subject: Re: [PATCH -next] nvmem: core: Fix memleak in nvmem_register()
Date: Sat, 16 Jul 2022 10:23:54 +0200 [thread overview]
Message-ID: <YtJ1mthCP+4laqOn@kroah.com> (raw)
In-Reply-To: <20220716075352.2622809-1-cuigaosheng1@huawei.com>
On Sat, Jul 16, 2022 at 03:53:52PM +0800, Gaosheng Cui wrote:
> dev_set_name will alloc memory for nvmem->dev.kobj.name in
> nvmem_register, when nvmem_validate_keepouts failed, nvmem's
> memory will be freed and return, but nobody will free memory
> for nvmem->dev.kobj.name, there will be memleak, so using
> kfree_const(nvmem->dev.kobj.name) to fix it.
>
> Fixes: de0534df9347 ("nvmem: core: fix error handling while validating keepout regions")
> Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
> ---
> drivers/nvmem/core.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c
> index 1e3c754efd0d..6c75c9afa5f3 100644
> --- a/drivers/nvmem/core.c
> +++ b/drivers/nvmem/core.c
> @@ -833,6 +833,7 @@ struct nvmem_device *nvmem_register(const struct nvmem_config *config)
> rval = nvmem_validate_keepouts(nvmem);
> if (rval) {
> ida_free(&nvmem_ida, nvmem->id);
> + kfree_const(nvmem->dev.kobj.name);
> kfree(nvmem);
Something is really wrong, you should never be touching the name pointer
of a kobject directly like this. Also the device structure itself
should be cleaning up the memory, not a kfree. So this feels wrong...
greg k-h
next prev parent reply other threads:[~2022-07-16 8:24 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-16 7:53 [PATCH -next] nvmem: core: Fix memleak in nvmem_register() Gaosheng Cui
2022-07-16 8:23 ` Greg KH [this message]
2022-07-16 9:59 ` cuigaosheng
2022-07-18 11:40 ` Srinivas Kandagatla
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=YtJ1mthCP+4laqOn@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=cuigaosheng1@huawei.com \
--cc=gongruiqi1@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=srinivas.kandagatla@linaro.org \
--cc=wangweiyang2@huawei.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.