From: syzbot <syzbot+f312381a95cc080992fd@syzkaller.appspotmail.com>
To: adrianox@gmail.com
Cc: adrianox@gmail.com, linux-kernel@vger.kernel.org,
syzkaller-bugs@googlegroups.com
Subject: Re: [PATCH] mmc: vub300: fix use-after-free in vub300_delete()
Date: Mon, 07 Sep 2026 05:25:38 -0700 [thread overview]
Message-ID: <6a9ead42.b223f61b.7f796.0000.GAE@google.com> (raw)
In-Reply-To: <20260907122534.618443-1-adrianox@gmail.com>
> #syz test https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing
This crash does not have a reproducer. I cannot test it.
> mmc_free_host() drops the last reference to the mmc_host, which causes
> mmc_host_classdev_release() to run. That release dereferences
> host->parent->of_node, and host->parent points at the parent usb_device.
>
> vub300_delete() currently calls usb_put_dev() before mmc_free_host(), so
> the usb_device is freed while mmc_host_classdev_release() is still
> reading it, leading to a slab use-after-free.
>
> Save the usb_device pointer and release the mmc host before dropping the
> last usb device reference. The probe-error path (err_free_host) already
> does this; apply the same ordering here.
>
> Fixes: 8f4d20a71022 ("mmc: vub300: fix use-after-free on disconnect")
> ---
> drivers/mmc/host/vub300.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/mmc/host/vub300.c b/drivers/mmc/host/vub300.c
> index 2dae474dcd06..5000f694cb0e 100644
> --- a/drivers/mmc/host/vub300.c
> +++ b/drivers/mmc/host/vub300.c
> @@ -370,13 +370,14 @@ static void vub300_delete(struct kref *kref)
> { /* kref callback - softirq */
> struct vub300_mmc_host *vub300 = kref_to_vub300_mmc_host(kref);
> struct mmc_host *mmc = vub300->mmc;
> + struct usb_device *udev = vub300->udev;
>
> usb_free_urb(vub300->command_out_urb);
> vub300->command_out_urb = NULL;
> usb_free_urb(vub300->command_res_urb);
> vub300->command_res_urb = NULL;
> - usb_put_dev(vub300->udev);
> mmc_free_host(mmc);
> + usb_put_dev(udev);
> /*
> * and hence also frees vub300
> * which is contained at the end of struct mmc
> --
> 2.51.0
>
next parent reply other threads:[~2026-09-07 12:25 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20260907122534.618443-1-adrianox@gmail.com>
2026-09-07 12:25 ` syzbot [this message]
[not found] <20260907122254.617709-1-adrianox@gmail.com>
2026-09-07 12:22 ` syzbot
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=6a9ead42.b223f61b.7f796.0000.GAE@google.com \
--to=syzbot+f312381a95cc080992fd@syzkaller.appspotmail.com \
--cc=adrianox@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=syzkaller-bugs@googlegroups.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
all inboxes | Powered by JetHome®