From: Greg KH <gregkh@linuxfoundation.org>
To: Xinyu Zheng <zhengxinyu6@huawei.com>
Cc: mst@redhat.com, jasowang@redhat.com, pbonzini@redhat.com,
stefanha@redhat.com, virtualization@lists.linux-foundation.org,
kvm@vger.kernel.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH v5.10] vhost-scsi: protect vq->log_used with vq->mutex
Date: Thu, 10 Jul 2025 15:41:53 +0200 [thread overview]
Message-ID: <2025071002-festive-outcast-7edd@gregkh> (raw)
In-Reply-To: <20250702082945.4164475-1-zhengxinyu6@huawei.com>
On Wed, Jul 02, 2025 at 08:29:45AM +0000, Xinyu Zheng wrote:
> From: Dongli Zhang <dongli.zhang@oracle.com>
>
> [ Upstream commit f591cf9fce724e5075cc67488c43c6e39e8cbe27 ]
>
> The vhost-scsi completion path may access vq->log_base when vq->log_used is
> already set to false.
>
> vhost-thread QEMU-thread
>
> vhost_scsi_complete_cmd_work()
> -> vhost_add_used()
> -> vhost_add_used_n()
> if (unlikely(vq->log_used))
> QEMU disables vq->log_used
> via VHOST_SET_VRING_ADDR.
> mutex_lock(&vq->mutex);
> vq->log_used = false now!
> mutex_unlock(&vq->mutex);
>
> QEMU gfree(vq->log_base)
> log_used()
> -> log_write(vq->log_base)
>
> Assuming the VMM is QEMU. The vq->log_base is from QEMU userpace and can be
> reclaimed via gfree(). As a result, this causes invalid memory writes to
> QEMU userspace.
>
> The control queue path has the same issue.
>
> CVE-2025-38074
This is not needed.
> Cc: stable@vger.kernel.org#5.10.x
What about 5.15.y and 6.1.y? We can't take a patch just for 5.10 as
that would cause regressions, right?
Please provide all relevant backports and I will be glad to queue them
up then. I'll drop this from my queue for now, thanks.
greg k-h
next prev parent reply other threads:[~2025-07-10 13:41 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-02 8:29 [PATCH v5.10] vhost-scsi: protect vq->log_used with vq->mutex Xinyu Zheng
2025-07-10 13:41 ` Greg KH [this message]
2025-07-14 9:42 ` zhengxinyu (E)
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=2025071002-festive-outcast-7edd@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=jasowang@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=pbonzini@redhat.com \
--cc=stable@vger.kernel.org \
--cc=stefanha@redhat.com \
--cc=virtualization@lists.linux-foundation.org \
--cc=zhengxinyu6@huawei.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).