From: Rob Herring <robh@kernel.org>
To: Dan Carpenter <dan.carpenter@linaro.org>,
kbuild test robot <lkp@intel.com>
Cc: Frank Rowand <frowand.list@gmail.com>,
Geert Uytterhoeven <geert+renesas@glider.be>,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
kernel-janitors@vger.kernel.org
Subject: Re: [PATCH] of: dynamic: Fix potential memory leak in of_changeset_action()
Date: Fri, 8 Sep 2023 10:18:37 -0500 [thread overview]
Message-ID: <CAL_JsqJB_pK-Q-Y-v6mWV1KwfL8sjFGgCcSL5gdrZm-TqxvBJg@mail.gmail.com> (raw)
In-Reply-To: <7dfaf999-30ad-491c-9615-fb1138db121c@moroto.mountain>
On Fri, Sep 8, 2023 at 2:03 AM Dan Carpenter <dan.carpenter@linaro.org> wrote:
>
> Smatch complains that the error path where "action" is invalid leaks
> the "ce" allocation:
> drivers/of/dynamic.c:935 of_changeset_action()
> warn: possible memory leak of 'ce'
>
> Fix this by doing the validation before the allocation.
I'm going to add a note when applying that "action" can't ever
actually be invalid because all the callers are static inlines with
hardcoded action values. I suppose there could be an out of tree
module calling of_changeset_action() directly, but that's wrong given
the wrappers.
> Fixes: 914d9d831e61 ("of: dynamic: Refactor action prints to not use "%pOF" inside devtree_lock")
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/r/202309011059.EOdr4im9-lkp@intel.com/
Despite what that says, it was never reported to me. IOW, the added TO
and CC lines don't seem to have any effect.
> Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
> ---
> drivers/of/dynamic.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/of/dynamic.c b/drivers/of/dynamic.c
> index 0a3483e247a8..f63250c650ca 100644
> --- a/drivers/of/dynamic.c
> +++ b/drivers/of/dynamic.c
> @@ -890,13 +890,13 @@ int of_changeset_action(struct of_changeset *ocs, unsigned long action,
> {
> struct of_changeset_entry *ce;
>
> + if (WARN_ON(action >= ARRAY_SIZE(action_names)))
> + return -EINVAL;
> +
> ce = kzalloc(sizeof(*ce), GFP_KERNEL);
> if (!ce)
> return -ENOMEM;
>
> - if (WARN_ON(action >= ARRAY_SIZE(action_names)))
> - return -EINVAL;
> -
> /* get a reference to the node */
> ce->action = action;
> ce->np = of_node_get(np);
> --
> 2.39.2
>
next prev parent reply other threads:[~2023-09-08 15:18 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-08 7:03 [PATCH] of: dynamic: Fix potential memory leak in of_changeset_action() Dan Carpenter
2023-09-08 7:16 ` Geert Uytterhoeven
2023-09-08 15:18 ` Rob Herring [this message]
2023-09-08 15:34 ` Geert Uytterhoeven
2023-09-08 16:14 ` Dan Carpenter
2023-09-12 15:32 ` Rob Herring
2023-09-12 15:55 ` Geert Uytterhoeven
2023-09-13 6:28 ` Dan Carpenter
2023-09-13 12:44 ` Rob Herring
2023-09-11 14:58 ` Rob Herring
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=CAL_JsqJB_pK-Q-Y-v6mWV1KwfL8sjFGgCcSL5gdrZm-TqxvBJg@mail.gmail.com \
--to=robh@kernel.org \
--cc=dan.carpenter@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=frowand.list@gmail.com \
--cc=geert+renesas@glider.be \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lkp@intel.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;
as well as URLs for NNTP newsgroup(s).