From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38114) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YWFsU-0004Y3-7o for qemu-devel@nongnu.org; Thu, 12 Mar 2015 23:03:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YWFsQ-0004oC-V0 for qemu-devel@nongnu.org; Thu, 12 Mar 2015 23:03:10 -0400 Date: Fri, 13 Mar 2015 11:03:02 +0800 From: Fam Zheng Message-ID: <20150313030302.GA23717@ad.nay.redhat.com> References: <1426153818-28804-1-git-send-email-jasowang@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1426153818-28804-1-git-send-email-jasowang@redhat.com> Subject: Re: [Qemu-devel] [Qemu-stable] [PATCH V2] virtio: validate the existence of handle_output before calling it List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jason Wang Cc: "Michael S. Tsirkin" , qemu-devel@nongnu.org, dkoch@verizon.com, qemu-stable@nongnu.org On Thu, 03/12 17:50, Jason Wang wrote: > 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 > Signed-off-by: Jason Wang Reviewed-by: Fam Zheng > --- > Changes from V1: > - check the existence of both vring.desc and handle_output in the same > line > - describe the reproducer in the commit log > --- > hw/virtio/virtio.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c > index 3c6e430..17c1260 100644 > --- a/hw/virtio/virtio.c > +++ b/hw/virtio/virtio.c > @@ -759,8 +759,9 @@ void virtio_queue_set_align(VirtIODevice *vdev, int n, int align) > > void virtio_queue_notify_vq(VirtQueue *vq) > { > - if (vq->vring.desc) { > + if (vq->vring.desc && vq->handle_output) { > VirtIODevice *vdev = vq->vdev; > + > trace_virtio_queue_notify(vdev, vq - vdev->vq, vq); > vq->handle_output(vdev, vq); > } > -- > 2.1.0 > >