public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <greg@kroah.com>
To: Guangshuo Li <lgs201920130244@gmail.com>
Cc: stable@vger.kernel.org
Subject: Re: [PATCH] maple: Fix refcount leak in maple_attach_driver() error path
Date: Sun, 22 Mar 2026 10:18:42 +0100	[thread overview]
Message-ID: <2026032237-acid-cradle-6b86@gregkh> (raw)
In-Reply-To: <20260322084405.868743-1-lgs201920130244@gmail.com>

On Sun, Mar 22, 2026 at 04:44:05PM +0800, Guangshuo Li wrote:
> As device_register() calls device_initialize() before device_add(), the
> failure path in maple_attach_driver() is reached after the embedded
> struct device has already been initialized and its lifetime is expected
> to be managed through the device core reference counting. However, that
> path frees mdev and its associated resources directly via
> maple_free_dev(), rather than releasing them through put_device() and
> the normal release path. This may leave the reference count of the
> embedded struct device unbalanced, resulting in a refcount leak and
> potentially leading to a use-after-free.
> 
> A possible fix would be to use put_device() in the error path and let
> maple_release_device() handle the final cleanup.
> 
> Fixes: b3c69e248176 ("maple: more robust device detection.")
> Cc: stable@vger.kernel.org
> Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
> ---
>  drivers/sh/maple/maple.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/sh/maple/maple.c b/drivers/sh/maple/maple.c
> index 6dc0549f7900..20b7c2cd852b 100644
> --- a/drivers/sh/maple/maple.c
> +++ b/drivers/sh/maple/maple.c
> @@ -393,7 +393,7 @@ static void maple_attach_driver(struct maple_device *mdev)
>  		dev_warn(&mdev->dev, "could not register device at"
>  			" (%d, %d), with error 0x%X\n", mdev->unit,
>  			mdev->port, error);
> -		maple_free_dev(mdev);
> +		put_device(&mdev->dev);
>  		mdev = NULL;
>  		return;
>  	}
> -- 
> 2.43.0
> 
> 

<formletter>

This is not the correct way to submit patches for inclusion in the
stable kernel tree.  Please read:
    https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
for how to do this properly.

</formletter>

  reply	other threads:[~2026-03-22  9:18 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-22  8:44 [PATCH] maple: Fix refcount leak in maple_attach_driver() error path Guangshuo Li
2026-03-22  9:18 ` Greg KH [this message]
  -- strict thread matches above, loose matches on Subject: below --
2026-03-23 13:55 Guangshuo Li

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=2026032237-acid-cradle-6b86@gregkh \
    --to=greg@kroah.com \
    --cc=lgs201920130244@gmail.com \
    --cc=stable@vger.kernel.org \
    /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