]> git.proxmox.com Git - qemu.git/commit - hw/virtio.c
virtio: guard against negative vq notifies
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Sun, 8 May 2011 21:29:07 +0000 (22:29 +0100)
committerMichael S. Tsirkin <mst@redhat.com>
Sun, 12 Jun 2011 07:33:38 +0000 (10:33 +0300)
commit7157e2e23e89adcd436caeab31fdd6b47eded377
tree5012c5e003f5d66032ef7892240ad8c9a9abe5eb
parente75ccf2c033fb0503d6cb7ddd0fd1dfa0aa4fc16
virtio: guard against negative vq notifies

The virtio_queue_notify() function checks that the virtqueue number is
less than the maximum number of virtqueues.  A signed comparison is used
but the virtqueue number could be negative if a buggy or malicious guest
is run.  This results in memory accesses outside of the virtqueue array.

It is risky doing input validation in common code instead of at the
guest<->host boundary.  Note that virtio_queue_set_addr(),
virtio_queue_get_addr(), virtio_queue_get_num(), and many other virtio
functions do *not* validate the virtqueue number argument.

Instead of fixing the comparison in virtio_queue_notify(), move the
comparison to the virtio bindings (just like VIRTIO_PCI_QUEUE_SEL) where
we have a uint32_t value and can avoid ever calling into common virtio
code if the virtqueue number is invalid.

Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
hw/syborg_virtio.c
hw/virtio-pci.c
hw/virtio.c