diff options
author | Michael S. Tsirkin | 2012-04-23 14:46:22 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2012-04-25 09:53:47 +0200 |
commit | a821ce59338c79bb72dc844dd44ea53701965b2b (patch) | |
tree | d742c0d8a81491e83dcd80c58d9d80ee458216f4 /hw/virtio.c | |
parent | virtio: add missing mb() on enable notification (diff) | |
download | qemu-a821ce59338c79bb72dc844dd44ea53701965b2b.tar.gz qemu-a821ce59338c79bb72dc844dd44ea53701965b2b.tar.xz qemu-a821ce59338c79bb72dc844dd44ea53701965b2b.zip |
virtio: order index/descriptor reads
virtio has the equivalent of:
if (vq->last_avail_index != vring_avail_idx(vq)) {
read descriptor head at vq->last_avail_index;
}
In theory, processor can reorder descriptor head
read to happen speculatively before the index read.
this would trigger the following race:
host descriptor head read <- reads invalid head from ring
guest writes valid descriptor head
guest writes avail index
host avail index read <- observes valid index
as a result host will use an invalid head value.
This was not observed in the field by me but after
the experience with the previous two races
I think it is prudent to address this theoretical race condition.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/virtio.c')
-rw-r--r-- | hw/virtio.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/virtio.c b/hw/virtio.c index 5615b59a6c..168abe4864 100644 --- a/hw/virtio.c +++ b/hw/virtio.c @@ -287,6 +287,11 @@ static int virtqueue_num_heads(VirtQueue *vq, unsigned int idx) idx, vring_avail_idx(vq)); exit(1); } + /* On success, callers read a descriptor at vq->last_avail_idx. + * Make sure descriptor read does not bypass avail index read. */ + if (num_heads) { + smp_rmb(); + } return num_heads; } |