All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chaohai Chen <wdhh6@aliyun.com>
To: "Michael S. Tsirkin" <mst@redhat.com>
Cc: jasowang@redhat.com, xuanzhuo@linux.alibaba.com,
	eperezma@redhat.com, virtualization@lists.linux.dev,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] virtio_ring: Fix data races in split virtqueue used ring accesses
Date: Thu, 5 Mar 2026 20:00:55 +0800	[thread overview]
Message-ID: <aalwd44kySVAcpOs@wdhh66@aliyun.com> (raw)
In-Reply-To: <20260305044559-mutt-send-email-mst@kernel.org>

On Thu, Mar 05, 2026 at 04:48:29AM -0500, Michael S. Tsirkin wrote:
> On Thu, Mar 05, 2026 at 05:29:27PM +0800, Chaohai Chen wrote:
> > KCSAN detected multiple data races when accessing the split virtqueue's
> > used ring, which is shared memory concurrently accessed by both the CPU
> > and the virtio device (hypervisor).
> > 
> > The races occur when reading the following fields without proper atomic
> > operations:
> > - vring.used->idx
> > - vring.used->flags
> > - vring.used->ring[].id
> > - vring.used->ring[].len
> > 
> > These fields reside in DMA-shared memory and can be modified by the
> > virtio device at any time. Without READ_ONCE(), the compiler may perform
> > unsafe optimizations such as value caching or load tearing.
> 
> .... but does not.
> 
> 
Sorry, you are right. There is virtio_rmb() doing synchronize.
> > @@ -1112,8 +1112,9 @@ static bool virtqueue_enable_cb_delayed_split(struct vring_virtqueue *vq)
> >  			&vring_used_event(&vq->split.vring),
> >  			cpu_to_virtio16(vq->vq.vdev, vq->last_used_idx + bufs));
> >  
> > -	if (unlikely((u16)(virtio16_to_cpu(vq->vq.vdev, vq->split.vring.used->idx)
> > -					- vq->last_used_idx) > bufs)) {
> > +	if (unlikely((u16)(virtio16_to_cpu(vq->vq.vdev,
> > +				READ_ONCE(vq->split.vring.used->idx))
KSCAN just warned this code, and I understand virtio_store_mb() above it
can not synchronize here. Do you think we can just change this line ?
> > +				- vq->last_used_idx) > bufs)) {
> >  		END_USE(vq);
> >  		return false;

      reply	other threads:[~2026-03-05 12:01 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-05  9:29 [PATCH] virtio_ring: Fix data races in split virtqueue used ring accesses Chaohai Chen
2026-03-05  9:48 ` Michael S. Tsirkin
2026-03-05 12:00   ` Chaohai Chen [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=aalwd44kySVAcpOs@wdhh66@aliyun.com \
    --to=wdhh6@aliyun.com \
    --cc=eperezma@redhat.com \
    --cc=jasowang@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=virtualization@lists.linux.dev \
    --cc=xuanzhuo@linux.alibaba.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.