OSDN Git Service

virtio: validate the existence of handle_output before calling it
authorJason Wang <jasowang@redhat.com>
Thu, 12 Mar 2015 09:50:18 +0000 (17:50 +0800)
committerMichael S. Tsirkin <mst@redhat.com>
Mon, 16 Mar 2015 14:29:51 +0000 (15:29 +0100)
commit9e0f5b8108e248b78444c9a2ec41a8309825736c
tree9d7fc2634b52a92d6a34861b8a362c0afd05fc6f
parent18bf9e2f379334306530cbfd44218748eceaf67d
virtio: validate the existence of handle_output before calling it

We don't validate the existence of handle_output which may let a buggy
guest to trigger a SIGSEV easily. E.g:

1) write 10 to queue_sel to a virtio net device with only 1 queue
2) setup an arbitrary pfn
3) then notify queue 10

Fixing this by validating the existence of handle_output before.

Cc: qemu-stable@nongnu.org
Cc: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Don Koch <dkoch@verizon.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
hw/virtio/virtio.c