From: Laurent Vivier <lvivier@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Michael S. Tsirkin" <mst@redhat.com>,
Amit Shah <amit@kernel.org>, Jia Jia <physicalmtea@gmail.com>
Subject: Re: [PATCH] hw/virtio-rng: Fix host use-after-free (CVE-2026-50624)
Date: Fri, 24 Jul 2026 09:43:43 +0200 [thread overview]
Message-ID: <cf806fb9-059e-4fac-b05e-da154f9549c2@redhat.com> (raw)
In-Reply-To: <20260708063944.1788243-1-lvivier@redhat.com>
Ping
On 7/8/26 08:39, Laurent Vivier wrote:
> Fix a heap-use-after-free in the virtio-rng frontend when a delayed
> rng-random backend completion arrives after the virtio-rng device has been
> hot-unplugged.
>
> Fixes: CVE-2026-50624
> Resolves: https://gitlab.com/qemu-project/qemu/-/work_items/3917
> Reported-by: Jia Jia <physicalmtea@gmail.com>
> Signed-off-by: Laurent Vivier <lvivier@redhat.com>
> ---
> backends/rng.c | 16 ++++++++++++++++
> hw/virtio/virtio-rng.c | 2 ++
> include/system/rng.h | 14 ++++++++++++++
> 3 files changed, 32 insertions(+)
>
> diff --git a/backends/rng.c b/backends/rng.c
> index ab94dfea850a..182269be4a83 100644
> --- a/backends/rng.c
> +++ b/backends/rng.c
> @@ -68,6 +68,22 @@ static void rng_backend_free_request(RngRequest *req)
> g_free(req);
> }
>
> +void rng_backend_cancel_request_entropy(RngBackend *s,
> + EntropyReceiveFunc *receive_entropy,
> + void *opaque)
> +{
> + RngRequest *req, *next;
> +
> + QSIMPLEQ_FOREACH_SAFE(req, &s->requests, next, next) {
> + if (req->receive_entropy != receive_entropy ||
> + req->opaque != opaque) {
> + continue;
> + }
> + QSIMPLEQ_REMOVE(&s->requests, req, RngRequest, next);
> + rng_backend_free_request(req);
> + }
> +}
> +
> static void rng_backend_free_requests(RngBackend *s)
> {
> RngRequest *req, *next;
> diff --git a/hw/virtio/virtio-rng.c b/hw/virtio/virtio-rng.c
> index 66690a34dc97..a77ea5ab1385 100644
> --- a/hw/virtio/virtio-rng.c
> +++ b/hw/virtio/virtio-rng.c
> @@ -234,6 +234,8 @@ static void virtio_rng_device_unrealize(DeviceState *dev)
> VirtIODevice *vdev = VIRTIO_DEVICE(dev);
> VirtIORNG *vrng = VIRTIO_RNG(dev);
>
> + rng_backend_cancel_request_entropy(vrng->rng, chr_read, vrng);
> +
> qemu_del_vm_change_state_handler(vrng->vmstate);
> timer_free(vrng->rate_limit_timer);
> virtio_del_queue(vdev, 0);
> diff --git a/include/system/rng.h b/include/system/rng.h
> index e383f87d20b2..5b0893eb2bd5 100644
> --- a/include/system/rng.h
> +++ b/include/system/rng.h
> @@ -86,4 +86,18 @@ void rng_backend_request_entropy(RngBackend *s, size_t size,
> * deleted.
> */
> void rng_backend_finalize_request(RngBackend *s, RngRequest *req);
> +
> +/**
> + * rng_backend_cancel_request_entropy:
> + * @s: the backend that created the request
> + * @receive_entropy: the function invoked when entropy is available
> + * @opaque: data passed to @receive_entropy
> + *
> + * This function is used by the front-end to cancel all requests to a
> + * given backend. Requests to cancel are identified by the receive_entropy
> + * function and the data passed to the function.
> + */
> +void rng_backend_cancel_request_entropy(RngBackend *s,
> + EntropyReceiveFunc *receive_entropy,
> + void *opaque);
> #endif
next prev parent reply other threads:[~2026-07-24 7:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-08 6:39 [PATCH] hw/virtio-rng: Fix host use-after-free (CVE-2026-50624) Laurent Vivier
2026-07-24 7:43 ` Laurent Vivier [this message]
2026-07-24 8:31 ` Philippe Mathieu-Daudé
2026-07-24 9:29 ` Laurent Vivier
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=cf806fb9-059e-4fac-b05e-da154f9549c2@redhat.com \
--to=lvivier@redhat.com \
--cc=amit@kernel.org \
--cc=mst@redhat.com \
--cc=physicalmtea@gmail.com \
--cc=qemu-devel@nongnu.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 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.