All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Krcka, Tomas" <krckatom@amazon.de>
To: Tomas Krcka <tomas.krcka@gmail.com>
Cc: "stable@vger.kernel.org" <stable@vger.kernel.org>,
	Zijun Hu <quic_zijuhu@quicinc.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: Re: [PATCH 6.1.y 5.15.y 5.10.y] driver core: bus: Fix double free in driver API bus_register()
Date: Fri, 25 Oct 2024 13:52:50 +0000	[thread overview]
Message-ID: <D499DBE4-DDA7-4DB0-B1DA-0C81301FEEE2@amazon.de> (raw)
In-Reply-To: <20241025134555.10272-1-krckatom@amazon.de>

It’s not correct patch - you can discarded.
Sorry for noise.
Tomas

> On 25. Oct 2024, at 15:45, Tomas Krcka <tomas.krcka@gmail.com> wrote:
> 
> CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you can confirm the sender and know the content is safe.
> 
> 
> 
> From: Zijun Hu <quic_zijuhu@quicinc.com>
> 
> [ Upstream commit bfa54a793ba77ef696755b66f3ac4ed00c7d1248 ]
> 
> For bus_register(), any error which happens after kset_register() will
> cause that @priv are freed twice, fixed by setting @priv with NULL after
> the first free.
> 
> Signed-off-by: Zijun Hu <quic_zijuhu@quicinc.com>
> Link: https://lore.kernel.org/r/20240727-bus_register_fix-v1-1-fed8dd0dba7a@quicinc.com
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Tomas Krcka <krckatom@amazon.de>
> ---
> drivers/base/bus.c | 2 ++
> 1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/base/bus.c b/drivers/base/bus.c
> index 339a9edcde5f..8fae7c700cc9 100644
> --- a/drivers/base/bus.c
> +++ b/drivers/base/bus.c
> @@ -853,6 +853,8 @@ int bus_register(struct bus_type *bus)
>        bus_remove_file(bus, &bus_attr_uevent);
> bus_uevent_fail:
>        kset_unregister(&bus->p->subsys);
> +       /* Above kset_unregister() will kfree @priv */
> +       priv = NULL;
> out:
>        kfree(bus->p);
>        bus->p = NULL;
> --
> 2.40.1
> 




Amazon Web Services Development Center Germany GmbH
Krausenstr. 38
10117 Berlin
Geschaeftsfuehrung: Christian Schlaeger, Jonathan Weiss
Eingetragen am Amtsgericht Charlottenburg unter HRB 257764 B
Sitz: Berlin
Ust-ID: DE 365 538 597

      reply	other threads:[~2024-10-25 13:52 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-25 13:45 [PATCH 6.1.y 5.15.y 5.10.y] driver core: bus: Fix double free in driver API bus_register() Tomas Krcka
2024-10-25 13:52 ` Krcka, Tomas [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=D499DBE4-DDA7-4DB0-B1DA-0C81301FEEE2@amazon.de \
    --to=krckatom@amazon.de \
    --cc=gregkh@linuxfoundation.org \
    --cc=quic_zijuhu@quicinc.com \
    --cc=stable@vger.kernel.org \
    --cc=tomas.krcka@gmail.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.