]> git.itanic.dy.fi Git - linux-stable/commitdiff
virtio-blk: validate num_queues during probe
authorJason Wang <jasowang@redhat.com>
Tue, 19 Oct 2021 07:01:43 +0000 (15:01 +0800)
committerMichael S. Tsirkin <mst@redhat.com>
Mon, 1 Nov 2021 09:26:48 +0000 (05:26 -0400)
If an untrusted device neogitates BLK_F_MQ but advertises a zero
num_queues, the driver may end up trying to allocating zero size
buffers where ZERO_SIZE_PTR is returned which may pass the checking
against the NULL. This will lead unexpected results.

Fixing this by failing the probe in this case.

Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Stefan Hajnoczi <stefanha@redhat.com>
Cc: Stefano Garzarella <sgarzare@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Link: https://lore.kernel.org/r/20211019070152.8236-2-jasowang@redhat.com
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
drivers/block/virtio_blk.c

index a33fe07436722145ed466494aaa44c5f1d4e1114..dbcf2a7e4a00cb9e30bbb27a5904fe99fc6b12c6 100644 (file)
@@ -571,6 +571,10 @@ static int init_vq(struct virtio_blk *vblk)
                                   &num_vqs);
        if (err)
                num_vqs = 1;
+       if (!err && !num_vqs) {
+               dev_err(&vdev->dev, "MQ advertisted but zero queues reported\n");
+               return -EINVAL;
+       }
 
        num_vqs = min_t(unsigned int,
                        min_not_zero(num_request_queues, nr_cpu_ids),